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.
 
 
 

63607 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. }
  2327. //species
  2328. function getSpeciesInfo(speciesList) {
  2329. let result = new Set();
  2330. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2331. result.add(entry)
  2332. });
  2333. return Array.from(result);
  2334. };
  2335. function getSpeciesInfoHelper(species) {
  2336. if (!speciesData[species]) {
  2337. console.warn(species + " doesn't exist");
  2338. return [];
  2339. }
  2340. if (speciesData[species].parents) {
  2341. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2342. } else {
  2343. return [species];
  2344. }
  2345. }
  2346. characterMakers.push(() => makeCharacter(
  2347. {
  2348. name: "Fen",
  2349. species: ["crux"],
  2350. description: {
  2351. title: "Bio",
  2352. text: "Very furry. Sheds on everything."
  2353. },
  2354. tags: [
  2355. "anthro",
  2356. "goo"
  2357. ]
  2358. },
  2359. {
  2360. front: {
  2361. height: math.unit(12, "feet"),
  2362. weight: math.unit(2400, "lb"),
  2363. preyCapacity: math.unit(1, "people"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/fen/front.svg",
  2367. extra: 1804/1562,
  2368. bottom: 205/2009
  2369. },
  2370. extraAttributes: {
  2371. pawSize: {
  2372. name: "Paw Size",
  2373. power: 2,
  2374. type: "area",
  2375. base: math.unit(0.35, "m^2")
  2376. }
  2377. }
  2378. },
  2379. diving: {
  2380. height: math.unit(4.9, "meters"),
  2381. weight: math.unit(2400, "lb"),
  2382. name: "Diving",
  2383. image: {
  2384. source: "./media/characters/fen/diving.svg"
  2385. }
  2386. },
  2387. sleeby: {
  2388. height: math.unit(3.45, "meters"),
  2389. weight: math.unit(2400, "lb"),
  2390. name: "Sleeby",
  2391. image: {
  2392. source: "./media/characters/fen/sleeby.svg"
  2393. }
  2394. },
  2395. goo: {
  2396. height: math.unit(12, "feet"),
  2397. weight: math.unit(3600, "lb"),
  2398. volume: math.unit(1000, "liters"),
  2399. preyCapacity: math.unit(6, "people"),
  2400. name: "Goo",
  2401. image: {
  2402. source: "./media/characters/fen/goo.svg",
  2403. extra: 1307/1071,
  2404. bottom: 134/1441
  2405. }
  2406. },
  2407. horror: {
  2408. height: math.unit(13.6, "feet"),
  2409. weight: math.unit(2400, "lb"),
  2410. preyCapacity: math.unit(1, "people"),
  2411. name: "Horror",
  2412. image: {
  2413. source: "./media/characters/fen/horror.svg",
  2414. extra: 893/797,
  2415. bottom: 0/893
  2416. }
  2417. },
  2418. gooNsfw: {
  2419. height: math.unit(12, "feet"),
  2420. weight: math.unit(3750, "lb"),
  2421. volume: math.unit(1000, "liters"),
  2422. preyCapacity: math.unit(6, "people"),
  2423. name: "Goo (NSFW)",
  2424. image: {
  2425. source: "./media/characters/fen/goo-nsfw.svg",
  2426. extra: 1875/1734,
  2427. bottom: 122/1997
  2428. }
  2429. },
  2430. maw: {
  2431. height: math.unit(5.03, "feet"),
  2432. name: "Maw",
  2433. image: {
  2434. source: "./media/characters/fen/maw.svg"
  2435. }
  2436. },
  2437. gooCeiling: {
  2438. height: math.unit(6.6, "feet"),
  2439. weight: math.unit(3000, "lb"),
  2440. volume: math.unit(1000, "liters"),
  2441. preyCapacity: math.unit(6, "people"),
  2442. name: "Maw (Goo)",
  2443. image: {
  2444. source: "./media/characters/fen/goo-maw.svg"
  2445. }
  2446. },
  2447. paw: {
  2448. height: math.unit(3.77, "feet"),
  2449. name: "Paw",
  2450. image: {
  2451. source: "./media/characters/fen/paw.svg"
  2452. },
  2453. extraAttributes: {
  2454. "toeSize": {
  2455. name: "Toe Size",
  2456. power: 2,
  2457. type: "area",
  2458. base: math.unit(0.02875, "m^2")
  2459. },
  2460. "pawSize": {
  2461. name: "Paw Size",
  2462. power: 2,
  2463. type: "area",
  2464. base: math.unit(0.378, "m^2")
  2465. },
  2466. }
  2467. },
  2468. tail: {
  2469. height: math.unit(12.1, "feet"),
  2470. name: "Tail",
  2471. image: {
  2472. source: "./media/characters/fen/tail.svg"
  2473. }
  2474. },
  2475. tailFull: {
  2476. height: math.unit(12.1, "feet"),
  2477. name: "Full Tail",
  2478. image: {
  2479. source: "./media/characters/fen/tail-full.svg"
  2480. }
  2481. },
  2482. back: {
  2483. height: math.unit(12, "feet"),
  2484. weight: math.unit(2400, "lb"),
  2485. name: "Back",
  2486. image: {
  2487. source: "./media/characters/fen/back.svg",
  2488. },
  2489. info: {
  2490. description: {
  2491. mode: "append",
  2492. text: "\n\nHe is not currently looking at you."
  2493. }
  2494. }
  2495. },
  2496. full: {
  2497. height: math.unit(1.85, "meter"),
  2498. weight: math.unit(3200, "lb"),
  2499. preyCapacity: math.unit(3, "people"),
  2500. name: "Full",
  2501. image: {
  2502. source: "./media/characters/fen/full.svg",
  2503. extra: 1133/859,
  2504. bottom: 145/1278
  2505. },
  2506. info: {
  2507. description: {
  2508. mode: "append",
  2509. text: "\n\nMunch."
  2510. }
  2511. }
  2512. },
  2513. gooLounging: {
  2514. height: math.unit(4.53, "feet"),
  2515. weight: math.unit(3000, "lb"),
  2516. preyCapacity: math.unit(6, "people"),
  2517. name: "Goo (Lounging)",
  2518. image: {
  2519. source: "./media/characters/fen/goo-lounging.svg",
  2520. bottom: 116 / 613
  2521. }
  2522. },
  2523. lounging: {
  2524. height: math.unit(10.52, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. name: "Lounging",
  2527. image: {
  2528. source: "./media/characters/fen/lounging.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Small",
  2535. height: math.unit(2.2428, "meter")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(12, "feet"),
  2540. default: true,
  2541. },
  2542. {
  2543. name: "Big",
  2544. height: math.unit(20, "feet")
  2545. },
  2546. {
  2547. name: "Minimacro",
  2548. height: math.unit(40, "feet"),
  2549. info: {
  2550. description: {
  2551. mode: "append",
  2552. text: "\n\nTOO DAMN BIG"
  2553. }
  2554. }
  2555. },
  2556. {
  2557. name: "Macro",
  2558. height: math.unit(100, "feet"),
  2559. info: {
  2560. description: {
  2561. mode: "append",
  2562. text: "\n\nTOO DAMN BIG"
  2563. }
  2564. }
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(2, "miles")
  2569. },
  2570. {
  2571. name: "Gigamacro",
  2572. height: math.unit(10, "earths")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(183, "cm"),
  2581. weight: math.unit(80, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/sofia-fluttertail/front.svg",
  2585. bottom: 0.01,
  2586. extra: 2154 / 2081
  2587. }
  2588. },
  2589. frontAlt: {
  2590. height: math.unit(183, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Front (alt)",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(183, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/back.svg"
  2603. }
  2604. },
  2605. kneeling: {
  2606. height: math.unit(125, "cm"),
  2607. weight: math.unit(80, "kg"),
  2608. name: "Kneeling",
  2609. image: {
  2610. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2611. extra: 1033 / 977,
  2612. bottom: 23.7 / 1057
  2613. }
  2614. },
  2615. maw: {
  2616. height: math.unit(183 / 5, "cm"),
  2617. name: "Maw",
  2618. image: {
  2619. source: "./media/characters/sofia-fluttertail/maw.svg"
  2620. }
  2621. },
  2622. mawcloseup: {
  2623. height: math.unit(183 / 5 * 0.41, "cm"),
  2624. name: "Maw (Closeup)",
  2625. image: {
  2626. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2627. }
  2628. },
  2629. paws: {
  2630. height: math.unit(1.17, "feet"),
  2631. name: "Paws",
  2632. image: {
  2633. source: "./media/characters/sofia-fluttertail/paws.svg",
  2634. extra: 851 / 851,
  2635. bottom: 17 / 868
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(1.83, "meter")
  2643. },
  2644. {
  2645. name: "Size Thief",
  2646. height: math.unit(18, "feet")
  2647. },
  2648. {
  2649. name: "50 Foot Collie",
  2650. height: math.unit(50, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(96, "feet"),
  2655. default: true
  2656. },
  2657. {
  2658. name: "Megamerger",
  2659. height: math.unit(650, "feet")
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(7, "feet"),
  2668. weight: math.unit(100, "kg"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/march/front.svg",
  2672. extra: 1992/1851,
  2673. bottom: 39/2031
  2674. }
  2675. },
  2676. foot: {
  2677. height: math.unit(0.9, "feet"),
  2678. name: "Foot",
  2679. image: {
  2680. source: "./media/characters/march/foot.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(7.9, "feet")
  2688. },
  2689. {
  2690. name: "Macro",
  2691. height: math.unit(220, "meters")
  2692. },
  2693. {
  2694. name: "Megamacro",
  2695. height: math.unit(2.98, "km"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Gigamacro",
  2700. height: math.unit(15963, "km")
  2701. },
  2702. {
  2703. name: "Teramacro",
  2704. height: math.unit(2980000000, "km")
  2705. },
  2706. {
  2707. name: "Examacro",
  2708. height: math.unit(250, "parsecs")
  2709. },
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2714. {
  2715. front: {
  2716. height: math.unit(6, "feet"),
  2717. weight: math.unit(60, "kg"),
  2718. name: "Front",
  2719. image: {
  2720. source: "./media/characters/noir/front.svg",
  2721. extra: 1,
  2722. bottom: 0.032
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(6.6, "feet")
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(500, "feet")
  2734. },
  2735. {
  2736. name: "Megamacro",
  2737. height: math.unit(2.5, "km"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(22500, "km")
  2743. },
  2744. {
  2745. name: "Teramacro",
  2746. height: math.unit(2500000000, "km")
  2747. },
  2748. {
  2749. name: "Examacro",
  2750. height: math.unit(200, "parsecs")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(7, "feet"),
  2759. weight: math.unit(100, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/okuri/front.svg",
  2763. extra: 739/665,
  2764. bottom: 39/778
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(7, "feet"),
  2769. weight: math.unit(100, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/okuri/back.svg",
  2773. extra: 734/653,
  2774. bottom: 13/747
  2775. }
  2776. },
  2777. sitting: {
  2778. height: math.unit(2.95, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Sitting",
  2781. image: {
  2782. source: "./media/characters/okuri/sitting.svg",
  2783. extra: 370/318,
  2784. bottom: 99/469
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Smallest",
  2791. height: math.unit(5 + 2/12, "feet")
  2792. },
  2793. {
  2794. name: "Smaller",
  2795. height: math.unit(300, "feet")
  2796. },
  2797. {
  2798. name: "Small",
  2799. height: math.unit(1000, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(1, "mile")
  2804. },
  2805. {
  2806. name: "Mega Macro (Small)",
  2807. height: math.unit(20, "km")
  2808. },
  2809. {
  2810. name: "Mega Macro (Large)",
  2811. height: math.unit(600, "km")
  2812. },
  2813. {
  2814. name: "Giga Macro",
  2815. height: math.unit(10000, "km")
  2816. },
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(577560, "km"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Large",
  2824. height: math.unit(4, "galaxies")
  2825. },
  2826. {
  2827. name: "Largest",
  2828. height: math.unit(15, "multiverses")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(7, "feet"),
  2837. weight: math.unit(100, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/manny/front.svg",
  2841. extra: 1,
  2842. bottom: 0.06
  2843. }
  2844. },
  2845. back: {
  2846. height: math.unit(7, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Back",
  2849. image: {
  2850. source: "./media/characters/manny/back.svg",
  2851. extra: 1,
  2852. bottom: 0.014
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(7, "feet"),
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(78, "feet"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Macro+",
  2868. height: math.unit(300, "meters")
  2869. },
  2870. {
  2871. name: "Macro++",
  2872. height: math.unit(2400, "meters")
  2873. },
  2874. {
  2875. name: "Megamacro",
  2876. height: math.unit(5167, "meters")
  2877. },
  2878. {
  2879. name: "Gigamacro",
  2880. height: math.unit(41769, "miles")
  2881. },
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/adake/front-1.svg"
  2893. }
  2894. },
  2895. frontAlt: {
  2896. height: math.unit(7, "feet"),
  2897. weight: math.unit(100, "kg"),
  2898. name: "Front (Alt)",
  2899. image: {
  2900. source: "./media/characters/adake/front-2.svg",
  2901. extra: 1,
  2902. bottom: 0.01
  2903. }
  2904. },
  2905. back: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Back",
  2909. image: {
  2910. source: "./media/characters/adake/back.svg",
  2911. }
  2912. },
  2913. kneel: {
  2914. height: math.unit(5.385, "feet"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Kneeling",
  2917. image: {
  2918. source: "./media/characters/adake/kneel.svg",
  2919. bottom: 0.052
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(7, "feet"),
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(78, "feet"),
  2931. default: true
  2932. },
  2933. {
  2934. name: "Macro+",
  2935. height: math.unit(300, "meters")
  2936. },
  2937. {
  2938. name: "Macro++",
  2939. height: math.unit(2400, "meters")
  2940. },
  2941. {
  2942. name: "Megamacro",
  2943. height: math.unit(5167, "meters")
  2944. },
  2945. {
  2946. name: "Gigamacro",
  2947. height: math.unit(41769, "miles")
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(1.65, "meters"),
  2956. weight: math.unit(50, "kg"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/elijah/front.svg",
  2960. extra: 858 / 830,
  2961. bottom: 95.5 / 953.8559
  2962. }
  2963. },
  2964. back: {
  2965. height: math.unit(1.65, "meters"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Back",
  2968. image: {
  2969. source: "./media/characters/elijah/back.svg",
  2970. extra: 895 / 850,
  2971. bottom: 5.3 / 897.956
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(1.65, "meters"),
  2976. weight: math.unit(50, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/elijah/front-nsfw.svg",
  2980. extra: 858 / 830,
  2981. bottom: 95.5 / 953.8559
  2982. }
  2983. },
  2984. backNsfw: {
  2985. height: math.unit(1.65, "meters"),
  2986. weight: math.unit(50, "kg"),
  2987. name: "Back (NSFW)",
  2988. image: {
  2989. source: "./media/characters/elijah/back-nsfw.svg",
  2990. extra: 895 / 850,
  2991. bottom: 5.3 / 897.956
  2992. }
  2993. },
  2994. dick: {
  2995. height: math.unit(1, "feet"),
  2996. name: "Dick",
  2997. image: {
  2998. source: "./media/characters/elijah/dick.svg"
  2999. }
  3000. },
  3001. beakOpen: {
  3002. height: math.unit(1.25, "feet"),
  3003. name: "Beak (Open)",
  3004. image: {
  3005. source: "./media/characters/elijah/beak-open.svg"
  3006. }
  3007. },
  3008. beakShut: {
  3009. height: math.unit(1.25, "feet"),
  3010. name: "Beak (Shut)",
  3011. image: {
  3012. source: "./media/characters/elijah/beak-shut.svg"
  3013. }
  3014. },
  3015. footFlexing: {
  3016. height: math.unit(1.61, "feet"),
  3017. name: "Foot (Flexing)",
  3018. image: {
  3019. source: "./media/characters/elijah/foot-flexing.svg"
  3020. }
  3021. },
  3022. footStepping: {
  3023. height: math.unit(1.44, "feet"),
  3024. name: "Foot (Stepping)",
  3025. image: {
  3026. source: "./media/characters/elijah/foot-stepping.svg"
  3027. }
  3028. },
  3029. plantigradeLeg: {
  3030. height: math.unit(2.34, "feet"),
  3031. name: "Plantigrade Leg",
  3032. image: {
  3033. source: "./media/characters/elijah/plantigrade-leg.svg"
  3034. }
  3035. },
  3036. plantigradeFootLeft: {
  3037. height: math.unit(0.9, "feet"),
  3038. name: "Plantigrade Foot (Left)",
  3039. image: {
  3040. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3041. }
  3042. },
  3043. plantigradeFootRight: {
  3044. height: math.unit(0.9, "feet"),
  3045. name: "Plantigrade Foot (Right)",
  3046. image: {
  3047. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(1.65, "meters")
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(55, "meters"),
  3059. default: true
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(105, "meters")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(7 + 2/12, "feet"),
  3072. weight: math.unit(320, "kg"),
  3073. preyCapacity: math.unit(0.276549935, "people"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/rai/front.svg",
  3077. extra: 1802/1696,
  3078. bottom: 68/1870
  3079. },
  3080. form: "anthro",
  3081. default: true
  3082. },
  3083. frontDressed: {
  3084. height: math.unit(7 + 2/12, "feet"),
  3085. weight: math.unit(320, "kg"),
  3086. preyCapacity: math.unit(0.276549935, "people"),
  3087. name: "Front (Dressed)",
  3088. image: {
  3089. source: "./media/characters/rai/front-dressed.svg",
  3090. extra: 1802/1696,
  3091. bottom: 68/1870
  3092. },
  3093. form: "anthro"
  3094. },
  3095. side: {
  3096. height: math.unit(7 + 2/12, "feet"),
  3097. weight: math.unit(320, "kg"),
  3098. preyCapacity: math.unit(0.276549935, "people"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/rai/side.svg",
  3102. extra: 1789/1710,
  3103. bottom: 115/1904
  3104. },
  3105. form: "anthro"
  3106. },
  3107. back: {
  3108. height: math.unit(7 + 2/12, "feet"),
  3109. weight: math.unit(320, "kg"),
  3110. preyCapacity: math.unit(0.276549935, "people"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/rai/back.svg",
  3114. extra: 1770/1707,
  3115. bottom: 28/1798
  3116. },
  3117. form: "anthro"
  3118. },
  3119. feral: {
  3120. height: math.unit(9.5, "feet"),
  3121. weight: math.unit(640, "kg"),
  3122. preyCapacity: math.unit(4, "people"),
  3123. name: "Feral",
  3124. image: {
  3125. source: "./media/characters/rai/feral.svg",
  3126. extra: 945/553,
  3127. bottom: 176/1121
  3128. },
  3129. form: "feral",
  3130. default: true
  3131. },
  3132. dragon: {
  3133. height: math.unit(23, "feet"),
  3134. weight: math.unit(50000, "lb"),
  3135. name: "Dragon",
  3136. image: {
  3137. source: "./media/characters/rai/dragon.svg",
  3138. extra: 2498 / 2030,
  3139. bottom: 85.2 / 2584
  3140. },
  3141. form: "dragon",
  3142. default: true
  3143. },
  3144. maw: {
  3145. height: math.unit(1.69, "feet"),
  3146. name: "Maw",
  3147. image: {
  3148. source: "./media/characters/rai/maw.svg"
  3149. },
  3150. form: "anthro"
  3151. },
  3152. },
  3153. [
  3154. {
  3155. name: "Normal",
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. form: "anthro"
  3158. },
  3159. {
  3160. name: "Big",
  3161. height: math.unit(11, "feet"),
  3162. form: "anthro"
  3163. },
  3164. {
  3165. name: "Minimacro",
  3166. height: math.unit(77, "feet"),
  3167. form: "anthro"
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(302, "feet"),
  3172. default: true,
  3173. form: "anthro"
  3174. },
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(9.5, "feet"),
  3178. form: "feral",
  3179. default: true
  3180. },
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(23, "feet"),
  3184. form: "dragon",
  3185. default: true
  3186. }
  3187. ],
  3188. {
  3189. "anthro": {
  3190. name: "Anthro",
  3191. default: true
  3192. },
  3193. "feral": {
  3194. name: "Feral",
  3195. },
  3196. "dragon": {
  3197. name: "Dragon",
  3198. },
  3199. }
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3203. {
  3204. frontDressed: {
  3205. height: math.unit(216, "feet"),
  3206. weight: math.unit(7000000, "lb"),
  3207. preyCapacity: math.unit(1321, "people"),
  3208. name: "Front (Dressed)",
  3209. image: {
  3210. source: "./media/characters/jazzy/front-dressed.svg",
  3211. extra: 2738 / 2651,
  3212. bottom: 41.8 / 2786
  3213. }
  3214. },
  3215. backDressed: {
  3216. height: math.unit(216, "feet"),
  3217. weight: math.unit(7000000, "lb"),
  3218. preyCapacity: math.unit(1321, "people"),
  3219. name: "Back (Dressed)",
  3220. image: {
  3221. source: "./media/characters/jazzy/back-dressed.svg",
  3222. extra: 2775 / 2673,
  3223. bottom: 36.8 / 2817
  3224. }
  3225. },
  3226. front: {
  3227. height: math.unit(216, "feet"),
  3228. weight: math.unit(7000000, "lb"),
  3229. preyCapacity: math.unit(1321, "people"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/jazzy/front.svg",
  3233. extra: 2738 / 2651,
  3234. bottom: 41.8 / 2786
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(216, "feet"),
  3239. weight: math.unit(7000000, "lb"),
  3240. preyCapacity: math.unit(1321, "people"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/jazzy/back.svg",
  3244. extra: 2775 / 2673,
  3245. bottom: 36.8 / 2817
  3246. }
  3247. },
  3248. maw: {
  3249. height: math.unit(20, "feet"),
  3250. name: "Maw",
  3251. image: {
  3252. source: "./media/characters/jazzy/maw.svg"
  3253. }
  3254. },
  3255. paws: {
  3256. height: math.unit(27.5, "feet"),
  3257. name: "Paws",
  3258. image: {
  3259. source: "./media/characters/jazzy/paws.svg"
  3260. }
  3261. },
  3262. eye: {
  3263. height: math.unit(4.4, "feet"),
  3264. name: "Eye",
  3265. image: {
  3266. source: "./media/characters/jazzy/eye.svg"
  3267. }
  3268. },
  3269. droneOffense: {
  3270. height: math.unit(9.5, "inches"),
  3271. name: "Drone (Offense)",
  3272. image: {
  3273. source: "./media/characters/jazzy/drone-offense.svg"
  3274. }
  3275. },
  3276. droneRecon: {
  3277. height: math.unit(9.5, "inches"),
  3278. name: "Drone (Recon)",
  3279. image: {
  3280. source: "./media/characters/jazzy/drone-recon.svg"
  3281. }
  3282. },
  3283. droneDefense: {
  3284. height: math.unit(9.5, "inches"),
  3285. name: "Drone (Defense)",
  3286. image: {
  3287. source: "./media/characters/jazzy/drone-defense.svg"
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(216, "feet"),
  3295. default: true
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(9 + 6/12, "feet"),
  3304. weight: math.unit(700, "lb"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/flamm/front.svg",
  3308. extra: 1736/1596,
  3309. bottom: 93/1829
  3310. }
  3311. },
  3312. buff: {
  3313. height: math.unit(9 + 6/12, "feet"),
  3314. weight: math.unit(950, "lb"),
  3315. name: "Buff",
  3316. image: {
  3317. source: "./media/characters/flamm/buff.svg",
  3318. extra: 3018/2874,
  3319. bottom: 221/3239
  3320. }
  3321. },
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(9.5, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(200, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(5 + 3/12, "feet"),
  3340. weight: math.unit(60, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/zephiro/front.svg",
  3344. extra: 1873/1761,
  3345. bottom: 147/2020
  3346. }
  3347. },
  3348. side: {
  3349. height: math.unit(5 + 3/12, "feet"),
  3350. weight: math.unit(60, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/zephiro/side.svg",
  3354. extra: 1929/1827,
  3355. bottom: 65/1994
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(5 + 3/12, "feet"),
  3360. weight: math.unit(60, "kg"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/zephiro/back.svg",
  3364. extra: 1926/1816,
  3365. bottom: 41/1967
  3366. }
  3367. },
  3368. hand: {
  3369. height: math.unit(0.68, "feet"),
  3370. name: "Hand",
  3371. image: {
  3372. source: "./media/characters/zephiro/hand.svg"
  3373. }
  3374. },
  3375. paw: {
  3376. height: math.unit(1, "feet"),
  3377. name: "Paw",
  3378. image: {
  3379. source: "./media/characters/zephiro/paw.svg"
  3380. }
  3381. },
  3382. beans: {
  3383. height: math.unit(0.93, "feet"),
  3384. name: "Beans",
  3385. image: {
  3386. source: "./media/characters/zephiro/beans.svg"
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Micro",
  3393. height: math.unit(3, "inches")
  3394. },
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5 + 3 / 12, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(118, "feet")
  3403. },
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(5, "feet"),
  3411. weight: math.unit(90, "kg"),
  3412. preyCapacity: math.unit(14, "people"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/fory/front.svg",
  3416. extra: 2862 / 2674,
  3417. bottom: 180 / 3043.8
  3418. },
  3419. form: "weaselbun",
  3420. default: true,
  3421. extraAttributes: {
  3422. "pawSize": {
  3423. name: "Paw Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.1596, "m^2")
  3427. },
  3428. "pawLength": {
  3429. name: "Paw Length",
  3430. power: 1,
  3431. type: "length",
  3432. base: math.unit(0.7, "m")
  3433. }
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(5, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. preyCapacity: math.unit(14, "people"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/fory/back.svg",
  3443. extra: 1790/1672,
  3444. bottom: 84/1874
  3445. },
  3446. form: "weaselbun",
  3447. extraAttributes: {
  3448. "pawSize": {
  3449. name: "Paw Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.1596, "m^2")
  3453. },
  3454. "pawLength": {
  3455. name: "Paw Length",
  3456. power: 1,
  3457. type: "length",
  3458. base: math.unit(0.7, "m")
  3459. }
  3460. }
  3461. },
  3462. paw: {
  3463. height: math.unit(2.14, "feet"),
  3464. name: "Paw",
  3465. image: {
  3466. source: "./media/characters/fory/paw.svg"
  3467. },
  3468. form: "weaselbun",
  3469. extraAttributes: {
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.1596, "m^2")
  3475. },
  3476. "pawLength": {
  3477. name: "Paw Length",
  3478. power: 1,
  3479. type: "length",
  3480. base: math.unit(0.48, "m")
  3481. }
  3482. }
  3483. },
  3484. bunBack: {
  3485. height: math.unit(3, "feet"),
  3486. weight: math.unit(20, "kg"),
  3487. preyCapacity: math.unit(3, "people"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/fory/bun-back.svg",
  3491. extra: 1749/1564,
  3492. bottom: 246/1995
  3493. },
  3494. form: "bun",
  3495. default: true,
  3496. extraAttributes: {
  3497. "pawSize": {
  3498. name: "Paw Size",
  3499. power: 2,
  3500. type: "area",
  3501. base: math.unit(0.072, "m^2")
  3502. },
  3503. "pawLength": {
  3504. name: "Paw Length",
  3505. power: 1,
  3506. type: "length",
  3507. base: math.unit(0.45, "m")
  3508. }
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5, "feet"),
  3516. form: "weaselbun"
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(50, "feet"),
  3521. default: true,
  3522. form: "weaselbun"
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(10, "miles"),
  3527. form: "weaselbun"
  3528. },
  3529. {
  3530. name: "Gigamacro",
  3531. height: math.unit(5, "earths"),
  3532. form: "weaselbun"
  3533. },
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(3, "feet"),
  3537. default: true,
  3538. form: "bun"
  3539. },
  3540. {
  3541. name: "Fun-Size",
  3542. height: math.unit(12, "feet"),
  3543. form: "bun"
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(100, "feet"),
  3548. form: "bun"
  3549. },
  3550. {
  3551. name: "Planetary",
  3552. height: math.unit(3, "earths"),
  3553. form: "bun"
  3554. },
  3555. ],
  3556. {
  3557. "weaselbun": {
  3558. name: "Weaselbun",
  3559. default: true
  3560. },
  3561. "bun": {
  3562. name: "Bun",
  3563. },
  3564. }
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(7, "feet"),
  3571. weight: math.unit(90, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/kurrikage/front.svg",
  3575. extra: 1845/1733,
  3576. bottom: 119/1964
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(7, "feet"),
  3581. weight: math.unit(90, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/kurrikage/back.svg",
  3585. extra: 1790/1677,
  3586. bottom: 61/1851
  3587. }
  3588. },
  3589. dressed: {
  3590. height: math.unit(7, "feet"),
  3591. weight: math.unit(90, "kg"),
  3592. name: "Dressed",
  3593. image: {
  3594. source: "./media/characters/kurrikage/dressed.svg",
  3595. extra: 1845/1733,
  3596. bottom: 119/1964
  3597. }
  3598. },
  3599. foot: {
  3600. height: math.unit(1.5, "feet"),
  3601. name: "Foot",
  3602. image: {
  3603. source: "./media/characters/kurrikage/foot.svg"
  3604. }
  3605. },
  3606. staff: {
  3607. height: math.unit(6.7, "feet"),
  3608. name: "Staff",
  3609. image: {
  3610. source: "./media/characters/kurrikage/staff.svg"
  3611. }
  3612. },
  3613. peek: {
  3614. height: math.unit(1.05, "feet"),
  3615. name: "Peeking",
  3616. image: {
  3617. source: "./media/characters/kurrikage/peek.svg",
  3618. bottom: 0.08
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(12, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Big",
  3630. height: math.unit(20, "feet")
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(500, "feet")
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(20, "miles")
  3639. },
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/shingo/front.svg",
  3651. extra: 1900/1825,
  3652. bottom: 82/1982
  3653. }
  3654. },
  3655. side: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Side",
  3659. image: {
  3660. source: "./media/characters/shingo/side.svg",
  3661. extra: 1930/1865,
  3662. bottom: 16/1946
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(6, "feet"),
  3667. weight: math.unit(75, "kg"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/shingo/back.svg",
  3671. extra: 1922/1852,
  3672. bottom: 16/1938
  3673. }
  3674. },
  3675. frontDressed: {
  3676. height: math.unit(6, "feet"),
  3677. weight: math.unit(150, "lb"),
  3678. name: "Front-dressed",
  3679. image: {
  3680. source: "./media/characters/shingo/front-dressed.svg",
  3681. extra: 1900/1825,
  3682. bottom: 82/1982
  3683. }
  3684. },
  3685. paw: {
  3686. height: math.unit(1.29, "feet"),
  3687. name: "Paw",
  3688. image: {
  3689. source: "./media/characters/shingo/paw.svg"
  3690. }
  3691. },
  3692. hand: {
  3693. height: math.unit(1.07, "feet"),
  3694. name: "Hand",
  3695. image: {
  3696. source: "./media/characters/shingo/hand.svg"
  3697. }
  3698. },
  3699. frontAlt: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Front (Alt)",
  3703. image: {
  3704. source: "./media/characters/shingo/front-alt.svg",
  3705. extra: 3511 / 3338,
  3706. bottom: 0.005
  3707. }
  3708. },
  3709. frontAlt2: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front (Alt 2)",
  3713. image: {
  3714. source: "./media/characters/shingo/front-alt-2.svg",
  3715. extra: 706/681,
  3716. bottom: 11/717
  3717. }
  3718. },
  3719. pawAlt: {
  3720. height: math.unit(1, "feet"),
  3721. name: "Paw (Alt)",
  3722. image: {
  3723. source: "./media/characters/shingo/paw-alt.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Micro",
  3730. height: math.unit(4, "inches")
  3731. },
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(6, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(108, "feet")
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(1500, "feet")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3749. {
  3750. side: {
  3751. height: math.unit(6, "feet"),
  3752. weight: math.unit(75, "kg"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/aigey/side.svg"
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(200, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(100, "miles")
  3768. },
  3769. ]
  3770. )
  3771. )
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(5 + 5 / 12, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/natasha/front.svg",
  3781. extra: 859 / 824,
  3782. bottom: 23 / 879.6
  3783. }
  3784. },
  3785. frontNsfw: {
  3786. height: math.unit(5 + 5 / 12, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Front (NSFW)",
  3789. image: {
  3790. source: "./media/characters/natasha/front-nsfw.svg",
  3791. extra: 859 / 824,
  3792. bottom: 23 / 879.6
  3793. }
  3794. },
  3795. frontErect: {
  3796. height: math.unit(5 + 5 / 12, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Front (Erect)",
  3799. image: {
  3800. source: "./media/characters/natasha/front-erect.svg",
  3801. extra: 859 / 824,
  3802. bottom: 23 / 879.6
  3803. }
  3804. },
  3805. back: {
  3806. height: math.unit(5 + 5 / 12, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Back",
  3809. image: {
  3810. source: "./media/characters/natasha/back.svg",
  3811. extra: 887.9 / 852.6,
  3812. bottom: 9.7 / 896.4
  3813. }
  3814. },
  3815. backAlt: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Back (Alt)",
  3819. image: {
  3820. source: "./media/characters/natasha/back-alt.svg",
  3821. extra: 1236.7 / 1192,
  3822. bottom: 22.3 / 1258.2
  3823. }
  3824. },
  3825. dick: {
  3826. height: math.unit(1.772, "feet"),
  3827. name: "Dick",
  3828. image: {
  3829. source: "./media/characters/natasha/dick.svg"
  3830. }
  3831. },
  3832. paw: {
  3833. height: math.unit(0.250, "meters"),
  3834. name: "Paw",
  3835. image: {
  3836. source: "./media/characters/natasha/paw.svg"
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0024, "m^2")
  3844. },
  3845. "padSize": {
  3846. name: "Pad Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.00889, "m^2")
  3850. },
  3851. "pawSize": {
  3852. name: "Paw Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.023667, "m^2")
  3856. },
  3857. }
  3858. },
  3859. },
  3860. [
  3861. {
  3862. name: "Shortstack",
  3863. height: math.unit(3, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(5 + 5 / 12, "feet")
  3869. },
  3870. {
  3871. name: "Large",
  3872. height: math.unit(12, "feet")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(100, "feet")
  3877. },
  3878. {
  3879. name: "Macro+",
  3880. height: math.unit(260, "feet")
  3881. },
  3882. {
  3883. name: "Macro++",
  3884. height: math.unit(1, "mile")
  3885. },
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(75, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/malik/front.svg",
  3897. extra: 1750/1561,
  3898. bottom: 80/1830
  3899. },
  3900. extraAttributes: {
  3901. "toeSize": {
  3902. name: "Toe Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.0159, "m^2")
  3906. },
  3907. "pawSize": {
  3908. name: "Paw Size",
  3909. power: 2,
  3910. type: "area",
  3911. base: math.unit(0.09834, "m^2")
  3912. },
  3913. }
  3914. },
  3915. side: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(75, "kg"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/malik/side.svg",
  3921. extra: 1802/1685,
  3922. bottom: 42/1844
  3923. },
  3924. extraAttributes: {
  3925. "toeSize": {
  3926. name: "Toe Size",
  3927. power: 2,
  3928. type: "area",
  3929. base: math.unit(0.0159, "m^2")
  3930. },
  3931. "pawSize": {
  3932. name: "Paw Size",
  3933. power: 2,
  3934. type: "area",
  3935. base: math.unit(0.09834, "m^2")
  3936. },
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/malik/back.svg",
  3945. extra: 1803/1607,
  3946. bottom: 33/1836
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(156, "feet"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Macro+",
  3972. height: math.unit(1188, "feet")
  3973. },
  3974. ]
  3975. ))
  3976. characterMakers.push(() => makeCharacter(
  3977. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3978. {
  3979. front: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Front",
  3983. image: {
  3984. source: "./media/characters/sefer/front.svg",
  3985. extra: 848 / 659,
  3986. bottom: 28.3 / 876.442
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(75, "kg"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/sefer/back.svg",
  3995. extra: 864 / 695,
  3996. bottom: 10 / 871
  3997. }
  3998. },
  3999. frontDressed: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(75, "kg"),
  4002. name: "Dressed",
  4003. image: {
  4004. source: "./media/characters/sefer/dressed.svg",
  4005. extra: 839 / 653,
  4006. bottom: 37.6 / 878
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(6, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Big",
  4018. height: math.unit(8, "meters")
  4019. },
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4024. {
  4025. body: {
  4026. height: math.unit(2.2428, "meter"),
  4027. weight: math.unit(124.738, "kg"),
  4028. name: "Body",
  4029. image: {
  4030. extra: 1225 / 1050,
  4031. source: "./media/characters/north/front.svg"
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Micro",
  4038. height: math.unit(4, "inches")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(63, "meters")
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(101, "miles"),
  4047. default: true
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4053. {
  4054. angled: {
  4055. height: math.unit(4, "meter"),
  4056. weight: math.unit(150, "kg"),
  4057. name: "Angled",
  4058. image: {
  4059. source: "./media/characters/talan/angled-sfw.svg",
  4060. bottom: 29 / 3734
  4061. }
  4062. },
  4063. angledNsfw: {
  4064. height: math.unit(4, "meter"),
  4065. weight: math.unit(150, "kg"),
  4066. name: "Angled (NSFW)",
  4067. image: {
  4068. source: "./media/characters/talan/angled-nsfw.svg",
  4069. bottom: 29 / 3734
  4070. }
  4071. },
  4072. frontNsfw: {
  4073. height: math.unit(4, "meter"),
  4074. weight: math.unit(150, "kg"),
  4075. name: "Front (NSFW)",
  4076. image: {
  4077. source: "./media/characters/talan/front-nsfw.svg",
  4078. bottom: 29 / 3734
  4079. }
  4080. },
  4081. sideNsfw: {
  4082. height: math.unit(4, "meter"),
  4083. weight: math.unit(150, "kg"),
  4084. name: "Side (NSFW)",
  4085. image: {
  4086. source: "./media/characters/talan/side-nsfw.svg",
  4087. bottom: 29 / 3734
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(4, "meter"),
  4092. weight: math.unit(150, "kg"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/talan/back.svg"
  4096. }
  4097. },
  4098. dickBottom: {
  4099. height: math.unit(0.621, "meter"),
  4100. name: "Dick (Bottom)",
  4101. image: {
  4102. source: "./media/characters/talan/dick-bottom.svg"
  4103. }
  4104. },
  4105. dickTop: {
  4106. height: math.unit(0.621, "meter"),
  4107. name: "Dick (Top)",
  4108. image: {
  4109. source: "./media/characters/talan/dick-top.svg"
  4110. }
  4111. },
  4112. dickSide: {
  4113. height: math.unit(0.305, "meter"),
  4114. name: "Dick (Side)",
  4115. image: {
  4116. source: "./media/characters/talan/dick-side.svg"
  4117. }
  4118. },
  4119. dickFront: {
  4120. height: math.unit(0.305, "meter"),
  4121. name: "Dick (Front)",
  4122. image: {
  4123. source: "./media/characters/talan/dick-front.svg"
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(4, "meters")
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(100, "meters")
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(2, "miles"),
  4139. default: true
  4140. },
  4141. {
  4142. name: "Gigamacro",
  4143. height: math.unit(5000, "miles")
  4144. },
  4145. {
  4146. name: "Teramacro",
  4147. height: math.unit(100, "parsecs")
  4148. }
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4153. {
  4154. front: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front.svg"
  4160. }
  4161. },
  4162. frontAlt: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front (alt)",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front-alt.svg"
  4168. }
  4169. },
  4170. frontAlt2: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(90, "kg"),
  4173. name: "Front (alt 2)",
  4174. image: {
  4175. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4176. }
  4177. }
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(9, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Large",
  4187. height: math.unit(25, "feet")
  4188. },
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(0.25, "miles")
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(10, "miles")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4201. {
  4202. side: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(140, "kg"),
  4205. name: "Side",
  4206. image: {
  4207. source: "./media/characters/sosha/side.svg",
  4208. extra: 1170/1006,
  4209. bottom: 94/1264
  4210. }
  4211. },
  4212. maw: {
  4213. height: math.unit(2.87, "feet"),
  4214. name: "Maw",
  4215. image: {
  4216. source: "./media/characters/sosha/maw.svg",
  4217. extra: 966/865,
  4218. bottom: 0/966
  4219. }
  4220. },
  4221. cooch: {
  4222. height: math.unit(5.6, "feet"),
  4223. name: "Cooch",
  4224. image: {
  4225. source: "./media/characters/sosha/cooch.svg"
  4226. }
  4227. },
  4228. },
  4229. [
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(12, "feet"),
  4233. default: true
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4239. {
  4240. side: {
  4241. height: math.unit(5 + 5 / 12, "feet"),
  4242. weight: math.unit(170, "kg"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/runnola/side.svg",
  4246. extra: 741 / 448,
  4247. bottom: 0.05
  4248. }
  4249. },
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(3, "feet")
  4255. },
  4256. {
  4257. name: "Normal",
  4258. height: math.unit(5 + 5 / 12, "feet"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Big",
  4263. height: math.unit(10, "feet")
  4264. },
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(2, "meter"),
  4272. weight: math.unit(50, "kg"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/kurribird/front.svg",
  4276. bottom: 0.015
  4277. }
  4278. },
  4279. frontAlt: {
  4280. height: math.unit(1.5, "meter"),
  4281. weight: math.unit(50, "kg"),
  4282. name: "Front (Alt)",
  4283. image: {
  4284. source: "./media/characters/kurribird/front-alt.svg",
  4285. extra: 1.45
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(7, "feet")
  4293. },
  4294. {
  4295. name: "Big",
  4296. height: math.unit(12, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(1500, "feet")
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(2, "miles")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/elbial/front.svg",
  4318. extra: 1643 / 1556,
  4319. bottom: 60.2 / 1696
  4320. }
  4321. },
  4322. side: {
  4323. height: math.unit(2, "meter"),
  4324. weight: math.unit(80, "kg"),
  4325. name: "Side",
  4326. image: {
  4327. source: "./media/characters/elbial/side.svg",
  4328. extra: 1601/1528,
  4329. bottom: 97/1698
  4330. }
  4331. },
  4332. back: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(80, "kg"),
  4335. name: "Back",
  4336. image: {
  4337. source: "./media/characters/elbial/back.svg",
  4338. extra: 1653/1569,
  4339. bottom: 20/1673
  4340. }
  4341. },
  4342. frontDressed: {
  4343. height: math.unit(2, "meter"),
  4344. weight: math.unit(80, "kg"),
  4345. name: "Front (Dressed)",
  4346. image: {
  4347. source: "./media/characters/elbial/front-dressed.svg",
  4348. extra: 1638/1569,
  4349. bottom: 70/1708
  4350. }
  4351. },
  4352. genitals: {
  4353. height: math.unit(2 / 3.367, "meter"),
  4354. name: "Genitals",
  4355. image: {
  4356. source: "./media/characters/elbial/genitals.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Large",
  4363. height: math.unit(100, "feet")
  4364. },
  4365. {
  4366. name: "Macro",
  4367. height: math.unit(500, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Megamacro",
  4372. height: math.unit(10, "miles")
  4373. },
  4374. {
  4375. name: "Gigamacro",
  4376. height: math.unit(25000, "miles")
  4377. },
  4378. {
  4379. name: "Full-Size",
  4380. height: math.unit(8000000, "gigaparsecs")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4386. {
  4387. front: {
  4388. height: math.unit(2, "meter"),
  4389. weight: math.unit(60, "kg"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/noah/front.svg",
  4393. extra: 1383/1313,
  4394. bottom: 104/1487
  4395. }
  4396. },
  4397. hand: {
  4398. height: math.unit(0.6, "feet"),
  4399. name: "Hand",
  4400. image: {
  4401. source: "./media/characters/noah/hand.svg"
  4402. }
  4403. },
  4404. talons: {
  4405. height: math.unit(1.385, "feet"),
  4406. name: "Talons",
  4407. image: {
  4408. source: "./media/characters/noah/talons.svg"
  4409. }
  4410. },
  4411. beak: {
  4412. height: math.unit(0.43, "feet"),
  4413. name: "Beak",
  4414. image: {
  4415. source: "./media/characters/noah/beak.svg"
  4416. }
  4417. },
  4418. collar: {
  4419. height: math.unit(0.88, "feet"),
  4420. name: "Collar",
  4421. image: {
  4422. source: "./media/characters/noah/collar.svg"
  4423. }
  4424. },
  4425. eyeNarrow: {
  4426. height: math.unit(0.18, "feet"),
  4427. name: "Eye (Narrow)",
  4428. image: {
  4429. source: "./media/characters/noah/eye-narrow.svg"
  4430. }
  4431. },
  4432. eyeNormal: {
  4433. height: math.unit(0.18, "feet"),
  4434. name: "Eye (Normal)",
  4435. image: {
  4436. source: "./media/characters/noah/eye-normal.svg"
  4437. }
  4438. },
  4439. eyeWide: {
  4440. height: math.unit(0.18, "feet"),
  4441. name: "Eye (Wide)",
  4442. image: {
  4443. source: "./media/characters/noah/eye-wide.svg"
  4444. }
  4445. },
  4446. ear: {
  4447. height: math.unit(0.64, "feet"),
  4448. name: "Ear",
  4449. image: {
  4450. source: "./media/characters/noah/ear.svg"
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(750, "feet"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(50, "miles")
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(100000, "miles")
  4471. },
  4472. {
  4473. name: "Full-Size",
  4474. height: math.unit(3000000000, "miles")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(80, "kg"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/natalya/front.svg"
  4487. }
  4488. },
  4489. back: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Back",
  4493. image: {
  4494. source: "./media/characters/natalya/back.svg"
  4495. }
  4496. }
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(150, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(5, "miles")
  4507. },
  4508. {
  4509. name: "Full-Size",
  4510. height: math.unit(600, "kiloparsecs")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(50, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/erestrebah/front.svg",
  4523. extra: 1262/1162,
  4524. bottom: 96/1358
  4525. }
  4526. },
  4527. back: {
  4528. height: math.unit(2, "meter"),
  4529. weight: math.unit(50, "kg"),
  4530. name: "Back",
  4531. image: {
  4532. source: "./media/characters/erestrebah/back.svg",
  4533. extra: 1257/1139,
  4534. bottom: 13/1270
  4535. }
  4536. },
  4537. wing: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(50, "kg"),
  4540. name: "Wing",
  4541. image: {
  4542. source: "./media/characters/erestrebah/wing.svg",
  4543. extra: 1262/1162,
  4544. bottom: 96/1358
  4545. }
  4546. },
  4547. mouth: {
  4548. height: math.unit(0.39, "feet"),
  4549. name: "Mouth",
  4550. image: {
  4551. source: "./media/characters/erestrebah/mouth.svg"
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(10, "feet")
  4559. },
  4560. {
  4561. name: "Large",
  4562. height: math.unit(50, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(300, "feet")
  4568. },
  4569. {
  4570. name: "Macro+",
  4571. height: math.unit(750, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(3, "miles")
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(2, "meter"),
  4584. weight: math.unit(80, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/jennifer/front.svg",
  4588. bottom: 0.11,
  4589. extra: 1.16
  4590. }
  4591. },
  4592. frontAlt: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(80, "kg"),
  4595. name: "Front (Alt)",
  4596. image: {
  4597. source: "./media/characters/jennifer/front-alt.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Canon Height",
  4604. height: math.unit(120, "feet"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Macro+",
  4609. height: math.unit(300, "feet")
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(20000, "feet")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/kalista/front.svg",
  4626. extra: 1314/1145,
  4627. bottom: 101/1415
  4628. }
  4629. },
  4630. back: {
  4631. height: math.unit(2, "meter"),
  4632. weight: math.unit(50, "kg"),
  4633. name: "Back",
  4634. image: {
  4635. source: "./media/characters/kalista/back.svg",
  4636. extra: 1366 / 1156,
  4637. bottom: 33.9 / 1362.78
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Uncomfortably Small",
  4644. height: math.unit(10, "feet")
  4645. },
  4646. {
  4647. name: "Small",
  4648. height: math.unit(30, "feet")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(100, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(2000, "feet")
  4658. },
  4659. {
  4660. name: "True Form",
  4661. height: math.unit(8924, "miles")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(120, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/ggv/front.svg"
  4674. }
  4675. },
  4676. side: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(120, "kg"),
  4679. name: "Side",
  4680. image: {
  4681. source: "./media/characters/ggv/side.svg"
  4682. }
  4683. }
  4684. },
  4685. [
  4686. {
  4687. name: "Extremely Puny",
  4688. height: math.unit(9 + 5 / 12, "feet")
  4689. },
  4690. {
  4691. name: "Horribly Small",
  4692. height: math.unit(47.7, "miles"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Reasonably Sized",
  4697. height: math.unit(25000, "parsecs")
  4698. },
  4699. {
  4700. name: "Slightly Uncompressed",
  4701. height: math.unit(7.77e31, "parsecs")
  4702. },
  4703. {
  4704. name: "Omniversal",
  4705. height: math.unit(1e300, "meters")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(75, "lb"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/napalm/front.svg"
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(2, "meter"),
  4722. weight: math.unit(75, "lb"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/napalm/back.svg"
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Standard",
  4732. height: math.unit(55, "feet"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(7 + 5 / 6, "feet"),
  4742. weight: math.unit(325, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/asana/front.svg",
  4746. extra: 1133 / 1060,
  4747. bottom: 15.2 / 1148.6
  4748. }
  4749. },
  4750. back: {
  4751. height: math.unit(7 + 5 / 6, "feet"),
  4752. weight: math.unit(325, "lb"),
  4753. name: "Back",
  4754. image: {
  4755. source: "./media/characters/asana/back.svg",
  4756. extra: 1114 / 1043,
  4757. bottom: 5 / 1120
  4758. }
  4759. },
  4760. dressedDark: {
  4761. height: math.unit(7 + 5 / 6, "feet"),
  4762. weight: math.unit(325, "lb"),
  4763. name: "Dressed (Dark)",
  4764. image: {
  4765. source: "./media/characters/asana/dressed-dark.svg",
  4766. extra: 1133 / 1060,
  4767. bottom: 15.2 / 1148.6
  4768. }
  4769. },
  4770. dressedLight: {
  4771. height: math.unit(7 + 5 / 6, "feet"),
  4772. weight: math.unit(325, "lb"),
  4773. name: "Dressed (Light)",
  4774. image: {
  4775. source: "./media/characters/asana/dressed-light.svg",
  4776. extra: 1133 / 1060,
  4777. bottom: 15.2 / 1148.6
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Standard",
  4784. height: math.unit(7 + 5 / 6, "feet"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Large",
  4789. height: math.unit(10, "meters")
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(2500, "meters")
  4794. },
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(5e6, "meters")
  4798. },
  4799. {
  4800. name: "Examacro",
  4801. height: math.unit(5e12, "lightyears")
  4802. },
  4803. {
  4804. name: "Max Size",
  4805. height: math.unit(1e31, "lightyears")
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4811. {
  4812. front: {
  4813. height: math.unit(2, "meter"),
  4814. weight: math.unit(60, "kg"),
  4815. name: "Front",
  4816. image: {
  4817. source: "./media/characters/ebony/front.svg",
  4818. bottom: 0.03,
  4819. extra: 1045 / 810 + 0.03
  4820. }
  4821. },
  4822. side: {
  4823. height: math.unit(2, "meter"),
  4824. weight: math.unit(60, "kg"),
  4825. name: "Side",
  4826. image: {
  4827. source: "./media/characters/ebony/side.svg",
  4828. bottom: 0.03,
  4829. extra: 1045 / 810 + 0.03
  4830. }
  4831. },
  4832. back: {
  4833. height: math.unit(2, "meter"),
  4834. weight: math.unit(60, "kg"),
  4835. name: "Back",
  4836. image: {
  4837. source: "./media/characters/ebony/back.svg",
  4838. bottom: 0.01,
  4839. extra: 1045 / 810 + 0.01
  4840. }
  4841. },
  4842. },
  4843. [
  4844. // TODO check why I did this lol
  4845. {
  4846. name: "Standard",
  4847. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(200, "feet")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(13000, "km")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/mountain/front.svg",
  4869. extra: 972 / 955,
  4870. bottom: 64 / 1036.6
  4871. }
  4872. },
  4873. back: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(175, "lb"),
  4876. name: "Back",
  4877. image: {
  4878. source: "./media/characters/mountain/back.svg",
  4879. extra: 970 / 950,
  4880. bottom: 28.25 / 999
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Large",
  4887. height: math.unit(20, "meters")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(300, "meters")
  4892. },
  4893. {
  4894. name: "Gigamacro",
  4895. height: math.unit(10000, "km"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(10e9, "lightyears")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(8, "feet"),
  4909. weight: math.unit(500, "lb"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rick/front.svg"
  4913. }
  4914. }
  4915. },
  4916. [
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(8, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(5, "km")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/ona/front.svg"
  4937. }
  4938. },
  4939. frontAlt: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Front (Alt)",
  4943. image: {
  4944. source: "./media/characters/ona/front-alt.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(120, "lb"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/ona/back.svg"
  4953. }
  4954. },
  4955. foot: {
  4956. height: math.unit(1.1, "feet"),
  4957. name: "Foot",
  4958. image: {
  4959. source: "./media/characters/ona/foot.svg"
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Megamacro",
  4966. height: math.unit(70, "km"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Gigamacro",
  4971. height: math.unit(681818, "miles")
  4972. },
  4973. {
  4974. name: "Examacro",
  4975. height: math.unit(3800000, "lightyears")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(12, "feet"),
  4984. weight: math.unit(3000, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/mech/front.svg",
  4988. extra: 2900 / 2770,
  4989. bottom: 110 / 3010
  4990. }
  4991. },
  4992. back: {
  4993. height: math.unit(12, "feet"),
  4994. weight: math.unit(3000, "lb"),
  4995. name: "Back",
  4996. image: {
  4997. source: "./media/characters/mech/back.svg",
  4998. extra: 3011 / 2890,
  4999. bottom: 94 / 3105
  5000. }
  5001. },
  5002. maw: {
  5003. height: math.unit(3.07, "feet"),
  5004. name: "Maw",
  5005. image: {
  5006. source: "./media/characters/mech/maw.svg"
  5007. }
  5008. },
  5009. head: {
  5010. height: math.unit(3.07, "feet"),
  5011. name: "Head",
  5012. image: {
  5013. source: "./media/characters/mech/head.svg"
  5014. }
  5015. },
  5016. dick: {
  5017. height: math.unit(1.43, "feet"),
  5018. name: "Dick",
  5019. image: {
  5020. source: "./media/characters/mech/dick.svg"
  5021. }
  5022. },
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(12, "feet")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(300, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Macro+",
  5036. height: math.unit(1500, "feet")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(1.3, "meter"),
  5045. weight: math.unit(30, "kg"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/gregory/front.svg",
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(1.3, "meter"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(20, "meter")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(2.8, "meter"),
  5069. weight: math.unit(200, "kg"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/elory/front.svg",
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(2.8, "meter"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(38, "meter")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(470, "feet"),
  5093. weight: math.unit(924, "tons"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/angelpatamon/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(470, "feet"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Deity Size I",
  5108. height: math.unit(28651.2, "km")
  5109. },
  5110. {
  5111. name: "Deity Size II",
  5112. height: math.unit(171907.2, "km")
  5113. }
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5118. {
  5119. side: {
  5120. height: math.unit(7.2, "meter"),
  5121. weight: math.unit(8.2, "tons"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/cryae/side.svg",
  5125. extra: 3500 / 1500
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7.2, "meter"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(175, "lb"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/xera/front.svg",
  5146. extra: 2377 / 1972,
  5147. bottom: 75.5 / 2452
  5148. }
  5149. },
  5150. side: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(175, "lb"),
  5153. name: "Side",
  5154. image: {
  5155. source: "./media/characters/xera/side.svg",
  5156. extra: 2345 / 2019,
  5157. bottom: 39.7 / 2384
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(175, "lb"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/xera/back.svg",
  5166. extra: 2095 / 1984,
  5167. bottom: 67 / 2166
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Small",
  5174. height: math.unit(10, "feet")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(500, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(10, "km")
  5184. },
  5185. {
  5186. name: "Gigamacro",
  5187. height: math.unit(25000, "km")
  5188. },
  5189. {
  5190. name: "Teramacro",
  5191. height: math.unit(3e6, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(175, "lb"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/nebula/front.svg",
  5204. extra: 2566 / 2362,
  5205. bottom: 81 / 2644
  5206. }
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Small",
  5212. height: math.unit(4.5, "meters")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(1500, "meters"),
  5217. default: true
  5218. },
  5219. {
  5220. name: "Megamacro",
  5221. height: math.unit(150, "km")
  5222. },
  5223. {
  5224. name: "Gigamacro",
  5225. height: math.unit(27000, "km")
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(225, "lb"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/abysgar/front.svg",
  5238. extra: 1739/1614,
  5239. bottom: 71/1810
  5240. }
  5241. },
  5242. frontNsfw: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(225, "lb"),
  5245. name: "Front (NSFW)",
  5246. image: {
  5247. source: "./media/characters/abysgar/front-nsfw.svg",
  5248. extra: 1739/1614,
  5249. bottom: 71/1810
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(4.6, "feet"),
  5254. weight: math.unit(225, "lb"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/abysgar/back.svg",
  5258. extra: 1384/1327,
  5259. bottom: 0/1384
  5260. }
  5261. },
  5262. head: {
  5263. height: math.unit(1.25, "feet"),
  5264. name: "Head",
  5265. image: {
  5266. source: "./media/characters/abysgar/head.svg",
  5267. extra: 669/569,
  5268. bottom: 0/669
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Small",
  5275. height: math.unit(4.5, "meters")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(1250, "meters"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(125, "km")
  5285. },
  5286. {
  5287. name: "Gigamacro",
  5288. height: math.unit(26000, "km")
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(180, "lb"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/yakuz/front.svg"
  5301. }
  5302. }
  5303. },
  5304. [
  5305. {
  5306. name: "Small",
  5307. height: math.unit(5, "meters")
  5308. },
  5309. {
  5310. name: "Macro",
  5311. height: math.unit(1500, "meters"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(200, "km")
  5317. },
  5318. {
  5319. name: "Gigamacro",
  5320. height: math.unit(100000, "km")
  5321. }
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(175, "lb"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/mirova/front.svg",
  5333. extra: 3334 / 3071,
  5334. bottom: 42 / 3375.6
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Small",
  5341. height: math.unit(5, "meters")
  5342. },
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(900, "meters"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Megamacro",
  5350. height: math.unit(135, "km")
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(20000, "km")
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5360. {
  5361. side: {
  5362. height: math.unit(28.35, "feet"),
  5363. weight: math.unit(99.75, "tons"),
  5364. name: "Side",
  5365. image: {
  5366. source: "./media/characters/asana-mech/side.svg",
  5367. extra: 923 / 699,
  5368. bottom: 50 / 975
  5369. }
  5370. },
  5371. chaingun: {
  5372. height: math.unit(7, "feet"),
  5373. weight: math.unit(2400, "lb"),
  5374. name: "Chaingun",
  5375. image: {
  5376. source: "./media/characters/asana-mech/chaingun.svg"
  5377. }
  5378. },
  5379. laser: {
  5380. height: math.unit(7.12, "feet"),
  5381. weight: math.unit(2000, "lb"),
  5382. name: "Laser",
  5383. image: {
  5384. source: "./media/characters/asana-mech/laser.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(28.35, "feet"),
  5392. default: true
  5393. },
  5394. {
  5395. name: "Macro",
  5396. height: math.unit(2500, "feet")
  5397. },
  5398. {
  5399. name: "Megamacro",
  5400. height: math.unit(25, "miles")
  5401. },
  5402. {
  5403. name: "Examacro",
  5404. height: math.unit(6e8, "lightyears")
  5405. },
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5410. {
  5411. front: {
  5412. height: math.unit(5, "meters"),
  5413. weight: math.unit(1000, "kg"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/asche/front.svg",
  5417. extra: 1258 / 1190,
  5418. bottom: 47 / 1305
  5419. }
  5420. },
  5421. frontUnderwear: {
  5422. height: math.unit(5, "meters"),
  5423. weight: math.unit(1000, "kg"),
  5424. name: "Front (Underwear)",
  5425. image: {
  5426. source: "./media/characters/asche/front-underwear.svg",
  5427. extra: 1258 / 1190,
  5428. bottom: 47 / 1305
  5429. }
  5430. },
  5431. frontDressed: {
  5432. height: math.unit(5, "meters"),
  5433. weight: math.unit(1000, "kg"),
  5434. name: "Front (Dressed)",
  5435. image: {
  5436. source: "./media/characters/asche/front-dressed.svg",
  5437. extra: 1258 / 1190,
  5438. bottom: 47 / 1305
  5439. }
  5440. },
  5441. frontArmor: {
  5442. height: math.unit(5, "meters"),
  5443. weight: math.unit(1000, "kg"),
  5444. name: "Front (Armored)",
  5445. image: {
  5446. source: "./media/characters/asche/front-armored.svg",
  5447. extra: 1374 / 1308,
  5448. bottom: 23 / 1397
  5449. }
  5450. },
  5451. mp724: {
  5452. height: math.unit(0.96, "meters"),
  5453. weight: math.unit(38, "kg"),
  5454. name: "H&K MP724",
  5455. image: {
  5456. source: "./media/characters/asche/h&k-mp724.svg"
  5457. }
  5458. },
  5459. side: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/asche/side.svg",
  5465. extra: 1717 / 1609,
  5466. bottom: 0.005
  5467. }
  5468. },
  5469. back: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Back",
  5473. image: {
  5474. source: "./media/characters/asche/back.svg",
  5475. extra: 1570 / 1501
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "DEFCON 5",
  5482. height: math.unit(5, "meters")
  5483. },
  5484. {
  5485. name: "DEFCON 4",
  5486. height: math.unit(500, "meters"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "DEFCON 3",
  5491. height: math.unit(5, "km")
  5492. },
  5493. {
  5494. name: "DEFCON 2",
  5495. height: math.unit(500, "km")
  5496. },
  5497. {
  5498. name: "DEFCON 1",
  5499. height: math.unit(500000, "km")
  5500. },
  5501. {
  5502. name: "DEFCON 0",
  5503. height: math.unit(3, "gigaparsecs")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(7, "feet"),
  5512. weight: math.unit(92.7, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/gale/front.svg",
  5516. extra: 977/919,
  5517. bottom: 105/1082
  5518. }
  5519. },
  5520. side: {
  5521. height: math.unit(6.7, "feet"),
  5522. weight: math.unit(92.7, "kg"),
  5523. name: "Side",
  5524. image: {
  5525. source: "./media/characters/gale/side.svg",
  5526. extra: 978/922,
  5527. bottom: 140/1118
  5528. }
  5529. },
  5530. back: {
  5531. height: math.unit(7, "feet"),
  5532. weight: math.unit(92.7, "kg"),
  5533. name: "Back",
  5534. image: {
  5535. source: "./media/characters/gale/back.svg",
  5536. extra: 966/920,
  5537. bottom: 61/1027
  5538. }
  5539. },
  5540. maw: {
  5541. height: math.unit(2.23, "feet"),
  5542. name: "Maw",
  5543. image: {
  5544. source: "./media/characters/gale/maw.svg"
  5545. }
  5546. },
  5547. foot: {
  5548. height: math.unit(2.1, "feet"),
  5549. name: "Foot",
  5550. image: {
  5551. source: "./media/characters/gale/foot.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(7, "feet")
  5559. },
  5560. {
  5561. name: "Macro",
  5562. height: math.unit(150, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Macro+",
  5567. height: math.unit(300, "feet")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(5 + 10/12, "feet"),
  5576. weight: math.unit(67, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/draylen/front.svg",
  5580. extra: 832/777,
  5581. bottom: 85/917
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 10/12, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(150, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(7 + 9 / 12, "feet"),
  5602. weight: math.unit(379, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/chez/front.svg"
  5606. }
  5607. },
  5608. side: {
  5609. height: math.unit(7 + 9 / 12, "feet"),
  5610. weight: math.unit(379, "lbs"),
  5611. name: "Side",
  5612. image: {
  5613. source: "./media/characters/chez/side.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(7 + 9 / 12, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "God King",
  5625. height: math.unit(9750000, "meters")
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(275, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/kaylum/front.svg",
  5638. bottom: 0.01,
  5639. extra: 1166 / 1031
  5640. }
  5641. },
  5642. frontWingless: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(275, "lbs"),
  5645. name: "Front (Wingless)",
  5646. image: {
  5647. source: "./media/characters/kaylum/front-wingless.svg",
  5648. bottom: 0.01,
  5649. extra: 1117 / 1031
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(3.05, "meters")
  5657. },
  5658. {
  5659. name: "Master",
  5660. height: math.unit(5.5, "meters")
  5661. },
  5662. {
  5663. name: "Rampage",
  5664. height: math.unit(19, "meters")
  5665. },
  5666. {
  5667. name: "Macro Lite",
  5668. height: math.unit(37, "meters")
  5669. },
  5670. {
  5671. name: "Hyper Predator",
  5672. height: math.unit(61, "meters")
  5673. },
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(138, "meters"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(5 + 5 / 12, "feet"),
  5686. weight: math.unit(120, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/geta/front.svg",
  5690. extra: 1003/933,
  5691. bottom: 21/1024
  5692. }
  5693. },
  5694. paw: {
  5695. height: math.unit(0.35, "feet"),
  5696. name: "Paw",
  5697. image: {
  5698. source: "./media/characters/geta/paw.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(3, "inches"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 5 / 12, "feet")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(300, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/tyrnn/front.svg"
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Main Height",
  5729. height: math.unit(355, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Fave. Height",
  5734. height: math.unit(2400, "feet")
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/appledectomy/front.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(2500, "feet")
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(50, "miles"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Gigamacro",
  5762. height: math.unit(5000, "miles")
  5763. },
  5764. {
  5765. name: "Teramacro",
  5766. height: math.unit(250000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(200, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/vulpes/front.svg",
  5779. extra: 573 / 543,
  5780. bottom: 0.033
  5781. }
  5782. },
  5783. side: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(200, "lbs"),
  5786. name: "Side",
  5787. image: {
  5788. source: "./media/characters/vulpes/side.svg",
  5789. extra: 577 / 549,
  5790. bottom: 11 / 588
  5791. }
  5792. },
  5793. back: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(200, "lbs"),
  5796. name: "Back",
  5797. image: {
  5798. source: "./media/characters/vulpes/back.svg",
  5799. extra: 573 / 549,
  5800. bottom: 20 / 593
  5801. }
  5802. },
  5803. feet: {
  5804. height: math.unit(1.276, "feet"),
  5805. name: "Feet",
  5806. image: {
  5807. source: "./media/characters/vulpes/feet.svg"
  5808. }
  5809. },
  5810. maw: {
  5811. height: math.unit(1.18, "feet"),
  5812. name: "Maw",
  5813. image: {
  5814. source: "./media/characters/vulpes/maw.svg"
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(2, "inches")
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6.3, "feet")
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(850, "feet")
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(7500, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Gigamacro",
  5838. height: math.unit(570000, "miles")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/front.svg"
  5851. }
  5852. },
  5853. side: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Side",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/side.svg"
  5859. }
  5860. },
  5861. back: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(210, "lbs"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/back.svg"
  5867. }
  5868. },
  5869. feral: {
  5870. height: math.unit(9, "feet"),
  5871. weight: math.unit(700, "lbs"),
  5872. name: "Feral",
  5873. image: {
  5874. source: "./media/characters/rain-fallen/feral.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Meddling with Mortals",
  5881. height: math.unit(8 + 8/12, "feet")
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(5, "meter")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(150, "meter"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Megamacro",
  5894. height: math.unit(278e6, "meter")
  5895. },
  5896. {
  5897. name: "Gigamacro",
  5898. height: math.unit(2e9, "meter")
  5899. },
  5900. {
  5901. name: "Teramacro",
  5902. height: math.unit(8e12, "meter")
  5903. },
  5904. {
  5905. name: "Devourer",
  5906. height: math.unit(14, "zettameters")
  5907. },
  5908. {
  5909. name: "Scarlet King",
  5910. height: math.unit(18, "yottameters")
  5911. },
  5912. {
  5913. name: "Void",
  5914. height: math.unit(1e88, "yottameters")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5920. {
  5921. standing: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(180, "lbs"),
  5924. name: "Standing",
  5925. image: {
  5926. source: "./media/characters/zaakira/standing.svg",
  5927. extra: 1599/1504,
  5928. bottom: 39/1638
  5929. }
  5930. },
  5931. laying: {
  5932. height: math.unit(3.3, "feet"),
  5933. weight: math.unit(180, "lbs"),
  5934. name: "Laying",
  5935. image: {
  5936. source: "./media/characters/zaakira/laying.svg"
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(12, "feet")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(279, "feet"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5954. {
  5955. femSfw: {
  5956. height: math.unit(8, "feet"),
  5957. weight: math.unit(350, "lb"),
  5958. name: "Fem",
  5959. image: {
  5960. source: "./media/characters/sigvald/fem-sfw.svg",
  5961. extra: 182 / 164,
  5962. bottom: 8.7 / 190.5
  5963. }
  5964. },
  5965. femNsfw: {
  5966. height: math.unit(8, "feet"),
  5967. weight: math.unit(350, "lb"),
  5968. name: "Fem (NSFW)",
  5969. image: {
  5970. source: "./media/characters/sigvald/fem-nsfw.svg",
  5971. extra: 182 / 164,
  5972. bottom: 8.7 / 190.5
  5973. }
  5974. },
  5975. maleNsfw: {
  5976. height: math.unit(8, "feet"),
  5977. weight: math.unit(350, "lb"),
  5978. name: "Male (NSFW)",
  5979. image: {
  5980. source: "./media/characters/sigvald/male-nsfw.svg",
  5981. extra: 182 / 164,
  5982. bottom: 8.7 / 190.5
  5983. }
  5984. },
  5985. hermNsfw: {
  5986. height: math.unit(8, "feet"),
  5987. weight: math.unit(350, "lb"),
  5988. name: "Herm (NSFW)",
  5989. image: {
  5990. source: "./media/characters/sigvald/herm-nsfw.svg",
  5991. extra: 182 / 164,
  5992. bottom: 8.7 / 190.5
  5993. }
  5994. },
  5995. dick: {
  5996. height: math.unit(2.36, "feet"),
  5997. name: "Dick",
  5998. image: {
  5999. source: "./media/characters/sigvald/dick.svg"
  6000. }
  6001. },
  6002. eye: {
  6003. height: math.unit(0.31, "feet"),
  6004. name: "Eye",
  6005. image: {
  6006. source: "./media/characters/sigvald/eye.svg"
  6007. }
  6008. },
  6009. mouth: {
  6010. height: math.unit(0.92, "feet"),
  6011. name: "Mouth",
  6012. image: {
  6013. source: "./media/characters/sigvald/mouth.svg"
  6014. }
  6015. },
  6016. paws: {
  6017. height: math.unit(2.2, "feet"),
  6018. name: "Paws",
  6019. image: {
  6020. source: "./media/characters/sigvald/paws.svg"
  6021. }
  6022. }
  6023. },
  6024. [
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(8, "feet")
  6028. },
  6029. {
  6030. name: "Large",
  6031. height: math.unit(12, "feet")
  6032. },
  6033. {
  6034. name: "Larger",
  6035. height: math.unit(20, "feet")
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(150, "feet")
  6040. },
  6041. {
  6042. name: "Macro+",
  6043. height: math.unit(200, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6050. {
  6051. side: {
  6052. height: math.unit(12, "feet"),
  6053. weight: math.unit(2000, "kg"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/scott/side.svg",
  6057. extra: 754 / 724,
  6058. bottom: 0.069
  6059. }
  6060. },
  6061. upright: {
  6062. height: math.unit(12, "feet"),
  6063. weight: math.unit(2000, "kg"),
  6064. name: "Upright",
  6065. image: {
  6066. source: "./media/characters/scott/upright.svg",
  6067. extra: 3881 / 3722,
  6068. bottom: 0.05
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(12, "feet"),
  6076. default: true
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6082. {
  6083. side: {
  6084. height: math.unit(8, "meters"),
  6085. weight: math.unit(84755, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/tobias/side.svg",
  6089. extra: 1474 / 1096,
  6090. bottom: 38.9 / 1513.1235
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(8, "meters"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6104. {
  6105. front: {
  6106. height: math.unit(5.5, "feet"),
  6107. weight: math.unit(400, "lbs"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/kieran/front.svg",
  6111. extra: 2694 / 2364,
  6112. bottom: 217 / 2908
  6113. }
  6114. },
  6115. side: {
  6116. height: math.unit(5.5, "feet"),
  6117. weight: math.unit(400, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/kieran/side.svg",
  6121. extra: 875 / 777,
  6122. bottom: 84.6 / 959
  6123. }
  6124. },
  6125. },
  6126. [
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(5.5, "feet"),
  6130. default: true
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6136. {
  6137. side: {
  6138. height: math.unit(2, "meters"),
  6139. weight: math.unit(70, "kg"),
  6140. name: "Side",
  6141. image: {
  6142. source: "./media/characters/sanya/side.svg",
  6143. bottom: 0.02,
  6144. extra: 1.02
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Small",
  6151. height: math.unit(2, "meters")
  6152. },
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(3, "meters")
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(16, "meters"),
  6160. default: true
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(2, "meters"),
  6169. weight: math.unit(120, "kg"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/miranda/front.svg",
  6173. extra: 195 / 185,
  6174. bottom: 10.9 / 206.5
  6175. }
  6176. },
  6177. back: {
  6178. height: math.unit(2, "meters"),
  6179. weight: math.unit(120, "kg"),
  6180. name: "Back",
  6181. image: {
  6182. source: "./media/characters/miranda/back.svg",
  6183. extra: 201 / 193,
  6184. bottom: 2.3 / 203.7
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(10, "feet"),
  6192. default: true
  6193. }
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "James", species: ["deer"], tags: ["anthro"] },
  6198. {
  6199. side: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(100, "kg"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/james/front.svg",
  6205. extra: 10 / 8.5
  6206. }
  6207. },
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(8.5, "feet"),
  6213. default: true
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6219. {
  6220. side: {
  6221. height: math.unit(9.5, "feet"),
  6222. weight: math.unit(2500, "lbs"),
  6223. name: "Side",
  6224. image: {
  6225. source: "./media/characters/heather/side.svg"
  6226. }
  6227. },
  6228. },
  6229. [
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(9.5, "feet"),
  6233. default: true
  6234. }
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6239. {
  6240. side: {
  6241. height: math.unit(6.5, "feet"),
  6242. weight: math.unit(400, "lbs"),
  6243. name: "Side",
  6244. image: {
  6245. source: "./media/characters/lukas/side.svg",
  6246. extra: 7.25 / 6.5
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(6.5, "feet"),
  6254. default: true
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6260. {
  6261. side: {
  6262. height: math.unit(5, "feet"),
  6263. weight: math.unit(3000, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/louise/side.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(5, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6280. {
  6281. side: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(150, "lbs"),
  6284. name: "Side",
  6285. image: {
  6286. source: "./media/characters/ramona/side.svg",
  6287. extra: 871/854,
  6288. bottom: 41/912
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(6 + 4/12, "feet")
  6296. },
  6297. {
  6298. name: "Minimacro",
  6299. height: math.unit(5.3, "meters"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(20, "stories")
  6305. },
  6306. {
  6307. name: "Macro+",
  6308. height: math.unit(50, "stories")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6314. {
  6315. standing: {
  6316. height: math.unit(5.75, "feet"),
  6317. weight: math.unit(160, "lbs"),
  6318. name: "Standing",
  6319. image: {
  6320. source: "./media/characters/deerpuff/standing.svg",
  6321. extra: 682 / 624
  6322. }
  6323. },
  6324. sitting: {
  6325. height: math.unit(5.75 / 1.79, "feet"),
  6326. weight: math.unit(160, "lbs"),
  6327. name: "Sitting",
  6328. image: {
  6329. source: "./media/characters/deerpuff/sitting.svg",
  6330. bottom: 44 / 400,
  6331. extra: 1
  6332. }
  6333. },
  6334. taurLaying: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(400, "lbs"),
  6337. name: "Taur (Laying)",
  6338. image: {
  6339. source: "./media/characters/deerpuff/taur-laying.svg"
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Puffball",
  6346. height: math.unit(6, "inches")
  6347. },
  6348. {
  6349. name: "Normalpuff",
  6350. height: math.unit(5.75, "feet")
  6351. },
  6352. {
  6353. name: "Macropuff",
  6354. height: math.unit(1500, "feet"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Megapuff",
  6359. height: math.unit(500, "miles")
  6360. },
  6361. {
  6362. name: "Gigapuff",
  6363. height: math.unit(250000, "miles")
  6364. },
  6365. {
  6366. name: "Omegapuff",
  6367. height: math.unit(1000, "lightyears")
  6368. },
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6373. {
  6374. stomping: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(170, "lbs"),
  6377. name: "Stomping",
  6378. image: {
  6379. source: "./media/characters/vivian/stomping.svg"
  6380. }
  6381. },
  6382. sitting: {
  6383. height: math.unit(6 / 1.75, "feet"),
  6384. weight: math.unit(170, "lbs"),
  6385. name: "Sitting",
  6386. image: {
  6387. source: "./media/characters/vivian/sitting.svg",
  6388. bottom: 1 / 6.4,
  6389. extra: 1,
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(7, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(10, "stories")
  6402. },
  6403. {
  6404. name: "Macro+",
  6405. height: math.unit(30, "stories")
  6406. },
  6407. {
  6408. name: "Megamacro",
  6409. height: math.unit(10, "miles")
  6410. },
  6411. {
  6412. name: "Megamacro+",
  6413. height: math.unit(2750000, "meters")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(160, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/prince/front.svg",
  6426. extra: 1938/1682,
  6427. bottom: 45/1983
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(160, "lbs"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/prince/back.svg",
  6436. extra: 1955/1726,
  6437. bottom: 6/1961
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(7.75, "feet"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Not cute",
  6449. height: math.unit(17, "feet")
  6450. },
  6451. {
  6452. name: "I said NOT",
  6453. height: math.unit(91, "feet")
  6454. },
  6455. {
  6456. name: "Please stop",
  6457. height: math.unit(560, "feet")
  6458. },
  6459. {
  6460. name: "What have you done",
  6461. height: math.unit(2200, "feet")
  6462. },
  6463. {
  6464. name: "Deer God",
  6465. height: math.unit(3.6, "miles")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6471. {
  6472. standing: {
  6473. height: math.unit(6, "feet"),
  6474. weight: math.unit(300, "lbs"),
  6475. name: "Standing",
  6476. image: {
  6477. source: "./media/characters/psymon/standing.svg",
  6478. extra: 1888 / 1810,
  6479. bottom: 0.05
  6480. }
  6481. },
  6482. slithering: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(300, "lbs"),
  6485. name: "Slithering",
  6486. image: {
  6487. source: "./media/characters/psymon/slithering.svg",
  6488. extra: 1330 / 1224
  6489. }
  6490. },
  6491. slitheringAlt: {
  6492. height: math.unit(6, "feet"),
  6493. weight: math.unit(300, "lbs"),
  6494. name: "Slithering (Alt)",
  6495. image: {
  6496. source: "./media/characters/psymon/slithering-alt.svg",
  6497. extra: 1330 / 1224
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(11.25, "feet"),
  6505. default: true
  6506. },
  6507. {
  6508. name: "Large",
  6509. height: math.unit(27, "feet")
  6510. },
  6511. {
  6512. name: "Giant",
  6513. height: math.unit(87, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(365, "feet")
  6518. },
  6519. {
  6520. name: "Megamacro",
  6521. height: math.unit(3, "miles")
  6522. },
  6523. {
  6524. name: "World Serpent",
  6525. height: math.unit(8000, "miles")
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(180, "lbs"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/daimos/front.svg",
  6538. extra: 4160 / 3897,
  6539. bottom: 0.021
  6540. }
  6541. }
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(8, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Big Dog",
  6551. height: math.unit(22, "feet")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(127, "feet")
  6556. },
  6557. {
  6558. name: "Megamacro",
  6559. height: math.unit(3600, "feet")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6565. {
  6566. side: {
  6567. height: math.unit(6, "feet"),
  6568. weight: math.unit(180, "lbs"),
  6569. name: "Side",
  6570. image: {
  6571. source: "./media/characters/blake/side.svg",
  6572. extra: 1212 / 1120,
  6573. bottom: 0.05
  6574. }
  6575. },
  6576. crouched: {
  6577. height: math.unit(6 * 0.57, "feet"),
  6578. weight: math.unit(180, "lbs"),
  6579. name: "Crouched",
  6580. image: {
  6581. source: "./media/characters/blake/crouched.svg",
  6582. extra: 840 / 587,
  6583. bottom: 0.04
  6584. }
  6585. },
  6586. bent: {
  6587. height: math.unit(6 * 0.75, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Bent",
  6590. image: {
  6591. source: "./media/characters/blake/bent.svg",
  6592. extra: 592 / 544,
  6593. bottom: 0.035
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(8 + 1 / 6, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Big Backside",
  6605. height: math.unit(37, "feet")
  6606. },
  6607. {
  6608. name: "Subway Shredder",
  6609. height: math.unit(72, "feet")
  6610. },
  6611. {
  6612. name: "City Carver",
  6613. height: math.unit(1675, "feet")
  6614. },
  6615. {
  6616. name: "Tectonic Tweaker",
  6617. height: math.unit(2300, "miles")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(180, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/guisetto/front.svg",
  6630. extra: 856 / 817,
  6631. bottom: 0.06
  6632. }
  6633. },
  6634. airborne: {
  6635. height: math.unit(6, "feet"),
  6636. weight: math.unit(180, "lbs"),
  6637. name: "Airborne",
  6638. image: {
  6639. source: "./media/characters/guisetto/airborne.svg",
  6640. extra: 584 / 525
  6641. }
  6642. },
  6643. },
  6644. [
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(10 + 11 / 12, "feet"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Large",
  6652. height: math.unit(35, "feet")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(475, "feet")
  6657. },
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(180, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/luxor/front.svg",
  6669. extra: 2940 / 2152
  6670. }
  6671. },
  6672. back: {
  6673. height: math.unit(6, "feet"),
  6674. weight: math.unit(180, "lbs"),
  6675. name: "Back",
  6676. image: {
  6677. source: "./media/characters/luxor/back.svg",
  6678. extra: 1083 / 960
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(5 + 5 / 6, "feet"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Lamp",
  6690. height: math.unit(50, "feet")
  6691. },
  6692. {
  6693. name: "Lämp",
  6694. height: math.unit(300, "feet")
  6695. },
  6696. {
  6697. name: "The sun is a lamp",
  6698. height: math.unit(250000, "miles")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(50, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/huoyan/front.svg"
  6711. }
  6712. },
  6713. side: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(180, "lbs"),
  6716. name: "Side",
  6717. image: {
  6718. source: "./media/characters/huoyan/side.svg"
  6719. }
  6720. },
  6721. },
  6722. [
  6723. {
  6724. name: "Chef",
  6725. height: math.unit(9, "feet")
  6726. },
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(65, "feet"),
  6730. default: true
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(780, "feet")
  6735. },
  6736. {
  6737. name: "Flaming Mountain",
  6738. height: math.unit(4.8, "miles")
  6739. },
  6740. {
  6741. name: "Celestial",
  6742. height: math.unit(765000, "miles")
  6743. },
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6748. {
  6749. front: {
  6750. height: math.unit(5 + 3 / 4, "feet"),
  6751. weight: math.unit(120, "lbs"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/tails/front.svg"
  6755. }
  6756. }
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(5 + 3 / 4, "feet"),
  6762. default: true
  6763. }
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(4, "feet"),
  6771. weight: math.unit(50, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/rainy/front.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(800, "feet"),
  6782. default: true
  6783. }
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6788. {
  6789. front: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(150, "lbs"),
  6792. name: "Front",
  6793. image: {
  6794. source: "./media/characters/rainier/front.svg"
  6795. }
  6796. }
  6797. },
  6798. [
  6799. {
  6800. name: "Micro",
  6801. height: math.unit(2, "mm"),
  6802. default: true
  6803. }
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(8 + 4/12, "feet"),
  6811. weight: math.unit(450, "kilograms"),
  6812. volume: math.unit(5, "cups"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/andy-renard/front.svg",
  6816. extra: 1839/1726,
  6817. bottom: 134/1973
  6818. }
  6819. },
  6820. back: {
  6821. height: math.unit(8 + 4/12, "feet"),
  6822. weight: math.unit(450, "kilograms"),
  6823. volume: math.unit(5, "cups"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/andy-renard/back.svg",
  6827. extra: 1838/1710,
  6828. bottom: 105/1943
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Tall",
  6835. height: math.unit(8 + 4/12, "feet")
  6836. },
  6837. {
  6838. name: "Mini Macro",
  6839. height: math.unit(15, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(100, "feet")
  6845. },
  6846. {
  6847. name: "Mega Macro",
  6848. height: math.unit(1000, "feet")
  6849. },
  6850. {
  6851. name: "Giga Macro",
  6852. height: math.unit(10, "miles")
  6853. },
  6854. {
  6855. name: "God Macro",
  6856. height: math.unit(1, "multiverse")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(210, "lbs"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/cimmaron/front-sfw.svg",
  6869. extra: 701 / 676,
  6870. bottom: 0.046
  6871. }
  6872. },
  6873. back: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(210, "lbs"),
  6876. name: "Back",
  6877. image: {
  6878. source: "./media/characters/cimmaron/back-sfw.svg",
  6879. extra: 701 / 676,
  6880. bottom: 0.046
  6881. }
  6882. },
  6883. frontNsfw: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(210, "lbs"),
  6886. name: "Front (NSFW)",
  6887. image: {
  6888. source: "./media/characters/cimmaron/front-nsfw.svg",
  6889. extra: 701 / 676,
  6890. bottom: 0.046
  6891. }
  6892. },
  6893. backNsfw: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(210, "lbs"),
  6896. name: "Back (NSFW)",
  6897. image: {
  6898. source: "./media/characters/cimmaron/back-nsfw.svg",
  6899. extra: 701 / 676,
  6900. bottom: 0.046
  6901. }
  6902. },
  6903. dick: {
  6904. height: math.unit(1.714, "feet"),
  6905. name: "Dick",
  6906. image: {
  6907. source: "./media/characters/cimmaron/dick.svg"
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(6, "feet"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Macro Mayor",
  6919. height: math.unit(350, "meters")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(200, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/akari/front.svg",
  6932. extra: 962 / 901,
  6933. bottom: 0.04
  6934. }
  6935. }
  6936. },
  6937. [
  6938. {
  6939. name: "Micro",
  6940. height: math.unit(5, "inches"),
  6941. default: true
  6942. },
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(7, "feet")
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(140, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/cynosura/front.svg",
  6958. extra: 437/410,
  6959. bottom: 9/446
  6960. }
  6961. },
  6962. back: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(140, "lbs"),
  6965. name: "Back",
  6966. image: {
  6967. source: "./media/characters/cynosura/back.svg",
  6968. extra: 1304/1160,
  6969. bottom: 71/1375
  6970. }
  6971. },
  6972. },
  6973. [
  6974. {
  6975. name: "Micro",
  6976. height: math.unit(4, "inches")
  6977. },
  6978. {
  6979. name: "Normal",
  6980. height: math.unit(5.75, "feet"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Tall",
  6985. height: math.unit(10, "feet")
  6986. },
  6987. {
  6988. name: "Big",
  6989. height: math.unit(20, "feet")
  6990. },
  6991. {
  6992. name: "Macro",
  6993. height: math.unit(50, "feet")
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(13 + 2/12, "feet"),
  7002. weight: math.unit(800, "kg"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/gin/front.svg",
  7006. extra: 1312/1191,
  7007. bottom: 45/1357
  7008. }
  7009. },
  7010. mouth: {
  7011. height: math.unit(2.39 * 1.8, "feet"),
  7012. name: "Mouth",
  7013. image: {
  7014. source: "./media/characters/gin/mouth.svg"
  7015. }
  7016. },
  7017. hand: {
  7018. height: math.unit(1.57 * 2.19, "feet"),
  7019. name: "Hand",
  7020. image: {
  7021. source: "./media/characters/gin/hand.svg"
  7022. }
  7023. },
  7024. foot: {
  7025. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7026. name: "Foot",
  7027. image: {
  7028. source: "./media/characters/gin/foot.svg"
  7029. }
  7030. },
  7031. sole: {
  7032. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7033. name: "Sole",
  7034. image: {
  7035. source: "./media/characters/gin/sole.svg"
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Very Small",
  7042. height: math.unit(13 + 2 / 12, "feet")
  7043. },
  7044. {
  7045. name: "Micro",
  7046. height: math.unit(600, "miles")
  7047. },
  7048. {
  7049. name: "Regular",
  7050. height: math.unit(20, "earths"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(2.2, "solarradii")
  7056. },
  7057. {
  7058. name: "Teramacro",
  7059. height: math.unit(1.2, "galaxies")
  7060. },
  7061. {
  7062. name: "Omegamacro",
  7063. height: math.unit(200, "universes")
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6 + 1 / 6, "feet"),
  7072. weight: math.unit(178, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/guy/front.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(6 + 1 / 6, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Large",
  7087. height: math.unit(25 + 7 / 12, "feet")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(60 + 9 / 12, "feet")
  7092. },
  7093. {
  7094. name: "Macro+",
  7095. height: math.unit(246, "feet")
  7096. },
  7097. {
  7098. name: "Macro++",
  7099. height: math.unit(878, "feet")
  7100. }
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(9, "feet"),
  7108. weight: math.unit(800, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/tiberius/front.svg",
  7112. extra: 2295 / 2071
  7113. }
  7114. },
  7115. back: {
  7116. height: math.unit(9, "feet"),
  7117. weight: math.unit(800, "lbs"),
  7118. name: "Back",
  7119. image: {
  7120. source: "./media/characters/tiberius/back.svg",
  7121. extra: 2373 / 2160
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(9, "feet"),
  7129. default: true
  7130. }
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7135. {
  7136. front: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(600, "lbs"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/surgo/front.svg",
  7142. extra: 3591 / 2227
  7143. }
  7144. },
  7145. back: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(600, "lbs"),
  7148. name: "Back",
  7149. image: {
  7150. source: "./media/characters/surgo/back.svg",
  7151. extra: 3557 / 2228
  7152. }
  7153. },
  7154. laying: {
  7155. height: math.unit(6 * 0.85, "feet"),
  7156. weight: math.unit(600, "lbs"),
  7157. name: "Laying",
  7158. image: {
  7159. source: "./media/characters/surgo/laying.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(6, "feet"),
  7167. default: true
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7173. {
  7174. side: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(150, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/cibus/side.svg",
  7180. extra: 800 / 400
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(6, "feet"),
  7188. default: true
  7189. }
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7194. {
  7195. front: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(240, "lbs"),
  7198. name: "Front",
  7199. image: {
  7200. source: "./media/characters/nibbles/front.svg"
  7201. }
  7202. },
  7203. side: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(240, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/nibbles/side.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(9, "feet"),
  7216. default: true
  7217. }
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7222. {
  7223. side: {
  7224. height: math.unit(5 + 1 / 6, "feet"),
  7225. weight: math.unit(130, "lbs"),
  7226. name: "Side",
  7227. image: {
  7228. source: "./media/characters/rikky/side.svg",
  7229. extra: 851 / 801
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5 + 1 / 6, "feet")
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(152, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(7, "miles")
  7246. }
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7251. {
  7252. side: {
  7253. height: math.unit(370, "cm"),
  7254. weight: math.unit(350, "lbs"),
  7255. name: "Side",
  7256. image: {
  7257. source: "./media/characters/malfressa/side.svg"
  7258. }
  7259. },
  7260. walking: {
  7261. height: math.unit(370, "cm"),
  7262. weight: math.unit(350, "lbs"),
  7263. name: "Walking",
  7264. image: {
  7265. source: "./media/characters/malfressa/walking.svg"
  7266. }
  7267. },
  7268. feral: {
  7269. height: math.unit(2500, "cm"),
  7270. weight: math.unit(100000, "lbs"),
  7271. name: "Feral",
  7272. image: {
  7273. source: "./media/characters/malfressa/feral.svg",
  7274. extra: 2108 / 837,
  7275. bottom: 0.02
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Normal",
  7282. height: math.unit(370, "cm")
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(300, "meters"),
  7287. default: true
  7288. }
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7293. {
  7294. front: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(60, "kg"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/jaro/front.svg",
  7300. extra: 845/817,
  7301. bottom: 45/890
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(60, "kg"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/jaro/back.svg",
  7310. extra: 847/817,
  7311. bottom: 34/881
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Micro",
  7318. height: math.unit(7, "inches")
  7319. },
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(5.5, "feet"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Minimacro",
  7327. height: math.unit(20, "feet")
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(200, "meters")
  7332. }
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(195, "lb"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/rogue/front.svg"
  7344. }
  7345. },
  7346. },
  7347. [
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(90, "feet"),
  7351. default: true
  7352. },
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7357. {
  7358. standing: {
  7359. height: math.unit(5 + 8 / 12, "feet"),
  7360. weight: math.unit(140, "lb"),
  7361. name: "Standing",
  7362. image: {
  7363. source: "./media/characters/piper/standing.svg",
  7364. extra: 1440/1284,
  7365. bottom: 66/1506
  7366. }
  7367. },
  7368. running: {
  7369. height: math.unit(5 + 8 / 12, "feet"),
  7370. weight: math.unit(140, "lb"),
  7371. name: "Running",
  7372. image: {
  7373. source: "./media/characters/piper/running.svg",
  7374. extra: 3948/3655,
  7375. bottom: 0/3948
  7376. }
  7377. },
  7378. sole: {
  7379. height: math.unit(0.81, "feet"),
  7380. weight: math.unit(2, "kg"),
  7381. name: "Sole",
  7382. image: {
  7383. source: "./media/characters/piper/sole.svg"
  7384. }
  7385. },
  7386. nipple: {
  7387. height: math.unit(0.25, "feet"),
  7388. weight: math.unit(1.5, "lb"),
  7389. name: "Nipple",
  7390. image: {
  7391. source: "./media/characters/piper/nipple.svg"
  7392. }
  7393. },
  7394. head: {
  7395. height: math.unit(1.1, "feet"),
  7396. name: "Head",
  7397. image: {
  7398. source: "./media/characters/piper/head.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Micro",
  7405. height: math.unit(2, "inches")
  7406. },
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(5 + 8 / 12, "feet")
  7410. },
  7411. {
  7412. name: "Macro",
  7413. height: math.unit(250, "feet"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Megamacro",
  7418. height: math.unit(7, "miles")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(220, "lb"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/gemini/front.svg"
  7431. }
  7432. },
  7433. back: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(220, "lb"),
  7436. name: "Back",
  7437. image: {
  7438. source: "./media/characters/gemini/back.svg"
  7439. }
  7440. },
  7441. kneeling: {
  7442. height: math.unit(6 / 1.5, "feet"),
  7443. weight: math.unit(220, "lb"),
  7444. name: "Kneeling",
  7445. image: {
  7446. source: "./media/characters/gemini/kneeling.svg",
  7447. bottom: 0.02
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(300, "meters"),
  7455. default: true
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(6900, "meters")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7465. {
  7466. anthro: {
  7467. height: math.unit(2.35, "meters"),
  7468. weight: math.unit(73, "kg"),
  7469. name: "Anthro",
  7470. image: {
  7471. source: "./media/characters/alicia/anthro.svg",
  7472. extra: 2571 / 2385,
  7473. bottom: 75 / 2648
  7474. }
  7475. },
  7476. paw: {
  7477. height: math.unit(1.32, "feet"),
  7478. name: "Paw",
  7479. image: {
  7480. source: "./media/characters/alicia/paw.svg"
  7481. }
  7482. },
  7483. feral: {
  7484. height: math.unit(1.69, "meters"),
  7485. weight: math.unit(73, "kg"),
  7486. name: "Feral",
  7487. image: {
  7488. source: "./media/characters/alicia/feral.svg",
  7489. extra: 2123 / 1715,
  7490. bottom: 222 / 2349
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(2.35, "meters")
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(60, "meters"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Megamacro",
  7506. height: math.unit(10000, "kilometers")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(7, "feet"),
  7515. weight: math.unit(250, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/archy/front.svg"
  7519. }
  7520. }
  7521. },
  7522. [
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(1, "inch")
  7526. },
  7527. {
  7528. name: "Shorty",
  7529. height: math.unit(5, "feet")
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(7, "feet")
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(600, "meters"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Megamacro",
  7542. height: math.unit(1, "mile")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(1.65, "meters"),
  7551. weight: math.unit(74, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/berri/front.svg",
  7555. extra: 857 / 837,
  7556. bottom: 18 / 877
  7557. }
  7558. },
  7559. bum: {
  7560. height: math.unit(1.46, "feet"),
  7561. name: "Bum",
  7562. image: {
  7563. source: "./media/characters/berri/bum.svg"
  7564. }
  7565. },
  7566. mouth: {
  7567. height: math.unit(0.44, "feet"),
  7568. name: "Mouth",
  7569. image: {
  7570. source: "./media/characters/berri/mouth.svg"
  7571. }
  7572. },
  7573. paw: {
  7574. height: math.unit(0.826, "feet"),
  7575. name: "Paw",
  7576. image: {
  7577. source: "./media/characters/berri/paw.svg"
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(1.65, "meters")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(60, "m"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Megamacro",
  7593. height: math.unit(9.213, "km")
  7594. },
  7595. {
  7596. name: "Planet Eater",
  7597. height: math.unit(489, "megameters")
  7598. },
  7599. {
  7600. name: "Teramacro",
  7601. height: math.unit(2471635000000, "meters")
  7602. },
  7603. {
  7604. name: "Examacro",
  7605. height: math.unit(8.0624e+26, "meters")
  7606. }
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(1.72, "meters"),
  7614. weight: math.unit(68, "kg"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/lexi/front.svg"
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Very Smol",
  7624. height: math.unit(10, "mm")
  7625. },
  7626. {
  7627. name: "Micro",
  7628. height: math.unit(6.8, "cm"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(1.72, "m")
  7634. }
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(1.69, "meters"),
  7642. weight: math.unit(68, "kg"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/martin/front.svg",
  7646. extra: 596 / 581
  7647. }
  7648. }
  7649. },
  7650. [
  7651. {
  7652. name: "Micro",
  7653. height: math.unit(6.85, "cm"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Normal",
  7658. height: math.unit(1.69, "m")
  7659. }
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(1.69, "meters"),
  7667. weight: math.unit(68, "kg"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/juno/front.svg"
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Micro",
  7677. height: math.unit(7, "cm")
  7678. },
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(1.89, "m")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(353, "meters"),
  7686. default: true
  7687. }
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(1.93, "meters"),
  7695. weight: math.unit(83, "kg"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/samantha/front.svg"
  7699. }
  7700. },
  7701. frontClothed: {
  7702. height: math.unit(1.93, "meters"),
  7703. weight: math.unit(83, "kg"),
  7704. name: "Front (Clothed)",
  7705. image: {
  7706. source: "./media/characters/samantha/front-clothed.svg"
  7707. }
  7708. },
  7709. back: {
  7710. height: math.unit(1.93, "meters"),
  7711. weight: math.unit(83, "kg"),
  7712. name: "Back",
  7713. image: {
  7714. source: "./media/characters/samantha/back.svg"
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(1.93, "m")
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(74, "meters"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Macro+",
  7730. height: math.unit(223, "meters"),
  7731. },
  7732. {
  7733. name: "Megamacro",
  7734. height: math.unit(8381, "meters"),
  7735. },
  7736. {
  7737. name: "Megamacro+",
  7738. height: math.unit(12000, "kilometers")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(1.92, "meters"),
  7747. weight: math.unit(80, "kg"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/dr-clay/front.svg"
  7751. }
  7752. },
  7753. frontClothed: {
  7754. height: math.unit(1.92, "meters"),
  7755. weight: math.unit(80, "kg"),
  7756. name: "Front (Clothed)",
  7757. image: {
  7758. source: "./media/characters/dr-clay/front-clothed.svg"
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(1.92, "m")
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(214, "meters"),
  7770. default: true
  7771. },
  7772. {
  7773. name: "Macro+",
  7774. height: math.unit(12.237, "meters"),
  7775. },
  7776. {
  7777. name: "Megamacro",
  7778. height: math.unit(557, "megameters"),
  7779. },
  7780. {
  7781. name: "Unimaginable",
  7782. height: math.unit(120e9, "lightyears")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(2, "meters"),
  7791. weight: math.unit(80, "kg"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Teramacro",
  7801. height: math.unit(500000, "lightyears"),
  7802. default: true
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7808. {
  7809. crux: {
  7810. height: math.unit(2, "meters"),
  7811. weight: math.unit(150, "kg"),
  7812. name: "Crux",
  7813. image: {
  7814. source: "./media/characters/vemus/crux.svg",
  7815. extra: 1074/936,
  7816. bottom: 23/1097
  7817. }
  7818. },
  7819. skunkTanuki: {
  7820. height: math.unit(2, "meters"),
  7821. weight: math.unit(150, "kg"),
  7822. name: "Skunk-Tanuki",
  7823. image: {
  7824. source: "./media/characters/vemus/skunk-tanuki.svg",
  7825. extra: 926/893,
  7826. bottom: 20/946
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(4, "meters"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Big",
  7838. height: math.unit(8, "meters")
  7839. },
  7840. {
  7841. name: "Macro",
  7842. height: math.unit(100, "meters")
  7843. },
  7844. {
  7845. name: "Macro+",
  7846. height: math.unit(1500, "meters")
  7847. },
  7848. {
  7849. name: "Stellar",
  7850. height: math.unit(14e8, "meters")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(2, "meters"),
  7859. weight: math.unit(70, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/beherit/front.svg",
  7863. extra: 1234/1109,
  7864. bottom: 55/1289
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(6, "feet")
  7872. },
  7873. {
  7874. name: "Lorg",
  7875. height: math.unit(25, "feet"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Lorger",
  7880. height: math.unit(75, "feet")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(200, "meters")
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(2, "meters"),
  7893. weight: math.unit(150, "kg"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/everett/front.svg",
  7897. extra: 1017/866,
  7898. bottom: 86/1103
  7899. }
  7900. },
  7901. paw: {
  7902. height: math.unit(2 / 3.6, "meters"),
  7903. name: "Paw",
  7904. image: {
  7905. source: "./media/characters/everett/paw.svg"
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Normal",
  7912. height: math.unit(15, "feet"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Lorg",
  7917. height: math.unit(70, "feet"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Lorger",
  7922. height: math.unit(250, "feet")
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(500, "meters")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(2, "meters"),
  7935. weight: math.unit(86, "kg"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/rose/front.svg",
  7939. extra: 1785/1636,
  7940. bottom: 30/1815
  7941. },
  7942. form: "liom",
  7943. default: true
  7944. },
  7945. frontSporty: {
  7946. height: math.unit(2, "meters"),
  7947. weight: math.unit(86, "kg"),
  7948. name: "Front (Sporty)",
  7949. image: {
  7950. source: "./media/characters/rose/front-sporty.svg",
  7951. extra: 350/335,
  7952. bottom: 10/360
  7953. },
  7954. form: "liom"
  7955. },
  7956. frontAlt: {
  7957. height: math.unit(1.6, "meters"),
  7958. weight: math.unit(86, "kg"),
  7959. name: "Front (Alt)",
  7960. image: {
  7961. source: "./media/characters/rose/front-alt.svg",
  7962. extra: 299/283,
  7963. bottom: 3/302
  7964. },
  7965. form: "liom"
  7966. },
  7967. plush: {
  7968. height: math.unit(2, "meters"),
  7969. weight: math.unit(86/3, "kg"),
  7970. name: "Plush",
  7971. image: {
  7972. source: "./media/characters/rose/plush.svg",
  7973. extra: 361/337,
  7974. bottom: 11/372
  7975. },
  7976. form: "plush",
  7977. default: true
  7978. },
  7979. faeStanding: {
  7980. height: math.unit(10, "cm"),
  7981. weight: math.unit(10, "grams"),
  7982. name: "Standing",
  7983. image: {
  7984. source: "./media/characters/rose/fae-standing.svg",
  7985. extra: 1189/1060,
  7986. bottom: 27/1216
  7987. },
  7988. form: "fae",
  7989. default: true
  7990. },
  7991. faeSitting: {
  7992. height: math.unit(5, "cm"),
  7993. weight: math.unit(10, "grams"),
  7994. name: "Sitting",
  7995. image: {
  7996. source: "./media/characters/rose/fae-sitting.svg",
  7997. extra: 737/577,
  7998. bottom: 356/1093
  7999. },
  8000. form: "fae"
  8001. },
  8002. faePaw: {
  8003. height: math.unit(1.35, "cm"),
  8004. name: "Paw",
  8005. image: {
  8006. source: "./media/characters/rose/fae-paw.svg"
  8007. },
  8008. form: "fae"
  8009. },
  8010. },
  8011. [
  8012. {
  8013. name: "True Micro",
  8014. height: math.unit(9, "cm"),
  8015. form: "liom"
  8016. },
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(16, "cm"),
  8020. form: "liom"
  8021. },
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(1.85, "meters"),
  8025. default: true,
  8026. form: "liom"
  8027. },
  8028. {
  8029. name: "Mini-Macro",
  8030. height: math.unit(5, "meters"),
  8031. form: "liom"
  8032. },
  8033. {
  8034. name: "Macro",
  8035. height: math.unit(15, "meters"),
  8036. form: "liom"
  8037. },
  8038. {
  8039. name: "True Macro",
  8040. height: math.unit(40, "meters"),
  8041. form: "liom"
  8042. },
  8043. {
  8044. name: "City Scale",
  8045. height: math.unit(1, "km"),
  8046. form: "liom"
  8047. },
  8048. {
  8049. name: "Plushie",
  8050. height: math.unit(9, "cm"),
  8051. form: "plush",
  8052. default: true
  8053. },
  8054. {
  8055. name: "Fae",
  8056. height: math.unit(10, "cm"),
  8057. form: "fae",
  8058. default: true
  8059. },
  8060. ],
  8061. {
  8062. "liom": {
  8063. name: "Liom"
  8064. },
  8065. "plush": {
  8066. name: "Plush"
  8067. },
  8068. "fae": {
  8069. name: "Fae Fox",
  8070. default: true
  8071. }
  8072. }
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(2, "meters"),
  8079. weight: math.unit(350, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/regal/front.svg"
  8083. }
  8084. },
  8085. back: {
  8086. height: math.unit(2, "meters"),
  8087. weight: math.unit(350, "lbs"),
  8088. name: "Back",
  8089. image: {
  8090. source: "./media/characters/regal/back.svg"
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(350, "feet"),
  8098. default: true
  8099. }
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(4 + 11 / 12, "feet"),
  8107. weight: math.unit(100, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/opal/front.svg"
  8111. }
  8112. },
  8113. frontAlt: {
  8114. height: math.unit(4 + 11 / 12, "feet"),
  8115. weight: math.unit(100, "lbs"),
  8116. name: "Front (Alt)",
  8117. image: {
  8118. source: "./media/characters/opal/front-alt.svg"
  8119. }
  8120. },
  8121. },
  8122. [
  8123. {
  8124. name: "Small",
  8125. height: math.unit(4 + 11 / 12, "feet")
  8126. },
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(20, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(120, "feet")
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(80, "miles")
  8139. },
  8140. {
  8141. name: "True Size",
  8142. height: math.unit(100000, "lightyears")
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(200, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/vector-wuff/front.svg"
  8155. }
  8156. }
  8157. },
  8158. [
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(2.8, "meters")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(450, "meters"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(15, "kilometers")
  8171. }
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(256, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/dannik/front.svg"
  8183. }
  8184. }
  8185. },
  8186. [
  8187. {
  8188. name: "Macro",
  8189. height: math.unit(69.57, "meters"),
  8190. default: true
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(120, "lbs"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/azura-saharah/front.svg"
  8203. }
  8204. },
  8205. back: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(120, "lbs"),
  8208. name: "Back",
  8209. image: {
  8210. source: "./media/characters/azura-saharah/back.svg"
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(100, "feet"),
  8218. default: true
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8224. {
  8225. side: {
  8226. height: math.unit(5 + 4 / 12, "feet"),
  8227. weight: math.unit(163, "lbs"),
  8228. name: "Side",
  8229. image: {
  8230. source: "./media/characters/kennedy/side.svg"
  8231. }
  8232. }
  8233. },
  8234. [
  8235. {
  8236. name: "Standard Doggo",
  8237. height: math.unit(5 + 4 / 12, "feet")
  8238. },
  8239. {
  8240. name: "Big Doggo",
  8241. height: math.unit(25 + 3 / 12, "feet"),
  8242. default: true
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(5 + 5/12, "feet"),
  8251. weight: math.unit(100, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/odios-de-lunar/front.svg",
  8255. extra: 1468/1323,
  8256. bottom: 22/1490
  8257. }
  8258. }
  8259. },
  8260. [
  8261. {
  8262. name: "Micro",
  8263. height: math.unit(3, "inches")
  8264. },
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(5.5, "feet"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(100, "feet")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8278. {
  8279. back: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(220, "lbs"),
  8282. name: "Back",
  8283. image: {
  8284. source: "./media/characters/mandake/back.svg"
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(7, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(78, "feet")
  8297. },
  8298. {
  8299. name: "Macro+",
  8300. height: math.unit(300, "meters")
  8301. },
  8302. {
  8303. name: "Macro++",
  8304. height: math.unit(2400, "feet")
  8305. },
  8306. {
  8307. name: "Megamacro",
  8308. height: math.unit(5167, "meters")
  8309. },
  8310. {
  8311. name: "Gigamacro",
  8312. height: math.unit(41769, "miles")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/yozey/front.svg"
  8325. }
  8326. },
  8327. frontAlt: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(120, "lbs"),
  8330. name: "Front (Alt)",
  8331. image: {
  8332. source: "./media/characters/yozey/front-alt.svg"
  8333. }
  8334. },
  8335. side: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(120, "lbs"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/yozey/side.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Micro",
  8347. height: math.unit(3, "inches"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Normal",
  8352. height: math.unit(6, "feet")
  8353. }
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(103, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/valeska-voss/front.svg"
  8365. }
  8366. }
  8367. },
  8368. [
  8369. {
  8370. name: "Mini-Sized Sub",
  8371. height: math.unit(3.1, "inches")
  8372. },
  8373. {
  8374. name: "Mid-Sized Sub",
  8375. height: math.unit(6.2, "inches")
  8376. },
  8377. {
  8378. name: "Full-Sized Sub",
  8379. height: math.unit(9.3, "inches")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(5 + 2 / 12, "foot"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(160, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/gene-zeta/front.svg",
  8397. extra: 3006 / 2826,
  8398. bottom: 182 / 3188
  8399. }
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(6, "inches")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 11 / 12, "foot"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(140, "feet")
  8415. },
  8416. {
  8417. name: "Supercharged",
  8418. height: math.unit(2500, "feet")
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(350, "lbs"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/razinox/front.svg",
  8431. extra: 1686 / 1548,
  8432. bottom: 28.2 / 1868
  8433. }
  8434. },
  8435. back: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(350, "lbs"),
  8438. name: "Back",
  8439. image: {
  8440. source: "./media/characters/razinox/back.svg",
  8441. extra: 1660 / 1590,
  8442. bottom: 15 / 1665
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(10 + 8 / 12, "foot")
  8450. },
  8451. {
  8452. name: "Minimacro",
  8453. height: math.unit(15, "foot")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(60, "foot"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Megamacro",
  8462. height: math.unit(5, "miles")
  8463. },
  8464. {
  8465. name: "Gigamacro",
  8466. height: math.unit(6000, "miles")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(150, "lbs"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/cobalt/front.svg"
  8479. }
  8480. }
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(8 + 1 / 12, "foot")
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(111, "foot"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Supracosmic",
  8494. height: math.unit(1e42, "feet")
  8495. },
  8496. ]
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8500. {
  8501. front: {
  8502. height: math.unit(5, "inches"),
  8503. name: "Front",
  8504. image: {
  8505. source: "./media/characters/amanda/front.svg",
  8506. extra: 926/791,
  8507. bottom: 38/964
  8508. }
  8509. },
  8510. back: {
  8511. height: math.unit(5, "inches"),
  8512. name: "Back",
  8513. image: {
  8514. source: "./media/characters/amanda/back.svg",
  8515. extra: 909/805,
  8516. bottom: 43/952
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(5, "inches"),
  8524. default: true
  8525. },
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(2.75, "meters"),
  8533. weight: math.unit(1200, "lb"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/teal/front.svg",
  8537. extra: 2463 / 2320,
  8538. bottom: 166 / 2629
  8539. }
  8540. },
  8541. back: {
  8542. height: math.unit(2.75, "meters"),
  8543. weight: math.unit(1200, "lb"),
  8544. name: "Back",
  8545. image: {
  8546. source: "./media/characters/teal/back.svg",
  8547. extra: 2580 / 2489,
  8548. bottom: 151 / 2731
  8549. }
  8550. },
  8551. sitting: {
  8552. height: math.unit(1.9, "meters"),
  8553. weight: math.unit(1200, "lb"),
  8554. name: "Sitting",
  8555. image: {
  8556. source: "./media/characters/teal/sitting.svg",
  8557. extra: 623 / 590,
  8558. bottom: 121 / 744
  8559. }
  8560. },
  8561. standing: {
  8562. height: math.unit(2.75, "meters"),
  8563. weight: math.unit(1200, "lb"),
  8564. name: "Standing",
  8565. image: {
  8566. source: "./media/characters/teal/standing.svg",
  8567. extra: 923 / 893,
  8568. bottom: 60 / 983
  8569. }
  8570. },
  8571. stretching: {
  8572. height: math.unit(3.65, "meters"),
  8573. weight: math.unit(1200, "lb"),
  8574. name: "Stretching",
  8575. image: {
  8576. source: "./media/characters/teal/stretching.svg",
  8577. extra: 1276 / 1244,
  8578. bottom: 0 / 1276
  8579. }
  8580. },
  8581. legged: {
  8582. height: math.unit(1.3, "meters"),
  8583. weight: math.unit(100, "lb"),
  8584. name: "Legged",
  8585. image: {
  8586. source: "./media/characters/teal/legged.svg",
  8587. extra: 462 / 437,
  8588. bottom: 24 / 486
  8589. }
  8590. },
  8591. naga: {
  8592. height: math.unit(5.4, "meters"),
  8593. weight: math.unit(4000, "lb"),
  8594. name: "Naga",
  8595. image: {
  8596. source: "./media/characters/teal/naga.svg",
  8597. extra: 1902 / 1858,
  8598. bottom: 0 / 1902
  8599. }
  8600. },
  8601. hand: {
  8602. height: math.unit(0.52, "meters"),
  8603. name: "Hand",
  8604. image: {
  8605. source: "./media/characters/teal/hand.svg"
  8606. }
  8607. },
  8608. maw: {
  8609. height: math.unit(0.43, "meters"),
  8610. name: "Maw",
  8611. image: {
  8612. source: "./media/characters/teal/maw.svg"
  8613. }
  8614. },
  8615. slit: {
  8616. height: math.unit(0.25, "meters"),
  8617. name: "Slit",
  8618. image: {
  8619. source: "./media/characters/teal/slit.svg"
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(2.75, "meters"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Macro",
  8631. height: math.unit(300, "feet")
  8632. },
  8633. {
  8634. name: "Macro+",
  8635. height: math.unit(2000, "feet")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8641. {
  8642. frontCat: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(180, "lbs"),
  8645. name: "Front (Cat)",
  8646. image: {
  8647. source: "./media/characters/ravin-amulet/front-cat.svg"
  8648. }
  8649. },
  8650. frontCatAlt: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(180, "lbs"),
  8653. name: "Front (Alt, Cat)",
  8654. image: {
  8655. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8656. }
  8657. },
  8658. frontWerewolf: {
  8659. height: math.unit(6 * 1.2, "feet"),
  8660. weight: math.unit(225, "lbs"),
  8661. name: "Front (Werewolf)",
  8662. image: {
  8663. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8664. }
  8665. },
  8666. backWerewolf: {
  8667. height: math.unit(6 * 1.2, "feet"),
  8668. weight: math.unit(225, "lbs"),
  8669. name: "Back (Werewolf)",
  8670. image: {
  8671. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Nano",
  8678. height: math.unit(1, "micrometer")
  8679. },
  8680. {
  8681. name: "Micro",
  8682. height: math.unit(1, "inch")
  8683. },
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(6, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(60, "feet")
  8692. }
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(165, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/fluoresce/front.svg"
  8704. }
  8705. }
  8706. },
  8707. [
  8708. {
  8709. name: "Micro",
  8710. height: math.unit(6, "cm")
  8711. },
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(5 + 7 / 12, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Macro",
  8719. height: math.unit(56, "feet")
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(1.9, "miles")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(9 + 6 / 12, "feet"),
  8732. weight: math.unit(523, "lbs"),
  8733. name: "Side",
  8734. image: {
  8735. source: "./media/characters/aurora/side.svg",
  8736. extra: 474/393,
  8737. bottom: 5/479
  8738. }
  8739. }
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(9 + 6 / 12, "feet")
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(96, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro+",
  8753. height: math.unit(243, "feet")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(194, "cm"),
  8762. weight: math.unit(90, "kg"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/ranek/front.svg",
  8766. extra: 1862/1791,
  8767. bottom: 80/1942
  8768. }
  8769. },
  8770. back: {
  8771. height: math.unit(194, "cm"),
  8772. weight: math.unit(90, "kg"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/ranek/back.svg",
  8776. extra: 1853/1787,
  8777. bottom: 74/1927
  8778. }
  8779. },
  8780. feral: {
  8781. height: math.unit(30, "cm"),
  8782. weight: math.unit(1.6, "lbs"),
  8783. name: "Feral",
  8784. image: {
  8785. source: "./media/characters/ranek/feral.svg",
  8786. extra: 990/631,
  8787. bottom: 29/1019
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(194, "cm"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(100, "meters")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(5 + 6 / 12, "feet"),
  8808. weight: math.unit(153, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/andrew-cooper/front.svg"
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Nano",
  8818. height: math.unit(1, "mm")
  8819. },
  8820. {
  8821. name: "Micro",
  8822. height: math.unit(2, "inches")
  8823. },
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(5 + 6 / 12, "feet"),
  8827. default: true
  8828. }
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(180, "lbs"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/akane-sato/front.svg",
  8840. extra: 1219 / 1140
  8841. }
  8842. },
  8843. back: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(180, "lbs"),
  8846. name: "Back",
  8847. image: {
  8848. source: "./media/characters/akane-sato/back.svg",
  8849. extra: 1219 / 1170
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(2.5, "meters")
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(250, "meters"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Megamacro",
  8865. height: math.unit(25, "km")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(65, "kg"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/rook/front.svg",
  8878. extra: 960 / 950
  8879. }
  8880. }
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(8.8, "feet")
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(88, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Megamacro",
  8894. height: math.unit(8, "miles")
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(12 + 2 / 12, "feet"),
  8903. weight: math.unit(808, "lbs"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/prodigy/front.svg"
  8907. }
  8908. }
  8909. },
  8910. [
  8911. {
  8912. name: "Normal",
  8913. height: math.unit(12 + 2 / 12, "feet"),
  8914. default: true
  8915. },
  8916. {
  8917. name: "Macro",
  8918. height: math.unit(143, "feet")
  8919. },
  8920. {
  8921. name: "Macro+",
  8922. height: math.unit(400, "feet")
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(225, "lbs"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/daniel/front.svg"
  8935. }
  8936. },
  8937. leaning: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(225, "lbs"),
  8940. name: "Leaning",
  8941. image: {
  8942. source: "./media/characters/daniel/leaning.svg"
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Macro",
  8949. height: math.unit(1000, "feet"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(88, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/chiros/front.svg",
  8963. extra: 306 / 226
  8964. }
  8965. },
  8966. side: {
  8967. height: math.unit(6, "feet"),
  8968. weight: math.unit(88, "lbs"),
  8969. name: "Side",
  8970. image: {
  8971. source: "./media/characters/chiros/side.svg",
  8972. extra: 306 / 226
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(6, "cm"),
  8980. default: true
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8986. {
  8987. front: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(100, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/selka/front.svg",
  8993. extra: 947 / 887
  8994. }
  8995. }
  8996. },
  8997. [
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(5, "cm"),
  9001. default: true
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(8 + 3 / 12, "feet"),
  9010. weight: math.unit(424, "lbs"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/verin/front.svg",
  9014. extra: 1845 / 1550
  9015. }
  9016. },
  9017. frontArmored: {
  9018. height: math.unit(8 + 3 / 12, "feet"),
  9019. weight: math.unit(424, "lbs"),
  9020. name: "Front (Armored)",
  9021. image: {
  9022. source: "./media/characters/verin/front-armor.svg",
  9023. extra: 1845 / 1550,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(8 + 3 / 12, "feet"),
  9029. weight: math.unit(424, "lbs"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/verin/back.svg",
  9033. bottom: 0.1,
  9034. extra: 1
  9035. }
  9036. },
  9037. foot: {
  9038. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9039. name: "Foot",
  9040. image: {
  9041. source: "./media/characters/verin/foot.svg"
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(8 + 3 / 12, "feet")
  9049. },
  9050. {
  9051. name: "Minimacro",
  9052. height: math.unit(21, "feet"),
  9053. default: true
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(626, "feet")
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(2.718, "meters"),
  9066. weight: math.unit(150, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/sovrim-terraquian/front.svg",
  9070. extra: 1752/1689,
  9071. bottom: 36/1788
  9072. }
  9073. },
  9074. back: {
  9075. height: math.unit(2.718, "meters"),
  9076. weight: math.unit(150, "lbs"),
  9077. name: "Back",
  9078. image: {
  9079. source: "./media/characters/sovrim-terraquian/back.svg",
  9080. extra: 1698/1657,
  9081. bottom: 58/1756
  9082. }
  9083. },
  9084. tongue: {
  9085. height: math.unit(2.865, "feet"),
  9086. name: "Tongue",
  9087. image: {
  9088. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9089. }
  9090. },
  9091. hand: {
  9092. height: math.unit(1.61, "feet"),
  9093. name: "Hand",
  9094. image: {
  9095. source: "./media/characters/sovrim-terraquian/hand.svg"
  9096. }
  9097. },
  9098. foot: {
  9099. height: math.unit(1.05, "feet"),
  9100. name: "Foot",
  9101. image: {
  9102. source: "./media/characters/sovrim-terraquian/foot.svg"
  9103. }
  9104. },
  9105. footAlt: {
  9106. height: math.unit(0.88, "feet"),
  9107. name: "Foot (Alt)",
  9108. image: {
  9109. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(2, "inches")
  9117. },
  9118. {
  9119. name: "Small",
  9120. height: math.unit(1, "meter")
  9121. },
  9122. {
  9123. name: "Normal",
  9124. height: math.unit(Math.E, "meters"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(20, "meters")
  9130. },
  9131. {
  9132. name: "Macro+",
  9133. height: math.unit(400, "meters")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(7, "feet"),
  9142. weight: math.unit(489, "lbs"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/reece-silvermane/front.svg",
  9146. bottom: 0.02,
  9147. extra: 1
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(1.5, "miles"),
  9155. default: true
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(78, "kg"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/kane/front.svg",
  9168. extra: 978 / 899
  9169. }
  9170. },
  9171. back: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(78, "kg"),
  9174. name: "Back",
  9175. image: {
  9176. source: "./media/characters/kane/back.svg",
  9177. extra: 1966/1800,
  9178. bottom: 0/1966
  9179. }
  9180. },
  9181. head: {
  9182. height: math.unit(1.4, "feet"),
  9183. name: "Head",
  9184. image: {
  9185. source: "./media/characters/kane/head.svg"
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(2.1, "m"),
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(1, "km"),
  9197. default: true
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9203. {
  9204. front: {
  9205. height: math.unit(6, "feet"),
  9206. weight: math.unit(200, "kg"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/tegon/front.svg",
  9210. bottom: 0.01,
  9211. extra: 1
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Micro",
  9218. height: math.unit(1, "inch")
  9219. },
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(6 + 3 / 12, "feet"),
  9223. default: true
  9224. },
  9225. {
  9226. name: "Macro",
  9227. height: math.unit(300, "feet")
  9228. },
  9229. {
  9230. name: "Megamacro",
  9231. height: math.unit(69, "miles")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9237. {
  9238. side: {
  9239. height: math.unit(6, "feet"),
  9240. weight: math.unit(2304, "lbs"),
  9241. name: "Side",
  9242. image: {
  9243. source: "./media/characters/arcturax/side.svg",
  9244. extra: 790 / 376,
  9245. bottom: 0.01
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Micro",
  9252. height: math.unit(2, "inch")
  9253. },
  9254. {
  9255. name: "Normal",
  9256. height: math.unit(6, "feet")
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(39, "feet"),
  9261. default: true
  9262. },
  9263. {
  9264. name: "Megamacro",
  9265. height: math.unit(7, "miles")
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(50, "lbs"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/sentri/front.svg",
  9278. extra: 1750 / 1570,
  9279. bottom: 0.025
  9280. }
  9281. },
  9282. frontAlt: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(50, "lbs"),
  9285. name: "Front (Alt)",
  9286. image: {
  9287. source: "./media/characters/sentri/front-alt.svg",
  9288. extra: 1750 / 1570,
  9289. bottom: 0.025
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(15, "feet"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(2500, "feet")
  9302. }
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9307. {
  9308. front: {
  9309. height: math.unit(5 + 8 / 12, "feet"),
  9310. weight: math.unit(130, "lbs"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/corvin/front.svg",
  9314. extra: 1803 / 1629
  9315. }
  9316. },
  9317. frontShirt: {
  9318. height: math.unit(5 + 8 / 12, "feet"),
  9319. weight: math.unit(130, "lbs"),
  9320. name: "Front (Shirt)",
  9321. image: {
  9322. source: "./media/characters/corvin/front-shirt.svg",
  9323. extra: 1803 / 1629
  9324. }
  9325. },
  9326. frontPoncho: {
  9327. height: math.unit(5 + 8 / 12, "feet"),
  9328. weight: math.unit(130, "lbs"),
  9329. name: "Front (Poncho)",
  9330. image: {
  9331. source: "./media/characters/corvin/front-poncho.svg",
  9332. extra: 1803 / 1629
  9333. }
  9334. },
  9335. side: {
  9336. height: math.unit(5 + 8 / 12, "feet"),
  9337. weight: math.unit(130, "lbs"),
  9338. name: "Side",
  9339. image: {
  9340. source: "./media/characters/corvin/side.svg",
  9341. extra: 1012 / 945
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(5 + 8 / 12, "feet"),
  9346. weight: math.unit(130, "lbs"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/corvin/back.svg",
  9350. extra: 1803 / 1629
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(3, "inches")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(5 + 8 / 12, "feet")
  9362. },
  9363. {
  9364. name: "Macro",
  9365. height: math.unit(300, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(500, "miles")
  9371. }
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(135, "lbs"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/q/front.svg",
  9383. extra: 854 / 752,
  9384. bottom: 0.005
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(6, "feet"),
  9389. weight: math.unit(130, "lbs"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/q/back.svg",
  9393. extra: 854 / 752
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(90, "feet"),
  9401. default: true
  9402. },
  9403. {
  9404. name: "Extra Macro",
  9405. height: math.unit(300, "feet"),
  9406. },
  9407. {
  9408. name: "BIG WALF",
  9409. height: math.unit(750, "feet"),
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(3, "feet"),
  9418. weight: math.unit(28, "lbs"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/citrine/front.svg"
  9422. }
  9423. }
  9424. },
  9425. [
  9426. {
  9427. name: "Normal",
  9428. height: math.unit(3, "feet"),
  9429. default: true
  9430. }
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9435. {
  9436. front: {
  9437. height: math.unit(14, "feet"),
  9438. weight: math.unit(1450, "kg"),
  9439. preyCapacity: math.unit(15, "people"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/aura-starwind/front.svg",
  9443. extra: 1440/1327,
  9444. bottom: 11/1451
  9445. }
  9446. },
  9447. side: {
  9448. height: math.unit(14, "feet"),
  9449. weight: math.unit(1450, "kg"),
  9450. preyCapacity: math.unit(15, "people"),
  9451. name: "Side",
  9452. image: {
  9453. source: "./media/characters/aura-starwind/side.svg",
  9454. extra: 1654 / 1497
  9455. }
  9456. },
  9457. taur: {
  9458. height: math.unit(18, "feet"),
  9459. weight: math.unit(5500, "kg"),
  9460. preyCapacity: math.unit(50, "people"),
  9461. name: "Taur",
  9462. image: {
  9463. source: "./media/characters/aura-starwind/taur.svg",
  9464. extra: 1760 / 1650
  9465. }
  9466. },
  9467. feral: {
  9468. height: math.unit(46, "feet"),
  9469. weight: math.unit(25000, "kg"),
  9470. preyCapacity: math.unit(120, "people"),
  9471. name: "Feral",
  9472. image: {
  9473. source: "./media/characters/aura-starwind/feral.svg"
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(14, "feet"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(50, "meters")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(5000, "meters")
  9490. },
  9491. {
  9492. name: "Gigamacro",
  9493. height: math.unit(100000, "kilometers")
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9499. {
  9500. front: {
  9501. height: math.unit(2 + 7 / 12, "feet"),
  9502. weight: math.unit(32, "lbs"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/rivet/front.svg",
  9506. extra: 1716 / 1658,
  9507. bottom: 0.03
  9508. }
  9509. },
  9510. foot: {
  9511. height: math.unit(0.551, "feet"),
  9512. name: "Rivet's Foot",
  9513. image: {
  9514. source: "./media/characters/rivet/foot.svg"
  9515. },
  9516. rename: true
  9517. }
  9518. },
  9519. [
  9520. {
  9521. name: "Micro",
  9522. height: math.unit(1.5, "inches"),
  9523. },
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(2 + 7 / 12, "feet"),
  9527. default: true
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(85, "feet")
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(2.2, "km")
  9536. }
  9537. ]
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(5 + 9 / 12, "feet"),
  9544. weight: math.unit(150, "lbs"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/coffee/front.svg",
  9548. extra: 946/880,
  9549. bottom: 66/1012
  9550. }
  9551. },
  9552. foot: {
  9553. height: math.unit(1.29, "feet"),
  9554. name: "Foot",
  9555. image: {
  9556. source: "./media/characters/coffee/foot.svg"
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Micro",
  9563. height: math.unit(2, "inches"),
  9564. },
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(5 + 9 / 12, "feet"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(800, "feet")
  9573. },
  9574. {
  9575. name: "Megamacro",
  9576. height: math.unit(25, "miles")
  9577. }
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(200, "lbs"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/chari-gal/front.svg",
  9589. extra: 735/649,
  9590. bottom: 55/790
  9591. },
  9592. form: "normal",
  9593. default: true
  9594. },
  9595. back: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(200, "lb"),
  9598. name: "Back",
  9599. image: {
  9600. source: "./media/characters/chari-gal/back.svg",
  9601. extra: 762/666,
  9602. bottom: 31/793
  9603. },
  9604. form: "normal"
  9605. },
  9606. mouth: {
  9607. height: math.unit(1.35, "feet"),
  9608. name: "Mouth",
  9609. image: {
  9610. source: "./media/characters/chari-gal/mouth.svg"
  9611. },
  9612. form: "normal"
  9613. },
  9614. gigantamax: {
  9615. height: math.unit(6 * 16, "feet"),
  9616. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9617. name: "Gigantamax",
  9618. image: {
  9619. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9620. extra: 1507/1149,
  9621. bottom: 254/1761
  9622. },
  9623. form: "gigantamax",
  9624. default: true
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5 + 7 / 12, "feet"),
  9631. form: "normal",
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(200, "feet"),
  9636. default: true,
  9637. form: "normal"
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9642. form: "gigantamax",
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(16 * 200, "feet"),
  9647. default: true,
  9648. form: "gigantamax"
  9649. },
  9650. ],
  9651. {
  9652. "normal": {
  9653. name: "Normal",
  9654. default: true
  9655. },
  9656. "gigantamax": {
  9657. name: "Gigantamax",
  9658. },
  9659. }
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9663. {
  9664. front: {
  9665. height: math.unit(6, "feet"),
  9666. weight: math.unit(150, "lbs"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/nova/front.svg",
  9670. extra: 5000 / 4722,
  9671. bottom: 0.02
  9672. }
  9673. }
  9674. },
  9675. [
  9676. {
  9677. name: "Micro-",
  9678. height: math.unit(0.8, "inches")
  9679. },
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(2, "inches"),
  9683. default: true
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9689. {
  9690. koboldFront: {
  9691. height: math.unit(3 + 1 / 12, "feet"),
  9692. weight: math.unit(21.7, "lbs"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/argent/kobold-front.svg",
  9696. extra: 1471 / 1331,
  9697. bottom: 100.8 / 1575.5
  9698. },
  9699. form: "kobold",
  9700. default: true
  9701. },
  9702. dragonFront: {
  9703. height: math.unit(75, "inches"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/argent/dragon-front.svg",
  9707. extra: 1389/1248,
  9708. bottom: 54/1443
  9709. },
  9710. form: "dragon",
  9711. },
  9712. dragonBack: {
  9713. height: math.unit(75, "inches"),
  9714. name: "Back",
  9715. image: {
  9716. source: "./media/characters/argent/dragon-back.svg",
  9717. extra: 1399/1271,
  9718. bottom: 23/1422
  9719. },
  9720. form: "dragon",
  9721. },
  9722. dragonDressed: {
  9723. height: math.unit(75, "inches"),
  9724. name: "Dressed",
  9725. image: {
  9726. source: "./media/characters/argent/dragon-dressed.svg",
  9727. extra: 1350/1215,
  9728. bottom: 26/1376
  9729. },
  9730. form: "dragon"
  9731. },
  9732. dragonHead: {
  9733. height: math.unit(23.5, "inches"),
  9734. name: "Head",
  9735. image: {
  9736. source: "./media/characters/argent/dragon-head.svg"
  9737. },
  9738. form: "dragon",
  9739. },
  9740. },
  9741. [
  9742. {
  9743. name: "Micro",
  9744. height: math.unit(2, "inches"),
  9745. form: "kobold",
  9746. },
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(3 + 1 / 12, "feet"),
  9750. form: "kobold",
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(120, "feet"),
  9756. form: "kobold",
  9757. },
  9758. {
  9759. name: "Speck",
  9760. height: math.unit(1, "mm"),
  9761. form: "dragon",
  9762. },
  9763. {
  9764. name: "Tiny",
  9765. height: math.unit(1, "cm"),
  9766. form: "dragon",
  9767. },
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(5, "cm"),
  9771. form: "dragon",
  9772. },
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(75, "inches"),
  9776. form: "dragon",
  9777. default: true
  9778. },
  9779. {
  9780. name: "Extra Tall",
  9781. height: math.unit(9, "feet"),
  9782. form: "dragon",
  9783. },
  9784. {
  9785. name: "Inconvenient",
  9786. height: math.unit(5, "meters"),
  9787. form: "dragon",
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(70, "meters"),
  9792. form: "dragon",
  9793. },
  9794. {
  9795. name: "Macro+",
  9796. height: math.unit(250, "meters"),
  9797. form: "dragon",
  9798. },
  9799. {
  9800. name: "Megamacro",
  9801. height: math.unit(20, "km"),
  9802. form: "dragon",
  9803. },
  9804. {
  9805. name: "Mountainous",
  9806. height: math.unit(100, "km"),
  9807. form: "dragon",
  9808. },
  9809. {
  9810. name: "Continental",
  9811. height: math.unit(2, "megameters"),
  9812. form: "dragon",
  9813. },
  9814. {
  9815. name: "Too Big",
  9816. height: math.unit(900, "megameters"),
  9817. form: "dragon",
  9818. },
  9819. ],
  9820. {
  9821. "kobold": {
  9822. name: "Kobold",
  9823. default: true
  9824. },
  9825. "dragon": {
  9826. name: "Dragon",
  9827. },
  9828. }
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9832. {
  9833. lamp: {
  9834. height: math.unit(7 * 1559 / 989, "feet"),
  9835. name: "Magic Lamp",
  9836. image: {
  9837. source: "./media/characters/mira-al-cul/lamp.svg",
  9838. extra: 1617 / 1559
  9839. }
  9840. },
  9841. front: {
  9842. height: math.unit(7, "feet"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/mira-al-cul/front.svg",
  9846. extra: 1044 / 990
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Heavily Restricted",
  9853. height: math.unit(7 * 1559 / 989, "feet")
  9854. },
  9855. {
  9856. name: "Freshly Freed",
  9857. height: math.unit(50 * 1559 / 989, "feet")
  9858. },
  9859. {
  9860. name: "World Encompassing",
  9861. height: math.unit(10000 * 1559 / 989, "miles")
  9862. },
  9863. {
  9864. name: "Galactic",
  9865. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9866. },
  9867. {
  9868. name: "Palmed Universe",
  9869. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Multiversal Matriarch",
  9874. height: math.unit(8.87e10, "yottameters")
  9875. },
  9876. {
  9877. name: "Void Mother",
  9878. height: math.unit(3.14e110, "yottaparsecs")
  9879. },
  9880. {
  9881. name: "Toying with Transcendence",
  9882. height: math.unit(1e307, "meters")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9888. {
  9889. front: {
  9890. height: math.unit(17 + 1 / 12, "feet"),
  9891. weight: math.unit(476.2 * 5, "lbs"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/kuro-shi-uchū/front.svg",
  9895. extra: 2329 / 1835,
  9896. bottom: 0.02
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(2, "inches")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(12, "meters")
  9908. },
  9909. {
  9910. name: "Planetary",
  9911. height: math.unit(0.00929, "AU"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Universal",
  9916. height: math.unit(20, "gigaparsecs")
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9922. {
  9923. front: {
  9924. height: math.unit(5 + 2 / 12, "feet"),
  9925. weight: math.unit(120, "lbs"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/katherine/front.svg",
  9929. extra: 2075 / 1969
  9930. }
  9931. },
  9932. dress: {
  9933. height: math.unit(5 + 2 / 12, "feet"),
  9934. weight: math.unit(120, "lbs"),
  9935. name: "Dress",
  9936. image: {
  9937. source: "./media/characters/katherine/dress.svg",
  9938. extra: 2258 / 2064
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Micro",
  9945. height: math.unit(1, "inches"),
  9946. default: true
  9947. },
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(5 + 2 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(100, "meters")
  9955. },
  9956. {
  9957. name: "Megamacro",
  9958. height: math.unit(80, "miles")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(7 + 8 / 12, "feet"),
  9967. weight: math.unit(250, "lbs"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/yevis/front.svg",
  9971. extra: 1938 / 1755
  9972. }
  9973. }
  9974. },
  9975. [
  9976. {
  9977. name: "Mortal",
  9978. height: math.unit(7 + 8 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Battle",
  9982. height: math.unit(25 + 11 / 12, "feet")
  9983. },
  9984. {
  9985. name: "Wrath",
  9986. height: math.unit(1654 + 11 / 12, "feet")
  9987. },
  9988. {
  9989. name: "Planet Destroyer",
  9990. height: math.unit(12000, "miles")
  9991. },
  9992. {
  9993. name: "Galaxy Conqueror",
  9994. height: math.unit(1.45, "zettameters"),
  9995. default: true
  9996. },
  9997. {
  9998. name: "Universal War",
  9999. height: math.unit(184, "gigaparsecs")
  10000. },
  10001. {
  10002. name: "Eternity War",
  10003. height: math.unit(1.98e55, "yottaparsecs")
  10004. },
  10005. ]
  10006. ))
  10007. characterMakers.push(() => makeCharacter(
  10008. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10009. {
  10010. front: {
  10011. height: math.unit(5 + 8 / 12, "feet"),
  10012. weight: math.unit(63, "kg"),
  10013. name: "Front",
  10014. image: {
  10015. source: "./media/characters/xavier/front.svg",
  10016. extra: 944 / 883
  10017. }
  10018. },
  10019. frontStretch: {
  10020. height: math.unit(5 + 8 / 12, "feet"),
  10021. weight: math.unit(63, "kg"),
  10022. name: "Stretching",
  10023. image: {
  10024. source: "./media/characters/xavier/front-stretch.svg",
  10025. extra: 962 / 820
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(5 + 8 / 12, "feet")
  10033. },
  10034. {
  10035. name: "Macro",
  10036. height: math.unit(100, "meters"),
  10037. default: true
  10038. },
  10039. {
  10040. name: "McLargeHuge",
  10041. height: math.unit(10, "miles")
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(5 + 5 / 12, "feet"),
  10050. weight: math.unit(150, "lb"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/joshii/front.svg",
  10054. extra: 765 / 653,
  10055. bottom: 51 / 816
  10056. }
  10057. },
  10058. foot: {
  10059. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10060. name: "Foot",
  10061. image: {
  10062. source: "./media/characters/joshii/foot.svg"
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Micro",
  10069. height: math.unit(2, "inches")
  10070. },
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(5 + 5 / 12, "feet")
  10074. },
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(785, "feet"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(24.5, "miles")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/goddess-elizabeth/front.svg",
  10095. extra: 1800 / 1525,
  10096. bottom: 0.005
  10097. }
  10098. },
  10099. foot: {
  10100. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10101. name: "Foot",
  10102. image: {
  10103. source: "./media/characters/goddess-elizabeth/foot.svg"
  10104. }
  10105. },
  10106. mouth: {
  10107. height: math.unit(6, "feet"),
  10108. name: "Mouth",
  10109. image: {
  10110. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Micro",
  10117. height: math.unit(12, "feet")
  10118. },
  10119. {
  10120. name: "Normal",
  10121. height: math.unit(80, "miles"),
  10122. default: true
  10123. },
  10124. {
  10125. name: "Macro",
  10126. height: math.unit(15000, "parsecs")
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(5 + 9 / 12, "feet"),
  10135. weight: math.unit(144, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/kara/front.svg"
  10139. }
  10140. },
  10141. feet: {
  10142. height: math.unit(6 / 6.765, "feet"),
  10143. name: "Kara's Feet",
  10144. rename: true,
  10145. image: {
  10146. source: "./media/characters/kara/feet.svg"
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(5 + 9 / 12, "feet")
  10154. },
  10155. {
  10156. name: "Macro",
  10157. height: math.unit(174, "feet"),
  10158. default: true
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(18, "feet"),
  10167. weight: math.unit(4050, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/tyrone/front.svg",
  10171. extra: 2405 / 2270,
  10172. bottom: 182 / 2587
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(18, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Macro",
  10184. height: math.unit(300, "feet")
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(15, "km")
  10189. },
  10190. {
  10191. name: "Gigamacro",
  10192. height: math.unit(500, "km")
  10193. },
  10194. {
  10195. name: "Teramacro",
  10196. height: math.unit(0.5, "gigameters")
  10197. },
  10198. {
  10199. name: "Omnimacro",
  10200. height: math.unit(1e252, "yottauniverse")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(7 + 8 / 12, "feet"),
  10209. weight: math.unit(120, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/danny/front.svg",
  10213. extra: 1490 / 1350
  10214. }
  10215. },
  10216. back: {
  10217. height: math.unit(7 + 8 / 12, "feet"),
  10218. weight: math.unit(120, "lb"),
  10219. name: "Back",
  10220. image: {
  10221. source: "./media/characters/danny/back.svg",
  10222. extra: 1490 / 1350
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(7 + 8 / 12, "feet"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(3.5, "inches"),
  10239. weight: math.unit(19, "grams"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/mallow/front.svg",
  10243. extra: 471 / 431
  10244. }
  10245. },
  10246. back: {
  10247. height: math.unit(3.5, "inches"),
  10248. weight: math.unit(19, "grams"),
  10249. name: "Back",
  10250. image: {
  10251. source: "./media/characters/mallow/back.svg",
  10252. extra: 471 / 431
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(3.5, "inches"),
  10260. default: true
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(9, "feet"),
  10269. weight: math.unit(230, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/starry-aqua/front.svg"
  10273. }
  10274. },
  10275. back: {
  10276. height: math.unit(9, "feet"),
  10277. weight: math.unit(230, "kg"),
  10278. name: "Back",
  10279. image: {
  10280. source: "./media/characters/starry-aqua/back.svg"
  10281. }
  10282. },
  10283. hand: {
  10284. height: math.unit(9 * 0.1168, "feet"),
  10285. name: "Hand",
  10286. image: {
  10287. source: "./media/characters/starry-aqua/hand.svg"
  10288. }
  10289. },
  10290. foot: {
  10291. height: math.unit(9 * 0.18, "feet"),
  10292. name: "Foot",
  10293. image: {
  10294. source: "./media/characters/starry-aqua/foot.svg"
  10295. }
  10296. }
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(3, "inches")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(9, "feet")
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(300, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Megamacro",
  10314. height: math.unit(3200, "feet")
  10315. }
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(15, "feet"),
  10323. weight: math.unit(5026, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/luka-towers/front.svg",
  10327. extra: 1269/1133,
  10328. bottom: 51/1320
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(15, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Minimacro",
  10340. height: math.unit(25, "feet")
  10341. },
  10342. {
  10343. name: "Macro",
  10344. height: math.unit(320, "feet")
  10345. },
  10346. {
  10347. name: "Megamacro",
  10348. height: math.unit(35000, "feet")
  10349. },
  10350. {
  10351. name: "Gigamacro",
  10352. height: math.unit(4000, "miles")
  10353. },
  10354. {
  10355. name: "Teramacro",
  10356. height: math.unit(15000, "miles")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/natalie-nightring/front.svg",
  10369. extra: 1,
  10370. bottom: 0.06
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Uh Oh",
  10377. height: math.unit(0.1, "mm")
  10378. },
  10379. {
  10380. name: "Small",
  10381. height: math.unit(3, "inches")
  10382. },
  10383. {
  10384. name: "Human Scale",
  10385. height: math.unit(6, "feet")
  10386. },
  10387. {
  10388. name: "Librarian",
  10389. height: math.unit(50, "feet"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Immense",
  10394. height: math.unit(200, "miles")
  10395. },
  10396. ]
  10397. ))
  10398. characterMakers.push(() => makeCharacter(
  10399. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10400. {
  10401. front: {
  10402. height: math.unit(6, "feet"),
  10403. weight: math.unit(180, "lbs"),
  10404. name: "Front",
  10405. image: {
  10406. source: "./media/characters/danni-rosie/front.svg",
  10407. extra: 1260 / 1128,
  10408. bottom: 0.022
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Micro",
  10415. height: math.unit(2, "inches"),
  10416. default: true
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(5 + 9 / 12, "feet"),
  10425. weight: math.unit(220, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/samantha-kruse/front.svg",
  10429. extra: (985 / 935),
  10430. bottom: 0.03
  10431. }
  10432. },
  10433. frontUndressed: {
  10434. height: math.unit(5 + 9 / 12, "feet"),
  10435. weight: math.unit(220, "lb"),
  10436. name: "Front (Undressed)",
  10437. image: {
  10438. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10439. extra: (973 / 923),
  10440. bottom: 0.025
  10441. }
  10442. },
  10443. fat: {
  10444. height: math.unit(5 + 9 / 12, "feet"),
  10445. weight: math.unit(900, "lb"),
  10446. name: "Front (Fat)",
  10447. image: {
  10448. source: "./media/characters/samantha-kruse/fat.svg",
  10449. extra: 2688 / 2561
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Normal",
  10456. height: math.unit(5 + 9 / 12, "feet"),
  10457. default: true
  10458. }
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10463. {
  10464. back: {
  10465. height: math.unit(5 + 4 / 12, "feet"),
  10466. weight: math.unit(4963, "lb"),
  10467. name: "Back",
  10468. image: {
  10469. source: "./media/characters/amelia-rosie/back.svg",
  10470. extra: 1113 / 963,
  10471. bottom: 0.01
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Level 0",
  10478. height: math.unit(5 + 4 / 12, "feet")
  10479. },
  10480. {
  10481. name: "Level 1",
  10482. height: math.unit(164597, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Level 2",
  10487. height: math.unit(956243, "miles")
  10488. },
  10489. {
  10490. name: "Level 3",
  10491. height: math.unit(29421709423, "miles")
  10492. },
  10493. {
  10494. name: "Level 4",
  10495. height: math.unit(154, "lightyears")
  10496. },
  10497. {
  10498. name: "Level 5",
  10499. height: math.unit(4738272, "lightyears")
  10500. },
  10501. {
  10502. name: "Level 6",
  10503. height: math.unit(145787152896, "lightyears")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(5 + 11 / 12, "feet"),
  10512. weight: math.unit(65, "kg"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/rook-kitara/front.svg",
  10516. extra: 1347 / 1274,
  10517. bottom: 0.005
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Totally Unfair",
  10524. height: math.unit(1.8, "mm")
  10525. },
  10526. {
  10527. name: "Lap Rookie",
  10528. height: math.unit(1.4, "feet")
  10529. },
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(5 + 11 / 12, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "How Did This Happen",
  10537. height: math.unit(80, "miles")
  10538. }
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(7, "feet"),
  10546. weight: math.unit(300, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/pisces/front.svg",
  10550. extra: 2255 / 2115,
  10551. bottom: 0.03
  10552. }
  10553. },
  10554. back: {
  10555. height: math.unit(7, "feet"),
  10556. weight: math.unit(300, "lb"),
  10557. name: "Back",
  10558. image: {
  10559. source: "./media/characters/pisces/back.svg",
  10560. extra: 2146 / 2055,
  10561. bottom: 0.04
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(7, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Swimming Pool",
  10573. height: math.unit(12.2, "meters")
  10574. },
  10575. {
  10576. name: "Olympic Swimming Pool",
  10577. height: math.unit(56.3, "meters")
  10578. },
  10579. {
  10580. name: "Lake Superior",
  10581. height: math.unit(93900, "meters")
  10582. },
  10583. {
  10584. name: "Mediterranean Sea",
  10585. height: math.unit(644457, "meters")
  10586. },
  10587. {
  10588. name: "World's Oceans",
  10589. height: math.unit(4567491, "meters")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(2.3, "meters"),
  10598. weight: math.unit(120, "kg"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/zelas/front.svg"
  10602. }
  10603. },
  10604. side: {
  10605. height: math.unit(2.3, "meters"),
  10606. weight: math.unit(120, "kg"),
  10607. name: "Side",
  10608. image: {
  10609. source: "./media/characters/zelas/side.svg"
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(2.3, "meters"),
  10614. weight: math.unit(120, "kg"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/zelas/back.svg"
  10618. }
  10619. },
  10620. foot: {
  10621. height: math.unit(1.116, "feet"),
  10622. name: "Foot",
  10623. image: {
  10624. source: "./media/characters/zelas/foot.svg"
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(2.3, "meters")
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(30, "meters"),
  10636. default: true
  10637. },
  10638. ]
  10639. ))
  10640. characterMakers.push(() => makeCharacter(
  10641. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10642. {
  10643. front: {
  10644. height: math.unit(1, "inch"),
  10645. weight: math.unit(0.21, "grams"),
  10646. name: "Front",
  10647. image: {
  10648. source: "./media/characters/talbot/front.svg",
  10649. extra: 594 / 544
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(1, "inch"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10663. {
  10664. front: {
  10665. height: math.unit(3 + 3 / 12, "feet"),
  10666. weight: math.unit(51.8, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/fliss/front.svg",
  10670. extra: 840 / 640
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Teeny Tiny",
  10677. height: math.unit(1, "mm")
  10678. },
  10679. {
  10680. name: "Small",
  10681. height: math.unit(1, "inch"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Standard Sylveon",
  10686. height: math.unit(3 + 3 / 12, "feet")
  10687. },
  10688. {
  10689. name: "Large Nuisance",
  10690. height: math.unit(33, "feet")
  10691. },
  10692. {
  10693. name: "City Filler",
  10694. height: math.unit(3000, "feet")
  10695. },
  10696. {
  10697. name: "New Horizon",
  10698. height: math.unit(6000, "miles")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(5, "cm"),
  10707. weight: math.unit(1.94, "g"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/fleta/front.svg",
  10711. extra: 835 / 803
  10712. }
  10713. },
  10714. back: {
  10715. height: math.unit(5, "cm"),
  10716. weight: math.unit(1.94, "g"),
  10717. name: "Back",
  10718. image: {
  10719. source: "./media/characters/fleta/back.svg",
  10720. extra: 835 / 803
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Micro",
  10727. height: math.unit(5, "cm"),
  10728. default: true
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(225, "lb"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/dominic/front.svg",
  10741. extra: 1770 / 1620,
  10742. bottom: 0.025
  10743. }
  10744. },
  10745. back: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(225, "lb"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/dominic/back.svg",
  10751. extra: 1745 / 1620,
  10752. bottom: 0.065
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Nano",
  10759. height: math.unit(0.1, "mm")
  10760. },
  10761. {
  10762. name: "Micro-",
  10763. height: math.unit(1, "mm")
  10764. },
  10765. {
  10766. name: "Micro",
  10767. height: math.unit(4, "inches")
  10768. },
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(6 + 4 / 12, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(115, "feet")
  10777. },
  10778. {
  10779. name: "Macro+",
  10780. height: math.unit(955, "feet")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(8990, "feet")
  10785. },
  10786. {
  10787. name: "Gigmacro",
  10788. height: math.unit(9310, "miles")
  10789. },
  10790. {
  10791. name: "Teramacro",
  10792. height: math.unit(1567005010, "miles")
  10793. },
  10794. {
  10795. name: "Examacro",
  10796. height: math.unit(1425, "parsecs")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(400, "feet"),
  10805. weight: math.unit(44444444, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/major-colonel/front.svg"
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(400, "feet"),
  10813. weight: math.unit(44444444, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/major-colonel/back.svg"
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(400, "feet"),
  10824. default: true
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10830. {
  10831. catFront: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(120, "lb"),
  10834. name: "Front (Cat Side)",
  10835. image: {
  10836. source: "./media/characters/axel-lycan/cat-front.svg",
  10837. extra: 430 / 402,
  10838. bottom: 43 / 472.35
  10839. }
  10840. },
  10841. catBack: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(120, "lb"),
  10844. name: "Back (Cat Side)",
  10845. image: {
  10846. source: "./media/characters/axel-lycan/cat-back.svg",
  10847. extra: 447 / 419,
  10848. bottom: 23.3 / 469
  10849. }
  10850. },
  10851. wolfFront: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(120, "lb"),
  10854. name: "Front (Wolf Side)",
  10855. image: {
  10856. source: "./media/characters/axel-lycan/wolf-front.svg",
  10857. extra: 485 / 456,
  10858. bottom: 19 / 504
  10859. }
  10860. },
  10861. wolfBack: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(120, "lb"),
  10864. name: "Back (Wolf Side)",
  10865. image: {
  10866. source: "./media/characters/axel-lycan/wolf-back.svg",
  10867. extra: 475 / 438,
  10868. bottom: 39.2 / 514
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(1, "km"),
  10876. default: true
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(5 + 9 / 12, "feet"),
  10885. weight: math.unit(175, "lb"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/vanrel-hyena/front.svg",
  10889. extra: 1086 / 1010,
  10890. bottom: 0.04
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Normal",
  10897. height: math.unit(5 + 9 / 12, "feet"),
  10898. default: true
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(6, "feet"),
  10907. weight: math.unit(103, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/abbott-absol/front.svg",
  10911. extra: 765/694,
  10912. bottom: 47/812
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Megamicro",
  10919. height: math.unit(0.1, "mm")
  10920. },
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(1, "inch")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(6, "feet"),
  10928. default: true
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(6, "feet"),
  10937. weight: math.unit(264, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/hector/front.svg",
  10941. extra: 2280 / 2130,
  10942. bottom: 0.07
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(12.25, "foot"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(160, "feet")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/sal/front.svg",
  10967. extra: 1846 / 1699,
  10968. bottom: 0.04
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(10, "miles"),
  10976. default: true
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10982. {
  10983. front: {
  10984. height: math.unit(3, "meters"),
  10985. weight: math.unit(450, "kg"),
  10986. name: "front",
  10987. image: {
  10988. source: "./media/characters/ranger/front.svg",
  10989. extra: 2401 / 2243,
  10990. bottom: 0.05
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(3, "meters"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(14, "feet"),
  11007. weight: math.unit(800, "kg"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/theresa/front.svg",
  11011. extra: 3575 / 3346,
  11012. bottom: 0.03
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(14, "feet"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(3, "kg"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/ine/front.svg",
  11033. extra: 678 / 539,
  11034. bottom: 0.023
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(2.265, "feet"),
  11042. default: true
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(5, "feet"),
  11051. weight: math.unit(30, "kg"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/vial/front.svg",
  11055. extra: 1365 / 1277,
  11056. bottom: 0.04
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(5, "feet"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11070. {
  11071. side: {
  11072. height: math.unit(3.4, "meters"),
  11073. weight: math.unit(1000, "lb"),
  11074. name: "Side",
  11075. image: {
  11076. source: "./media/characters/rovoska/side.svg",
  11077. extra: 4403 / 1515
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Normal",
  11084. height: math.unit(3.4, "meters"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(8, "feet"),
  11094. weight: math.unit(315, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/gunner-rotthbauer/front.svg"
  11098. }
  11099. },
  11100. back: {
  11101. height: math.unit(8, "feet"),
  11102. weight: math.unit(315, "lb"),
  11103. name: "Back",
  11104. image: {
  11105. source: "./media/characters/gunner-rotthbauer/back.svg"
  11106. }
  11107. },
  11108. },
  11109. [
  11110. {
  11111. name: "Micro",
  11112. height: math.unit(3.5, "inches")
  11113. },
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(8, "feet"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(250, "feet")
  11122. },
  11123. {
  11124. name: "Megamacro",
  11125. height: math.unit(1, "AU")
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(5 + 5 / 12, "feet"),
  11134. weight: math.unit(140, "lb"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/allatia/front.svg",
  11138. extra: 1227 / 1180,
  11139. bottom: 0.027
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(5 + 5 / 12, "feet")
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(250, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(8, "miles")
  11156. }
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(120, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/tene/front.svg",
  11168. extra: 814/750,
  11169. bottom: 36/850
  11170. }
  11171. },
  11172. stomping: {
  11173. height: math.unit(2.025, "meters"),
  11174. weight: math.unit(120, "lb"),
  11175. name: "Stomping",
  11176. image: {
  11177. source: "./media/characters/tene/stomping.svg",
  11178. extra: 885/821,
  11179. bottom: 15/900
  11180. }
  11181. },
  11182. sitting: {
  11183. height: math.unit(1, "meter"),
  11184. weight: math.unit(120, "lb"),
  11185. name: "Sitting",
  11186. image: {
  11187. source: "./media/characters/tene/sitting.svg",
  11188. extra: 396/366,
  11189. bottom: 79/475
  11190. }
  11191. },
  11192. smiling: {
  11193. height: math.unit(1.2, "feet"),
  11194. name: "Smiling",
  11195. image: {
  11196. source: "./media/characters/tene/smiling.svg",
  11197. extra: 1364/1071,
  11198. bottom: 0/1364
  11199. }
  11200. },
  11201. smug: {
  11202. height: math.unit(1.3, "feet"),
  11203. name: "Smug",
  11204. image: {
  11205. source: "./media/characters/tene/smug.svg",
  11206. extra: 1323/1082,
  11207. bottom: 0/1323
  11208. }
  11209. },
  11210. feral: {
  11211. height: math.unit(3.9, "feet"),
  11212. weight: math.unit(250, "lb"),
  11213. name: "Feral",
  11214. image: {
  11215. source: "./media/characters/tene/feral.svg",
  11216. extra: 717 / 458,
  11217. bottom: 0.179
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(6, "feet")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(300, "feet"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(5, "miles")
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11239. {
  11240. side: {
  11241. height: math.unit(6, "feet"),
  11242. name: "Side",
  11243. image: {
  11244. source: "./media/characters/evander/side.svg",
  11245. extra: 877 / 477
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(0.83, "meters"),
  11253. default: true
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11259. {
  11260. front: {
  11261. height: math.unit(12, "feet"),
  11262. weight: math.unit(1000, "lb"),
  11263. name: "Front",
  11264. image: {
  11265. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11266. extra: 1762 / 1611
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(12, "feet"),
  11271. weight: math.unit(1000, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11275. extra: 1762 / 1611
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(12, "feet"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Kaiju",
  11287. height: math.unit(150, "feet")
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11293. {
  11294. front: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(150, "lb"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/zero-alurus/front.svg"
  11300. }
  11301. },
  11302. back: {
  11303. height: math.unit(6, "feet"),
  11304. weight: math.unit(150, "lb"),
  11305. name: "Back",
  11306. image: {
  11307. source: "./media/characters/zero-alurus/back.svg"
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(5 + 10 / 12, "feet")
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(60, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro+",
  11323. height: math.unit(450, "feet")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(200, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/mega-shi/front.svg",
  11336. extra: 1279 / 1250,
  11337. bottom: 0.02
  11338. }
  11339. },
  11340. back: {
  11341. height: math.unit(6, "feet"),
  11342. weight: math.unit(200, "lb"),
  11343. name: "Back",
  11344. image: {
  11345. source: "./media/characters/mega-shi/back.svg",
  11346. extra: 1279 / 1250,
  11347. bottom: 0.02
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Micro",
  11354. height: math.unit(16 + 6 / 12, "feet")
  11355. },
  11356. {
  11357. name: "Third Dimension",
  11358. height: math.unit(40, "meters")
  11359. },
  11360. {
  11361. name: "Normal",
  11362. height: math.unit(660, "feet"),
  11363. default: true
  11364. },
  11365. {
  11366. name: "Megamacro",
  11367. height: math.unit(10, "miles")
  11368. },
  11369. {
  11370. name: "Planetary Launch",
  11371. height: math.unit(500, "miles")
  11372. },
  11373. {
  11374. name: "Interstellar",
  11375. height: math.unit(1e9, "miles")
  11376. },
  11377. {
  11378. name: "Leaving the Universe",
  11379. height: math.unit(1, "gigaparsec")
  11380. },
  11381. {
  11382. name: "Travelling Universes",
  11383. height: math.unit(30e15, "parsecs")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(5 + 4/12, "feet"),
  11392. weight: math.unit(120, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/odyssey/front.svg",
  11396. extra: 1747/1571,
  11397. bottom: 47/1794
  11398. }
  11399. },
  11400. side: {
  11401. height: math.unit(5.1, "feet"),
  11402. weight: math.unit(120, "lb"),
  11403. name: "Side",
  11404. image: {
  11405. source: "./media/characters/odyssey/side.svg",
  11406. extra: 1847/1619,
  11407. bottom: 47/1894
  11408. }
  11409. },
  11410. lounging: {
  11411. height: math.unit(1.464, "feet"),
  11412. weight: math.unit(120, "lb"),
  11413. name: "Lounging",
  11414. image: {
  11415. source: "./media/characters/odyssey/lounging.svg",
  11416. extra: 1235/837,
  11417. bottom: 551/1786
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(5 + 4 / 12, "feet")
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(1, "km")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(3000, "km")
  11433. },
  11434. {
  11435. name: "Gigamacro",
  11436. height: math.unit(1, "AU"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Omniversal",
  11441. height: math.unit(100e14, "lightyears")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(5 + 10/12, "feet"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/mekuto/front.svg",
  11453. extra: 875/835,
  11454. bottom: 46/921
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Minimicro",
  11461. height: math.unit(0.2, "inches")
  11462. },
  11463. {
  11464. name: "Micro",
  11465. height: math.unit(1.5, "inches")
  11466. },
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(5 + 10 / 12, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Minimacro",
  11474. height: math.unit(17 + 9 / 12, "feet")
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(177.5, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(152, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(6.5, "inches"),
  11491. weight: math.unit(13, "oz"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/dafydd-tomos/front.svg",
  11495. extra: 2990 / 2603,
  11496. bottom: 0.03
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(6.5, "inches"),
  11504. default: true
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/splinter/front.svg",
  11517. extra: 2990 / 2882,
  11518. bottom: 0.04
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/splinter/back.svg",
  11527. extra: 2990 / 2882,
  11528. bottom: 0.04
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(6, "feet")
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(230, "meters"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(4 + 10 / 12, "feet"),
  11549. weight: math.unit(480, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/snow-gabumon/front.svg",
  11553. extra: 1140 / 963,
  11554. bottom: 0.058
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(4 + 10 / 12, "feet"),
  11559. weight: math.unit(480, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/snow-gabumon/back.svg",
  11563. extra: 1115 / 962,
  11564. bottom: 0.041
  11565. }
  11566. },
  11567. frontUndresed: {
  11568. height: math.unit(4 + 10 / 12, "feet"),
  11569. weight: math.unit(480, "lb"),
  11570. name: "Front (Undressed)",
  11571. image: {
  11572. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11573. extra: 1061 / 960,
  11574. bottom: 0.045
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Micro",
  11581. height: math.unit(1, "inch")
  11582. },
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(4 + 10 / 12, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(200, "feet")
  11591. },
  11592. {
  11593. name: "Megamacro",
  11594. height: math.unit(120, "miles")
  11595. },
  11596. {
  11597. name: "Gigamacro",
  11598. height: math.unit(9800, "miles")
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(1.7, "meters"),
  11607. weight: math.unit(140, "lb"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/moody/front.svg",
  11611. extra: 3226 / 3007,
  11612. bottom: 0.087
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Micro",
  11619. height: math.unit(1, "mm")
  11620. },
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(1.7, "meters"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(80, "meters")
  11629. },
  11630. {
  11631. name: "Macro+",
  11632. height: math.unit(500, "meters")
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/zyas/front.svg",
  11645. extra: 1180 / 1120,
  11646. bottom: 0.045
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Normal",
  11653. height: math.unit(10, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(500, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(5, "miles")
  11663. },
  11664. {
  11665. name: "Teramacro",
  11666. height: math.unit(150000, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(150, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/cuon/front.svg",
  11679. extra: 1390 / 1320,
  11680. bottom: 0.008
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Micro",
  11687. height: math.unit(3, "inches")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(18 + 9 / 12, "feet"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(360, "feet")
  11697. },
  11698. {
  11699. name: "Megamacro",
  11700. height: math.unit(360, "miles")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(2.4, "meters"),
  11709. weight: math.unit(70, "kg"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/nyanuxk/front.svg",
  11713. extra: 1172 / 1084,
  11714. bottom: 0.065
  11715. }
  11716. },
  11717. side: {
  11718. height: math.unit(2.4, "meters"),
  11719. weight: math.unit(70, "kg"),
  11720. name: "Side",
  11721. image: {
  11722. source: "./media/characters/nyanuxk/side.svg",
  11723. extra: 1190 / 1132,
  11724. bottom: 0.007
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(2.4, "meters"),
  11729. weight: math.unit(70, "kg"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/nyanuxk/back.svg",
  11733. extra: 1200 / 1141,
  11734. bottom: 0.015
  11735. }
  11736. },
  11737. foot: {
  11738. height: math.unit(0.52, "meters"),
  11739. name: "Foot",
  11740. image: {
  11741. source: "./media/characters/nyanuxk/foot.svg"
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Micro",
  11748. height: math.unit(2, "cm")
  11749. },
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(2.4, "meters"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Smaller Macro",
  11757. height: math.unit(120, "meters")
  11758. },
  11759. {
  11760. name: "Bigger Macro",
  11761. height: math.unit(1.2, "km")
  11762. },
  11763. {
  11764. name: "Megamacro",
  11765. height: math.unit(15, "kilometers")
  11766. },
  11767. {
  11768. name: "Gigamacro",
  11769. height: math.unit(2000, "km")
  11770. },
  11771. {
  11772. name: "Teramacro",
  11773. height: math.unit(500000, "km")
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11779. {
  11780. side: {
  11781. height: math.unit(6, "feet"),
  11782. name: "Side",
  11783. image: {
  11784. source: "./media/characters/ailbhe/side.svg",
  11785. extra: 757 / 464,
  11786. bottom: 0.041
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(1.07, "meters"),
  11794. default: true
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(120, "kg"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/zevulfius/front.svg",
  11807. extra: 965 / 903
  11808. }
  11809. },
  11810. side: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(120, "kg"),
  11813. name: "Side",
  11814. image: {
  11815. source: "./media/characters/zevulfius/side.svg",
  11816. extra: 939 / 900
  11817. }
  11818. },
  11819. back: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(120, "kg"),
  11822. name: "Back",
  11823. image: {
  11824. source: "./media/characters/zevulfius/back.svg",
  11825. extra: 918 / 854,
  11826. bottom: 0.005
  11827. }
  11828. },
  11829. foot: {
  11830. height: math.unit(6 / 3.72, "feet"),
  11831. name: "Foot",
  11832. image: {
  11833. source: "./media/characters/zevulfius/foot.svg"
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Macro",
  11840. height: math.unit(750, "meters")
  11841. },
  11842. {
  11843. name: "Megamacro",
  11844. height: math.unit(20, "km"),
  11845. default: true
  11846. },
  11847. {
  11848. name: "Gigamacro",
  11849. height: math.unit(2000, "km")
  11850. },
  11851. {
  11852. name: "Teramacro",
  11853. height: math.unit(250000, "km")
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11859. {
  11860. front: {
  11861. height: math.unit(100, "feet"),
  11862. weight: math.unit(350, "kg"),
  11863. name: "Front",
  11864. image: {
  11865. source: "./media/characters/rikes/front.svg",
  11866. extra: 1565 / 1483,
  11867. bottom: 0.017
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(100, "feet"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(8, "feet"),
  11884. weight: math.unit(356, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/adam-silver-mane/front.svg",
  11888. extra: 1036/937,
  11889. bottom: 63/1099
  11890. }
  11891. },
  11892. side: {
  11893. height: math.unit(8, "feet"),
  11894. weight: math.unit(356, "lb"),
  11895. name: "Side",
  11896. image: {
  11897. source: "./media/characters/adam-silver-mane/side.svg",
  11898. extra: 997/901,
  11899. bottom: 59/1056
  11900. }
  11901. },
  11902. frontNsfw: {
  11903. height: math.unit(8, "feet"),
  11904. weight: math.unit(356, "lb"),
  11905. name: "Front (NSFW)",
  11906. image: {
  11907. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11908. extra: 1036/937,
  11909. bottom: 63/1099
  11910. }
  11911. },
  11912. sideNsfw: {
  11913. height: math.unit(8, "feet"),
  11914. weight: math.unit(356, "lb"),
  11915. name: "Side (NSFW)",
  11916. image: {
  11917. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11918. extra: 997/901,
  11919. bottom: 59/1056
  11920. }
  11921. },
  11922. dick: {
  11923. height: math.unit(2.1, "feet"),
  11924. name: "Dick",
  11925. image: {
  11926. source: "./media/characters/adam-silver-mane/dick.svg"
  11927. }
  11928. },
  11929. taur: {
  11930. height: math.unit(16, "feet"),
  11931. weight: math.unit(1500, "kg"),
  11932. name: "Taur",
  11933. image: {
  11934. source: "./media/characters/adam-silver-mane/taur.svg",
  11935. extra: 1713 / 1571,
  11936. bottom: 0.01
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(8, "feet")
  11944. },
  11945. {
  11946. name: "Minimacro",
  11947. height: math.unit(80, "feet")
  11948. },
  11949. {
  11950. name: "MDA",
  11951. height: math.unit(80, "meters")
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(800, "feet"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(8000, "feet")
  11961. },
  11962. {
  11963. name: "Gigamacro",
  11964. height: math.unit(800, "miles")
  11965. },
  11966. {
  11967. name: "Teramacro",
  11968. height: math.unit(80000, "miles")
  11969. },
  11970. {
  11971. name: "Celestial",
  11972. height: math.unit(8e6, "miles")
  11973. },
  11974. {
  11975. name: "Star Dragon",
  11976. height: math.unit(800000, "parsecs")
  11977. },
  11978. {
  11979. name: "Godly",
  11980. height: math.unit(800, "teraparsecs")
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(150, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/ky'owin/front.svg",
  11993. extra: 3862/3053,
  11994. bottom: 74/3936
  11995. }
  11996. },
  11997. },
  11998. [
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(6 + 8 / 12, "feet")
  12002. },
  12003. {
  12004. name: "Large",
  12005. height: math.unit(68, "feet")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(132, "feet")
  12010. },
  12011. {
  12012. name: "Macro+",
  12013. height: math.unit(340, "feet")
  12014. },
  12015. {
  12016. name: "Macro++",
  12017. height: math.unit(680, "feet"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(1, "mile")
  12023. },
  12024. {
  12025. name: "Megamacro+",
  12026. height: math.unit(10, "miles")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12032. {
  12033. front: {
  12034. height: math.unit(4, "feet"),
  12035. weight: math.unit(50, "lb"),
  12036. name: "Front",
  12037. image: {
  12038. source: "./media/characters/mal/front.svg",
  12039. extra: 785 / 724,
  12040. bottom: 0.07
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Micro",
  12047. height: math.unit(4, "inches")
  12048. },
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(4, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(200, "feet")
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(6, "feet"),
  12065. weight: math.unit(150, "lb"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/jordan-deware/front.svg",
  12069. extra: 1191 / 1012
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Nano",
  12076. height: math.unit(0.01, "mm")
  12077. },
  12078. {
  12079. name: "Minimicro",
  12080. height: math.unit(1, "mm")
  12081. },
  12082. {
  12083. name: "Micro",
  12084. height: math.unit(0.5, "inches")
  12085. },
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(4, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Minimacro",
  12093. height: math.unit(40, "meters")
  12094. },
  12095. {
  12096. name: "Small Macro",
  12097. height: math.unit(400, "meters")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(4, "miles")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(40, "miles")
  12106. },
  12107. {
  12108. name: "Megamacro+",
  12109. height: math.unit(400, "miles")
  12110. },
  12111. {
  12112. name: "Gigamacro",
  12113. height: math.unit(400000, "miles")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12119. {
  12120. side: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Side",
  12124. image: {
  12125. source: "./media/characters/kimiko/side.svg",
  12126. extra: 600 / 358
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(15, "feet"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Macro",
  12138. height: math.unit(220, "feet")
  12139. },
  12140. {
  12141. name: "Macro+",
  12142. height: math.unit(1450, "feet")
  12143. },
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(11500, "feet")
  12147. },
  12148. {
  12149. name: "Gigamacro",
  12150. height: math.unit(9500, "miles")
  12151. },
  12152. {
  12153. name: "Teramacro",
  12154. height: math.unit(2208005005, "miles")
  12155. },
  12156. {
  12157. name: "Examacro",
  12158. height: math.unit(2750, "parsecs")
  12159. },
  12160. {
  12161. name: "Zettamacro",
  12162. height: math.unit(101500, "parsecs")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(70, "kg"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/andrew-sleepy/front.svg"
  12175. }
  12176. },
  12177. side: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(70, "kg"),
  12180. name: "Side",
  12181. image: {
  12182. source: "./media/characters/andrew-sleepy/side.svg"
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Micro",
  12189. height: math.unit(1, "mm"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/judio/front.svg",
  12203. extra: 1258 / 1110
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Normal",
  12210. height: math.unit(5 + 6 / 12, "feet")
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(1000, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Megamacro",
  12219. height: math.unit(10, "miles")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12225. {
  12226. frontDressed: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(68, "kg"),
  12229. name: "Front (Dressed)",
  12230. image: {
  12231. source: "./media/characters/nomaxice/front-dressed.svg",
  12232. extra: 1137/824,
  12233. bottom: 74/1211
  12234. }
  12235. },
  12236. frontShorts: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(68, "kg"),
  12239. name: "Front (Shorts)",
  12240. image: {
  12241. source: "./media/characters/nomaxice/front-shorts.svg",
  12242. extra: 1137/824,
  12243. bottom: 74/1211
  12244. }
  12245. },
  12246. back: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(68, "kg"),
  12249. name: "Back",
  12250. image: {
  12251. source: "./media/characters/nomaxice/back.svg",
  12252. extra: 822/786,
  12253. bottom: 39/861
  12254. }
  12255. },
  12256. hand: {
  12257. height: math.unit(0.565, "feet"),
  12258. name: "Hand",
  12259. image: {
  12260. source: "./media/characters/nomaxice/hand.svg"
  12261. }
  12262. },
  12263. foot: {
  12264. height: math.unit(1, "feet"),
  12265. name: "Foot",
  12266. image: {
  12267. source: "./media/characters/nomaxice/foot.svg"
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(8, "cm")
  12275. },
  12276. {
  12277. name: "Norm",
  12278. height: math.unit(1.82, "m")
  12279. },
  12280. {
  12281. name: "Norm+",
  12282. height: math.unit(8.8, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Big",
  12287. height: math.unit(8, "meters")
  12288. },
  12289. {
  12290. name: "Macro",
  12291. height: math.unit(18, "meters")
  12292. },
  12293. {
  12294. name: "Macro+",
  12295. height: math.unit(88, "meters")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(12, "feet"),
  12304. weight: math.unit(1.5, "tons"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/dydros/front.svg",
  12308. extra: 863 / 800,
  12309. bottom: 0.015
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(12, "feet"),
  12314. weight: math.unit(1.5, "tons"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/dydros/back.svg",
  12318. extra: 900 / 843,
  12319. bottom: 0.005
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(12, "feet"),
  12327. default: true
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12333. {
  12334. front: {
  12335. height: math.unit(6, "feet"),
  12336. weight: math.unit(100, "kg"),
  12337. name: "Front",
  12338. image: {
  12339. source: "./media/characters/riggi/front.svg",
  12340. extra: 5787 / 5303
  12341. }
  12342. },
  12343. hyper: {
  12344. height: math.unit(6 * 5 / 3, "feet"),
  12345. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12346. name: "Hyper",
  12347. image: {
  12348. source: "./media/characters/riggi/hyper.svg",
  12349. extra: 3595 / 3485
  12350. }
  12351. },
  12352. },
  12353. [
  12354. {
  12355. name: "Small Macro",
  12356. height: math.unit(50, "feet")
  12357. },
  12358. {
  12359. name: "Default",
  12360. height: math.unit(200, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Loom",
  12365. height: math.unit(10000, "feet")
  12366. },
  12367. {
  12368. name: "Cruising Altitude",
  12369. height: math.unit(30000, "feet")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(100, "miles")
  12374. },
  12375. {
  12376. name: "Continent Sized",
  12377. height: math.unit(2800, "miles")
  12378. },
  12379. {
  12380. name: "Earth Sized",
  12381. height: math.unit(8000, "miles")
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(250, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/alexi/front.svg",
  12394. extra: 3483 / 3291,
  12395. bottom: 0.04
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(250, "lb"),
  12401. name: "Back",
  12402. image: {
  12403. source: "./media/characters/alexi/back.svg",
  12404. extra: 3533 / 3356,
  12405. bottom: 0.021
  12406. }
  12407. },
  12408. frontTransforming: {
  12409. height: math.unit(8.58, "feet"),
  12410. weight: math.unit(1300, "lb"),
  12411. name: "Transforming",
  12412. image: {
  12413. source: "./media/characters/alexi/front-transforming.svg",
  12414. extra: 437 / 409,
  12415. bottom: 19 / 458.66
  12416. }
  12417. },
  12418. frontTransformed: {
  12419. height: math.unit(12.5, "feet"),
  12420. weight: math.unit(4000, "lb"),
  12421. name: "Transformed",
  12422. image: {
  12423. source: "./media/characters/alexi/front-transformed.svg",
  12424. extra: 639 / 614,
  12425. bottom: 30.55 / 671
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(14, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Minimacro",
  12437. height: math.unit(30, "meters")
  12438. },
  12439. {
  12440. name: "Macro",
  12441. height: math.unit(500, "meters")
  12442. },
  12443. {
  12444. name: "Megamacro",
  12445. height: math.unit(9000, "km")
  12446. },
  12447. {
  12448. name: "Teramacro",
  12449. height: math.unit(384000, "km")
  12450. },
  12451. ]
  12452. ))
  12453. characterMakers.push(() => makeCharacter(
  12454. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12455. {
  12456. front: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(150, "lb"),
  12459. name: "Front",
  12460. image: {
  12461. source: "./media/characters/kayroo/front.svg",
  12462. extra: 1153 / 1038,
  12463. bottom: 0.06
  12464. }
  12465. },
  12466. foot: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(150, "lb"),
  12469. name: "Foot",
  12470. image: {
  12471. source: "./media/characters/kayroo/foot.svg"
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(8, "feet"),
  12479. default: true
  12480. },
  12481. {
  12482. name: "Minimacro",
  12483. height: math.unit(250, "feet")
  12484. },
  12485. {
  12486. name: "Macro",
  12487. height: math.unit(2800, "feet")
  12488. },
  12489. {
  12490. name: "Megamacro",
  12491. height: math.unit(5200, "feet")
  12492. },
  12493. {
  12494. name: "Gigamacro",
  12495. height: math.unit(27000, "feet")
  12496. },
  12497. {
  12498. name: "Omega",
  12499. height: math.unit(45000, "feet")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(18, "feet"),
  12508. weight: math.unit(5800, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/rhys/front.svg",
  12512. extra: 3386 / 3090,
  12513. bottom: 0.07
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(18, "feet"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Working Size",
  12525. height: math.unit(200, "feet")
  12526. },
  12527. {
  12528. name: "Demolition Size",
  12529. height: math.unit(2000, "feet")
  12530. },
  12531. {
  12532. name: "Maximum Licensed Size",
  12533. height: math.unit(5, "miles")
  12534. },
  12535. {
  12536. name: "Maximum Observed Size",
  12537. height: math.unit(10, "yottameters")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(250, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/toto/front.svg",
  12550. extra: 527 / 479,
  12551. bottom: 0.05
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(3, "feet")
  12559. },
  12560. {
  12561. name: "Normal",
  12562. height: math.unit(10, "feet")
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(150, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(1200, "feet")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "King", species: ["lion"], tags: ["anthro"] },
  12577. {
  12578. back: {
  12579. height: math.unit(6, "feet"),
  12580. weight: math.unit(150, "lb"),
  12581. name: "Back",
  12582. image: {
  12583. source: "./media/characters/king/back.svg"
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(2, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(8, "feet")
  12595. },
  12596. {
  12597. name: "Macro",
  12598. height: math.unit(200, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Megamacro",
  12603. height: math.unit(50, "miles")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(11, "feet"),
  12612. weight: math.unit(1400, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/cordite/front.svg",
  12616. extra: 1919/1827,
  12617. bottom: 40/1959
  12618. }
  12619. },
  12620. side: {
  12621. height: math.unit(11, "feet"),
  12622. weight: math.unit(1400, "lb"),
  12623. name: "Side",
  12624. image: {
  12625. source: "./media/characters/cordite/side.svg",
  12626. extra: 1908/1793,
  12627. bottom: 38/1946
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(11, "feet"),
  12632. weight: math.unit(1400, "lb"),
  12633. name: "Back",
  12634. image: {
  12635. source: "./media/characters/cordite/back.svg",
  12636. extra: 1938/1837,
  12637. bottom: 10/1948
  12638. }
  12639. },
  12640. feral: {
  12641. height: math.unit(2, "feet"),
  12642. weight: math.unit(90, "lb"),
  12643. name: "Feral",
  12644. image: {
  12645. source: "./media/characters/cordite/feral.svg",
  12646. extra: 1260 / 755,
  12647. bottom: 0.05
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(11, "feet"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/pianostrong/front.svg",
  12668. extra: 6577 / 6254,
  12669. bottom: 0.02
  12670. }
  12671. },
  12672. side: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Side",
  12676. image: {
  12677. source: "./media/characters/pianostrong/side.svg",
  12678. extra: 6106 / 5730
  12679. }
  12680. },
  12681. back: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Back",
  12685. image: {
  12686. source: "./media/characters/pianostrong/back.svg",
  12687. extra: 6085 / 5733,
  12688. bottom: 0.01
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(100, "feet")
  12696. },
  12697. {
  12698. name: "Macro+",
  12699. height: math.unit(300, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Macro++",
  12704. height: math.unit(1000, "feet")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(150, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/kona/front.svg",
  12717. extra: 2960 / 2629,
  12718. bottom: 0.005
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(11 + 8 / 12, "feet")
  12726. },
  12727. {
  12728. name: "Macro",
  12729. height: math.unit(850, "feet"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Macro+",
  12734. height: math.unit(1.5, "km"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(80, "miles")
  12740. },
  12741. {
  12742. name: "Gigamacro",
  12743. height: math.unit(3500, "miles")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12749. {
  12750. side: {
  12751. height: math.unit(1.9, "meters"),
  12752. weight: math.unit(326, "kg"),
  12753. name: "Side",
  12754. image: {
  12755. source: "./media/characters/levi/side.svg",
  12756. extra: 1704 / 1334,
  12757. bottom: 0.02
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(1.9, "meters"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(20, "meters")
  12770. },
  12771. {
  12772. name: "Macro+",
  12773. height: math.unit(200, "meters")
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(2, "km")
  12778. },
  12779. {
  12780. name: "Megamacro+",
  12781. height: math.unit(20, "km")
  12782. },
  12783. {
  12784. name: "Gigamacro",
  12785. height: math.unit(2500, "km")
  12786. },
  12787. {
  12788. name: "Gigamacro+",
  12789. height: math.unit(120000, "km")
  12790. },
  12791. {
  12792. name: "Teramacro",
  12793. height: math.unit(7.77e6, "km")
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(6 + 4/12, "feet"),
  12802. weight: math.unit(190, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/bmc/front.svg",
  12806. extra: 1626/1472,
  12807. bottom: 79/1705
  12808. }
  12809. },
  12810. back: {
  12811. height: math.unit(6 + 4/12, "feet"),
  12812. weight: math.unit(190, "lb"),
  12813. name: "Back",
  12814. image: {
  12815. source: "./media/characters/bmc/back.svg",
  12816. extra: 1640/1479,
  12817. bottom: 45/1685
  12818. }
  12819. },
  12820. frontArmor: {
  12821. height: math.unit(6 + 4/12, "feet"),
  12822. weight: math.unit(190, "lb"),
  12823. name: "Front-armor",
  12824. image: {
  12825. source: "./media/characters/bmc/front-armor.svg",
  12826. extra: 1538/1468,
  12827. bottom: 79/1617
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Human-sized",
  12834. height: math.unit(6 + 4 / 12, "feet")
  12835. },
  12836. {
  12837. name: "Interactive Size",
  12838. height: math.unit(25, "feet")
  12839. },
  12840. {
  12841. name: "Small",
  12842. height: math.unit(250, "feet")
  12843. },
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(1250, "feet"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Good Day",
  12851. height: math.unit(88, "miles")
  12852. },
  12853. {
  12854. name: "Largest Measured Size",
  12855. height: math.unit(105.960, "galaxies")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(20, "feet"),
  12864. weight: math.unit(2016, "kg"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/sven-the-kaiju/front.svg",
  12868. extra: 1277/1250,
  12869. bottom: 35/1312
  12870. }
  12871. },
  12872. mouth: {
  12873. height: math.unit(1.85, "feet"),
  12874. name: "Mouth",
  12875. image: {
  12876. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Fairy",
  12883. height: math.unit(6, "inches")
  12884. },
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(20, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Rampage",
  12892. height: math.unit(200, "feet")
  12893. },
  12894. {
  12895. name: "Archfey Forest Guardian",
  12896. height: math.unit(1, "mile")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(4, "meters"),
  12905. weight: math.unit(2, "tons"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/marik/front.svg",
  12909. extra: 1057 / 1003,
  12910. bottom: 0.08
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(4, "meters"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(20, "meters")
  12923. },
  12924. {
  12925. name: "Megamacro",
  12926. height: math.unit(50, "km")
  12927. },
  12928. {
  12929. name: "Gigamacro",
  12930. height: math.unit(100, "km")
  12931. },
  12932. {
  12933. name: "Alpha Macro",
  12934. height: math.unit(7.88e7, "yottameters")
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(110, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/mel/front.svg",
  12947. extra: 736 / 617,
  12948. bottom: 0.017
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Pico",
  12955. height: math.unit(3, "pm")
  12956. },
  12957. {
  12958. name: "Nano",
  12959. height: math.unit(3, "nm")
  12960. },
  12961. {
  12962. name: "Micro",
  12963. height: math.unit(0.3, "mm"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Micro+",
  12968. height: math.unit(3, "mm")
  12969. },
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(5 + 10.5 / 12, "feet")
  12973. },
  12974. ]
  12975. ))
  12976. characterMakers.push(() => makeCharacter(
  12977. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12978. {
  12979. kaiju: {
  12980. height: math.unit(1.75, "meters"),
  12981. weight: math.unit(55, "kg"),
  12982. name: "Kaiju",
  12983. image: {
  12984. source: "./media/characters/lykonous/kaiju.svg",
  12985. extra: 1055 / 946,
  12986. bottom: 0.135
  12987. }
  12988. },
  12989. },
  12990. [
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(2.5, "meters"),
  12994. default: true
  12995. },
  12996. {
  12997. name: "Kaiju Dragon",
  12998. height: math.unit(60, "meters")
  12999. },
  13000. {
  13001. name: "Mega Kaiju",
  13002. height: math.unit(120, "km")
  13003. },
  13004. {
  13005. name: "Giga Kaiju",
  13006. height: math.unit(200, "megameters")
  13007. },
  13008. {
  13009. name: "Terra Kaiju",
  13010. height: math.unit(400, "gigameters")
  13011. },
  13012. {
  13013. name: "Kaiju Dragon God",
  13014. height: math.unit(13000, "exaparsecs")
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(6, "feet"),
  13023. weight: math.unit(150, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/blü/front.svg",
  13027. extra: 1883 / 1564,
  13028. bottom: 0.031
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(13, "feet"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Big Boi",
  13040. height: math.unit(150, "meters")
  13041. },
  13042. {
  13043. name: "Mini Stomper",
  13044. height: math.unit(300, "meters")
  13045. },
  13046. {
  13047. name: "Macro",
  13048. height: math.unit(1000, "meters")
  13049. },
  13050. {
  13051. name: "Megamacro",
  13052. height: math.unit(11000, "meters")
  13053. },
  13054. {
  13055. name: "Gigamacro",
  13056. height: math.unit(11000, "km")
  13057. },
  13058. {
  13059. name: "Teramacro",
  13060. height: math.unit(420000, "km")
  13061. },
  13062. {
  13063. name: "Examacro",
  13064. height: math.unit(120, "parsecs")
  13065. },
  13066. {
  13067. name: "God Tho",
  13068. height: math.unit(98000000000, "parsecs")
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13074. {
  13075. taurFront: {
  13076. height: math.unit(6, "feet"),
  13077. weight: math.unit(200, "lb"),
  13078. name: "Taur (Front)",
  13079. image: {
  13080. source: "./media/characters/scales/taur-front.svg",
  13081. extra: 1,
  13082. bottom: 0.05
  13083. }
  13084. },
  13085. taurBack: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(200, "lb"),
  13088. name: "Taur (Back)",
  13089. image: {
  13090. source: "./media/characters/scales/taur-back.svg",
  13091. extra: 1,
  13092. bottom: 0.08
  13093. }
  13094. },
  13095. anthro: {
  13096. height: math.unit(6 * 7 / 12, "feet"),
  13097. weight: math.unit(100, "lb"),
  13098. name: "Anthro",
  13099. image: {
  13100. source: "./media/characters/scales/anthro.svg",
  13101. extra: 1,
  13102. bottom: 0.06
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(12, "feet"),
  13110. default: true
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/koragos/front.svg",
  13123. extra: 841 / 794,
  13124. bottom: 0.035
  13125. }
  13126. },
  13127. back: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(150, "lb"),
  13130. name: "Back",
  13131. image: {
  13132. source: "./media/characters/koragos/back.svg",
  13133. extra: 841 / 810,
  13134. bottom: 0.022
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(6 + 11 / 12, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(490, "feet")
  13147. },
  13148. {
  13149. name: "Megamacro",
  13150. height: math.unit(10, "miles")
  13151. },
  13152. {
  13153. name: "Gigamacro",
  13154. height: math.unit(50, "miles")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(250, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/xylrem/front.svg",
  13167. extra: 3323 / 3050,
  13168. bottom: 0.065
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Micro",
  13175. height: math.unit(4, "feet")
  13176. },
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(16, "feet"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Macro",
  13184. height: math.unit(2720, "feet")
  13185. },
  13186. {
  13187. name: "Megamacro",
  13188. height: math.unit(25000, "miles")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(8, "feet"),
  13197. weight: math.unit(250, "kg"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/ikideru/front.svg",
  13201. extra: 930 / 870,
  13202. bottom: 0.087
  13203. }
  13204. },
  13205. back: {
  13206. height: math.unit(8, "feet"),
  13207. weight: math.unit(250, "kg"),
  13208. name: "Back",
  13209. image: {
  13210. source: "./media/characters/ikideru/back.svg",
  13211. extra: 919 / 852,
  13212. bottom: 0.055
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Rare",
  13219. height: math.unit(8, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Playful Loom",
  13224. height: math.unit(80, "feet")
  13225. },
  13226. {
  13227. name: "City Leaner",
  13228. height: math.unit(230, "feet")
  13229. },
  13230. {
  13231. name: "Megamacro",
  13232. height: math.unit(2500, "feet")
  13233. },
  13234. {
  13235. name: "Gigamacro",
  13236. height: math.unit(26400, "feet")
  13237. },
  13238. {
  13239. name: "Tectonic Shifter",
  13240. height: math.unit(1.7, "megameters")
  13241. },
  13242. {
  13243. name: "Planet Carer",
  13244. height: math.unit(21, "megameters")
  13245. },
  13246. {
  13247. name: "God",
  13248. height: math.unit(11157.22, "parsecs")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(120, "lb"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/neo/front.svg"
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Micro",
  13267. height: math.unit(2, "inches"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Human Size",
  13272. height: math.unit(5 + 8 / 12, "feet")
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(13 + 10 / 12, "feet"),
  13281. weight: math.unit(5320, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/chauncey-chantz/front.svg",
  13285. extra: 1587 / 1435,
  13286. bottom: 0.02
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(13 + 10 / 12, "feet"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Macro",
  13298. height: math.unit(45, "feet")
  13299. },
  13300. {
  13301. name: "Megamacro",
  13302. height: math.unit(250, "miles")
  13303. },
  13304. {
  13305. name: "Planetary",
  13306. height: math.unit(10000, "miles")
  13307. },
  13308. {
  13309. name: "Galactic",
  13310. height: math.unit(40000, "parsecs")
  13311. },
  13312. {
  13313. name: "Universal",
  13314. height: math.unit(1, "yottameter")
  13315. },
  13316. ]
  13317. ))
  13318. characterMakers.push(() => makeCharacter(
  13319. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13320. {
  13321. front: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front",
  13325. image: {
  13326. source: "./media/characters/epifox/front.svg",
  13327. extra: 1,
  13328. bottom: 0.075
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Micro",
  13335. height: math.unit(6, "inches")
  13336. },
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(12, "feet"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Macro",
  13344. height: math.unit(3810, "feet")
  13345. },
  13346. {
  13347. name: "Megamacro",
  13348. height: math.unit(500, "miles")
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(1.8796, "m"),
  13357. weight: math.unit(230, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/colin-t/front.svg",
  13361. extra: 1272 / 1193,
  13362. bottom: 0.07
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Micro",
  13369. height: math.unit(0.571, "meters")
  13370. },
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(1.8796, "meters"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Tall",
  13378. height: math.unit(4, "meters")
  13379. },
  13380. {
  13381. name: "Macro",
  13382. height: math.unit(67.241, "meters")
  13383. },
  13384. {
  13385. name: "Megamacro",
  13386. height: math.unit(371.856, "meters")
  13387. },
  13388. {
  13389. name: "Planetary",
  13390. height: math.unit(12631.5689, "km")
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13396. {
  13397. front: {
  13398. height: math.unit(1.85, "meters"),
  13399. weight: math.unit(80, "kg"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/matvei/front.svg",
  13403. extra: 456/447,
  13404. bottom: 8/464
  13405. }
  13406. },
  13407. back: {
  13408. height: math.unit(1.85, "meters"),
  13409. weight: math.unit(80, "kg"),
  13410. name: "Back",
  13411. image: {
  13412. source: "./media/characters/matvei/back.svg",
  13413. extra: 434/427,
  13414. bottom: 11/445
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Normal",
  13421. height: math.unit(1.85, "meters"),
  13422. default: true
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(5 + 9 / 12, "feet"),
  13431. weight: math.unit(70, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/quincy/front.svg",
  13435. extra: 3041 / 2751
  13436. }
  13437. },
  13438. back: {
  13439. height: math.unit(5 + 9 / 12, "feet"),
  13440. weight: math.unit(70, "lb"),
  13441. name: "Back",
  13442. image: {
  13443. source: "./media/characters/quincy/back.svg",
  13444. extra: 3041 / 2751
  13445. }
  13446. },
  13447. flying: {
  13448. height: math.unit(5 + 4 / 12, "feet"),
  13449. weight: math.unit(70, "lb"),
  13450. name: "Flying",
  13451. image: {
  13452. source: "./media/characters/quincy/flying.svg",
  13453. extra: 1044 / 930
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Micro",
  13460. height: math.unit(3, "cm")
  13461. },
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(5 + 9 / 12, "feet")
  13465. },
  13466. {
  13467. name: "Macro",
  13468. height: math.unit(200, "meters"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Megamacro",
  13473. height: math.unit(1000, "meters")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(3 + 11/12, "feet"),
  13482. weight: math.unit(50, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/vanrel/front.svg",
  13486. extra: 1104/949,
  13487. bottom: 52/1156
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(3 + 11/12, "feet"),
  13492. weight: math.unit(50, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/vanrel/back.svg",
  13496. extra: 1119/976,
  13497. bottom: 37/1156
  13498. }
  13499. },
  13500. tome: {
  13501. height: math.unit(1.35, "feet"),
  13502. weight: math.unit(10, "lb"),
  13503. name: "Vanrel's Tome",
  13504. rename: true,
  13505. image: {
  13506. source: "./media/characters/vanrel/tome.svg"
  13507. }
  13508. },
  13509. beans: {
  13510. height: math.unit(0.89, "feet"),
  13511. name: "Beans",
  13512. image: {
  13513. source: "./media/characters/vanrel/beans.svg"
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(3 + 11/12, "feet"),
  13521. default: true
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(7 + 5 / 12, "feet"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/kuiper-vanrel/front.svg",
  13533. extra: 1219/1169,
  13534. bottom: 69/1288
  13535. }
  13536. },
  13537. back: {
  13538. height: math.unit(7 + 5 / 12, "feet"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/kuiper-vanrel/back.svg",
  13542. extra: 1236/1193,
  13543. bottom: 27/1263
  13544. }
  13545. },
  13546. foot: {
  13547. height: math.unit(0.55, "meters"),
  13548. name: "Foot",
  13549. image: {
  13550. source: "./media/characters/kuiper-vanrel/foot.svg",
  13551. }
  13552. },
  13553. battle: {
  13554. height: math.unit(6.824, "feet"),
  13555. name: "Battle",
  13556. image: {
  13557. source: "./media/characters/kuiper-vanrel/battle.svg",
  13558. extra: 1466 / 1327,
  13559. bottom: 29 / 1492.5
  13560. }
  13561. },
  13562. meerkui: {
  13563. height: math.unit(18, "inches"),
  13564. name: "Meerkui",
  13565. image: {
  13566. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13567. extra: 1354/1289,
  13568. bottom: 69/1423
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(7 + 5 / 12, "feet"),
  13576. default: true
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(8 + 5 / 12, "feet"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/keset-vanrel/front.svg",
  13588. extra: 1231/1148,
  13589. bottom: 82/1313
  13590. }
  13591. },
  13592. back: {
  13593. height: math.unit(8 + 5 / 12, "feet"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/keset-vanrel/back.svg",
  13597. extra: 1240/1174,
  13598. bottom: 33/1273
  13599. }
  13600. },
  13601. hand: {
  13602. height: math.unit(0.6, "meters"),
  13603. name: "Hand",
  13604. image: {
  13605. source: "./media/characters/keset-vanrel/hand.svg"
  13606. }
  13607. },
  13608. foot: {
  13609. height: math.unit(0.94978, "meters"),
  13610. name: "Foot",
  13611. image: {
  13612. source: "./media/characters/keset-vanrel/foot.svg"
  13613. }
  13614. },
  13615. battle: {
  13616. height: math.unit(7.408, "feet"),
  13617. name: "Battle",
  13618. image: {
  13619. source: "./media/characters/keset-vanrel/battle.svg",
  13620. extra: 1890 / 1386,
  13621. bottom: 73.28 / 1970
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(8 + 5 / 12, "feet"),
  13629. default: true
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(150, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/neos/front.svg",
  13642. extra: 1696 / 992,
  13643. bottom: 0.14
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Normal",
  13650. height: math.unit(54, "cm"),
  13651. default: true
  13652. },
  13653. {
  13654. name: "Macro",
  13655. height: math.unit(100, "m")
  13656. },
  13657. {
  13658. name: "Megamacro",
  13659. height: math.unit(10, "km")
  13660. },
  13661. {
  13662. name: "Megamacro+",
  13663. height: math.unit(100, "km")
  13664. },
  13665. {
  13666. name: "Gigamacro",
  13667. height: math.unit(100, "Mm")
  13668. },
  13669. {
  13670. name: "Teramacro",
  13671. height: math.unit(100, "Gm")
  13672. },
  13673. {
  13674. name: "Examacro",
  13675. height: math.unit(100, "Em")
  13676. },
  13677. {
  13678. name: "Godly",
  13679. height: math.unit(10000, "Ym")
  13680. },
  13681. {
  13682. name: "Beyond Godly",
  13683. height: math.unit(25, "multiverses")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13689. {
  13690. feminine: {
  13691. height: math.unit(5, "feet"),
  13692. weight: math.unit(100, "lb"),
  13693. name: "Feminine",
  13694. image: {
  13695. source: "./media/characters/sammy-mouse/feminine.svg",
  13696. extra: 2526 / 2425,
  13697. bottom: 0.123
  13698. }
  13699. },
  13700. masculine: {
  13701. height: math.unit(5, "feet"),
  13702. weight: math.unit(100, "lb"),
  13703. name: "Masculine",
  13704. image: {
  13705. source: "./media/characters/sammy-mouse/masculine.svg",
  13706. extra: 2526 / 2425,
  13707. bottom: 0.123
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Micro",
  13714. height: math.unit(5, "inches")
  13715. },
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(5, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(60, "feet")
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(4, "feet"),
  13732. weight: math.unit(50, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/kole/front.svg",
  13736. extra: 1423 / 1303,
  13737. bottom: 0.025
  13738. }
  13739. },
  13740. back: {
  13741. height: math.unit(4, "feet"),
  13742. weight: math.unit(50, "lb"),
  13743. name: "Back",
  13744. image: {
  13745. source: "./media/characters/kole/back.svg",
  13746. extra: 1426 / 1280,
  13747. bottom: 0.02
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(4, "feet"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(2.5, "feet"),
  13764. weight: math.unit(32, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/rufran/front.svg",
  13768. extra: 1313/885,
  13769. bottom: 94/1407
  13770. }
  13771. },
  13772. side: {
  13773. height: math.unit(2.5, "feet"),
  13774. weight: math.unit(32, "lb"),
  13775. name: "Side",
  13776. image: {
  13777. source: "./media/characters/rufran/side.svg",
  13778. extra: 1109/852,
  13779. bottom: 118/1227
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(2.5, "feet"),
  13784. weight: math.unit(32, "lb"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/rufran/back.svg",
  13788. extra: 1280/878,
  13789. bottom: 131/1411
  13790. }
  13791. },
  13792. mouth: {
  13793. height: math.unit(1.13, "feet"),
  13794. name: "Mouth",
  13795. image: {
  13796. source: "./media/characters/rufran/mouth.svg"
  13797. }
  13798. },
  13799. foot: {
  13800. height: math.unit(1.33, "feet"),
  13801. name: "Foot",
  13802. image: {
  13803. source: "./media/characters/rufran/foot.svg"
  13804. }
  13805. },
  13806. koboldFront: {
  13807. height: math.unit(2 + 6 / 12, "feet"),
  13808. weight: math.unit(20, "lb"),
  13809. name: "Front (Kobold)",
  13810. image: {
  13811. source: "./media/characters/rufran/kobold-front.svg",
  13812. extra: 2041 / 1839,
  13813. bottom: 0.055
  13814. }
  13815. },
  13816. koboldBack: {
  13817. height: math.unit(2 + 6 / 12, "feet"),
  13818. weight: math.unit(20, "lb"),
  13819. name: "Back (Kobold)",
  13820. image: {
  13821. source: "./media/characters/rufran/kobold-back.svg",
  13822. extra: 2054 / 1839,
  13823. bottom: 0.01
  13824. }
  13825. },
  13826. koboldHand: {
  13827. height: math.unit(0.2166, "meters"),
  13828. name: "Hand (Kobold)",
  13829. image: {
  13830. source: "./media/characters/rufran/kobold-hand.svg"
  13831. }
  13832. },
  13833. koboldFoot: {
  13834. height: math.unit(0.185, "meters"),
  13835. name: "Foot (Kobold)",
  13836. image: {
  13837. source: "./media/characters/rufran/kobold-foot.svg"
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Micro",
  13844. height: math.unit(1, "inch")
  13845. },
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(2 + 6 / 12, "feet"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Big",
  13853. height: math.unit(60, "feet")
  13854. },
  13855. {
  13856. name: "Macro",
  13857. height: math.unit(325, "feet")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(0.3, "meters"),
  13866. weight: math.unit(3.5, "kg"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/chip/front.svg",
  13870. extra: 748 / 674
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Micro",
  13877. height: math.unit(1, "inch"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13884. {
  13885. side: {
  13886. height: math.unit(2.3, "meters"),
  13887. weight: math.unit(3500, "lb"),
  13888. name: "Side",
  13889. image: {
  13890. source: "./media/characters/torvid/side.svg",
  13891. extra: 1972 / 722,
  13892. bottom: 0.035
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(2.3, "meters"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(2, "meters"),
  13909. weight: math.unit(150.5, "kg"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/susan/front.svg",
  13913. extra: 693 / 635,
  13914. bottom: 0.05
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(505, "miles"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/raindrops/front.svg",
  13935. extra: 2655 / 2461,
  13936. bottom: 49 / 2705
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/raindrops/back.svg",
  13945. extra: 2574 / 2400,
  13946. bottom: 65 / 2634
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Micro",
  13953. height: math.unit(6, "inches")
  13954. },
  13955. {
  13956. name: "Normal",
  13957. height: math.unit(6 + 2 / 12, "feet")
  13958. },
  13959. {
  13960. name: "Macro",
  13961. height: math.unit(131, "feet"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Megamacro",
  13966. height: math.unit(15, "miles")
  13967. },
  13968. {
  13969. name: "Gigamacro",
  13970. height: math.unit(4000, "miles")
  13971. },
  13972. {
  13973. name: "Teramacro",
  13974. height: math.unit(315000, "miles")
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(2.794, "meters"),
  13983. weight: math.unit(325, "kg"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/tezwa/front.svg",
  13987. extra: 2083 / 1906,
  13988. bottom: 0.031
  13989. }
  13990. },
  13991. foot: {
  13992. height: math.unit(0.687, "meters"),
  13993. name: "Foot",
  13994. image: {
  13995. source: "./media/characters/tezwa/foot.svg"
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(9 + 2 / 12, "feet"),
  14003. default: true
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(58, "feet"),
  14012. weight: math.unit(89000, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/typhus/front.svg",
  14016. extra: 816 / 800,
  14017. bottom: 0.065
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Macro",
  14024. height: math.unit(58, "feet"),
  14025. default: true
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(12, "feet"),
  14034. weight: math.unit(6, "tonnes"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/lyra-von-wulf/front.svg",
  14038. extra: 1,
  14039. bottom: 0.10
  14040. }
  14041. },
  14042. frontMecha: {
  14043. height: math.unit(12, "feet"),
  14044. weight: math.unit(12, "tonnes"),
  14045. name: "Front (Mecha)",
  14046. image: {
  14047. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14048. extra: 1,
  14049. bottom: 0.042
  14050. }
  14051. },
  14052. maw: {
  14053. height: math.unit(2.2, "feet"),
  14054. name: "Maw",
  14055. image: {
  14056. source: "./media/characters/lyra-von-wulf/maw.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(12, "feet"),
  14064. default: true
  14065. },
  14066. {
  14067. name: "Classic",
  14068. height: math.unit(50, "feet")
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(500, "feet")
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(1, "mile")
  14077. },
  14078. {
  14079. name: "Gigamacro",
  14080. height: math.unit(400, "miles")
  14081. },
  14082. {
  14083. name: "Teramacro",
  14084. height: math.unit(22000, "miles")
  14085. },
  14086. {
  14087. name: "Solarmacro",
  14088. height: math.unit(8600000, "miles")
  14089. },
  14090. {
  14091. name: "Galactic",
  14092. height: math.unit(1057000, "lightyears")
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(6 + 10 / 12, "feet"),
  14101. weight: math.unit(150, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/dixon/front.svg",
  14105. extra: 3361 / 3209,
  14106. bottom: 0.01
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Normal",
  14113. height: math.unit(6 + 10 / 12, "feet"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Big",
  14118. height: math.unit(12, "meters")
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(500, "meters")
  14123. },
  14124. {
  14125. name: "Megamacro",
  14126. height: math.unit(2, "km")
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(185, "cm"),
  14135. weight: math.unit(68, "kg"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/kauko/front.svg",
  14139. extra: 1455 / 1421,
  14140. bottom: 0.03
  14141. }
  14142. },
  14143. back: {
  14144. height: math.unit(185, "cm"),
  14145. weight: math.unit(68, "kg"),
  14146. name: "Back",
  14147. image: {
  14148. source: "./media/characters/kauko/back.svg",
  14149. extra: 1455 / 1421,
  14150. bottom: 0.004
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(185, "cm"),
  14158. default: true
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14164. {
  14165. frontSfw: {
  14166. height: math.unit(5, "meters"),
  14167. weight: math.unit(4250, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/varg/front-sfw.svg",
  14171. extra: 1103/1010,
  14172. bottom: 50/1153
  14173. },
  14174. form: "anthro",
  14175. default: true
  14176. },
  14177. backSfw: {
  14178. height: math.unit(5, "meters"),
  14179. weight: math.unit(4250, "lb"),
  14180. name: "Back",
  14181. image: {
  14182. source: "./media/characters/varg/back-sfw.svg",
  14183. extra: 1038/1022,
  14184. bottom: 36/1074
  14185. },
  14186. form: "anthro"
  14187. },
  14188. frontNsfw: {
  14189. height: math.unit(5, "meters"),
  14190. weight: math.unit(4250, "lb"),
  14191. name: "Front (NSFW)",
  14192. image: {
  14193. source: "./media/characters/varg/front-nsfw.svg",
  14194. extra: 1103/1010,
  14195. bottom: 50/1153
  14196. },
  14197. form: "anthro"
  14198. },
  14199. sheath: {
  14200. height: math.unit(3.8, "feet"),
  14201. weight: math.unit(90, "kilograms"),
  14202. name: "Sheath",
  14203. image: {
  14204. source: "./media/characters/varg/sheath.svg"
  14205. },
  14206. form: "anthro"
  14207. },
  14208. dick: {
  14209. height: math.unit(4.6, "feet"),
  14210. weight: math.unit(451, "kilograms"),
  14211. name: "Dick",
  14212. image: {
  14213. source: "./media/characters/varg/dick.svg"
  14214. },
  14215. form: "anthro"
  14216. },
  14217. feralSfw: {
  14218. height: math.unit(5, "meters"),
  14219. weight: math.unit(100000, "lb"),
  14220. name: "Side",
  14221. image: {
  14222. source: "./media/characters/varg/feral-sfw.svg",
  14223. extra: 1065/511,
  14224. bottom: 211/1276
  14225. },
  14226. form: "feral",
  14227. default: true
  14228. },
  14229. feralNsfw: {
  14230. height: math.unit(5, "meters"),
  14231. weight: math.unit(100000, "lb"),
  14232. name: "Side (NSFW)",
  14233. image: {
  14234. source: "./media/characters/varg/feral-nsfw.svg",
  14235. extra: 1065/511,
  14236. bottom: 211/1276
  14237. },
  14238. form: "feral",
  14239. },
  14240. feralSheath: {
  14241. height: math.unit(9.8, "feet"),
  14242. weight: math.unit(2000, "kilograms"),
  14243. name: "Sheath",
  14244. image: {
  14245. source: "./media/characters/varg/sheath.svg"
  14246. },
  14247. form: "feral"
  14248. },
  14249. feralDick: {
  14250. height: math.unit(13.11, "feet"),
  14251. weight: math.unit(10440, "kilograms"),
  14252. name: "Dick",
  14253. image: {
  14254. source: "./media/characters/varg/dick.svg"
  14255. },
  14256. form: "feral"
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(5, "meters"),
  14263. form: "anthro"
  14264. },
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(200, "meters"),
  14268. form: "anthro"
  14269. },
  14270. {
  14271. name: "Megamacro",
  14272. height: math.unit(20, "kilometers"),
  14273. form: "anthro"
  14274. },
  14275. {
  14276. name: "True Size",
  14277. height: math.unit(211, "km"),
  14278. form: "anthro",
  14279. default: true
  14280. },
  14281. {
  14282. name: "Gigamacro",
  14283. height: math.unit(1000, "km"),
  14284. form: "anthro"
  14285. },
  14286. {
  14287. name: "Gigamacro+",
  14288. height: math.unit(8000, "km"),
  14289. form: "anthro"
  14290. },
  14291. {
  14292. name: "Teramacro",
  14293. height: math.unit(1000000, "km"),
  14294. form: "anthro"
  14295. },
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(5, "meters"),
  14299. form: "feral"
  14300. },
  14301. {
  14302. name: "Macro",
  14303. height: math.unit(200, "meters"),
  14304. form: "feral"
  14305. },
  14306. {
  14307. name: "Megamacro",
  14308. height: math.unit(20, "kilometers"),
  14309. form: "feral"
  14310. },
  14311. {
  14312. name: "True Size",
  14313. height: math.unit(211, "km"),
  14314. form: "feral",
  14315. default: true
  14316. },
  14317. {
  14318. name: "Gigamacro",
  14319. height: math.unit(1000, "km"),
  14320. form: "feral"
  14321. },
  14322. {
  14323. name: "Gigamacro+",
  14324. height: math.unit(8000, "km"),
  14325. form: "feral"
  14326. },
  14327. {
  14328. name: "Teramacro",
  14329. height: math.unit(1000000, "km"),
  14330. form: "feral"
  14331. },
  14332. ],
  14333. {
  14334. "anthro": {
  14335. name: "Anthro",
  14336. default: true
  14337. },
  14338. "feral": {
  14339. name: "Feral",
  14340. },
  14341. }
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(7 + 7 / 12, "feet"),
  14348. weight: math.unit(267, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/dayza/front.svg",
  14352. extra: 1262 / 1200,
  14353. bottom: 0.035
  14354. }
  14355. },
  14356. side: {
  14357. height: math.unit(7 + 7 / 12, "feet"),
  14358. weight: math.unit(267, "lb"),
  14359. name: "Side",
  14360. image: {
  14361. source: "./media/characters/dayza/side.svg",
  14362. extra: 1295 / 1245,
  14363. bottom: 0.05
  14364. }
  14365. },
  14366. back: {
  14367. height: math.unit(7 + 7 / 12, "feet"),
  14368. weight: math.unit(267, "lb"),
  14369. name: "Back",
  14370. image: {
  14371. source: "./media/characters/dayza/back.svg",
  14372. extra: 1241 / 1170
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(7 + 7 / 12, "feet"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Macro",
  14384. height: math.unit(155, "feet")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(6 + 5 / 12, "feet"),
  14393. weight: math.unit(160, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/xanthos/front.svg",
  14397. extra: 1,
  14398. bottom: 0.04
  14399. }
  14400. },
  14401. back: {
  14402. height: math.unit(6 + 5 / 12, "feet"),
  14403. weight: math.unit(160, "lb"),
  14404. name: "Back",
  14405. image: {
  14406. source: "./media/characters/xanthos/back.svg",
  14407. extra: 1,
  14408. bottom: 0.03
  14409. }
  14410. },
  14411. hand: {
  14412. height: math.unit(0.928, "feet"),
  14413. name: "Hand",
  14414. image: {
  14415. source: "./media/characters/xanthos/hand.svg"
  14416. }
  14417. },
  14418. foot: {
  14419. height: math.unit(1.286, "feet"),
  14420. name: "Foot",
  14421. image: {
  14422. source: "./media/characters/xanthos/foot.svg"
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(6 + 5 / 12, "feet"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Normal+",
  14434. height: math.unit(6, "meters")
  14435. },
  14436. {
  14437. name: "Macro",
  14438. height: math.unit(40, "feet")
  14439. },
  14440. {
  14441. name: "Macro+",
  14442. height: math.unit(200, "meters")
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(20, "km")
  14447. },
  14448. {
  14449. name: "Megamacro+",
  14450. height: math.unit(100, "km")
  14451. },
  14452. {
  14453. name: "Gigamacro",
  14454. height: math.unit(200, "megameters")
  14455. },
  14456. {
  14457. name: "Gigamacro+",
  14458. height: math.unit(1.5, "gigameters")
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(6 + 3 / 12, "feet"),
  14467. weight: math.unit(215, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/grynn/front.svg",
  14471. extra: 4627 / 4209,
  14472. bottom: 0.047
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Micro",
  14479. height: math.unit(6, "inches")
  14480. },
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(6 + 3 / 12, "feet"),
  14484. default: true
  14485. },
  14486. {
  14487. name: "Big",
  14488. height: math.unit(104, "feet")
  14489. },
  14490. {
  14491. name: "Macro",
  14492. height: math.unit(944, "feet")
  14493. },
  14494. {
  14495. name: "Macro+",
  14496. height: math.unit(9480, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro",
  14500. height: math.unit(78752, "feet")
  14501. },
  14502. {
  14503. name: "Megamacro+",
  14504. height: math.unit(630128, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro++",
  14508. height: math.unit(3150695, "feet")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(7 + 5 / 12, "feet"),
  14517. weight: math.unit(450, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/mocha-aura/front.svg",
  14521. extra: 1907 / 1817,
  14522. bottom: 0.04
  14523. }
  14524. },
  14525. back: {
  14526. height: math.unit(7 + 5 / 12, "feet"),
  14527. weight: math.unit(450, "lb"),
  14528. name: "Back",
  14529. image: {
  14530. source: "./media/characters/mocha-aura/back.svg",
  14531. extra: 1900 / 1825,
  14532. bottom: 0.045
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Nano",
  14539. height: math.unit(1, "nm")
  14540. },
  14541. {
  14542. name: "Megamicro",
  14543. height: math.unit(1, "mm")
  14544. },
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(3, "inches")
  14548. },
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(7 + 5 / 12, "feet"),
  14552. default: true
  14553. },
  14554. {
  14555. name: "Macro",
  14556. height: math.unit(30, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(3500, "feet")
  14561. },
  14562. {
  14563. name: "Teramacro",
  14564. height: math.unit(500000, "miles")
  14565. },
  14566. {
  14567. name: "Petamacro",
  14568. height: math.unit(50000000000000000, "parsecs")
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(150, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/ilisha-devya/front.svg",
  14581. extra: 1053/1049,
  14582. bottom: 270/1323
  14583. }
  14584. },
  14585. back: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(150, "lb"),
  14588. name: "Back",
  14589. image: {
  14590. source: "./media/characters/ilisha-devya/back.svg",
  14591. extra: 1131/1128,
  14592. bottom: 39/1170
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Macro",
  14599. height: math.unit(500, "feet"),
  14600. default: true
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(10, "miles")
  14605. },
  14606. {
  14607. name: "Gigamacro",
  14608. height: math.unit(100000, "miles")
  14609. },
  14610. {
  14611. name: "Examacro",
  14612. height: math.unit(1e9, "lightyears")
  14613. },
  14614. {
  14615. name: "Omniversal",
  14616. height: math.unit(1e33, "lightyears")
  14617. },
  14618. {
  14619. name: "Beyond Infinite",
  14620. height: math.unit(1e100, "lightyears")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14626. {
  14627. Side: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Side",
  14631. image: {
  14632. source: "./media/characters/mira/side.svg",
  14633. extra: 900 / 799,
  14634. bottom: 0.02
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Human Size",
  14641. height: math.unit(6, "feet")
  14642. },
  14643. {
  14644. name: "Macro",
  14645. height: math.unit(100, "feet"),
  14646. default: true
  14647. },
  14648. {
  14649. name: "Megamacro",
  14650. height: math.unit(10, "miles")
  14651. },
  14652. {
  14653. name: "Gigamacro",
  14654. height: math.unit(25000, "miles")
  14655. },
  14656. {
  14657. name: "Teramacro",
  14658. height: math.unit(300, "AU")
  14659. },
  14660. {
  14661. name: "Full Size",
  14662. height: math.unit(4.5e10, "lightyears")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/holly/front.svg",
  14675. extra: 639 / 606
  14676. }
  14677. },
  14678. back: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Back",
  14682. image: {
  14683. source: "./media/characters/holly/back.svg",
  14684. extra: 623 / 598
  14685. }
  14686. },
  14687. frontWorking: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front (Working)",
  14691. image: {
  14692. source: "./media/characters/holly/front-working.svg",
  14693. extra: 607 / 577,
  14694. bottom: 0.048
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(12 + 3 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(6, "feet"),
  14711. weight: math.unit(150, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/porter/front.svg",
  14715. extra: 1,
  14716. bottom: 0.01
  14717. }
  14718. },
  14719. frontRobes: {
  14720. height: math.unit(6, "feet"),
  14721. weight: math.unit(150, "lb"),
  14722. name: "Front (Robes)",
  14723. image: {
  14724. source: "./media/characters/porter/front-robes.svg",
  14725. extra: 1.01,
  14726. bottom: 0.01
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(11 + 9 / 12, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14740. {
  14741. legendary: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Legendary",
  14745. image: {
  14746. source: "./media/characters/lucy/legendary.svg",
  14747. extra: 1355 / 1100,
  14748. bottom: 0.045
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Legendary",
  14755. height: math.unit(86882 * 2, "miles"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(6, "feet"),
  14765. weight: math.unit(150, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/drusilla/front.svg",
  14769. extra: 678 / 635,
  14770. bottom: 0.03
  14771. }
  14772. },
  14773. back: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(150, "lb"),
  14776. name: "Back",
  14777. image: {
  14778. source: "./media/characters/drusilla/back.svg",
  14779. extra: 678 / 635,
  14780. bottom: 0.005
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Macro",
  14787. height: math.unit(100, "feet")
  14788. },
  14789. {
  14790. name: "Canon Height",
  14791. height: math.unit(2000, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(180, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/renard-thatch/front.svg",
  14805. extra: 2411 / 2275,
  14806. bottom: 0.01
  14807. }
  14808. },
  14809. frontPosing: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(180, "lb"),
  14812. name: "Front (Posing)",
  14813. image: {
  14814. source: "./media/characters/renard-thatch/front-posing.svg",
  14815. extra: 2381 / 2261,
  14816. bottom: 0.01
  14817. }
  14818. },
  14819. back: {
  14820. height: math.unit(6, "feet"),
  14821. weight: math.unit(180, "lb"),
  14822. name: "Back",
  14823. image: {
  14824. source: "./media/characters/renard-thatch/back.svg",
  14825. extra: 2428 / 2288
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Micro",
  14832. height: math.unit(3, "inches")
  14833. },
  14834. {
  14835. name: "Default",
  14836. height: math.unit(6, "feet"),
  14837. default: true
  14838. },
  14839. {
  14840. name: "Macro",
  14841. height: math.unit(75, "feet")
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14847. {
  14848. front: {
  14849. height: math.unit(1450, "feet"),
  14850. weight: math.unit(1.21e6, "tons"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/sekvra/front.svg",
  14854. extra: 1193/1190,
  14855. bottom: 78/1271
  14856. }
  14857. },
  14858. side: {
  14859. height: math.unit(1450, "feet"),
  14860. weight: math.unit(1.21e6, "tons"),
  14861. name: "Side",
  14862. image: {
  14863. source: "./media/characters/sekvra/side.svg",
  14864. extra: 1193/1190,
  14865. bottom: 52/1245
  14866. }
  14867. },
  14868. back: {
  14869. height: math.unit(1450, "feet"),
  14870. weight: math.unit(1.21e6, "tons"),
  14871. name: "Back",
  14872. image: {
  14873. source: "./media/characters/sekvra/back.svg",
  14874. extra: 1219/1216,
  14875. bottom: 21/1240
  14876. }
  14877. },
  14878. frontClothed: {
  14879. height: math.unit(1450, "feet"),
  14880. weight: math.unit(1.21e6, "tons"),
  14881. name: "Front (Clothed)",
  14882. image: {
  14883. source: "./media/characters/sekvra/front-clothed.svg",
  14884. extra: 1192/1189,
  14885. bottom: 79/1271
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(1450, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Megamacro",
  14897. height: math.unit(15000, "feet")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(6, "feet"),
  14906. weight: math.unit(150, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/carmine/front.svg",
  14910. extra: 1557/1538,
  14911. bottom: 68/1625
  14912. }
  14913. },
  14914. frontArmor: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front (Armor)",
  14918. image: {
  14919. source: "./media/characters/carmine/front-armor.svg",
  14920. extra: 1549/1530,
  14921. bottom: 82/1631
  14922. }
  14923. },
  14924. mouth: {
  14925. height: math.unit(0.55, "feet"),
  14926. name: "Mouth",
  14927. image: {
  14928. source: "./media/characters/carmine/mouth.svg"
  14929. }
  14930. },
  14931. hand: {
  14932. height: math.unit(1.05, "feet"),
  14933. name: "Hand",
  14934. image: {
  14935. source: "./media/characters/carmine/hand.svg"
  14936. }
  14937. },
  14938. foot: {
  14939. height: math.unit(0.6, "feet"),
  14940. name: "Foot",
  14941. image: {
  14942. source: "./media/characters/carmine/foot.svg"
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Large",
  14949. height: math.unit(1, "mile")
  14950. },
  14951. {
  14952. name: "Huge",
  14953. height: math.unit(40, "miles"),
  14954. default: true
  14955. },
  14956. {
  14957. name: "Colossal",
  14958. height: math.unit(2500, "miles")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(150, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/elyssia/front.svg",
  14971. extra: 2201 / 2035,
  14972. bottom: 0.05
  14973. }
  14974. },
  14975. frontClothed: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(150, "lb"),
  14978. name: "Front (Clothed)",
  14979. image: {
  14980. source: "./media/characters/elyssia/front-clothed.svg",
  14981. extra: 2201 / 2035,
  14982. bottom: 0.05
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/elyssia/back.svg",
  14991. extra: 2201 / 2035,
  14992. bottom: 0.013
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Smaller",
  14999. height: math.unit(150, "feet")
  15000. },
  15001. {
  15002. name: "Standard",
  15003. height: math.unit(1400, "feet"),
  15004. default: true
  15005. },
  15006. {
  15007. name: "Distracted",
  15008. height: math.unit(15000, "feet")
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(7 + 4/12, "feet"),
  15017. weight: math.unit(690, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/geno-maxwell/front.svg",
  15021. extra: 984/856,
  15022. bottom: 87/1071
  15023. }
  15024. },
  15025. back: {
  15026. height: math.unit(7 + 4/12, "feet"),
  15027. weight: math.unit(690, "lb"),
  15028. name: "Back",
  15029. image: {
  15030. source: "./media/characters/geno-maxwell/back.svg",
  15031. extra: 981/854,
  15032. bottom: 57/1038
  15033. }
  15034. },
  15035. frontCostume: {
  15036. height: math.unit(7 + 4/12, "feet"),
  15037. weight: math.unit(690, "lb"),
  15038. name: "Front (Costume)",
  15039. image: {
  15040. source: "./media/characters/geno-maxwell/front-costume.svg",
  15041. extra: 984/856,
  15042. bottom: 87/1071
  15043. }
  15044. },
  15045. backcostume: {
  15046. height: math.unit(7 + 4/12, "feet"),
  15047. weight: math.unit(690, "lb"),
  15048. name: "Back (Costume)",
  15049. image: {
  15050. source: "./media/characters/geno-maxwell/back-costume.svg",
  15051. extra: 981/854,
  15052. bottom: 57/1038
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Micro",
  15059. height: math.unit(3, "inches")
  15060. },
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(7 + 4 / 12, "feet"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Macro",
  15068. height: math.unit(220, "feet")
  15069. },
  15070. {
  15071. name: "Megamacro",
  15072. height: math.unit(11, "miles")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(7 + 4/12, "feet"),
  15081. weight: math.unit(750, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/regena-maxwell/front.svg",
  15085. extra: 984/856,
  15086. bottom: 87/1071
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(7 + 4/12, "feet"),
  15091. weight: math.unit(750, "lb"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/regena-maxwell/back.svg",
  15095. extra: 981/854,
  15096. bottom: 57/1038
  15097. }
  15098. },
  15099. frontCostume: {
  15100. height: math.unit(7 + 4/12, "feet"),
  15101. weight: math.unit(750, "lb"),
  15102. name: "Front (Costume)",
  15103. image: {
  15104. source: "./media/characters/regena-maxwell/front-costume.svg",
  15105. extra: 984/856,
  15106. bottom: 87/1071
  15107. }
  15108. },
  15109. backcostume: {
  15110. height: math.unit(7 + 4/12, "feet"),
  15111. weight: math.unit(750, "lb"),
  15112. name: "Back (Costume)",
  15113. image: {
  15114. source: "./media/characters/regena-maxwell/back-costume.svg",
  15115. extra: 981/854,
  15116. bottom: 57/1038
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(7 + 4 / 12, "feet"),
  15124. default: true
  15125. },
  15126. {
  15127. name: "Macro",
  15128. height: math.unit(220, "feet")
  15129. },
  15130. {
  15131. name: "Megamacro",
  15132. height: math.unit(11, "miles")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15145. extra: 860 / 690,
  15146. bottom: 0.03
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(1.7, "meters"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(150, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/quilly/front.svg",
  15167. extra: 890 / 776
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Gigamacro",
  15174. height: math.unit(404090, "miles"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(7 + 8 / 12, "feet"),
  15184. weight: math.unit(350, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/tempest/front.svg",
  15188. extra: 1175 / 1086,
  15189. bottom: 0.02
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(7 + 8 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15203. {
  15204. side: {
  15205. height: math.unit(4 + 5 / 12, "feet"),
  15206. weight: math.unit(80, "lb"),
  15207. name: "Side",
  15208. image: {
  15209. source: "./media/characters/rodger/side.svg",
  15210. extra: 1235 / 1118
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Micro",
  15217. height: math.unit(1, "inch")
  15218. },
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(4 + 5 / 12, "feet"),
  15222. default: true
  15223. },
  15224. {
  15225. name: "Macro",
  15226. height: math.unit(120, "feet")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/danyel/front.svg",
  15239. extra: 1185 / 1123,
  15240. bottom: 0.05
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Shrunken",
  15247. height: math.unit(0.5, "mm")
  15248. },
  15249. {
  15250. name: "Micro",
  15251. height: math.unit(1, "mm"),
  15252. default: true
  15253. },
  15254. {
  15255. name: "Upsized",
  15256. height: math.unit(5 + 5 / 12, "feet")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(5 + 6 / 12, "feet"),
  15265. weight: math.unit(200, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/vivian-bijoux/front.svg",
  15269. extra: 1217/1209,
  15270. bottom: 76/1293
  15271. }
  15272. },
  15273. back: {
  15274. height: math.unit(5 + 6 / 12, "feet"),
  15275. weight: math.unit(200, "lb"),
  15276. name: "Back",
  15277. image: {
  15278. source: "./media/characters/vivian-bijoux/back.svg",
  15279. extra: 1214/1208,
  15280. bottom: 51/1265
  15281. }
  15282. },
  15283. dressed: {
  15284. height: math.unit(5 + 6 / 12, "feet"),
  15285. weight: math.unit(200, "lb"),
  15286. name: "Dressed",
  15287. image: {
  15288. source: "./media/characters/vivian-bijoux/dressed.svg",
  15289. extra: 1217/1209,
  15290. bottom: 76/1293
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(5 + 6 / 12, "feet"),
  15298. default: true
  15299. },
  15300. {
  15301. name: "Bad Dream",
  15302. height: math.unit(500, "feet")
  15303. },
  15304. {
  15305. name: "Nightmare",
  15306. height: math.unit(500, "miles")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(6 + 1 / 12, "feet"),
  15315. weight: math.unit(260, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/zeta/front.svg",
  15319. extra: 1968 / 1889,
  15320. bottom: 0.06
  15321. }
  15322. },
  15323. back: {
  15324. height: math.unit(6 + 1 / 12, "feet"),
  15325. weight: math.unit(260, "lb"),
  15326. name: "Back",
  15327. image: {
  15328. source: "./media/characters/zeta/back.svg",
  15329. extra: 1944 / 1858,
  15330. bottom: 0.03
  15331. }
  15332. },
  15333. hand: {
  15334. height: math.unit(1.112, "feet"),
  15335. name: "Hand",
  15336. image: {
  15337. source: "./media/characters/zeta/hand.svg"
  15338. }
  15339. },
  15340. foot: {
  15341. height: math.unit(1.48, "feet"),
  15342. name: "Foot",
  15343. image: {
  15344. source: "./media/characters/zeta/foot.svg"
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Micro",
  15351. height: math.unit(6, "inches")
  15352. },
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(6 + 1 / 12, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(20, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/jamie-larsen/front.svg",
  15373. extra: 962 / 933,
  15374. bottom: 0.02
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/jamie-larsen/back.svg",
  15383. extra: 997 / 946
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Macro",
  15390. height: math.unit(28 + 7 / 12, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro+",
  15395. height: math.unit(180, "feet")
  15396. },
  15397. {
  15398. name: "Megamacro",
  15399. height: math.unit(10, "miles")
  15400. },
  15401. {
  15402. name: "Gigamacro",
  15403. height: math.unit(200000, "miles")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(120, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/vance/front.svg",
  15416. extra: 1980 / 1890,
  15417. bottom: 0.09
  15418. }
  15419. },
  15420. back: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(120, "lb"),
  15423. name: "Back",
  15424. image: {
  15425. source: "./media/characters/vance/back.svg",
  15426. extra: 2081 / 1994,
  15427. bottom: 0.014
  15428. }
  15429. },
  15430. hand: {
  15431. height: math.unit(0.88, "feet"),
  15432. name: "Hand",
  15433. image: {
  15434. source: "./media/characters/vance/hand.svg"
  15435. }
  15436. },
  15437. foot: {
  15438. height: math.unit(0.64, "feet"),
  15439. name: "Foot",
  15440. image: {
  15441. source: "./media/characters/vance/foot.svg"
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Small",
  15448. height: math.unit(90, "feet"),
  15449. default: true
  15450. },
  15451. {
  15452. name: "Macro",
  15453. height: math.unit(100, "meters")
  15454. },
  15455. {
  15456. name: "Megamacro",
  15457. height: math.unit(15, "miles")
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(6, "feet"),
  15466. weight: math.unit(180, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/xochitl/front.svg",
  15470. extra: 2297 / 2261,
  15471. bottom: 0.065
  15472. }
  15473. },
  15474. back: {
  15475. height: math.unit(6, "feet"),
  15476. weight: math.unit(180, "lb"),
  15477. name: "Back",
  15478. image: {
  15479. source: "./media/characters/xochitl/back.svg",
  15480. extra: 2386 / 2354,
  15481. bottom: 0.01
  15482. }
  15483. },
  15484. foot: {
  15485. height: math.unit(6 / 5 * 1.15, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Foot",
  15488. image: {
  15489. source: "./media/characters/xochitl/foot.svg"
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(80, "feet")
  15497. },
  15498. {
  15499. name: "Macro+",
  15500. height: math.unit(400, "feet"),
  15501. default: true
  15502. },
  15503. {
  15504. name: "Gigamacro",
  15505. height: math.unit(80000, "miles")
  15506. },
  15507. {
  15508. name: "Gigamacro+",
  15509. height: math.unit(400000, "miles")
  15510. },
  15511. {
  15512. name: "Teramacro",
  15513. height: math.unit(300, "AU")
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/vincent/front.svg",
  15526. extra: 1130 / 1080,
  15527. bottom: 0.055
  15528. }
  15529. },
  15530. beak: {
  15531. height: math.unit(6 * 0.1, "feet"),
  15532. name: "Beak",
  15533. image: {
  15534. source: "./media/characters/vincent/beak.svg"
  15535. }
  15536. },
  15537. hand: {
  15538. height: math.unit(6 * 0.85, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Hand",
  15541. image: {
  15542. source: "./media/characters/vincent/hand.svg"
  15543. }
  15544. },
  15545. foot: {
  15546. height: math.unit(6 * 0.19, "feet"),
  15547. weight: math.unit(150, "lb"),
  15548. name: "Foot",
  15549. image: {
  15550. source: "./media/characters/vincent/foot.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Base",
  15557. height: math.unit(6 + 5 / 12, "feet"),
  15558. default: true
  15559. },
  15560. {
  15561. name: "Macro",
  15562. height: math.unit(300, "feet")
  15563. },
  15564. {
  15565. name: "Megamacro",
  15566. height: math.unit(2, "miles")
  15567. },
  15568. {
  15569. name: "Gigamacro",
  15570. height: math.unit(1000, "miles")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(2, "meters"),
  15579. weight: math.unit(500, "kg"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/coatl/front.svg",
  15583. extra: 3948 / 3500,
  15584. bottom: 0.082
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(4, "meters")
  15592. },
  15593. {
  15594. name: "Macro",
  15595. height: math.unit(100, "meters"),
  15596. default: true
  15597. },
  15598. {
  15599. name: "Macro+",
  15600. height: math.unit(300, "meters")
  15601. },
  15602. {
  15603. name: "Megamacro",
  15604. height: math.unit(3, "gigameters")
  15605. },
  15606. {
  15607. name: "Megamacro+",
  15608. height: math.unit(300, "terameters")
  15609. },
  15610. {
  15611. name: "Megamacro++",
  15612. height: math.unit(3, "lightyears")
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(50, "kg"),
  15622. name: "front",
  15623. image: {
  15624. source: "./media/characters/shiroryu/front.svg",
  15625. extra: 1990 / 1935
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Mortal Mingling",
  15632. height: math.unit(3, "meters")
  15633. },
  15634. {
  15635. name: "Kaiju-ish",
  15636. height: math.unit(250, "meters")
  15637. },
  15638. {
  15639. name: "Somewhat Godly",
  15640. height: math.unit(400, "km"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Planetary",
  15645. height: math.unit(300, "megameters")
  15646. },
  15647. {
  15648. name: "Galaxy-dwarfing",
  15649. height: math.unit(450, "kiloparsecs")
  15650. },
  15651. {
  15652. name: "Universe Eater",
  15653. height: math.unit(150, "gigaparsecs")
  15654. },
  15655. {
  15656. name: "Almost Immeasurable",
  15657. height: math.unit(1.3e266, "yottaparsecs")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/umeko/front.svg",
  15670. extra: 1,
  15671. bottom: 0.019
  15672. }
  15673. },
  15674. frontArmored: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Front (Armored)",
  15678. image: {
  15679. source: "./media/characters/umeko/front-armored.svg",
  15680. extra: 1,
  15681. bottom: 0.021
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Macro",
  15688. height: math.unit(220, "feet"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Guardian Dragon",
  15693. height: math.unit(50, "miles")
  15694. },
  15695. {
  15696. name: "Cosmic",
  15697. height: math.unit(800000, "miles")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/cassidy/front.svg",
  15710. extra: 810/808,
  15711. bottom: 41/851
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Canon Height",
  15718. height: math.unit(120, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro+",
  15723. height: math.unit(400, "feet")
  15724. },
  15725. {
  15726. name: "Macro++",
  15727. height: math.unit(4000, "feet")
  15728. },
  15729. {
  15730. name: "Megamacro",
  15731. height: math.unit(3, "miles")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(6, "feet"),
  15740. weight: math.unit(150, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/isaac/front.svg",
  15744. extra: 896 / 815,
  15745. bottom: 0.11
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Human Size",
  15752. height: math.unit(8, "feet"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(400, "feet")
  15758. },
  15759. {
  15760. name: "Megamacro",
  15761. height: math.unit(50, "miles")
  15762. },
  15763. {
  15764. name: "Canon Height",
  15765. height: math.unit(200, "AU")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(72, "kg"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/sleekit/front.svg",
  15778. extra: 4693 / 4487,
  15779. bottom: 0.012
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Minimum Height",
  15786. height: math.unit(10, "meters")
  15787. },
  15788. {
  15789. name: "Smaller",
  15790. height: math.unit(25, "meters")
  15791. },
  15792. {
  15793. name: "Larger",
  15794. height: math.unit(38, "meters"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Maximum height",
  15799. height: math.unit(100, "meters")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/nillia/front.svg",
  15812. extra: 719/665,
  15813. bottom: 6/725
  15814. }
  15815. },
  15816. back: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(150, "lb"),
  15819. name: "Back",
  15820. image: {
  15821. source: "./media/characters/nillia/back.svg",
  15822. extra: 705/651,
  15823. bottom: 5/710
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Canon Height",
  15830. height: math.unit(489, "feet"),
  15831. default: true
  15832. }
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/mesmyriza/front.svg",
  15844. extra: 1541/1291,
  15845. bottom: 87/1628
  15846. }
  15847. },
  15848. foot: {
  15849. height: math.unit(6 / (250 / 35), "feet"),
  15850. name: "Foot",
  15851. image: {
  15852. source: "./media/characters/mesmyriza/foot.svg"
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(457, "meters"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Megamacro",
  15864. height: math.unit(8, "megameters")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15870. {
  15871. front: {
  15872. height: math.unit(6, "feet"),
  15873. weight: math.unit(250, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/saudade/front.svg",
  15877. extra: 1172 / 1139,
  15878. bottom: 0.035
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Micro",
  15885. height: math.unit(3, "inches")
  15886. },
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(6, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(50, "feet")
  15895. },
  15896. {
  15897. name: "Megamacro",
  15898. height: math.unit(2800, "feet")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(5 + 4 / 12, "feet"),
  15907. weight: math.unit(100, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/keireer/front.svg",
  15911. extra: 716 / 666,
  15912. bottom: 0.05
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(5 + 4 / 12, "feet"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(5.5, "feet"),
  15929. weight: math.unit(90, "kg"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/mirja/front.svg",
  15933. extra: 1452/1262,
  15934. bottom: 67/1519
  15935. }
  15936. },
  15937. frontDressed: {
  15938. height: math.unit(5.5, "feet"),
  15939. weight: math.unit(90, "lb"),
  15940. name: "Front (Dressed)",
  15941. image: {
  15942. source: "./media/characters/mirja/dressed.svg",
  15943. extra: 1452/1262,
  15944. bottom: 67/1519
  15945. }
  15946. },
  15947. back: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(90, "lb"),
  15950. name: "Back",
  15951. image: {
  15952. source: "./media/characters/mirja/back.svg",
  15953. extra: 1892/1795,
  15954. bottom: 48/1940
  15955. }
  15956. },
  15957. maw: {
  15958. height: math.unit(1.312, "feet"),
  15959. name: "Maw",
  15960. image: {
  15961. source: "./media/characters/mirja/maw.svg"
  15962. }
  15963. },
  15964. paw: {
  15965. height: math.unit(1.15, "feet"),
  15966. name: "Paw",
  15967. image: {
  15968. source: "./media/characters/mirja/paw.svg"
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "\"Incognito\"",
  15975. height: math.unit(3, "meters")
  15976. },
  15977. {
  15978. name: "Strolling Size",
  15979. height: math.unit(15, "km")
  15980. },
  15981. {
  15982. name: "Larger Strolling Size",
  15983. height: math.unit(400, "km")
  15984. },
  15985. {
  15986. name: "Preferred Size",
  15987. height: math.unit(5000, "km"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "True Size",
  15992. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(15, "feet"),
  16001. weight: math.unit(880, "kg"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/nightraver/front.svg",
  16005. extra: 2444 / 2160,
  16006. bottom: 0.027
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(15, "feet"),
  16011. weight: math.unit(880, "kg"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/nightraver/back.svg",
  16015. extra: 2309 / 2180,
  16016. bottom: 0.005
  16017. }
  16018. },
  16019. sole: {
  16020. height: math.unit(2.878, "feet"),
  16021. name: "Sole",
  16022. image: {
  16023. source: "./media/characters/nightraver/sole.svg"
  16024. }
  16025. },
  16026. foot: {
  16027. height: math.unit(2.285, "feet"),
  16028. name: "Foot",
  16029. image: {
  16030. source: "./media/characters/nightraver/foot.svg"
  16031. }
  16032. },
  16033. maw: {
  16034. height: math.unit(2.67, "feet"),
  16035. name: "Maw",
  16036. image: {
  16037. source: "./media/characters/nightraver/maw.svg"
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Micro",
  16044. height: math.unit(1, "cm")
  16045. },
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(15, "feet"),
  16049. default: true
  16050. },
  16051. {
  16052. name: "Macro",
  16053. height: math.unit(300, "feet")
  16054. },
  16055. {
  16056. name: "Megamacro",
  16057. height: math.unit(300, "miles")
  16058. },
  16059. {
  16060. name: "Gigamacro",
  16061. height: math.unit(10000, "miles")
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16067. {
  16068. side: {
  16069. height: math.unit(2, "inches"),
  16070. weight: math.unit(5, "grams"),
  16071. name: "Side",
  16072. image: {
  16073. source: "./media/characters/arc/side.svg"
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Micro",
  16080. height: math.unit(2, "inches"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(1.1938, "meters"),
  16090. weight: math.unit(54, "kg"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/nebula-shahar/front.svg",
  16094. extra: 1642 / 1436,
  16095. bottom: 0.06
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Megamicro",
  16102. height: math.unit(0.3, "mm")
  16103. },
  16104. {
  16105. name: "Micro",
  16106. height: math.unit(3, "cm")
  16107. },
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(138, "cm"),
  16111. default: true
  16112. },
  16113. {
  16114. name: "Macro",
  16115. height: math.unit(30, "m")
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(5.24, "feet"),
  16124. weight: math.unit(150, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/shayla/front.svg",
  16128. extra: 1512 / 1414,
  16129. bottom: 0.01
  16130. }
  16131. },
  16132. back: {
  16133. height: math.unit(5.24, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Back",
  16136. image: {
  16137. source: "./media/characters/shayla/back.svg",
  16138. extra: 1512 / 1414
  16139. }
  16140. },
  16141. hand: {
  16142. height: math.unit(0.7781496062992126, "feet"),
  16143. name: "Hand",
  16144. image: {
  16145. source: "./media/characters/shayla/hand.svg"
  16146. }
  16147. },
  16148. foot: {
  16149. height: math.unit(1.4206036745406823, "feet"),
  16150. name: "Foot",
  16151. image: {
  16152. source: "./media/characters/shayla/foot.svg"
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Micro",
  16159. height: math.unit(0.32, "feet")
  16160. },
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(5.24, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Macro",
  16168. height: math.unit(492.12, "feet")
  16169. },
  16170. {
  16171. name: "Megamacro",
  16172. height: math.unit(186.41, "miles")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(2.2, "m"),
  16181. weight: math.unit(120, "kg"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/pia-jr/front.svg",
  16185. extra: 1000 / 970,
  16186. bottom: 0.035
  16187. }
  16188. },
  16189. hand: {
  16190. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16191. name: "Hand",
  16192. image: {
  16193. source: "./media/characters/pia-jr/hand.svg"
  16194. }
  16195. },
  16196. paw: {
  16197. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16198. name: "Paw",
  16199. image: {
  16200. source: "./media/characters/pia-jr/paw.svg"
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(1.2, "cm")
  16208. },
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(2.2, "m"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(180, "m")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(420, "km")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(2, "m"),
  16229. weight: math.unit(115, "kg"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/pia-sr/front.svg",
  16233. extra: 760 / 730,
  16234. bottom: 0.015
  16235. }
  16236. },
  16237. back: {
  16238. height: math.unit(2, "m"),
  16239. weight: math.unit(115, "kg"),
  16240. name: "Back",
  16241. image: {
  16242. source: "./media/characters/pia-sr/back.svg",
  16243. extra: 760 / 730,
  16244. bottom: 0.01
  16245. }
  16246. },
  16247. hand: {
  16248. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16249. name: "Hand",
  16250. image: {
  16251. source: "./media/characters/pia-sr/hand.svg"
  16252. }
  16253. },
  16254. foot: {
  16255. height: math.unit(1.83, "feet"),
  16256. name: "Foot",
  16257. image: {
  16258. source: "./media/characters/pia-sr/foot.svg"
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(88, "mm")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(2, "m"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(200, "m")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(420, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(8 + 2 / 12, "feet"),
  16287. weight: math.unit(300, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/kibibyte/front.svg",
  16291. extra: 2221 / 2098,
  16292. bottom: 0.04
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(8 + 2 / 12, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Socialable Macro",
  16304. height: math.unit(50, "feet")
  16305. },
  16306. {
  16307. name: "Macro",
  16308. height: math.unit(300, "feet")
  16309. },
  16310. {
  16311. name: "Megamacro",
  16312. height: math.unit(500, "miles")
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/felix/front.svg",
  16325. extra: 762 / 722,
  16326. bottom: 0.02
  16327. }
  16328. },
  16329. frontClothed: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(150, "lb"),
  16332. name: "Front (Clothed)",
  16333. image: {
  16334. source: "./media/characters/felix/front-clothed.svg",
  16335. extra: 762 / 722,
  16336. bottom: 0.02
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(6 + 8 / 12, "feet"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Macro",
  16348. height: math.unit(2600, "feet")
  16349. },
  16350. {
  16351. name: "Megamacro",
  16352. height: math.unit(450, "miles")
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(6 + 1 / 12, "feet"),
  16361. weight: math.unit(250, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/tobo/front.svg",
  16365. extra: 608 / 586,
  16366. bottom: 0.023
  16367. }
  16368. },
  16369. back: {
  16370. height: math.unit(6 + 1 / 12, "feet"),
  16371. weight: math.unit(250, "lb"),
  16372. name: "Back",
  16373. image: {
  16374. source: "./media/characters/tobo/back.svg",
  16375. extra: 608 / 586
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Nano",
  16382. height: math.unit(2, "nm")
  16383. },
  16384. {
  16385. name: "Megamicro",
  16386. height: math.unit(0.1, "mm")
  16387. },
  16388. {
  16389. name: "Micro",
  16390. height: math.unit(1, "inch"),
  16391. default: true
  16392. },
  16393. {
  16394. name: "Human-sized",
  16395. height: math.unit(6 + 1 / 12, "feet")
  16396. },
  16397. {
  16398. name: "Macro",
  16399. height: math.unit(250, "feet")
  16400. },
  16401. {
  16402. name: "Megamacro",
  16403. height: math.unit(75, "miles")
  16404. },
  16405. {
  16406. name: "Texas-sized",
  16407. height: math.unit(750, "miles")
  16408. },
  16409. {
  16410. name: "Teramacro",
  16411. height: math.unit(50000, "miles")
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(269, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/danny-kapowsky/front.svg",
  16424. extra: 766 / 736,
  16425. bottom: 0.044
  16426. }
  16427. },
  16428. back: {
  16429. height: math.unit(6, "feet"),
  16430. weight: math.unit(269, "lb"),
  16431. name: "Back",
  16432. image: {
  16433. source: "./media/characters/danny-kapowsky/back.svg",
  16434. extra: 797 / 760,
  16435. bottom: 0.025
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(150, "feet"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "Macro+",
  16447. height: math.unit(200, "feet")
  16448. },
  16449. {
  16450. name: "Macro++",
  16451. height: math.unit(300, "feet")
  16452. },
  16453. {
  16454. name: "Macro+++",
  16455. height: math.unit(400, "feet")
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16461. {
  16462. side: {
  16463. height: math.unit(6, "feet"),
  16464. weight: math.unit(170, "lb"),
  16465. name: "Side",
  16466. image: {
  16467. source: "./media/characters/finn/side.svg",
  16468. extra: 1953 / 1807,
  16469. bottom: 0.057
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Megamacro",
  16476. height: math.unit(14445, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 6 / 12, "feet"),
  16486. weight: math.unit(125, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/roy/front.svg",
  16490. extra: 1,
  16491. bottom: 0.11
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Micro",
  16498. height: math.unit(3, "inches"),
  16499. default: true
  16500. },
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(5 + 6 / 12, "feet")
  16504. },
  16505. {
  16506. name: "Lesser Macro",
  16507. height: math.unit(60, "feet")
  16508. },
  16509. {
  16510. name: "Greater Macro",
  16511. height: math.unit(120, "feet")
  16512. },
  16513. ]
  16514. ))
  16515. characterMakers.push(() => makeCharacter(
  16516. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16517. {
  16518. front: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(100, "lb"),
  16521. name: "Front",
  16522. image: {
  16523. source: "./media/characters/aevsivs/front.svg",
  16524. extra: 1,
  16525. bottom: 0.03
  16526. }
  16527. },
  16528. back: {
  16529. height: math.unit(6, "feet"),
  16530. weight: math.unit(100, "lb"),
  16531. name: "Back",
  16532. image: {
  16533. source: "./media/characters/aevsivs/back.svg"
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Micro",
  16540. height: math.unit(2, "inches"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(5, "feet")
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(5 + 7 / 12, "feet"),
  16554. weight: math.unit(159, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/hildegard/front.svg",
  16558. extra: 289 / 269,
  16559. bottom: 7.63 / 297.8
  16560. }
  16561. },
  16562. back: {
  16563. height: math.unit(5 + 7 / 12, "feet"),
  16564. weight: math.unit(159, "lb"),
  16565. name: "Back",
  16566. image: {
  16567. source: "./media/characters/hildegard/back.svg",
  16568. extra: 280 / 260,
  16569. bottom: 2.3 / 282
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(5 + 7 / 12, "feet"),
  16577. default: true
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16583. {
  16584. bernard: {
  16585. height: math.unit(2 + 7 / 12, "feet"),
  16586. weight: math.unit(66, "lb"),
  16587. name: "Bernard",
  16588. rename: true,
  16589. image: {
  16590. source: "./media/characters/bernard-wilder/bernard.svg",
  16591. extra: 192 / 128,
  16592. bottom: 0.05
  16593. }
  16594. },
  16595. wilder: {
  16596. height: math.unit(5 + 8 / 12, "feet"),
  16597. weight: math.unit(143, "lb"),
  16598. name: "Wilder",
  16599. rename: true,
  16600. image: {
  16601. source: "./media/characters/bernard-wilder/wilder.svg",
  16602. extra: 361 / 312,
  16603. bottom: 0.02
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(2 + 7 / 12, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16617. {
  16618. anthro: {
  16619. height: math.unit(6 + 1 / 12, "feet"),
  16620. weight: math.unit(155, "lb"),
  16621. name: "Anthro",
  16622. image: {
  16623. source: "./media/characters/hearth/anthro.svg",
  16624. extra: 1178/1136,
  16625. bottom: 28/1206
  16626. }
  16627. },
  16628. feral: {
  16629. height: math.unit(3.78, "feet"),
  16630. weight: math.unit(35, "kg"),
  16631. name: "Feral",
  16632. image: {
  16633. source: "./media/characters/hearth/feral.svg",
  16634. extra: 153 / 135,
  16635. bottom: 0.03
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(6 + 1 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(6, "feet"),
  16652. weight: math.unit(182, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/ingrid/front.svg",
  16656. extra: 294 / 268,
  16657. bottom: 0.027
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(6, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16671. {
  16672. eevee: {
  16673. height: math.unit(2 + 10 / 12, "feet"),
  16674. weight: math.unit(86, "lb"),
  16675. name: "Malgam",
  16676. image: {
  16677. source: "./media/characters/malgam/eevee.svg",
  16678. extra: 952/784,
  16679. bottom: 38/990
  16680. }
  16681. },
  16682. sylveon: {
  16683. height: math.unit(4, "feet"),
  16684. weight: math.unit(101, "lb"),
  16685. name: "Future Malgam",
  16686. rename: true,
  16687. image: {
  16688. source: "./media/characters/malgam/sylveon.svg",
  16689. extra: 371 / 325,
  16690. bottom: 0.015
  16691. }
  16692. },
  16693. gigantamax: {
  16694. height: math.unit(50, "feet"),
  16695. name: "Gigantamax Malgam",
  16696. rename: true,
  16697. image: {
  16698. source: "./media/characters/malgam/gigantamax.svg"
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(2 + 10 / 12, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(5 + 11 / 12, "feet"),
  16715. weight: math.unit(188, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/fleur/front.svg",
  16719. extra: 309 / 283,
  16720. bottom: 0.007
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(5 + 11 / 12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(5 + 4 / 12, "feet"),
  16737. weight: math.unit(122, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/jude/front.svg",
  16741. extra: 288 / 273,
  16742. bottom: 0.03
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(5 + 4 / 12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(5 + 11 / 12, "feet"),
  16759. weight: math.unit(190, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/seara/front.svg",
  16763. extra: 1,
  16764. bottom: 0.05
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(5 + 11 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(16 + 5 / 12, "feet"),
  16781. weight: math.unit(524, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/caspian-lugia/front.svg",
  16785. extra: 1,
  16786. bottom: 0.04
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(16 + 5 / 12, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(5 + 7 / 12, "feet"),
  16803. weight: math.unit(170, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/mika/front.svg",
  16807. extra: 1,
  16808. bottom: 0.016
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(5 + 7 / 12, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16822. {
  16823. front: {
  16824. height: math.unit(6 + 2 / 12, "feet"),
  16825. weight: math.unit(268, "lb"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/sol/front.svg",
  16829. extra: 247 / 231,
  16830. bottom: 0.05
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(6 + 2 / 12, "feet"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16844. {
  16845. buizel: {
  16846. height: math.unit(2 + 5 / 12, "feet"),
  16847. weight: math.unit(87, "lb"),
  16848. name: "Front",
  16849. image: {
  16850. source: "./media/characters/umiko/buizel.svg",
  16851. extra: 172 / 157,
  16852. bottom: 0.01
  16853. },
  16854. form: "buizel",
  16855. default: true
  16856. },
  16857. floatzel: {
  16858. height: math.unit(5 + 9 / 12, "feet"),
  16859. weight: math.unit(250, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/umiko/floatzel.svg",
  16863. extra: 1076/1006,
  16864. bottom: 15/1091
  16865. },
  16866. form: "floatzel",
  16867. default: true
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(2 + 5 / 12, "feet"),
  16874. form: "buizel",
  16875. default: true
  16876. },
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(5 + 9 / 12, "feet"),
  16880. form: "floatzel",
  16881. default: true
  16882. },
  16883. ],
  16884. {
  16885. "buizel": {
  16886. name: "Buizel"
  16887. },
  16888. "floatzel": {
  16889. name: "Floatzel",
  16890. default: true
  16891. }
  16892. }
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16896. {
  16897. front: {
  16898. height: math.unit(6 + 2 / 12, "feet"),
  16899. weight: math.unit(146, "lb"),
  16900. name: "Front",
  16901. image: {
  16902. source: "./media/characters/iliac/front.svg",
  16903. extra: 389 / 365,
  16904. bottom: 0.035
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(6 + 2 / 12, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6, "feet"),
  16921. weight: math.unit(170, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/topaz/front.svg",
  16925. extra: 317 / 303,
  16926. bottom: 0.055
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(6, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(5 + 11 / 12, "feet"),
  16943. weight: math.unit(144, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/gabriel/front.svg",
  16947. extra: 285 / 262,
  16948. bottom: 0.004
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(5 + 11 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16962. {
  16963. side: {
  16964. height: math.unit(6 + 5 / 12, "feet"),
  16965. weight: math.unit(300, "lb"),
  16966. name: "Side",
  16967. image: {
  16968. source: "./media/characters/tempest-suicune/side.svg",
  16969. extra: 195 / 154,
  16970. bottom: 0.04
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(6 + 5 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16984. {
  16985. front: {
  16986. height: math.unit(7 + 2 / 12, "feet"),
  16987. weight: math.unit(322, "lb"),
  16988. name: "Front",
  16989. image: {
  16990. source: "./media/characters/vulcan/front.svg",
  16991. extra: 154 / 147,
  16992. bottom: 0.04
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(7 + 2 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(5 + 10 / 12, "feet"),
  17009. weight: math.unit(264, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/gault/front.svg",
  17013. extra: 161 / 140,
  17014. bottom: 0.028
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(5 + 10 / 12, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/shard/front.svg",
  17035. extra: 273 / 238,
  17036. bottom: 0.02
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(3 + 6 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(5 + 11 / 12, "feet"),
  17053. weight: math.unit(146, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/ashe/front.svg",
  17057. extra: 400 / 373,
  17058. bottom: 0.01
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(5 + 11 / 12, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(5 + 5 / 12, "feet"),
  17075. weight: math.unit(135, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/beatrix/front.svg",
  17079. extra: 392 / 379,
  17080. bottom: 0.01
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(6, "feet"),
  17088. default: true
  17089. },
  17090. ]
  17091. ))
  17092. characterMakers.push(() => makeCharacter(
  17093. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17094. {
  17095. front: {
  17096. height: math.unit(6 + 2/12, "feet"),
  17097. weight: math.unit(135, "lb"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/ignatius/front.svg",
  17101. extra: 1380/1259,
  17102. bottom: 27/1407
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(6 + 2/12, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6 + 2 / 12, "feet"),
  17119. weight: math.unit(138, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/mei-li/front.svg",
  17123. extra: 237 / 229,
  17124. bottom: 0.03
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(6 + 2 / 12, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(2 + 4 / 12, "feet"),
  17141. weight: math.unit(62, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/puru/front.svg",
  17145. extra: 206 / 149,
  17146. bottom: 0.06
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(2 + 4 / 12, "feet"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17160. {
  17161. anthro: {
  17162. height: math.unit(5 + 8/12, "feet"),
  17163. weight: math.unit(200, "lb"),
  17164. energyNeed: math.unit(2000, "kcal"),
  17165. name: "Anthro",
  17166. image: {
  17167. source: "./media/characters/kee/anthro.svg",
  17168. extra: 3251/3184,
  17169. bottom: 250/3501
  17170. }
  17171. },
  17172. taur: {
  17173. height: math.unit(11, "feet"),
  17174. weight: math.unit(500, "lb"),
  17175. energyNeed: math.unit(5000, "kcal"),
  17176. name: "Taur",
  17177. image: {
  17178. source: "./media/characters/kee/taur.svg",
  17179. extra: 1362/1320,
  17180. bottom: 83/1445
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 8/12, "feet"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(35, "feet")
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17198. {
  17199. anthro: {
  17200. height: math.unit(7, "feet"),
  17201. weight: math.unit(190, "lb"),
  17202. name: "Anthro",
  17203. image: {
  17204. source: "./media/characters/cobalt-dracha/anthro.svg",
  17205. extra: 231 / 225,
  17206. bottom: 0.04
  17207. }
  17208. },
  17209. feral: {
  17210. height: math.unit(9 + 7 / 12, "feet"),
  17211. weight: math.unit(294, "lb"),
  17212. name: "Feral",
  17213. image: {
  17214. source: "./media/characters/cobalt-dracha/feral.svg",
  17215. extra: 692 / 633,
  17216. bottom: 0.05
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(7, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17230. {
  17231. fallen: {
  17232. height: math.unit(11 + 8 / 12, "feet"),
  17233. weight: math.unit(485, "lb"),
  17234. name: "Java (Fallen)",
  17235. rename: true,
  17236. image: {
  17237. source: "./media/characters/java/fallen.svg",
  17238. extra: 226 / 208,
  17239. bottom: 0.005
  17240. }
  17241. },
  17242. godkin: {
  17243. height: math.unit(10 + 6 / 12, "feet"),
  17244. weight: math.unit(328, "lb"),
  17245. name: "Java (Godkin)",
  17246. rename: true,
  17247. image: {
  17248. source: "./media/characters/java/godkin.svg",
  17249. extra: 1104/1068,
  17250. bottom: 36/1140
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(11 + 8 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(5 + 9 / 12, "feet"),
  17267. weight: math.unit(170, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/purna/front.svg",
  17271. extra: 239 / 229,
  17272. bottom: 0.01
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(5 + 9 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(5 + 9 / 12, "feet"),
  17289. weight: math.unit(142, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/kuva/front.svg",
  17293. extra: 281 / 271,
  17294. bottom: 0.006
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(5 + 9 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17308. {
  17309. anthro: {
  17310. height: math.unit(9 + 2 / 12, "feet"),
  17311. weight: math.unit(270, "lb"),
  17312. name: "Anthro",
  17313. image: {
  17314. source: "./media/characters/embra/anthro.svg",
  17315. extra: 200 / 187,
  17316. bottom: 0.02
  17317. }
  17318. },
  17319. feral: {
  17320. height: math.unit(18 + 8 / 12, "feet"),
  17321. weight: math.unit(576, "lb"),
  17322. name: "Feral",
  17323. image: {
  17324. source: "./media/characters/embra/feral.svg",
  17325. extra: 152 / 137,
  17326. bottom: 0.037
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(9 + 2 / 12, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17340. {
  17341. anthro: {
  17342. height: math.unit(10 + 9 / 12, "feet"),
  17343. weight: math.unit(224, "lb"),
  17344. name: "Anthro",
  17345. image: {
  17346. source: "./media/characters/grottos/anthro.svg",
  17347. extra: 350 / 332,
  17348. bottom: 0.045
  17349. }
  17350. },
  17351. feral: {
  17352. height: math.unit(20 + 7 / 12, "feet"),
  17353. weight: math.unit(629, "lb"),
  17354. name: "Feral",
  17355. image: {
  17356. source: "./media/characters/grottos/feral.svg",
  17357. extra: 207 / 190,
  17358. bottom: 0.05
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(10 + 9 / 12, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17372. {
  17373. anthro: {
  17374. height: math.unit(9 + 6 / 12, "feet"),
  17375. weight: math.unit(298, "lb"),
  17376. name: "Anthro",
  17377. image: {
  17378. source: "./media/characters/frifna/anthro.svg",
  17379. extra: 282 / 269,
  17380. bottom: 0.015
  17381. }
  17382. },
  17383. feral: {
  17384. height: math.unit(16 + 2 / 12, "feet"),
  17385. weight: math.unit(624, "lb"),
  17386. name: "Feral",
  17387. image: {
  17388. source: "./media/characters/frifna/feral.svg"
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(9 + 6 / 12, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(6 + 2 / 12, "feet"),
  17405. weight: math.unit(168, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/elise/front.svg",
  17409. extra: 276 / 271
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(6 + 2 / 12, "feet"),
  17417. default: true
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(5 + 10 / 12, "feet"),
  17426. weight: math.unit(210, "lb"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/glade/front.svg",
  17430. extra: 258 / 247,
  17431. bottom: 0.008
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Normal",
  17438. height: math.unit(5 + 10 / 12, "feet"),
  17439. default: true
  17440. },
  17441. ]
  17442. ))
  17443. characterMakers.push(() => makeCharacter(
  17444. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17445. {
  17446. front: {
  17447. height: math.unit(5 + 10 / 12, "feet"),
  17448. weight: math.unit(129, "lb"),
  17449. name: "Front",
  17450. image: {
  17451. source: "./media/characters/rina/front.svg",
  17452. extra: 266 / 255,
  17453. bottom: 0.005
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(5 + 10 / 12, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(6 + 1 / 12, "feet"),
  17470. weight: math.unit(192, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/veronica/front.svg",
  17474. extra: 319 / 309,
  17475. bottom: 0.005
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(6 + 1 / 12, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(9 + 3 / 12, "feet"),
  17492. weight: math.unit(1100, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/braxton/front.svg",
  17496. extra: 1057 / 984,
  17497. bottom: 0.05
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(9 + 3 / 12, "feet")
  17505. },
  17506. {
  17507. name: "Giant",
  17508. height: math.unit(300, "feet"),
  17509. default: true
  17510. },
  17511. {
  17512. name: "Macro",
  17513. height: math.unit(700, "feet")
  17514. },
  17515. {
  17516. name: "Megamacro",
  17517. height: math.unit(6000, "feet")
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6 + 7 / 12, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/blue-feyonics/front.svg",
  17530. extra: 1403 / 1306,
  17531. bottom: 0.047
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(6 + 7 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(1.8, "meters"),
  17548. weight: math.unit(60, "kg"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/maxwell/front.svg",
  17552. extra: 2060 / 1873
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Micro",
  17559. height: math.unit(1, "mm")
  17560. },
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(1.8, "meter"),
  17564. default: true
  17565. },
  17566. {
  17567. name: "Macro",
  17568. height: math.unit(30, "meters")
  17569. },
  17570. {
  17571. name: "Megamacro",
  17572. height: math.unit(10, "km")
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17578. {
  17579. front: {
  17580. height: math.unit(6, "feet"),
  17581. weight: math.unit(150, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/jack/front.svg",
  17585. extra: 1754 / 1640,
  17586. bottom: 0.01
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(80000, "feet"),
  17594. default: true
  17595. },
  17596. {
  17597. name: "Max size",
  17598. height: math.unit(10, "lightyears")
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17604. {
  17605. urban: {
  17606. height: math.unit(5, "feet"),
  17607. weight: math.unit(240, "lb"),
  17608. name: "Urban",
  17609. image: {
  17610. source: "./media/characters/cafat/urban.svg",
  17611. extra: 1223/1126,
  17612. bottom: 205/1428
  17613. }
  17614. },
  17615. summer: {
  17616. height: math.unit(5, "feet"),
  17617. weight: math.unit(240, "lb"),
  17618. name: "Summer",
  17619. image: {
  17620. source: "./media/characters/cafat/summer.svg",
  17621. extra: 1223/1126,
  17622. bottom: 205/1428
  17623. }
  17624. },
  17625. winter: {
  17626. height: math.unit(5, "feet"),
  17627. weight: math.unit(240, "lb"),
  17628. name: "Winter",
  17629. image: {
  17630. source: "./media/characters/cafat/winter.svg",
  17631. extra: 1223/1126,
  17632. bottom: 205/1428
  17633. }
  17634. },
  17635. lingerie: {
  17636. height: math.unit(5, "feet"),
  17637. weight: math.unit(240, "lb"),
  17638. name: "Lingerie",
  17639. image: {
  17640. source: "./media/characters/cafat/lingerie.svg",
  17641. extra: 1223/1126,
  17642. bottom: 205/1428
  17643. }
  17644. },
  17645. upright: {
  17646. height: math.unit(6.3, "feet"),
  17647. weight: math.unit(240, "lb"),
  17648. name: "Upright",
  17649. image: {
  17650. source: "./media/characters/cafat/upright.svg",
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. uprightFull: {
  17655. height: math.unit(6.3, "feet"),
  17656. weight: math.unit(240, "lb"),
  17657. name: "Upright (Full)",
  17658. image: {
  17659. source: "./media/characters/cafat/upright-full.svg",
  17660. bottom: 0.01
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Small",
  17667. height: math.unit(5, "feet"),
  17668. default: true
  17669. },
  17670. {
  17671. name: "Large",
  17672. height: math.unit(13, "feet")
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(6, "feet"),
  17681. weight: math.unit(150, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/verin-raharra/front.svg",
  17685. extra: 5019 / 4835,
  17686. bottom: 0.023
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7 + 5 / 12, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Upsized",
  17698. height: math.unit(20, "feet")
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(7, "feet"),
  17707. weight: math.unit(230, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/nakata/front.svg",
  17711. extra: 1.005,
  17712. bottom: 0.01
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(7, "feet"),
  17720. default: true
  17721. },
  17722. {
  17723. name: "Big",
  17724. height: math.unit(14, "feet")
  17725. },
  17726. {
  17727. name: "Macro",
  17728. height: math.unit(400, "feet")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(4.91, "feet"),
  17737. weight: math.unit(100, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/lily/front.svg",
  17741. extra: 1585 / 1415,
  17742. bottom: 0.02
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(4.91, "feet"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17756. {
  17757. laying: {
  17758. height: math.unit(4 + 4 / 12, "feet"),
  17759. weight: math.unit(600, "lb"),
  17760. name: "Laying",
  17761. image: {
  17762. source: "./media/characters/sheila/laying.svg",
  17763. extra: 1333 / 1265,
  17764. bottom: 0.16
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(4 + 4 / 12, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17778. {
  17779. front: {
  17780. height: math.unit(6, "feet"),
  17781. weight: math.unit(190, "lb"),
  17782. name: "Front",
  17783. image: {
  17784. source: "./media/characters/sax/front.svg",
  17785. extra: 1187 / 973,
  17786. bottom: 0.042
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Micro",
  17793. height: math.unit(4, "inches"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(6, "feet"),
  17803. weight: math.unit(150, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/pandora/front.svg",
  17807. extra: 2720 / 2556,
  17808. bottom: 0.015
  17809. }
  17810. },
  17811. back: {
  17812. height: math.unit(6, "feet"),
  17813. weight: math.unit(150, "lb"),
  17814. name: "Back",
  17815. image: {
  17816. source: "./media/characters/pandora/back.svg",
  17817. extra: 2720 / 2556,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. beans: {
  17822. height: math.unit(6 / 8, "feet"),
  17823. name: "Beans",
  17824. image: {
  17825. source: "./media/characters/pandora/beans.svg"
  17826. }
  17827. },
  17828. collar: {
  17829. height: math.unit(0.31, "feet"),
  17830. name: "Collar",
  17831. image: {
  17832. source: "./media/characters/pandora/collar.svg"
  17833. }
  17834. },
  17835. skirt: {
  17836. height: math.unit(6, "feet"),
  17837. weight: math.unit(150, "lb"),
  17838. name: "Skirt",
  17839. image: {
  17840. source: "./media/characters/pandora/skirt.svg",
  17841. extra: 1622 / 1525,
  17842. bottom: 0.015
  17843. }
  17844. },
  17845. hoodie: {
  17846. height: math.unit(6, "feet"),
  17847. weight: math.unit(150, "lb"),
  17848. name: "Hoodie",
  17849. image: {
  17850. source: "./media/characters/pandora/hoodie.svg",
  17851. extra: 1622 / 1525,
  17852. bottom: 0.015
  17853. }
  17854. },
  17855. casual: {
  17856. height: math.unit(6, "feet"),
  17857. weight: math.unit(150, "lb"),
  17858. name: "Casual",
  17859. image: {
  17860. source: "./media/characters/pandora/casual.svg",
  17861. extra: 1622 / 1525,
  17862. bottom: 0.015
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(6, "feet")
  17870. },
  17871. {
  17872. name: "Big Steppy",
  17873. height: math.unit(1, "km"),
  17874. default: true
  17875. },
  17876. {
  17877. name: "Galactic Steppy",
  17878. height: math.unit(2, "gigameters")
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17884. {
  17885. side: {
  17886. height: math.unit(10, "feet"),
  17887. weight: math.unit(800, "kg"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/venio-darcony/side.svg",
  17891. extra: 1373 / 1003,
  17892. bottom: 0.037
  17893. }
  17894. },
  17895. front: {
  17896. height: math.unit(19, "feet"),
  17897. weight: math.unit(800, "kg"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/venio-darcony/front.svg"
  17901. }
  17902. },
  17903. back: {
  17904. height: math.unit(19, "feet"),
  17905. weight: math.unit(800, "kg"),
  17906. name: "Back",
  17907. image: {
  17908. source: "./media/characters/venio-darcony/back.svg"
  17909. }
  17910. },
  17911. sideNsfw: {
  17912. height: math.unit(10, "feet"),
  17913. weight: math.unit(800, "kg"),
  17914. name: "Side (NSFW)",
  17915. image: {
  17916. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17917. extra: 1373 / 1003,
  17918. bottom: 0.037
  17919. }
  17920. },
  17921. frontNsfw: {
  17922. height: math.unit(19, "feet"),
  17923. weight: math.unit(800, "kg"),
  17924. name: "Front (NSFW)",
  17925. image: {
  17926. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17927. }
  17928. },
  17929. backNsfw: {
  17930. height: math.unit(19, "feet"),
  17931. weight: math.unit(800, "kg"),
  17932. name: "Back (NSFW)",
  17933. image: {
  17934. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17935. }
  17936. },
  17937. sideArmored: {
  17938. height: math.unit(10, "feet"),
  17939. weight: math.unit(800, "kg"),
  17940. name: "Side (Armored)",
  17941. image: {
  17942. source: "./media/characters/venio-darcony/side-armored.svg",
  17943. extra: 1373 / 1003,
  17944. bottom: 0.037
  17945. }
  17946. },
  17947. frontArmored: {
  17948. height: math.unit(19, "feet"),
  17949. weight: math.unit(900, "kg"),
  17950. name: "Front (Armored)",
  17951. image: {
  17952. source: "./media/characters/venio-darcony/front-armored.svg"
  17953. }
  17954. },
  17955. backArmored: {
  17956. height: math.unit(19, "feet"),
  17957. weight: math.unit(900, "kg"),
  17958. name: "Back (Armored)",
  17959. image: {
  17960. source: "./media/characters/venio-darcony/back-armored.svg"
  17961. }
  17962. },
  17963. sword: {
  17964. height: math.unit(10, "feet"),
  17965. weight: math.unit(50, "lb"),
  17966. name: "Sword",
  17967. image: {
  17968. source: "./media/characters/venio-darcony/sword.svg"
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(10, "feet")
  17976. },
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(130, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Macro+",
  17984. height: math.unit(240, "feet")
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(6, "feet"),
  17993. weight: math.unit(150, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/veski/front.svg",
  17997. extra: 1299 / 1225,
  17998. bottom: 0.04
  17999. }
  18000. },
  18001. back: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Back",
  18005. image: {
  18006. source: "./media/characters/veski/back.svg",
  18007. extra: 1299 / 1225,
  18008. bottom: 0.008
  18009. }
  18010. },
  18011. maw: {
  18012. height: math.unit(1.5 * 1.21, "feet"),
  18013. name: "Maw",
  18014. image: {
  18015. source: "./media/characters/veski/maw.svg"
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(2, "km"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(5 + 7 / 12, "feet"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/isabelle/front.svg",
  18035. extra: 2130 / 1976,
  18036. bottom: 0.05
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Supermicro",
  18043. height: math.unit(10, "micrometers")
  18044. },
  18045. {
  18046. name: "Micro",
  18047. height: math.unit(1, "inch")
  18048. },
  18049. {
  18050. name: "Tiny",
  18051. height: math.unit(5, "inches")
  18052. },
  18053. {
  18054. name: "Standard",
  18055. height: math.unit(5 + 7 / 12, "inches")
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(80, "meters"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Megamacro",
  18064. height: math.unit(250, "meters")
  18065. },
  18066. {
  18067. name: "Gigamacro",
  18068. height: math.unit(5, "km")
  18069. },
  18070. {
  18071. name: "Cosmic",
  18072. height: math.unit(2.5e6, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(150, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/hanzo/front.svg",
  18085. extra: 374 / 344,
  18086. bottom: 0.02
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(8, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(7, "feet"),
  18103. weight: math.unit(130, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/anna/front.svg",
  18107. extra: 169 / 145,
  18108. bottom: 0.06
  18109. }
  18110. },
  18111. full: {
  18112. height: math.unit(4.96, "feet"),
  18113. weight: math.unit(220, "lb"),
  18114. name: "Full",
  18115. image: {
  18116. source: "./media/characters/anna/full.svg",
  18117. extra: 138 / 114,
  18118. bottom: 0.15
  18119. }
  18120. },
  18121. tongue: {
  18122. height: math.unit(2.53, "feet"),
  18123. name: "Tongue",
  18124. image: {
  18125. source: "./media/characters/anna/tongue.svg"
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(7, "feet"),
  18133. default: true
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18139. {
  18140. front: {
  18141. height: math.unit(7, "feet"),
  18142. weight: math.unit(150, "lb"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/ian-corvid/front.svg",
  18146. extra: 150 / 142,
  18147. bottom: 0.02
  18148. }
  18149. },
  18150. back: {
  18151. height: math.unit(7, "feet"),
  18152. weight: math.unit(150, "lb"),
  18153. name: "Back",
  18154. image: {
  18155. source: "./media/characters/ian-corvid/back.svg",
  18156. extra: 150 / 143,
  18157. bottom: 0.01
  18158. }
  18159. },
  18160. stomping: {
  18161. height: math.unit(7, "feet"),
  18162. weight: math.unit(150, "lb"),
  18163. name: "Stomping",
  18164. image: {
  18165. source: "./media/characters/ian-corvid/stomping.svg",
  18166. extra: 76 / 72
  18167. }
  18168. },
  18169. sitting: {
  18170. height: math.unit(7 / 1.8, "feet"),
  18171. weight: math.unit(150, "lb"),
  18172. name: "Sitting",
  18173. image: {
  18174. source: "./media/characters/ian-corvid/sitting.svg",
  18175. extra: 1400 / 1269,
  18176. bottom: 0.15
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Tiny Microw",
  18183. height: math.unit(1, "inch")
  18184. },
  18185. {
  18186. name: "Microw",
  18187. height: math.unit(6, "inches")
  18188. },
  18189. {
  18190. name: "Crow",
  18191. height: math.unit(7 + 1 / 12, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macrow",
  18196. height: math.unit(176, "feet")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(5 + 7 / 12, "feet"),
  18205. weight: math.unit(147, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/natalie-kellon/front.svg",
  18209. extra: 1214 / 1141,
  18210. bottom: 0.02
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(1 / 16, "inch")
  18218. },
  18219. {
  18220. name: "Tiny",
  18221. height: math.unit(4, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(5 + 7 / 12, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Amazon",
  18230. height: math.unit(12, "feet")
  18231. },
  18232. {
  18233. name: "Giantess",
  18234. height: math.unit(160, "meters")
  18235. },
  18236. {
  18237. name: "Titaness",
  18238. height: math.unit(800, "meters")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(150, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/alluria/front.svg",
  18251. extra: 806 / 738,
  18252. bottom: 0.01
  18253. }
  18254. },
  18255. side: {
  18256. height: math.unit(6, "feet"),
  18257. weight: math.unit(150, "lb"),
  18258. name: "Side",
  18259. image: {
  18260. source: "./media/characters/alluria/side.svg",
  18261. extra: 800 / 750,
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/alluria/back.svg",
  18270. extra: 806 / 738,
  18271. }
  18272. },
  18273. frontMaid: {
  18274. height: math.unit(6, "feet"),
  18275. weight: math.unit(150, "lb"),
  18276. name: "Front (Maid)",
  18277. image: {
  18278. source: "./media/characters/alluria/front-maid.svg",
  18279. extra: 806 / 738,
  18280. bottom: 0.01
  18281. }
  18282. },
  18283. sideMaid: {
  18284. height: math.unit(6, "feet"),
  18285. weight: math.unit(150, "lb"),
  18286. name: "Side (Maid)",
  18287. image: {
  18288. source: "./media/characters/alluria/side-maid.svg",
  18289. extra: 800 / 750,
  18290. bottom: 0.005
  18291. }
  18292. },
  18293. backMaid: {
  18294. height: math.unit(6, "feet"),
  18295. weight: math.unit(150, "lb"),
  18296. name: "Back (Maid)",
  18297. image: {
  18298. source: "./media/characters/alluria/back-maid.svg",
  18299. extra: 806 / 738,
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Micro",
  18306. height: math.unit(6, "inches"),
  18307. default: true
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(6, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/kyle/front.svg",
  18320. extra: 1069 / 962,
  18321. bottom: 77.228 / 1727.45
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Macro",
  18328. height: math.unit(150, "feet"),
  18329. default: true
  18330. },
  18331. ]
  18332. ))
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18335. {
  18336. front: {
  18337. height: math.unit(6, "feet"),
  18338. weight: math.unit(300, "lb"),
  18339. name: "Front",
  18340. image: {
  18341. source: "./media/characters/duncan/front.svg",
  18342. extra: 1650 / 1482,
  18343. bottom: 0.05
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(100, "feet"),
  18351. default: true
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(5 + 4 / 12, "feet"),
  18360. weight: math.unit(220, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/memory/front.svg",
  18364. extra: 3641 / 3545,
  18365. bottom: 0.03
  18366. }
  18367. },
  18368. back: {
  18369. height: math.unit(5 + 4 / 12, "feet"),
  18370. weight: math.unit(220, "lb"),
  18371. name: "Back",
  18372. image: {
  18373. source: "./media/characters/memory/back.svg",
  18374. extra: 3641 / 3545,
  18375. bottom: 0.025
  18376. }
  18377. },
  18378. frontSkirt: {
  18379. height: math.unit(5 + 4 / 12, "feet"),
  18380. weight: math.unit(220, "lb"),
  18381. name: "Front (Skirt)",
  18382. image: {
  18383. source: "./media/characters/memory/front-skirt.svg",
  18384. extra: 3641 / 3545,
  18385. bottom: 0.03
  18386. }
  18387. },
  18388. frontDress: {
  18389. height: math.unit(5 + 4 / 12, "feet"),
  18390. weight: math.unit(220, "lb"),
  18391. name: "Front (Dress)",
  18392. image: {
  18393. source: "./media/characters/memory/front-dress.svg",
  18394. extra: 3641 / 3545,
  18395. bottom: 0.03
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(6, "inches"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(5 + 4 / 12, "feet")
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(4 + 11 / 12, "feet"),
  18416. weight: math.unit(100, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/luno/front.svg",
  18420. extra: 1535 / 1487,
  18421. bottom: 0.03
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(3, "inches")
  18429. },
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(4 + 11 / 12, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(300, "feet")
  18438. },
  18439. {
  18440. name: "Megamacro",
  18441. height: math.unit(700, "miles")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(6 + 2 / 12, "feet"),
  18450. weight: math.unit(170, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/jamesy/front.svg",
  18454. extra: 440 / 382,
  18455. bottom: 0.005
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(3, "inches")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(6 + 2 / 12, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Macro",
  18471. height: math.unit(300, "feet")
  18472. },
  18473. {
  18474. name: "Megamacro",
  18475. height: math.unit(700, "miles")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6, "feet"),
  18484. weight: math.unit(160, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/mark/front.svg",
  18488. extra: 3300 / 3100,
  18489. bottom: 136.42 / 3440.47
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Macro",
  18496. height: math.unit(120, "meters")
  18497. },
  18498. {
  18499. name: "Bigger Macro",
  18500. height: math.unit(350, "meters")
  18501. },
  18502. {
  18503. name: "Megamacro",
  18504. height: math.unit(8, "km"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Continental",
  18509. height: math.unit(4550, "km")
  18510. },
  18511. {
  18512. name: "Planetary",
  18513. height: math.unit(65000, "km")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(6, "feet"),
  18522. weight: math.unit(400, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/mac/front.svg",
  18526. extra: 1048 / 987.7,
  18527. bottom: 60 / 1107.6,
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Macro",
  18534. height: math.unit(500, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(5 + 2 / 12, "feet"),
  18544. weight: math.unit(190, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/bari/front.svg",
  18548. extra: 3156 / 2880,
  18549. bottom: 0.03
  18550. }
  18551. },
  18552. back: {
  18553. height: math.unit(5 + 2 / 12, "feet"),
  18554. weight: math.unit(190, "lb"),
  18555. name: "Back",
  18556. image: {
  18557. source: "./media/characters/bari/back.svg",
  18558. extra: 3260 / 2834,
  18559. bottom: 0.025
  18560. }
  18561. },
  18562. frontPlush: {
  18563. height: math.unit(5 + 2 / 12, "feet"),
  18564. weight: math.unit(190, "lb"),
  18565. name: "Front (Plush)",
  18566. image: {
  18567. source: "./media/characters/bari/front-plush.svg",
  18568. extra: 1112 / 1061,
  18569. bottom: 0.002
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(3, "inches")
  18577. },
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(5 + 2 / 12, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(20, "feet")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6 + 1 / 12, "feet"),
  18594. weight: math.unit(275, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/hunter-misha-raven/front.svg"
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Mortal",
  18604. height: math.unit(6 + 1 / 12, "feet")
  18605. },
  18606. {
  18607. name: "Divine",
  18608. height: math.unit(1.12134e34, "parsecs"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(6 + 3 / 12, "feet"),
  18618. weight: math.unit(220, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/max-calore/front.svg",
  18622. extra: 1700 / 1648,
  18623. bottom: 0.01
  18624. }
  18625. },
  18626. back: {
  18627. height: math.unit(6 + 3 / 12, "feet"),
  18628. weight: math.unit(220, "lb"),
  18629. name: "Back",
  18630. image: {
  18631. source: "./media/characters/max-calore/back.svg",
  18632. extra: 1700 / 1648,
  18633. bottom: 0.01
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(6 + 3 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18647. {
  18648. side: {
  18649. height: math.unit(2 + 8 / 12, "feet"),
  18650. weight: math.unit(99, "lb"),
  18651. name: "Side",
  18652. image: {
  18653. source: "./media/characters/aspen/side.svg",
  18654. extra: 152 / 138,
  18655. bottom: 0.032
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(2 + 8 / 12, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18669. {
  18670. side: {
  18671. height: math.unit(3 + 2 / 12, "feet"),
  18672. weight: math.unit(224, "lb"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/sheila-feral-wolf/side.svg",
  18676. extra: 179 / 166,
  18677. bottom: 0.03
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(3 + 2 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18691. {
  18692. side: {
  18693. height: math.unit(1 + 9 / 12, "feet"),
  18694. weight: math.unit(38, "lb"),
  18695. name: "Side",
  18696. image: {
  18697. source: "./media/characters/michelle/side.svg",
  18698. extra: 147 / 136.7,
  18699. bottom: 0.03
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(1 + 9 / 12, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18713. {
  18714. front: {
  18715. height: math.unit(1.54, "feet"),
  18716. weight: math.unit(50, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/nino/front.svg"
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(1.54, "feet"),
  18727. default: true
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(1.49, "feet"),
  18736. weight: math.unit(45, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/viola/front.svg"
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(1.49, "feet"),
  18747. default: true
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(6 + 5 / 12, "feet"),
  18756. weight: math.unit(580, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/atlas/front.svg",
  18760. extra: 298.5 / 290,
  18761. bottom: 0.015
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6 + 5 / 12, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18775. {
  18776. side: {
  18777. height: math.unit(15.6, "inches"),
  18778. weight: math.unit(10, "lb"),
  18779. name: "Side",
  18780. image: {
  18781. source: "./media/characters/davy/side.svg",
  18782. extra: 200 / 170,
  18783. bottom: 0.01
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(15.6, "inches"),
  18791. default: true
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18797. {
  18798. side: {
  18799. height: math.unit(4 + 8 / 12, "feet"),
  18800. weight: math.unit(166, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/fiona/side.svg",
  18804. extra: 232 / 220,
  18805. bottom: 0.03
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(4 + 8 / 12, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18819. {
  18820. front: {
  18821. height: math.unit(26, "inches"),
  18822. weight: math.unit(35, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/lyla/front.svg",
  18826. bottom: 0.1
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(3, "feet"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18840. {
  18841. side: {
  18842. height: math.unit(1.8, "feet"),
  18843. weight: math.unit(44, "lb"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/perseus/side.svg",
  18847. bottom: 0.21
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(1.8, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18861. {
  18862. side: {
  18863. height: math.unit(4 + 2 / 12, "feet"),
  18864. weight: math.unit(20, "lb"),
  18865. name: "Side",
  18866. image: {
  18867. source: "./media/characters/remus/side.svg"
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(4 + 2 / 12, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(4 + 11 / 12, "feet"),
  18884. weight: math.unit(114, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/raf/front.svg",
  18888. extra: 1504/1339,
  18889. bottom: 26/1530
  18890. }
  18891. },
  18892. side: {
  18893. height: math.unit(4 + 11 / 12, "feet"),
  18894. weight: math.unit(114, "lb"),
  18895. name: "Side",
  18896. image: {
  18897. source: "./media/characters/raf/side.svg",
  18898. extra: 1466/1316,
  18899. bottom: 29/1495
  18900. }
  18901. },
  18902. paw: {
  18903. height: math.unit(1.45, "feet"),
  18904. name: "Paw",
  18905. image: {
  18906. source: "./media/characters/raf/paw.svg"
  18907. },
  18908. extraAttributes: {
  18909. "toeSize": {
  18910. name: "Toe Size",
  18911. power: 2,
  18912. type: "area",
  18913. base: math.unit(0.004, "m^2")
  18914. },
  18915. "padSize": {
  18916. name: "Pad Size",
  18917. power: 2,
  18918. type: "area",
  18919. base: math.unit(0.04, "m^2")
  18920. },
  18921. "footSize": {
  18922. name: "Foot Size",
  18923. power: 2,
  18924. type: "area",
  18925. base: math.unit(0.08, "m^2")
  18926. },
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Micro",
  18933. height: math.unit(2, "inches")
  18934. },
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(4 + 11 / 12, "feet"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(70, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(1.5, "meters"),
  18951. weight: math.unit(68, "kg"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/liam-einarr/front.svg",
  18955. extra: 2822 / 2666
  18956. }
  18957. },
  18958. back: {
  18959. height: math.unit(1.5, "meters"),
  18960. weight: math.unit(68, "kg"),
  18961. name: "Back",
  18962. image: {
  18963. source: "./media/characters/liam-einarr/back.svg",
  18964. extra: 2822 / 2666,
  18965. bottom: 0.015
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(1.5, "meters"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Macro",
  18977. height: math.unit(150, "meters")
  18978. },
  18979. {
  18980. name: "Megamacro",
  18981. height: math.unit(35, "km")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(6, "feet"),
  18990. weight: math.unit(75, "kg"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/linda/front.svg",
  18994. extra: 930 / 874,
  18995. bottom: 0.004
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Normal",
  19002. height: math.unit(6, "feet"),
  19003. default: true
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19009. {
  19010. front: {
  19011. height: math.unit(6 + 8 / 12, "feet"),
  19012. weight: math.unit(220, "lb"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/caylex/front.svg",
  19016. extra: 821 / 772,
  19017. bottom: 0.07
  19018. }
  19019. },
  19020. back: {
  19021. height: math.unit(6 + 8 / 12, "feet"),
  19022. weight: math.unit(220, "lb"),
  19023. name: "Back",
  19024. image: {
  19025. source: "./media/characters/caylex/back.svg",
  19026. extra: 821 / 772,
  19027. bottom: 0.022
  19028. }
  19029. },
  19030. hand: {
  19031. height: math.unit(1.25, "feet"),
  19032. name: "Hand",
  19033. image: {
  19034. source: "./media/characters/caylex/hand.svg"
  19035. }
  19036. },
  19037. foot: {
  19038. height: math.unit(1.6, "feet"),
  19039. name: "Foot",
  19040. image: {
  19041. source: "./media/characters/caylex/foot.svg"
  19042. }
  19043. },
  19044. armored: {
  19045. height: math.unit(6 + 8 / 12, "feet"),
  19046. weight: math.unit(250, "lb"),
  19047. name: "Armored",
  19048. image: {
  19049. source: "./media/characters/caylex/armored.svg",
  19050. extra: 1420 / 1310,
  19051. bottom: 0.045
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(6 + 8 / 12, "feet"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Normal+",
  19063. height: math.unit(12, "feet")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(7 + 6 / 12, "feet"),
  19072. weight: math.unit(288, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/alana/front.svg",
  19076. extra: 679 / 653,
  19077. bottom: 22.5 / 701
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(7 + 6 / 12, "feet")
  19085. },
  19086. {
  19087. name: "Large",
  19088. height: math.unit(50, "feet")
  19089. },
  19090. {
  19091. name: "Macro",
  19092. height: math.unit(100, "feet"),
  19093. default: true
  19094. },
  19095. {
  19096. name: "Macro+",
  19097. height: math.unit(200, "feet")
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(6 + 1 / 12, "feet"),
  19106. weight: math.unit(210, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/hasani/front.svg",
  19110. extra: 244 / 232,
  19111. bottom: 0.01
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(6 + 1 / 12, "feet"),
  19116. weight: math.unit(210, "lb"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/hasani/back.svg",
  19120. extra: 244 / 232,
  19121. bottom: 0.01
  19122. }
  19123. },
  19124. },
  19125. [
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(6 + 1 / 12, "feet")
  19129. },
  19130. {
  19131. name: "Macro",
  19132. height: math.unit(175, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(1.82, "meters"),
  19142. weight: math.unit(140, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/nita/front.svg",
  19146. extra: 2473 / 2363,
  19147. bottom: 0.01
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(1.82, "m")
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(300, "m")
  19159. },
  19160. {
  19161. name: "Mistake Canon",
  19162. height: math.unit(0.5, "miles"),
  19163. default: true
  19164. },
  19165. {
  19166. name: "Big Mistake",
  19167. height: math.unit(13, "miles")
  19168. },
  19169. {
  19170. name: "Playing God",
  19171. height: math.unit(2450, "miles")
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19177. {
  19178. front: {
  19179. height: math.unit(4, "feet"),
  19180. weight: math.unit(120, "lb"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/shiriko/front.svg",
  19184. extra: 970/934,
  19185. bottom: 5/975
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(4, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(6, "feet"),
  19202. name: "front",
  19203. image: {
  19204. source: "./media/characters/deja/front.svg",
  19205. extra: 926 / 840,
  19206. bottom: 0.07
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Planck Length",
  19213. height: math.unit(1.6e-35, "meters")
  19214. },
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(30.48, "meters"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Universal",
  19222. height: math.unit(8.8e26, "meters")
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19228. {
  19229. side: {
  19230. height: math.unit(8, "feet"),
  19231. weight: math.unit(6300, "lb"),
  19232. name: "Side",
  19233. image: {
  19234. source: "./media/characters/anima/side.svg",
  19235. bottom: 0.035
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(8, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(8, "feet"),
  19252. weight: math.unit(350, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/bianca/front.svg",
  19256. extra: 234 / 225,
  19257. bottom: 0.03
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(8, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(11 + 5/12, "feet"),
  19274. weight: math.unit(1200, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/adinia/front.svg",
  19278. extra: 1767/1641,
  19279. bottom: 44/1811
  19280. },
  19281. extraAttributes: {
  19282. "energyIntake": {
  19283. name: "Energy Intake",
  19284. power: 3,
  19285. type: "energy",
  19286. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19287. },
  19288. }
  19289. },
  19290. back: {
  19291. height: math.unit(11 + 5/12, "feet"),
  19292. weight: math.unit(1200, "lb"),
  19293. name: "Back",
  19294. image: {
  19295. source: "./media/characters/adinia/back.svg",
  19296. extra: 1834/1684,
  19297. bottom: 14/1848
  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. maw: {
  19309. height: math.unit(3.79, "feet"),
  19310. name: "Maw",
  19311. image: {
  19312. source: "./media/characters/adinia/maw.svg"
  19313. }
  19314. },
  19315. rump: {
  19316. height: math.unit(4.6, "feet"),
  19317. name: "Rump",
  19318. image: {
  19319. source: "./media/characters/adinia/rump.svg"
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(11 + 5 / 12, "feet"),
  19327. default: true
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19333. {
  19334. front: {
  19335. height: math.unit(3, "meters"),
  19336. weight: math.unit(200, "kg"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/lykasa/front.svg",
  19340. extra: 1076 / 976,
  19341. bottom: 0.06
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(3, "meters")
  19349. },
  19350. {
  19351. name: "Kaiju",
  19352. height: math.unit(120, "meters"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Mega Kaiju",
  19357. height: math.unit(240, "km")
  19358. },
  19359. {
  19360. name: "Giga Kaiju",
  19361. height: math.unit(400, "megameters")
  19362. },
  19363. {
  19364. name: "Tera Kaiju",
  19365. height: math.unit(800, "gigameters")
  19366. },
  19367. {
  19368. name: "Kaiju Dragon Goddess",
  19369. height: math.unit(26, "zettaparsecs")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19375. {
  19376. side: {
  19377. height: math.unit(283 / 124 * 6, "feet"),
  19378. weight: math.unit(35000, "lb"),
  19379. name: "Side",
  19380. image: {
  19381. source: "./media/characters/malfaren/side.svg",
  19382. extra: 1310/529,
  19383. bottom: 24/1334
  19384. }
  19385. },
  19386. front: {
  19387. height: math.unit(22.36, "feet"),
  19388. weight: math.unit(35000, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/malfaren/front.svg",
  19392. extra: 1237/1115,
  19393. bottom: 32/1269
  19394. }
  19395. },
  19396. maw: {
  19397. height: math.unit(6.9, "feet"),
  19398. name: "Maw",
  19399. image: {
  19400. source: "./media/characters/malfaren/maw.svg"
  19401. }
  19402. },
  19403. dick: {
  19404. height: math.unit(6.19, "feet"),
  19405. name: "Dick",
  19406. image: {
  19407. source: "./media/characters/malfaren/dick.svg"
  19408. }
  19409. },
  19410. eye: {
  19411. height: math.unit(0.69, "feet"),
  19412. name: "Eye",
  19413. image: {
  19414. source: "./media/characters/malfaren/eye.svg"
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Big",
  19421. height: math.unit(283 / 162 * 6, "feet"),
  19422. },
  19423. {
  19424. name: "Bigger",
  19425. height: math.unit(283 / 124 * 6, "feet")
  19426. },
  19427. {
  19428. name: "Massive",
  19429. height: math.unit(283 / 92 * 6, "feet"),
  19430. default: true
  19431. },
  19432. {
  19433. name: "👀💦",
  19434. height: math.unit(283 / 73 * 6, "feet"),
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19440. {
  19441. front: {
  19442. height: math.unit(1.7, "m"),
  19443. weight: math.unit(70, "kg"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/kernel/front.svg",
  19447. extra: 222 / 210,
  19448. bottom: 0.007
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Nano",
  19455. height: math.unit(17, "micrometers")
  19456. },
  19457. {
  19458. name: "Micro",
  19459. height: math.unit(1.7, "mm")
  19460. },
  19461. {
  19462. name: "Small",
  19463. height: math.unit(1.7, "cm")
  19464. },
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(1.7, "m"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(1.75, "meters"),
  19477. weight: math.unit(65, "kg"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/jayne-folest/front.svg",
  19481. extra: 2115 / 2007,
  19482. bottom: 0.02
  19483. }
  19484. },
  19485. back: {
  19486. height: math.unit(1.75, "meters"),
  19487. weight: math.unit(65, "kg"),
  19488. name: "Back",
  19489. image: {
  19490. source: "./media/characters/jayne-folest/back.svg",
  19491. extra: 2115 / 2007,
  19492. bottom: 0.005
  19493. }
  19494. },
  19495. frontClothed: {
  19496. height: math.unit(1.75, "meters"),
  19497. weight: math.unit(65, "kg"),
  19498. name: "Front (Clothed)",
  19499. image: {
  19500. source: "./media/characters/jayne-folest/front-clothed.svg",
  19501. extra: 2115 / 2007,
  19502. bottom: 0.035
  19503. }
  19504. },
  19505. hand: {
  19506. height: math.unit(1 / 1.260, "feet"),
  19507. name: "Hand",
  19508. image: {
  19509. source: "./media/characters/jayne-folest/hand.svg"
  19510. }
  19511. },
  19512. foot: {
  19513. height: math.unit(1 / 0.918, "feet"),
  19514. name: "Foot",
  19515. image: {
  19516. source: "./media/characters/jayne-folest/foot.svg"
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(4, "cm")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(1.75, "meters")
  19528. },
  19529. {
  19530. name: "Macro",
  19531. height: math.unit(47.5, "meters"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(180, "cm"),
  19541. weight: math.unit(70, "kg"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/algier/front.svg",
  19545. extra: 596 / 572,
  19546. bottom: 0.04
  19547. }
  19548. },
  19549. back: {
  19550. height: math.unit(180, "cm"),
  19551. weight: math.unit(70, "kg"),
  19552. name: "Back",
  19553. image: {
  19554. source: "./media/characters/algier/back.svg",
  19555. extra: 596 / 572,
  19556. bottom: 0.025
  19557. }
  19558. },
  19559. frontdressed: {
  19560. height: math.unit(180, "cm"),
  19561. weight: math.unit(150, "kg"),
  19562. name: "Front-dressed",
  19563. image: {
  19564. source: "./media/characters/algier/front-dressed.svg",
  19565. extra: 596 / 572,
  19566. bottom: 0.038
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Micro",
  19573. height: math.unit(5, "cm")
  19574. },
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(180, "cm"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(64, "m")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19588. {
  19589. upright: {
  19590. height: math.unit(7, "feet"),
  19591. weight: math.unit(300, "lb"),
  19592. name: "Upright",
  19593. image: {
  19594. source: "./media/characters/pretzel/upright.svg",
  19595. extra: 534 / 522,
  19596. bottom: 0.065
  19597. }
  19598. },
  19599. sprawling: {
  19600. height: math.unit(3.75, "feet"),
  19601. weight: math.unit(300, "lb"),
  19602. name: "Sprawling",
  19603. image: {
  19604. source: "./media/characters/pretzel/sprawling.svg",
  19605. extra: 314 / 281,
  19606. bottom: 0.1
  19607. }
  19608. },
  19609. tongue: {
  19610. height: math.unit(2, "feet"),
  19611. name: "Tongue",
  19612. image: {
  19613. source: "./media/characters/pretzel/tongue.svg"
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(7, "feet"),
  19621. default: true
  19622. },
  19623. {
  19624. name: "Oversized",
  19625. height: math.unit(15, "feet")
  19626. },
  19627. {
  19628. name: "Huge",
  19629. height: math.unit(30, "feet")
  19630. },
  19631. {
  19632. name: "Macro",
  19633. height: math.unit(250, "feet")
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19639. {
  19640. sideFront: {
  19641. height: math.unit(5 + 2 / 12, "feet"),
  19642. weight: math.unit(120, "lb"),
  19643. name: "Front Side",
  19644. image: {
  19645. source: "./media/characters/roxi/side-front.svg",
  19646. extra: 2924 / 2717,
  19647. bottom: 0.08
  19648. }
  19649. },
  19650. sideBack: {
  19651. height: math.unit(5 + 2 / 12, "feet"),
  19652. weight: math.unit(120, "lb"),
  19653. name: "Back Side",
  19654. image: {
  19655. source: "./media/characters/roxi/side-back.svg",
  19656. extra: 2904 / 2693,
  19657. bottom: 0.06
  19658. }
  19659. },
  19660. front: {
  19661. height: math.unit(5 + 2 / 12, "feet"),
  19662. weight: math.unit(120, "lb"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/roxi/front.svg",
  19666. extra: 2028 / 1907,
  19667. bottom: 0.01
  19668. }
  19669. },
  19670. frontAlt: {
  19671. height: math.unit(5 + 2 / 12, "feet"),
  19672. weight: math.unit(120, "lb"),
  19673. name: "Front (Alt)",
  19674. image: {
  19675. source: "./media/characters/roxi/front-alt.svg",
  19676. extra: 1828 / 1798,
  19677. bottom: 0.01
  19678. }
  19679. },
  19680. sitting: {
  19681. height: math.unit(2.8, "feet"),
  19682. weight: math.unit(120, "lb"),
  19683. name: "Sitting",
  19684. image: {
  19685. source: "./media/characters/roxi/sitting.svg",
  19686. extra: 2660 / 2462,
  19687. bottom: 0.1
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5 + 2 / 12, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19701. {
  19702. side: {
  19703. height: math.unit(55, "feet"),
  19704. weight: math.unit(153, "tons"),
  19705. name: "Side",
  19706. image: {
  19707. source: "./media/characters/shadow/side.svg",
  19708. extra: 701 / 628,
  19709. bottom: 0.02
  19710. }
  19711. },
  19712. flying: {
  19713. height: math.unit(145, "feet"),
  19714. weight: math.unit(153, "tons"),
  19715. name: "Flying",
  19716. image: {
  19717. source: "./media/characters/shadow/flying.svg"
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(55, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(6, "feet"),
  19734. weight: math.unit(200, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/marcie/front.svg",
  19738. extra: 960 / 876,
  19739. bottom: 58 / 1017.87
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(1, "mile"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(7, "feet"),
  19756. weight: math.unit(200, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/kachina/front.svg",
  19760. extra: 1290.68 / 1119,
  19761. bottom: 36.5 / 1327.18
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(7, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19775. {
  19776. looking: {
  19777. height: math.unit(2, "meters"),
  19778. weight: math.unit(300, "kg"),
  19779. name: "Looking",
  19780. image: {
  19781. source: "./media/characters/kash/looking.svg",
  19782. extra: 474 / 344,
  19783. bottom: 0.03
  19784. }
  19785. },
  19786. side: {
  19787. height: math.unit(2, "meters"),
  19788. weight: math.unit(300, "kg"),
  19789. name: "Side",
  19790. image: {
  19791. source: "./media/characters/kash/side.svg",
  19792. extra: 302 / 251,
  19793. bottom: 0.03
  19794. }
  19795. },
  19796. front: {
  19797. height: math.unit(2, "meters"),
  19798. weight: math.unit(300, "kg"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/kash/front.svg",
  19802. extra: 495 / 360,
  19803. bottom: 0.015
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(2, "meters"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Big",
  19815. height: math.unit(3, "meters")
  19816. },
  19817. {
  19818. name: "Large",
  19819. height: math.unit(5, "meters")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19825. {
  19826. feeding: {
  19827. height: math.unit(6.7, "feet"),
  19828. weight: math.unit(350, "lb"),
  19829. name: "Feeding",
  19830. image: {
  19831. source: "./media/characters/lalim/feeding.svg",
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6.7, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(9.5, "feet"),
  19848. weight: math.unit(600, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/de'vout/front.svg",
  19852. extra: 1443 / 1328,
  19853. bottom: 0.025
  19854. }
  19855. },
  19856. back: {
  19857. height: math.unit(9.5, "feet"),
  19858. weight: math.unit(600, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/de'vout/back.svg",
  19862. extra: 1443 / 1328
  19863. }
  19864. },
  19865. frontDressed: {
  19866. height: math.unit(9.5, "feet"),
  19867. weight: math.unit(600, "lb"),
  19868. name: "Front (Dressed",
  19869. image: {
  19870. source: "./media/characters/de'vout/front-dressed.svg",
  19871. extra: 1443 / 1328,
  19872. bottom: 0.025
  19873. }
  19874. },
  19875. backDressed: {
  19876. height: math.unit(9.5, "feet"),
  19877. weight: math.unit(600, "lb"),
  19878. name: "Back (Dressed",
  19879. image: {
  19880. source: "./media/characters/de'vout/back-dressed.svg",
  19881. extra: 1443 / 1328
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(9.5, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(8, "feet"),
  19898. weight: math.unit(225, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/talana/front.svg",
  19902. extra: 1410 / 1300,
  19903. bottom: 0.015
  19904. }
  19905. },
  19906. frontDressed: {
  19907. height: math.unit(8, "feet"),
  19908. weight: math.unit(225, "lb"),
  19909. name: "Front (Dressed",
  19910. image: {
  19911. source: "./media/characters/talana/front-dressed.svg",
  19912. extra: 1410 / 1300,
  19913. bottom: 0.015
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(8, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19927. {
  19928. side: {
  19929. height: math.unit(7.2, "feet"),
  19930. weight: math.unit(150, "lb"),
  19931. name: "Side",
  19932. image: {
  19933. source: "./media/characters/xeauvok/side.svg",
  19934. extra: 1975 / 1523,
  19935. bottom: 0.07
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(7.2, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19949. {
  19950. side: {
  19951. height: math.unit(4, "meters"),
  19952. weight: math.unit(2200, "kg"),
  19953. name: "Side",
  19954. image: {
  19955. source: "./media/characters/zara/side.svg",
  19956. extra: 765/744,
  19957. bottom: 156/921
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(4, "meters"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19971. {
  19972. side: {
  19973. height: math.unit(6, "feet"),
  19974. weight: math.unit(150, "lb"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/richard-dragon/side.svg",
  19978. extra: 845 / 340,
  19979. bottom: 0.017
  19980. }
  19981. },
  19982. maw: {
  19983. height: math.unit(2.97, "feet"),
  19984. name: "Maw",
  19985. image: {
  19986. source: "./media/characters/richard-dragon/maw.svg"
  19987. }
  19988. },
  19989. },
  19990. [
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(4, "feet"),
  19998. weight: math.unit(100, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/richard-smeargle/front.svg",
  20002. extra: 2952 / 2820,
  20003. bottom: 0.028
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(4, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Dynamax",
  20015. height: math.unit(20, "meters")
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(6, "feet"),
  20024. weight: math.unit(110, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/klay/front.svg",
  20028. extra: 962 / 883,
  20029. bottom: 0.04
  20030. }
  20031. },
  20032. back: {
  20033. height: math.unit(6, "feet"),
  20034. weight: math.unit(110, "lb"),
  20035. name: "Back",
  20036. image: {
  20037. source: "./media/characters/klay/back.svg",
  20038. extra: 962 / 883
  20039. }
  20040. },
  20041. beans: {
  20042. height: math.unit(1.15, "feet"),
  20043. name: "Beans",
  20044. image: {
  20045. source: "./media/characters/klay/beans.svg"
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Micro",
  20052. height: math.unit(6, "inches")
  20053. },
  20054. {
  20055. name: "Mini",
  20056. height: math.unit(3, "feet")
  20057. },
  20058. {
  20059. name: "Normal",
  20060. height: math.unit(6, "feet"),
  20061. default: true
  20062. },
  20063. {
  20064. name: "Big",
  20065. height: math.unit(25, "feet")
  20066. },
  20067. {
  20068. name: "Macro",
  20069. height: math.unit(100, "feet")
  20070. },
  20071. {
  20072. name: "Megamacro",
  20073. height: math.unit(400, "feet")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(6, "feet"),
  20082. weight: math.unit(160, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/marcus/front.svg",
  20086. extra: 734 / 676,
  20087. bottom: 0.03
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Little",
  20094. height: math.unit(6, "feet")
  20095. },
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(110, "feet"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Macro",
  20103. height: math.unit(250, "feet")
  20104. },
  20105. {
  20106. name: "Megamacro",
  20107. height: math.unit(1000, "feet")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(7, "feet"),
  20116. weight: math.unit(275, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/claude-delroute/front.svg",
  20120. extra: 902/827,
  20121. bottom: 26/928
  20122. }
  20123. },
  20124. side: {
  20125. height: math.unit(7, "feet"),
  20126. weight: math.unit(275, "lb"),
  20127. name: "Side",
  20128. image: {
  20129. source: "./media/characters/claude-delroute/side.svg",
  20130. extra: 908/853,
  20131. bottom: 16/924
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(7, "feet"),
  20136. weight: math.unit(275, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/claude-delroute/back.svg",
  20140. extra: 911/829,
  20141. bottom: 18/929
  20142. }
  20143. },
  20144. maw: {
  20145. height: math.unit(0.6407, "meters"),
  20146. name: "Maw",
  20147. image: {
  20148. source: "./media/characters/claude-delroute/maw.svg"
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(7, "feet"),
  20156. default: true
  20157. },
  20158. {
  20159. name: "Lorge",
  20160. height: math.unit(20, "feet")
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(8 + 4 / 12, "feet"),
  20169. weight: math.unit(600, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/dragonien/front.svg",
  20173. extra: 100 / 94,
  20174. bottom: 3.3 / 103.3445
  20175. }
  20176. },
  20177. back: {
  20178. height: math.unit(8 + 4 / 12, "feet"),
  20179. weight: math.unit(600, "lb"),
  20180. name: "Back",
  20181. image: {
  20182. source: "./media/characters/dragonien/back.svg",
  20183. extra: 776 / 746,
  20184. bottom: 6.4 / 782.0616
  20185. }
  20186. },
  20187. foot: {
  20188. height: math.unit(1.54, "feet"),
  20189. name: "Foot",
  20190. image: {
  20191. source: "./media/characters/dragonien/foot.svg",
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(8 + 4 / 12, "feet"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Macro",
  20203. height: math.unit(200, "feet")
  20204. },
  20205. {
  20206. name: "Megamacro",
  20207. height: math.unit(1, "mile")
  20208. },
  20209. {
  20210. name: "Gigamacro",
  20211. height: math.unit(1000, "miles")
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(5 + 2 / 12, "feet"),
  20220. weight: math.unit(110, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/desta/front.svg",
  20224. extra: 767 / 726,
  20225. bottom: 11.7 / 779
  20226. }
  20227. },
  20228. back: {
  20229. height: math.unit(5 + 2 / 12, "feet"),
  20230. weight: math.unit(110, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/desta/back.svg",
  20234. extra: 777 / 728,
  20235. bottom: 6 / 784
  20236. }
  20237. },
  20238. frontAlt: {
  20239. height: math.unit(5 + 2 / 12, "feet"),
  20240. weight: math.unit(110, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/desta/front-alt.svg",
  20244. extra: 1482 / 1417
  20245. }
  20246. },
  20247. side: {
  20248. height: math.unit(5 + 2 / 12, "feet"),
  20249. weight: math.unit(110, "lb"),
  20250. name: "Side",
  20251. image: {
  20252. source: "./media/characters/desta/side.svg",
  20253. extra: 2579 / 2491,
  20254. bottom: 0.053
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Micro",
  20261. height: math.unit(6, "inches")
  20262. },
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(5 + 2 / 12, "feet"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(62, "feet")
  20271. },
  20272. {
  20273. name: "Megamacro",
  20274. height: math.unit(1800, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(10, "feet"),
  20283. weight: math.unit(700, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/storm-alystar/front.svg",
  20287. extra: 2112 / 1898,
  20288. bottom: 0.034
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Micro",
  20295. height: math.unit(3.5, "inches")
  20296. },
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(10, "feet"),
  20300. default: true
  20301. },
  20302. {
  20303. name: "Macro",
  20304. height: math.unit(400, "feet")
  20305. },
  20306. {
  20307. name: "Deific",
  20308. height: math.unit(60, "miles")
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(2.35, "meters"),
  20317. weight: math.unit(119, "kg"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/ilia/front.svg",
  20321. extra: 1285 / 1255,
  20322. bottom: 0.06
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(2.35, "meters")
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(140, "meters"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Megamacro",
  20338. height: math.unit(100, "miles")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(6 + 5 / 12, "feet"),
  20347. weight: math.unit(190, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/kingdead/front.svg",
  20351. extra: 1228 / 1177
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Micro",
  20358. height: math.unit(7, "inches")
  20359. },
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(6 + 5 / 12, "feet")
  20363. },
  20364. {
  20365. name: "Macro",
  20366. height: math.unit(150, "feet"),
  20367. default: true
  20368. },
  20369. {
  20370. name: "Megamacro",
  20371. height: math.unit(200, "miles")
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(8, "feet"),
  20380. weight: math.unit(600, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/kyrehx/front.svg",
  20384. extra: 1195 / 1095,
  20385. bottom: 0.034
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Micro",
  20392. height: math.unit(2, "inches")
  20393. },
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(8, "feet"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(255, "feet")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20407. {
  20408. front: {
  20409. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20410. weight: math.unit(184, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/xang/front.svg",
  20414. extra: 845 / 755
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(0.935 * 146, "feet")
  20427. },
  20428. {
  20429. name: "Megamacro",
  20430. height: math.unit(0.935 * 3, "miles")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20436. {
  20437. frontDressed: {
  20438. height: math.unit(5 + 7 / 12, "feet"),
  20439. weight: math.unit(140, "lb"),
  20440. name: "Front (Dressed)",
  20441. image: {
  20442. source: "./media/characters/doc-weardno/front-dressed.svg",
  20443. extra: 263 / 234
  20444. }
  20445. },
  20446. backDressed: {
  20447. height: math.unit(5 + 7 / 12, "feet"),
  20448. weight: math.unit(140, "lb"),
  20449. name: "Back (Dressed)",
  20450. image: {
  20451. source: "./media/characters/doc-weardno/back-dressed.svg",
  20452. extra: 266 / 238
  20453. }
  20454. },
  20455. front: {
  20456. height: math.unit(5 + 7 / 12, "feet"),
  20457. weight: math.unit(140, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/doc-weardno/front.svg",
  20461. extra: 254 / 233
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(3, "inches")
  20469. },
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(5 + 7 / 12, "feet"),
  20473. default: true
  20474. },
  20475. {
  20476. name: "Macro",
  20477. height: math.unit(25, "feet")
  20478. },
  20479. {
  20480. name: "Megamacro",
  20481. height: math.unit(2, "miles")
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20487. {
  20488. front: {
  20489. height: math.unit(6 + 2 / 12, "feet"),
  20490. weight: math.unit(153, "lb"),
  20491. name: "Front",
  20492. image: {
  20493. source: "./media/characters/seth-whilst/front.svg",
  20494. bottom: 0.07
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Micro",
  20501. height: math.unit(5, "inches")
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(6 + 2 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(3, "inches"),
  20515. weight: math.unit(8, "grams"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/pocket-jabari/front.svg",
  20519. extra: 1024 / 974,
  20520. bottom: 0.039
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Minimicro",
  20527. height: math.unit(8, "mm")
  20528. },
  20529. {
  20530. name: "Micro",
  20531. height: math.unit(3, "inches"),
  20532. default: true
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(3, "feet")
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20542. {
  20543. frontDressed: {
  20544. height: math.unit(15, "feet"),
  20545. weight: math.unit(3280, "lb"),
  20546. name: "Front (Dressed)",
  20547. image: {
  20548. source: "./media/characters/sapphy/front-dressed.svg",
  20549. extra: 1951/1654,
  20550. bottom: 194/2145
  20551. },
  20552. form: "anthro",
  20553. default: true
  20554. },
  20555. backDressed: {
  20556. height: math.unit(15, "feet"),
  20557. weight: math.unit(3280, "lb"),
  20558. name: "Back (Dressed)",
  20559. image: {
  20560. source: "./media/characters/sapphy/back-dressed.svg",
  20561. extra: 2058/1918,
  20562. bottom: 125/2183
  20563. },
  20564. form: "anthro"
  20565. },
  20566. frontNude: {
  20567. height: math.unit(15, "feet"),
  20568. weight: math.unit(3280, "lb"),
  20569. name: "Front (Nude)",
  20570. image: {
  20571. source: "./media/characters/sapphy/front-nude.svg",
  20572. extra: 1951/1654,
  20573. bottom: 194/2145
  20574. },
  20575. form: "anthro"
  20576. },
  20577. backNude: {
  20578. height: math.unit(15, "feet"),
  20579. weight: math.unit(3280, "lb"),
  20580. name: "Back (Nude)",
  20581. image: {
  20582. source: "./media/characters/sapphy/back-nude.svg",
  20583. extra: 2058/1918,
  20584. bottom: 125/2183
  20585. },
  20586. form: "anthro"
  20587. },
  20588. full: {
  20589. height: math.unit(15, "feet"),
  20590. weight: math.unit(3280, "lb"),
  20591. name: "Full",
  20592. image: {
  20593. source: "./media/characters/sapphy/full.svg",
  20594. extra: 1396/1317,
  20595. bottom: 44/1440
  20596. },
  20597. form: "anthro"
  20598. },
  20599. dick: {
  20600. height: math.unit(3.8, "feet"),
  20601. name: "Dick",
  20602. image: {
  20603. source: "./media/characters/sapphy/dick.svg"
  20604. },
  20605. form: "anthro"
  20606. },
  20607. feral: {
  20608. height: math.unit(35, "feet"),
  20609. weight: math.unit(160, "tons"),
  20610. name: "Feral",
  20611. image: {
  20612. source: "./media/characters/sapphy/feral.svg",
  20613. extra: 1050/573,
  20614. bottom: 60/1110
  20615. },
  20616. form: "feral",
  20617. default: true
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(15, "feet"),
  20624. form: "anthro"
  20625. },
  20626. {
  20627. name: "Casual Macro",
  20628. height: math.unit(120, "feet"),
  20629. form: "anthro"
  20630. },
  20631. {
  20632. name: "Macro",
  20633. height: math.unit(2150, "feet"),
  20634. default: true,
  20635. form: "anthro"
  20636. },
  20637. {
  20638. name: "Megamacro",
  20639. height: math.unit(8, "miles"),
  20640. form: "anthro"
  20641. },
  20642. {
  20643. name: "Galaxy Mom",
  20644. height: math.unit(6, "megalightyears"),
  20645. form: "anthro"
  20646. },
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(35, "feet"),
  20650. form: "feral",
  20651. default: true
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(300, "feet"),
  20656. form: "feral"
  20657. },
  20658. {
  20659. name: "Galaxy Mom",
  20660. height: math.unit(10, "megalightyears"),
  20661. form: "feral"
  20662. },
  20663. ],
  20664. {
  20665. "anthro": {
  20666. name: "Anthro",
  20667. default: true
  20668. },
  20669. "feral": {
  20670. name: "Feral"
  20671. }
  20672. }
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20676. {
  20677. hyenaFront: {
  20678. height: math.unit(6, "feet"),
  20679. weight: math.unit(190, "lb"),
  20680. name: "Front",
  20681. image: {
  20682. source: "./media/characters/kiro/hyena-front.svg",
  20683. extra: 927/839,
  20684. bottom: 91/1018
  20685. },
  20686. form: "hyena",
  20687. default: true
  20688. },
  20689. front: {
  20690. height: math.unit(6, "feet"),
  20691. weight: math.unit(170, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/kiro/front.svg",
  20695. extra: 1064 / 1012,
  20696. bottom: 0.052
  20697. },
  20698. form: "folf",
  20699. default: true
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Micro",
  20705. height: math.unit(6, "inches"),
  20706. form: "folf"
  20707. },
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(6, "feet"),
  20711. form: "folf",
  20712. default: true
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(72, "feet"),
  20717. form: "folf"
  20718. },
  20719. {
  20720. name: "Micro",
  20721. height: math.unit(6, "inches"),
  20722. form: "hyena"
  20723. },
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(6, "feet"),
  20727. form: "hyena",
  20728. default: true
  20729. },
  20730. {
  20731. name: "Macro",
  20732. height: math.unit(72, "feet"),
  20733. form: "hyena"
  20734. },
  20735. ],
  20736. {
  20737. "hyena": {
  20738. name: "Hyena",
  20739. default: true
  20740. },
  20741. "folf": {
  20742. name: "Folf",
  20743. },
  20744. }
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(5 + 9 / 12, "feet"),
  20751. weight: math.unit(175, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/irishfox/front.svg",
  20755. extra: 1912 / 1680,
  20756. bottom: 0.02
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Nano",
  20763. height: math.unit(1, "mm")
  20764. },
  20765. {
  20766. name: "Micro",
  20767. height: math.unit(2, "inches")
  20768. },
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(5 + 9 / 12, "feet"),
  20772. default: true
  20773. },
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(45, "feet")
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(6 + 1 / 12, "feet"),
  20785. weight: math.unit(75, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/aronai-sieyes/front.svg",
  20789. extra: 1532/1450,
  20790. bottom: 42/1574
  20791. }
  20792. },
  20793. side: {
  20794. height: math.unit(6 + 1 / 12, "feet"),
  20795. weight: math.unit(75, "lb"),
  20796. name: "Side",
  20797. image: {
  20798. source: "./media/characters/aronai-sieyes/side.svg",
  20799. extra: 1422/1365,
  20800. bottom: 148/1570
  20801. }
  20802. },
  20803. back: {
  20804. height: math.unit(6 + 1 / 12, "feet"),
  20805. weight: math.unit(75, "lb"),
  20806. name: "Back",
  20807. image: {
  20808. source: "./media/characters/aronai-sieyes/back.svg",
  20809. extra: 1526/1464,
  20810. bottom: 51/1577
  20811. }
  20812. },
  20813. dressed: {
  20814. height: math.unit(6 + 1 / 12, "feet"),
  20815. weight: math.unit(75, "lb"),
  20816. name: "Dressed",
  20817. image: {
  20818. source: "./media/characters/aronai-sieyes/dressed.svg",
  20819. extra: 1559/1483,
  20820. bottom: 39/1598
  20821. }
  20822. },
  20823. slit: {
  20824. height: math.unit(1.3, "feet"),
  20825. name: "Slit",
  20826. image: {
  20827. source: "./media/characters/aronai-sieyes/slit.svg"
  20828. }
  20829. },
  20830. slitSpread: {
  20831. height: math.unit(0.9, "feet"),
  20832. name: "Slit (Spread)",
  20833. image: {
  20834. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20835. }
  20836. },
  20837. rump: {
  20838. height: math.unit(1.3, "feet"),
  20839. name: "Rump",
  20840. image: {
  20841. source: "./media/characters/aronai-sieyes/rump.svg"
  20842. }
  20843. },
  20844. maw: {
  20845. height: math.unit(1.25, "feet"),
  20846. name: "Maw",
  20847. image: {
  20848. source: "./media/characters/aronai-sieyes/maw.svg"
  20849. }
  20850. },
  20851. feral: {
  20852. height: math.unit(18, "feet"),
  20853. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20854. name: "Feral",
  20855. image: {
  20856. source: "./media/characters/aronai-sieyes/feral.svg",
  20857. extra: 1530 / 1240,
  20858. bottom: 0.035
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Micro",
  20865. height: math.unit(2, "inches")
  20866. },
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(6 + 1 / 12, "feet"),
  20870. default: true
  20871. }
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(12, "feet"),
  20879. weight: math.unit(410, "kg"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/xuna/front.svg",
  20883. extra: 2184 / 1980
  20884. }
  20885. },
  20886. side: {
  20887. height: math.unit(12, "feet"),
  20888. weight: math.unit(410, "kg"),
  20889. name: "Side",
  20890. image: {
  20891. source: "./media/characters/xuna/side.svg",
  20892. extra: 2184 / 1980
  20893. }
  20894. },
  20895. back: {
  20896. height: math.unit(12, "feet"),
  20897. weight: math.unit(410, "kg"),
  20898. name: "Back",
  20899. image: {
  20900. source: "./media/characters/xuna/back.svg",
  20901. extra: 2184 / 1980
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Nano glow",
  20908. height: math.unit(10, "nm")
  20909. },
  20910. {
  20911. name: "Micro floof",
  20912. height: math.unit(0.3, "m")
  20913. },
  20914. {
  20915. name: "Huggable softy boi",
  20916. height: math.unit(3.6576, "m"),
  20917. default: true
  20918. },
  20919. {
  20920. name: "Admirable floof",
  20921. height: math.unit(80, "meters")
  20922. },
  20923. {
  20924. name: "Gentle macro",
  20925. height: math.unit(300, "meters")
  20926. },
  20927. {
  20928. name: "Very careful floof",
  20929. height: math.unit(3200, "meters")
  20930. },
  20931. {
  20932. name: "The mega floof",
  20933. height: math.unit(36000, "meters")
  20934. },
  20935. {
  20936. name: "Giga-fur-Wicker",
  20937. height: math.unit(4800000, "meters")
  20938. },
  20939. {
  20940. name: "Licky world",
  20941. height: math.unit(20000000, "meters")
  20942. },
  20943. {
  20944. name: "Floofy cyan sun",
  20945. height: math.unit(1500000000, "meters")
  20946. },
  20947. {
  20948. name: "Milky Wicker",
  20949. height: math.unit(1000000000000000000000, "meters")
  20950. },
  20951. {
  20952. name: "The observing Wicker",
  20953. height: math.unit(999999999999999999999999999, "meters")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 9 / 12, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/arokha-sieyes/front.svg",
  20966. extra: 1425 / 1284,
  20967. bottom: 0.05
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(5 + 9 / 12, "feet")
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(30, "meters"),
  20979. default: true
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(6, "feet"),
  20988. weight: math.unit(180, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/arokh-sieyes/front.svg",
  20992. extra: 1830 / 1769,
  20993. bottom: 0.01
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(6, "feet")
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(30, "meters"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21011. {
  21012. side: {
  21013. height: math.unit(13 + 1 / 12, "feet"),
  21014. weight: math.unit(8.5, "tonnes"),
  21015. preyCapacity: math.unit(36, "people"),
  21016. name: "Side",
  21017. image: {
  21018. source: "./media/characters/goldeneye/side.svg",
  21019. extra: 1139/741,
  21020. bottom: 98/1237
  21021. }
  21022. },
  21023. front: {
  21024. height: math.unit(5.1, "feet"),
  21025. weight: math.unit(8.5, "tonnes"),
  21026. preyCapacity: math.unit(36, "people"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/goldeneye/front.svg",
  21030. extra: 635/365,
  21031. bottom: 598/1233
  21032. }
  21033. },
  21034. maw: {
  21035. height: math.unit(6.6, "feet"),
  21036. name: "Maw",
  21037. image: {
  21038. source: "./media/characters/goldeneye/maw.svg"
  21039. }
  21040. },
  21041. headFront: {
  21042. height: math.unit(8, "feet"),
  21043. name: "Head (Front)",
  21044. image: {
  21045. source: "./media/characters/goldeneye/head-front.svg"
  21046. }
  21047. },
  21048. headSide: {
  21049. height: math.unit(6, "feet"),
  21050. name: "Head (Side)",
  21051. image: {
  21052. source: "./media/characters/goldeneye/head-side.svg"
  21053. }
  21054. },
  21055. headBack: {
  21056. height: math.unit(8, "feet"),
  21057. name: "Head (Back)",
  21058. image: {
  21059. source: "./media/characters/goldeneye/head-back.svg"
  21060. }
  21061. },
  21062. paw: {
  21063. height: math.unit(3.4, "feet"),
  21064. name: "Paw",
  21065. image: {
  21066. source: "./media/characters/goldeneye/paw.svg"
  21067. }
  21068. },
  21069. toering: {
  21070. height: math.unit(0.45, "feet"),
  21071. name: "Toering",
  21072. image: {
  21073. source: "./media/characters/goldeneye/toering.svg"
  21074. }
  21075. },
  21076. eyes: {
  21077. height: math.unit(0.5, "feet"),
  21078. name: "Eyes",
  21079. image: {
  21080. source: "./media/characters/goldeneye/eyes.svg"
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(13 + 1 / 12, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21094. {
  21095. front: {
  21096. height: math.unit(6 + 1 / 12, "feet"),
  21097. weight: math.unit(210, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/leonardo-lycheborne/front.svg",
  21101. extra: 776/723,
  21102. bottom: 34/810
  21103. }
  21104. },
  21105. side: {
  21106. height: math.unit(6 + 1 / 12, "feet"),
  21107. weight: math.unit(210, "lb"),
  21108. name: "Side",
  21109. image: {
  21110. source: "./media/characters/leonardo-lycheborne/side.svg",
  21111. extra: 780/728,
  21112. bottom: 12/792
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(6 + 1 / 12, "feet"),
  21117. weight: math.unit(210, "lb"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/leonardo-lycheborne/back.svg",
  21121. extra: 775/721,
  21122. bottom: 17/792
  21123. }
  21124. },
  21125. hand: {
  21126. height: math.unit(1.08, "feet"),
  21127. name: "Hand",
  21128. image: {
  21129. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21130. }
  21131. },
  21132. foot: {
  21133. height: math.unit(1.32, "feet"),
  21134. name: "Foot",
  21135. image: {
  21136. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21137. }
  21138. },
  21139. maw: {
  21140. height: math.unit(1, "feet"),
  21141. name: "Maw",
  21142. image: {
  21143. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21144. }
  21145. },
  21146. were: {
  21147. height: math.unit(20, "feet"),
  21148. weight: math.unit(7800, "lb"),
  21149. name: "Were",
  21150. image: {
  21151. source: "./media/characters/leonardo-lycheborne/were.svg",
  21152. extra: 1224/1165,
  21153. bottom: 72/1296
  21154. }
  21155. },
  21156. feral: {
  21157. height: math.unit(7.5, "feet"),
  21158. weight: math.unit(600, "lb"),
  21159. name: "Feral",
  21160. image: {
  21161. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21162. extra: 797/702,
  21163. bottom: 139/936
  21164. }
  21165. },
  21166. taur: {
  21167. height: math.unit(11, "feet"),
  21168. weight: math.unit(3300, "lb"),
  21169. name: "Taur",
  21170. image: {
  21171. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21172. extra: 1271/1197,
  21173. bottom: 47/1318
  21174. }
  21175. },
  21176. barghest: {
  21177. height: math.unit(11, "feet"),
  21178. weight: math.unit(1300, "lb"),
  21179. name: "Barghest",
  21180. image: {
  21181. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21182. extra: 1291/1204,
  21183. bottom: 37/1328
  21184. }
  21185. },
  21186. dick: {
  21187. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21188. name: "Dick",
  21189. image: {
  21190. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21191. }
  21192. },
  21193. dickWere: {
  21194. height: math.unit((20) / 3.8, "feet"),
  21195. name: "Dick (Were)",
  21196. image: {
  21197. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(6 + 1 / 12, "feet"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21211. {
  21212. front: {
  21213. height: math.unit(10, "feet"),
  21214. weight: math.unit(350, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/jet/front.svg",
  21218. extra: 2050 / 1980,
  21219. bottom: 0.013
  21220. }
  21221. },
  21222. back: {
  21223. height: math.unit(10, "feet"),
  21224. weight: math.unit(350, "lb"),
  21225. name: "Back",
  21226. image: {
  21227. source: "./media/characters/jet/back.svg",
  21228. extra: 2050 / 1980,
  21229. bottom: 0.013
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Micro",
  21236. height: math.unit(6, "inches")
  21237. },
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(10, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(100, "feet")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(15, "feet"),
  21254. weight: math.unit(2800, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/tanarath/front.svg",
  21258. extra: 2392 / 2220,
  21259. bottom: 0.03
  21260. }
  21261. },
  21262. back: {
  21263. height: math.unit(15, "feet"),
  21264. weight: math.unit(2800, "lb"),
  21265. name: "Back",
  21266. image: {
  21267. source: "./media/characters/tanarath/back.svg",
  21268. extra: 2392 / 2220,
  21269. bottom: 0.03
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(15, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(7 + 1 / 12, "feet"),
  21286. weight: math.unit(175, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/patty-cattybatty/front.svg",
  21290. extra: 908 / 874,
  21291. bottom: 0.025
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Micro",
  21298. height: math.unit(1, "inch")
  21299. },
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(7 + 1 / 12, "feet")
  21303. },
  21304. {
  21305. name: "Mini Macro",
  21306. height: math.unit(155, "feet")
  21307. },
  21308. {
  21309. name: "Macro",
  21310. height: math.unit(1077, "feet")
  21311. },
  21312. {
  21313. name: "Mega Macro",
  21314. height: math.unit(47650, "feet"),
  21315. default: true
  21316. },
  21317. {
  21318. name: "Giga Macro",
  21319. height: math.unit(440, "miles")
  21320. },
  21321. {
  21322. name: "Tera Macro",
  21323. height: math.unit(8700, "miles")
  21324. },
  21325. {
  21326. name: "Planetary Macro",
  21327. height: math.unit(32700, "miles")
  21328. },
  21329. {
  21330. name: "Solar Macro",
  21331. height: math.unit(550000, "miles")
  21332. },
  21333. {
  21334. name: "Celestial Macro",
  21335. height: math.unit(2.5, "AU")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(4 + 5 / 12, "feet"),
  21344. weight: math.unit(90, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/cappu/front.svg",
  21348. extra: 1247 / 1152,
  21349. bottom: 0.012
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(4 + 5 / 12, "feet"),
  21357. default: true
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21363. {
  21364. frontDressed: {
  21365. height: math.unit(70, "cm"),
  21366. weight: math.unit(6, "kg"),
  21367. name: "Front (Dressed)",
  21368. image: {
  21369. source: "./media/characters/sebi/front-dressed.svg",
  21370. extra: 713.5 / 686.5,
  21371. bottom: 0.003
  21372. }
  21373. },
  21374. front: {
  21375. height: math.unit(70, "cm"),
  21376. weight: math.unit(5, "kg"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/sebi/front.svg",
  21380. extra: 713.5 / 686.5,
  21381. bottom: 0.003
  21382. }
  21383. }
  21384. },
  21385. [
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(70, "cm"),
  21389. default: true
  21390. },
  21391. {
  21392. name: "Macro",
  21393. height: math.unit(8, "meters")
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21399. {
  21400. front: {
  21401. height: math.unit(6, "feet"),
  21402. weight: math.unit(150, "lb"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/typhek/front.svg",
  21406. extra: 1948 / 1929,
  21407. bottom: 0.025
  21408. }
  21409. },
  21410. side: {
  21411. height: math.unit(6, "feet"),
  21412. weight: math.unit(150, "lb"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/typhek/side.svg",
  21416. extra: 2034 / 2010,
  21417. bottom: 0.003
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(6, "feet"),
  21422. weight: math.unit(150, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/typhek/back.svg",
  21426. extra: 2005 / 1978,
  21427. bottom: 0.004
  21428. }
  21429. },
  21430. palm: {
  21431. height: math.unit(1.2, "feet"),
  21432. name: "Palm",
  21433. image: {
  21434. source: "./media/characters/typhek/palm.svg"
  21435. }
  21436. },
  21437. fist: {
  21438. height: math.unit(1.1, "feet"),
  21439. name: "Fist",
  21440. image: {
  21441. source: "./media/characters/typhek/fist.svg"
  21442. }
  21443. },
  21444. foot: {
  21445. height: math.unit(1.57, "feet"),
  21446. name: "Foot",
  21447. image: {
  21448. source: "./media/characters/typhek/foot.svg"
  21449. }
  21450. },
  21451. sole: {
  21452. height: math.unit(2.05, "feet"),
  21453. name: "Sole",
  21454. image: {
  21455. source: "./media/characters/typhek/sole.svg"
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Macro",
  21462. height: math.unit(40, "stories"),
  21463. default: true
  21464. },
  21465. {
  21466. name: "Megamacro",
  21467. height: math.unit(1, "mile")
  21468. },
  21469. {
  21470. name: "Gigamacro",
  21471. height: math.unit(4000, "solarradii")
  21472. },
  21473. {
  21474. name: "Universal",
  21475. height: math.unit(1.1, "universes")
  21476. }
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21481. {
  21482. side: {
  21483. height: math.unit(5 + 7 / 12, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/kassy/side.svg",
  21488. extra: 1280 / 1225,
  21489. bottom: 0.002
  21490. }
  21491. },
  21492. front: {
  21493. height: math.unit(5 + 7 / 12, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/kassy/front.svg",
  21498. extra: 1280 / 1225,
  21499. bottom: 0.025
  21500. }
  21501. },
  21502. back: {
  21503. height: math.unit(5 + 7 / 12, "feet"),
  21504. weight: math.unit(150, "lb"),
  21505. name: "Back",
  21506. image: {
  21507. source: "./media/characters/kassy/back.svg",
  21508. extra: 1280 / 1225,
  21509. bottom: 0.002
  21510. }
  21511. },
  21512. foot: {
  21513. height: math.unit(1.266, "feet"),
  21514. name: "Foot",
  21515. image: {
  21516. source: "./media/characters/kassy/foot.svg"
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(5 + 7 / 12, "feet")
  21524. },
  21525. {
  21526. name: "Macro",
  21527. height: math.unit(137, "feet"),
  21528. default: true
  21529. },
  21530. {
  21531. name: "Megamacro",
  21532. height: math.unit(1, "mile")
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21538. {
  21539. front: {
  21540. height: math.unit(6 + 1 / 12, "feet"),
  21541. weight: math.unit(200, "lb"),
  21542. name: "Front",
  21543. image: {
  21544. source: "./media/characters/neil/front.svg",
  21545. extra: 1326 / 1250,
  21546. bottom: 0.023
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(6 + 1 / 12, "feet"),
  21554. default: true
  21555. },
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(200, "feet")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(5 + 9 / 12, "feet"),
  21567. weight: math.unit(190, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/atticus/front.svg",
  21571. extra: 2934 / 2785,
  21572. bottom: 0.025
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(5 + 9 / 12, "feet"),
  21580. default: true
  21581. },
  21582. {
  21583. name: "Macro",
  21584. height: math.unit(180, "feet")
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21590. {
  21591. side: {
  21592. height: math.unit(9, "feet"),
  21593. weight: math.unit(650, "lb"),
  21594. name: "Side",
  21595. image: {
  21596. source: "./media/characters/milo/side.svg",
  21597. extra: 2644 / 2310,
  21598. bottom: 0.032
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(9, "feet"),
  21606. default: true
  21607. },
  21608. {
  21609. name: "Macro",
  21610. height: math.unit(300, "feet")
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21616. {
  21617. side: {
  21618. height: math.unit(8, "meters"),
  21619. weight: math.unit(90000, "kg"),
  21620. name: "Side",
  21621. image: {
  21622. source: "./media/characters/ijzer/side.svg",
  21623. extra: 2756 / 1600,
  21624. bottom: 0.01
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Small",
  21631. height: math.unit(3, "meters")
  21632. },
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(8, "meters"),
  21636. default: true
  21637. },
  21638. {
  21639. name: "Normal+",
  21640. height: math.unit(10, "meters")
  21641. },
  21642. {
  21643. name: "Bigger",
  21644. height: math.unit(24, "meters")
  21645. },
  21646. {
  21647. name: "Huge",
  21648. height: math.unit(80, "meters")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(6 + 2 / 12, "feet"),
  21657. weight: math.unit(153, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/luca-cervicum/front.svg",
  21661. extra: 370 / 327,
  21662. bottom: 0.015
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(6 + 2 / 12, "feet"),
  21667. weight: math.unit(153, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/luca-cervicum/back.svg",
  21671. extra: 367 / 333,
  21672. bottom: 0.005
  21673. }
  21674. },
  21675. frontGear: {
  21676. height: math.unit(6 + 2 / 12, "feet"),
  21677. weight: math.unit(173, "lb"),
  21678. name: "Front (Gear)",
  21679. image: {
  21680. source: "./media/characters/luca-cervicum/front-gear.svg",
  21681. extra: 377 / 333,
  21682. bottom: 0.006
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(6 + 2 / 12, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(6 + 1 / 12, "feet"),
  21699. weight: math.unit(304, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/oliver/front.svg",
  21703. extra: 157 / 143,
  21704. bottom: 0.08
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(6 + 1 / 12, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(5 + 7 / 12, "feet"),
  21721. weight: math.unit(140, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/shane/front.svg",
  21725. extra: 304 / 289,
  21726. bottom: 0.005
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(5 + 7 / 12, "feet"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(5 + 9 / 12, "feet"),
  21743. weight: math.unit(178, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/shin/front.svg",
  21747. extra: 159 / 151,
  21748. bottom: 0.015
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(5 + 9 / 12, "feet"),
  21756. default: true
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(5 + 10 / 12, "feet"),
  21765. weight: math.unit(168, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/xerxes/front.svg",
  21769. extra: 282 / 260,
  21770. bottom: 0.045
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(5 + 10 / 12, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(6 + 7 / 12, "feet"),
  21787. weight: math.unit(208, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/chaska/front.svg",
  21791. extra: 332 / 319,
  21792. bottom: 0.015
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(6 + 7 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(5 + 8 / 12, "feet"),
  21809. weight: math.unit(208, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/enuk/front.svg",
  21813. extra: 437 / 406,
  21814. bottom: 0.02
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(5 + 8 / 12, "feet"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(5 + 10 / 12, "feet"),
  21831. weight: math.unit(252, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/bruun/front.svg",
  21835. extra: 197 / 187,
  21836. bottom: 0.012
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(5 + 10 / 12, "feet"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(6 + 10 / 12, "feet"),
  21853. weight: math.unit(255, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/alexeev/front.svg",
  21857. extra: 213 / 200,
  21858. bottom: 0.05
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(6 + 10 / 12, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(2 + 8 / 12, "feet"),
  21875. weight: math.unit(22, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/evelyn/front.svg",
  21879. extra: 208 / 180
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(2 + 8 / 12, "feet"),
  21887. default: true
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21893. {
  21894. front: {
  21895. height: math.unit(5 + 9 / 12, "feet"),
  21896. weight: math.unit(139, "lb"),
  21897. name: "Front",
  21898. image: {
  21899. source: "./media/characters/inca/front.svg",
  21900. extra: 294 / 291,
  21901. bottom: 0.03
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(5 + 9 / 12, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(6 + 3 / 12, "feet"),
  21918. weight: math.unit(185, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/mera/front.svg",
  21922. extra: 291 / 277,
  21923. bottom: 0.03
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(6 + 3 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(6 + 7 / 12, "feet"),
  21940. weight: math.unit(160, "lb"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/ceres/front.svg",
  21944. extra: 1023 / 950,
  21945. bottom: 0.027
  21946. }
  21947. },
  21948. back: {
  21949. height: math.unit(6 + 7 / 12, "feet"),
  21950. weight: math.unit(160, "lb"),
  21951. name: "Back",
  21952. image: {
  21953. source: "./media/characters/ceres/back.svg",
  21954. extra: 1023 / 950
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(6 + 7 / 12, "feet"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(5 + 10 / 12, "feet"),
  21971. weight: math.unit(150, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/kris/front.svg",
  21975. extra: 885 / 803,
  21976. bottom: 0.03
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(5 + 10 / 12, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21990. {
  21991. dragon_front: {
  21992. height: math.unit(5, "feet"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/taluthus/dragon-front.svg",
  21996. extra: 1203/1098,
  21997. bottom: 46/1249
  21998. },
  21999. form: "dragon",
  22000. default: true
  22001. },
  22002. dragon_maw: {
  22003. height: math.unit(2.35, "feet"),
  22004. name: "Maw",
  22005. image: {
  22006. source: "./media/characters/taluthus/dragon-maw.svg"
  22007. },
  22008. form: "dragon",
  22009. },
  22010. kitsune_front: {
  22011. height: math.unit(7, "feet"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/taluthus/kitsune-front.svg",
  22015. extra: 900/841,
  22016. bottom: 65/965
  22017. },
  22018. form: "kitsune",
  22019. default: true
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(5, "feet"),
  22026. form: "dragon",
  22027. default: true,
  22028. },
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(7, "feet"),
  22032. form: "kitsune",
  22033. default: true
  22034. },
  22035. {
  22036. name: "Macro",
  22037. height: math.unit(300, "feet"),
  22038. allForms: true
  22039. },
  22040. ],
  22041. {
  22042. "dragon": {
  22043. name: "Dragon",
  22044. default: true
  22045. },
  22046. "kitsune": {
  22047. name: "Kitsune",
  22048. },
  22049. }
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22053. {
  22054. front: {
  22055. height: math.unit(5 + 9 / 12, "feet"),
  22056. weight: math.unit(145, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/dawn/front.svg",
  22060. extra: 2094 / 2016,
  22061. bottom: 0.025
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(5 + 9 / 12, "feet"),
  22066. weight: math.unit(160, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/dawn/back.svg",
  22070. extra: 2112 / 2080,
  22071. bottom: 0.005
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(6 + 7 / 12, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22085. {
  22086. anthro: {
  22087. height: math.unit(8 + 3 / 12, "feet"),
  22088. weight: math.unit(450, "lb"),
  22089. name: "Anthro",
  22090. image: {
  22091. source: "./media/characters/arador/anthro.svg",
  22092. extra: 1835 / 1718,
  22093. bottom: 0.025
  22094. }
  22095. },
  22096. feral: {
  22097. height: math.unit(4, "feet"),
  22098. weight: math.unit(200, "lb"),
  22099. name: "Feral",
  22100. image: {
  22101. source: "./media/characters/arador/feral.svg",
  22102. extra: 1683 / 1514,
  22103. bottom: 0.07
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(8 + 3 / 12, "feet")
  22111. },
  22112. {
  22113. name: "Macro",
  22114. height: math.unit(82.5, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 10 / 12, "feet"),
  22124. weight: math.unit(125, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/dharsi/front.svg",
  22128. extra: 716 / 630,
  22129. bottom: 0.035
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Nano",
  22136. height: math.unit(100, "nm")
  22137. },
  22138. {
  22139. name: "Micro",
  22140. height: math.unit(2, "inches")
  22141. },
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(5 + 10 / 12, "feet"),
  22145. default: true
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(1000, "feet")
  22150. },
  22151. {
  22152. name: "Megamacro",
  22153. height: math.unit(10, "miles")
  22154. },
  22155. {
  22156. name: "Gigamacro",
  22157. height: math.unit(3000, "miles")
  22158. },
  22159. {
  22160. name: "Teramacro",
  22161. height: math.unit(500000, "miles")
  22162. },
  22163. {
  22164. name: "Teramacro+",
  22165. height: math.unit(30, "galaxies")
  22166. },
  22167. ]
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22171. {
  22172. front: {
  22173. height: math.unit(6, "feet"),
  22174. weight: math.unit(150, "lb"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/deathy/front.svg",
  22178. extra: 1552 / 1463,
  22179. bottom: 0.025
  22180. }
  22181. },
  22182. side: {
  22183. height: math.unit(6, "feet"),
  22184. weight: math.unit(150, "lb"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/deathy/side.svg",
  22188. extra: 1604 / 1455,
  22189. bottom: 0.025
  22190. }
  22191. },
  22192. back: {
  22193. height: math.unit(6, "feet"),
  22194. weight: math.unit(150, "lb"),
  22195. name: "Back",
  22196. image: {
  22197. source: "./media/characters/deathy/back.svg",
  22198. extra: 1580 / 1463,
  22199. bottom: 0.005
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Micro",
  22206. height: math.unit(5, "millimeters")
  22207. },
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(6 + 5 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22217. {
  22218. front: {
  22219. height: math.unit(16, "feet"),
  22220. weight: math.unit(4000, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/juniper/front.svg",
  22224. bottom: 0.04
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(16, "feet"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(6, "feet"),
  22241. weight: math.unit(150, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/hipster/front.svg",
  22245. extra: 1312 / 1209,
  22246. bottom: 0.025
  22247. }
  22248. },
  22249. back: {
  22250. height: math.unit(6, "feet"),
  22251. weight: math.unit(150, "lb"),
  22252. name: "Back",
  22253. image: {
  22254. source: "./media/characters/hipster/back.svg",
  22255. extra: 1281 / 1196,
  22256. bottom: 0.01
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Micro",
  22263. height: math.unit(1, "mm")
  22264. },
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(4, "inches"),
  22268. default: true
  22269. },
  22270. {
  22271. name: "Macro",
  22272. height: math.unit(500, "feet")
  22273. },
  22274. {
  22275. name: "Megamacro",
  22276. height: math.unit(1000, "miles")
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(6, "feet"),
  22285. weight: math.unit(150, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/tendirmuldr/front.svg",
  22289. extra: 1878 / 1772,
  22290. bottom: 0.015
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Megamacro",
  22297. height: math.unit(1500, "miles"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22304. {
  22305. front: {
  22306. height: math.unit(14, "feet"),
  22307. weight: math.unit(12000, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/mort/front.svg",
  22311. extra: 365 / 318,
  22312. bottom: 0.01
  22313. }
  22314. },
  22315. side: {
  22316. height: math.unit(14, "feet"),
  22317. weight: math.unit(12000, "lb"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/mort/side.svg",
  22321. extra: 365 / 318,
  22322. bottom: 0.052
  22323. },
  22324. default: true
  22325. },
  22326. back: {
  22327. height: math.unit(14, "feet"),
  22328. weight: math.unit(12000, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/mort/back.svg",
  22332. extra: 371 / 332,
  22333. bottom: 0.18
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(14, "feet"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22347. {
  22348. front: {
  22349. height: math.unit(8, "feet"),
  22350. weight: math.unit(1, "ton"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/lycoa/front.svg",
  22354. extra: 1836/1728,
  22355. bottom: 81/1917
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(8, "feet"),
  22360. weight: math.unit(1, "ton"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/lycoa/back.svg",
  22364. extra: 1785/1720,
  22365. bottom: 91/1876
  22366. }
  22367. },
  22368. head: {
  22369. height: math.unit(1.6243, "feet"),
  22370. name: "Head",
  22371. image: {
  22372. source: "./media/characters/lycoa/head.svg",
  22373. extra: 1011/782,
  22374. bottom: 0/1011
  22375. }
  22376. },
  22377. tailmaw: {
  22378. height: math.unit(1.9, "feet"),
  22379. name: "Tailmaw",
  22380. image: {
  22381. source: "./media/characters/lycoa/tailmaw.svg"
  22382. }
  22383. },
  22384. tentacles: {
  22385. height: math.unit(2.1, "feet"),
  22386. name: "Tentacles",
  22387. image: {
  22388. source: "./media/characters/lycoa/tentacles.svg"
  22389. }
  22390. },
  22391. dick: {
  22392. height: math.unit(1.73, "feet"),
  22393. name: "Dick",
  22394. image: {
  22395. source: "./media/characters/lycoa/dick.svg"
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(8, "feet"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(30, "feet")
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22413. {
  22414. front: {
  22415. height: math.unit(4 + 2 / 12, "feet"),
  22416. weight: math.unit(70, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/naldara/front.svg",
  22420. extra: 1664/1387,
  22421. bottom: 81/1745
  22422. },
  22423. form: "anthro",
  22424. default: true
  22425. },
  22426. naga: {
  22427. height: math.unit(20, "feet"),
  22428. weight: math.unit(15000, "kg"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/naldara/naga.svg",
  22432. extra: 1590/1396,
  22433. bottom: 285/1875
  22434. },
  22435. form: "naga",
  22436. default: true
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(4 + 2 / 12, "feet"),
  22443. form: "anthro",
  22444. default: true
  22445. },
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(20, "feet"),
  22449. form: "naga",
  22450. default: true
  22451. },
  22452. ],
  22453. {
  22454. "anthro": {
  22455. name: "Anthro",
  22456. default: true
  22457. },
  22458. "naga": {
  22459. name: "Naga"
  22460. }
  22461. }
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(13 + 7 / 12, "feet"),
  22468. weight: math.unit(1500, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/briar/front.svg",
  22472. extra: 1223/1157,
  22473. bottom: 123/1346
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(13 + 7 / 12, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22487. {
  22488. side: {
  22489. height: math.unit(16, "feet"),
  22490. weight: math.unit(500, "lb"),
  22491. name: "Side",
  22492. image: {
  22493. source: "./media/characters/vanguard/side.svg",
  22494. extra: 1022/914,
  22495. bottom: 30/1052
  22496. }
  22497. },
  22498. sideAlt: {
  22499. height: math.unit(10, "feet"),
  22500. weight: math.unit(500, "lb"),
  22501. name: "Side (Alt)",
  22502. image: {
  22503. source: "./media/characters/vanguard/side-alt.svg",
  22504. extra: 502 / 425,
  22505. bottom: 0.087
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(17.71, "feet"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(7.5, "feet"),
  22522. weight: math.unit(2, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/artemis/work-safe-front.svg",
  22526. extra: 1192 / 1075,
  22527. bottom: 0.07
  22528. },
  22529. form: "work-safe",
  22530. default: true
  22531. },
  22532. frontNsfw: {
  22533. height: math.unit(7.5, "feet"),
  22534. weight: math.unit(2, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/artemis/calibrating-front.svg",
  22538. extra: 1192 / 1075,
  22539. bottom: 0.07
  22540. },
  22541. form: "calibrating",
  22542. default: true
  22543. },
  22544. frontNsfwer: {
  22545. height: math.unit(7.5, "feet"),
  22546. weight: math.unit(2, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/artemis/oversize-load-front.svg",
  22550. extra: 1192 / 1075,
  22551. bottom: 0.07
  22552. },
  22553. form: "oversize-load",
  22554. default: true
  22555. },
  22556. side: {
  22557. height: math.unit(7.5, "feet"),
  22558. weight: math.unit(2, "lb"),
  22559. name: "Side",
  22560. image: {
  22561. source: "./media/characters/artemis/work-safe-side.svg",
  22562. extra: 1192 / 1075,
  22563. bottom: 0.07
  22564. },
  22565. form: "work-safe"
  22566. },
  22567. sideNsfw: {
  22568. height: math.unit(7.5, "feet"),
  22569. weight: math.unit(2, "lb"),
  22570. name: "Side",
  22571. image: {
  22572. source: "./media/characters/artemis/calibrating-side.svg",
  22573. extra: 1192 / 1075,
  22574. bottom: 0.07
  22575. },
  22576. form: "calibrating"
  22577. },
  22578. sideNsfwer: {
  22579. height: math.unit(7.5, "feet"),
  22580. weight: math.unit(2, "lb"),
  22581. name: "Side",
  22582. image: {
  22583. source: "./media/characters/artemis/oversize-load-side.svg",
  22584. extra: 1192 / 1075,
  22585. bottom: 0.07
  22586. },
  22587. form: "oversize-load"
  22588. },
  22589. maw: {
  22590. height: math.unit(1.1, "feet"),
  22591. name: "Maw",
  22592. image: {
  22593. source: "./media/characters/artemis/maw.svg"
  22594. },
  22595. form: "work-safe"
  22596. },
  22597. stomach: {
  22598. height: math.unit(0.95, "feet"),
  22599. name: "Stomach",
  22600. image: {
  22601. source: "./media/characters/artemis/stomach.svg"
  22602. },
  22603. form: "work-safe"
  22604. },
  22605. dickCanine: {
  22606. height: math.unit(1, "feet"),
  22607. name: "Dick (Canine)",
  22608. image: {
  22609. source: "./media/characters/artemis/dick-canine.svg"
  22610. },
  22611. form: "calibrating"
  22612. },
  22613. dickEquine: {
  22614. height: math.unit(0.85, "feet"),
  22615. name: "Dick (Equine)",
  22616. image: {
  22617. source: "./media/characters/artemis/dick-equine.svg"
  22618. },
  22619. form: "calibrating"
  22620. },
  22621. dickExotic: {
  22622. height: math.unit(0.85, "feet"),
  22623. name: "Dick (Exotic)",
  22624. image: {
  22625. source: "./media/characters/artemis/dick-exotic.svg"
  22626. },
  22627. form: "calibrating"
  22628. },
  22629. dickCanineBigger: {
  22630. height: math.unit(1 * 1.33, "feet"),
  22631. name: "Dick (Canine)",
  22632. image: {
  22633. source: "./media/characters/artemis/dick-canine.svg"
  22634. },
  22635. form: "oversize-load"
  22636. },
  22637. dickEquineBigger: {
  22638. height: math.unit(0.85 * 1.33, "feet"),
  22639. name: "Dick (Equine)",
  22640. image: {
  22641. source: "./media/characters/artemis/dick-equine.svg"
  22642. },
  22643. form: "oversize-load"
  22644. },
  22645. dickExoticBigger: {
  22646. height: math.unit(0.85 * 1.33, "feet"),
  22647. name: "Dick (Exotic)",
  22648. image: {
  22649. source: "./media/characters/artemis/dick-exotic.svg"
  22650. },
  22651. form: "oversize-load"
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Normal",
  22657. height: math.unit(7.5, "feet"),
  22658. form: "work-safe",
  22659. default: true
  22660. },
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(7.5, "feet"),
  22664. form: "calibrating",
  22665. default: true
  22666. },
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(7.5, "feet"),
  22670. form: "oversize-load",
  22671. default: true
  22672. },
  22673. {
  22674. name: "Enlarged",
  22675. height: math.unit(12, "feet"),
  22676. form: "work-safe",
  22677. },
  22678. {
  22679. name: "Enlarged",
  22680. height: math.unit(12, "feet"),
  22681. form: "calibrating",
  22682. },
  22683. {
  22684. name: "Enlarged",
  22685. height: math.unit(12, "feet"),
  22686. form: "oversize-load",
  22687. },
  22688. ],
  22689. {
  22690. "work-safe": {
  22691. name: "Work-Safe",
  22692. default: true
  22693. },
  22694. "calibrating": {
  22695. name: "Calibrating"
  22696. },
  22697. "oversize-load": {
  22698. name: "Oversize Load"
  22699. }
  22700. }
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(5 + 3 / 12, "feet"),
  22707. weight: math.unit(160, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/kira/front.svg",
  22711. extra: 906 / 786,
  22712. bottom: 0.01
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(5 + 3 / 12, "feet"),
  22717. weight: math.unit(160, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/kira/back.svg",
  22721. extra: 882 / 757,
  22722. bottom: 0.005
  22723. }
  22724. },
  22725. frontDressed: {
  22726. height: math.unit(5 + 3 / 12, "feet"),
  22727. weight: math.unit(160, "lb"),
  22728. name: "Front (Dressed)",
  22729. image: {
  22730. source: "./media/characters/kira/front-dressed.svg",
  22731. extra: 906 / 786,
  22732. bottom: 0.01
  22733. }
  22734. },
  22735. beans: {
  22736. height: math.unit(0.92, "feet"),
  22737. name: "Beans",
  22738. image: {
  22739. source: "./media/characters/kira/beans.svg"
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(5 + 3 / 12, "feet"),
  22747. default: true
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(5 + 4 / 12, "feet"),
  22756. weight: math.unit(145, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/scramble/front.svg",
  22760. extra: 763 / 727,
  22761. bottom: 0.05
  22762. }
  22763. },
  22764. back: {
  22765. height: math.unit(5 + 4 / 12, "feet"),
  22766. weight: math.unit(145, "lb"),
  22767. name: "Back",
  22768. image: {
  22769. source: "./media/characters/scramble/back.svg",
  22770. extra: 826 / 737,
  22771. bottom: 0.002
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(5 + 4 / 12, "feet"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22785. {
  22786. side: {
  22787. height: math.unit(6 + 2 / 12, "feet"),
  22788. weight: math.unit(190, "lb"),
  22789. name: "Side",
  22790. image: {
  22791. source: "./media/characters/biscuit/side.svg",
  22792. extra: 858 / 791,
  22793. bottom: 0.044
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(6 + 2 / 12, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(5 + 2 / 12, "feet"),
  22810. weight: math.unit(120, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/poffin/front.svg",
  22814. extra: 786 / 680,
  22815. bottom: 0.005
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(5 + 2 / 12, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(6 + 3 / 12, "feet"),
  22832. weight: math.unit(519, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/dhari/front.svg",
  22836. extra: 1048 / 946,
  22837. bottom: 0.015
  22838. }
  22839. },
  22840. back: {
  22841. height: math.unit(6 + 3 / 12, "feet"),
  22842. weight: math.unit(519, "lb"),
  22843. name: "Back",
  22844. image: {
  22845. source: "./media/characters/dhari/back.svg",
  22846. extra: 1048 / 931,
  22847. bottom: 0.005
  22848. }
  22849. },
  22850. frontDressed: {
  22851. height: math.unit(6 + 3 / 12, "feet"),
  22852. weight: math.unit(519, "lb"),
  22853. name: "Front (Dressed)",
  22854. image: {
  22855. source: "./media/characters/dhari/front-dressed.svg",
  22856. extra: 1713 / 1546,
  22857. bottom: 0.02
  22858. }
  22859. },
  22860. backDressed: {
  22861. height: math.unit(6 + 3 / 12, "feet"),
  22862. weight: math.unit(519, "lb"),
  22863. name: "Back (Dressed)",
  22864. image: {
  22865. source: "./media/characters/dhari/back-dressed.svg",
  22866. extra: 1699 / 1537,
  22867. bottom: 0.01
  22868. }
  22869. },
  22870. maw: {
  22871. height: math.unit(0.95, "feet"),
  22872. name: "Maw",
  22873. image: {
  22874. source: "./media/characters/dhari/maw.svg"
  22875. }
  22876. },
  22877. wereFront: {
  22878. height: math.unit(12 + 8 / 12, "feet"),
  22879. weight: math.unit(4000, "lb"),
  22880. name: "Front (Were)",
  22881. image: {
  22882. source: "./media/characters/dhari/were-front.svg",
  22883. extra: 1065 / 969,
  22884. bottom: 0.015
  22885. }
  22886. },
  22887. wereBack: {
  22888. height: math.unit(12 + 8 / 12, "feet"),
  22889. weight: math.unit(4000, "lb"),
  22890. name: "Back (Were)",
  22891. image: {
  22892. source: "./media/characters/dhari/were-back.svg",
  22893. extra: 1065 / 969,
  22894. bottom: 0.012
  22895. }
  22896. },
  22897. wereMaw: {
  22898. height: math.unit(0.625, "meters"),
  22899. name: "Maw (Were)",
  22900. image: {
  22901. source: "./media/characters/dhari/were-maw.svg"
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(6 + 3 / 12, "feet"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22915. {
  22916. anthro: {
  22917. height: math.unit(5 + 7 / 12, "feet"),
  22918. weight: math.unit(175, "lb"),
  22919. name: "Anthro",
  22920. image: {
  22921. source: "./media/characters/rena-dyne/anthro.svg",
  22922. extra: 1849 / 1785,
  22923. bottom: 0.005
  22924. }
  22925. },
  22926. taur: {
  22927. height: math.unit(15 + 6 / 12, "feet"),
  22928. weight: math.unit(8000, "lb"),
  22929. name: "Taur",
  22930. image: {
  22931. source: "./media/characters/rena-dyne/taur.svg",
  22932. extra: 2315 / 2234,
  22933. bottom: 0.033
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Normal",
  22940. height: math.unit(5 + 7 / 12, "feet"),
  22941. default: true
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22947. {
  22948. front: {
  22949. height: math.unit(8, "feet"),
  22950. weight: math.unit(600, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/weremeep/front.svg",
  22954. extra: 970/849,
  22955. bottom: 7/977
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(8, "feet"),
  22963. default: true
  22964. },
  22965. {
  22966. name: "Lorg",
  22967. height: math.unit(12, "feet")
  22968. },
  22969. {
  22970. name: "Oh Lawd She Comin'",
  22971. height: math.unit(20, "feet")
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22977. {
  22978. front: {
  22979. height: math.unit(4, "feet"),
  22980. weight: math.unit(90, "lb"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/reza/front.svg",
  22984. extra: 1183 / 1111,
  22985. bottom: 0.017
  22986. }
  22987. },
  22988. back: {
  22989. height: math.unit(4, "feet"),
  22990. weight: math.unit(90, "lb"),
  22991. name: "Back",
  22992. image: {
  22993. source: "./media/characters/reza/back.svg",
  22994. extra: 1183 / 1111,
  22995. bottom: 0.01
  22996. }
  22997. },
  22998. drake: {
  22999. height: math.unit(30, "feet"),
  23000. weight: math.unit(246960, "lb"),
  23001. name: "Drake",
  23002. image: {
  23003. source: "./media/characters/reza/drake.svg",
  23004. extra: 2350 / 2024,
  23005. bottom: 60.7 / 2403
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(4, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23019. {
  23020. side: {
  23021. height: math.unit(15, "feet"),
  23022. weight: math.unit(14, "tons"),
  23023. name: "Side",
  23024. image: {
  23025. source: "./media/characters/athea/side.svg",
  23026. extra: 960 / 540,
  23027. bottom: 0.003
  23028. }
  23029. },
  23030. sitting: {
  23031. height: math.unit(6 * 2.85, "feet"),
  23032. weight: math.unit(14, "tons"),
  23033. name: "Sitting",
  23034. image: {
  23035. source: "./media/characters/athea/sitting.svg",
  23036. extra: 621 / 581,
  23037. bottom: 0.075
  23038. }
  23039. },
  23040. maw: {
  23041. height: math.unit(7.59498031496063, "feet"),
  23042. name: "Maw",
  23043. image: {
  23044. source: "./media/characters/athea/maw.svg"
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Lap Cat",
  23051. height: math.unit(2.5, "feet")
  23052. },
  23053. {
  23054. name: "Minimacro",
  23055. height: math.unit(15, "feet"),
  23056. default: true
  23057. },
  23058. {
  23059. name: "Macro",
  23060. height: math.unit(120, "feet")
  23061. },
  23062. {
  23063. name: "Macro+",
  23064. height: math.unit(640, "feet")
  23065. },
  23066. {
  23067. name: "Colossus",
  23068. height: math.unit(2.2, "miles")
  23069. },
  23070. ]
  23071. ))
  23072. characterMakers.push(() => makeCharacter(
  23073. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23074. {
  23075. front: {
  23076. height: math.unit(8 + 8 / 12, "feet"),
  23077. weight: math.unit(130, "kg"),
  23078. name: "Front",
  23079. image: {
  23080. source: "./media/characters/seroko/front.svg",
  23081. extra: 1385 / 1280,
  23082. bottom: 0.025
  23083. }
  23084. },
  23085. back: {
  23086. height: math.unit(8 + 8 / 12, "feet"),
  23087. weight: math.unit(130, "kg"),
  23088. name: "Back",
  23089. image: {
  23090. source: "./media/characters/seroko/back.svg",
  23091. extra: 1369 / 1238,
  23092. bottom: 0.018
  23093. }
  23094. },
  23095. frontDressed: {
  23096. height: math.unit(8 + 8 / 12, "feet"),
  23097. weight: math.unit(130, "kg"),
  23098. name: "Front (Dressed)",
  23099. image: {
  23100. source: "./media/characters/seroko/front-dressed.svg",
  23101. extra: 1366 / 1275,
  23102. bottom: 0.03
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(8 + 8 / 12, "feet"),
  23110. default: true
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(5.5, "feet"),
  23119. weight: math.unit(160, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/quatzi/front.svg",
  23123. extra: 2346 / 2242,
  23124. bottom: 0.015
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(5.5, "feet"),
  23132. default: true
  23133. },
  23134. {
  23135. name: "Big",
  23136. height: math.unit(7.7, "feet")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(5 + 11 / 12, "feet"),
  23145. weight: math.unit(180, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/sen/front.svg",
  23149. extra: 1321 / 1254,
  23150. bottom: 0.015
  23151. }
  23152. },
  23153. side: {
  23154. height: math.unit(5 + 11 / 12, "feet"),
  23155. weight: math.unit(180, "lb"),
  23156. name: "Side",
  23157. image: {
  23158. source: "./media/characters/sen/side.svg",
  23159. extra: 1321 / 1254,
  23160. bottom: 0.007
  23161. }
  23162. },
  23163. back: {
  23164. height: math.unit(5 + 11 / 12, "feet"),
  23165. weight: math.unit(180, "lb"),
  23166. name: "Back",
  23167. image: {
  23168. source: "./media/characters/sen/back.svg",
  23169. extra: 1321 / 1254
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(5 + 11 / 12, "feet"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(166.6, "cm"),
  23186. weight: math.unit(66.6, "kg"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/fruity/front.svg",
  23190. extra: 1510 / 1386,
  23191. bottom: 0.04
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(166.6, "cm"),
  23196. weight: math.unit(66.6, "lb"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/fruity/back.svg",
  23200. extra: 1563 / 1435,
  23201. bottom: 0.005
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(166.6, "cm"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Demonic",
  23213. height: math.unit(166.6, "feet")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23219. {
  23220. side: {
  23221. height: math.unit(10, "feet"),
  23222. weight: math.unit(500, "lb"),
  23223. name: "Side",
  23224. image: {
  23225. source: "./media/characters/zost/side.svg",
  23226. extra: 2870/2533,
  23227. bottom: 252/3122
  23228. }
  23229. },
  23230. mawFront: {
  23231. height: math.unit(1.08, "meters"),
  23232. name: "Maw (Front)",
  23233. image: {
  23234. source: "./media/characters/zost/maw-front.svg"
  23235. }
  23236. },
  23237. mawSide: {
  23238. height: math.unit(2.66, "feet"),
  23239. name: "Maw (Side)",
  23240. image: {
  23241. source: "./media/characters/zost/maw-side.svg"
  23242. }
  23243. },
  23244. wingspan: {
  23245. height: math.unit(7.4, "feet"),
  23246. name: "Wingspan",
  23247. image: {
  23248. source: "./media/characters/zost/wingspan.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(10, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 4 / 12, "feet"),
  23265. weight: math.unit(120, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/luci/front.svg",
  23269. extra: 1985 / 1884,
  23270. bottom: 0.04
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(5 + 4 / 12, "feet"),
  23275. weight: math.unit(120, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/luci/back.svg",
  23279. extra: 1892 / 1791,
  23280. bottom: 0.002
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(5 + 4 / 12, "feet"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(1500, "feet"),
  23297. weight: math.unit(3.8e6, "tons"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/2th/front.svg",
  23301. extra: 3489 / 3350,
  23302. bottom: 0.1
  23303. }
  23304. },
  23305. foot: {
  23306. height: math.unit(461, "feet"),
  23307. name: "Foot",
  23308. image: {
  23309. source: "./media/characters/2th/foot.svg"
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "\"Micro\"",
  23316. height: math.unit(15 + 7 / 12, "feet")
  23317. },
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(1500, "feet"),
  23321. default: true
  23322. },
  23323. {
  23324. name: "Macro",
  23325. height: math.unit(5000, "feet")
  23326. },
  23327. {
  23328. name: "Megamacro",
  23329. height: math.unit(15, "miles")
  23330. },
  23331. {
  23332. name: "Gigamacro",
  23333. height: math.unit(4000, "miles")
  23334. },
  23335. {
  23336. name: "Galactic",
  23337. height: math.unit(50, "AU")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(5 + 6 / 12, "feet"),
  23346. weight: math.unit(220, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/amethyst/front.svg",
  23350. extra: 2078 / 2040,
  23351. bottom: 0.045
  23352. }
  23353. },
  23354. back: {
  23355. height: math.unit(5 + 6 / 12, "feet"),
  23356. weight: math.unit(220, "lb"),
  23357. name: "Back",
  23358. image: {
  23359. source: "./media/characters/amethyst/back.svg",
  23360. extra: 2021 / 1989,
  23361. bottom: 0.02
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(5 + 6 / 12, "feet"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(4 + 11 / 12, "feet"),
  23378. weight: math.unit(120, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/yumi-akiyama/front.svg",
  23382. extra: 1327 / 1235,
  23383. bottom: 0.02
  23384. }
  23385. },
  23386. back: {
  23387. height: math.unit(4 + 11 / 12, "feet"),
  23388. weight: math.unit(120, "lb"),
  23389. name: "Back",
  23390. image: {
  23391. source: "./media/characters/yumi-akiyama/back.svg",
  23392. extra: 1287 / 1245,
  23393. bottom: 0.002
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Galactic",
  23400. height: math.unit(50, "galaxies"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Universal",
  23405. height: math.unit(100, "universes")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(8, "feet"),
  23414. weight: math.unit(500, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/rifter-yrmori/front.svg",
  23418. extra: 1180 / 1125,
  23419. bottom: 0.02
  23420. }
  23421. },
  23422. back: {
  23423. height: math.unit(8, "feet"),
  23424. weight: math.unit(500, "lb"),
  23425. name: "Back",
  23426. image: {
  23427. source: "./media/characters/rifter-yrmori/back.svg",
  23428. extra: 1190 / 1145,
  23429. bottom: 0.001
  23430. }
  23431. },
  23432. wings: {
  23433. height: math.unit(7.75, "feet"),
  23434. weight: math.unit(500, "lb"),
  23435. name: "Wings",
  23436. image: {
  23437. source: "./media/characters/rifter-yrmori/wings.svg",
  23438. extra: 1357 / 1285
  23439. }
  23440. },
  23441. maw: {
  23442. height: math.unit(0.8, "feet"),
  23443. name: "Maw",
  23444. image: {
  23445. source: "./media/characters/rifter-yrmori/maw.svg"
  23446. }
  23447. },
  23448. mawfront: {
  23449. height: math.unit(1.45, "feet"),
  23450. name: "Maw (Front)",
  23451. image: {
  23452. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(8, "feet"),
  23460. default: true
  23461. },
  23462. {
  23463. name: "Macro",
  23464. height: math.unit(42, "meters")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23470. {
  23471. were: {
  23472. height: math.unit(25 + 6 / 12, "feet"),
  23473. weight: math.unit(10000, "lb"),
  23474. name: "Were",
  23475. image: {
  23476. source: "./media/characters/tahajin/were.svg",
  23477. extra: 801 / 770,
  23478. bottom: 0.042
  23479. }
  23480. },
  23481. aquatic: {
  23482. height: math.unit(6 + 4 / 12, "feet"),
  23483. weight: math.unit(160, "lb"),
  23484. name: "Aquatic",
  23485. image: {
  23486. source: "./media/characters/tahajin/aquatic.svg",
  23487. extra: 572 / 542,
  23488. bottom: 0.04
  23489. }
  23490. },
  23491. chow: {
  23492. height: math.unit(8 + 11 / 12, "feet"),
  23493. weight: math.unit(450, "lb"),
  23494. name: "Chow",
  23495. image: {
  23496. source: "./media/characters/tahajin/chow.svg",
  23497. extra: 660 / 640,
  23498. bottom: 0.015
  23499. }
  23500. },
  23501. demiNaga: {
  23502. height: math.unit(6 + 8 / 12, "feet"),
  23503. weight: math.unit(300, "lb"),
  23504. name: "Demi Naga",
  23505. image: {
  23506. source: "./media/characters/tahajin/demi-naga.svg",
  23507. extra: 643 / 615,
  23508. bottom: 0.1
  23509. }
  23510. },
  23511. data: {
  23512. height: math.unit(5, "inches"),
  23513. weight: math.unit(0.1, "lb"),
  23514. name: "Data",
  23515. image: {
  23516. source: "./media/characters/tahajin/data.svg"
  23517. }
  23518. },
  23519. fluu: {
  23520. height: math.unit(5 + 7 / 12, "feet"),
  23521. weight: math.unit(140, "lb"),
  23522. name: "Fluu",
  23523. image: {
  23524. source: "./media/characters/tahajin/fluu.svg",
  23525. extra: 628 / 592,
  23526. bottom: 0.02
  23527. }
  23528. },
  23529. starWarrior: {
  23530. height: math.unit(4 + 5 / 12, "feet"),
  23531. weight: math.unit(50, "lb"),
  23532. name: "Star Warrior",
  23533. image: {
  23534. source: "./media/characters/tahajin/star-warrior.svg"
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Normal",
  23541. height: math.unit(25 + 6 / 12, "feet"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(8, "feet"),
  23551. weight: math.unit(350, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/gabira/front.svg",
  23555. extra: 1261/1154,
  23556. bottom: 51/1312
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(8, "feet"),
  23561. weight: math.unit(350, "lb"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/gabira/back.svg",
  23565. extra: 1265/1163,
  23566. bottom: 46/1311
  23567. }
  23568. },
  23569. head: {
  23570. height: math.unit(2.85, "feet"),
  23571. name: "Head",
  23572. image: {
  23573. source: "./media/characters/gabira/head.svg"
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(8, "feet"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(5 + 3 / 12, "feet"),
  23590. weight: math.unit(137, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/sasha-katraine/front.svg",
  23594. extra: 1745/1694,
  23595. bottom: 37/1782
  23596. }
  23597. },
  23598. back: {
  23599. height: math.unit(5 + 3 / 12, "feet"),
  23600. weight: math.unit(137, "lb"),
  23601. name: "Back",
  23602. image: {
  23603. source: "./media/characters/sasha-katraine/back.svg",
  23604. extra: 1776/1699,
  23605. bottom: 26/1802
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Micro",
  23612. height: math.unit(5, "inches")
  23613. },
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(5 + 3 / 12, "feet"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23623. {
  23624. side: {
  23625. height: math.unit(4, "inches"),
  23626. weight: math.unit(200, "grams"),
  23627. name: "Side",
  23628. image: {
  23629. source: "./media/characters/der/side.svg",
  23630. extra: 719 / 400,
  23631. bottom: 30.6 / 749.9187
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Micro",
  23638. height: math.unit(4, "inches"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23645. {
  23646. side: {
  23647. height: math.unit(30, "meters"),
  23648. weight: math.unit(700, "tonnes"),
  23649. name: "Side",
  23650. image: {
  23651. source: "./media/characters/fixerdragon/side.svg",
  23652. extra: (1293.0514 - 116.03) / 1106.86,
  23653. bottom: 116.03 / 1293.0514
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Planck",
  23660. height: math.unit(1.6e-35, "meters")
  23661. },
  23662. {
  23663. name: "Micro",
  23664. height: math.unit(0.4, "meters")
  23665. },
  23666. {
  23667. name: "Normal",
  23668. height: math.unit(30, "meters"),
  23669. default: true
  23670. },
  23671. {
  23672. name: "Megamacro",
  23673. height: math.unit(1.2, "megameters")
  23674. },
  23675. {
  23676. name: "Teramacro",
  23677. height: math.unit(130, "terameters")
  23678. },
  23679. {
  23680. name: "Yottamacro",
  23681. height: math.unit(6200, "yottameters")
  23682. },
  23683. ]
  23684. ));
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(8, "feet"),
  23690. weight: math.unit(250, "lb"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/kite/front.svg",
  23694. extra: 2796 / 2659,
  23695. bottom: 0.002
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(8, "feet"),
  23703. default: true
  23704. },
  23705. {
  23706. name: "Macro",
  23707. height: math.unit(360, "feet")
  23708. },
  23709. {
  23710. name: "Megamacro",
  23711. height: math.unit(1500, "feet")
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23717. {
  23718. anthro_front: {
  23719. height: math.unit(5 + 11/12, "feet"),
  23720. weight: math.unit(170, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23724. extra: 1735/1585,
  23725. bottom: 96/1831
  23726. },
  23727. form: "anthro",
  23728. default: true
  23729. },
  23730. anthro_back: {
  23731. height: math.unit(5 + 11/12, "feet"),
  23732. weight: math.unit(170, "lb"),
  23733. name: "Back",
  23734. image: {
  23735. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23736. extra: 1749/1607,
  23737. bottom: 28/1777
  23738. },
  23739. form: "anthro"
  23740. },
  23741. anthro_male: {
  23742. height: math.unit(5 + 11/12, "feet"),
  23743. weight: math.unit(170, "lb"),
  23744. name: "Male",
  23745. image: {
  23746. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23747. extra: 1855/1713,
  23748. bottom: 63/1918
  23749. },
  23750. form: "anthro"
  23751. },
  23752. taur_front: {
  23753. height: math.unit(5 + 7/12, "feet"),
  23754. weight: math.unit(170, "lb"),
  23755. name: "Front",
  23756. image: {
  23757. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23758. extra: 1151/1059,
  23759. bottom: 356/1507
  23760. },
  23761. form: "taur",
  23762. default: true
  23763. },
  23764. anthro_frontDressed: {
  23765. height: math.unit(5 + 11/12, "feet"),
  23766. weight: math.unit(170, "lb"),
  23767. name: "Front (Dressed)",
  23768. image: {
  23769. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23770. extra: 1735/1585,
  23771. bottom: 96/1831
  23772. },
  23773. form: "anthro"
  23774. },
  23775. anthro_backDressed: {
  23776. height: math.unit(5 + 11/12, "feet"),
  23777. weight: math.unit(170, "lb"),
  23778. name: "Back (Dressed)",
  23779. image: {
  23780. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23781. extra: 1749/1607,
  23782. bottom: 28/1777
  23783. },
  23784. form: "anthro"
  23785. },
  23786. anthro_maleDressed: {
  23787. height: math.unit(5 + 11/12, "feet"),
  23788. weight: math.unit(170, "lb"),
  23789. name: "Male (Dressed)",
  23790. image: {
  23791. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23792. extra: 1855/1713,
  23793. bottom: 63/1918
  23794. },
  23795. form: "anthro"
  23796. },
  23797. taur_frontDressed: {
  23798. height: math.unit(5 + 7/12, "feet"),
  23799. weight: math.unit(170, "lb"),
  23800. name: "Front (Dressed)",
  23801. image: {
  23802. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23803. extra: 1151/1059,
  23804. bottom: 356/1507
  23805. },
  23806. form: "taur"
  23807. },
  23808. maw: {
  23809. height: math.unit(1.46, "feet"),
  23810. name: "Maw",
  23811. image: {
  23812. source: "./media/characters/poojawa-vynar/maw.svg"
  23813. },
  23814. allForms: true
  23815. },
  23816. head: {
  23817. height: math.unit(2.34, "feet"),
  23818. name: "Head",
  23819. image: {
  23820. source: "./media/characters/poojawa-vynar/head.svg"
  23821. },
  23822. allForms: true
  23823. },
  23824. leftPaw: {
  23825. height: math.unit(1.72, "feet"),
  23826. name: "Left Paw",
  23827. image: {
  23828. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23829. },
  23830. allForms: true
  23831. },
  23832. rightPaw: {
  23833. height: math.unit(1.61, "feet"),
  23834. name: "Right Paw",
  23835. image: {
  23836. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23837. },
  23838. allForms: true
  23839. },
  23840. toering: {
  23841. height: math.unit(2.9, "inches"),
  23842. name: "Toering",
  23843. image: {
  23844. source: "./media/characters/poojawa-vynar/toering.svg"
  23845. },
  23846. allForms: true
  23847. },
  23848. shaft: {
  23849. height: math.unit(0.625, "feet"),
  23850. name: "Shaft",
  23851. image: {
  23852. source: "./media/characters/poojawa-vynar/shaft.svg"
  23853. },
  23854. allForms: true
  23855. },
  23856. spade: {
  23857. height: math.unit(0.42, "feet"),
  23858. name: "Spade",
  23859. image: {
  23860. source: "./media/characters/poojawa-vynar/spade.svg"
  23861. },
  23862. allForms: true
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Shortstack",
  23868. height: math.unit(4, "feet"),
  23869. form: "anthro"
  23870. },
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(5 + 11 / 12, "feet"),
  23874. form: "anthro",
  23875. default: true
  23876. },
  23877. {
  23878. name: "Tauric",
  23879. height: math.unit(4, "meters"),
  23880. form: "taur",
  23881. default: true
  23882. },
  23883. ],
  23884. {
  23885. "anthro": {
  23886. name: "Anthro",
  23887. default: true
  23888. },
  23889. "taur": {
  23890. name: "Taur",
  23891. },
  23892. }
  23893. ))
  23894. characterMakers.push(() => makeCharacter(
  23895. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23896. {
  23897. front: {
  23898. height: math.unit(293, "meters"),
  23899. weight: math.unit(70400, "tons"),
  23900. name: "Front",
  23901. image: {
  23902. source: "./media/characters/violette/front.svg",
  23903. extra: 1227 / 1180,
  23904. bottom: 0.005
  23905. }
  23906. },
  23907. back: {
  23908. height: math.unit(293, "meters"),
  23909. weight: math.unit(70400, "tons"),
  23910. name: "Back",
  23911. image: {
  23912. source: "./media/characters/violette/back.svg",
  23913. extra: 1227 / 1180,
  23914. bottom: 0.005
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Macro",
  23921. height: math.unit(293, "meters"),
  23922. default: true
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(1050, "feet"),
  23931. weight: math.unit(200000, "tons"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/alessandra/front.svg",
  23935. extra: 960 / 912,
  23936. bottom: 0.06
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Macro",
  23943. height: math.unit(1050, "feet")
  23944. },
  23945. {
  23946. name: "Macro+",
  23947. height: math.unit(900, "meters"),
  23948. default: true
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23954. {
  23955. front: {
  23956. height: math.unit(5, "feet"),
  23957. weight: math.unit(187, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/person/front.svg",
  23961. extra: 3087 / 2945,
  23962. bottom: 91 / 3181
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Micro",
  23969. height: math.unit(3, "inches")
  23970. },
  23971. {
  23972. name: "Normal",
  23973. height: math.unit(5, "feet"),
  23974. default: true
  23975. },
  23976. {
  23977. name: "Macro",
  23978. height: math.unit(90, "feet")
  23979. },
  23980. {
  23981. name: "Max Size",
  23982. height: math.unit(280, "feet")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(4.5, "meters"),
  23991. weight: math.unit(3200, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/ty/front.svg",
  23995. extra: 1038 / 960,
  23996. bottom: 31.156 / 1068
  23997. }
  23998. },
  23999. back: {
  24000. height: math.unit(4.5, "meters"),
  24001. weight: math.unit(3200, "lb"),
  24002. name: "Back",
  24003. image: {
  24004. source: "./media/characters/ty/back.svg",
  24005. extra: 1044 / 966,
  24006. bottom: 7.48 / 1049
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(4.5, "meters"),
  24014. default: true
  24015. },
  24016. ]
  24017. ))
  24018. characterMakers.push(() => makeCharacter(
  24019. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24020. {
  24021. front: {
  24022. height: math.unit(5 + 4 / 12, "feet"),
  24023. weight: math.unit(115, "lb"),
  24024. name: "Front",
  24025. image: {
  24026. source: "./media/characters/rocky/front.svg",
  24027. extra: 1012 / 975,
  24028. bottom: 54 / 1066
  24029. }
  24030. },
  24031. },
  24032. [
  24033. {
  24034. name: "Normal",
  24035. height: math.unit(5 + 4 / 12, "feet"),
  24036. default: true
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24042. {
  24043. upright: {
  24044. height: math.unit(6, "meters"),
  24045. weight: math.unit(4000, "kg"),
  24046. name: "Upright",
  24047. image: {
  24048. source: "./media/characters/ruin/upright.svg",
  24049. extra: 668 / 661,
  24050. bottom: 42 / 799.8396
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(6, "meters"),
  24058. default: true
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24064. {
  24065. front: {
  24066. height: math.unit(5, "feet"),
  24067. weight: math.unit(106, "lb"),
  24068. name: "Front",
  24069. image: {
  24070. source: "./media/characters/robin/front.svg",
  24071. extra: 862 / 799,
  24072. bottom: 42.4 / 914.8856
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(5, "feet"),
  24080. default: true
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24086. {
  24087. side: {
  24088. height: math.unit(3, "feet"),
  24089. weight: math.unit(225, "lb"),
  24090. name: "Side",
  24091. image: {
  24092. source: "./media/characters/saian/side.svg",
  24093. extra: 566 / 356,
  24094. bottom: 79.7 / 643
  24095. }
  24096. },
  24097. maw: {
  24098. height: math.unit(2.85, "feet"),
  24099. name: "Maw",
  24100. image: {
  24101. source: "./media/characters/saian/maw.svg"
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(3, "feet"),
  24109. default: true
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24115. {
  24116. side: {
  24117. height: math.unit(8, "feet"),
  24118. weight: math.unit(300, "lb"),
  24119. name: "Side",
  24120. image: {
  24121. source: "./media/characters/equus-silvermane/side.svg",
  24122. extra: 2176 / 2050,
  24123. bottom: 65.7 / 2245
  24124. }
  24125. },
  24126. front: {
  24127. height: math.unit(8, "feet"),
  24128. weight: math.unit(300, "lb"),
  24129. name: "Front",
  24130. image: {
  24131. source: "./media/characters/equus-silvermane/front.svg",
  24132. extra: 4633 / 4400,
  24133. bottom: 71.3 / 4706.915
  24134. }
  24135. },
  24136. sideStepping: {
  24137. height: math.unit(8, "feet"),
  24138. weight: math.unit(300, "lb"),
  24139. name: "Side (Stepping)",
  24140. image: {
  24141. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24142. extra: 1968 / 1860,
  24143. bottom: 16.4 / 1989
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(8, "feet")
  24151. },
  24152. {
  24153. name: "Minimacro",
  24154. height: math.unit(75, "feet"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Macro",
  24159. height: math.unit(150, "feet")
  24160. },
  24161. {
  24162. name: "Macro+",
  24163. height: math.unit(1000, "feet")
  24164. },
  24165. {
  24166. name: "Megamacro",
  24167. height: math.unit(1, "mile")
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24173. {
  24174. side: {
  24175. height: math.unit(20, "feet"),
  24176. weight: math.unit(30000, "kg"),
  24177. name: "Side",
  24178. image: {
  24179. source: "./media/characters/windar/side.svg",
  24180. extra: 1491 / 1248,
  24181. bottom: 82.56 / 1568
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Normal",
  24188. height: math.unit(20, "feet"),
  24189. default: true
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24195. {
  24196. side: {
  24197. height: math.unit(15.66, "feet"),
  24198. weight: math.unit(150, "lb"),
  24199. name: "Side",
  24200. image: {
  24201. source: "./media/characters/melody/side.svg",
  24202. extra: 1097 / 944,
  24203. bottom: 11.8 / 1109
  24204. }
  24205. },
  24206. sideOutfit: {
  24207. height: math.unit(15.66, "feet"),
  24208. weight: math.unit(150, "lb"),
  24209. name: "Side (Outfit)",
  24210. image: {
  24211. source: "./media/characters/melody/side-outfit.svg",
  24212. extra: 1097 / 944,
  24213. bottom: 11.8 / 1109
  24214. }
  24215. },
  24216. },
  24217. [
  24218. {
  24219. name: "Normal",
  24220. height: math.unit(15.66, "feet"),
  24221. default: true
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24227. {
  24228. armoredFront: {
  24229. height: math.unit(8, "feet"),
  24230. weight: math.unit(325, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/windera/armored-front.svg",
  24234. extra: 1830/1598,
  24235. bottom: 151/1981
  24236. },
  24237. form: "armored",
  24238. default: true
  24239. },
  24240. macroFront: {
  24241. height: math.unit(70, "feet"),
  24242. weight: math.unit(315453, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/windera/macro-front.svg",
  24246. extra: 963/883,
  24247. bottom: 23/986
  24248. },
  24249. form: "macro",
  24250. default: true
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(8, "feet"),
  24257. default: true,
  24258. form: "armored"
  24259. },
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(70, "feet"),
  24263. default: true,
  24264. form: "macro"
  24265. },
  24266. ],
  24267. {
  24268. "armored": {
  24269. name: "Armored",
  24270. default: true
  24271. },
  24272. "macro": {
  24273. name: "Macro",
  24274. },
  24275. }
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24279. {
  24280. front: {
  24281. height: math.unit(28.75, "feet"),
  24282. weight: math.unit(2000, "kg"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/sonear/front.svg",
  24286. extra: 1041.1 / 964.9,
  24287. bottom: 53.7 / 1096.6
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Normal",
  24294. height: math.unit(28.75, "feet"),
  24295. default: true
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24301. {
  24302. side: {
  24303. height: math.unit(25.5, "feet"),
  24304. weight: math.unit(23000, "kg"),
  24305. name: "Side",
  24306. image: {
  24307. source: "./media/characters/kanara/side.svg"
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(25.5, "feet"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24321. {
  24322. side: {
  24323. height: math.unit(10, "feet"),
  24324. weight: math.unit(1000, "kg"),
  24325. name: "Side",
  24326. image: {
  24327. source: "./media/characters/ereus/side.svg",
  24328. extra: 1157 / 959,
  24329. bottom: 153 / 1312.5
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(10, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24343. {
  24344. side: {
  24345. height: math.unit(4.5, "feet"),
  24346. weight: math.unit(500, "lb"),
  24347. name: "Side",
  24348. image: {
  24349. source: "./media/characters/e-ter/side.svg",
  24350. extra: 1550 / 1248,
  24351. bottom: 146 / 1694
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(4.5, "feet"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24365. {
  24366. side: {
  24367. height: math.unit(9.7, "feet"),
  24368. weight: math.unit(4000, "kg"),
  24369. name: "Side",
  24370. image: {
  24371. source: "./media/characters/yamie/side.svg"
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Normal",
  24378. height: math.unit(9.7, "feet"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(50, "feet"),
  24388. weight: math.unit(50000, "kg"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/anders/front.svg",
  24392. extra: 570 / 539,
  24393. bottom: 14.7 / 586.7
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Large",
  24400. height: math.unit(50, "feet")
  24401. },
  24402. {
  24403. name: "Macro",
  24404. height: math.unit(2000, "feet"),
  24405. default: true
  24406. },
  24407. {
  24408. name: "Megamacro",
  24409. height: math.unit(12, "miles")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(7 + 2 / 12, "feet"),
  24418. weight: math.unit(300, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/reban/front.svg",
  24422. extra: 1287/1212,
  24423. bottom: 148/1435
  24424. }
  24425. },
  24426. head: {
  24427. height: math.unit(1.95, "feet"),
  24428. name: "Head",
  24429. image: {
  24430. source: "./media/characters/reban/head.svg"
  24431. }
  24432. },
  24433. maw: {
  24434. height: math.unit(0.95, "feet"),
  24435. name: "Maw",
  24436. image: {
  24437. source: "./media/characters/reban/maw.svg"
  24438. }
  24439. },
  24440. foot: {
  24441. height: math.unit(1.65, "feet"),
  24442. name: "Foot",
  24443. image: {
  24444. source: "./media/characters/reban/foot.svg"
  24445. }
  24446. },
  24447. dick: {
  24448. height: math.unit(7 / 5, "feet"),
  24449. name: "Dick",
  24450. image: {
  24451. source: "./media/characters/reban/dick.svg"
  24452. }
  24453. },
  24454. },
  24455. [
  24456. {
  24457. name: "Natural Height",
  24458. height: math.unit(7 + 2 / 12, "feet")
  24459. },
  24460. {
  24461. name: "Macro",
  24462. height: math.unit(500, "feet"),
  24463. default: true
  24464. },
  24465. {
  24466. name: "Canon Height",
  24467. height: math.unit(50, "AU")
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24473. {
  24474. front: {
  24475. height: math.unit(6, "feet"),
  24476. weight: math.unit(150, "lb"),
  24477. name: "Front",
  24478. image: {
  24479. source: "./media/characters/terrance-keayes/front.svg",
  24480. extra: 1.005,
  24481. bottom: 151 / 1615
  24482. }
  24483. },
  24484. side: {
  24485. height: math.unit(6, "feet"),
  24486. weight: math.unit(150, "lb"),
  24487. name: "Side",
  24488. image: {
  24489. source: "./media/characters/terrance-keayes/side.svg",
  24490. extra: 1.005,
  24491. bottom: 129.4 / 1544
  24492. }
  24493. },
  24494. back: {
  24495. height: math.unit(6, "feet"),
  24496. weight: math.unit(150, "lb"),
  24497. name: "Back",
  24498. image: {
  24499. source: "./media/characters/terrance-keayes/back.svg",
  24500. extra: 1.005,
  24501. bottom: 58.4 / 1557.3
  24502. }
  24503. },
  24504. dick: {
  24505. height: math.unit(6 * 0.208, "feet"),
  24506. name: "Dick",
  24507. image: {
  24508. source: "./media/characters/terrance-keayes/dick.svg"
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Canon Height",
  24515. height: math.unit(35, "miles"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(6, "feet"),
  24525. weight: math.unit(150, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/ofelia/front.svg",
  24529. extra: 1130/1117,
  24530. bottom: 91/1221
  24531. }
  24532. },
  24533. back: {
  24534. height: math.unit(6, "feet"),
  24535. weight: math.unit(150, "lb"),
  24536. name: "Back",
  24537. image: {
  24538. source: "./media/characters/ofelia/back.svg",
  24539. extra: 1172/1159,
  24540. bottom: 28/1200
  24541. }
  24542. },
  24543. maw: {
  24544. height: math.unit(1, "feet"),
  24545. name: "Maw",
  24546. image: {
  24547. source: "./media/characters/ofelia/maw.svg"
  24548. }
  24549. },
  24550. foot: {
  24551. height: math.unit(1.949, "feet"),
  24552. name: "Foot",
  24553. image: {
  24554. source: "./media/characters/ofelia/foot.svg"
  24555. }
  24556. },
  24557. },
  24558. [
  24559. {
  24560. name: "Canon Height",
  24561. height: math.unit(2000, "miles"),
  24562. default: true
  24563. },
  24564. ]
  24565. ))
  24566. characterMakers.push(() => makeCharacter(
  24567. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24568. {
  24569. front: {
  24570. height: math.unit(6, "feet"),
  24571. weight: math.unit(150, "lb"),
  24572. name: "Front",
  24573. image: {
  24574. source: "./media/characters/samuel/front.svg",
  24575. extra: 265 / 258,
  24576. bottom: 2 / 266.1566
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Macro",
  24583. height: math.unit(100, "feet"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Full Size",
  24588. height: math.unit(1000, "miles")
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(6, "feet"),
  24597. weight: math.unit(300, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/beishir-kiel/front.svg",
  24601. extra: 569 / 547,
  24602. bottom: 41.9 / 609
  24603. }
  24604. },
  24605. maw: {
  24606. height: math.unit(6 * 0.202, "feet"),
  24607. name: "Maw",
  24608. image: {
  24609. source: "./media/characters/beishir-kiel/maw.svg"
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Macro",
  24616. height: math.unit(300, "feet"),
  24617. default: true
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(5 + 7/12, "feet"),
  24626. weight: math.unit(120, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/logan-grey/front.svg",
  24630. extra: 1836/1738,
  24631. bottom: 108/1944
  24632. }
  24633. },
  24634. back: {
  24635. height: math.unit(5 + 7/12, "feet"),
  24636. weight: math.unit(120, "lb"),
  24637. name: "Back",
  24638. image: {
  24639. source: "./media/characters/logan-grey/back.svg",
  24640. extra: 1880/1794,
  24641. bottom: 24/1904
  24642. }
  24643. },
  24644. frontSfw: {
  24645. height: math.unit(5 + 7/12, "feet"),
  24646. weight: math.unit(120, "lb"),
  24647. name: "Front (SFW)",
  24648. image: {
  24649. source: "./media/characters/logan-grey/front-sfw.svg",
  24650. extra: 1836/1738,
  24651. bottom: 108/1944
  24652. }
  24653. },
  24654. backSfw: {
  24655. height: math.unit(5 + 7/12, "feet"),
  24656. weight: math.unit(120, "lb"),
  24657. name: "Back (SFW)",
  24658. image: {
  24659. source: "./media/characters/logan-grey/back-sfw.svg",
  24660. extra: 1880/1794,
  24661. bottom: 24/1904
  24662. }
  24663. },
  24664. hands: {
  24665. height: math.unit(0.84, "feet"),
  24666. name: "Hands",
  24667. image: {
  24668. source: "./media/characters/logan-grey/hands.svg"
  24669. }
  24670. },
  24671. paws: {
  24672. height: math.unit(0.72, "feet"),
  24673. name: "Paws",
  24674. image: {
  24675. source: "./media/characters/logan-grey/paws.svg"
  24676. }
  24677. },
  24678. cock: {
  24679. height: math.unit(1.45, "feet"),
  24680. name: "Cock",
  24681. image: {
  24682. source: "./media/characters/logan-grey/cock.svg"
  24683. }
  24684. },
  24685. cockAlt: {
  24686. height: math.unit(1.437, "feet"),
  24687. name: "Cock (alt)",
  24688. image: {
  24689. source: "./media/characters/logan-grey/cock-alt.svg"
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(5 + 8 / 12, "feet")
  24697. },
  24698. {
  24699. name: "The 500 Foot Femboy",
  24700. height: math.unit(500, "feet"),
  24701. default: true
  24702. },
  24703. {
  24704. name: "Megmacro",
  24705. height: math.unit(20, "miles")
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24711. {
  24712. front: {
  24713. height: math.unit(8 + 2 / 12, "feet"),
  24714. weight: math.unit(275, "lb"),
  24715. name: "Front",
  24716. image: {
  24717. source: "./media/characters/draganta/front.svg",
  24718. extra: 1177 / 1135,
  24719. bottom: 33.46 / 1212.1
  24720. }
  24721. },
  24722. },
  24723. [
  24724. {
  24725. name: "Normal",
  24726. height: math.unit(8 + 6 / 12, "feet"),
  24727. default: true
  24728. },
  24729. {
  24730. name: "Macro",
  24731. height: math.unit(150, "feet")
  24732. },
  24733. {
  24734. name: "Megamacro",
  24735. height: math.unit(1000, "miles")
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24741. {
  24742. front: {
  24743. height: math.unit(1.72, "m"),
  24744. weight: math.unit(80, "lb"),
  24745. name: "Front",
  24746. image: {
  24747. source: "./media/characters/voski/front.svg",
  24748. extra: 2076.22 / 2022.4,
  24749. bottom: 102.7 / 2177.3866
  24750. }
  24751. },
  24752. frontFlaccid: {
  24753. height: math.unit(1.72, "m"),
  24754. weight: math.unit(80, "lb"),
  24755. name: "Front (Flaccid)",
  24756. image: {
  24757. source: "./media/characters/voski/front-flaccid.svg",
  24758. extra: 2076.22 / 2022.4,
  24759. bottom: 102.7 / 2177.3866
  24760. }
  24761. },
  24762. frontErect: {
  24763. height: math.unit(1.72, "m"),
  24764. weight: math.unit(80, "lb"),
  24765. name: "Front (Erect)",
  24766. image: {
  24767. source: "./media/characters/voski/front-erect.svg",
  24768. extra: 2076.22 / 2022.4,
  24769. bottom: 102.7 / 2177.3866
  24770. }
  24771. },
  24772. back: {
  24773. height: math.unit(1.72, "m"),
  24774. weight: math.unit(80, "lb"),
  24775. name: "Back",
  24776. image: {
  24777. source: "./media/characters/voski/back.svg",
  24778. extra: 2104 / 2051,
  24779. bottom: 10.45 / 2113.63
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(1.72, "m")
  24787. },
  24788. {
  24789. name: "Macro",
  24790. height: math.unit(55, "m"),
  24791. default: true
  24792. },
  24793. {
  24794. name: "Macro+",
  24795. height: math.unit(300, "m")
  24796. },
  24797. {
  24798. name: "Macro++",
  24799. height: math.unit(700, "m")
  24800. },
  24801. {
  24802. name: "Macro+++",
  24803. height: math.unit(4500, "m")
  24804. },
  24805. {
  24806. name: "Macro++++",
  24807. height: math.unit(45, "km")
  24808. },
  24809. {
  24810. name: "Macro+++++",
  24811. height: math.unit(1220, "km")
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(2.3, "m"),
  24820. weight: math.unit(304, "kg"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/icowom-lee/front.svg",
  24824. extra: 985 / 955,
  24825. bottom: 25.4 / 1012
  24826. }
  24827. },
  24828. fronttentacles: {
  24829. height: math.unit(2.3, "m"),
  24830. weight: math.unit(304, "kg"),
  24831. name: "Front-tentacles",
  24832. image: {
  24833. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24834. extra: 985 / 955,
  24835. bottom: 25.4 / 1012
  24836. }
  24837. },
  24838. back: {
  24839. height: math.unit(2.3, "m"),
  24840. weight: math.unit(304, "kg"),
  24841. name: "Back",
  24842. image: {
  24843. source: "./media/characters/icowom-lee/back.svg",
  24844. extra: 975 / 954,
  24845. bottom: 9.5 / 985
  24846. }
  24847. },
  24848. backtentacles: {
  24849. height: math.unit(2.3, "m"),
  24850. weight: math.unit(304, "kg"),
  24851. name: "Back-tentacles",
  24852. image: {
  24853. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24854. extra: 975 / 954,
  24855. bottom: 9.5 / 985
  24856. }
  24857. },
  24858. frontDressed: {
  24859. height: math.unit(2.3, "m"),
  24860. weight: math.unit(304, "kg"),
  24861. name: "Front (Dressed)",
  24862. image: {
  24863. source: "./media/characters/icowom-lee/front-dressed.svg",
  24864. extra: 3076 / 2933,
  24865. bottom: 51.4 / 3125.1889
  24866. }
  24867. },
  24868. rump: {
  24869. height: math.unit(0.776, "meters"),
  24870. name: "Rump",
  24871. image: {
  24872. source: "./media/characters/icowom-lee/rump.svg"
  24873. }
  24874. },
  24875. genitals: {
  24876. height: math.unit(0.78, "meters"),
  24877. name: "Genitals",
  24878. image: {
  24879. source: "./media/characters/icowom-lee/genitals.svg"
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(2.3, "meters"),
  24887. default: true
  24888. },
  24889. {
  24890. name: "Macro",
  24891. height: math.unit(94, "meters"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24898. {
  24899. front: {
  24900. height: math.unit(22, "meters"),
  24901. weight: math.unit(21000, "kg"),
  24902. name: "Front",
  24903. image: {
  24904. source: "./media/characters/shock-diamond/front.svg",
  24905. extra: 2204 / 2053,
  24906. bottom: 65 / 2239.47
  24907. }
  24908. },
  24909. frontNude: {
  24910. height: math.unit(22, "meters"),
  24911. weight: math.unit(21000, "kg"),
  24912. name: "Front (Nude)",
  24913. image: {
  24914. source: "./media/characters/shock-diamond/front-nude.svg",
  24915. extra: 2514 / 2285,
  24916. bottom: 13 / 2527.56
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(3, "meters")
  24924. },
  24925. {
  24926. name: "Macro",
  24927. height: math.unit(22, "meters"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(5 + 4/12, "feet"),
  24937. weight: math.unit(125, "lb"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/rory/front.svg",
  24941. extra: 1790/1681,
  24942. bottom: 66/1856
  24943. },
  24944. form: "normal",
  24945. default: true
  24946. },
  24947. back: {
  24948. height: math.unit(5 + 4/12, "feet"),
  24949. weight: math.unit(125, "lb"),
  24950. name: "Back",
  24951. image: {
  24952. source: "./media/characters/rory/back.svg",
  24953. extra: 1805/1690,
  24954. bottom: 56/1861
  24955. },
  24956. form: "normal"
  24957. },
  24958. frontDressed: {
  24959. height: math.unit(5 + 4/12, "feet"),
  24960. weight: math.unit(125, "lb"),
  24961. name: "Front (Dressed)",
  24962. image: {
  24963. source: "./media/characters/rory/front-dressed.svg",
  24964. extra: 1790/1681,
  24965. bottom: 66/1856
  24966. },
  24967. form: "normal"
  24968. },
  24969. backDressed: {
  24970. height: math.unit(5 + 4/12, "feet"),
  24971. weight: math.unit(125, "lb"),
  24972. name: "Back (Dressed)",
  24973. image: {
  24974. source: "./media/characters/rory/back-dressed.svg",
  24975. extra: 1805/1690,
  24976. bottom: 56/1861
  24977. },
  24978. form: "normal"
  24979. },
  24980. frontNsfw: {
  24981. height: math.unit(5 + 4/12, "feet"),
  24982. weight: math.unit(125, "lb"),
  24983. name: "Front (NSFW)",
  24984. image: {
  24985. source: "./media/characters/rory/front-nsfw.svg",
  24986. extra: 1790/1681,
  24987. bottom: 66/1856
  24988. },
  24989. form: "normal"
  24990. },
  24991. backNsfw: {
  24992. height: math.unit(5 + 4/12, "feet"),
  24993. weight: math.unit(125, "lb"),
  24994. name: "Back (NSFW)",
  24995. image: {
  24996. source: "./media/characters/rory/back-nsfw.svg",
  24997. extra: 1805/1690,
  24998. bottom: 56/1861
  24999. },
  25000. form: "normal"
  25001. },
  25002. dick: {
  25003. height: math.unit(0.8, "feet"),
  25004. name: "Dick",
  25005. image: {
  25006. source: "./media/characters/rory/dick.svg"
  25007. },
  25008. form: "normal"
  25009. },
  25010. thicc_front: {
  25011. height: math.unit(5 + 4/12, "feet"),
  25012. weight: math.unit(195, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/rory/thicc-front.svg",
  25016. extra: 1220/1100,
  25017. bottom: 103/1323
  25018. },
  25019. form: "thicc",
  25020. default: true
  25021. },
  25022. thicc_back: {
  25023. height: math.unit(5 + 4/12, "feet"),
  25024. weight: math.unit(195, "lb"),
  25025. name: "Back",
  25026. image: {
  25027. source: "./media/characters/rory/thicc-back.svg",
  25028. extra: 1166/1086,
  25029. bottom: 35/1201
  25030. },
  25031. form: "thicc"
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Micro",
  25037. height: math.unit(3, "inches"),
  25038. allForms: true
  25039. },
  25040. {
  25041. name: "Normal",
  25042. height: math.unit(5 + 4/12, "feet"),
  25043. allForms: true,
  25044. default: true
  25045. },
  25046. {
  25047. name: "Macro",
  25048. height: math.unit(90, "feet"),
  25049. allForms: true
  25050. },
  25051. {
  25052. name: "Supercharged",
  25053. height: math.unit(270, "feet"),
  25054. allForms: true
  25055. },
  25056. ],
  25057. {
  25058. "normal": {
  25059. name: "Normal",
  25060. default: true
  25061. },
  25062. "thicc": {
  25063. name: "Thicc",
  25064. },
  25065. }
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(5 + 9 / 12, "feet"),
  25072. weight: math.unit(190, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/sprisk/front.svg",
  25076. extra: 1225 / 1180,
  25077. bottom: 42.7 / 1266.4
  25078. }
  25079. },
  25080. frontNsfw: {
  25081. height: math.unit(5 + 9 / 12, "feet"),
  25082. weight: math.unit(190, "lb"),
  25083. name: "Front (NSFW)",
  25084. image: {
  25085. source: "./media/characters/sprisk/front-nsfw.svg",
  25086. extra: 1225 / 1180,
  25087. bottom: 42.7 / 1266.4
  25088. }
  25089. },
  25090. back: {
  25091. height: math.unit(5 + 9 / 12, "feet"),
  25092. weight: math.unit(190, "lb"),
  25093. name: "Back",
  25094. image: {
  25095. source: "./media/characters/sprisk/back.svg",
  25096. extra: 1247 / 1200,
  25097. bottom: 5.6 / 1253.04
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Tiny",
  25104. height: math.unit(2, "inches")
  25105. },
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(5 + 9 / 12, "feet"),
  25109. default: true
  25110. },
  25111. {
  25112. name: "Mini Macro",
  25113. height: math.unit(18, "feet")
  25114. },
  25115. {
  25116. name: "Macro",
  25117. height: math.unit(100, "feet")
  25118. },
  25119. {
  25120. name: "MACRO",
  25121. height: math.unit(50, "miles")
  25122. },
  25123. {
  25124. name: "M A C R O",
  25125. height: math.unit(300, "miles")
  25126. },
  25127. ]
  25128. ))
  25129. characterMakers.push(() => makeCharacter(
  25130. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25131. {
  25132. side: {
  25133. height: math.unit(15.6, "meters"),
  25134. weight: math.unit(700000, "kg"),
  25135. name: "Side",
  25136. image: {
  25137. source: "./media/characters/bunsen/side.svg",
  25138. extra: 1644 / 358
  25139. }
  25140. },
  25141. foot: {
  25142. height: math.unit(1.611 * 1644 / 358, "meter"),
  25143. name: "Foot",
  25144. image: {
  25145. source: "./media/characters/bunsen/foot.svg"
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Small",
  25152. height: math.unit(10, "feet")
  25153. },
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(15.6, "meters"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(4 + 11 / 12, "feet"),
  25166. weight: math.unit(140, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/sesh/front.svg",
  25170. extra: 3420 / 3231,
  25171. bottom: 72 / 3949.5
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(4 + 11 / 12, "feet")
  25179. },
  25180. {
  25181. name: "Grown",
  25182. height: math.unit(15, "feet"),
  25183. default: true
  25184. },
  25185. {
  25186. name: "Macro",
  25187. height: math.unit(1500, "feet")
  25188. },
  25189. {
  25190. name: "Megamacro",
  25191. height: math.unit(30, "miles")
  25192. },
  25193. {
  25194. name: "Continental",
  25195. height: math.unit(3000, "miles")
  25196. },
  25197. {
  25198. name: "Gravity Mass",
  25199. height: math.unit(300000, "miles")
  25200. },
  25201. {
  25202. name: "Planet Buster",
  25203. height: math.unit(30000000, "miles")
  25204. },
  25205. {
  25206. name: "Big",
  25207. height: math.unit(3000000000, "miles")
  25208. },
  25209. ]
  25210. ))
  25211. characterMakers.push(() => makeCharacter(
  25212. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25213. {
  25214. front: {
  25215. height: math.unit(9, "feet"),
  25216. weight: math.unit(350, "lb"),
  25217. name: "Front",
  25218. image: {
  25219. source: "./media/characters/pepper/front.svg",
  25220. extra: 1448 / 1312,
  25221. bottom: 9.4 / 1457.88
  25222. }
  25223. },
  25224. back: {
  25225. height: math.unit(9, "feet"),
  25226. weight: math.unit(350, "lb"),
  25227. name: "Back",
  25228. image: {
  25229. source: "./media/characters/pepper/back.svg",
  25230. extra: 1423 / 1300,
  25231. bottom: 4.6 / 1429
  25232. }
  25233. },
  25234. maw: {
  25235. height: math.unit(0.932, "feet"),
  25236. name: "Maw",
  25237. image: {
  25238. source: "./media/characters/pepper/maw.svg"
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(9, "feet"),
  25246. default: true
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(6, "feet"),
  25255. weight: math.unit(150, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/maelstrom/front.svg",
  25259. extra: 2100 / 1883,
  25260. bottom: 94 / 2196.7
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Less Kaiju",
  25267. height: math.unit(200, "feet")
  25268. },
  25269. {
  25270. name: "Kaiju",
  25271. height: math.unit(400, "feet"),
  25272. default: true
  25273. },
  25274. {
  25275. name: "Kaiju-er",
  25276. height: math.unit(600, "feet")
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(6 + 5 / 12, "feet"),
  25285. weight: math.unit(180, "lb"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/lexir/front.svg",
  25289. extra: 180 / 172,
  25290. bottom: 12 / 192
  25291. }
  25292. },
  25293. back: {
  25294. height: math.unit(6 + 5 / 12, "feet"),
  25295. weight: math.unit(180, "lb"),
  25296. name: "Back",
  25297. image: {
  25298. source: "./media/characters/lexir/back.svg",
  25299. extra: 1273/1201,
  25300. bottom: 39/1312
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Very Smal",
  25307. height: math.unit(1, "nm")
  25308. },
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(6 + 5 / 12, "feet"),
  25312. default: true
  25313. },
  25314. {
  25315. name: "Macro",
  25316. height: math.unit(1, "mile")
  25317. },
  25318. {
  25319. name: "Megamacro",
  25320. height: math.unit(50, "miles")
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25326. {
  25327. front: {
  25328. height: math.unit(1.5, "meters"),
  25329. weight: math.unit(100, "lb"),
  25330. name: "Front",
  25331. image: {
  25332. source: "./media/characters/maksio/front.svg",
  25333. extra: 1549 / 1531,
  25334. bottom: 123.7 / 1674.5429
  25335. }
  25336. },
  25337. back: {
  25338. height: math.unit(1.5, "meters"),
  25339. weight: math.unit(100, "lb"),
  25340. name: "Back",
  25341. image: {
  25342. source: "./media/characters/maksio/back.svg",
  25343. extra: 1541 / 1509,
  25344. bottom: 97 / 1639
  25345. }
  25346. },
  25347. hand: {
  25348. height: math.unit(0.621, "feet"),
  25349. name: "Hand",
  25350. image: {
  25351. source: "./media/characters/maksio/hand.svg"
  25352. }
  25353. },
  25354. foot: {
  25355. height: math.unit(1.611, "feet"),
  25356. name: "Foot",
  25357. image: {
  25358. source: "./media/characters/maksio/foot.svg"
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Shrunken",
  25365. height: math.unit(10, "cm")
  25366. },
  25367. {
  25368. name: "Normal",
  25369. height: math.unit(150, "cm"),
  25370. default: true
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(100, "feet"),
  25379. name: "Front",
  25380. image: {
  25381. source: "./media/characters/erza-bear/front.svg",
  25382. extra: 2449 / 2390,
  25383. bottom: 46 / 2494
  25384. }
  25385. },
  25386. back: {
  25387. height: math.unit(100, "feet"),
  25388. name: "Back",
  25389. image: {
  25390. source: "./media/characters/erza-bear/back.svg",
  25391. extra: 2489 / 2430,
  25392. bottom: 85.4 / 2480
  25393. }
  25394. },
  25395. tail: {
  25396. height: math.unit(42, "feet"),
  25397. name: "Tail",
  25398. image: {
  25399. source: "./media/characters/erza-bear/tail.svg"
  25400. }
  25401. },
  25402. tongue: {
  25403. height: math.unit(8, "feet"),
  25404. name: "Tongue",
  25405. image: {
  25406. source: "./media/characters/erza-bear/tongue.svg"
  25407. }
  25408. },
  25409. dick: {
  25410. height: math.unit(10.5, "feet"),
  25411. name: "Dick",
  25412. image: {
  25413. source: "./media/characters/erza-bear/dick.svg"
  25414. }
  25415. },
  25416. dickVertical: {
  25417. height: math.unit(16.9, "feet"),
  25418. name: "Dick (Vertical)",
  25419. image: {
  25420. source: "./media/characters/erza-bear/dick-vertical.svg"
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Macro",
  25427. height: math.unit(100, "feet"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(172, "cm"),
  25437. weight: math.unit(73, "kg"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/violet-flor/front.svg",
  25441. extra: 1530 / 1442,
  25442. bottom: 61.9 / 1588.8
  25443. }
  25444. },
  25445. back: {
  25446. height: math.unit(180, "cm"),
  25447. weight: math.unit(73, "kg"),
  25448. name: "Back",
  25449. image: {
  25450. source: "./media/characters/violet-flor/back.svg",
  25451. extra: 1692 / 1630,
  25452. bottom: 20 / 1712
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(172, "cm"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(6, "feet"),
  25469. weight: math.unit(220, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/lynn-rhea/front.svg",
  25473. extra: 310 / 273
  25474. }
  25475. },
  25476. back: {
  25477. height: math.unit(6, "feet"),
  25478. weight: math.unit(220, "lb"),
  25479. name: "Back",
  25480. image: {
  25481. source: "./media/characters/lynn-rhea/back.svg",
  25482. extra: 310 / 273
  25483. }
  25484. },
  25485. dicks: {
  25486. height: math.unit(0.9, "feet"),
  25487. name: "Dicks",
  25488. image: {
  25489. source: "./media/characters/lynn-rhea/dicks.svg"
  25490. }
  25491. },
  25492. slit: {
  25493. height: math.unit(0.4, "feet"),
  25494. name: "Slit",
  25495. image: {
  25496. source: "./media/characters/lynn-rhea/slit.svg"
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Micro",
  25503. height: math.unit(1, "inch")
  25504. },
  25505. {
  25506. name: "Macro",
  25507. height: math.unit(60, "feet"),
  25508. default: true
  25509. },
  25510. {
  25511. name: "Megamacro",
  25512. height: math.unit(2, "miles")
  25513. },
  25514. {
  25515. name: "Gigamacro",
  25516. height: math.unit(3, "earths")
  25517. },
  25518. {
  25519. name: "Galactic",
  25520. height: math.unit(0.8, "galaxies")
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25526. {
  25527. front: {
  25528. height: math.unit(1600, "feet"),
  25529. weight: math.unit(85758785169, "kg"),
  25530. name: "Front",
  25531. image: {
  25532. source: "./media/characters/valathos/front.svg",
  25533. extra: 1451 / 1339
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Macro",
  25540. height: math.unit(1600, "feet"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(7 + 5 / 12, "feet"),
  25550. weight: math.unit(300, "lb"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/azula/front.svg",
  25554. extra: 3208 / 2880,
  25555. bottom: 80.2 / 3277
  25556. }
  25557. },
  25558. back: {
  25559. height: math.unit(7 + 5 / 12, "feet"),
  25560. weight: math.unit(300, "lb"),
  25561. name: "Back",
  25562. image: {
  25563. source: "./media/characters/azula/back.svg",
  25564. extra: 3169 / 2822,
  25565. bottom: 150.6 / 3321
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(7 + 5 / 12, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Big",
  25577. height: math.unit(20, "feet")
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(5 + 1 / 12, "feet"),
  25586. weight: math.unit(110, "lb"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/rupert/front.svg",
  25590. extra: 1549 / 1495,
  25591. bottom: 54.2 / 1604.4
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(5 + 1 / 12, "feet"),
  25599. default: true
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25605. {
  25606. front: {
  25607. height: math.unit(8 + 4 / 12, "feet"),
  25608. weight: math.unit(350, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/sheera-castellar/front.svg",
  25612. extra: 1957 / 1894,
  25613. bottom: 26.97 / 1975.017
  25614. }
  25615. },
  25616. side: {
  25617. height: math.unit(8 + 4 / 12, "feet"),
  25618. weight: math.unit(350, "lb"),
  25619. name: "Side",
  25620. image: {
  25621. source: "./media/characters/sheera-castellar/side.svg",
  25622. extra: 1957 / 1894
  25623. }
  25624. },
  25625. back: {
  25626. height: math.unit(8 + 4 / 12, "feet"),
  25627. weight: math.unit(350, "lb"),
  25628. name: "Back",
  25629. image: {
  25630. source: "./media/characters/sheera-castellar/back.svg",
  25631. extra: 1957 / 1894
  25632. }
  25633. },
  25634. angled: {
  25635. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25636. weight: math.unit(350, "lb"),
  25637. name: "Angled",
  25638. image: {
  25639. source: "./media/characters/sheera-castellar/angled.svg",
  25640. extra: 1807 / 1707,
  25641. bottom: 68 / 1875
  25642. }
  25643. },
  25644. genitals: {
  25645. height: math.unit(2.2, "feet"),
  25646. name: "Genitals",
  25647. image: {
  25648. source: "./media/characters/sheera-castellar/genitals.svg"
  25649. }
  25650. },
  25651. taur: {
  25652. height: math.unit(10 + 6/12, "feet"),
  25653. name: "Taur",
  25654. image: {
  25655. source: "./media/characters/sheera-castellar/taur.svg",
  25656. extra: 2017/1909,
  25657. bottom: 185/2202
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(8 + 4 / 12, "feet")
  25665. },
  25666. {
  25667. name: "Macro",
  25668. height: math.unit(150, "feet"),
  25669. default: true
  25670. },
  25671. {
  25672. name: "Macro+",
  25673. height: math.unit(800, "feet")
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25679. {
  25680. front: {
  25681. height: math.unit(6, "feet"),
  25682. weight: math.unit(150, "lb"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/jaipur/front.svg",
  25686. extra: 3860 / 3731,
  25687. bottom: 287 / 4140
  25688. }
  25689. },
  25690. back: {
  25691. height: math.unit(6, "feet"),
  25692. weight: math.unit(150, "lb"),
  25693. name: "Back",
  25694. image: {
  25695. source: "./media/characters/jaipur/back.svg",
  25696. extra: 1637/1561,
  25697. bottom: 154/1791
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(1.85, "meters"),
  25705. default: true
  25706. },
  25707. {
  25708. name: "Macro",
  25709. height: math.unit(150, "meters")
  25710. },
  25711. {
  25712. name: "Macro+",
  25713. height: math.unit(0.5, "miles")
  25714. },
  25715. {
  25716. name: "Macro++",
  25717. height: math.unit(2.5, "miles")
  25718. },
  25719. {
  25720. name: "Macro+++",
  25721. height: math.unit(12, "miles")
  25722. },
  25723. {
  25724. name: "Macro++++",
  25725. height: math.unit(120, "miles")
  25726. },
  25727. {
  25728. name: "Macro+++++",
  25729. height: math.unit(1200, "miles")
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25735. {
  25736. front: {
  25737. height: math.unit(6, "feet"),
  25738. weight: math.unit(150, "lb"),
  25739. name: "Front",
  25740. image: {
  25741. source: "./media/characters/sheila-wolf/front.svg",
  25742. extra: 1931 / 1808,
  25743. bottom: 29.5 / 1960
  25744. }
  25745. },
  25746. dick: {
  25747. height: math.unit(1.464, "feet"),
  25748. name: "Dick",
  25749. image: {
  25750. source: "./media/characters/sheila-wolf/dick.svg"
  25751. }
  25752. },
  25753. muzzle: {
  25754. height: math.unit(0.513, "feet"),
  25755. name: "Muzzle",
  25756. image: {
  25757. source: "./media/characters/sheila-wolf/muzzle.svg"
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Macro",
  25764. height: math.unit(70, "feet"),
  25765. default: true
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25771. {
  25772. front: {
  25773. height: math.unit(32, "meters"),
  25774. weight: math.unit(300000, "kg"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/almor/front.svg",
  25778. extra: 1408 / 1322,
  25779. bottom: 94.6 / 1506.5
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Macro",
  25786. height: math.unit(32, "meters"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(7, "feet"),
  25796. weight: math.unit(200, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/silver/front.svg",
  25800. extra: 472.1 / 450.5,
  25801. bottom: 26.5 / 499.424
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(7, "feet"),
  25809. default: true
  25810. },
  25811. {
  25812. name: "Macro",
  25813. height: math.unit(800, "feet")
  25814. },
  25815. {
  25816. name: "Megamacro",
  25817. height: math.unit(250, "miles")
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25823. {
  25824. front: {
  25825. height: math.unit(6, "feet"),
  25826. weight: math.unit(150, "lb"),
  25827. name: "Front",
  25828. image: {
  25829. source: "./media/characters/pliskin/front.svg",
  25830. extra: 1469 / 1359,
  25831. bottom: 70 / 1540
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Micro",
  25838. height: math.unit(3, "inches")
  25839. },
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(5 + 11 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(120, "feet")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(6, "feet"),
  25856. weight: math.unit(150, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/sammy/front.svg",
  25860. extra: 1193 / 1089,
  25861. bottom: 30.5 / 1226
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Macro",
  25868. height: math.unit(1700, "feet"),
  25869. default: true
  25870. },
  25871. {
  25872. name: "Examacro",
  25873. height: math.unit(2.5e9, "lightyears")
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(21, "meters"),
  25882. weight: math.unit(12, "tonnes"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/kuru/front.svg",
  25886. extra: 4301 / 3785,
  25887. bottom: 371.3 / 4691
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Macro",
  25894. height: math.unit(21, "meters"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(23, "meters"),
  25904. weight: math.unit(12.2, "tonnes"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/rakka/front.svg",
  25908. extra: 4670 / 4169,
  25909. bottom: 301 / 4968.7
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Macro",
  25916. height: math.unit(23, "meters"),
  25917. default: true
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25923. {
  25924. front: {
  25925. height: math.unit(6, "feet"),
  25926. weight: math.unit(150, "lb"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/rhys-feline/front.svg",
  25930. extra: 2488 / 2308,
  25931. bottom: 35.67 / 2519.19
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Really Small",
  25938. height: math.unit(1, "nm")
  25939. },
  25940. {
  25941. name: "Micro",
  25942. height: math.unit(4, "inches")
  25943. },
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(4 + 10 / 12, "feet"),
  25947. default: true
  25948. },
  25949. {
  25950. name: "Macro",
  25951. height: math.unit(100, "feet")
  25952. },
  25953. {
  25954. name: "Megamacto",
  25955. height: math.unit(50, "miles")
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25961. {
  25962. side: {
  25963. height: math.unit(30, "feet"),
  25964. weight: math.unit(35000, "kg"),
  25965. name: "Side",
  25966. image: {
  25967. source: "./media/characters/alydar/side.svg",
  25968. extra: 234 / 222,
  25969. bottom: 6.5 / 241
  25970. }
  25971. },
  25972. front: {
  25973. height: math.unit(30, "feet"),
  25974. weight: math.unit(35000, "kg"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/alydar/front.svg",
  25978. extra: 223.37 / 210.2,
  25979. bottom: 22.3 / 246.76
  25980. }
  25981. },
  25982. top: {
  25983. height: math.unit(64.54, "feet"),
  25984. weight: math.unit(35000, "kg"),
  25985. name: "Top",
  25986. image: {
  25987. source: "./media/characters/alydar/top.svg"
  25988. }
  25989. },
  25990. anthro: {
  25991. height: math.unit(30, "feet"),
  25992. weight: math.unit(9000, "kg"),
  25993. name: "Anthro",
  25994. image: {
  25995. source: "./media/characters/alydar/anthro.svg",
  25996. extra: 432 / 421,
  25997. bottom: 7.18 / 440
  25998. }
  25999. },
  26000. maw: {
  26001. height: math.unit(11.693, "feet"),
  26002. name: "Maw",
  26003. image: {
  26004. source: "./media/characters/alydar/maw.svg"
  26005. }
  26006. },
  26007. head: {
  26008. height: math.unit(11.693, "feet"),
  26009. name: "Head",
  26010. image: {
  26011. source: "./media/characters/alydar/head.svg"
  26012. }
  26013. },
  26014. headAlt: {
  26015. height: math.unit(12.861, "feet"),
  26016. name: "Head (Alt)",
  26017. image: {
  26018. source: "./media/characters/alydar/head-alt.svg"
  26019. }
  26020. },
  26021. wing: {
  26022. height: math.unit(20.712, "feet"),
  26023. name: "Wing",
  26024. image: {
  26025. source: "./media/characters/alydar/wing.svg"
  26026. }
  26027. },
  26028. wingFeather: {
  26029. height: math.unit(9.662, "feet"),
  26030. name: "Wing Feather",
  26031. image: {
  26032. source: "./media/characters/alydar/wing-feather.svg"
  26033. }
  26034. },
  26035. countourFeather: {
  26036. height: math.unit(4.154, "feet"),
  26037. name: "Contour Feather",
  26038. image: {
  26039. source: "./media/characters/alydar/contour-feather.svg"
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Diplomatic",
  26046. height: math.unit(13, "feet"),
  26047. default: true
  26048. },
  26049. {
  26050. name: "Small",
  26051. height: math.unit(30, "feet")
  26052. },
  26053. {
  26054. name: "Normal",
  26055. height: math.unit(95, "feet"),
  26056. default: true
  26057. },
  26058. {
  26059. name: "Large",
  26060. height: math.unit(285, "feet")
  26061. },
  26062. {
  26063. name: "Incomprehensible",
  26064. height: math.unit(450, "megameters")
  26065. },
  26066. ]
  26067. ))
  26068. characterMakers.push(() => makeCharacter(
  26069. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26070. {
  26071. side: {
  26072. height: math.unit(11, "feet"),
  26073. weight: math.unit(1750, "kg"),
  26074. name: "Side",
  26075. image: {
  26076. source: "./media/characters/selicia/side.svg",
  26077. extra: 440 / 396,
  26078. bottom: 24.8 / 465.979
  26079. }
  26080. },
  26081. maw: {
  26082. height: math.unit(4.665, "feet"),
  26083. name: "Maw",
  26084. image: {
  26085. source: "./media/characters/selicia/maw.svg"
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(11, "feet"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26099. {
  26100. side: {
  26101. height: math.unit(2 + 6 / 12, "feet"),
  26102. weight: math.unit(30, "lb"),
  26103. name: "Side",
  26104. image: {
  26105. source: "./media/characters/layla/side.svg",
  26106. extra: 244 / 188,
  26107. bottom: 18.2 / 262.1
  26108. }
  26109. },
  26110. back: {
  26111. height: math.unit(2 + 6 / 12, "feet"),
  26112. weight: math.unit(30, "lb"),
  26113. name: "Back",
  26114. image: {
  26115. source: "./media/characters/layla/back.svg",
  26116. extra: 308 / 241.5,
  26117. bottom: 8.9 / 316.8
  26118. }
  26119. },
  26120. cumming: {
  26121. height: math.unit(2 + 6 / 12, "feet"),
  26122. weight: math.unit(30, "lb"),
  26123. name: "Cumming",
  26124. image: {
  26125. source: "./media/characters/layla/cumming.svg",
  26126. extra: 342 / 279,
  26127. bottom: 595 / 938
  26128. }
  26129. },
  26130. dickFlaccid: {
  26131. height: math.unit(2.595, "feet"),
  26132. name: "Flaccid Genitals",
  26133. image: {
  26134. source: "./media/characters/layla/dick-flaccid.svg"
  26135. }
  26136. },
  26137. dickErect: {
  26138. height: math.unit(2.359, "feet"),
  26139. name: "Erect Genitals",
  26140. image: {
  26141. source: "./media/characters/layla/dick-erect.svg"
  26142. }
  26143. },
  26144. dragon: {
  26145. height: math.unit(40, "feet"),
  26146. name: "Dragon",
  26147. image: {
  26148. source: "./media/characters/layla/dragon.svg",
  26149. extra: 610/535,
  26150. bottom: 367/977
  26151. }
  26152. },
  26153. taur: {
  26154. height: math.unit(30, "feet"),
  26155. name: "Taur",
  26156. image: {
  26157. source: "./media/characters/layla/taur.svg",
  26158. extra: 1268/1199,
  26159. bottom: 112/1380
  26160. }
  26161. },
  26162. },
  26163. [
  26164. {
  26165. name: "Micro",
  26166. height: math.unit(1, "inch")
  26167. },
  26168. {
  26169. name: "Small",
  26170. height: math.unit(1, "foot")
  26171. },
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(2 + 6 / 12, "feet"),
  26175. default: true
  26176. },
  26177. {
  26178. name: "Macro",
  26179. height: math.unit(200, "feet")
  26180. },
  26181. {
  26182. name: "Megamacro",
  26183. height: math.unit(1000, "miles")
  26184. },
  26185. {
  26186. name: "Planetary",
  26187. height: math.unit(8000, "miles")
  26188. },
  26189. {
  26190. name: "True Layla",
  26191. height: math.unit(200000 * 7, "multiverses")
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26197. {
  26198. back: {
  26199. height: math.unit(10.5, "feet"),
  26200. weight: math.unit(800, "lb"),
  26201. name: "Back",
  26202. image: {
  26203. source: "./media/characters/knox/back.svg",
  26204. extra: 1486 / 1089,
  26205. bottom: 107 / 1601.4
  26206. }
  26207. },
  26208. side: {
  26209. height: math.unit(10.5, "feet"),
  26210. weight: math.unit(800, "lb"),
  26211. name: "Side",
  26212. image: {
  26213. source: "./media/characters/knox/side.svg",
  26214. extra: 244 / 218,
  26215. bottom: 14 / 260
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Compact",
  26222. height: math.unit(10.5, "feet"),
  26223. default: true
  26224. },
  26225. {
  26226. name: "Dynamax",
  26227. height: math.unit(210, "feet")
  26228. },
  26229. {
  26230. name: "Full Macro",
  26231. height: math.unit(850, "feet")
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(28, "feet"),
  26240. weight: math.unit(10500, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/kayda/front.svg",
  26244. extra: 1536 / 1428,
  26245. bottom: 68.7 / 1603
  26246. }
  26247. },
  26248. back: {
  26249. height: math.unit(28, "feet"),
  26250. weight: math.unit(10500, "lb"),
  26251. name: "Back",
  26252. image: {
  26253. source: "./media/characters/kayda/back.svg",
  26254. extra: 1557 / 1464,
  26255. bottom: 39.5 / 1597.49
  26256. }
  26257. },
  26258. dick: {
  26259. height: math.unit(3.858, "feet"),
  26260. name: "Dick",
  26261. image: {
  26262. source: "./media/characters/kayda/dick.svg"
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Macro",
  26269. height: math.unit(28, "feet"),
  26270. default: true
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(10 + 11 / 12, "feet"),
  26279. weight: math.unit(1400, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/brian/front.svg",
  26283. extra: 737 / 692,
  26284. bottom: 55.4 / 785
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(10 + 11 / 12, "feet"),
  26292. default: true
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(5 + 8 / 12, "feet"),
  26301. weight: math.unit(140, "lb"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/khemri/front.svg",
  26305. extra: 4780 / 4059,
  26306. bottom: 80.1 / 4859.25
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Micro",
  26313. height: math.unit(6, "inches")
  26314. },
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(5 + 8 / 12, "feet"),
  26318. default: true
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26324. {
  26325. front: {
  26326. height: math.unit(13, "feet"),
  26327. weight: math.unit(1700, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/felix-braveheart/front.svg",
  26331. extra: 1222 / 1157,
  26332. bottom: 53.2 / 1280
  26333. }
  26334. },
  26335. back: {
  26336. height: math.unit(13, "feet"),
  26337. weight: math.unit(1700, "lb"),
  26338. name: "Back",
  26339. image: {
  26340. source: "./media/characters/felix-braveheart/back.svg",
  26341. extra: 1277 / 1203,
  26342. bottom: 50.2 / 1327
  26343. }
  26344. },
  26345. feral: {
  26346. height: math.unit(6, "feet"),
  26347. weight: math.unit(400, "lb"),
  26348. name: "Feral",
  26349. image: {
  26350. source: "./media/characters/felix-braveheart/feral.svg",
  26351. extra: 682 / 625,
  26352. bottom: 6.9 / 688
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(13, "feet"),
  26360. default: true
  26361. },
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26366. {
  26367. side: {
  26368. height: math.unit(5 + 11 / 12, "feet"),
  26369. weight: math.unit(1400, "lb"),
  26370. name: "Side",
  26371. image: {
  26372. source: "./media/characters/shadow-blade/side.svg",
  26373. extra: 1726 / 1267,
  26374. bottom: 58.4 / 1785
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Normal",
  26381. height: math.unit(5 + 11 / 12, "feet"),
  26382. default: true
  26383. },
  26384. ]
  26385. ))
  26386. characterMakers.push(() => makeCharacter(
  26387. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26388. {
  26389. front: {
  26390. height: math.unit(1 + 6 / 12, "feet"),
  26391. weight: math.unit(25, "lb"),
  26392. name: "Front",
  26393. image: {
  26394. source: "./media/characters/karla-halldor/front.svg",
  26395. extra: 1459 / 1383,
  26396. bottom: 12 / 1472
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(1 + 6 / 12, "feet"),
  26404. default: true
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(6 + 2 / 12, "feet"),
  26413. weight: math.unit(160, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/ariam/front.svg",
  26417. extra: 1073/976,
  26418. bottom: 52/1125
  26419. }
  26420. },
  26421. back: {
  26422. height: math.unit(6 + 2/12, "feet"),
  26423. weight: math.unit(160, "lb"),
  26424. name: "Back",
  26425. image: {
  26426. source: "./media/characters/ariam/back.svg",
  26427. extra: 1103/1023,
  26428. bottom: 9/1112
  26429. }
  26430. },
  26431. dressed: {
  26432. height: math.unit(6 + 2/12, "feet"),
  26433. weight: math.unit(160, "lb"),
  26434. name: "Dressed",
  26435. image: {
  26436. source: "./media/characters/ariam/dressed.svg",
  26437. extra: 1099/1009,
  26438. bottom: 25/1124
  26439. }
  26440. },
  26441. squatting: {
  26442. height: math.unit(4.1, "feet"),
  26443. weight: math.unit(160, "lb"),
  26444. name: "Squatting",
  26445. image: {
  26446. source: "./media/characters/ariam/squatting.svg",
  26447. extra: 2617 / 2112,
  26448. bottom: 61.2 / 2681,
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Normal",
  26455. height: math.unit(6 + 2 / 12, "feet"),
  26456. default: true
  26457. },
  26458. {
  26459. name: "Normal+",
  26460. height: math.unit(4, "meters")
  26461. },
  26462. {
  26463. name: "Macro",
  26464. height: math.unit(50, "meters")
  26465. },
  26466. {
  26467. name: "Macro+",
  26468. height: math.unit(100, "meters")
  26469. },
  26470. {
  26471. name: "Megamacro",
  26472. height: math.unit(20, "km")
  26473. },
  26474. {
  26475. name: "Caretaker",
  26476. height: math.unit(444, "megameters")
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(1.67, "meters"),
  26485. weight: math.unit(140, "lb"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26489. extra: 438 / 410,
  26490. bottom: 0.75 / 439
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "Shrunken",
  26497. height: math.unit(7.6, "cm")
  26498. },
  26499. {
  26500. name: "Human Scale",
  26501. height: math.unit(1.67, "meters")
  26502. },
  26503. {
  26504. name: "Wolxi Scale",
  26505. height: math.unit(36.7, "meters"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(1.73, "meters"),
  26515. weight: math.unit(240, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/izue-two-mothers/front.svg",
  26519. extra: 469 / 437,
  26520. bottom: 1.24 / 470.6
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Shrunken",
  26527. height: math.unit(7.86, "cm")
  26528. },
  26529. {
  26530. name: "Human Scale",
  26531. height: math.unit(1.73, "meters")
  26532. },
  26533. {
  26534. name: "Wolxi Scale",
  26535. height: math.unit(38, "meters"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(1.55, "meters"),
  26545. weight: math.unit(120, "lb"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/teeku-love-shack/front.svg",
  26549. extra: 387 / 362,
  26550. bottom: 1.51 / 388
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Shrunken",
  26557. height: math.unit(7, "cm")
  26558. },
  26559. {
  26560. name: "Human Scale",
  26561. height: math.unit(1.55, "meters")
  26562. },
  26563. {
  26564. name: "Wolxi Scale",
  26565. height: math.unit(34.1, "meters"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(1.83, "meters"),
  26575. weight: math.unit(135, "lb"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/dejma-the-red/front.svg",
  26579. extra: 480 / 458,
  26580. bottom: 1.8 / 482
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Shrunken",
  26587. height: math.unit(8.3, "cm")
  26588. },
  26589. {
  26590. name: "Human Scale",
  26591. height: math.unit(1.83, "meters")
  26592. },
  26593. {
  26594. name: "Wolxi Scale",
  26595. height: math.unit(40, "meters"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(1.78, "meters"),
  26605. weight: math.unit(65, "kg"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/aki/front.svg",
  26609. extra: 452 / 415
  26610. }
  26611. },
  26612. frontNsfw: {
  26613. height: math.unit(1.78, "meters"),
  26614. weight: math.unit(65, "kg"),
  26615. name: "Front (NSFW)",
  26616. image: {
  26617. source: "./media/characters/aki/front-nsfw.svg",
  26618. extra: 452 / 415
  26619. }
  26620. },
  26621. back: {
  26622. height: math.unit(1.78, "meters"),
  26623. weight: math.unit(65, "kg"),
  26624. name: "Back",
  26625. image: {
  26626. source: "./media/characters/aki/back.svg",
  26627. extra: 452 / 415
  26628. }
  26629. },
  26630. rump: {
  26631. height: math.unit(2.05, "feet"),
  26632. name: "Rump",
  26633. image: {
  26634. source: "./media/characters/aki/rump.svg"
  26635. }
  26636. },
  26637. dick: {
  26638. height: math.unit(0.95, "feet"),
  26639. name: "Dick",
  26640. image: {
  26641. source: "./media/characters/aki/dick.svg"
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Micro",
  26648. height: math.unit(15, "cm")
  26649. },
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(178, "cm"),
  26653. default: true
  26654. },
  26655. {
  26656. name: "Macro",
  26657. height: math.unit(214, "m")
  26658. },
  26659. {
  26660. name: "Macro+",
  26661. height: math.unit(534, "m")
  26662. },
  26663. ]
  26664. ))
  26665. characterMakers.push(() => makeCharacter(
  26666. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26667. {
  26668. front: {
  26669. height: math.unit(5 + 5 / 12, "feet"),
  26670. weight: math.unit(120, "lb"),
  26671. name: "Front",
  26672. image: {
  26673. source: "./media/characters/ari/front.svg",
  26674. extra: 1550/1471,
  26675. bottom: 39/1589
  26676. }
  26677. },
  26678. },
  26679. [
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(5 + 5 / 12, "feet")
  26683. },
  26684. {
  26685. name: "Macro",
  26686. height: math.unit(100, "feet"),
  26687. default: true
  26688. },
  26689. {
  26690. name: "Megamacro",
  26691. height: math.unit(100, "miles")
  26692. },
  26693. {
  26694. name: "Gigamacro",
  26695. height: math.unit(80000, "miles")
  26696. },
  26697. ]
  26698. ))
  26699. characterMakers.push(() => makeCharacter(
  26700. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26701. {
  26702. side: {
  26703. height: math.unit(9, "feet"),
  26704. weight: math.unit(400, "kg"),
  26705. name: "Side",
  26706. image: {
  26707. source: "./media/characters/bolt/side.svg",
  26708. extra: 1126 / 896,
  26709. bottom: 60 / 1187.3,
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Micro",
  26716. height: math.unit(5, "inches")
  26717. },
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(9, "feet"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(700, "feet")
  26726. },
  26727. {
  26728. name: "Max Size",
  26729. height: math.unit(1.52e22, "yottameters")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(4.3, "meters"),
  26738. weight: math.unit(3, "tons"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/draekon-sylviar/front.svg",
  26742. extra: 2072/1512,
  26743. bottom: 74/2146
  26744. }
  26745. },
  26746. back: {
  26747. height: math.unit(4.3, "meters"),
  26748. weight: math.unit(3, "tons"),
  26749. name: "Back",
  26750. image: {
  26751. source: "./media/characters/draekon-sylviar/back.svg",
  26752. extra: 1639/1483,
  26753. bottom: 41/1680
  26754. }
  26755. },
  26756. feral: {
  26757. height: math.unit(1.15, "meters"),
  26758. weight: math.unit(3, "tons"),
  26759. name: "Feral",
  26760. image: {
  26761. source: "./media/characters/draekon-sylviar/feral.svg",
  26762. extra: 1033/395,
  26763. bottom: 130/1163
  26764. }
  26765. },
  26766. maw: {
  26767. height: math.unit(1.3, "meters"),
  26768. name: "Maw",
  26769. image: {
  26770. source: "./media/characters/draekon-sylviar/maw.svg"
  26771. }
  26772. },
  26773. mawSeparated: {
  26774. height: math.unit(1.53, "meters"),
  26775. name: "Separated Maw",
  26776. image: {
  26777. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26778. }
  26779. },
  26780. tail: {
  26781. height: math.unit(1.15, "meters"),
  26782. name: "Tail",
  26783. image: {
  26784. source: "./media/characters/draekon-sylviar/tail.svg"
  26785. }
  26786. },
  26787. tailDick: {
  26788. height: math.unit(1.15, "meters"),
  26789. name: "Tail (Dick)",
  26790. image: {
  26791. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26792. }
  26793. },
  26794. tailDickSeparated: {
  26795. height: math.unit(1.19, "meters"),
  26796. name: "Tail (Separated Dick)",
  26797. image: {
  26798. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26799. }
  26800. },
  26801. slit: {
  26802. height: math.unit(1, "meters"),
  26803. name: "Slit",
  26804. image: {
  26805. source: "./media/characters/draekon-sylviar/slit.svg"
  26806. }
  26807. },
  26808. dick: {
  26809. height: math.unit(1.15, "meters"),
  26810. name: "Dick",
  26811. image: {
  26812. source: "./media/characters/draekon-sylviar/dick.svg"
  26813. }
  26814. },
  26815. dickSeparated: {
  26816. height: math.unit(1.1, "meters"),
  26817. name: "Separated Dick",
  26818. image: {
  26819. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26820. }
  26821. },
  26822. sheath: {
  26823. height: math.unit(1.15, "meters"),
  26824. name: "Sheath",
  26825. image: {
  26826. source: "./media/characters/draekon-sylviar/sheath.svg"
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Small",
  26833. height: math.unit(4.53 / 2, "meters"),
  26834. default: true
  26835. },
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(4.53, "meters"),
  26839. default: true
  26840. },
  26841. {
  26842. name: "Large",
  26843. height: math.unit(4.53 * 2, "meters"),
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(6 + 2 / 12, "feet"),
  26852. weight: math.unit(180, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/brawler/front.svg",
  26856. extra: 3301 / 3027,
  26857. bottom: 138 / 3439
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(6 + 2 / 12, "feet"),
  26865. default: true
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(11, "feet"),
  26874. weight: math.unit(1000, "lb"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/alex/front.svg",
  26878. bottom: 44.5 / 620
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Micro",
  26885. height: math.unit(5, "inches")
  26886. },
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(11, "feet"),
  26890. default: true
  26891. },
  26892. {
  26893. name: "Macro",
  26894. height: math.unit(9.5e9, "feet")
  26895. },
  26896. {
  26897. name: "Max Size",
  26898. height: math.unit(1.4e283, "yottameters")
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26904. {
  26905. female: {
  26906. height: math.unit(29.9, "m"),
  26907. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26908. name: "Female",
  26909. image: {
  26910. source: "./media/characters/zenari/female.svg",
  26911. extra: 3281.6 / 3217,
  26912. bottom: 72.2 / 3353
  26913. }
  26914. },
  26915. male: {
  26916. height: math.unit(27.7, "m"),
  26917. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26918. name: "Male",
  26919. image: {
  26920. source: "./media/characters/zenari/male.svg",
  26921. extra: 3008 / 2991,
  26922. bottom: 54.6 / 3069
  26923. }
  26924. },
  26925. },
  26926. [
  26927. {
  26928. name: "Macro",
  26929. height: math.unit(29.7, "meters"),
  26930. default: true
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26936. {
  26937. female: {
  26938. height: math.unit(23.8, "m"),
  26939. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26940. name: "Female",
  26941. image: {
  26942. source: "./media/characters/mactarian/female.svg",
  26943. extra: 2662 / 2569,
  26944. bottom: 73 / 2736
  26945. }
  26946. },
  26947. male: {
  26948. height: math.unit(23.8, "m"),
  26949. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26950. name: "Male",
  26951. image: {
  26952. source: "./media/characters/mactarian/male.svg",
  26953. extra: 2673 / 2600,
  26954. bottom: 76 / 2750
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Macro",
  26961. height: math.unit(23.8, "meters"),
  26962. default: true
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26968. {
  26969. female: {
  26970. height: math.unit(19.3, "m"),
  26971. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26972. name: "Female",
  26973. image: {
  26974. source: "./media/characters/umok/female.svg",
  26975. extra: 2186 / 2078,
  26976. bottom: 87 / 2277
  26977. }
  26978. },
  26979. male: {
  26980. height: math.unit(19.5, "m"),
  26981. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26982. name: "Male",
  26983. image: {
  26984. source: "./media/characters/umok/male.svg",
  26985. extra: 2233 / 2140,
  26986. bottom: 24.4 / 2258
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(19.3, "meters"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27000. {
  27001. female: {
  27002. height: math.unit(26.15, "m"),
  27003. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27004. name: "Female",
  27005. image: {
  27006. source: "./media/characters/joraxian/female.svg",
  27007. extra: 2912 / 2824,
  27008. bottom: 36 / 2956
  27009. }
  27010. },
  27011. male: {
  27012. height: math.unit(25.4, "m"),
  27013. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27014. name: "Male",
  27015. image: {
  27016. source: "./media/characters/joraxian/male.svg",
  27017. extra: 2877 / 2721,
  27018. bottom: 82 / 2967
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "Macro",
  27025. height: math.unit(26.15, "meters"),
  27026. default: true
  27027. },
  27028. ]
  27029. ))
  27030. characterMakers.push(() => makeCharacter(
  27031. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27032. {
  27033. female: {
  27034. height: math.unit(21.6, "m"),
  27035. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27036. name: "Female",
  27037. image: {
  27038. source: "./media/characters/sthara/female.svg",
  27039. extra: 2516 / 2347,
  27040. bottom: 21.5 / 2537
  27041. }
  27042. },
  27043. male: {
  27044. height: math.unit(24, "m"),
  27045. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27046. name: "Male",
  27047. image: {
  27048. source: "./media/characters/sthara/male.svg",
  27049. extra: 2732 / 2607,
  27050. bottom: 23 / 2732
  27051. }
  27052. },
  27053. },
  27054. [
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(21.6, "meters"),
  27058. default: true
  27059. },
  27060. ]
  27061. ))
  27062. characterMakers.push(() => makeCharacter(
  27063. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27064. {
  27065. front: {
  27066. height: math.unit(6 + 4 / 12, "feet"),
  27067. weight: math.unit(175, "lb"),
  27068. name: "Front",
  27069. image: {
  27070. source: "./media/characters/luka-bryzant/front.svg",
  27071. extra: 311 / 289,
  27072. bottom: 4 / 315
  27073. }
  27074. },
  27075. back: {
  27076. height: math.unit(6 + 4 / 12, "feet"),
  27077. weight: math.unit(175, "lb"),
  27078. name: "Back",
  27079. image: {
  27080. source: "./media/characters/luka-bryzant/back.svg",
  27081. extra: 311 / 289,
  27082. bottom: 3.8 / 313.7
  27083. }
  27084. },
  27085. },
  27086. [
  27087. {
  27088. name: "Micro",
  27089. height: math.unit(10, "inches")
  27090. },
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(6 + 4 / 12, "feet"),
  27094. default: true
  27095. },
  27096. {
  27097. name: "Large",
  27098. height: math.unit(12, "feet")
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(5 + 7 / 12, "feet"),
  27107. weight: math.unit(185, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/aman-aquila/front.svg",
  27111. extra: 1013 / 976,
  27112. bottom: 45.6 / 1057
  27113. }
  27114. },
  27115. side: {
  27116. height: math.unit(5 + 7 / 12, "feet"),
  27117. weight: math.unit(185, "lb"),
  27118. name: "Side",
  27119. image: {
  27120. source: "./media/characters/aman-aquila/side.svg",
  27121. extra: 1054 / 1011,
  27122. bottom: 15 / 1070
  27123. }
  27124. },
  27125. back: {
  27126. height: math.unit(5 + 7 / 12, "feet"),
  27127. weight: math.unit(185, "lb"),
  27128. name: "Back",
  27129. image: {
  27130. source: "./media/characters/aman-aquila/back.svg",
  27131. extra: 1026 / 970,
  27132. bottom: 12 / 1039
  27133. }
  27134. },
  27135. head: {
  27136. height: math.unit(1.211, "feet"),
  27137. name: "Head",
  27138. image: {
  27139. source: "./media/characters/aman-aquila/head.svg",
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Minimicro",
  27146. height: math.unit(0.057, "inches")
  27147. },
  27148. {
  27149. name: "Micro",
  27150. height: math.unit(7, "inches")
  27151. },
  27152. {
  27153. name: "Mini",
  27154. height: math.unit(3 + 7 / 12, "feet")
  27155. },
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(5 + 7 / 12, "feet"),
  27159. default: true
  27160. },
  27161. {
  27162. name: "Macro",
  27163. height: math.unit(157 + 7 / 12, "feet")
  27164. },
  27165. {
  27166. name: "Megamacro",
  27167. height: math.unit(1557 + 7 / 12, "feet")
  27168. },
  27169. {
  27170. name: "Gigamacro",
  27171. height: math.unit(15557 + 7 / 12, "feet")
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(3 + 2 / 12, "inches"),
  27180. weight: math.unit(0.3, "ounces"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/hiphae/front.svg",
  27184. extra: 1931 / 1683,
  27185. bottom: 24 / 1955
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(3 + 1 / 2, "inches"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(5 + 10 / 12, "feet"),
  27202. weight: math.unit(165, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/nicky/front.svg",
  27206. extra: 3144 / 2886,
  27207. bottom: 45.6 / 3192
  27208. }
  27209. },
  27210. back: {
  27211. height: math.unit(5 + 10 / 12, "feet"),
  27212. weight: math.unit(165, "lb"),
  27213. name: "Back",
  27214. image: {
  27215. source: "./media/characters/nicky/back.svg",
  27216. extra: 3055 / 2804,
  27217. bottom: 28.4 / 3087
  27218. }
  27219. },
  27220. frontclothed: {
  27221. height: math.unit(5 + 10 / 12, "feet"),
  27222. weight: math.unit(165, "lb"),
  27223. name: "Front-clothed",
  27224. image: {
  27225. source: "./media/characters/nicky/front-clothed.svg",
  27226. extra: 3184.9 / 2926.9,
  27227. bottom: 86.5 / 3239.9
  27228. }
  27229. },
  27230. foot: {
  27231. height: math.unit(1.16, "feet"),
  27232. name: "Foot",
  27233. image: {
  27234. source: "./media/characters/nicky/foot.svg"
  27235. }
  27236. },
  27237. feet: {
  27238. height: math.unit(1.34, "feet"),
  27239. name: "Feet",
  27240. image: {
  27241. source: "./media/characters/nicky/feet.svg"
  27242. }
  27243. },
  27244. maw: {
  27245. height: math.unit(0.9, "feet"),
  27246. name: "Maw",
  27247. image: {
  27248. source: "./media/characters/nicky/maw.svg"
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(5 + 10 / 12, "feet"),
  27256. default: true
  27257. },
  27258. {
  27259. name: "Macro",
  27260. height: math.unit(60, "feet")
  27261. },
  27262. {
  27263. name: "Megamacro",
  27264. height: math.unit(1, "mile")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27270. {
  27271. side: {
  27272. height: math.unit(10, "feet"),
  27273. weight: math.unit(600, "lb"),
  27274. name: "Side",
  27275. image: {
  27276. source: "./media/characters/blair/side.svg",
  27277. bottom: 16.6 / 475,
  27278. extra: 458 / 431
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Micro",
  27285. height: math.unit(8, "inches")
  27286. },
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(10, "feet"),
  27290. default: true
  27291. },
  27292. {
  27293. name: "Macro",
  27294. height: math.unit(180, "feet")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(5 + 4 / 12, "feet"),
  27303. weight: math.unit(125, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/fisher/front.svg",
  27307. extra: 444 / 390,
  27308. bottom: 2 / 444.8
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Micro",
  27315. height: math.unit(4, "inches")
  27316. },
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(5 + 4 / 12, "feet"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Macro",
  27324. height: math.unit(100, "feet")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(6.71, "feet"),
  27333. weight: math.unit(200, "lb"),
  27334. preyCapacity: math.unit(1000000, "people"),
  27335. name: "Front",
  27336. image: {
  27337. source: "./media/characters/gliss/front.svg",
  27338. extra: 2347 / 2231,
  27339. bottom: 113 / 2462
  27340. }
  27341. },
  27342. hammerspaceSize: {
  27343. height: math.unit(6.71 * 717, "feet"),
  27344. weight: math.unit(200, "lb"),
  27345. preyCapacity: math.unit(1000000, "people"),
  27346. name: "Hammerspace Size",
  27347. image: {
  27348. source: "./media/characters/gliss/front.svg",
  27349. extra: 2347 / 2231,
  27350. bottom: 113 / 2462
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(6.71, "feet"),
  27358. default: true
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27364. {
  27365. side: {
  27366. height: math.unit(1.44, "m"),
  27367. weight: math.unit(80, "kg"),
  27368. name: "Side",
  27369. image: {
  27370. source: "./media/characters/dune-anderson/side.svg",
  27371. bottom: 49 / 1426
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Wolf-sized",
  27378. height: math.unit(1.44, "meters")
  27379. },
  27380. {
  27381. name: "Normal",
  27382. height: math.unit(5.05, "meters"),
  27383. default: true
  27384. },
  27385. {
  27386. name: "Big",
  27387. height: math.unit(14.4, "meters")
  27388. },
  27389. {
  27390. name: "Huge",
  27391. height: math.unit(144, "meters")
  27392. },
  27393. ]
  27394. ))
  27395. characterMakers.push(() => makeCharacter(
  27396. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27397. {
  27398. front: {
  27399. height: math.unit(7, "feet"),
  27400. weight: math.unit(425, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/hind/front.svg",
  27404. extra: 2091 / 1860,
  27405. bottom: 129 / 2220
  27406. }
  27407. },
  27408. back: {
  27409. height: math.unit(7, "feet"),
  27410. weight: math.unit(425, "lb"),
  27411. name: "Back",
  27412. image: {
  27413. source: "./media/characters/hind/back.svg",
  27414. extra: 2091 / 1860,
  27415. bottom: 24.6 / 2309
  27416. }
  27417. },
  27418. tail: {
  27419. height: math.unit(2.8, "feet"),
  27420. name: "Tail",
  27421. image: {
  27422. source: "./media/characters/hind/tail.svg"
  27423. }
  27424. },
  27425. head: {
  27426. height: math.unit(2.55, "feet"),
  27427. name: "Head",
  27428. image: {
  27429. source: "./media/characters/hind/head.svg"
  27430. }
  27431. },
  27432. },
  27433. [
  27434. {
  27435. name: "XS",
  27436. height: math.unit(0.7, "feet")
  27437. },
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(7, "feet"),
  27441. default: true
  27442. },
  27443. {
  27444. name: "XL",
  27445. height: math.unit(70, "feet")
  27446. },
  27447. ]
  27448. ))
  27449. characterMakers.push(() => makeCharacter(
  27450. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27451. {
  27452. front: {
  27453. height: math.unit(2.1, "meters"),
  27454. weight: math.unit(150, "lb"),
  27455. name: "Front",
  27456. image: {
  27457. source: "./media/characters/tharquench-sizestealer/front.svg",
  27458. extra: 1605/1470,
  27459. bottom: 36/1641
  27460. }
  27461. },
  27462. frontAlt: {
  27463. height: math.unit(2.1, "meters"),
  27464. weight: math.unit(150, "lb"),
  27465. name: "Front (Alt)",
  27466. image: {
  27467. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27468. extra: 2318 / 2063,
  27469. bottom: 93.4 / 2410
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Nano",
  27476. height: math.unit(1, "mm")
  27477. },
  27478. {
  27479. name: "Micro",
  27480. height: math.unit(1, "cm")
  27481. },
  27482. {
  27483. name: "Normal",
  27484. height: math.unit(2.1, "meters"),
  27485. default: true
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(7 + 5 / 12, "feet"),
  27494. weight: math.unit(357, "lb"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/solex-draconov/front.svg",
  27498. extra: 1993 / 1865,
  27499. bottom: 117 / 2111
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Natural Height",
  27506. height: math.unit(7 + 5 / 12, "feet"),
  27507. default: true
  27508. },
  27509. {
  27510. name: "Macro",
  27511. height: math.unit(350, "feet")
  27512. },
  27513. {
  27514. name: "Macro+",
  27515. height: math.unit(1000, "feet")
  27516. },
  27517. {
  27518. name: "Megamacro",
  27519. height: math.unit(20, "km")
  27520. },
  27521. {
  27522. name: "Megamacro+",
  27523. height: math.unit(1000, "km")
  27524. },
  27525. {
  27526. name: "Gigamacro",
  27527. height: math.unit(2.5, "Gm")
  27528. },
  27529. {
  27530. name: "Teramacro",
  27531. height: math.unit(15, "Tm")
  27532. },
  27533. {
  27534. name: "Galactic",
  27535. height: math.unit(30, "Zm")
  27536. },
  27537. {
  27538. name: "Universal",
  27539. height: math.unit(21000, "Ym")
  27540. },
  27541. {
  27542. name: "Omniversal",
  27543. height: math.unit(9.861e50, "Ym")
  27544. },
  27545. {
  27546. name: "Existential",
  27547. height: math.unit(1e300, "meters")
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27553. {
  27554. side: {
  27555. height: math.unit(25, "feet"),
  27556. weight: math.unit(90000, "lb"),
  27557. name: "Side",
  27558. image: {
  27559. source: "./media/characters/mandarax/side.svg",
  27560. extra: 614 / 332,
  27561. bottom: 55 / 630
  27562. }
  27563. },
  27564. lounging: {
  27565. height: math.unit(15.4, "feet"),
  27566. weight: math.unit(90000, "lb"),
  27567. name: "Lounging",
  27568. image: {
  27569. source: "./media/characters/mandarax/lounging.svg",
  27570. extra: 817/609,
  27571. bottom: 685/1502
  27572. }
  27573. },
  27574. head: {
  27575. height: math.unit(11.4, "feet"),
  27576. name: "Head",
  27577. image: {
  27578. source: "./media/characters/mandarax/head.svg"
  27579. }
  27580. },
  27581. belly: {
  27582. height: math.unit(33, "feet"),
  27583. name: "Belly",
  27584. preyCapacity: math.unit(500, "people"),
  27585. image: {
  27586. source: "./media/characters/mandarax/belly.svg"
  27587. }
  27588. },
  27589. dick: {
  27590. height: math.unit(8.46, "feet"),
  27591. name: "Dick",
  27592. image: {
  27593. source: "./media/characters/mandarax/dick.svg"
  27594. }
  27595. },
  27596. top: {
  27597. height: math.unit(28, "meters"),
  27598. name: "Top",
  27599. image: {
  27600. source: "./media/characters/mandarax/top.svg"
  27601. }
  27602. },
  27603. },
  27604. [
  27605. {
  27606. name: "Normal",
  27607. height: math.unit(25, "feet"),
  27608. default: true
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(5, "feet"),
  27617. weight: math.unit(90, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/pixil/front.svg",
  27621. extra: 2000 / 1618,
  27622. bottom: 12.3 / 2011
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(5, "feet"),
  27630. default: true
  27631. },
  27632. {
  27633. name: "Megamacro",
  27634. height: math.unit(10, "miles"),
  27635. },
  27636. ]
  27637. ))
  27638. characterMakers.push(() => makeCharacter(
  27639. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27640. {
  27641. front: {
  27642. height: math.unit(7 + 2 / 12, "feet"),
  27643. weight: math.unit(200, "lb"),
  27644. name: "Front",
  27645. image: {
  27646. source: "./media/characters/angel/front.svg",
  27647. extra: 1830 / 1737,
  27648. bottom: 22.6 / 1854,
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7 + 2 / 12, "feet"),
  27656. default: true
  27657. },
  27658. {
  27659. name: "Macro",
  27660. height: math.unit(1000, "feet")
  27661. },
  27662. {
  27663. name: "Megamacro",
  27664. height: math.unit(2, "miles")
  27665. },
  27666. {
  27667. name: "Gigamacro",
  27668. height: math.unit(20, "earths")
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(5, "feet"),
  27677. weight: math.unit(180, "lb"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/mekana/front.svg",
  27681. extra: 1671 / 1605,
  27682. bottom: 3.5 / 1691
  27683. }
  27684. },
  27685. side: {
  27686. height: math.unit(5, "feet"),
  27687. weight: math.unit(180, "lb"),
  27688. name: "Side",
  27689. image: {
  27690. source: "./media/characters/mekana/side.svg",
  27691. extra: 1671 / 1605,
  27692. bottom: 3.5 / 1691
  27693. }
  27694. },
  27695. back: {
  27696. height: math.unit(5, "feet"),
  27697. weight: math.unit(180, "lb"),
  27698. name: "Back",
  27699. image: {
  27700. source: "./media/characters/mekana/back.svg",
  27701. extra: 1671 / 1605,
  27702. bottom: 3.5 / 1691
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Normal",
  27709. height: math.unit(5, "feet"),
  27710. default: true
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(4 + 6 / 12, "feet"),
  27719. weight: math.unit(80, "lb"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/pixie/front.svg",
  27723. extra: 1924 / 1825,
  27724. bottom: 22.4 / 1946
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(4 + 6 / 12, "feet"),
  27732. default: true
  27733. },
  27734. {
  27735. name: "Macro",
  27736. height: math.unit(40, "feet")
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(2.1, "meters"),
  27745. weight: math.unit(200, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/the-lascivious/front.svg",
  27749. extra: 1 / 0.893,
  27750. bottom: 3.5 / 573.7
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Human Scale",
  27757. height: math.unit(2.1, "meters")
  27758. },
  27759. {
  27760. name: "Wolxi Scale",
  27761. height: math.unit(46.2, "m"),
  27762. default: true
  27763. },
  27764. {
  27765. name: "Boinker of Buildings",
  27766. height: math.unit(10, "km")
  27767. },
  27768. {
  27769. name: "Shagger of Skyscrapers",
  27770. height: math.unit(40, "km")
  27771. },
  27772. {
  27773. name: "Banger of Boroughs",
  27774. height: math.unit(4000, "km")
  27775. },
  27776. {
  27777. name: "Screwer of States",
  27778. height: math.unit(100000, "km")
  27779. },
  27780. {
  27781. name: "Pounder of Planets",
  27782. height: math.unit(2000000, "km")
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(6, "feet"),
  27791. weight: math.unit(150, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/aj/front.svg",
  27795. extra: 2039 / 1562,
  27796. bottom: 40 / 2079
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(11 + 6 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Megamacro",
  27808. height: math.unit(60, "megameters")
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27814. {
  27815. side: {
  27816. height: math.unit(31 + 8 / 12, "feet"),
  27817. weight: math.unit(75000, "kg"),
  27818. name: "Side",
  27819. image: {
  27820. source: "./media/characters/koros/side.svg",
  27821. extra: 1442 / 1297,
  27822. bottom: 122.7 / 1562
  27823. }
  27824. },
  27825. dicksKingsCrown: {
  27826. height: math.unit(6, "feet"),
  27827. name: "Dicks (King's Crown)",
  27828. image: {
  27829. source: "./media/characters/koros/dicks-kings-crown.svg"
  27830. }
  27831. },
  27832. dicksTailSet: {
  27833. height: math.unit(3, "feet"),
  27834. name: "Dicks (Tail Set)",
  27835. image: {
  27836. source: "./media/characters/koros/dicks-tail-set.svg"
  27837. }
  27838. },
  27839. dickCumming: {
  27840. height: math.unit(7.98, "feet"),
  27841. name: "Dick (Cumming)",
  27842. image: {
  27843. source: "./media/characters/koros/dick-cumming.svg"
  27844. }
  27845. },
  27846. dicksBack: {
  27847. height: math.unit(5.9, "feet"),
  27848. name: "Dicks (Back)",
  27849. image: {
  27850. source: "./media/characters/koros/dicks-back.svg"
  27851. }
  27852. },
  27853. dicksFront: {
  27854. height: math.unit(3.72, "feet"),
  27855. name: "Dicks (Front)",
  27856. image: {
  27857. source: "./media/characters/koros/dicks-front.svg"
  27858. }
  27859. },
  27860. dicksPeeking: {
  27861. height: math.unit(3.0, "feet"),
  27862. name: "Dicks (Peeking)",
  27863. image: {
  27864. source: "./media/characters/koros/dicks-peeking.svg"
  27865. }
  27866. },
  27867. eye: {
  27868. height: math.unit(1.7, "feet"),
  27869. name: "Eye",
  27870. image: {
  27871. source: "./media/characters/koros/eye.svg"
  27872. }
  27873. },
  27874. headFront: {
  27875. height: math.unit(11.69, "feet"),
  27876. name: "Head (Front)",
  27877. image: {
  27878. source: "./media/characters/koros/head-front.svg"
  27879. }
  27880. },
  27881. headSide: {
  27882. height: math.unit(14, "feet"),
  27883. name: "Head (Side)",
  27884. image: {
  27885. source: "./media/characters/koros/head-side.svg"
  27886. }
  27887. },
  27888. leg: {
  27889. height: math.unit(17, "feet"),
  27890. name: "Leg",
  27891. image: {
  27892. source: "./media/characters/koros/leg.svg"
  27893. }
  27894. },
  27895. mawSide: {
  27896. height: math.unit(12.8, "feet"),
  27897. name: "Maw (Side)",
  27898. image: {
  27899. source: "./media/characters/koros/maw-side.svg"
  27900. }
  27901. },
  27902. mawSpitting: {
  27903. height: math.unit(17, "feet"),
  27904. name: "Maw (Spitting)",
  27905. image: {
  27906. source: "./media/characters/koros/maw-spitting.svg"
  27907. }
  27908. },
  27909. slit: {
  27910. height: math.unit(2.8, "feet"),
  27911. name: "Slit",
  27912. image: {
  27913. source: "./media/characters/koros/slit.svg"
  27914. }
  27915. },
  27916. stomach: {
  27917. height: math.unit(6.8, "feet"),
  27918. preyCapacity: math.unit(20, "people"),
  27919. name: "Stomach",
  27920. image: {
  27921. source: "./media/characters/koros/stomach.svg"
  27922. }
  27923. },
  27924. wingspanBottom: {
  27925. height: math.unit(114, "feet"),
  27926. name: "Wingspan (Bottom)",
  27927. image: {
  27928. source: "./media/characters/koros/wingspan-bottom.svg"
  27929. }
  27930. },
  27931. wingspanTop: {
  27932. height: math.unit(104, "feet"),
  27933. name: "Wingspan (Top)",
  27934. image: {
  27935. source: "./media/characters/koros/wingspan-top.svg"
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Normal",
  27942. height: math.unit(31 + 8 / 12, "feet"),
  27943. default: true
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27949. {
  27950. front: {
  27951. height: math.unit(18 + 5 / 12, "feet"),
  27952. weight: math.unit(3750, "kg"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/vexx/front.svg",
  27956. extra: 426 / 396,
  27957. bottom: 31.5 / 458
  27958. }
  27959. },
  27960. maw: {
  27961. height: math.unit(6, "feet"),
  27962. name: "Maw",
  27963. image: {
  27964. source: "./media/characters/vexx/maw.svg"
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(18 + 5 / 12, "feet"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(17 + 6 / 12, "feet"),
  27981. weight: math.unit(150, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/baadra/front.svg",
  27985. extra: 1694/1553,
  27986. bottom: 179/1873
  27987. }
  27988. },
  27989. frontAlt: {
  27990. height: math.unit(17 + 6 / 12, "feet"),
  27991. weight: math.unit(150, "lb"),
  27992. name: "Front (Alt)",
  27993. image: {
  27994. source: "./media/characters/baadra/front-alt.svg",
  27995. extra: 3137 / 2890,
  27996. bottom: 168.4 / 3305
  27997. }
  27998. },
  27999. back: {
  28000. height: math.unit(17 + 6 / 12, "feet"),
  28001. weight: math.unit(150, "lb"),
  28002. name: "Back",
  28003. image: {
  28004. source: "./media/characters/baadra/back.svg",
  28005. extra: 3142 / 2890,
  28006. bottom: 220 / 3371
  28007. }
  28008. },
  28009. head: {
  28010. height: math.unit(5.45, "feet"),
  28011. name: "Head",
  28012. image: {
  28013. source: "./media/characters/baadra/head.svg"
  28014. }
  28015. },
  28016. headAngry: {
  28017. height: math.unit(4.95, "feet"),
  28018. name: "Head (Angry)",
  28019. image: {
  28020. source: "./media/characters/baadra/head-angry.svg"
  28021. }
  28022. },
  28023. headOpen: {
  28024. height: math.unit(6, "feet"),
  28025. name: "Head (Open)",
  28026. image: {
  28027. source: "./media/characters/baadra/head-open.svg"
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(17 + 6 / 12, "feet"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28041. {
  28042. front: {
  28043. height: math.unit(7 + 3 / 12, "feet"),
  28044. weight: math.unit(180, "lb"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/juri/front.svg",
  28048. extra: 1401 / 1237,
  28049. bottom: 18.5 / 1418
  28050. }
  28051. },
  28052. side: {
  28053. height: math.unit(7 + 3 / 12, "feet"),
  28054. weight: math.unit(180, "lb"),
  28055. name: "Side",
  28056. image: {
  28057. source: "./media/characters/juri/side.svg",
  28058. extra: 1424 / 1242,
  28059. bottom: 18.5 / 1447
  28060. }
  28061. },
  28062. sitting: {
  28063. height: math.unit(6, "feet"),
  28064. weight: math.unit(180, "lb"),
  28065. name: "Sitting",
  28066. image: {
  28067. source: "./media/characters/juri/sitting.svg",
  28068. extra: 1270 / 1143,
  28069. bottom: 100 / 1343
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(7 + 3 / 12, "feet"),
  28074. weight: math.unit(180, "lb"),
  28075. name: "Back",
  28076. image: {
  28077. source: "./media/characters/juri/back.svg",
  28078. extra: 1377 / 1240,
  28079. bottom: 23.7 / 1405
  28080. }
  28081. },
  28082. maw: {
  28083. height: math.unit(2.8, "feet"),
  28084. name: "Maw",
  28085. image: {
  28086. source: "./media/characters/juri/maw.svg"
  28087. }
  28088. },
  28089. stomach: {
  28090. height: math.unit(0.89, "feet"),
  28091. preyCapacity: math.unit(4, "liters"),
  28092. name: "Stomach",
  28093. image: {
  28094. source: "./media/characters/juri/stomach.svg"
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(7 + 3 / 12, "feet"),
  28102. default: true
  28103. },
  28104. ]
  28105. ))
  28106. characterMakers.push(() => makeCharacter(
  28107. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28108. {
  28109. fox: {
  28110. height: math.unit(5 + 6 / 12, "feet"),
  28111. weight: math.unit(140, "lb"),
  28112. name: "Fox",
  28113. image: {
  28114. source: "./media/characters/maxene-sita/fox.svg",
  28115. extra: 146 / 138,
  28116. bottom: 2.1 / 148.19
  28117. }
  28118. },
  28119. foxLaying: {
  28120. height: math.unit(1.70, "feet"),
  28121. weight: math.unit(140, "lb"),
  28122. name: "Fox (Laying)",
  28123. image: {
  28124. source: "./media/characters/maxene-sita/fox-laying.svg",
  28125. extra: 910 / 572,
  28126. bottom: 71 / 981
  28127. }
  28128. },
  28129. kitsune: {
  28130. height: math.unit(10, "feet"),
  28131. weight: math.unit(800, "lb"),
  28132. name: "Kitsune",
  28133. image: {
  28134. source: "./media/characters/maxene-sita/kitsune.svg",
  28135. extra: 185 / 176,
  28136. bottom: 4.7 / 189.9
  28137. }
  28138. },
  28139. hellhound: {
  28140. height: math.unit(10, "feet"),
  28141. weight: math.unit(700, "lb"),
  28142. name: "Hellhound",
  28143. image: {
  28144. source: "./media/characters/maxene-sita/hellhound.svg",
  28145. extra: 1600 / 1545,
  28146. bottom: 81 / 1681
  28147. }
  28148. },
  28149. },
  28150. [
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(5 + 6 / 12, "feet"),
  28154. default: true
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28160. {
  28161. front: {
  28162. height: math.unit(3 + 4 / 12, "feet"),
  28163. weight: math.unit(70, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/maia/front.svg",
  28167. extra: 227 / 219.5,
  28168. bottom: 40 / 267
  28169. }
  28170. },
  28171. back: {
  28172. height: math.unit(3 + 4 / 12, "feet"),
  28173. weight: math.unit(70, "lb"),
  28174. name: "Back",
  28175. image: {
  28176. source: "./media/characters/maia/back.svg",
  28177. extra: 237 / 225
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(3 + 4 / 12, "feet"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(5 + 10 / 12, "feet"),
  28194. weight: math.unit(197, "lb"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/jabaro/front.svg",
  28198. extra: 225 / 216,
  28199. bottom: 5.06 / 230
  28200. }
  28201. },
  28202. back: {
  28203. height: math.unit(5 + 10 / 12, "feet"),
  28204. weight: math.unit(197, "lb"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/jabaro/back.svg",
  28208. extra: 225 / 219,
  28209. bottom: 1.9 / 227
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(5 + 10 / 12, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(5 + 8 / 12, "feet"),
  28226. weight: math.unit(139, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/risa/front.svg",
  28230. extra: 270 / 260,
  28231. bottom: 11.2 / 282
  28232. }
  28233. },
  28234. back: {
  28235. height: math.unit(5 + 8 / 12, "feet"),
  28236. weight: math.unit(139, "lb"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/risa/back.svg",
  28240. extra: 264 / 255,
  28241. bottom: 4 / 268
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(5 + 8 / 12, "feet"),
  28249. default: true
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(2 + 11 / 12, "feet"),
  28258. weight: math.unit(30, "lb"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/weatley/front.svg",
  28262. bottom: 10.7 / 414,
  28263. extra: 403.5 / 362
  28264. }
  28265. },
  28266. back: {
  28267. height: math.unit(2 + 11 / 12, "feet"),
  28268. weight: math.unit(30, "lb"),
  28269. name: "Back",
  28270. image: {
  28271. source: "./media/characters/weatley/back.svg",
  28272. bottom: 10.7 / 414,
  28273. extra: 403.5 / 362
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Normal",
  28280. height: math.unit(2 + 11 / 12, "feet"),
  28281. default: true
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28287. {
  28288. front: {
  28289. height: math.unit(5 + 2 / 12, "feet"),
  28290. weight: math.unit(50, "kg"),
  28291. name: "Front",
  28292. image: {
  28293. source: "./media/characters/mercury-crescent/front.svg",
  28294. extra: 1088 / 1033,
  28295. bottom: 18.9 / 1109
  28296. }
  28297. },
  28298. },
  28299. [
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(5 + 2 / 12, "feet"),
  28303. default: true
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(2, "feet"),
  28312. weight: math.unit(15, "kg"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/diamond-jones/front.svg",
  28316. extra: 727/723,
  28317. bottom: 46/773
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(2, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(3, "feet"),
  28334. weight: math.unit(30, "kg"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/sweet-bit/front.svg",
  28338. extra: 675 / 567,
  28339. bottom: 27.7 / 703
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(3, "feet"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28353. {
  28354. side: {
  28355. height: math.unit(9.178, "feet"),
  28356. weight: math.unit(500, "lb"),
  28357. name: "Side",
  28358. image: {
  28359. source: "./media/characters/umbrazen/side.svg",
  28360. extra: 1730 / 1473,
  28361. bottom: 34.6 / 1765
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(9.178, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28375. {
  28376. front: {
  28377. height: math.unit(10, "feet"),
  28378. weight: math.unit(750, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/arlist/front.svg",
  28382. extra: 961 / 778,
  28383. bottom: 6.2 / 986
  28384. }
  28385. },
  28386. },
  28387. [
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(10, "feet"),
  28391. default: true
  28392. },
  28393. ]
  28394. ))
  28395. characterMakers.push(() => makeCharacter(
  28396. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28397. {
  28398. front: {
  28399. height: math.unit(5 + 1 / 12, "feet"),
  28400. weight: math.unit(110, "lb"),
  28401. name: "Front",
  28402. image: {
  28403. source: "./media/characters/aradel/front.svg",
  28404. extra: 324 / 303,
  28405. bottom: 3.6 / 329.4
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(5 + 1 / 12, "feet"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28419. {
  28420. dressed: {
  28421. height: math.unit(3 + 8 / 12, "feet"),
  28422. weight: math.unit(50, "lb"),
  28423. name: "Dressed",
  28424. image: {
  28425. source: "./media/characters/serryn/dressed.svg",
  28426. extra: 1792 / 1656,
  28427. bottom: 43.5 / 1840
  28428. }
  28429. },
  28430. nude: {
  28431. height: math.unit(3 + 8 / 12, "feet"),
  28432. weight: math.unit(50, "lb"),
  28433. name: "Nude",
  28434. image: {
  28435. source: "./media/characters/serryn/nude.svg",
  28436. extra: 1792 / 1656,
  28437. bottom: 43.5 / 1840
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(3 + 8 / 12, "feet"),
  28445. default: true
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(7 + 10 / 12, "feet"),
  28454. weight: math.unit(255, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/xavier-thyme/front.svg",
  28458. extra: 3733 / 3642,
  28459. bottom: 131 / 3869
  28460. }
  28461. },
  28462. frontRaven: {
  28463. height: math.unit(7 + 10 / 12, "feet"),
  28464. weight: math.unit(255, "lb"),
  28465. name: "Front (Raven)",
  28466. image: {
  28467. source: "./media/characters/xavier-thyme/front-raven.svg",
  28468. extra: 4385 / 3642,
  28469. bottom: 131 / 4517
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(7 + 10 / 12, "feet"),
  28477. default: true
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(1.6, "m"),
  28486. weight: math.unit(50, "kg"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/kiki/front.svg",
  28490. extra: 4682 / 3610,
  28491. bottom: 115 / 4777
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(1.6, "meters"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(50, "m"),
  28508. weight: math.unit(500, "tonnes"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/ryoko/front.svg",
  28512. extra: 4632 / 3926,
  28513. bottom: 193 / 4823
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(50, "meters"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(30, "m"),
  28530. weight: math.unit(22, "tonnes"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/elio/front.svg",
  28534. extra: 4582 / 3720,
  28535. bottom: 236 / 4828
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(30, "meters"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(6 + 3 / 12, "feet"),
  28552. weight: math.unit(120, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/azura/front.svg",
  28556. extra: 1149 / 1135,
  28557. bottom: 45 / 1194
  28558. }
  28559. },
  28560. frontClothed: {
  28561. height: math.unit(6 + 3 / 12, "feet"),
  28562. weight: math.unit(120, "lb"),
  28563. name: "Front (Clothed)",
  28564. image: {
  28565. source: "./media/characters/azura/front-clothed.svg",
  28566. extra: 1149 / 1135,
  28567. bottom: 45 / 1194
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(6 + 3 / 12, "feet"),
  28575. default: true
  28576. },
  28577. {
  28578. name: "Macro",
  28579. height: math.unit(20 + 6 / 12, "feet")
  28580. },
  28581. {
  28582. name: "Megamacro",
  28583. height: math.unit(12, "miles")
  28584. },
  28585. {
  28586. name: "Gigamacro",
  28587. height: math.unit(10000, "miles")
  28588. },
  28589. {
  28590. name: "Teramacro",
  28591. height: math.unit(900000, "miles")
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(12, "feet"),
  28600. weight: math.unit(1, "ton"),
  28601. capacity: math.unit(660000, "gallons"),
  28602. name: "Front",
  28603. image: {
  28604. source: "./media/characters/zeus/front.svg",
  28605. extra: 5005 / 4717,
  28606. bottom: 363 / 5388
  28607. }
  28608. },
  28609. },
  28610. [
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(12, "feet")
  28614. },
  28615. {
  28616. name: "Preferred Size",
  28617. height: math.unit(0.5, "miles"),
  28618. default: true
  28619. },
  28620. {
  28621. name: "Giga Horse",
  28622. height: math.unit(300, "miles")
  28623. },
  28624. {
  28625. name: "Riding Planets",
  28626. height: math.unit(30, "megameters")
  28627. },
  28628. {
  28629. name: "Cosmic Giant",
  28630. height: math.unit(3, "zettameters")
  28631. },
  28632. {
  28633. name: "Breeding God",
  28634. height: math.unit(9.92e22, "yottameters")
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28640. {
  28641. side: {
  28642. height: math.unit(9, "feet"),
  28643. weight: math.unit(1500, "kg"),
  28644. name: "Side",
  28645. image: {
  28646. source: "./media/characters/fang/side.svg",
  28647. extra: 924 / 866,
  28648. bottom: 47.5 / 972.3
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(9, "feet"),
  28656. default: true
  28657. },
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(75 + 6 / 12, "feet")
  28661. },
  28662. {
  28663. name: "Teramacro",
  28664. height: math.unit(50000, "miles")
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(10, "feet"),
  28673. weight: math.unit(2, "tons"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/rekhit/front.svg",
  28677. extra: 2796 / 2590,
  28678. bottom: 225 / 3022
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Normal",
  28685. height: math.unit(10, "feet"),
  28686. default: true
  28687. },
  28688. {
  28689. name: "Macro",
  28690. height: math.unit(500, "feet")
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(7 + 6.451 / 12, "feet"),
  28699. weight: math.unit(310, "lb"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/dahlia-verrick/front.svg",
  28703. extra: 1488 / 1365,
  28704. bottom: 6.2 / 1495
  28705. }
  28706. },
  28707. back: {
  28708. height: math.unit(7 + 6.451 / 12, "feet"),
  28709. weight: math.unit(310, "lb"),
  28710. name: "Back",
  28711. image: {
  28712. source: "./media/characters/dahlia-verrick/back.svg",
  28713. extra: 1472 / 1351,
  28714. bottom: 5.28 / 1477
  28715. }
  28716. },
  28717. frontBusiness: {
  28718. height: math.unit(7 + 6.451 / 12, "feet"),
  28719. weight: math.unit(200, "lb"),
  28720. name: "Front (Business)",
  28721. image: {
  28722. source: "./media/characters/dahlia-verrick/front-business.svg",
  28723. extra: 1478 / 1381,
  28724. bottom: 5.5 / 1484
  28725. }
  28726. },
  28727. frontCasual: {
  28728. height: math.unit(7 + 6.451 / 12, "feet"),
  28729. weight: math.unit(200, "lb"),
  28730. name: "Front (Casual)",
  28731. image: {
  28732. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28733. extra: 1478 / 1381,
  28734. bottom: 5.5 / 1484
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Travel-Sized",
  28741. height: math.unit(7.45, "inches")
  28742. },
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(7 + 6.451 / 12, "feet"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Hitting the Town",
  28750. height: math.unit(37 + 8 / 12, "feet")
  28751. },
  28752. {
  28753. name: "Stomp in the Suburbs",
  28754. height: math.unit(964 + 9.728 / 12, "feet")
  28755. },
  28756. {
  28757. name: "Sit on the City",
  28758. height: math.unit(61747 + 10.592 / 12, "feet")
  28759. },
  28760. {
  28761. name: "Glomp the Globe",
  28762. height: math.unit(252919327 + 4.832 / 12, "feet")
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(6 + 4 / 12, "feet"),
  28771. weight: math.unit(320, "lb"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/balina-mahigan/front.svg",
  28775. extra: 447 / 428,
  28776. bottom: 18 / 466
  28777. }
  28778. },
  28779. back: {
  28780. height: math.unit(6 + 4 / 12, "feet"),
  28781. weight: math.unit(320, "lb"),
  28782. name: "Back",
  28783. image: {
  28784. source: "./media/characters/balina-mahigan/back.svg",
  28785. extra: 445 / 428,
  28786. bottom: 4.07 / 448
  28787. }
  28788. },
  28789. arm: {
  28790. height: math.unit(1.88, "feet"),
  28791. name: "Arm",
  28792. image: {
  28793. source: "./media/characters/balina-mahigan/arm.svg"
  28794. }
  28795. },
  28796. backPort: {
  28797. height: math.unit(0.685, "feet"),
  28798. name: "Back Port",
  28799. image: {
  28800. source: "./media/characters/balina-mahigan/back-port.svg"
  28801. }
  28802. },
  28803. hoofpaw: {
  28804. height: math.unit(1.41, "feet"),
  28805. name: "Hoofpaw",
  28806. image: {
  28807. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28808. }
  28809. },
  28810. leftHandBack: {
  28811. height: math.unit(0.938, "feet"),
  28812. name: "Left Hand (Back)",
  28813. image: {
  28814. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28815. }
  28816. },
  28817. leftHandFront: {
  28818. height: math.unit(0.938, "feet"),
  28819. name: "Left Hand (Front)",
  28820. image: {
  28821. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28822. }
  28823. },
  28824. rightHandBack: {
  28825. height: math.unit(0.95, "feet"),
  28826. name: "Right Hand (Back)",
  28827. image: {
  28828. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28829. }
  28830. },
  28831. rightHandFront: {
  28832. height: math.unit(0.95, "feet"),
  28833. name: "Right Hand (Front)",
  28834. image: {
  28835. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Normal",
  28842. height: math.unit(6 + 4 / 12, "feet"),
  28843. default: true
  28844. },
  28845. ]
  28846. ))
  28847. characterMakers.push(() => makeCharacter(
  28848. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28849. {
  28850. front: {
  28851. height: math.unit(6, "feet"),
  28852. weight: math.unit(320, "lb"),
  28853. name: "Front",
  28854. image: {
  28855. source: "./media/characters/balina-mejeri/front.svg",
  28856. extra: 517 / 488,
  28857. bottom: 44.2 / 561
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(6 + 4 / 12, "feet")
  28865. },
  28866. {
  28867. name: "Business",
  28868. height: math.unit(155, "feet"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28875. {
  28876. kneeling: {
  28877. height: math.unit(6 + 4 / 12, "feet"),
  28878. weight: math.unit(300 * 20, "lb"),
  28879. name: "Kneeling",
  28880. image: {
  28881. source: "./media/characters/balbarian/kneeling.svg",
  28882. extra: 922 / 862,
  28883. bottom: 42.4 / 965
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(6 + 4 / 12, "feet")
  28891. },
  28892. {
  28893. name: "Treasured",
  28894. height: math.unit(18 + 9 / 12, "feet"),
  28895. default: true
  28896. },
  28897. {
  28898. name: "Macro",
  28899. height: math.unit(900, "feet")
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(6 + 4 / 12, "feet"),
  28908. weight: math.unit(325, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/balina-amarini/front.svg",
  28912. extra: 415 / 403,
  28913. bottom: 19 / 433.4
  28914. }
  28915. },
  28916. back: {
  28917. height: math.unit(6 + 4 / 12, "feet"),
  28918. weight: math.unit(325, "lb"),
  28919. name: "Back",
  28920. image: {
  28921. source: "./media/characters/balina-amarini/back.svg",
  28922. extra: 415 / 403,
  28923. bottom: 13.5 / 432
  28924. }
  28925. },
  28926. overdrive: {
  28927. height: math.unit(6 + 4 / 12, "feet"),
  28928. weight: math.unit(400, "lb"),
  28929. name: "Overdrive",
  28930. image: {
  28931. source: "./media/characters/balina-amarini/overdrive.svg",
  28932. extra: 269 / 259,
  28933. bottom: 12 / 282
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Boom",
  28940. height: math.unit(9 + 10 / 12, "feet"),
  28941. default: true
  28942. },
  28943. {
  28944. name: "Macro",
  28945. height: math.unit(280, "feet")
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28951. {
  28952. goddess: {
  28953. height: math.unit(600, "feet"),
  28954. weight: math.unit(2000000, "tons"),
  28955. name: "Goddess",
  28956. image: {
  28957. source: "./media/characters/lady-kubwa/goddess.svg",
  28958. extra: 1240.5 / 1223,
  28959. bottom: 22 / 1263
  28960. }
  28961. },
  28962. goddesser: {
  28963. height: math.unit(900, "feet"),
  28964. weight: math.unit(20000000, "lb"),
  28965. name: "Goddess-er",
  28966. image: {
  28967. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28968. extra: 899 / 888,
  28969. bottom: 12.6 / 912
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Macro",
  28976. height: math.unit(600, "feet"),
  28977. default: true
  28978. },
  28979. {
  28980. name: "Megamacro",
  28981. height: math.unit(250, "miles")
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(7 + 7 / 12, "feet"),
  28990. weight: math.unit(250, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/tala-grovehorn/front.svg",
  28994. extra: 2636 / 2525,
  28995. bottom: 147 / 2781
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(7 + 7 / 12, "feet"),
  29000. weight: math.unit(250, "lb"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/tala-grovehorn/back.svg",
  29004. extra: 2635 / 2539,
  29005. bottom: 100 / 2732.8
  29006. }
  29007. },
  29008. mouth: {
  29009. height: math.unit(1.15, "feet"),
  29010. name: "Mouth",
  29011. image: {
  29012. source: "./media/characters/tala-grovehorn/mouth.svg"
  29013. }
  29014. },
  29015. dick: {
  29016. height: math.unit(2.36, "feet"),
  29017. name: "Dick",
  29018. image: {
  29019. source: "./media/characters/tala-grovehorn/dick.svg"
  29020. }
  29021. },
  29022. slit: {
  29023. height: math.unit(0.61, "feet"),
  29024. name: "Slit",
  29025. image: {
  29026. source: "./media/characters/tala-grovehorn/slit.svg"
  29027. }
  29028. },
  29029. },
  29030. [
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(7 + 7 / 12, "feet"),
  29038. weight: math.unit(225, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/epona/front.svg",
  29042. extra: 2445 / 2290,
  29043. bottom: 251 / 2696
  29044. }
  29045. },
  29046. back: {
  29047. height: math.unit(7 + 7 / 12, "feet"),
  29048. weight: math.unit(225, "lb"),
  29049. name: "Back",
  29050. image: {
  29051. source: "./media/characters/epona/back.svg",
  29052. extra: 2546 / 2408,
  29053. bottom: 44 / 2589
  29054. }
  29055. },
  29056. genitals: {
  29057. height: math.unit(1.5, "feet"),
  29058. name: "Genitals",
  29059. image: {
  29060. source: "./media/characters/epona/genitals.svg"
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(7 + 7 / 12, "feet"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(7, "feet"),
  29077. weight: math.unit(518, "lb"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/avia-bloodbourn/front.svg",
  29081. extra: 1466 / 1350,
  29082. bottom: 65 / 1527
  29083. }
  29084. },
  29085. },
  29086. [
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(9.35, "feet"),
  29094. weight: math.unit(600, "lb"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/amera/front.svg",
  29098. extra: 891 / 818,
  29099. bottom: 30 / 922.7
  29100. }
  29101. },
  29102. back: {
  29103. height: math.unit(9.35, "feet"),
  29104. weight: math.unit(600, "lb"),
  29105. name: "Back",
  29106. image: {
  29107. source: "./media/characters/amera/back.svg",
  29108. extra: 876 / 824,
  29109. bottom: 6.8 / 884
  29110. }
  29111. },
  29112. dick: {
  29113. height: math.unit(2.14, "feet"),
  29114. name: "Dick",
  29115. image: {
  29116. source: "./media/characters/amera/dick.svg"
  29117. }
  29118. },
  29119. },
  29120. [
  29121. {
  29122. name: "Normal",
  29123. height: math.unit(9.35, "feet"),
  29124. default: true
  29125. },
  29126. ]
  29127. ))
  29128. characterMakers.push(() => makeCharacter(
  29129. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29130. {
  29131. kneeling: {
  29132. height: math.unit(3 + 4 / 12, "feet"),
  29133. weight: math.unit(90, "lb"),
  29134. name: "Kneeling",
  29135. image: {
  29136. source: "./media/characters/rosewen/kneeling.svg",
  29137. extra: 1835 / 1571,
  29138. bottom: 27.7 / 1862
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Normal",
  29145. height: math.unit(3 + 4 / 12, "feet"),
  29146. default: true
  29147. },
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29152. {
  29153. front: {
  29154. height: math.unit(5 + 10 / 12, "feet"),
  29155. weight: math.unit(200, "lb"),
  29156. name: "Front",
  29157. image: {
  29158. source: "./media/characters/sabah/front.svg",
  29159. extra: 849 / 763,
  29160. bottom: 33.9 / 881
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Normal",
  29167. height: math.unit(5 + 10 / 12, "feet"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29174. {
  29175. front: {
  29176. height: math.unit(3 + 5 / 12, "feet"),
  29177. weight: math.unit(40, "kg"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/purple-flame/front.svg",
  29181. extra: 1577 / 1412,
  29182. bottom: 97 / 1694
  29183. }
  29184. },
  29185. frontDressed: {
  29186. height: math.unit(3 + 5 / 12, "feet"),
  29187. weight: math.unit(40, "kg"),
  29188. name: "Front (Dressed)",
  29189. image: {
  29190. source: "./media/characters/purple-flame/front-dressed.svg",
  29191. extra: 1577 / 1412,
  29192. bottom: 97 / 1694
  29193. }
  29194. },
  29195. headphones: {
  29196. height: math.unit(0.85, "feet"),
  29197. name: "Headphones",
  29198. image: {
  29199. source: "./media/characters/purple-flame/headphones.svg"
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Really Small",
  29206. height: math.unit(5, "cm")
  29207. },
  29208. {
  29209. name: "Micro",
  29210. height: math.unit(1 + 5 / 12, "feet")
  29211. },
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(3 + 5 / 12, "feet"),
  29215. default: true
  29216. },
  29217. {
  29218. name: "Minimacro",
  29219. height: math.unit(125, "feet")
  29220. },
  29221. {
  29222. name: "Macro",
  29223. height: math.unit(0.5, "miles")
  29224. },
  29225. {
  29226. name: "Megamacro",
  29227. height: math.unit(50, "miles")
  29228. },
  29229. {
  29230. name: "Gigantic",
  29231. height: math.unit(750, "miles")
  29232. },
  29233. {
  29234. name: "Planetary",
  29235. height: math.unit(15000, "miles")
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(14, "feet"),
  29244. weight: math.unit(959, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/arsenal/front.svg",
  29248. extra: 2357 / 2157,
  29249. bottom: 93 / 2458
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(14, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(6, "feet"),
  29266. weight: math.unit(150, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/adira/front.svg",
  29270. extra: 1078 / 1029,
  29271. bottom: 87 / 1166
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Micro",
  29278. height: math.unit(4, "inches"),
  29279. default: true
  29280. },
  29281. {
  29282. name: "Macro",
  29283. height: math.unit(50, "feet")
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(16, "feet"),
  29292. weight: math.unit(1000, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/grim/front.svg",
  29296. extra: 622 / 614,
  29297. bottom: 18.1 / 642
  29298. }
  29299. },
  29300. back: {
  29301. height: math.unit(16, "feet"),
  29302. weight: math.unit(1000, "lb"),
  29303. name: "Back",
  29304. image: {
  29305. source: "./media/characters/grim/back.svg",
  29306. extra: 610.6 / 602,
  29307. bottom: 40.8 / 652
  29308. }
  29309. },
  29310. hunched: {
  29311. height: math.unit(9.75, "feet"),
  29312. weight: math.unit(1000, "lb"),
  29313. name: "Hunched",
  29314. image: {
  29315. source: "./media/characters/grim/hunched.svg",
  29316. extra: 304 / 297,
  29317. bottom: 35.4 / 394
  29318. }
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(16, "feet"),
  29325. default: true
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(2.3, "meters"),
  29334. weight: math.unit(300, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/sinja/front-sfw.svg",
  29338. extra: 1393 / 1294,
  29339. bottom: 70 / 1463
  29340. }
  29341. },
  29342. frontNsfw: {
  29343. height: math.unit(2.3, "meters"),
  29344. weight: math.unit(300, "lb"),
  29345. name: "Front (NSFW)",
  29346. image: {
  29347. source: "./media/characters/sinja/front-nsfw.svg",
  29348. extra: 1393 / 1294,
  29349. bottom: 70 / 1463
  29350. }
  29351. },
  29352. back: {
  29353. height: math.unit(2.3, "meters"),
  29354. weight: math.unit(300, "lb"),
  29355. name: "Back",
  29356. image: {
  29357. source: "./media/characters/sinja/back.svg",
  29358. extra: 1393 / 1294,
  29359. bottom: 70 / 1463
  29360. }
  29361. },
  29362. head: {
  29363. height: math.unit(1.771, "feet"),
  29364. name: "Head",
  29365. image: {
  29366. source: "./media/characters/sinja/head.svg"
  29367. }
  29368. },
  29369. slit: {
  29370. height: math.unit(0.8, "feet"),
  29371. name: "Slit",
  29372. image: {
  29373. source: "./media/characters/sinja/slit.svg"
  29374. }
  29375. },
  29376. },
  29377. [
  29378. {
  29379. name: "Normal",
  29380. height: math.unit(2.3, "meters")
  29381. },
  29382. {
  29383. name: "Macro",
  29384. height: math.unit(91, "meters"),
  29385. default: true
  29386. },
  29387. {
  29388. name: "Megamacro",
  29389. height: math.unit(91440, "meters")
  29390. },
  29391. {
  29392. name: "Gigamacro",
  29393. height: math.unit(60960000, "meters")
  29394. },
  29395. {
  29396. name: "Teramacro",
  29397. height: math.unit(9144000000, "meters")
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(1.7, "meters"),
  29406. weight: math.unit(130, "lb"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/kyu/front.svg",
  29410. extra: 415 / 395,
  29411. bottom: 5 / 420
  29412. }
  29413. },
  29414. head: {
  29415. height: math.unit(1.75, "feet"),
  29416. name: "Head",
  29417. image: {
  29418. source: "./media/characters/kyu/head.svg"
  29419. }
  29420. },
  29421. foot: {
  29422. height: math.unit(0.81, "feet"),
  29423. name: "Foot",
  29424. image: {
  29425. source: "./media/characters/kyu/foot.svg"
  29426. }
  29427. },
  29428. },
  29429. [
  29430. {
  29431. name: "Normal",
  29432. height: math.unit(1.7, "meters")
  29433. },
  29434. {
  29435. name: "Macro",
  29436. height: math.unit(131, "feet"),
  29437. default: true
  29438. },
  29439. {
  29440. name: "Megamacro",
  29441. height: math.unit(91440, "meters")
  29442. },
  29443. {
  29444. name: "Gigamacro",
  29445. height: math.unit(60960000, "meters")
  29446. },
  29447. {
  29448. name: "Teramacro",
  29449. height: math.unit(9144000000, "meters")
  29450. },
  29451. ]
  29452. ))
  29453. characterMakers.push(() => makeCharacter(
  29454. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29455. {
  29456. front: {
  29457. height: math.unit(7 + 1 / 12, "feet"),
  29458. weight: math.unit(250, "lb"),
  29459. name: "Front",
  29460. image: {
  29461. source: "./media/characters/joey/front.svg",
  29462. extra: 1791 / 1537,
  29463. bottom: 28 / 1816
  29464. }
  29465. },
  29466. },
  29467. [
  29468. {
  29469. name: "Micro",
  29470. height: math.unit(3, "inches")
  29471. },
  29472. {
  29473. name: "Normal",
  29474. height: math.unit(7 + 1 / 12, "feet"),
  29475. default: true
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(165, "cm"),
  29484. weight: math.unit(140, "lb"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/sam-evans/front.svg",
  29488. extra: 3417 / 3230,
  29489. bottom: 41.3 / 3417
  29490. }
  29491. },
  29492. frontSixTails: {
  29493. height: math.unit(165, "cm"),
  29494. weight: math.unit(140, "lb"),
  29495. name: "Front-six-tails",
  29496. image: {
  29497. source: "./media/characters/sam-evans/front-six-tails.svg",
  29498. extra: 3417 / 3230,
  29499. bottom: 41.3 / 3417
  29500. }
  29501. },
  29502. back: {
  29503. height: math.unit(165, "cm"),
  29504. weight: math.unit(140, "lb"),
  29505. name: "Back",
  29506. image: {
  29507. source: "./media/characters/sam-evans/back.svg",
  29508. extra: 3227 / 3032,
  29509. bottom: 6.8 / 3234
  29510. }
  29511. },
  29512. face: {
  29513. height: math.unit(0.68, "feet"),
  29514. name: "Face",
  29515. image: {
  29516. source: "./media/characters/sam-evans/face.svg"
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(165, "cm"),
  29524. default: true
  29525. },
  29526. {
  29527. name: "Macro",
  29528. height: math.unit(100, "meters")
  29529. },
  29530. {
  29531. name: "Macro+",
  29532. height: math.unit(800, "meters")
  29533. },
  29534. {
  29535. name: "Macro++",
  29536. height: math.unit(3, "km")
  29537. },
  29538. {
  29539. name: "Macro+++",
  29540. height: math.unit(30, "km")
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(10, "feet"),
  29549. weight: math.unit(750, "lb"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/juliet-a/front.svg",
  29553. extra: 1766 / 1720,
  29554. bottom: 43 / 1809
  29555. }
  29556. },
  29557. back: {
  29558. height: math.unit(10, "feet"),
  29559. weight: math.unit(750, "lb"),
  29560. name: "Back",
  29561. image: {
  29562. source: "./media/characters/juliet-a/back.svg",
  29563. extra: 1781 / 1734,
  29564. bottom: 35 / 1810,
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Normal",
  29571. height: math.unit(10, "feet"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "Dragon Form",
  29576. height: math.unit(250, "feet")
  29577. },
  29578. {
  29579. name: "Macro",
  29580. height: math.unit(1000, "feet")
  29581. },
  29582. {
  29583. name: "Megamacro",
  29584. height: math.unit(10000, "feet")
  29585. }
  29586. ]
  29587. ))
  29588. characterMakers.push(() => makeCharacter(
  29589. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29590. {
  29591. regular: {
  29592. height: math.unit(7 + 3 / 12, "feet"),
  29593. weight: math.unit(260, "lb"),
  29594. name: "Regular",
  29595. image: {
  29596. source: "./media/characters/wild/regular.svg",
  29597. extra: 97.45 / 92,
  29598. bottom: 6.8 / 104.3
  29599. }
  29600. },
  29601. biggums: {
  29602. height: math.unit(8 + 6 / 12, "feet"),
  29603. weight: math.unit(425, "lb"),
  29604. name: "Biggums",
  29605. image: {
  29606. source: "./media/characters/wild/biggums.svg",
  29607. extra: 97.45 / 92,
  29608. bottom: 7.5 / 132.34
  29609. }
  29610. },
  29611. mawRegular: {
  29612. height: math.unit(1.24, "feet"),
  29613. name: "Maw (Regular)",
  29614. image: {
  29615. source: "./media/characters/wild/maw.svg"
  29616. }
  29617. },
  29618. mawBiggums: {
  29619. height: math.unit(1.47, "feet"),
  29620. name: "Maw (Biggums)",
  29621. image: {
  29622. source: "./media/characters/wild/maw.svg"
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Normal",
  29629. height: math.unit(7 + 3 / 12, "feet"),
  29630. default: true
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29636. {
  29637. front: {
  29638. height: math.unit(2.5, "meters"),
  29639. weight: math.unit(200, "kg"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/vidar/front.svg",
  29643. extra: 2994 / 2795,
  29644. bottom: 56 / 3061
  29645. }
  29646. },
  29647. back: {
  29648. height: math.unit(2.5, "meters"),
  29649. weight: math.unit(200, "kg"),
  29650. name: "Back",
  29651. image: {
  29652. source: "./media/characters/vidar/back.svg",
  29653. extra: 3131 / 2928,
  29654. bottom: 13.5 / 3141.5
  29655. }
  29656. },
  29657. feral: {
  29658. height: math.unit(2.5, "meters"),
  29659. weight: math.unit(2000, "kg"),
  29660. name: "Feral",
  29661. image: {
  29662. source: "./media/characters/vidar/feral.svg",
  29663. extra: 2790 / 1765,
  29664. bottom: 6 / 2796
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(2.5, "meters"),
  29672. default: true
  29673. },
  29674. {
  29675. name: "Macro",
  29676. height: math.unit(100, "meters")
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(5 + 9 / 12, "feet"),
  29685. weight: math.unit(120, "lb"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/ash/front.svg",
  29689. extra: 2189 / 1961,
  29690. bottom: 5.2 / 2194
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(5 + 9 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(9, "feet"),
  29707. weight: math.unit(10000, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/gygabite/front.svg",
  29711. bottom: 31.7 / 537.8,
  29712. extra: 505 / 370
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(9, "feet"),
  29720. default: true
  29721. },
  29722. ]
  29723. ))
  29724. characterMakers.push(() => makeCharacter(
  29725. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29726. {
  29727. front: {
  29728. height: math.unit(12, "feet"),
  29729. weight: math.unit(4000, "lb"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/p0tat0/front.svg",
  29733. extra: 1065 / 921,
  29734. bottom: 55.7 / 1121.25
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(12, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29748. {
  29749. side: {
  29750. height: math.unit(6.5, "feet"),
  29751. weight: math.unit(800, "lb"),
  29752. name: "Side",
  29753. image: {
  29754. source: "./media/characters/dusk/side.svg",
  29755. extra: 615 / 373,
  29756. bottom: 53 / 664
  29757. }
  29758. },
  29759. sitting: {
  29760. height: math.unit(7, "feet"),
  29761. weight: math.unit(800, "lb"),
  29762. name: "Sitting",
  29763. image: {
  29764. source: "./media/characters/dusk/sitting.svg",
  29765. extra: 753 / 425,
  29766. bottom: 33 / 774
  29767. }
  29768. },
  29769. head: {
  29770. height: math.unit(6.1, "feet"),
  29771. name: "Head",
  29772. image: {
  29773. source: "./media/characters/dusk/head.svg"
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Normal",
  29780. height: math.unit(7, "feet"),
  29781. default: true
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(15, "feet"),
  29790. weight: math.unit(7000, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/jay-direwolf/front.svg",
  29794. extra: 1810 / 1732,
  29795. bottom: 66 / 1892
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Normal",
  29802. height: math.unit(15, "feet"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29809. {
  29810. front: {
  29811. height: math.unit(4 + 9 / 12, "feet"),
  29812. weight: math.unit(130, "lb"),
  29813. name: "Front",
  29814. image: {
  29815. source: "./media/characters/anchovie/front.svg",
  29816. extra: 382 / 350,
  29817. bottom: 25 / 409
  29818. }
  29819. },
  29820. back: {
  29821. height: math.unit(4 + 9 / 12, "feet"),
  29822. weight: math.unit(130, "lb"),
  29823. name: "Back",
  29824. image: {
  29825. source: "./media/characters/anchovie/back.svg",
  29826. extra: 385 / 352,
  29827. bottom: 16.6 / 402
  29828. }
  29829. },
  29830. frontDressed: {
  29831. height: math.unit(4 + 9 / 12, "feet"),
  29832. weight: math.unit(130, "lb"),
  29833. name: "Front (Dressed)",
  29834. image: {
  29835. source: "./media/characters/anchovie/front-dressed.svg",
  29836. extra: 382 / 350,
  29837. bottom: 25 / 409
  29838. }
  29839. },
  29840. backDressed: {
  29841. height: math.unit(4 + 9 / 12, "feet"),
  29842. weight: math.unit(130, "lb"),
  29843. name: "Back (Dressed)",
  29844. image: {
  29845. source: "./media/characters/anchovie/back-dressed.svg",
  29846. extra: 385 / 352,
  29847. bottom: 16.6 / 402
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Micro",
  29854. height: math.unit(6.4, "inches")
  29855. },
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(4 + 9 / 12, "feet"),
  29859. default: true
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(2, "meters"),
  29868. weight: math.unit(180, "lb"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/acidrenamon/front.svg",
  29872. extra: 987 / 890,
  29873. bottom: 22.8 / 1009
  29874. }
  29875. },
  29876. back: {
  29877. height: math.unit(2, "meters"),
  29878. weight: math.unit(180, "lb"),
  29879. name: "Back",
  29880. image: {
  29881. source: "./media/characters/acidrenamon/back.svg",
  29882. extra: 983 / 891,
  29883. bottom: 8.4 / 992
  29884. }
  29885. },
  29886. head: {
  29887. height: math.unit(1.92, "feet"),
  29888. name: "Head",
  29889. image: {
  29890. source: "./media/characters/acidrenamon/head.svg"
  29891. }
  29892. },
  29893. rump: {
  29894. height: math.unit(1.72, "feet"),
  29895. name: "Rump",
  29896. image: {
  29897. source: "./media/characters/acidrenamon/rump.svg"
  29898. }
  29899. },
  29900. tail: {
  29901. height: math.unit(4.2, "feet"),
  29902. name: "Tail",
  29903. image: {
  29904. source: "./media/characters/acidrenamon/tail.svg"
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Normal",
  29911. height: math.unit(2, "meters"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "Minimacro",
  29916. height: math.unit(7, "meters")
  29917. },
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(200, "meters")
  29921. },
  29922. {
  29923. name: "Gigamacro",
  29924. height: math.unit(0.2, "earths")
  29925. },
  29926. ]
  29927. ))
  29928. characterMakers.push(() => makeCharacter(
  29929. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29930. {
  29931. front: {
  29932. height: math.unit(152, "feet"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/kenzie-lee/front.svg",
  29936. extra: 1869/1774,
  29937. bottom: 128/1997
  29938. }
  29939. },
  29940. side: {
  29941. height: math.unit(86, "feet"),
  29942. name: "Side",
  29943. image: {
  29944. source: "./media/characters/kenzie-lee/side.svg",
  29945. extra: 930/815,
  29946. bottom: 177/1107
  29947. }
  29948. },
  29949. paw: {
  29950. height: math.unit(15, "feet"),
  29951. name: "Paw",
  29952. image: {
  29953. source: "./media/characters/kenzie-lee/paw.svg"
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Kenzie Flea",
  29960. height: math.unit(2, "mm"),
  29961. default: true
  29962. },
  29963. {
  29964. name: "Micro",
  29965. height: math.unit(2, "inches")
  29966. },
  29967. {
  29968. name: "Normal",
  29969. height: math.unit(152, "feet")
  29970. },
  29971. {
  29972. name: "Megamacro",
  29973. height: math.unit(7, "miles")
  29974. },
  29975. {
  29976. name: "Gigamacro",
  29977. height: math.unit(8000, "miles")
  29978. },
  29979. ]
  29980. ))
  29981. characterMakers.push(() => makeCharacter(
  29982. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29983. {
  29984. front: {
  29985. height: math.unit(6, "feet"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/withers/front.svg",
  29989. extra: 1935/1760,
  29990. bottom: 72/2007
  29991. }
  29992. },
  29993. back: {
  29994. height: math.unit(6, "feet"),
  29995. name: "Back",
  29996. image: {
  29997. source: "./media/characters/withers/back.svg",
  29998. extra: 1944/1792,
  29999. bottom: 12/1956
  30000. }
  30001. },
  30002. dressed: {
  30003. height: math.unit(6, "feet"),
  30004. name: "Dressed",
  30005. image: {
  30006. source: "./media/characters/withers/dressed.svg",
  30007. extra: 1937/1765,
  30008. bottom: 73/2010
  30009. }
  30010. },
  30011. phase1: {
  30012. height: math.unit(1.1, "feet"),
  30013. name: "Phase 1",
  30014. image: {
  30015. source: "./media/characters/withers/phase-1.svg",
  30016. extra: 1885/1232,
  30017. bottom: 0/1885
  30018. }
  30019. },
  30020. phase2: {
  30021. height: math.unit(1.05, "feet"),
  30022. name: "Phase 2",
  30023. image: {
  30024. source: "./media/characters/withers/phase-2.svg",
  30025. extra: 1792/1090,
  30026. bottom: 0/1792
  30027. }
  30028. },
  30029. partyWipe: {
  30030. height: math.unit(1.1, "feet"),
  30031. name: "Party Wipe",
  30032. image: {
  30033. source: "./media/characters/withers/party-wipe.svg",
  30034. extra: 1864/1207,
  30035. bottom: 0/1864
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(167, "feet"),
  30043. default: true
  30044. },
  30045. {
  30046. name: "Megamacro",
  30047. height: math.unit(15, "miles")
  30048. }
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(6 + 7 / 12, "feet"),
  30056. weight: math.unit(250, "lb"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/nemoskii/front.svg",
  30060. extra: 2270 / 1734,
  30061. bottom: 86 / 2354
  30062. }
  30063. },
  30064. back: {
  30065. height: math.unit(6 + 7 / 12, "feet"),
  30066. weight: math.unit(250, "lb"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/nemoskii/back.svg",
  30070. extra: 1845 / 1788,
  30071. bottom: 10.5 / 1852
  30072. }
  30073. },
  30074. head: {
  30075. height: math.unit(1.31, "feet"),
  30076. name: "Head",
  30077. image: {
  30078. source: "./media/characters/nemoskii/head.svg"
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Micro",
  30085. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30086. },
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(6 + 7 / 12, "feet"),
  30090. default: true
  30091. },
  30092. {
  30093. name: "Macro",
  30094. height: math.unit((6 + 7 / 12) * 150, "feet")
  30095. },
  30096. {
  30097. name: "Macro+",
  30098. height: math.unit((6 + 7 / 12) * 500, "feet")
  30099. },
  30100. {
  30101. name: "Megamacro",
  30102. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30103. },
  30104. ]
  30105. ))
  30106. characterMakers.push(() => makeCharacter(
  30107. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30108. {
  30109. front: {
  30110. height: math.unit(1, "mile"),
  30111. weight: math.unit(265261.9, "lb"),
  30112. name: "Front",
  30113. image: {
  30114. source: "./media/characters/shui/front.svg",
  30115. extra: 1633 / 1564,
  30116. bottom: 91.5 / 1726
  30117. }
  30118. },
  30119. },
  30120. [
  30121. {
  30122. name: "Macro",
  30123. height: math.unit(1, "mile"),
  30124. default: true
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(12 + 6 / 12, "feet"),
  30133. weight: math.unit(1342, "lb"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/arokh-takakura/front.svg",
  30137. extra: 1089 / 1043,
  30138. bottom: 77.4 / 1176.7
  30139. }
  30140. },
  30141. back: {
  30142. height: math.unit(12 + 6 / 12, "feet"),
  30143. weight: math.unit(1342, "lb"),
  30144. name: "Back",
  30145. image: {
  30146. source: "./media/characters/arokh-takakura/back.svg",
  30147. extra: 1046 / 1019,
  30148. bottom: 102 / 1150
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Big",
  30155. height: math.unit(12 + 6 / 12, "feet"),
  30156. default: true
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(5 + 6 / 12, "feet"),
  30165. weight: math.unit(150, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/theo/front.svg",
  30169. extra: 1184 / 1131,
  30170. bottom: 7.4 / 1191
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Micro",
  30177. height: math.unit(5, "inches")
  30178. },
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(5 + 6 / 12, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(5 + 9 / 12, "feet"),
  30191. weight: math.unit(130, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/cecelia-swift/front.svg",
  30195. extra: 502 / 484,
  30196. bottom: 23 / 523
  30197. }
  30198. },
  30199. back: {
  30200. height: math.unit(5 + 9 / 12, "feet"),
  30201. weight: math.unit(130, "lb"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/cecelia-swift/back.svg",
  30205. extra: 499 / 485,
  30206. bottom: 12 / 511
  30207. }
  30208. },
  30209. head: {
  30210. height: math.unit(0.90, "feet"),
  30211. name: "Head",
  30212. image: {
  30213. source: "./media/characters/cecelia-swift/head.svg"
  30214. }
  30215. },
  30216. rump: {
  30217. height: math.unit(1.75, "feet"),
  30218. name: "Rump",
  30219. image: {
  30220. source: "./media/characters/cecelia-swift/rump.svg"
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Normal",
  30227. height: math.unit(5 + 9 / 12, "feet"),
  30228. default: true
  30229. },
  30230. {
  30231. name: "Big",
  30232. height: math.unit(50, "feet")
  30233. },
  30234. {
  30235. name: "Macro",
  30236. height: math.unit(100, "feet")
  30237. },
  30238. {
  30239. name: "Macro+",
  30240. height: math.unit(500, "feet")
  30241. },
  30242. {
  30243. name: "Macro++",
  30244. height: math.unit(1000, "feet")
  30245. },
  30246. ]
  30247. ))
  30248. characterMakers.push(() => makeCharacter(
  30249. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30250. {
  30251. front: {
  30252. height: math.unit(6, "feet"),
  30253. weight: math.unit(150, "lb"),
  30254. name: "Front",
  30255. image: {
  30256. source: "./media/characters/kaunan/front.svg",
  30257. extra: 2890 / 2523,
  30258. bottom: 49 / 2939
  30259. }
  30260. },
  30261. },
  30262. [
  30263. {
  30264. name: "Macro",
  30265. height: math.unit(150, "feet"),
  30266. default: true
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30272. {
  30273. dressed: {
  30274. height: math.unit(175, "cm"),
  30275. weight: math.unit(60, "kg"),
  30276. name: "Dressed",
  30277. image: {
  30278. source: "./media/characters/fei/dressed.svg",
  30279. extra: 1402/1278,
  30280. bottom: 27/1429
  30281. }
  30282. },
  30283. nude: {
  30284. height: math.unit(175, "cm"),
  30285. weight: math.unit(60, "kg"),
  30286. name: "Nude",
  30287. image: {
  30288. source: "./media/characters/fei/nude.svg",
  30289. extra: 1402/1278,
  30290. bottom: 27/1429
  30291. }
  30292. },
  30293. heels: {
  30294. height: math.unit(0.466, "feet"),
  30295. name: "Heels",
  30296. image: {
  30297. source: "./media/characters/fei/heels.svg",
  30298. extra: 156/152,
  30299. bottom: 28/184
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Mortal",
  30306. height: math.unit(175, "cm")
  30307. },
  30308. {
  30309. name: "Normal",
  30310. height: math.unit(3500, "m")
  30311. },
  30312. {
  30313. name: "Stroll",
  30314. height: math.unit(18.4, "km"),
  30315. default: true
  30316. },
  30317. {
  30318. name: "Showoff",
  30319. height: math.unit(175, "km")
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30325. {
  30326. front: {
  30327. height: math.unit(7, "feet"),
  30328. weight: math.unit(1000, "kg"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/edrax/front.svg",
  30332. extra: 2838 / 2550,
  30333. bottom: 130 / 2968
  30334. }
  30335. },
  30336. },
  30337. [
  30338. {
  30339. name: "Small",
  30340. height: math.unit(7, "feet")
  30341. },
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(1500, "meters")
  30345. },
  30346. {
  30347. name: "Mega",
  30348. height: math.unit(12000000, "km"),
  30349. default: true
  30350. },
  30351. {
  30352. name: "Megamacro",
  30353. height: math.unit(10600000, "lightyears")
  30354. },
  30355. {
  30356. name: "Hypermacro",
  30357. height: math.unit(256, "yottameters")
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(10, "feet"),
  30366. weight: math.unit(750, "lb"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/clove/front.svg",
  30370. extra: 1918/1751,
  30371. bottom: 52/1970
  30372. }
  30373. },
  30374. back: {
  30375. height: math.unit(10, "feet"),
  30376. weight: math.unit(750, "lb"),
  30377. name: "Back",
  30378. image: {
  30379. source: "./media/characters/clove/back.svg",
  30380. extra: 1912/1747,
  30381. bottom: 50/1962
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Normal",
  30388. height: math.unit(10, "feet"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(4, "feet"),
  30398. weight: math.unit(50, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/alex-rabbit/front.svg",
  30402. extra: 507 / 458,
  30403. bottom: 18.5 / 527
  30404. }
  30405. },
  30406. back: {
  30407. height: math.unit(4, "feet"),
  30408. weight: math.unit(50, "lb"),
  30409. name: "Back",
  30410. image: {
  30411. source: "./media/characters/alex-rabbit/back.svg",
  30412. extra: 502 / 460,
  30413. bottom: 18.9 / 521
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(4, "feet"),
  30421. default: true
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30427. {
  30428. front: {
  30429. height: math.unit(1 + 3 / 12, "feet"),
  30430. weight: math.unit(80, "lb"),
  30431. name: "Front",
  30432. image: {
  30433. source: "./media/characters/zander-rose/front.svg",
  30434. extra: 916 / 797,
  30435. bottom: 17 / 933
  30436. }
  30437. },
  30438. back: {
  30439. height: math.unit(1 + 3 / 12, "feet"),
  30440. weight: math.unit(80, "lb"),
  30441. name: "Back",
  30442. image: {
  30443. source: "./media/characters/zander-rose/back.svg",
  30444. extra: 903 / 779,
  30445. bottom: 31 / 934
  30446. }
  30447. },
  30448. },
  30449. [
  30450. {
  30451. name: "Normal",
  30452. height: math.unit(1 + 3 / 12, "feet"),
  30453. default: true
  30454. },
  30455. ]
  30456. ))
  30457. characterMakers.push(() => makeCharacter(
  30458. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30459. {
  30460. anthro: {
  30461. height: math.unit(6, "feet"),
  30462. weight: math.unit(150, "lb"),
  30463. name: "Anthro",
  30464. image: {
  30465. source: "./media/characters/razz/anthro.svg",
  30466. extra: 1437 / 1343,
  30467. bottom: 48 / 1485
  30468. }
  30469. },
  30470. feral: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Feral",
  30474. image: {
  30475. source: "./media/characters/razz/feral.svg",
  30476. extra: 2569 / 1385,
  30477. bottom: 95 / 2664
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Normal",
  30484. height: math.unit(6, "feet"),
  30485. default: true
  30486. },
  30487. ]
  30488. ))
  30489. characterMakers.push(() => makeCharacter(
  30490. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30491. {
  30492. front: {
  30493. height: math.unit(9 + 4 / 12, "feet"),
  30494. weight: math.unit(500, "lb"),
  30495. name: "Front",
  30496. image: {
  30497. source: "./media/characters/morrigan/front.svg",
  30498. extra: 2707 / 2579,
  30499. bottom: 156 / 2863
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Normal",
  30506. height: math.unit(9 + 4 / 12, "feet"),
  30507. default: true
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30513. {
  30514. front: {
  30515. height: math.unit(5, "stories"),
  30516. weight: math.unit(4000, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/jenene/front.svg",
  30520. extra: 1780 / 1710,
  30521. bottom: 57 / 1837
  30522. }
  30523. },
  30524. },
  30525. [
  30526. {
  30527. name: "Normal",
  30528. height: math.unit(5, "stories"),
  30529. default: true
  30530. },
  30531. ]
  30532. ))
  30533. characterMakers.push(() => makeCharacter(
  30534. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30535. {
  30536. taurSfw: {
  30537. height: math.unit(10, "meters"),
  30538. weight: math.unit(17500, "kg"),
  30539. name: "Taur",
  30540. image: {
  30541. source: "./media/characters/faey/taur-sfw.svg",
  30542. extra: 1200 / 968,
  30543. bottom: 41 / 1241
  30544. }
  30545. },
  30546. chestmaw: {
  30547. height: math.unit(2.01, "meters"),
  30548. name: "Chestmaw",
  30549. image: {
  30550. source: "./media/characters/faey/chestmaw.svg"
  30551. }
  30552. },
  30553. foot: {
  30554. height: math.unit(2.43, "meters"),
  30555. name: "Foot",
  30556. image: {
  30557. source: "./media/characters/faey/foot.svg"
  30558. }
  30559. },
  30560. jaws: {
  30561. height: math.unit(1.66, "meters"),
  30562. name: "Jaws",
  30563. image: {
  30564. source: "./media/characters/faey/jaws.svg"
  30565. }
  30566. },
  30567. tongues: {
  30568. height: math.unit(2.01, "meters"),
  30569. name: "Tongues",
  30570. image: {
  30571. source: "./media/characters/faey/tongues.svg"
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Small",
  30578. height: math.unit(10, "meters"),
  30579. default: true
  30580. },
  30581. {
  30582. name: "Big",
  30583. height: math.unit(500000, "km")
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(7, "feet"),
  30592. weight: math.unit(275, "lb"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/roku/front.svg",
  30596. extra: 903 / 878,
  30597. bottom: 37 / 940
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(7, "feet"),
  30605. default: true
  30606. },
  30607. {
  30608. name: "Macro",
  30609. height: math.unit(500, "feet")
  30610. },
  30611. {
  30612. name: "Megamacro",
  30613. height: math.unit(200, "miles")
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6 + 2 / 12, "feet"),
  30622. weight: math.unit(150, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/lira/front.svg",
  30626. extra: 1727 / 1605,
  30627. bottom: 26 / 1753
  30628. }
  30629. },
  30630. back: {
  30631. height: math.unit(6 + 2 / 12, "feet"),
  30632. weight: math.unit(150, "lb"),
  30633. name: "Back",
  30634. image: {
  30635. source: "./media/characters/lira/back.svg",
  30636. extra: 1713/1621,
  30637. bottom: 20/1733
  30638. }
  30639. },
  30640. hand: {
  30641. height: math.unit(0.75, "feet"),
  30642. name: "Hand",
  30643. image: {
  30644. source: "./media/characters/lira/hand.svg"
  30645. }
  30646. },
  30647. maw: {
  30648. height: math.unit(0.65, "feet"),
  30649. name: "Maw",
  30650. image: {
  30651. source: "./media/characters/lira/maw.svg"
  30652. }
  30653. },
  30654. pawDigi: {
  30655. height: math.unit(1.6, "feet"),
  30656. name: "Paw Digi",
  30657. image: {
  30658. source: "./media/characters/lira/paw-digi.svg"
  30659. }
  30660. },
  30661. pawPlanti: {
  30662. height: math.unit(1.4, "feet"),
  30663. name: "Paw Planti",
  30664. image: {
  30665. source: "./media/characters/lira/paw-planti.svg"
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(6 + 2 / 12, "feet"),
  30673. default: true
  30674. },
  30675. {
  30676. name: "Macro",
  30677. height: math.unit(100, "feet")
  30678. },
  30679. {
  30680. name: "Macro²",
  30681. height: math.unit(1600, "feet")
  30682. },
  30683. {
  30684. name: "Planetary",
  30685. height: math.unit(20, "earths")
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(6, "feet"),
  30694. weight: math.unit(150, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/hadjet/front.svg",
  30698. extra: 1480 / 1346,
  30699. bottom: 26 / 1506
  30700. }
  30701. },
  30702. frontNsfw: {
  30703. height: math.unit(6, "feet"),
  30704. weight: math.unit(150, "lb"),
  30705. name: "Front (NSFW)",
  30706. image: {
  30707. source: "./media/characters/hadjet/front-nsfw.svg",
  30708. extra: 1440 / 1358,
  30709. bottom: 52 / 1492
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Macro",
  30716. height: math.unit(10, "stories"),
  30717. default: true
  30718. },
  30719. {
  30720. name: "Megamacro",
  30721. height: math.unit(1.5, "miles")
  30722. },
  30723. {
  30724. name: "Megamacro+",
  30725. height: math.unit(5, "miles")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30731. {
  30732. side: {
  30733. height: math.unit(106, "feet"),
  30734. weight: math.unit(500, "tonnes"),
  30735. name: "Side",
  30736. image: {
  30737. source: "./media/characters/kodran/side.svg",
  30738. extra: 553 / 480,
  30739. bottom: 33 / 586
  30740. }
  30741. },
  30742. front: {
  30743. height: math.unit(132, "feet"),
  30744. weight: math.unit(500, "tonnes"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/kodran/front.svg",
  30748. extra: 667 / 643,
  30749. bottom: 42 / 709
  30750. }
  30751. },
  30752. flying: {
  30753. height: math.unit(350, "feet"),
  30754. weight: math.unit(500, "tonnes"),
  30755. name: "Flying",
  30756. image: {
  30757. source: "./media/characters/kodran/flying.svg"
  30758. }
  30759. },
  30760. foot: {
  30761. height: math.unit(33, "feet"),
  30762. name: "Foot",
  30763. image: {
  30764. source: "./media/characters/kodran/foot.svg"
  30765. }
  30766. },
  30767. footFront: {
  30768. height: math.unit(19, "feet"),
  30769. name: "Foot (Front)",
  30770. image: {
  30771. source: "./media/characters/kodran/foot-front.svg",
  30772. extra: 261 / 261,
  30773. bottom: 91 / 352
  30774. }
  30775. },
  30776. headFront: {
  30777. height: math.unit(53, "feet"),
  30778. name: "Head (Front)",
  30779. image: {
  30780. source: "./media/characters/kodran/head-front.svg"
  30781. }
  30782. },
  30783. headSide: {
  30784. height: math.unit(65, "feet"),
  30785. name: "Head (Side)",
  30786. image: {
  30787. source: "./media/characters/kodran/head-side.svg"
  30788. }
  30789. },
  30790. throat: {
  30791. height: math.unit(79, "feet"),
  30792. name: "Throat",
  30793. image: {
  30794. source: "./media/characters/kodran/throat.svg"
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Large",
  30801. height: math.unit(106, "feet"),
  30802. default: true
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30808. {
  30809. side: {
  30810. height: math.unit(11, "feet"),
  30811. weight: math.unit(150, "lb"),
  30812. name: "Side",
  30813. image: {
  30814. source: "./media/characters/pyxaron/side.svg",
  30815. extra: 305 / 195,
  30816. bottom: 17 / 322
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(11, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(6, "feet"),
  30833. weight: math.unit(150, "lb"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/meep/front.svg",
  30837. extra: 88 / 80,
  30838. bottom: 6 / 94
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Fun Sized",
  30845. height: math.unit(2, "inches"),
  30846. default: true
  30847. },
  30848. {
  30849. name: "Friend Sized",
  30850. height: math.unit(8, "inches")
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30856. {
  30857. front: {
  30858. height: math.unit(15, "feet"),
  30859. weight: math.unit(2500, "lb"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/holly-rabbit/front.svg",
  30863. extra: 1433 / 1233,
  30864. bottom: 125 / 1558
  30865. }
  30866. },
  30867. dick: {
  30868. height: math.unit(4.6, "feet"),
  30869. name: "Dick",
  30870. image: {
  30871. source: "./media/characters/holly-rabbit/dick.svg"
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(15, "feet"),
  30879. default: true
  30880. },
  30881. {
  30882. name: "Macro",
  30883. height: math.unit(250, "feet")
  30884. },
  30885. {
  30886. name: "Macro+",
  30887. height: math.unit(2500, "feet")
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30893. {
  30894. front: {
  30895. height: math.unit(3.02, "meters"),
  30896. weight: math.unit(500, "kg"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/drena/front.svg",
  30900. extra: 282 / 243,
  30901. bottom: 8 / 290
  30902. }
  30903. },
  30904. side: {
  30905. height: math.unit(3.02, "meters"),
  30906. weight: math.unit(500, "kg"),
  30907. name: "Side",
  30908. image: {
  30909. source: "./media/characters/drena/side.svg",
  30910. extra: 280 / 245,
  30911. bottom: 10 / 290
  30912. }
  30913. },
  30914. back: {
  30915. height: math.unit(3.02, "meters"),
  30916. weight: math.unit(500, "kg"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/drena/back.svg",
  30920. extra: 278 / 243,
  30921. bottom: 2 / 280
  30922. }
  30923. },
  30924. foot: {
  30925. height: math.unit(0.75, "meters"),
  30926. name: "Foot",
  30927. image: {
  30928. source: "./media/characters/drena/foot.svg"
  30929. }
  30930. },
  30931. maw: {
  30932. height: math.unit(0.82, "meters"),
  30933. name: "Maw",
  30934. image: {
  30935. source: "./media/characters/drena/maw.svg"
  30936. }
  30937. },
  30938. eating: {
  30939. height: math.unit(0.75, "meters"),
  30940. name: "Eating",
  30941. image: {
  30942. source: "./media/characters/drena/eating.svg"
  30943. }
  30944. },
  30945. rump: {
  30946. height: math.unit(0.93, "meters"),
  30947. name: "Rump",
  30948. image: {
  30949. source: "./media/characters/drena/rump.svg"
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Normal",
  30956. height: math.unit(3.02, "meters"),
  30957. default: true
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(6 + 4 / 12, "feet"),
  30966. weight: math.unit(250, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/remmyzilla/front.svg",
  30970. extra: 4033 / 3588,
  30971. bottom: 123 / 4156
  30972. }
  30973. },
  30974. back: {
  30975. height: math.unit(6 + 4 / 12, "feet"),
  30976. weight: math.unit(250, "lb"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/remmyzilla/back.svg",
  30980. extra: 2687 / 2555,
  30981. bottom: 48 / 2735
  30982. }
  30983. },
  30984. paw: {
  30985. height: math.unit(1.73, "feet"),
  30986. name: "Paw",
  30987. image: {
  30988. source: "./media/characters/remmyzilla/paw.svg"
  30989. },
  30990. extraAttributes: {
  30991. "toeSize": {
  30992. name: "Toe Size",
  30993. power: 2,
  30994. type: "area",
  30995. base: math.unit(0.0035, "m^2")
  30996. },
  30997. "padSize": {
  30998. name: "Pad Size",
  30999. power: 2,
  31000. type: "area",
  31001. base: math.unit(0.015, "m^2")
  31002. },
  31003. "pawsize": {
  31004. name: "Paw Size",
  31005. power: 2,
  31006. type: "area",
  31007. base: math.unit(0.072, "m^2")
  31008. },
  31009. }
  31010. },
  31011. maw: {
  31012. height: math.unit(1.73, "feet"),
  31013. name: "Maw",
  31014. image: {
  31015. source: "./media/characters/remmyzilla/maw.svg"
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(6 + 4 / 12, "feet")
  31023. },
  31024. {
  31025. name: "Minimacro",
  31026. height: math.unit(12 + 8 / 12, "feet")
  31027. },
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(640, "feet"),
  31031. default: true
  31032. },
  31033. {
  31034. name: "Megamacro",
  31035. height: math.unit(6400, "feet")
  31036. },
  31037. {
  31038. name: "Gigamacro",
  31039. height: math.unit(64000, "miles")
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(2.5, "meters"),
  31048. weight: math.unit(300, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/lawrence/front.svg",
  31052. extra: 357 / 335,
  31053. bottom: 30 / 387
  31054. }
  31055. },
  31056. back: {
  31057. height: math.unit(2.5, "meters"),
  31058. weight: math.unit(300, "lb"),
  31059. name: "Back",
  31060. image: {
  31061. source: "./media/characters/lawrence/back.svg",
  31062. extra: 357 / 338,
  31063. bottom: 16 / 373
  31064. }
  31065. },
  31066. head: {
  31067. height: math.unit(0.9, "meter"),
  31068. name: "Head",
  31069. image: {
  31070. source: "./media/characters/lawrence/head.svg"
  31071. }
  31072. },
  31073. maw: {
  31074. height: math.unit(0.7, "meter"),
  31075. name: "Maw",
  31076. image: {
  31077. source: "./media/characters/lawrence/maw.svg"
  31078. }
  31079. },
  31080. footBottom: {
  31081. height: math.unit(0.5, "meter"),
  31082. name: "Foot (Bottom)",
  31083. image: {
  31084. source: "./media/characters/lawrence/foot-bottom.svg"
  31085. }
  31086. },
  31087. footTop: {
  31088. height: math.unit(0.5, "meter"),
  31089. name: "Foot (Top)",
  31090. image: {
  31091. source: "./media/characters/lawrence/foot-top.svg"
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(2.5, "meters"),
  31099. default: true
  31100. },
  31101. {
  31102. name: "Macro",
  31103. height: math.unit(95, "meters")
  31104. },
  31105. {
  31106. name: "Megamacro",
  31107. height: math.unit(150, "km")
  31108. },
  31109. ]
  31110. ))
  31111. characterMakers.push(() => makeCharacter(
  31112. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31113. {
  31114. front: {
  31115. height: math.unit(4.2, "meters"),
  31116. preyCapacity: math.unit(50, "m^3"),
  31117. weight: math.unit(30, "tonnes"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/sydney/front.svg",
  31121. extra: 1177/1129,
  31122. bottom: 197/1374
  31123. },
  31124. extraAttributes: {
  31125. "length": {
  31126. name: "Length",
  31127. power: 1,
  31128. type: "length",
  31129. base: math.unit(21, "meters")
  31130. },
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Normal",
  31137. height: math.unit(4.2, "meters"),
  31138. default: true
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31144. {
  31145. back: {
  31146. height: math.unit(201, "feet"),
  31147. name: "Back",
  31148. image: {
  31149. source: "./media/characters/jessica/back.svg",
  31150. extra: 273 / 259,
  31151. bottom: 7 / 280
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(201, "feet"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Megamacro",
  31163. height: math.unit(8, "miles")
  31164. },
  31165. ]
  31166. ))
  31167. characterMakers.push(() => makeCharacter(
  31168. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31169. {
  31170. side: {
  31171. height: math.unit(5.6, "m"),
  31172. weight: math.unit(8000, "kg"),
  31173. name: "Side",
  31174. image: {
  31175. source: "./media/characters/victoria/side.svg",
  31176. extra: 1542/1229,
  31177. bottom: 124/1666
  31178. }
  31179. },
  31180. maw: {
  31181. height: math.unit(7.14, "feet"),
  31182. name: "Maw",
  31183. image: {
  31184. source: "./media/characters/victoria/maw.svg"
  31185. }
  31186. },
  31187. },
  31188. [
  31189. {
  31190. name: "Normal",
  31191. height: math.unit(5.6, "m"),
  31192. default: true
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31198. {
  31199. front: {
  31200. height: math.unit(5 + 6 / 12, "feet"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/cat/front.svg",
  31204. extra: 1449/1295,
  31205. bottom: 34/1483
  31206. },
  31207. form: "cat",
  31208. default: true
  31209. },
  31210. back: {
  31211. height: math.unit(5 + 6 / 12, "feet"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/cat/back.svg",
  31215. extra: 1466/1301,
  31216. bottom: 19/1485
  31217. },
  31218. form: "cat"
  31219. },
  31220. taur: {
  31221. height: math.unit(7, "feet"),
  31222. name: "Taur",
  31223. image: {
  31224. source: "./media/characters/cat/taur.svg",
  31225. extra: 1389/1233,
  31226. bottom: 83/1472
  31227. },
  31228. form: "taur",
  31229. default: true
  31230. },
  31231. lucarioFront: {
  31232. height: math.unit(4, "feet"),
  31233. name: "Lucario (Front)",
  31234. image: {
  31235. source: "./media/characters/cat/lucario-front.svg",
  31236. extra: 1149/1019,
  31237. bottom: 84/1233
  31238. },
  31239. form: "lucario",
  31240. default: true
  31241. },
  31242. lucarioBack: {
  31243. height: math.unit(4, "feet"),
  31244. name: "Lucario (Back)",
  31245. image: {
  31246. source: "./media/characters/cat/lucario-back.svg",
  31247. extra: 1190/1059,
  31248. bottom: 33/1223
  31249. },
  31250. form: "lucario"
  31251. },
  31252. megaLucario: {
  31253. height: math.unit(4, "feet"),
  31254. name: "Mega Lucario",
  31255. image: {
  31256. source: "./media/characters/cat/mega-lucario.svg",
  31257. extra: 1515 / 1319,
  31258. bottom: 63 / 1578
  31259. },
  31260. form: "lucario"
  31261. },
  31262. nickit: {
  31263. height: math.unit(2, "feet"),
  31264. name: "Nickit",
  31265. image: {
  31266. source: "./media/characters/cat/nickit.svg",
  31267. extra: 1980 / 1585,
  31268. bottom: 102 / 2082
  31269. },
  31270. form: "nickit",
  31271. default: true
  31272. },
  31273. lopunnyFront: {
  31274. height: math.unit(5, "feet"),
  31275. name: "Lopunny (Front)",
  31276. image: {
  31277. source: "./media/characters/cat/lopunny-front.svg",
  31278. extra: 1782 / 1469,
  31279. bottom: 38 / 1820
  31280. },
  31281. form: "lopunny",
  31282. default: true
  31283. },
  31284. lopunnyBack: {
  31285. height: math.unit(5, "feet"),
  31286. name: "Lopunny (Back)",
  31287. image: {
  31288. source: "./media/characters/cat/lopunny-back.svg",
  31289. extra: 1660 / 1490,
  31290. bottom: 25 / 1685
  31291. },
  31292. form: "lopunny"
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Really small",
  31298. height: math.unit(1, "nm")
  31299. },
  31300. {
  31301. name: "Micro",
  31302. height: math.unit(5, "inches")
  31303. },
  31304. {
  31305. name: "Normal",
  31306. height: math.unit(5 + 6 / 12, "feet"),
  31307. default: true
  31308. },
  31309. {
  31310. name: "Macro",
  31311. height: math.unit(50, "feet")
  31312. },
  31313. {
  31314. name: "Macro+",
  31315. height: math.unit(150, "feet")
  31316. },
  31317. {
  31318. name: "Megamacro",
  31319. height: math.unit(100, "miles")
  31320. },
  31321. ]
  31322. ))
  31323. characterMakers.push(() => makeCharacter(
  31324. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31325. {
  31326. front: {
  31327. height: math.unit(63.4, "meters"),
  31328. weight: math.unit(3.28349e+6, "kilograms"),
  31329. name: "Front",
  31330. image: {
  31331. source: "./media/characters/kirina-violet/front.svg",
  31332. extra: 2812 / 2725,
  31333. bottom: 0 / 2812
  31334. }
  31335. },
  31336. back: {
  31337. height: math.unit(63.4, "meters"),
  31338. weight: math.unit(3.28349e+6, "kilograms"),
  31339. name: "Back",
  31340. image: {
  31341. source: "./media/characters/kirina-violet/back.svg",
  31342. extra: 2812 / 2725,
  31343. bottom: 0 / 2812
  31344. }
  31345. },
  31346. mouth: {
  31347. height: math.unit(4.35, "meters"),
  31348. name: "Mouth",
  31349. image: {
  31350. source: "./media/characters/kirina-violet/mouth.svg"
  31351. }
  31352. },
  31353. paw: {
  31354. height: math.unit(5.6, "meters"),
  31355. name: "Paw",
  31356. image: {
  31357. source: "./media/characters/kirina-violet/paw.svg"
  31358. }
  31359. },
  31360. tail: {
  31361. height: math.unit(18, "meters"),
  31362. name: "Tail",
  31363. image: {
  31364. source: "./media/characters/kirina-violet/tail.svg"
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(63.4, "meters"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(75, "feet"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/cat-gigachu/front.svg",
  31384. extra: 1239/1027,
  31385. bottom: 32/1271
  31386. }
  31387. },
  31388. back: {
  31389. height: math.unit(75, "feet"),
  31390. name: "Back",
  31391. image: {
  31392. source: "./media/characters/cat-gigachu/back.svg",
  31393. extra: 1229/1030,
  31394. bottom: 9/1238
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Dynamax",
  31401. height: math.unit(75, "feet"),
  31402. default: true
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(6, "feet"),
  31411. weight: math.unit(150, "lb"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/sfaiyan/front.svg",
  31415. extra: 999 / 978,
  31416. bottom: 5 / 1004
  31417. }
  31418. },
  31419. },
  31420. [
  31421. {
  31422. name: "Normal",
  31423. height: math.unit(1.82, "meters")
  31424. },
  31425. {
  31426. name: "Giant",
  31427. height: math.unit(2.27, "km"),
  31428. default: true
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31434. {
  31435. front: {
  31436. height: math.unit(179, "cm"),
  31437. weight: math.unit(100, "kg"),
  31438. name: "Front",
  31439. image: {
  31440. source: "./media/characters/raunehkeli/front.svg",
  31441. extra: 1934 / 1926,
  31442. bottom: 0 / 1934
  31443. }
  31444. },
  31445. },
  31446. [
  31447. {
  31448. name: "Normal",
  31449. height: math.unit(179, "cm")
  31450. },
  31451. {
  31452. name: "Maximum",
  31453. height: math.unit(575, "meters"),
  31454. default: true
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31460. {
  31461. front: {
  31462. height: math.unit(6, "feet"),
  31463. weight: math.unit(150, "lb"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31467. extra: 2625 / 2518,
  31468. bottom: 60 / 2685
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(6 + 2 / 12, "feet")
  31476. },
  31477. {
  31478. name: "Macro",
  31479. height: math.unit(1180, "feet"),
  31480. default: true
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31486. {
  31487. front: {
  31488. height: math.unit(5 + 6 / 12, "feet"),
  31489. weight: math.unit(108, "lb"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/lilith-zott/front.svg",
  31493. extra: 2510 / 2238,
  31494. bottom: 100 / 2610
  31495. }
  31496. },
  31497. frontDressed: {
  31498. height: math.unit(5 + 6 / 12, "feet"),
  31499. weight: math.unit(108, "lb"),
  31500. name: "Front (Dressed)",
  31501. image: {
  31502. source: "./media/characters/lilith-zott/front-dressed.svg",
  31503. extra: 2510 / 2238,
  31504. bottom: 100 / 2610
  31505. }
  31506. },
  31507. },
  31508. [
  31509. {
  31510. name: "Normal",
  31511. height: math.unit(5 + 6 / 12, "feet")
  31512. },
  31513. {
  31514. name: "Macro",
  31515. height: math.unit(1030, "feet"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(150, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31529. extra: 2567 / 2435,
  31530. bottom: 39 / 2606
  31531. }
  31532. },
  31533. frontSuper: {
  31534. height: math.unit(6, "feet"),
  31535. name: "Front (Super)",
  31536. image: {
  31537. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31538. extra: 2567 / 2435,
  31539. bottom: 39 / 2606
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(5 + 10 / 12, "feet")
  31547. },
  31548. {
  31549. name: "Macro",
  31550. height: math.unit(1100, "feet"),
  31551. default: true
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(100, "miles"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/sona/front.svg",
  31563. extra: 2433 / 2201,
  31564. bottom: 53 / 2486
  31565. }
  31566. },
  31567. foot: {
  31568. height: math.unit(16.1, "miles"),
  31569. name: "Foot",
  31570. image: {
  31571. source: "./media/characters/sona/foot.svg"
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(100, "miles"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(6, "feet"),
  31588. weight: math.unit(150, "lb"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/bailey/front.svg",
  31592. extra: 1778 / 1724,
  31593. bottom: 30 / 1808
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Micro",
  31600. height: math.unit(4, "inches")
  31601. },
  31602. {
  31603. name: "Normal",
  31604. height: math.unit(5 + 5 / 12, "feet"),
  31605. default: true
  31606. },
  31607. {
  31608. name: "Macro",
  31609. height: math.unit(250, "feet")
  31610. },
  31611. {
  31612. name: "Megamacro",
  31613. height: math.unit(100, "miles")
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31619. {
  31620. front: {
  31621. height: math.unit(5 + 2 / 12, "feet"),
  31622. weight: math.unit(120, "lb"),
  31623. name: "Front",
  31624. image: {
  31625. source: "./media/characters/snaps/front.svg",
  31626. extra: 2370 / 2177,
  31627. bottom: 48 / 2418
  31628. }
  31629. },
  31630. back: {
  31631. height: math.unit(5 + 2 / 12, "feet"),
  31632. weight: math.unit(120, "lb"),
  31633. name: "Back",
  31634. image: {
  31635. source: "./media/characters/snaps/back.svg",
  31636. extra: 2408 / 2258,
  31637. bottom: 15 / 2423
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Micro",
  31644. height: math.unit(9, "inches")
  31645. },
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(5 + 2 / 12, "feet"),
  31649. default: true
  31650. },
  31651. {
  31652. name: "Mini Macro",
  31653. height: math.unit(10, "feet")
  31654. },
  31655. ]
  31656. ))
  31657. characterMakers.push(() => makeCharacter(
  31658. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31659. {
  31660. front: {
  31661. height: math.unit(1.8, "meters"),
  31662. weight: math.unit(85, "kg"),
  31663. name: "Front",
  31664. image: {
  31665. source: "./media/characters/azteck/front.svg",
  31666. extra: 2815 / 2625,
  31667. bottom: 89 / 2904
  31668. }
  31669. },
  31670. back: {
  31671. height: math.unit(1.8, "meters"),
  31672. weight: math.unit(85, "kg"),
  31673. name: "Back",
  31674. image: {
  31675. source: "./media/characters/azteck/back.svg",
  31676. extra: 2856 / 2648,
  31677. bottom: 85 / 2941
  31678. }
  31679. },
  31680. frontDressed: {
  31681. height: math.unit(1.8, "meters"),
  31682. weight: math.unit(85, "kg"),
  31683. name: "Front (Dressed)",
  31684. image: {
  31685. source: "./media/characters/azteck/front-dressed.svg",
  31686. extra: 2147 / 2003,
  31687. bottom: 68 / 2215
  31688. }
  31689. },
  31690. head: {
  31691. height: math.unit(0.47, "meters"),
  31692. weight: math.unit(85, "kg"),
  31693. name: "Head",
  31694. image: {
  31695. source: "./media/characters/azteck/head.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Bite sized",
  31702. height: math.unit(16, "cm")
  31703. },
  31704. {
  31705. name: "Normal",
  31706. height: math.unit(1.8, "meters"),
  31707. default: true
  31708. },
  31709. ]
  31710. ))
  31711. characterMakers.push(() => makeCharacter(
  31712. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31713. {
  31714. front: {
  31715. height: math.unit(6, "feet"),
  31716. weight: math.unit(150, "lb"),
  31717. name: "Front",
  31718. image: {
  31719. source: "./media/characters/pidge/front.svg",
  31720. extra: 1936/1820,
  31721. bottom: 0/1936
  31722. }
  31723. },
  31724. back: {
  31725. height: math.unit(6, "feet"),
  31726. weight: math.unit(150, "lb"),
  31727. name: "Back",
  31728. image: {
  31729. source: "./media/characters/pidge/back.svg",
  31730. extra: 1938/1843,
  31731. bottom: 0/1938
  31732. }
  31733. },
  31734. casual: {
  31735. height: math.unit(6, "feet"),
  31736. weight: math.unit(150, "lb"),
  31737. name: "Casual",
  31738. image: {
  31739. source: "./media/characters/pidge/casual.svg",
  31740. extra: 1936/1820,
  31741. bottom: 0/1936
  31742. }
  31743. },
  31744. tech: {
  31745. height: math.unit(6, "feet"),
  31746. weight: math.unit(150, "lb"),
  31747. name: "Tech",
  31748. image: {
  31749. source: "./media/characters/pidge/tech.svg",
  31750. extra: 1802/1682,
  31751. bottom: 0/1802
  31752. }
  31753. },
  31754. head: {
  31755. height: math.unit(1.61, "feet"),
  31756. name: "Head",
  31757. image: {
  31758. source: "./media/characters/pidge/head.svg"
  31759. }
  31760. },
  31761. collar: {
  31762. height: math.unit(0.82, "feet"),
  31763. name: "Collar",
  31764. image: {
  31765. source: "./media/characters/pidge/collar.svg"
  31766. }
  31767. },
  31768. },
  31769. [
  31770. {
  31771. name: "Macro",
  31772. height: math.unit(2, "mile"),
  31773. default: true
  31774. },
  31775. {
  31776. name: "PUPPY",
  31777. height: math.unit(20, "miles")
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31783. {
  31784. front: {
  31785. height: math.unit(6, "feet"),
  31786. weight: math.unit(150, "lb"),
  31787. name: "Front",
  31788. image: {
  31789. source: "./media/characters/en/front.svg",
  31790. extra: 1697 / 1563,
  31791. bottom: 103 / 1800
  31792. }
  31793. },
  31794. back: {
  31795. height: math.unit(6, "feet"),
  31796. weight: math.unit(150, "lb"),
  31797. name: "Back",
  31798. image: {
  31799. source: "./media/characters/en/back.svg",
  31800. extra: 1700 / 1570,
  31801. bottom: 51 / 1751
  31802. }
  31803. },
  31804. frontDressed: {
  31805. height: math.unit(6, "feet"),
  31806. weight: math.unit(150, "lb"),
  31807. name: "Front (Dressed)",
  31808. image: {
  31809. source: "./media/characters/en/front-dressed.svg",
  31810. extra: 1697 / 1563,
  31811. bottom: 103 / 1800
  31812. }
  31813. },
  31814. backDressed: {
  31815. height: math.unit(6, "feet"),
  31816. weight: math.unit(150, "lb"),
  31817. name: "Back (Dressed)",
  31818. image: {
  31819. source: "./media/characters/en/back-dressed.svg",
  31820. extra: 1700 / 1570,
  31821. bottom: 51 / 1751
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Macro",
  31828. height: math.unit(210, "feet"),
  31829. default: true
  31830. },
  31831. ]
  31832. ))
  31833. characterMakers.push(() => makeCharacter(
  31834. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31835. {
  31836. front: {
  31837. height: math.unit(6, "feet"),
  31838. weight: math.unit(150, "lb"),
  31839. name: "Front",
  31840. image: {
  31841. source: "./media/characters/haze-orris/front.svg",
  31842. extra: 3975 / 3525,
  31843. bottom: 137 / 4112
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Micro",
  31850. height: math.unit(150, "mm"),
  31851. default: true
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31857. {
  31858. front: {
  31859. height: math.unit(6, "feet"),
  31860. weight: math.unit(150, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/casselene-yaro/front.svg",
  31864. extra: 4721 / 4541,
  31865. bottom: 82 / 4803
  31866. }
  31867. },
  31868. back: {
  31869. height: math.unit(6, "feet"),
  31870. weight: math.unit(150, "lb"),
  31871. name: "Back",
  31872. image: {
  31873. source: "./media/characters/casselene-yaro/back.svg",
  31874. extra: 4569 / 4377,
  31875. bottom: 69 / 4638
  31876. }
  31877. },
  31878. dressed: {
  31879. height: math.unit(6, "feet"),
  31880. weight: math.unit(150, "lb"),
  31881. name: "Dressed",
  31882. image: {
  31883. source: "./media/characters/casselene-yaro/dressed.svg",
  31884. extra: 4721 / 4541,
  31885. bottom: 82 / 4803
  31886. }
  31887. },
  31888. maw: {
  31889. height: math.unit(1, "feet"),
  31890. name: "Maw",
  31891. image: {
  31892. source: "./media/characters/casselene-yaro/maw.svg"
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Macro",
  31899. height: math.unit(190, "feet"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31906. {
  31907. front: {
  31908. height: math.unit(10, "feet"),
  31909. weight: math.unit(15015, "lb"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/platine/front.svg",
  31913. extra: 1741/1650,
  31914. bottom: 84/1825
  31915. }
  31916. },
  31917. side: {
  31918. height: math.unit(10, "feet"),
  31919. weight: math.unit(15015, "lb"),
  31920. name: "Side",
  31921. image: {
  31922. source: "./media/characters/platine/side.svg",
  31923. extra: 1790/1705,
  31924. bottom: 29/1819
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(10, "feet"),
  31932. default: true
  31933. },
  31934. {
  31935. name: "Macro",
  31936. height: math.unit(100, "feet")
  31937. },
  31938. {
  31939. name: "Megamacro",
  31940. height: math.unit(1000, "feet")
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(15 + 5 / 12, "feet"),
  31949. weight: math.unit(4600, "lb"),
  31950. name: "Front",
  31951. image: {
  31952. source: "./media/characters/neapolitan-ananassa/front.svg",
  31953. extra: 2903 / 2736,
  31954. bottom: 0 / 2903
  31955. }
  31956. },
  31957. side: {
  31958. height: math.unit(15 + 5 / 12, "feet"),
  31959. weight: math.unit(4600, "lb"),
  31960. name: "Side",
  31961. image: {
  31962. source: "./media/characters/neapolitan-ananassa/side.svg",
  31963. extra: 2925 / 2719,
  31964. bottom: 0 / 2925
  31965. }
  31966. },
  31967. back: {
  31968. height: math.unit(15 + 5 / 12, "feet"),
  31969. weight: math.unit(4600, "lb"),
  31970. name: "Back",
  31971. image: {
  31972. source: "./media/characters/neapolitan-ananassa/back.svg",
  31973. extra: 2903 / 2736,
  31974. bottom: 0 / 2903
  31975. }
  31976. },
  31977. },
  31978. [
  31979. {
  31980. name: "Normal",
  31981. height: math.unit(15 + 5 / 12, "feet"),
  31982. default: true
  31983. },
  31984. {
  31985. name: "Post-Millenium",
  31986. height: math.unit(35 + 5 / 12, "feet")
  31987. },
  31988. {
  31989. name: "Post-Era",
  31990. height: math.unit(450 + 5 / 12, "feet")
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(300, "meters"),
  31999. weight: math.unit(125000, "tonnes"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/pazuzu/front.svg",
  32003. extra: 877 / 794,
  32004. bottom: 47 / 924
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Macro",
  32011. height: math.unit(300, "meters"),
  32012. default: true
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32018. {
  32019. side: {
  32020. height: math.unit(10 + 7 / 12, "feet"),
  32021. weight: math.unit(2.5, "tons"),
  32022. name: "Side",
  32023. image: {
  32024. source: "./media/characters/aasha/side.svg",
  32025. extra: 1345 / 1245,
  32026. bottom: 111 / 1456
  32027. }
  32028. },
  32029. back: {
  32030. height: math.unit(10 + 7 / 12, "feet"),
  32031. weight: math.unit(2.5, "tons"),
  32032. name: "Back",
  32033. image: {
  32034. source: "./media/characters/aasha/back.svg",
  32035. extra: 1133 / 1057,
  32036. bottom: 257 / 1390
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(10 + 7 / 12, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(6 + 3 / 12, "feet"),
  32053. name: "Front",
  32054. image: {
  32055. source: "./media/characters/nevan/front.svg",
  32056. extra: 704 / 704,
  32057. bottom: 28 / 732
  32058. }
  32059. },
  32060. back: {
  32061. height: math.unit(6 + 3 / 12, "feet"),
  32062. name: "Back",
  32063. image: {
  32064. source: "./media/characters/nevan/back.svg",
  32065. extra: 714 / 714,
  32066. bottom: 21 / 735
  32067. }
  32068. },
  32069. frontFlaccid: {
  32070. height: math.unit(6 + 3 / 12, "feet"),
  32071. name: "Front (Flaccid)",
  32072. image: {
  32073. source: "./media/characters/nevan/front-flaccid.svg",
  32074. extra: 704 / 704,
  32075. bottom: 28 / 732
  32076. }
  32077. },
  32078. frontErect: {
  32079. height: math.unit(6 + 3 / 12, "feet"),
  32080. name: "Front (Erect)",
  32081. image: {
  32082. source: "./media/characters/nevan/front-erect.svg",
  32083. extra: 704 / 704,
  32084. bottom: 28 / 732
  32085. }
  32086. },
  32087. backFlaccid: {
  32088. height: math.unit(6 + 3 / 12, "feet"),
  32089. name: "Back (Flaccid)",
  32090. image: {
  32091. source: "./media/characters/nevan/back-flaccid.svg",
  32092. extra: 714 / 714,
  32093. bottom: 21 / 735
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Normal",
  32100. height: math.unit(6 + 3 / 12, "feet"),
  32101. default: true
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(4, "feet"),
  32110. name: "Front",
  32111. image: {
  32112. source: "./media/characters/arhan/front.svg",
  32113. extra: 3368 / 3133,
  32114. bottom: 0 / 3368
  32115. }
  32116. },
  32117. side: {
  32118. height: math.unit(4, "feet"),
  32119. name: "Side",
  32120. image: {
  32121. source: "./media/characters/arhan/side.svg",
  32122. extra: 3347 / 3105,
  32123. bottom: 0 / 3347
  32124. }
  32125. },
  32126. tongue: {
  32127. height: math.unit(1.42, "feet"),
  32128. name: "Tongue",
  32129. image: {
  32130. source: "./media/characters/arhan/tongue.svg"
  32131. }
  32132. },
  32133. head: {
  32134. height: math.unit(0.85, "feet"),
  32135. name: "Head",
  32136. image: {
  32137. source: "./media/characters/arhan/head.svg"
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Normal",
  32144. height: math.unit(4, "feet"),
  32145. default: true
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32151. {
  32152. front: {
  32153. height: math.unit(5 + 7.5 / 12, "feet"),
  32154. weight: math.unit(120, "lb"),
  32155. name: "Front",
  32156. image: {
  32157. source: "./media/characters/digi-duncan/front.svg",
  32158. extra: 330 / 326,
  32159. bottom: 16 / 346
  32160. }
  32161. },
  32162. side: {
  32163. height: math.unit(5 + 7.5 / 12, "feet"),
  32164. weight: math.unit(120, "lb"),
  32165. name: "Side",
  32166. image: {
  32167. source: "./media/characters/digi-duncan/side.svg",
  32168. extra: 341 / 337,
  32169. bottom: 1 / 342
  32170. }
  32171. },
  32172. back: {
  32173. height: math.unit(5 + 7.5 / 12, "feet"),
  32174. weight: math.unit(120, "lb"),
  32175. name: "Back",
  32176. image: {
  32177. source: "./media/characters/digi-duncan/back.svg",
  32178. extra: 330 / 326,
  32179. bottom: 12 / 342
  32180. }
  32181. },
  32182. },
  32183. [
  32184. {
  32185. name: "Speck",
  32186. height: math.unit(0.25, "mm")
  32187. },
  32188. {
  32189. name: "Micro",
  32190. height: math.unit(5, "mm")
  32191. },
  32192. {
  32193. name: "Tiny",
  32194. height: math.unit(0.5, "inches"),
  32195. default: true
  32196. },
  32197. {
  32198. name: "Human",
  32199. height: math.unit(5 + 7.5 / 12, "feet")
  32200. },
  32201. {
  32202. name: "Minigiant",
  32203. height: math.unit(8 + 5.25, "feet")
  32204. },
  32205. {
  32206. name: "Giant",
  32207. height: math.unit(2000, "feet")
  32208. },
  32209. {
  32210. name: "Mega",
  32211. height: math.unit(371.1, "miles")
  32212. },
  32213. ]
  32214. ))
  32215. characterMakers.push(() => makeCharacter(
  32216. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32217. {
  32218. front: {
  32219. height: math.unit(2, "meters"),
  32220. weight: math.unit(350, "kg"),
  32221. name: "Front",
  32222. image: {
  32223. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32224. extra: 898 / 838,
  32225. bottom: 9 / 907
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Micro",
  32232. height: math.unit(8, "meters")
  32233. },
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(50, "meters"),
  32237. default: true
  32238. },
  32239. {
  32240. name: "Macro",
  32241. height: math.unit(500, "meters")
  32242. },
  32243. ]
  32244. ))
  32245. characterMakers.push(() => makeCharacter(
  32246. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32247. {
  32248. front: {
  32249. height: math.unit(6 + 6 / 12, "feet"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/khardesh/front.svg",
  32253. extra: 1788/1596,
  32254. bottom: 66/1854
  32255. }
  32256. },
  32257. back: {
  32258. height: math.unit(6 + 6 / 12, "feet"),
  32259. name: "Back",
  32260. image: {
  32261. source: "./media/characters/khardesh/back.svg",
  32262. extra: 1781/1584,
  32263. bottom: 68/1849
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(6 + 6 / 12, "feet"),
  32271. default: true
  32272. },
  32273. {
  32274. name: "Normal+",
  32275. height: math.unit(4, "meters")
  32276. },
  32277. {
  32278. name: "Macro",
  32279. height: math.unit(50, "meters")
  32280. },
  32281. {
  32282. name: "Macro+",
  32283. height: math.unit(100, "meters")
  32284. },
  32285. {
  32286. name: "Megamacro",
  32287. height: math.unit(20, "km")
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(6, "feet"),
  32296. weight: math.unit(150, "lb"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/kosho/front.svg",
  32300. extra: 1847 / 1847,
  32301. bottom: 86 / 1933
  32302. }
  32303. },
  32304. },
  32305. [
  32306. {
  32307. name: "Second-stage micro",
  32308. height: math.unit(0.5, "inches")
  32309. },
  32310. {
  32311. name: "First-stage micro",
  32312. height: math.unit(6, "inches")
  32313. },
  32314. {
  32315. name: "Normal",
  32316. height: math.unit(6, "feet"),
  32317. default: true
  32318. },
  32319. {
  32320. name: "First-stage macro",
  32321. height: math.unit(72, "feet")
  32322. },
  32323. {
  32324. name: "Second-stage macro",
  32325. height: math.unit(864, "feet")
  32326. },
  32327. ]
  32328. ))
  32329. characterMakers.push(() => makeCharacter(
  32330. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32331. {
  32332. normal: {
  32333. height: math.unit(4 + 6 / 12, "feet"),
  32334. name: "Normal",
  32335. image: {
  32336. source: "./media/characters/hydra/normal.svg",
  32337. extra: 2833 / 2634,
  32338. bottom: 68 / 2901
  32339. }
  32340. },
  32341. smol: {
  32342. height: math.unit(0.705, "inches"),
  32343. name: "Smol",
  32344. image: {
  32345. source: "./media/characters/hydra/smol.svg",
  32346. extra: 2715 / 2540,
  32347. bottom: 0 / 2715
  32348. }
  32349. },
  32350. },
  32351. [
  32352. {
  32353. name: "Normal",
  32354. height: math.unit(4 + 6 / 12, "feet"),
  32355. default: true
  32356. }
  32357. ]
  32358. ))
  32359. characterMakers.push(() => makeCharacter(
  32360. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32361. {
  32362. front: {
  32363. height: math.unit(0.6, "cm"),
  32364. name: "Front",
  32365. image: {
  32366. source: "./media/characters/daz/front.svg",
  32367. extra: 1682 / 1164,
  32368. bottom: 42 / 1724
  32369. }
  32370. },
  32371. },
  32372. [
  32373. {
  32374. name: "Normal",
  32375. height: math.unit(0.6, "cm"),
  32376. default: true
  32377. },
  32378. ]
  32379. ))
  32380. characterMakers.push(() => makeCharacter(
  32381. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32382. {
  32383. front: {
  32384. height: math.unit(6, "feet"),
  32385. weight: math.unit(235, "lb"),
  32386. name: "Front",
  32387. image: {
  32388. source: "./media/characters/theo-pangolin/front.svg",
  32389. extra: 1996 / 1969,
  32390. bottom: 115 / 2111
  32391. }
  32392. },
  32393. back: {
  32394. height: math.unit(6, "feet"),
  32395. weight: math.unit(235, "lb"),
  32396. name: "Back",
  32397. image: {
  32398. source: "./media/characters/theo-pangolin/back.svg",
  32399. extra: 1979 / 1979,
  32400. bottom: 40 / 2019
  32401. }
  32402. },
  32403. feral: {
  32404. height: math.unit(2, "feet"),
  32405. weight: math.unit(30, "lb"),
  32406. name: "Feral",
  32407. image: {
  32408. source: "./media/characters/theo-pangolin/feral.svg",
  32409. extra: 803 / 791,
  32410. bottom: 181 / 984
  32411. }
  32412. },
  32413. footFive: {
  32414. height: math.unit(1.43, "feet"),
  32415. name: "Foot (Five Toes)",
  32416. image: {
  32417. source: "./media/characters/theo-pangolin/foot-five.svg"
  32418. }
  32419. },
  32420. footFour: {
  32421. height: math.unit(1.43, "feet"),
  32422. name: "Foot (Four Toes)",
  32423. image: {
  32424. source: "./media/characters/theo-pangolin/foot-four.svg"
  32425. }
  32426. },
  32427. handFour: {
  32428. height: math.unit(0.81, "feet"),
  32429. name: "Hand (Four Fingers)",
  32430. image: {
  32431. source: "./media/characters/theo-pangolin/hand-four.svg"
  32432. }
  32433. },
  32434. handThree: {
  32435. height: math.unit(0.81, "feet"),
  32436. name: "Hand (Three Fingers)",
  32437. image: {
  32438. source: "./media/characters/theo-pangolin/hand-three.svg"
  32439. }
  32440. },
  32441. headFront: {
  32442. height: math.unit(1.37, "feet"),
  32443. name: "Head (Front)",
  32444. image: {
  32445. source: "./media/characters/theo-pangolin/head-front.svg"
  32446. }
  32447. },
  32448. headSide: {
  32449. height: math.unit(1.43, "feet"),
  32450. name: "Head (Side)",
  32451. image: {
  32452. source: "./media/characters/theo-pangolin/head-side.svg"
  32453. }
  32454. },
  32455. tongue: {
  32456. height: math.unit(2.29, "feet"),
  32457. name: "Tongue",
  32458. image: {
  32459. source: "./media/characters/theo-pangolin/tongue.svg"
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Normal",
  32466. height: math.unit(6, "feet")
  32467. },
  32468. {
  32469. name: "Macro",
  32470. height: math.unit(400, "feet"),
  32471. default: true
  32472. },
  32473. ]
  32474. ))
  32475. characterMakers.push(() => makeCharacter(
  32476. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32477. {
  32478. front: {
  32479. height: math.unit(6, "inches"),
  32480. weight: math.unit(0.036, "kg"),
  32481. name: "Front",
  32482. image: {
  32483. source: "./media/characters/renée/front.svg",
  32484. extra: 900 / 886,
  32485. bottom: 8 / 908
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Nano",
  32492. height: math.unit(1, "nm")
  32493. },
  32494. {
  32495. name: "Micro",
  32496. height: math.unit(1, "mm")
  32497. },
  32498. {
  32499. name: "Normal",
  32500. height: math.unit(6, "inches")
  32501. },
  32502. {
  32503. name: "Macro",
  32504. height: math.unit(2000, "feet"),
  32505. default: true
  32506. },
  32507. {
  32508. name: "Megamacro",
  32509. height: math.unit(2, "km")
  32510. },
  32511. {
  32512. name: "Gigamacro",
  32513. height: math.unit(2000, "km")
  32514. },
  32515. {
  32516. name: "Teramacro",
  32517. height: math.unit(250000, "km")
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32523. {
  32524. front: {
  32525. height: math.unit(4, "meters"),
  32526. weight: math.unit(150, "kg"),
  32527. name: "Front",
  32528. image: {
  32529. source: "./media/characters/caledvwlch/front.svg",
  32530. extra: 1757/1537,
  32531. bottom: 31/1788
  32532. }
  32533. },
  32534. side: {
  32535. height: math.unit(4, "meters"),
  32536. weight: math.unit(150, "kg"),
  32537. name: "Side",
  32538. image: {
  32539. source: "./media/characters/caledvwlch/side.svg",
  32540. extra: 1605 / 1536,
  32541. bottom: 31 / 1636
  32542. }
  32543. },
  32544. back: {
  32545. height: math.unit(4, "meters"),
  32546. weight: math.unit(150, "kg"),
  32547. name: "Back",
  32548. image: {
  32549. source: "./media/characters/caledvwlch/back.svg",
  32550. extra: 1635 / 1565,
  32551. bottom: 27 / 1662
  32552. }
  32553. },
  32554. },
  32555. [
  32556. {
  32557. name: "\"Incognito\"",
  32558. height: math.unit(4, "meters")
  32559. },
  32560. {
  32561. name: "Small rampage",
  32562. height: math.unit(600, "meters")
  32563. },
  32564. {
  32565. name: "Mega",
  32566. height: math.unit(30, "km")
  32567. },
  32568. {
  32569. name: "Home-size",
  32570. height: math.unit(50, "km"),
  32571. default: true
  32572. },
  32573. {
  32574. name: "Giga",
  32575. height: math.unit(300, "km")
  32576. },
  32577. {
  32578. name: "Lounging",
  32579. height: math.unit(11000, "km")
  32580. },
  32581. {
  32582. name: "Planet snacking",
  32583. height: math.unit(2000000, "km")
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32589. {
  32590. front: {
  32591. height: math.unit(6, "feet"),
  32592. weight: math.unit(215, "lb"),
  32593. name: "Front",
  32594. image: {
  32595. source: "./media/characters/sapphire-svell/front.svg",
  32596. extra: 495 / 455,
  32597. bottom: 20 / 515
  32598. }
  32599. },
  32600. back: {
  32601. height: math.unit(6, "feet"),
  32602. weight: math.unit(216, "lb"),
  32603. name: "Back",
  32604. image: {
  32605. source: "./media/characters/sapphire-svell/back.svg",
  32606. extra: 497 / 477,
  32607. bottom: 7 / 504
  32608. }
  32609. },
  32610. maw: {
  32611. height: math.unit(1.57, "feet"),
  32612. name: "Maw",
  32613. image: {
  32614. source: "./media/characters/sapphire-svell/maw.svg"
  32615. }
  32616. },
  32617. foot: {
  32618. height: math.unit(1.07, "feet"),
  32619. name: "Foot",
  32620. image: {
  32621. source: "./media/characters/sapphire-svell/foot.svg"
  32622. }
  32623. },
  32624. toering: {
  32625. height: math.unit(1.7, "inch"),
  32626. name: "Toering",
  32627. image: {
  32628. source: "./media/characters/sapphire-svell/toering.svg"
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(300, "feet"),
  32636. default: true
  32637. },
  32638. {
  32639. name: "Augmented",
  32640. height: math.unit(1250, "feet")
  32641. },
  32642. {
  32643. name: "Unleashed",
  32644. height: math.unit(3000, "feet")
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32650. {
  32651. side: {
  32652. height: math.unit(2 + 3 / 12, "feet"),
  32653. weight: math.unit(110, "lb"),
  32654. name: "Side",
  32655. image: {
  32656. source: "./media/characters/glitch-flux/side.svg",
  32657. extra: 997 / 805,
  32658. bottom: 20 / 1017
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(2 + 3 / 12, "feet"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(4, "meters"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/mid/front.svg",
  32678. extra: 507 / 476,
  32679. bottom: 17 / 524
  32680. }
  32681. },
  32682. back: {
  32683. height: math.unit(4, "meters"),
  32684. name: "Back",
  32685. image: {
  32686. source: "./media/characters/mid/back.svg",
  32687. extra: 519 / 487,
  32688. bottom: 7 / 526
  32689. }
  32690. },
  32691. stuck: {
  32692. height: math.unit(2.2, "meters"),
  32693. name: "Stuck",
  32694. image: {
  32695. source: "./media/characters/mid/stuck.svg",
  32696. extra: 1951 / 1869,
  32697. bottom: 88 / 2039
  32698. }
  32699. }
  32700. },
  32701. [
  32702. {
  32703. name: "Normal",
  32704. height: math.unit(4, "meters"),
  32705. default: true
  32706. },
  32707. {
  32708. name: "Big",
  32709. height: math.unit(10, "meters")
  32710. },
  32711. {
  32712. name: "Macro",
  32713. height: math.unit(800, "meters")
  32714. },
  32715. {
  32716. name: "Megamacro",
  32717. height: math.unit(100, "km")
  32718. },
  32719. {
  32720. name: "Overgrown",
  32721. height: math.unit(1, "parsec")
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(2.5, "meters"),
  32730. weight: math.unit(225, "kg"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/iris/front.svg",
  32734. extra: 3348 / 3251,
  32735. bottom: 205 / 3553
  32736. }
  32737. },
  32738. maw: {
  32739. height: math.unit(0.56, "meter"),
  32740. name: "Maw",
  32741. image: {
  32742. source: "./media/characters/iris/maw.svg"
  32743. }
  32744. },
  32745. },
  32746. [
  32747. {
  32748. name: "Mewter cat",
  32749. height: math.unit(1.2, "meters")
  32750. },
  32751. {
  32752. name: "Normal",
  32753. height: math.unit(2.5, "meters"),
  32754. default: true
  32755. },
  32756. {
  32757. name: "Minimacro",
  32758. height: math.unit(18, "feet")
  32759. },
  32760. {
  32761. name: "Macro",
  32762. height: math.unit(140, "feet")
  32763. },
  32764. {
  32765. name: "Macro+",
  32766. height: math.unit(180, "meters")
  32767. },
  32768. {
  32769. name: "Megamacro",
  32770. height: math.unit(2746, "meters")
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(6, "feet"),
  32779. weight: math.unit(135, "lb"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/axel/front.svg",
  32783. extra: 908 / 908,
  32784. bottom: 58 / 966
  32785. }
  32786. },
  32787. side: {
  32788. height: math.unit(6, "feet"),
  32789. weight: math.unit(135, "lb"),
  32790. name: "Side",
  32791. image: {
  32792. source: "./media/characters/axel/side.svg",
  32793. extra: 958 / 958,
  32794. bottom: 11 / 969
  32795. }
  32796. },
  32797. back: {
  32798. height: math.unit(6, "feet"),
  32799. weight: math.unit(135, "lb"),
  32800. name: "Back",
  32801. image: {
  32802. source: "./media/characters/axel/back.svg",
  32803. extra: 887 / 887,
  32804. bottom: 34 / 921
  32805. }
  32806. },
  32807. head: {
  32808. height: math.unit(1.07, "feet"),
  32809. name: "Head",
  32810. image: {
  32811. source: "./media/characters/axel/head.svg"
  32812. }
  32813. },
  32814. beak: {
  32815. height: math.unit(1.4, "feet"),
  32816. name: "Beak",
  32817. image: {
  32818. source: "./media/characters/axel/beak.svg"
  32819. }
  32820. },
  32821. beakSide: {
  32822. height: math.unit(1.4, "feet"),
  32823. name: "Beak Side",
  32824. image: {
  32825. source: "./media/characters/axel/beak-side.svg"
  32826. }
  32827. },
  32828. sheath: {
  32829. height: math.unit(0.5, "feet"),
  32830. name: "Sheath",
  32831. image: {
  32832. source: "./media/characters/axel/sheath.svg"
  32833. }
  32834. },
  32835. dick: {
  32836. height: math.unit(0.98, "feet"),
  32837. name: "Dick",
  32838. image: {
  32839. source: "./media/characters/axel/dick.svg"
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Macro",
  32846. height: math.unit(68, "meters"),
  32847. default: true
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(3.5, "meters"),
  32856. weight: math.unit(1200, "kg"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/joanna/front.svg",
  32860. extra: 1596 / 1488,
  32861. bottom: 29 / 1625
  32862. }
  32863. },
  32864. back: {
  32865. height: math.unit(3.5, "meters"),
  32866. weight: math.unit(1200, "kg"),
  32867. name: "Back",
  32868. image: {
  32869. source: "./media/characters/joanna/back.svg",
  32870. extra: 1594 / 1495,
  32871. bottom: 26 / 1620
  32872. }
  32873. },
  32874. frontShorts: {
  32875. height: math.unit(3.5, "meters"),
  32876. weight: math.unit(1200, "kg"),
  32877. name: "Front (Shorts)",
  32878. image: {
  32879. source: "./media/characters/joanna/front-shorts.svg",
  32880. extra: 1596 / 1488,
  32881. bottom: 29 / 1625
  32882. }
  32883. },
  32884. frontBiker: {
  32885. height: math.unit(3.5, "meters"),
  32886. weight: math.unit(1200, "kg"),
  32887. name: "Front (Biker)",
  32888. image: {
  32889. source: "./media/characters/joanna/front-biker.svg",
  32890. extra: 1596 / 1488,
  32891. bottom: 29 / 1625
  32892. }
  32893. },
  32894. backBiker: {
  32895. height: math.unit(3.5, "meters"),
  32896. weight: math.unit(1200, "kg"),
  32897. name: "Back (Biker)",
  32898. image: {
  32899. source: "./media/characters/joanna/back-biker.svg",
  32900. extra: 1594 / 1495,
  32901. bottom: 88 / 1682
  32902. }
  32903. },
  32904. bikeLeft: {
  32905. height: math.unit(2.4, "meters"),
  32906. weight: math.unit(1600, "kg"),
  32907. name: "Bike (Left)",
  32908. image: {
  32909. source: "./media/characters/joanna/bike-left.svg",
  32910. extra: 720 / 720,
  32911. bottom: 8 / 728
  32912. }
  32913. },
  32914. bikeRight: {
  32915. height: math.unit(2.4, "meters"),
  32916. weight: math.unit(1600, "kg"),
  32917. name: "Bike (Right)",
  32918. image: {
  32919. source: "./media/characters/joanna/bike-right.svg",
  32920. extra: 720 / 720,
  32921. bottom: 8 / 728
  32922. }
  32923. },
  32924. },
  32925. [
  32926. {
  32927. name: "Incognito",
  32928. height: math.unit(3.5, "meters")
  32929. },
  32930. {
  32931. name: "Casual Big",
  32932. height: math.unit(200, "meters")
  32933. },
  32934. {
  32935. name: "Macro",
  32936. height: math.unit(600, "meters")
  32937. },
  32938. {
  32939. name: "Original",
  32940. height: math.unit(20, "km"),
  32941. default: true
  32942. },
  32943. {
  32944. name: "Giga",
  32945. height: math.unit(400, "km")
  32946. },
  32947. {
  32948. name: "Lounging",
  32949. height: math.unit(1500, "km")
  32950. },
  32951. {
  32952. name: "Planetary",
  32953. height: math.unit(200000, "km")
  32954. },
  32955. ]
  32956. ))
  32957. characterMakers.push(() => makeCharacter(
  32958. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32959. {
  32960. front: {
  32961. height: math.unit(6, "feet"),
  32962. weight: math.unit(150, "lb"),
  32963. name: "Front",
  32964. image: {
  32965. source: "./media/characters/hugo-sigil/front.svg",
  32966. extra: 522 / 500,
  32967. bottom: 2 / 524
  32968. }
  32969. },
  32970. back: {
  32971. height: math.unit(6, "feet"),
  32972. weight: math.unit(150, "lb"),
  32973. name: "Back",
  32974. image: {
  32975. source: "./media/characters/hugo-sigil/back.svg",
  32976. extra: 519 / 495,
  32977. bottom: 5 / 524
  32978. }
  32979. },
  32980. maw: {
  32981. height: math.unit(1.4, "feet"),
  32982. weight: math.unit(150, "lb"),
  32983. name: "Maw",
  32984. image: {
  32985. source: "./media/characters/hugo-sigil/maw.svg"
  32986. }
  32987. },
  32988. feet: {
  32989. height: math.unit(1.56, "feet"),
  32990. weight: math.unit(150, "lb"),
  32991. name: "Feet",
  32992. image: {
  32993. source: "./media/characters/hugo-sigil/feet.svg",
  32994. extra: 177 / 177,
  32995. bottom: 12 / 189
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(6, "feet")
  33003. },
  33004. {
  33005. name: "Macro",
  33006. height: math.unit(200, "feet"),
  33007. default: true
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33013. {
  33014. front: {
  33015. height: math.unit(6, "feet"),
  33016. weight: math.unit(150, "lb"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/peri/front.svg",
  33020. extra: 2354 / 2233,
  33021. bottom: 49 / 2403
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Really Small",
  33028. height: math.unit(1, "nm")
  33029. },
  33030. {
  33031. name: "Micro",
  33032. height: math.unit(4, "inches")
  33033. },
  33034. {
  33035. name: "Normal",
  33036. height: math.unit(7, "inches"),
  33037. default: true
  33038. },
  33039. {
  33040. name: "Macro",
  33041. height: math.unit(400, "feet")
  33042. },
  33043. {
  33044. name: "Megamacro",
  33045. height: math.unit(100, "miles")
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33051. {
  33052. frontSlim: {
  33053. height: math.unit(7, "feet"),
  33054. name: "Front (Slim)",
  33055. image: {
  33056. source: "./media/characters/issilora/front-slim.svg",
  33057. extra: 529 / 449,
  33058. bottom: 53 / 582
  33059. }
  33060. },
  33061. sideSlim: {
  33062. height: math.unit(7, "feet"),
  33063. name: "Side (Slim)",
  33064. image: {
  33065. source: "./media/characters/issilora/side-slim.svg",
  33066. extra: 570 / 480,
  33067. bottom: 30 / 600
  33068. }
  33069. },
  33070. backSlim: {
  33071. height: math.unit(7, "feet"),
  33072. name: "Back (Slim)",
  33073. image: {
  33074. source: "./media/characters/issilora/back-slim.svg",
  33075. extra: 537 / 455,
  33076. bottom: 46 / 583
  33077. }
  33078. },
  33079. frontBuff: {
  33080. height: math.unit(7, "feet"),
  33081. name: "Front (Buff)",
  33082. image: {
  33083. source: "./media/characters/issilora/front-buff.svg",
  33084. extra: 2310 / 2035,
  33085. bottom: 335 / 2645
  33086. }
  33087. },
  33088. head: {
  33089. height: math.unit(1.94, "feet"),
  33090. name: "Head",
  33091. image: {
  33092. source: "./media/characters/issilora/head.svg"
  33093. }
  33094. },
  33095. },
  33096. [
  33097. {
  33098. name: "Minimum",
  33099. height: math.unit(7, "feet")
  33100. },
  33101. {
  33102. name: "Comfortable",
  33103. height: math.unit(17, "feet")
  33104. },
  33105. {
  33106. name: "Fun Size",
  33107. height: math.unit(47, "feet")
  33108. },
  33109. {
  33110. name: "Natural Macro",
  33111. height: math.unit(137, "feet"),
  33112. default: true
  33113. },
  33114. {
  33115. name: "Maximum Kaiju",
  33116. height: math.unit(397, "feet")
  33117. },
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33122. {
  33123. front: {
  33124. height: math.unit(50 + 9/12, "feet"),
  33125. weight: math.unit(32.8, "tons"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/irb'iiritaahn/front.svg",
  33129. extra: 1878/1826,
  33130. bottom: 326/2204
  33131. }
  33132. },
  33133. back: {
  33134. height: math.unit(50 + 9/12, "feet"),
  33135. weight: math.unit(32.8, "tons"),
  33136. name: "Back",
  33137. image: {
  33138. source: "./media/characters/irb'iiritaahn/back.svg",
  33139. extra: 2052/2018,
  33140. bottom: 152/2204
  33141. }
  33142. },
  33143. head: {
  33144. height: math.unit(12.86, "feet"),
  33145. name: "Head",
  33146. image: {
  33147. source: "./media/characters/irb'iiritaahn/head.svg"
  33148. }
  33149. },
  33150. maw: {
  33151. height: math.unit(9.66, "feet"),
  33152. name: "Maw",
  33153. image: {
  33154. source: "./media/characters/irb'iiritaahn/maw.svg"
  33155. }
  33156. },
  33157. frontDick: {
  33158. height: math.unit(8.78461, "feet"),
  33159. name: "Front Dick",
  33160. image: {
  33161. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33162. }
  33163. },
  33164. rearDick: {
  33165. height: math.unit(8.78461, "feet"),
  33166. name: "Rear Dick",
  33167. image: {
  33168. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33169. }
  33170. },
  33171. rearDickUnfolded: {
  33172. height: math.unit(8.78, "feet"),
  33173. name: "Rear Dick (Unfolded)",
  33174. image: {
  33175. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33176. }
  33177. },
  33178. wings: {
  33179. height: math.unit(43, "feet"),
  33180. name: "Wings",
  33181. image: {
  33182. source: "./media/characters/irb'iiritaahn/wings.svg"
  33183. }
  33184. },
  33185. },
  33186. [
  33187. {
  33188. name: "Macro",
  33189. height: math.unit(50 + 9/12, "feet"),
  33190. default: true
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33196. {
  33197. front: {
  33198. height: math.unit(205, "cm"),
  33199. weight: math.unit(102, "kg"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/irbisgreif/front.svg",
  33203. extra: 785/706,
  33204. bottom: 13/798
  33205. }
  33206. },
  33207. back: {
  33208. height: math.unit(205, "cm"),
  33209. weight: math.unit(102, "kg"),
  33210. name: "Back",
  33211. image: {
  33212. source: "./media/characters/irbisgreif/back.svg",
  33213. extra: 713/701,
  33214. bottom: 26/739
  33215. }
  33216. },
  33217. frontDressed: {
  33218. height: math.unit(216, "cm"),
  33219. weight: math.unit(102, "kg"),
  33220. name: "Front-dressed",
  33221. image: {
  33222. source: "./media/characters/irbisgreif/front-dressed.svg",
  33223. extra: 902/776,
  33224. bottom: 14/916
  33225. }
  33226. },
  33227. sideDressed: {
  33228. height: math.unit(195, "cm"),
  33229. weight: math.unit(102, "kg"),
  33230. name: "Side-dressed",
  33231. image: {
  33232. source: "./media/characters/irbisgreif/side-dressed.svg",
  33233. extra: 788/688,
  33234. bottom: 21/809
  33235. }
  33236. },
  33237. backDressed: {
  33238. height: math.unit(216, "cm"),
  33239. weight: math.unit(102, "kg"),
  33240. name: "Back-dressed",
  33241. image: {
  33242. source: "./media/characters/irbisgreif/back-dressed.svg",
  33243. extra: 901/783,
  33244. bottom: 10/911
  33245. }
  33246. },
  33247. dick: {
  33248. height: math.unit(0.49, "feet"),
  33249. name: "Dick",
  33250. image: {
  33251. source: "./media/characters/irbisgreif/dick.svg"
  33252. }
  33253. },
  33254. wingTop: {
  33255. height: math.unit(1.93 , "feet"),
  33256. name: "Wing-top",
  33257. image: {
  33258. source: "./media/characters/irbisgreif/wing-top.svg"
  33259. }
  33260. },
  33261. wingBottom: {
  33262. height: math.unit(1.93 , "feet"),
  33263. name: "Wing-bottom",
  33264. image: {
  33265. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Normal",
  33272. height: math.unit(216, "cm"),
  33273. default: true
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(6, "feet"),
  33282. weight: math.unit(150, "lb"),
  33283. name: "Front",
  33284. image: {
  33285. source: "./media/characters/pride/front.svg",
  33286. extra: 1299/1230,
  33287. bottom: 18/1317
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(7, "feet")
  33295. },
  33296. {
  33297. name: "Mini-macro",
  33298. height: math.unit(11, "feet")
  33299. },
  33300. {
  33301. name: "Macro",
  33302. height: math.unit(15, "meters"),
  33303. default: true
  33304. },
  33305. {
  33306. name: "Macro+",
  33307. height: math.unit(40, "meters")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33313. {
  33314. front: {
  33315. height: math.unit(4 + 2 / 12, "feet"),
  33316. weight: math.unit(95, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/vaelophis-nyx/front.svg",
  33320. extra: 2532/2330,
  33321. bottom: 0/2532
  33322. }
  33323. },
  33324. back: {
  33325. height: math.unit(4 + 2 / 12, "feet"),
  33326. weight: math.unit(95, "lb"),
  33327. name: "Back",
  33328. image: {
  33329. source: "./media/characters/vaelophis-nyx/back.svg",
  33330. extra: 2484/2361,
  33331. bottom: 0/2484
  33332. }
  33333. },
  33334. feralSide: {
  33335. height: math.unit(2 + 1/12, "feet"),
  33336. weight: math.unit(20, "lb"),
  33337. name: "Feral (Side)",
  33338. image: {
  33339. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33340. extra: 1721/1581,
  33341. bottom: 70/1791
  33342. }
  33343. },
  33344. feralLazing: {
  33345. height: math.unit(1.08, "feet"),
  33346. weight: math.unit(20, "lb"),
  33347. name: "Feral (Lazing)",
  33348. image: {
  33349. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33350. extra: 822/822,
  33351. bottom: 248/1070
  33352. }
  33353. },
  33354. ear: {
  33355. height: math.unit(0.416, "feet"),
  33356. name: "Ear",
  33357. image: {
  33358. source: "./media/characters/vaelophis-nyx/ear.svg"
  33359. }
  33360. },
  33361. eye: {
  33362. height: math.unit(0.0748, "feet"),
  33363. name: "Eye",
  33364. image: {
  33365. source: "./media/characters/vaelophis-nyx/eye.svg"
  33366. }
  33367. },
  33368. mouth: {
  33369. height: math.unit(0.378, "feet"),
  33370. name: "Mouth",
  33371. image: {
  33372. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33373. }
  33374. },
  33375. spade: {
  33376. height: math.unit(0.55, "feet"),
  33377. name: "Spade",
  33378. image: {
  33379. source: "./media/characters/vaelophis-nyx/spade.svg"
  33380. }
  33381. },
  33382. },
  33383. [
  33384. {
  33385. name: "Normal",
  33386. height: math.unit(4 + 2/12, "feet"),
  33387. default: true
  33388. },
  33389. ]
  33390. ))
  33391. characterMakers.push(() => makeCharacter(
  33392. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33393. {
  33394. front: {
  33395. height: math.unit(7, "feet"),
  33396. weight: math.unit(231, "lb"),
  33397. name: "Front",
  33398. image: {
  33399. source: "./media/characters/flux/front.svg",
  33400. extra: 919/871,
  33401. bottom: 0/919
  33402. }
  33403. },
  33404. back: {
  33405. height: math.unit(7, "feet"),
  33406. weight: math.unit(231, "lb"),
  33407. name: "Back",
  33408. image: {
  33409. source: "./media/characters/flux/back.svg",
  33410. extra: 1040/992,
  33411. bottom: 0/1040
  33412. }
  33413. },
  33414. frontDressed: {
  33415. height: math.unit(7, "feet"),
  33416. weight: math.unit(231, "lb"),
  33417. name: "Front (Dressed)",
  33418. image: {
  33419. source: "./media/characters/flux/front-dressed.svg",
  33420. extra: 919/871,
  33421. bottom: 0/919
  33422. }
  33423. },
  33424. feralSide: {
  33425. height: math.unit(5, "feet"),
  33426. weight: math.unit(150, "lb"),
  33427. name: "Feral (Side)",
  33428. image: {
  33429. source: "./media/characters/flux/feral-side.svg",
  33430. extra: 598/528,
  33431. bottom: 28/626
  33432. }
  33433. },
  33434. head: {
  33435. height: math.unit(1.585, "feet"),
  33436. name: "Head",
  33437. image: {
  33438. source: "./media/characters/flux/head.svg"
  33439. }
  33440. },
  33441. headSide: {
  33442. height: math.unit(1.74, "feet"),
  33443. name: "Head (Side)",
  33444. image: {
  33445. source: "./media/characters/flux/head-side.svg"
  33446. }
  33447. },
  33448. headSideFire: {
  33449. height: math.unit(1.76, "feet"),
  33450. name: "Head (Side, Fire)",
  33451. image: {
  33452. source: "./media/characters/flux/head-side-fire.svg"
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Normal",
  33459. height: math.unit(7, "feet"),
  33460. default: true
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(9, "feet"),
  33469. weight: math.unit(1012, "lb"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/ulfra-lupae/front.svg",
  33473. extra: 1083/1011,
  33474. bottom: 67/1150
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Micro",
  33481. height: math.unit(6, "inches")
  33482. },
  33483. {
  33484. name: "Socializing",
  33485. height: math.unit(6 + 5/12, "feet")
  33486. },
  33487. {
  33488. name: "Normal",
  33489. height: math.unit(9, "feet"),
  33490. default: true
  33491. },
  33492. {
  33493. name: "Macro",
  33494. height: math.unit(150, "feet")
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(5 + 2/12, "feet"),
  33503. weight: math.unit(120, "lb"),
  33504. name: "Front",
  33505. image: {
  33506. source: "./media/characters/timber/front.svg",
  33507. extra: 2814/2705,
  33508. bottom: 181/2995
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(5 + 2/12, "feet"),
  33516. default: true
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(9, "feet"),
  33525. name: "Front",
  33526. image: {
  33527. source: "./media/characters/nicki/front.svg",
  33528. extra: 1240/990,
  33529. bottom: 45/1285
  33530. },
  33531. form: "anthro",
  33532. default: true
  33533. },
  33534. side: {
  33535. height: math.unit(9, "feet"),
  33536. name: "Side",
  33537. image: {
  33538. source: "./media/characters/nicki/side.svg",
  33539. extra: 1047/973,
  33540. bottom: 61/1108
  33541. },
  33542. form: "anthro"
  33543. },
  33544. back: {
  33545. height: math.unit(9, "feet"),
  33546. name: "Back",
  33547. image: {
  33548. source: "./media/characters/nicki/back.svg",
  33549. extra: 1006/965,
  33550. bottom: 39/1045
  33551. },
  33552. form: "anthro"
  33553. },
  33554. taur: {
  33555. height: math.unit(15, "feet"),
  33556. name: "Taur",
  33557. image: {
  33558. source: "./media/characters/nicki/taur.svg",
  33559. extra: 1592/1347,
  33560. bottom: 0/1592
  33561. },
  33562. form: "taur",
  33563. default: true
  33564. },
  33565. },
  33566. [
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(9, "feet"),
  33570. form: "anthro",
  33571. default: true
  33572. },
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(15, "feet"),
  33576. form: "taur",
  33577. default: true
  33578. }
  33579. ],
  33580. {
  33581. "anthro": {
  33582. name: "Anthro",
  33583. default: true
  33584. },
  33585. "taur": {
  33586. name: "Taur"
  33587. }
  33588. }
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33592. {
  33593. front: {
  33594. height: math.unit(7 + 10/12, "feet"),
  33595. weight: math.unit(3.5, "tons"),
  33596. name: "Front",
  33597. image: {
  33598. source: "./media/characters/lee/front.svg",
  33599. extra: 1773/1615,
  33600. bottom: 86/1859
  33601. }
  33602. },
  33603. hand: {
  33604. height: math.unit(1.78, "feet"),
  33605. name: "Hand",
  33606. image: {
  33607. source: "./media/characters/lee/hand.svg"
  33608. }
  33609. },
  33610. maw: {
  33611. height: math.unit(1.18, "feet"),
  33612. name: "Maw",
  33613. image: {
  33614. source: "./media/characters/lee/maw.svg"
  33615. }
  33616. },
  33617. },
  33618. [
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(7 + 10/12, "feet"),
  33622. default: true
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33628. {
  33629. front: {
  33630. height: math.unit(9, "feet"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/guti/front.svg",
  33634. extra: 4551/4355,
  33635. bottom: 123/4674
  33636. }
  33637. },
  33638. tongue: {
  33639. height: math.unit(1, "feet"),
  33640. name: "Tongue",
  33641. image: {
  33642. source: "./media/characters/guti/tongue.svg"
  33643. }
  33644. },
  33645. paw: {
  33646. height: math.unit(1.18, "feet"),
  33647. name: "Paw",
  33648. image: {
  33649. source: "./media/characters/guti/paw.svg"
  33650. }
  33651. },
  33652. },
  33653. [
  33654. {
  33655. name: "Normal",
  33656. height: math.unit(9, "feet"),
  33657. default: true
  33658. },
  33659. ]
  33660. ))
  33661. characterMakers.push(() => makeCharacter(
  33662. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33663. {
  33664. side: {
  33665. height: math.unit(5, "meters"),
  33666. name: "Side",
  33667. image: {
  33668. source: "./media/characters/vesper/side.svg",
  33669. extra: 1605/1518,
  33670. bottom: 0/1605
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Small",
  33677. height: math.unit(5, "meters")
  33678. },
  33679. {
  33680. name: "Sage",
  33681. height: math.unit(100, "meters"),
  33682. default: true
  33683. },
  33684. {
  33685. name: "Fun Size",
  33686. height: math.unit(600, "meters")
  33687. },
  33688. {
  33689. name: "Goddess",
  33690. height: math.unit(20000, "km")
  33691. },
  33692. {
  33693. name: "Maximum",
  33694. height: math.unit(5, "galaxies")
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33700. {
  33701. front: {
  33702. height: math.unit(6 + 3/12, "feet"),
  33703. weight: math.unit(190, "lb"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/gawain/front.svg",
  33707. extra: 2222/2139,
  33708. bottom: 90/2312
  33709. }
  33710. },
  33711. back: {
  33712. height: math.unit(6 + 3/12, "feet"),
  33713. weight: math.unit(190, "lb"),
  33714. name: "Back",
  33715. image: {
  33716. source: "./media/characters/gawain/back.svg",
  33717. extra: 2199/2111,
  33718. bottom: 73/2272
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(6 + 3/12, "feet"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33732. {
  33733. side: {
  33734. height: math.unit(3.5, "meters"),
  33735. weight: math.unit(16000, "lb"),
  33736. name: "Side",
  33737. image: {
  33738. source: "./media/characters/dascalti/side.svg",
  33739. extra: 392/273,
  33740. bottom: 47/439
  33741. }
  33742. },
  33743. breath: {
  33744. height: math.unit(7.4, "feet"),
  33745. name: "Breath",
  33746. image: {
  33747. source: "./media/characters/dascalti/breath.svg"
  33748. }
  33749. },
  33750. fed: {
  33751. height: math.unit(3.6, "meters"),
  33752. weight: math.unit(16000, "lb"),
  33753. name: "Fed",
  33754. image: {
  33755. source: "./media/characters/dascalti/fed.svg",
  33756. extra: 1419/820,
  33757. bottom: 95/1514
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(3.5, "meters"),
  33765. default: true
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(3 + 5/12, "feet"),
  33774. name: "Front",
  33775. image: {
  33776. source: "./media/characters/mauve/front.svg",
  33777. extra: 1126/1033,
  33778. bottom: 65/1191
  33779. }
  33780. },
  33781. side: {
  33782. height: math.unit(3 + 5/12, "feet"),
  33783. name: "Side",
  33784. image: {
  33785. source: "./media/characters/mauve/side.svg",
  33786. extra: 1089/1001,
  33787. bottom: 29/1118
  33788. }
  33789. },
  33790. back: {
  33791. height: math.unit(3 + 5/12, "feet"),
  33792. name: "Back",
  33793. image: {
  33794. source: "./media/characters/mauve/back.svg",
  33795. extra: 1173/1053,
  33796. bottom: 109/1282
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(3 + 5/12, "feet"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33810. {
  33811. front: {
  33812. height: math.unit(6 + 3/12, "feet"),
  33813. weight: math.unit(430, "lb"),
  33814. name: "Front",
  33815. image: {
  33816. source: "./media/characters/carlos/front.svg",
  33817. extra: 1964/1913,
  33818. bottom: 70/2034
  33819. }
  33820. },
  33821. },
  33822. [
  33823. {
  33824. name: "Normal",
  33825. height: math.unit(6 + 3/12, "feet"),
  33826. default: true
  33827. },
  33828. ]
  33829. ))
  33830. characterMakers.push(() => makeCharacter(
  33831. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33832. {
  33833. back: {
  33834. height: math.unit(5 + 10/12, "feet"),
  33835. weight: math.unit(200, "lb"),
  33836. name: "Back",
  33837. image: {
  33838. source: "./media/characters/jax/back.svg",
  33839. extra: 764/739,
  33840. bottom: 25/789
  33841. }
  33842. },
  33843. },
  33844. [
  33845. {
  33846. name: "Normal",
  33847. height: math.unit(5 + 10/12, "feet"),
  33848. default: true
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(8, "feet"),
  33857. weight: math.unit(250, "lb"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/eikthynir/front.svg",
  33861. extra: 1332/1166,
  33862. bottom: 82/1414
  33863. }
  33864. },
  33865. back: {
  33866. height: math.unit(8, "feet"),
  33867. weight: math.unit(250, "lb"),
  33868. name: "Back",
  33869. image: {
  33870. source: "./media/characters/eikthynir/back.svg",
  33871. extra: 1342/1190,
  33872. bottom: 19/1361
  33873. }
  33874. },
  33875. dick: {
  33876. height: math.unit(2.35, "feet"),
  33877. name: "Dick",
  33878. image: {
  33879. source: "./media/characters/eikthynir/dick.svg"
  33880. }
  33881. },
  33882. },
  33883. [
  33884. {
  33885. name: "Normal",
  33886. height: math.unit(8, "feet"),
  33887. default: true
  33888. },
  33889. ]
  33890. ))
  33891. characterMakers.push(() => makeCharacter(
  33892. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33893. {
  33894. front: {
  33895. height: math.unit(99, "meters"),
  33896. weight: math.unit(13000, "tons"),
  33897. name: "Front",
  33898. image: {
  33899. source: "./media/characters/zlmos/front.svg",
  33900. extra: 2202/1992,
  33901. bottom: 315/2517
  33902. }
  33903. },
  33904. },
  33905. [
  33906. {
  33907. name: "Macro",
  33908. height: math.unit(99, "meters"),
  33909. default: true
  33910. },
  33911. ]
  33912. ))
  33913. characterMakers.push(() => makeCharacter(
  33914. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33915. {
  33916. front: {
  33917. height: math.unit(6 + 5/12, "feet"),
  33918. name: "Front",
  33919. image: {
  33920. source: "./media/characters/purri/front.svg",
  33921. extra: 1698/1610,
  33922. bottom: 32/1730
  33923. }
  33924. },
  33925. frontAlt: {
  33926. height: math.unit(6 + 5/12, "feet"),
  33927. name: "Front (Alt)",
  33928. image: {
  33929. source: "./media/characters/purri/front-alt.svg",
  33930. extra: 450/420,
  33931. bottom: 26/476
  33932. }
  33933. },
  33934. boots: {
  33935. height: math.unit(5.5, "feet"),
  33936. name: "Boots",
  33937. image: {
  33938. source: "./media/characters/purri/boots.svg",
  33939. extra: 905/853,
  33940. bottom: 18/923
  33941. },
  33942. extraAttributes: {
  33943. "shoeSize": {
  33944. name: "Shoe Size",
  33945. power: 1,
  33946. type: "length",
  33947. base: math.unit(12, "ShoeSizeMensUS")
  33948. },
  33949. "platformHeight": {
  33950. name: "Platform Height",
  33951. power: 1,
  33952. type: "length",
  33953. base: math.unit(2, "inches")
  33954. },
  33955. }
  33956. },
  33957. lying: {
  33958. height: math.unit(2, "feet"),
  33959. name: "Lying",
  33960. image: {
  33961. source: "./media/characters/purri/lying.svg",
  33962. extra: 940/843,
  33963. bottom: 146/1086
  33964. }
  33965. },
  33966. devious: {
  33967. height: math.unit(1.77, "feet"),
  33968. name: "Devious",
  33969. image: {
  33970. source: "./media/characters/purri/devious.svg",
  33971. extra: 1440/1155,
  33972. bottom: 147/1587
  33973. }
  33974. },
  33975. bean: {
  33976. height: math.unit(1.94, "feet"),
  33977. name: "Bean",
  33978. image: {
  33979. source: "./media/characters/purri/bean.svg"
  33980. }
  33981. },
  33982. },
  33983. [
  33984. {
  33985. name: "Micro",
  33986. height: math.unit(1, "mm")
  33987. },
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(6 + 5/12, "feet"),
  33991. default: true
  33992. },
  33993. {
  33994. name: "Macro :3c",
  33995. height: math.unit(2, "miles")
  33996. },
  33997. ]
  33998. ))
  33999. characterMakers.push(() => makeCharacter(
  34000. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34001. {
  34002. front: {
  34003. height: math.unit(6 + 2/12, "feet"),
  34004. weight: math.unit(250, "lb"),
  34005. name: "Front",
  34006. image: {
  34007. source: "./media/characters/moonlight/front.svg",
  34008. extra: 1044/908,
  34009. bottom: 56/1100
  34010. }
  34011. },
  34012. feral: {
  34013. height: math.unit(3 + 1/12, "feet"),
  34014. weight: math.unit(50, "kg"),
  34015. name: "Feral",
  34016. image: {
  34017. source: "./media/characters/moonlight/feral.svg",
  34018. extra: 3705/2791,
  34019. bottom: 145/3850
  34020. }
  34021. },
  34022. paw: {
  34023. height: math.unit(1, "feet"),
  34024. name: "Paw",
  34025. image: {
  34026. source: "./media/characters/moonlight/paw.svg"
  34027. }
  34028. },
  34029. paws: {
  34030. height: math.unit(0.98, "feet"),
  34031. name: "Paws",
  34032. image: {
  34033. source: "./media/characters/moonlight/paws.svg",
  34034. extra: 939/939,
  34035. bottom: 50/989
  34036. }
  34037. },
  34038. mouth: {
  34039. height: math.unit(0.48, "feet"),
  34040. name: "Mouth",
  34041. image: {
  34042. source: "./media/characters/moonlight/mouth.svg"
  34043. }
  34044. },
  34045. dick: {
  34046. height: math.unit(1.46, "feet"),
  34047. name: "Dick",
  34048. image: {
  34049. source: "./media/characters/moonlight/dick.svg"
  34050. }
  34051. },
  34052. },
  34053. [
  34054. {
  34055. name: "Normal",
  34056. height: math.unit(6 + 2/12, "feet"),
  34057. default: true
  34058. },
  34059. {
  34060. name: "Macro",
  34061. height: math.unit(300, "feet")
  34062. },
  34063. {
  34064. name: "Macro+",
  34065. height: math.unit(1, "mile")
  34066. },
  34067. {
  34068. name: "Mt. Moon",
  34069. height: math.unit(5, "miles")
  34070. },
  34071. {
  34072. name: "Megamacro",
  34073. height: math.unit(15, "miles")
  34074. },
  34075. ]
  34076. ))
  34077. characterMakers.push(() => makeCharacter(
  34078. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34079. {
  34080. back: {
  34081. height: math.unit(6, "feet"),
  34082. weight: math.unit(150, "lb"),
  34083. name: "Back",
  34084. image: {
  34085. source: "./media/characters/sylen/back.svg",
  34086. extra: 1335/1273,
  34087. bottom: 107/1442
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(5 + 5/12, "feet")
  34095. },
  34096. {
  34097. name: "Megamacro",
  34098. height: math.unit(3, "miles"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(6, "feet"),
  34108. weight: math.unit(190, "lb"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/huttser/front.svg",
  34112. extra: 1152/1058,
  34113. bottom: 23/1175
  34114. }
  34115. },
  34116. side: {
  34117. height: math.unit(6, "feet"),
  34118. weight: math.unit(190, "lb"),
  34119. name: "Side",
  34120. image: {
  34121. source: "./media/characters/huttser/side.svg",
  34122. extra: 1174/1065,
  34123. bottom: 18/1192
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(6, "feet"),
  34128. weight: math.unit(190, "lb"),
  34129. name: "Back",
  34130. image: {
  34131. source: "./media/characters/huttser/back.svg",
  34132. extra: 1158/1056,
  34133. bottom: 12/1170
  34134. }
  34135. },
  34136. },
  34137. [
  34138. ]
  34139. ))
  34140. characterMakers.push(() => makeCharacter(
  34141. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34142. {
  34143. side: {
  34144. height: math.unit(12 + 9/12, "feet"),
  34145. weight: math.unit(15000, "lb"),
  34146. name: "Side",
  34147. image: {
  34148. source: "./media/characters/faan/side.svg",
  34149. extra: 2747/2697,
  34150. bottom: 0/2747
  34151. }
  34152. },
  34153. front: {
  34154. height: math.unit(12 + 9/12, "feet"),
  34155. weight: math.unit(15000, "lb"),
  34156. name: "Front",
  34157. image: {
  34158. source: "./media/characters/faan/front.svg",
  34159. extra: 607/571,
  34160. bottom: 24/631
  34161. }
  34162. },
  34163. head: {
  34164. height: math.unit(2.85, "feet"),
  34165. name: "Head",
  34166. image: {
  34167. source: "./media/characters/faan/head.svg"
  34168. }
  34169. },
  34170. headAlt: {
  34171. height: math.unit(3.13, "feet"),
  34172. name: "Head-alt",
  34173. image: {
  34174. source: "./media/characters/faan/head-alt.svg"
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Normal",
  34181. height: math.unit(12 + 9/12, "feet"),
  34182. default: true
  34183. },
  34184. ]
  34185. ))
  34186. characterMakers.push(() => makeCharacter(
  34187. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34188. {
  34189. front: {
  34190. height: math.unit(6, "feet"),
  34191. weight: math.unit(300, "lb"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/tanio/front.svg",
  34195. extra: 711/673,
  34196. bottom: 25/736
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(6, "feet"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(3, "inches"),
  34213. name: "Front",
  34214. image: {
  34215. source: "./media/characters/noboru/front.svg",
  34216. extra: 1039/932,
  34217. bottom: 18/1057
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Micro",
  34224. height: math.unit(3, "inches"),
  34225. default: true
  34226. },
  34227. ]
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34231. {
  34232. front: {
  34233. height: math.unit(1.85, "meters"),
  34234. weight: math.unit(80, "kg"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/daniel-barrett/front.svg",
  34238. extra: 355/337,
  34239. bottom: 9/364
  34240. }
  34241. },
  34242. },
  34243. [
  34244. {
  34245. name: "Pico",
  34246. height: math.unit(0.0433, "mm")
  34247. },
  34248. {
  34249. name: "Nano",
  34250. height: math.unit(1.5, "mm")
  34251. },
  34252. {
  34253. name: "Micro",
  34254. height: math.unit(5.3, "cm"),
  34255. default: true
  34256. },
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(1.85, "meters")
  34260. },
  34261. {
  34262. name: "Macro",
  34263. height: math.unit(64.7, "meters")
  34264. },
  34265. {
  34266. name: "Megamacro",
  34267. height: math.unit(2.26, "km")
  34268. },
  34269. {
  34270. name: "Gigamacro",
  34271. height: math.unit(79, "km")
  34272. },
  34273. {
  34274. name: "Teramacro",
  34275. height: math.unit(2765, "km")
  34276. },
  34277. {
  34278. name: "Petamacro",
  34279. height: math.unit(96678, "km")
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34285. {
  34286. front: {
  34287. height: math.unit(30, "meters"),
  34288. weight: math.unit(400, "tons"),
  34289. name: "Front",
  34290. image: {
  34291. source: "./media/characters/zeel/front.svg",
  34292. extra: 2599/2599,
  34293. bottom: 226/2825
  34294. }
  34295. },
  34296. },
  34297. [
  34298. {
  34299. name: "Macro",
  34300. height: math.unit(30, "meters"),
  34301. default: true
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34307. {
  34308. front: {
  34309. height: math.unit(6 + 7/12, "feet"),
  34310. weight: math.unit(210, "lb"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/tarn/front.svg",
  34314. extra: 3517/3220,
  34315. bottom: 91/3608
  34316. }
  34317. },
  34318. back: {
  34319. height: math.unit(6 + 7/12, "feet"),
  34320. weight: math.unit(210, "lb"),
  34321. name: "Back",
  34322. image: {
  34323. source: "./media/characters/tarn/back.svg",
  34324. extra: 3566/3241,
  34325. bottom: 34/3600
  34326. }
  34327. },
  34328. dick: {
  34329. height: math.unit(1.65, "feet"),
  34330. name: "Dick",
  34331. image: {
  34332. source: "./media/characters/tarn/dick.svg"
  34333. }
  34334. },
  34335. paw: {
  34336. height: math.unit(1.80, "feet"),
  34337. name: "Paw",
  34338. image: {
  34339. source: "./media/characters/tarn/paw.svg"
  34340. }
  34341. },
  34342. tongue: {
  34343. height: math.unit(0.97, "feet"),
  34344. name: "Tongue",
  34345. image: {
  34346. source: "./media/characters/tarn/tongue.svg"
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Micro",
  34353. height: math.unit(4, "inches")
  34354. },
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(6 + 7/12, "feet"),
  34358. default: true
  34359. },
  34360. {
  34361. name: "Macro",
  34362. height: math.unit(300, "feet")
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(5 + 7/12, "feet"),
  34371. weight: math.unit(80, "kg"),
  34372. name: "Front",
  34373. image: {
  34374. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34375. extra: 3023/2865,
  34376. bottom: 33/3056
  34377. }
  34378. },
  34379. back: {
  34380. height: math.unit(5 + 7/12, "feet"),
  34381. weight: math.unit(80, "kg"),
  34382. name: "Back",
  34383. image: {
  34384. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34385. extra: 3020/2886,
  34386. bottom: 30/3050
  34387. }
  34388. },
  34389. dick: {
  34390. height: math.unit(0.98, "feet"),
  34391. name: "Dick",
  34392. image: {
  34393. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34394. }
  34395. },
  34396. anatomy: {
  34397. height: math.unit(2.86, "feet"),
  34398. name: "Anatomy",
  34399. image: {
  34400. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Really Small",
  34407. height: math.unit(2, "inches")
  34408. },
  34409. {
  34410. name: "Micro",
  34411. height: math.unit(5.583, "inches")
  34412. },
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(5 + 7/12, "feet"),
  34416. default: true
  34417. },
  34418. {
  34419. name: "Macro",
  34420. height: math.unit(67, "feet")
  34421. },
  34422. {
  34423. name: "Megamacro",
  34424. height: math.unit(134, "feet")
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(9, "feet"),
  34433. weight: math.unit(120, "lb"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/sally/front.svg",
  34437. extra: 1506/1349,
  34438. bottom: 66/1572
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(9, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(8, "feet"),
  34455. weight: math.unit(900, "lb"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/owen/front.svg",
  34459. extra: 1761/1657,
  34460. bottom: 74/1835
  34461. }
  34462. },
  34463. side: {
  34464. height: math.unit(8, "feet"),
  34465. weight: math.unit(900, "lb"),
  34466. name: "Side",
  34467. image: {
  34468. source: "./media/characters/owen/side.svg",
  34469. extra: 1797/1734,
  34470. bottom: 30/1827
  34471. }
  34472. },
  34473. back: {
  34474. height: math.unit(8, "feet"),
  34475. weight: math.unit(900, "lb"),
  34476. name: "Back",
  34477. image: {
  34478. source: "./media/characters/owen/back.svg",
  34479. extra: 1796/1706,
  34480. bottom: 59/1855
  34481. }
  34482. },
  34483. maw: {
  34484. height: math.unit(1.76, "feet"),
  34485. name: "Maw",
  34486. image: {
  34487. source: "./media/characters/owen/maw.svg"
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(8, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34501. {
  34502. front: {
  34503. height: math.unit(4, "feet"),
  34504. weight: math.unit(400, "lb"),
  34505. name: "Front",
  34506. image: {
  34507. source: "./media/characters/ryth/front.svg",
  34508. extra: 1920/1748,
  34509. bottom: 42/1962
  34510. }
  34511. },
  34512. back: {
  34513. height: math.unit(4, "feet"),
  34514. weight: math.unit(400, "lb"),
  34515. name: "Back",
  34516. image: {
  34517. source: "./media/characters/ryth/back.svg",
  34518. extra: 1897/1690,
  34519. bottom: 89/1986
  34520. }
  34521. },
  34522. mouth: {
  34523. height: math.unit(1.39, "feet"),
  34524. name: "Mouth",
  34525. image: {
  34526. source: "./media/characters/ryth/mouth.svg"
  34527. }
  34528. },
  34529. tailmaw: {
  34530. height: math.unit(1.23, "feet"),
  34531. name: "Tailmaw",
  34532. image: {
  34533. source: "./media/characters/ryth/tailmaw.svg"
  34534. }
  34535. },
  34536. goia: {
  34537. height: math.unit(4, "meters"),
  34538. weight: math.unit(10800, "lb"),
  34539. name: "Goia",
  34540. image: {
  34541. source: "./media/characters/ryth/goia.svg",
  34542. extra: 745/640,
  34543. bottom: 107/852
  34544. }
  34545. },
  34546. goiaFront: {
  34547. height: math.unit(4, "meters"),
  34548. weight: math.unit(10800, "lb"),
  34549. name: "Goia (Front)",
  34550. image: {
  34551. source: "./media/characters/ryth/goia-front.svg",
  34552. extra: 750/586,
  34553. bottom: 114/864
  34554. }
  34555. },
  34556. goiaMaw: {
  34557. height: math.unit(5.55, "feet"),
  34558. name: "Goia Maw",
  34559. image: {
  34560. source: "./media/characters/ryth/goia-maw.svg"
  34561. }
  34562. },
  34563. goiaForepaw: {
  34564. height: math.unit(3.5, "feet"),
  34565. name: "Goia Forepaw",
  34566. image: {
  34567. source: "./media/characters/ryth/goia-forepaw.svg"
  34568. }
  34569. },
  34570. goiaHindpaw: {
  34571. height: math.unit(5.55, "feet"),
  34572. name: "Goia Hindpaw",
  34573. image: {
  34574. source: "./media/characters/ryth/goia-hindpaw.svg"
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Normal",
  34581. height: math.unit(4, "feet"),
  34582. default: true
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34588. {
  34589. front: {
  34590. height: math.unit(7, "feet"),
  34591. weight: math.unit(180, "lb"),
  34592. name: "Front",
  34593. image: {
  34594. source: "./media/characters/necrolance/front.svg",
  34595. extra: 1062/947,
  34596. bottom: 41/1103
  34597. }
  34598. },
  34599. back: {
  34600. height: math.unit(7, "feet"),
  34601. weight: math.unit(180, "lb"),
  34602. name: "Back",
  34603. image: {
  34604. source: "./media/characters/necrolance/back.svg",
  34605. extra: 1045/984,
  34606. bottom: 14/1059
  34607. }
  34608. },
  34609. wing: {
  34610. height: math.unit(2.67, "feet"),
  34611. name: "Wing",
  34612. image: {
  34613. source: "./media/characters/necrolance/wing.svg"
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(7, "feet"),
  34621. default: true
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34627. {
  34628. front: {
  34629. height: math.unit(76, "meters"),
  34630. weight: math.unit(30000, "tons"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/tyler/front.svg",
  34634. extra: 1640/1640,
  34635. bottom: 114/1754
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Macro",
  34642. height: math.unit(76, "meters"),
  34643. default: true
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(4 + 11/12, "feet"),
  34652. weight: math.unit(132, "lb"),
  34653. name: "Front",
  34654. image: {
  34655. source: "./media/characters/icey/front.svg",
  34656. extra: 2750/2550,
  34657. bottom: 33/2783
  34658. }
  34659. },
  34660. back: {
  34661. height: math.unit(4 + 11/12, "feet"),
  34662. weight: math.unit(132, "lb"),
  34663. name: "Back",
  34664. image: {
  34665. source: "./media/characters/icey/back.svg",
  34666. extra: 2624/2481,
  34667. bottom: 35/2659
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(4 + 11/12, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(100, "feet"),
  34684. weight: math.unit(0, "lb"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/smile/front.svg",
  34688. extra: 2983/2912,
  34689. bottom: 162/3145
  34690. }
  34691. },
  34692. back: {
  34693. height: math.unit(100, "feet"),
  34694. weight: math.unit(0, "lb"),
  34695. name: "Back",
  34696. image: {
  34697. source: "./media/characters/smile/back.svg",
  34698. extra: 3143/3031,
  34699. bottom: 91/3234
  34700. }
  34701. },
  34702. head: {
  34703. height: math.unit(26.3, "feet"),
  34704. weight: math.unit(0, "lb"),
  34705. name: "Head",
  34706. image: {
  34707. source: "./media/characters/smile/head.svg"
  34708. }
  34709. },
  34710. collar: {
  34711. height: math.unit(5.3, "feet"),
  34712. weight: math.unit(0, "lb"),
  34713. name: "Collar",
  34714. image: {
  34715. source: "./media/characters/smile/collar.svg"
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Macro",
  34722. height: math.unit(100, "feet"),
  34723. default: true
  34724. },
  34725. ]
  34726. ))
  34727. characterMakers.push(() => makeCharacter(
  34728. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34729. {
  34730. dragon: {
  34731. height: math.unit(26, "feet"),
  34732. weight: math.unit(36, "tons"),
  34733. name: "Dragon",
  34734. image: {
  34735. source: "./media/characters/arimphae/dragon.svg",
  34736. extra: 1574/983,
  34737. bottom: 357/1931
  34738. }
  34739. },
  34740. drake: {
  34741. height: math.unit(9, "feet"),
  34742. weight: math.unit(1.5, "tons"),
  34743. name: "Drake",
  34744. image: {
  34745. source: "./media/characters/arimphae/drake.svg",
  34746. extra: 1120/925,
  34747. bottom: 435/1555
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Small",
  34754. height: math.unit(26*5/9, "feet")
  34755. },
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(26, "feet"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(8 + 9/12, "feet"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/xander/front.svg",
  34771. extra: 1237/974,
  34772. bottom: 94/1331
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(8 + 9/12, "feet"),
  34780. default: true
  34781. },
  34782. {
  34783. name: "Gaze Grabber",
  34784. height: math.unit(13 + 8/12, "feet")
  34785. },
  34786. {
  34787. name: "Jaw Dropper",
  34788. height: math.unit(27, "feet")
  34789. },
  34790. {
  34791. name: "Show Stopper",
  34792. height: math.unit(136, "feet")
  34793. },
  34794. {
  34795. name: "Superstar",
  34796. height: math.unit(1.9e6, "miles")
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34802. {
  34803. side: {
  34804. height: math.unit(2100, "feet"),
  34805. name: "Side",
  34806. image: {
  34807. source: "./media/characters/osiris/side.svg",
  34808. extra: 1105/939,
  34809. bottom: 167/1272
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Macro",
  34816. height: math.unit(2100, "feet"),
  34817. default: true
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(6 + 8/12, "feet"),
  34826. weight: math.unit(225, "lb"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/rhys-londe/front.svg",
  34830. extra: 2258/2141,
  34831. bottom: 188/2446
  34832. }
  34833. },
  34834. back: {
  34835. height: math.unit(6 + 8/12, "feet"),
  34836. weight: math.unit(225, "lb"),
  34837. name: "Back",
  34838. image: {
  34839. source: "./media/characters/rhys-londe/back.svg",
  34840. extra: 2237/2137,
  34841. bottom: 63/2300
  34842. }
  34843. },
  34844. frontNsfw: {
  34845. height: math.unit(6 + 8/12, "feet"),
  34846. weight: math.unit(225, "lb"),
  34847. name: "Front (NSFW)",
  34848. image: {
  34849. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34850. extra: 2258/2141,
  34851. bottom: 188/2446
  34852. }
  34853. },
  34854. backNsfw: {
  34855. height: math.unit(6 + 8/12, "feet"),
  34856. weight: math.unit(225, "lb"),
  34857. name: "Back (NSFW)",
  34858. image: {
  34859. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34860. extra: 2237/2137,
  34861. bottom: 63/2300
  34862. }
  34863. },
  34864. dick: {
  34865. height: math.unit(30, "inches"),
  34866. name: "Dick",
  34867. image: {
  34868. source: "./media/characters/rhys-londe/dick.svg"
  34869. }
  34870. },
  34871. maw: {
  34872. height: math.unit(1.6, "feet"),
  34873. name: "Maw",
  34874. image: {
  34875. source: "./media/characters/rhys-londe/maw.svg"
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(6 + 8/12, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34889. {
  34890. front: {
  34891. height: math.unit(3 + 10/12, "feet"),
  34892. weight: math.unit(90, "lb"),
  34893. name: "Front",
  34894. image: {
  34895. source: "./media/characters/taivas-ensim/front.svg",
  34896. extra: 1327/1216,
  34897. bottom: 96/1423
  34898. }
  34899. },
  34900. back: {
  34901. height: math.unit(3 + 10/12, "feet"),
  34902. weight: math.unit(90, "lb"),
  34903. name: "Back",
  34904. image: {
  34905. source: "./media/characters/taivas-ensim/back.svg",
  34906. extra: 1355/1247,
  34907. bottom: 11/1366
  34908. }
  34909. },
  34910. frontNsfw: {
  34911. height: math.unit(3 + 10/12, "feet"),
  34912. weight: math.unit(90, "lb"),
  34913. name: "Front (NSFW)",
  34914. image: {
  34915. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34916. extra: 1327/1216,
  34917. bottom: 96/1423
  34918. }
  34919. },
  34920. backNsfw: {
  34921. height: math.unit(3 + 10/12, "feet"),
  34922. weight: math.unit(90, "lb"),
  34923. name: "Back (NSFW)",
  34924. image: {
  34925. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34926. extra: 1355/1247,
  34927. bottom: 11/1366
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(3 + 10/12, "feet"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(9 + 6/12, "feet"),
  34944. weight: math.unit(940, "lb"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/byliss/front.svg",
  34948. extra: 1327/1290,
  34949. bottom: 82/1409
  34950. }
  34951. },
  34952. back: {
  34953. height: math.unit(9 + 6/12, "feet"),
  34954. weight: math.unit(940, "lb"),
  34955. name: "Back",
  34956. image: {
  34957. source: "./media/characters/byliss/back.svg",
  34958. extra: 1376/1349,
  34959. bottom: 9/1385
  34960. }
  34961. },
  34962. frontNsfw: {
  34963. height: math.unit(9 + 6/12, "feet"),
  34964. weight: math.unit(940, "lb"),
  34965. name: "Front (NSFW)",
  34966. image: {
  34967. source: "./media/characters/byliss/front-nsfw.svg",
  34968. extra: 1327/1290,
  34969. bottom: 82/1409
  34970. }
  34971. },
  34972. backNsfw: {
  34973. height: math.unit(9 + 6/12, "feet"),
  34974. weight: math.unit(940, "lb"),
  34975. name: "Back (NSFW)",
  34976. image: {
  34977. source: "./media/characters/byliss/back-nsfw.svg",
  34978. extra: 1376/1349,
  34979. bottom: 9/1385
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(9 + 6/12, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(5 + 2/12, "feet"),
  34996. weight: math.unit(200, "lb"),
  34997. name: "Front",
  34998. image: {
  34999. source: "./media/characters/noraly/front.svg",
  35000. extra: 4985/4773,
  35001. bottom: 150/5135
  35002. }
  35003. },
  35004. full: {
  35005. height: math.unit(5 + 2/12, "feet"),
  35006. weight: math.unit(164, "lb"),
  35007. name: "Full",
  35008. image: {
  35009. source: "./media/characters/noraly/full.svg",
  35010. extra: 1114/1059,
  35011. bottom: 35/1149
  35012. }
  35013. },
  35014. fuller: {
  35015. height: math.unit(5 + 2/12, "feet"),
  35016. weight: math.unit(230, "lb"),
  35017. name: "Fuller",
  35018. image: {
  35019. source: "./media/characters/noraly/fuller.svg",
  35020. extra: 1114/1059,
  35021. bottom: 35/1149
  35022. }
  35023. },
  35024. fullest: {
  35025. height: math.unit(5 + 2/12, "feet"),
  35026. weight: math.unit(300, "lb"),
  35027. name: "Fullest",
  35028. image: {
  35029. source: "./media/characters/noraly/fullest.svg",
  35030. extra: 1114/1059,
  35031. bottom: 35/1149
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(5 + 2/12, "feet"),
  35039. default: true
  35040. },
  35041. ]
  35042. ))
  35043. characterMakers.push(() => makeCharacter(
  35044. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35045. {
  35046. front: {
  35047. height: math.unit(5 + 2/12, "feet"),
  35048. weight: math.unit(210, "lb"),
  35049. name: "Front",
  35050. image: {
  35051. source: "./media/characters/pera/front.svg",
  35052. extra: 1560/1531,
  35053. bottom: 165/1725
  35054. }
  35055. },
  35056. back: {
  35057. height: math.unit(5 + 2/12, "feet"),
  35058. weight: math.unit(210, "lb"),
  35059. name: "Back",
  35060. image: {
  35061. source: "./media/characters/pera/back.svg",
  35062. extra: 1523/1493,
  35063. bottom: 152/1675
  35064. }
  35065. },
  35066. dick: {
  35067. height: math.unit(2.4, "feet"),
  35068. name: "Dick",
  35069. image: {
  35070. source: "./media/characters/pera/dick.svg"
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(5 + 2/12, "feet"),
  35078. default: true
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(12, "feet"),
  35087. weight: math.unit(3200, "lb"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/julian/front.svg",
  35091. extra: 2962/2701,
  35092. bottom: 184/3146
  35093. }
  35094. },
  35095. maw: {
  35096. height: math.unit(5.35, "feet"),
  35097. name: "Maw",
  35098. image: {
  35099. source: "./media/characters/julian/maw.svg"
  35100. }
  35101. },
  35102. paw: {
  35103. height: math.unit(3.07, "feet"),
  35104. name: "Paw",
  35105. image: {
  35106. source: "./media/characters/julian/paw.svg"
  35107. }
  35108. },
  35109. },
  35110. [
  35111. {
  35112. name: "Default",
  35113. height: math.unit(12, "feet"),
  35114. default: true
  35115. },
  35116. {
  35117. name: "Big",
  35118. height: math.unit(50, "feet")
  35119. },
  35120. {
  35121. name: "Really Big",
  35122. height: math.unit(1, "mile")
  35123. },
  35124. {
  35125. name: "Extremely Big",
  35126. height: math.unit(100, "miles")
  35127. },
  35128. {
  35129. name: "Planet Hugger",
  35130. height: math.unit(200, "megameters")
  35131. },
  35132. {
  35133. name: "Unreasonably Big",
  35134. height: math.unit(1e300, "meters")
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35140. {
  35141. solgooleo: {
  35142. height: math.unit(4, "meters"),
  35143. weight: math.unit(6000*1.5, "kg"),
  35144. volume: math.unit(6000, "liters"),
  35145. name: "Solgooleo",
  35146. image: {
  35147. source: "./media/characters/pi/solgooleo.svg",
  35148. extra: 388/331,
  35149. bottom: 29/417
  35150. }
  35151. },
  35152. },
  35153. [
  35154. {
  35155. name: "Normal",
  35156. height: math.unit(4, "meters"),
  35157. default: true
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35163. {
  35164. front: {
  35165. height: math.unit(8, "feet"),
  35166. weight: math.unit(4, "tons"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/shaun/front.svg",
  35170. extra: 503/495,
  35171. bottom: 20/523
  35172. }
  35173. },
  35174. back: {
  35175. height: math.unit(8, "feet"),
  35176. weight: math.unit(4, "tons"),
  35177. name: "Back",
  35178. image: {
  35179. source: "./media/characters/shaun/back.svg",
  35180. extra: 487/480,
  35181. bottom: 20/507
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Lorg",
  35188. height: math.unit(8, "feet"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35195. {
  35196. frontAnthro: {
  35197. height: math.unit(7, "feet"),
  35198. name: "Front",
  35199. image: {
  35200. source: "./media/characters/sini/front-anthro.svg",
  35201. extra: 726/678,
  35202. bottom: 35/761
  35203. },
  35204. form: "anthro",
  35205. default: true
  35206. },
  35207. backAnthro: {
  35208. height: math.unit(7, "feet"),
  35209. name: "Back",
  35210. image: {
  35211. source: "./media/characters/sini/back-anthro.svg",
  35212. extra: 743/701,
  35213. bottom: 12/755
  35214. },
  35215. form: "anthro",
  35216. },
  35217. frontAnthroNsfw: {
  35218. height: math.unit(7, "feet"),
  35219. name: "Front (NSFW)",
  35220. image: {
  35221. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35222. extra: 726/678,
  35223. bottom: 35/761
  35224. },
  35225. form: "anthro"
  35226. },
  35227. backAnthroNsfw: {
  35228. height: math.unit(7, "feet"),
  35229. name: "Back (NSFW)",
  35230. image: {
  35231. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35232. extra: 743/701,
  35233. bottom: 12/755
  35234. },
  35235. form: "anthro",
  35236. },
  35237. mawAnthro: {
  35238. height: math.unit(2.14, "feet"),
  35239. name: "Maw",
  35240. image: {
  35241. source: "./media/characters/sini/maw-anthro.svg"
  35242. },
  35243. form: "anthro"
  35244. },
  35245. dick: {
  35246. height: math.unit(1.45, "feet"),
  35247. name: "Dick",
  35248. image: {
  35249. source: "./media/characters/sini/dick-anthro.svg"
  35250. },
  35251. form: "anthro"
  35252. },
  35253. feral: {
  35254. height: math.unit(16, "feet"),
  35255. name: "Feral",
  35256. image: {
  35257. source: "./media/characters/sini/feral.svg",
  35258. extra: 814/605,
  35259. bottom: 11/825
  35260. },
  35261. form: "feral",
  35262. default: true
  35263. },
  35264. feralNsfw: {
  35265. height: math.unit(16, "feet"),
  35266. name: "Feral (NSFW)",
  35267. image: {
  35268. source: "./media/characters/sini/feral-nsfw.svg",
  35269. extra: 814/605,
  35270. bottom: 11/825
  35271. },
  35272. form: "feral"
  35273. },
  35274. mawFeral: {
  35275. height: math.unit(5.66, "feet"),
  35276. name: "Maw",
  35277. image: {
  35278. source: "./media/characters/sini/maw-feral.svg"
  35279. },
  35280. form: "feral",
  35281. },
  35282. pawFeral: {
  35283. height: math.unit(5.17, "feet"),
  35284. name: "Paw",
  35285. image: {
  35286. source: "./media/characters/sini/paw-feral.svg"
  35287. },
  35288. form: "feral",
  35289. },
  35290. rumpFeral: {
  35291. height: math.unit(13.11, "feet"),
  35292. name: "Rump",
  35293. image: {
  35294. source: "./media/characters/sini/rump-feral.svg"
  35295. },
  35296. form: "feral",
  35297. },
  35298. dickFeral: {
  35299. height: math.unit(1, "feet"),
  35300. name: "Dick",
  35301. image: {
  35302. source: "./media/characters/sini/dick-feral.svg"
  35303. },
  35304. form: "feral",
  35305. },
  35306. eyeFeral: {
  35307. height: math.unit(1.23, "feet"),
  35308. name: "Eye",
  35309. image: {
  35310. source: "./media/characters/sini/eye-feral.svg"
  35311. },
  35312. form: "feral",
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(7, "feet"),
  35319. default: true,
  35320. form: "anthro"
  35321. },
  35322. {
  35323. name: "Normal",
  35324. height: math.unit(16, "feet"),
  35325. default: true,
  35326. form: "feral"
  35327. },
  35328. ],
  35329. {
  35330. "anthro": {
  35331. name: "Anthro",
  35332. default: true
  35333. },
  35334. "feral": {
  35335. name: "Feral",
  35336. }
  35337. }
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35341. {
  35342. side: {
  35343. height: math.unit(47.2, "meters"),
  35344. weight: math.unit(10000, "tons"),
  35345. name: "Side",
  35346. image: {
  35347. source: "./media/characters/raylldo/side.svg",
  35348. extra: 2363/642,
  35349. bottom: 221/2584
  35350. }
  35351. },
  35352. top: {
  35353. height: math.unit(240, "meters"),
  35354. weight: math.unit(10000, "tons"),
  35355. name: "Top",
  35356. image: {
  35357. source: "./media/characters/raylldo/top.svg"
  35358. }
  35359. },
  35360. bottom: {
  35361. height: math.unit(240, "meters"),
  35362. weight: math.unit(10000, "tons"),
  35363. name: "Bottom",
  35364. image: {
  35365. source: "./media/characters/raylldo/bottom.svg"
  35366. }
  35367. },
  35368. head: {
  35369. height: math.unit(38.6, "meters"),
  35370. name: "Head",
  35371. image: {
  35372. source: "./media/characters/raylldo/head.svg",
  35373. extra: 1335/1112,
  35374. bottom: 0/1335
  35375. }
  35376. },
  35377. maw: {
  35378. height: math.unit(16.37, "meters"),
  35379. name: "Maw",
  35380. image: {
  35381. source: "./media/characters/raylldo/maw.svg",
  35382. extra: 883/660,
  35383. bottom: 0/883
  35384. },
  35385. extraAttributes: {
  35386. preyCapacity: {
  35387. name: "Capacity",
  35388. power: 3,
  35389. type: "volume",
  35390. base: math.unit(1000, "people")
  35391. },
  35392. tongueSize: {
  35393. name: "Tongue Size",
  35394. power: 2,
  35395. type: "area",
  35396. base: math.unit(21, "m^2")
  35397. }
  35398. }
  35399. },
  35400. forepaw: {
  35401. height: math.unit(18, "meters"),
  35402. name: "Forepaw",
  35403. image: {
  35404. source: "./media/characters/raylldo/forepaw.svg"
  35405. }
  35406. },
  35407. hindpaw: {
  35408. height: math.unit(23, "meters"),
  35409. name: "Hindpaw",
  35410. image: {
  35411. source: "./media/characters/raylldo/hindpaw.svg"
  35412. }
  35413. },
  35414. genitals: {
  35415. height: math.unit(42, "meters"),
  35416. name: "Genitals",
  35417. image: {
  35418. source: "./media/characters/raylldo/genitals.svg"
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(47.2, "meters"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35432. {
  35433. anthroFront: {
  35434. height: math.unit(9, "feet"),
  35435. weight: math.unit(600, "lb"),
  35436. name: "Anthro (Front)",
  35437. image: {
  35438. source: "./media/characters/glint/anthro-front.svg",
  35439. extra: 1097/1018,
  35440. bottom: 28/1125
  35441. }
  35442. },
  35443. anthroBack: {
  35444. height: math.unit(9, "feet"),
  35445. weight: math.unit(600, "lb"),
  35446. name: "Anthro (Back)",
  35447. image: {
  35448. source: "./media/characters/glint/anthro-back.svg",
  35449. extra: 1154/997,
  35450. bottom: 36/1190
  35451. }
  35452. },
  35453. feral: {
  35454. height: math.unit(11, "feet"),
  35455. weight: math.unit(50000, "lb"),
  35456. name: "Feral",
  35457. image: {
  35458. source: "./media/characters/glint/feral.svg",
  35459. extra: 3035/1585,
  35460. bottom: 1169/4204
  35461. }
  35462. },
  35463. dickAnthro: {
  35464. height: math.unit(0.7, "meters"),
  35465. name: "Dick (Anthro)",
  35466. image: {
  35467. source: "./media/characters/glint/dick-anthro.svg"
  35468. }
  35469. },
  35470. dickFeral: {
  35471. height: math.unit(2.65, "meters"),
  35472. name: "Dick (Feral)",
  35473. image: {
  35474. source: "./media/characters/glint/dick-feral.svg"
  35475. }
  35476. },
  35477. slitHidden: {
  35478. height: math.unit(5.85, "meters"),
  35479. name: "Slit (Hidden)",
  35480. image: {
  35481. source: "./media/characters/glint/slit-hidden.svg"
  35482. }
  35483. },
  35484. slitErect: {
  35485. height: math.unit(5.85, "meters"),
  35486. name: "Slit (Erect)",
  35487. image: {
  35488. source: "./media/characters/glint/slit-erect.svg"
  35489. }
  35490. },
  35491. mawAnthro: {
  35492. height: math.unit(0.63, "meters"),
  35493. name: "Maw (Anthro)",
  35494. image: {
  35495. source: "./media/characters/glint/maw.svg"
  35496. }
  35497. },
  35498. mawFeral: {
  35499. height: math.unit(2.89, "meters"),
  35500. name: "Maw (Feral)",
  35501. image: {
  35502. source: "./media/characters/glint/maw.svg"
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(9, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35516. {
  35517. side: {
  35518. height: math.unit(15, "feet"),
  35519. weight: math.unit(5000, "kg"),
  35520. name: "Side",
  35521. image: {
  35522. source: "./media/characters/kairne/side.svg",
  35523. extra: 979/811,
  35524. bottom: 13/992
  35525. }
  35526. },
  35527. front: {
  35528. height: math.unit(15, "feet"),
  35529. weight: math.unit(5000, "kg"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/kairne/front.svg",
  35533. extra: 908/814,
  35534. bottom: 26/934
  35535. }
  35536. },
  35537. sideNsfw: {
  35538. height: math.unit(15, "feet"),
  35539. weight: math.unit(5000, "kg"),
  35540. name: "Side (NSFW)",
  35541. image: {
  35542. source: "./media/characters/kairne/side-nsfw.svg",
  35543. extra: 979/811,
  35544. bottom: 13/992
  35545. }
  35546. },
  35547. frontNsfw: {
  35548. height: math.unit(15, "feet"),
  35549. weight: math.unit(5000, "kg"),
  35550. name: "Front (NSFW)",
  35551. image: {
  35552. source: "./media/characters/kairne/front-nsfw.svg",
  35553. extra: 908/814,
  35554. bottom: 26/934
  35555. }
  35556. },
  35557. dickCaged: {
  35558. height: math.unit(0.65, "meters"),
  35559. name: "Dick-caged",
  35560. image: {
  35561. source: "./media/characters/kairne/dick-caged.svg"
  35562. }
  35563. },
  35564. dick: {
  35565. height: math.unit(0.79, "meters"),
  35566. name: "Dick",
  35567. image: {
  35568. source: "./media/characters/kairne/dick.svg"
  35569. }
  35570. },
  35571. genitals: {
  35572. height: math.unit(1.29, "meters"),
  35573. name: "Genitals",
  35574. image: {
  35575. source: "./media/characters/kairne/genitals.svg"
  35576. }
  35577. },
  35578. maw: {
  35579. height: math.unit(1.73, "meters"),
  35580. name: "Maw",
  35581. image: {
  35582. source: "./media/characters/kairne/maw.svg"
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(15, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(5 + 8/12, "feet"),
  35599. weight: math.unit(139, "lb"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/biscuit-jackal/front.svg",
  35603. extra: 2106/1961,
  35604. bottom: 58/2164
  35605. }
  35606. },
  35607. back: {
  35608. height: math.unit(5 + 8/12, "feet"),
  35609. weight: math.unit(139, "lb"),
  35610. name: "Back",
  35611. image: {
  35612. source: "./media/characters/biscuit-jackal/back.svg",
  35613. extra: 2132/1976,
  35614. bottom: 57/2189
  35615. }
  35616. },
  35617. werejackal: {
  35618. height: math.unit(6 + 3/12, "feet"),
  35619. weight: math.unit(188, "lb"),
  35620. name: "Werejackal",
  35621. image: {
  35622. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35623. extra: 2373/2178,
  35624. bottom: 53/2426
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(5 + 8/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(140, "cm"),
  35641. weight: math.unit(45, "kg"),
  35642. name: "Front",
  35643. image: {
  35644. source: "./media/characters/tayra-white/front.svg",
  35645. extra: 2229/2192,
  35646. bottom: 75/2304
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(140, "cm"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(4 + 5/12, "feet"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/scoop/front.svg",
  35666. extra: 1257/1136,
  35667. bottom: 69/1326
  35668. }
  35669. },
  35670. back: {
  35671. height: math.unit(4 + 5/12, "feet"),
  35672. name: "Back",
  35673. image: {
  35674. source: "./media/characters/scoop/back.svg",
  35675. extra: 1321/1152,
  35676. bottom: 32/1353
  35677. }
  35678. },
  35679. maw: {
  35680. height: math.unit(0.68, "feet"),
  35681. name: "Maw",
  35682. image: {
  35683. source: "./media/characters/scoop/maw.svg"
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Really Small",
  35690. height: math.unit(1, "mm")
  35691. },
  35692. {
  35693. name: "Micro",
  35694. height: math.unit(1, "inch")
  35695. },
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(4 + 5/12, "feet"),
  35699. default: true
  35700. },
  35701. {
  35702. name: "Macro",
  35703. height: math.unit(200, "feet")
  35704. },
  35705. {
  35706. name: "Megamacro",
  35707. height: math.unit(3240, "feet")
  35708. },
  35709. {
  35710. name: "Teramacro",
  35711. height: math.unit(2500, "miles")
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(15 + 7/12, "feet"),
  35720. weight: math.unit(1150, "tons"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/saphinara/front.svg",
  35724. extra: 1837/1643,
  35725. bottom: 84/1921
  35726. },
  35727. form: "normal",
  35728. default: true
  35729. },
  35730. side: {
  35731. height: math.unit(15 + 7/12, "feet"),
  35732. weight: math.unit(1150, "tons"),
  35733. name: "Side",
  35734. image: {
  35735. source: "./media/characters/saphinara/side.svg",
  35736. extra: 605/547,
  35737. bottom: 6/611
  35738. },
  35739. form: "normal"
  35740. },
  35741. back: {
  35742. height: math.unit(15 + 7/12, "feet"),
  35743. weight: math.unit(1150, "tons"),
  35744. name: "Back",
  35745. image: {
  35746. source: "./media/characters/saphinara/back.svg",
  35747. extra: 591/531,
  35748. bottom: 13/604
  35749. },
  35750. form: "normal"
  35751. },
  35752. frontTail: {
  35753. height: math.unit(15 + 7/12, "feet"),
  35754. weight: math.unit(1150, "tons"),
  35755. name: "Front (Full Tail)",
  35756. image: {
  35757. source: "./media/characters/saphinara/front-tail.svg",
  35758. extra: 2256/1630,
  35759. bottom: 261/2517
  35760. },
  35761. form: "normal"
  35762. },
  35763. insides: {
  35764. height: math.unit(11.92, "feet"),
  35765. name: "Insides",
  35766. image: {
  35767. source: "./media/characters/saphinara/insides.svg"
  35768. },
  35769. form: "normal"
  35770. },
  35771. head: {
  35772. height: math.unit(4.17, "feet"),
  35773. name: "Head",
  35774. image: {
  35775. source: "./media/characters/saphinara/head.svg"
  35776. },
  35777. form: "normal"
  35778. },
  35779. tongue: {
  35780. height: math.unit(4.60, "feet"),
  35781. name: "Tongue",
  35782. image: {
  35783. source: "./media/characters/saphinara/tongue.svg"
  35784. },
  35785. form: "normal"
  35786. },
  35787. headEnraged: {
  35788. height: math.unit(5.55, "feet"),
  35789. name: "Head (Enraged)",
  35790. image: {
  35791. source: "./media/characters/saphinara/head-enraged.svg"
  35792. },
  35793. form: "normal"
  35794. },
  35795. wings: {
  35796. height: math.unit(11.95, "feet"),
  35797. name: "Wings",
  35798. image: {
  35799. source: "./media/characters/saphinara/wings.svg"
  35800. },
  35801. form: "normal"
  35802. },
  35803. feathers: {
  35804. height: math.unit(8.92, "feet"),
  35805. name: "Feathers",
  35806. image: {
  35807. source: "./media/characters/saphinara/feathers.svg"
  35808. },
  35809. form: "normal"
  35810. },
  35811. shackles: {
  35812. height: math.unit(2, "feet"),
  35813. name: "Shackles",
  35814. image: {
  35815. source: "./media/characters/saphinara/shackles.svg"
  35816. },
  35817. form: "normal"
  35818. },
  35819. eyes: {
  35820. height: math.unit(1.331, "feet"),
  35821. name: "Eyes",
  35822. image: {
  35823. source: "./media/characters/saphinara/eyes.svg"
  35824. },
  35825. form: "normal"
  35826. },
  35827. eyesEnraged: {
  35828. height: math.unit(1.331, "feet"),
  35829. name: "Eyes (Enraged)",
  35830. image: {
  35831. source: "./media/characters/saphinara/eyes-enraged.svg"
  35832. },
  35833. form: "normal"
  35834. },
  35835. trueFormSide: {
  35836. height: math.unit(200, "feet"),
  35837. weight: math.unit(1e7, "tons"),
  35838. name: "Side",
  35839. image: {
  35840. source: "./media/characters/saphinara/true-form-side.svg",
  35841. extra: 1399/770,
  35842. bottom: 97/1496
  35843. },
  35844. form: "true-form",
  35845. default: true
  35846. },
  35847. trueFormMaw: {
  35848. height: math.unit(71.5, "feet"),
  35849. name: "Maw",
  35850. image: {
  35851. source: "./media/characters/saphinara/true-form-maw.svg",
  35852. extra: 2302/1453,
  35853. bottom: 0/2302
  35854. },
  35855. form: "true-form"
  35856. },
  35857. meowberusSide: {
  35858. height: math.unit(75, "feet"),
  35859. weight: math.unit(180000, "kg"),
  35860. preyCapacity: math.unit(50000, "people"),
  35861. name: "Side",
  35862. image: {
  35863. source: "./media/characters/saphinara/meowberus-side.svg",
  35864. extra: 1400/711,
  35865. bottom: 126/1526
  35866. },
  35867. form: "meowberus",
  35868. extraAttributes: {
  35869. "pawArea": {
  35870. name: "Paw Size",
  35871. power: 2,
  35872. type: "area",
  35873. base: math.unit(35, "m^2")
  35874. }
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(15 + 7/12, "feet"),
  35882. default: true,
  35883. form: "normal"
  35884. },
  35885. {
  35886. name: "Angry",
  35887. height: math.unit(30 + 6/12, "feet"),
  35888. form: "normal"
  35889. },
  35890. {
  35891. name: "Enraged",
  35892. height: math.unit(102 + 1/12, "feet"),
  35893. form: "normal"
  35894. },
  35895. {
  35896. name: "True",
  35897. height: math.unit(200, "feet"),
  35898. default: true,
  35899. form: "true-form"
  35900. },
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(75, "feet"),
  35904. default: true,
  35905. form: "meowberus"
  35906. },
  35907. ],
  35908. {
  35909. "normal": {
  35910. name: "Normal",
  35911. default: true
  35912. },
  35913. "true-form": {
  35914. name: "True Form"
  35915. },
  35916. "meowberus": {
  35917. name: "Meowberus",
  35918. },
  35919. }
  35920. ))
  35921. characterMakers.push(() => makeCharacter(
  35922. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35923. {
  35924. front: {
  35925. height: math.unit(6 + 8/12, "feet"),
  35926. weight: math.unit(300, "lb"),
  35927. name: "Front",
  35928. image: {
  35929. source: "./media/characters/jrain/front.svg",
  35930. extra: 3039/2865,
  35931. bottom: 399/3438
  35932. }
  35933. },
  35934. back: {
  35935. height: math.unit(6 + 8/12, "feet"),
  35936. weight: math.unit(300, "lb"),
  35937. name: "Back",
  35938. image: {
  35939. source: "./media/characters/jrain/back.svg",
  35940. extra: 3089/2938,
  35941. bottom: 172/3261
  35942. }
  35943. },
  35944. head: {
  35945. height: math.unit(2.14, "feet"),
  35946. name: "Head",
  35947. image: {
  35948. source: "./media/characters/jrain/head.svg"
  35949. }
  35950. },
  35951. maw: {
  35952. height: math.unit(1.77, "feet"),
  35953. name: "Maw",
  35954. image: {
  35955. source: "./media/characters/jrain/maw.svg"
  35956. }
  35957. },
  35958. leftHand: {
  35959. height: math.unit(1.1, "feet"),
  35960. name: "Left Hand",
  35961. image: {
  35962. source: "./media/characters/jrain/left-hand.svg"
  35963. }
  35964. },
  35965. rightHand: {
  35966. height: math.unit(1.1, "feet"),
  35967. name: "Right Hand",
  35968. image: {
  35969. source: "./media/characters/jrain/right-hand.svg"
  35970. }
  35971. },
  35972. eye: {
  35973. height: math.unit(0.35, "feet"),
  35974. name: "Eye",
  35975. image: {
  35976. source: "./media/characters/jrain/eye.svg"
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Normal",
  35983. height: math.unit(6 + 8/12, "feet"),
  35984. default: true
  35985. },
  35986. {
  35987. name: "Casually Large",
  35988. height: math.unit(25, "feet")
  35989. },
  35990. {
  35991. name: "Giant",
  35992. height: math.unit(100, "feet")
  35993. },
  35994. {
  35995. name: "Kaiju",
  35996. height: math.unit(300, "feet")
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36002. {
  36003. dragon: {
  36004. height: math.unit(5, "meters"),
  36005. name: "Dragon",
  36006. image: {
  36007. source: "./media/characters/sabrina/dragon.svg",
  36008. extra: 3670 / 2365,
  36009. bottom: 333 / 4003
  36010. }
  36011. },
  36012. gryphon: {
  36013. height: math.unit(3, "meters"),
  36014. name: "Gryphon",
  36015. image: {
  36016. source: "./media/characters/sabrina/gryphon.svg",
  36017. extra: 1576 / 945,
  36018. bottom: 71 / 1647
  36019. }
  36020. },
  36021. snake: {
  36022. height: math.unit(12, "meters"),
  36023. name: "Snake",
  36024. image: {
  36025. source: "./media/characters/sabrina/snake.svg",
  36026. extra: 1758 / 1320,
  36027. bottom: 186 / 1944
  36028. }
  36029. },
  36030. collar: {
  36031. height: math.unit(1.86, "meters"),
  36032. name: "Collar",
  36033. image: {
  36034. source: "./media/characters/sabrina/collar.svg"
  36035. }
  36036. },
  36037. eye: {
  36038. height: math.unit(0.53, "meters"),
  36039. name: "Eye",
  36040. image: {
  36041. source: "./media/characters/sabrina/eye.svg"
  36042. }
  36043. },
  36044. foot: {
  36045. height: math.unit(1.86, "meters"),
  36046. name: "Foot",
  36047. image: {
  36048. source: "./media/characters/sabrina/foot.svg"
  36049. }
  36050. },
  36051. hand: {
  36052. height: math.unit(1.32, "meters"),
  36053. name: "Hand",
  36054. image: {
  36055. source: "./media/characters/sabrina/hand.svg"
  36056. }
  36057. },
  36058. head: {
  36059. height: math.unit(2.44, "meters"),
  36060. name: "Head",
  36061. image: {
  36062. source: "./media/characters/sabrina/head.svg"
  36063. }
  36064. },
  36065. headAngry: {
  36066. height: math.unit(2.44, "meters"),
  36067. name: "Head (Angry))",
  36068. image: {
  36069. source: "./media/characters/sabrina/head-angry.svg"
  36070. }
  36071. },
  36072. maw: {
  36073. height: math.unit(1.65, "meters"),
  36074. name: "Maw",
  36075. image: {
  36076. source: "./media/characters/sabrina/maw.svg"
  36077. }
  36078. },
  36079. spikes: {
  36080. height: math.unit(1.69, "meters"),
  36081. name: "Spikes",
  36082. image: {
  36083. source: "./media/characters/sabrina/spikes.svg"
  36084. }
  36085. },
  36086. stomach: {
  36087. height: math.unit(1.15, "meters"),
  36088. name: "Stomach",
  36089. image: {
  36090. source: "./media/characters/sabrina/stomach.svg"
  36091. }
  36092. },
  36093. tongue: {
  36094. height: math.unit(1.27, "meters"),
  36095. name: "Tongue",
  36096. image: {
  36097. source: "./media/characters/sabrina/tongue.svg"
  36098. }
  36099. },
  36100. wingDorsal: {
  36101. height: math.unit(4.85, "meters"),
  36102. name: "Wing (Dorsal)",
  36103. image: {
  36104. source: "./media/characters/sabrina/wing-dorsal.svg"
  36105. }
  36106. },
  36107. wingVentral: {
  36108. height: math.unit(4.85, "meters"),
  36109. name: "Wing (Ventral)",
  36110. image: {
  36111. source: "./media/characters/sabrina/wing-ventral.svg"
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(5, "meters"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36125. {
  36126. frontMaid: {
  36127. height: math.unit(5 + 5/12, "feet"),
  36128. weight: math.unit(130, "lb"),
  36129. name: "Front (Maid)",
  36130. image: {
  36131. source: "./media/characters/midnight-tales/front-maid.svg",
  36132. extra: 489/454,
  36133. bottom: 61/550
  36134. }
  36135. },
  36136. frontFormal: {
  36137. height: math.unit(5 + 5/12, "feet"),
  36138. weight: math.unit(130, "lb"),
  36139. name: "Front (Formal)",
  36140. image: {
  36141. source: "./media/characters/midnight-tales/front-formal.svg",
  36142. extra: 489/454,
  36143. bottom: 61/550
  36144. }
  36145. },
  36146. back: {
  36147. height: math.unit(5 + 5/12, "feet"),
  36148. weight: math.unit(130, "lb"),
  36149. name: "Back",
  36150. image: {
  36151. source: "./media/characters/midnight-tales/back.svg",
  36152. extra: 498/456,
  36153. bottom: 33/531
  36154. }
  36155. },
  36156. frontBeast: {
  36157. height: math.unit(40, "feet"),
  36158. weight: math.unit(64000, "lb"),
  36159. name: "Front (Beast)",
  36160. image: {
  36161. source: "./media/characters/midnight-tales/front-beast.svg",
  36162. extra: 927/860,
  36163. bottom: 53/980
  36164. }
  36165. },
  36166. backBeast: {
  36167. height: math.unit(40, "feet"),
  36168. weight: math.unit(64000, "lb"),
  36169. name: "Back (Beast)",
  36170. image: {
  36171. source: "./media/characters/midnight-tales/back-beast.svg",
  36172. extra: 929/855,
  36173. bottom: 16/945
  36174. }
  36175. },
  36176. footBeast: {
  36177. height: math.unit(6.7, "feet"),
  36178. name: "Foot (Beast)",
  36179. image: {
  36180. source: "./media/characters/midnight-tales/foot-beast.svg"
  36181. }
  36182. },
  36183. headBeast: {
  36184. height: math.unit(8, "feet"),
  36185. name: "Head (Beast)",
  36186. image: {
  36187. source: "./media/characters/midnight-tales/head-beast.svg"
  36188. }
  36189. },
  36190. },
  36191. [
  36192. {
  36193. name: "Normal",
  36194. height: math.unit(5 + 5 / 12, "feet"),
  36195. default: true
  36196. },
  36197. {
  36198. name: "Macro",
  36199. height: math.unit(25, "feet")
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36205. {
  36206. front: {
  36207. height: math.unit(5 + 10/12, "feet"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/argon/front.svg",
  36211. extra: 2009/1935,
  36212. bottom: 118/2127
  36213. }
  36214. },
  36215. back: {
  36216. height: math.unit(5 + 10/12, "feet"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/argon/back.svg",
  36220. extra: 2047/1992,
  36221. bottom: 20/2067
  36222. }
  36223. },
  36224. frontDressed: {
  36225. height: math.unit(5 + 10/12, "feet"),
  36226. name: "Front (Dressed)",
  36227. image: {
  36228. source: "./media/characters/argon/front-dressed.svg",
  36229. extra: 2009/1935,
  36230. bottom: 118/2127
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(5 + 10/12, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(8 + 6/12, "feet"),
  36247. weight: math.unit(1150, "lb"),
  36248. name: "Front",
  36249. image: {
  36250. source: "./media/characters/kichi/front.svg",
  36251. extra: 1267/1164,
  36252. bottom: 61/1328
  36253. }
  36254. },
  36255. back: {
  36256. height: math.unit(8 + 6/12, "feet"),
  36257. weight: math.unit(1150, "lb"),
  36258. name: "Back",
  36259. image: {
  36260. source: "./media/characters/kichi/back.svg",
  36261. extra: 1273/1166,
  36262. bottom: 33/1306
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(8 + 6/12, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36276. {
  36277. front: {
  36278. height: math.unit(6, "feet"),
  36279. weight: math.unit(210, "lb"),
  36280. name: "Front",
  36281. image: {
  36282. source: "./media/characters/manetel-greyscale/front.svg",
  36283. extra: 350/312,
  36284. bottom: 8/358
  36285. }
  36286. },
  36287. },
  36288. [
  36289. {
  36290. name: "Micro",
  36291. height: math.unit(2, "inches")
  36292. },
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(6, "feet"),
  36296. default: true
  36297. },
  36298. {
  36299. name: "Minimacro",
  36300. height: math.unit(17, "feet")
  36301. },
  36302. {
  36303. name: "Macro",
  36304. height: math.unit(117, "feet")
  36305. },
  36306. ]
  36307. ))
  36308. characterMakers.push(() => makeCharacter(
  36309. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36310. {
  36311. side: {
  36312. height: math.unit(5 + 1/12, "feet"),
  36313. weight: math.unit(418, "lb"),
  36314. name: "Side",
  36315. image: {
  36316. source: "./media/characters/softpurr/side.svg",
  36317. extra: 1993/1945,
  36318. bottom: 134/2127
  36319. }
  36320. },
  36321. front: {
  36322. height: math.unit(5 + 1/12, "feet"),
  36323. weight: math.unit(418, "lb"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/softpurr/front.svg",
  36327. extra: 1950/1856,
  36328. bottom: 174/2124
  36329. }
  36330. },
  36331. paw: {
  36332. height: math.unit(1, "feet"),
  36333. name: "Paw",
  36334. image: {
  36335. source: "./media/characters/softpurr/paw.svg"
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(5 + 1/12, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(260, "meters"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/anahita/front.svg",
  36355. extra: 665/635,
  36356. bottom: 89/754
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Macro",
  36363. height: math.unit(260, "meters"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(4 + 10/12, "feet"),
  36373. weight: math.unit(160, "lb"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/chip-mouse/front.svg",
  36377. extra: 3528/3408,
  36378. bottom: 0/3528
  36379. }
  36380. },
  36381. frontNsfw: {
  36382. height: math.unit(4 + 10/12, "feet"),
  36383. weight: math.unit(160, "lb"),
  36384. name: "Front (NSFW)",
  36385. image: {
  36386. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36387. extra: 3528/3408,
  36388. bottom: 0/3528
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(4 + 10/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36402. {
  36403. side: {
  36404. height: math.unit(10, "feet"),
  36405. weight: math.unit(14000, "lb"),
  36406. name: "Side",
  36407. image: {
  36408. source: "./media/characters/kremm/side.svg",
  36409. extra: 1390/1053,
  36410. bottom: 90/1480
  36411. }
  36412. },
  36413. gut: {
  36414. height: math.unit(5.8, "feet"),
  36415. name: "Gut",
  36416. image: {
  36417. source: "./media/characters/kremm/gut.svg"
  36418. }
  36419. },
  36420. ass: {
  36421. height: math.unit(6.1, "feet"),
  36422. name: "Ass",
  36423. image: {
  36424. source: "./media/characters/kremm/ass.svg"
  36425. }
  36426. },
  36427. jaws: {
  36428. height: math.unit(2.2, "feet"),
  36429. name: "Jaws",
  36430. image: {
  36431. source: "./media/characters/kremm/jaws.svg"
  36432. }
  36433. },
  36434. dick: {
  36435. height: math.unit(4.26, "feet"),
  36436. name: "Dick",
  36437. image: {
  36438. source: "./media/characters/kremm/dick.svg"
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(10, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(30, "stories"),
  36455. name: "Front",
  36456. image: {
  36457. source: "./media/characters/kai/front.svg",
  36458. extra: 1892/1718,
  36459. bottom: 162/2054
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Macro",
  36466. height: math.unit(30, "stories"),
  36467. default: true
  36468. },
  36469. ]
  36470. ))
  36471. characterMakers.push(() => makeCharacter(
  36472. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36473. {
  36474. front: {
  36475. height: math.unit(6 + 4/12, "feet"),
  36476. weight: math.unit(145, "lb"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/sykes/front.svg",
  36480. extra: 1321 / 1187,
  36481. bottom: 66 / 1387
  36482. }
  36483. },
  36484. back: {
  36485. height: math.unit(6 + 4/12, "feet"),
  36486. weight: math.unit(145, "lb"),
  36487. name: "Back",
  36488. image: {
  36489. source: "./media/characters/sykes/back.svg",
  36490. extra: 1326/1181,
  36491. bottom: 31/1357
  36492. }
  36493. },
  36494. traditionalOutfit: {
  36495. height: math.unit(6 + 4/12, "feet"),
  36496. weight: math.unit(145, "lb"),
  36497. name: "Traditional Outfit",
  36498. image: {
  36499. source: "./media/characters/sykes/traditional-outfit.svg",
  36500. extra: 1321 / 1187,
  36501. bottom: 66 / 1387
  36502. }
  36503. },
  36504. adventureOutfit: {
  36505. height: math.unit(6 + 4/12, "feet"),
  36506. weight: math.unit(145, "lb"),
  36507. name: "Adventure Outfit",
  36508. image: {
  36509. source: "./media/characters/sykes/adventure-outfit.svg",
  36510. extra: 1321 / 1187,
  36511. bottom: 66 / 1387
  36512. }
  36513. },
  36514. handLeft: {
  36515. height: math.unit(0.9, "feet"),
  36516. name: "Hand (Left)",
  36517. image: {
  36518. source: "./media/characters/sykes/hand-left.svg"
  36519. }
  36520. },
  36521. handRight: {
  36522. height: math.unit(0.839, "feet"),
  36523. name: "Hand (Right)",
  36524. image: {
  36525. source: "./media/characters/sykes/hand-right.svg"
  36526. }
  36527. },
  36528. leftFoot: {
  36529. height: math.unit(1.2, "feet"),
  36530. name: "Foot (Left)",
  36531. image: {
  36532. source: "./media/characters/sykes/foot-left.svg"
  36533. }
  36534. },
  36535. rightFoot: {
  36536. height: math.unit(1.2, "feet"),
  36537. name: "Foot (Right)",
  36538. image: {
  36539. source: "./media/characters/sykes/foot-right.svg"
  36540. }
  36541. },
  36542. maw: {
  36543. height: math.unit(1.93, "feet"),
  36544. name: "Maw",
  36545. image: {
  36546. source: "./media/characters/sykes/maw.svg"
  36547. }
  36548. },
  36549. teeth: {
  36550. height: math.unit(0.51, "feet"),
  36551. name: "Teeth",
  36552. image: {
  36553. source: "./media/characters/sykes/teeth.svg"
  36554. }
  36555. },
  36556. tongue: {
  36557. height: math.unit(2.13, "feet"),
  36558. name: "Tongue",
  36559. image: {
  36560. source: "./media/characters/sykes/tongue.svg"
  36561. }
  36562. },
  36563. uvula: {
  36564. height: math.unit(0.16, "feet"),
  36565. name: "Uvula",
  36566. image: {
  36567. source: "./media/characters/sykes/uvula.svg"
  36568. }
  36569. },
  36570. collar: {
  36571. height: math.unit(0.287, "feet"),
  36572. name: "Collar",
  36573. image: {
  36574. source: "./media/characters/sykes/collar.svg"
  36575. }
  36576. },
  36577. tail: {
  36578. height: math.unit(3.8, "feet"),
  36579. name: "Tail",
  36580. image: {
  36581. source: "./media/characters/sykes/tail.svg"
  36582. }
  36583. },
  36584. },
  36585. [
  36586. {
  36587. name: "Shrunken",
  36588. height: math.unit(5, "inches")
  36589. },
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(6 + 4 / 12, "feet"),
  36593. default: true
  36594. },
  36595. {
  36596. name: "Big",
  36597. height: math.unit(15, "feet")
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36603. {
  36604. front: {
  36605. height: math.unit(5 + 8/12, "feet"),
  36606. weight: math.unit(190, "lb"),
  36607. name: "Front",
  36608. image: {
  36609. source: "./media/characters/oven-otter/front.svg",
  36610. extra: 1809/1740,
  36611. bottom: 181/1990
  36612. }
  36613. },
  36614. back: {
  36615. height: math.unit(5 + 8/12, "feet"),
  36616. weight: math.unit(190, "lb"),
  36617. name: "Back",
  36618. image: {
  36619. source: "./media/characters/oven-otter/back.svg",
  36620. extra: 1709/1635,
  36621. bottom: 118/1827
  36622. }
  36623. },
  36624. hand: {
  36625. height: math.unit(1.07, "feet"),
  36626. name: "Hand",
  36627. image: {
  36628. source: "./media/characters/oven-otter/hand.svg"
  36629. }
  36630. },
  36631. beans: {
  36632. height: math.unit(1.74, "feet"),
  36633. name: "Beans",
  36634. image: {
  36635. source: "./media/characters/oven-otter/beans.svg"
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Micro",
  36642. height: math.unit(0.5, "inches")
  36643. },
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(5 + 8/12, "feet"),
  36647. default: true
  36648. },
  36649. {
  36650. name: "Macro",
  36651. height: math.unit(250, "feet")
  36652. },
  36653. {
  36654. name: "Really High",
  36655. height: math.unit(420, "feet")
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(5, "meters"),
  36664. weight: math.unit(292000000000000, "kg"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/devourer/front.svg",
  36668. extra: 1800/1733,
  36669. bottom: 211/2011
  36670. }
  36671. },
  36672. maw: {
  36673. height: math.unit(1.1, "meter"),
  36674. name: "Maw",
  36675. image: {
  36676. source: "./media/characters/devourer/maw.svg"
  36677. }
  36678. },
  36679. },
  36680. [
  36681. {
  36682. name: "Small",
  36683. height: math.unit(3, "meters")
  36684. },
  36685. {
  36686. name: "Large",
  36687. height: math.unit(5, "meters"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36694. {
  36695. front: {
  36696. height: math.unit(6, "feet"),
  36697. weight: math.unit(400, "lb"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/ellarby/front.svg",
  36701. extra: 1909/1763,
  36702. bottom: 80/1989
  36703. }
  36704. },
  36705. back: {
  36706. height: math.unit(6, "feet"),
  36707. weight: math.unit(400, "lb"),
  36708. name: "Back",
  36709. image: {
  36710. source: "./media/characters/ellarby/back.svg",
  36711. extra: 1914/1784,
  36712. bottom: 172/2086
  36713. }
  36714. },
  36715. },
  36716. [
  36717. {
  36718. name: "Mischief",
  36719. height: math.unit(18, "inches")
  36720. },
  36721. {
  36722. name: "Trouble",
  36723. height: math.unit(12, "feet")
  36724. },
  36725. {
  36726. name: "Havoc",
  36727. height: math.unit(200, "feet"),
  36728. default: true
  36729. },
  36730. {
  36731. name: "Pandemonium",
  36732. height: math.unit(1, "mile")
  36733. },
  36734. {
  36735. name: "Catastrophe",
  36736. height: math.unit(100, "miles")
  36737. },
  36738. ]
  36739. ))
  36740. characterMakers.push(() => makeCharacter(
  36741. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36742. {
  36743. front: {
  36744. height: math.unit(4.7, "meters"),
  36745. weight: math.unit(6500, "kg"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/vex/front.svg",
  36749. extra: 1288/1140,
  36750. bottom: 100/1388
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(4.7, "meters"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36764. {
  36765. normal: {
  36766. height: math.unit(6, "feet"),
  36767. weight: math.unit(350, "lb"),
  36768. name: "Normal",
  36769. image: {
  36770. source: "./media/characters/teshy/normal.svg",
  36771. extra: 1795/1735,
  36772. bottom: 16/1811
  36773. }
  36774. },
  36775. monsterFront: {
  36776. height: math.unit(12, "feet"),
  36777. weight: math.unit(4700, "lb"),
  36778. name: "Monster (Front)",
  36779. image: {
  36780. source: "./media/characters/teshy/monster-front.svg",
  36781. extra: 2042/2034,
  36782. bottom: 128/2170
  36783. }
  36784. },
  36785. monsterSide: {
  36786. height: math.unit(12, "feet"),
  36787. weight: math.unit(4700, "lb"),
  36788. name: "Monster (Side)",
  36789. image: {
  36790. source: "./media/characters/teshy/monster-side.svg",
  36791. extra: 2067/2056,
  36792. bottom: 70/2137
  36793. }
  36794. },
  36795. monsterBack: {
  36796. height: math.unit(12, "feet"),
  36797. weight: math.unit(4700, "lb"),
  36798. name: "Monster (Back)",
  36799. image: {
  36800. source: "./media/characters/teshy/monster-back.svg",
  36801. extra: 1921/1914,
  36802. bottom: 171/2092
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(6, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(6, "feet"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/ramey/front.svg",
  36822. extra: 790/787,
  36823. bottom: 27/817
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(6, "feet"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(5 + 5/12, "feet"),
  36840. weight: math.unit(120, "lb"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/phirae/front.svg",
  36844. extra: 2491/2436,
  36845. bottom: 38/2529
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Normal",
  36852. height: math.unit(5 + 5/12, "feet"),
  36853. default: true
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36859. {
  36860. front: {
  36861. height: math.unit(5 + 3/12, "feet"),
  36862. name: "Front",
  36863. image: {
  36864. source: "./media/characters/stagglas/front.svg",
  36865. extra: 962/882,
  36866. bottom: 53/1015
  36867. }
  36868. },
  36869. feral: {
  36870. height: math.unit(335, "cm"),
  36871. name: "Feral",
  36872. image: {
  36873. source: "./media/characters/stagglas/feral.svg",
  36874. extra: 1732/1090,
  36875. bottom: 48/1780
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(5 + 3/12, "feet"),
  36883. default: true
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(5 + 4/12, "feet"),
  36892. weight: math.unit(145, "lb"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/starra/front.svg",
  36896. extra: 1790/1691,
  36897. bottom: 91/1881
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(5 + 4/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(3.5, "meters"),
  36914. name: "Front",
  36915. image: {
  36916. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36917. extra: 1248/972,
  36918. bottom: 38/1286
  36919. }
  36920. },
  36921. },
  36922. [
  36923. {
  36924. name: "Normal",
  36925. height: math.unit(3.5, "meters"),
  36926. default: true
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36932. {
  36933. side: {
  36934. height: math.unit(8 + 2/12, "feet"),
  36935. weight: math.unit(1240, "lb"),
  36936. name: "Side",
  36937. image: {
  36938. source: "./media/characters/mika-valentine/side.svg",
  36939. extra: 2670/2501,
  36940. bottom: 250/2920
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(8 + 2/12, "feet"),
  36948. default: true
  36949. },
  36950. ]
  36951. ))
  36952. characterMakers.push(() => makeCharacter(
  36953. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36954. {
  36955. front: {
  36956. height: math.unit(7 + 2/12, "feet"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/xoltol/front.svg",
  36960. extra: 2212/2124,
  36961. bottom: 84/2296
  36962. }
  36963. },
  36964. side: {
  36965. height: math.unit(7 + 2/12, "feet"),
  36966. name: "Side",
  36967. image: {
  36968. source: "./media/characters/xoltol/side.svg",
  36969. extra: 2273/2197,
  36970. bottom: 26/2299
  36971. }
  36972. },
  36973. hand: {
  36974. height: math.unit(2.5, "feet"),
  36975. name: "Hand",
  36976. image: {
  36977. source: "./media/characters/xoltol/hand.svg"
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Small-ish",
  36984. height: math.unit(5 + 11/12, "feet")
  36985. },
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(7 + 2/12, "feet")
  36989. },
  36990. {
  36991. name: "\"Macro\"",
  36992. height: math.unit(14 + 9/12, "feet"),
  36993. default: true
  36994. },
  36995. {
  36996. name: "Alternate Height",
  36997. height: math.unit(20, "feet")
  36998. },
  36999. {
  37000. name: "Actually Macro",
  37001. height: math.unit(100, "feet")
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(5 + 2/12, "feet"),
  37010. weight: math.unit(75, "kg"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/kotetsu-redwood/front.svg",
  37014. extra: 1053/942,
  37015. bottom: 60/1113
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(5 + 2/12, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(2.4, "meters"),
  37032. weight: math.unit(125, "kg"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/lilith/front.svg",
  37036. extra: 1590/1513,
  37037. bottom: 203/1793
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Humanoid",
  37044. height: math.unit(2.4, "meters")
  37045. },
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(6, "meters"),
  37049. default: true
  37050. },
  37051. {
  37052. name: "Largest",
  37053. height: math.unit(55, "meters")
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37059. {
  37060. front: {
  37061. height: math.unit(8 + 4/12, "feet"),
  37062. weight: math.unit(535, "lb"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/beh'kah-bolger/front.svg",
  37066. extra: 1660/1603,
  37067. bottom: 37/1697
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(8 + 4/12, "feet"),
  37075. default: true
  37076. },
  37077. {
  37078. name: "Kaiju",
  37079. height: math.unit(250, "feet")
  37080. },
  37081. {
  37082. name: "Still Growing",
  37083. height: math.unit(10, "miles")
  37084. },
  37085. {
  37086. name: "Continental",
  37087. height: math.unit(5000, "miles")
  37088. },
  37089. {
  37090. name: "Final Form",
  37091. height: math.unit(2500000, "miles")
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(7 + 2/12, "feet"),
  37100. weight: math.unit(230, "kg"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/tatyana-milewska/front.svg",
  37104. extra: 1199/1150,
  37105. bottom: 86/1285
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(7 + 2/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Big",
  37117. height: math.unit(12, "feet")
  37118. },
  37119. {
  37120. name: "Minimacro",
  37121. height: math.unit(20, "feet")
  37122. },
  37123. {
  37124. name: "Macro",
  37125. height: math.unit(120, "feet")
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37131. {
  37132. front: {
  37133. height: math.unit(7 + 8/12, "feet"),
  37134. weight: math.unit(152, "kg"),
  37135. name: "Front",
  37136. image: {
  37137. source: "./media/characters/helen-arri/front.svg",
  37138. extra: 440/423,
  37139. bottom: 14/454
  37140. }
  37141. },
  37142. back: {
  37143. height: math.unit(7 + 8/12, "feet"),
  37144. weight: math.unit(152, "kg"),
  37145. name: "Back",
  37146. image: {
  37147. source: "./media/characters/helen-arri/back.svg",
  37148. extra: 443/426,
  37149. bottom: 8/451
  37150. }
  37151. },
  37152. },
  37153. [
  37154. {
  37155. name: "Normal",
  37156. height: math.unit(7 + 8/12, "feet"),
  37157. default: true
  37158. },
  37159. {
  37160. name: "Big",
  37161. height: math.unit(14, "feet")
  37162. },
  37163. {
  37164. name: "Minimacro",
  37165. height: math.unit(24, "feet")
  37166. },
  37167. {
  37168. name: "Macro",
  37169. height: math.unit(140, "feet")
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37175. {
  37176. front: {
  37177. height: math.unit(6, "meters"),
  37178. name: "Front",
  37179. image: {
  37180. source: "./media/characters/ehanu-rehu/front.svg",
  37181. extra: 1800/1800,
  37182. bottom: 59/1859
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(6, "meters"),
  37190. default: true
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(7 + 3/12, "feet"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/renholder/front.svg",
  37202. extra: 3096/2960,
  37203. bottom: 250/3346
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal Bat",
  37210. height: math.unit(7 + 3/12, "feet"),
  37211. default: true
  37212. },
  37213. {
  37214. name: "Slightly Tall Bat",
  37215. height: math.unit(100, "feet")
  37216. },
  37217. {
  37218. name: "Big Bat",
  37219. height: math.unit(1000, "feet")
  37220. },
  37221. {
  37222. name: "City-Sized Bat",
  37223. height: math.unit(200000, "feet")
  37224. },
  37225. {
  37226. name: "Bigger Bat",
  37227. height: math.unit(10000, "miles")
  37228. },
  37229. {
  37230. name: "Solar Sized Bat",
  37231. height: math.unit(100, "AU")
  37232. },
  37233. {
  37234. name: "Galactic Bat",
  37235. height: math.unit(200000, "lightyears")
  37236. },
  37237. {
  37238. name: "Universally Known Bat",
  37239. height: math.unit(1, "universe")
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(6 + 11/12, "feet"),
  37248. weight: math.unit(250, "lb"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/cookiecat/front.svg",
  37252. extra: 893/827,
  37253. bottom: 14/907
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Micro",
  37260. height: math.unit(3, "inches")
  37261. },
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(6 + 11/12, "feet"),
  37265. default: true
  37266. },
  37267. {
  37268. name: "Macro",
  37269. height: math.unit(100, "feet")
  37270. },
  37271. {
  37272. name: "Macro+",
  37273. height: math.unit(404, "feet")
  37274. },
  37275. {
  37276. name: "Megamacro",
  37277. height: math.unit(165, "miles")
  37278. },
  37279. {
  37280. name: "Planetary",
  37281. height: math.unit(4600, "miles")
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(10 + 3/12, "feet"),
  37290. weight: math.unit(1500, "lb"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/tux-kusanagi/front.svg",
  37294. extra: 944/840,
  37295. bottom: 39/983
  37296. }
  37297. },
  37298. back: {
  37299. height: math.unit(10 + 3/12, "feet"),
  37300. weight: math.unit(1500, "lb"),
  37301. name: "Back",
  37302. image: {
  37303. source: "./media/characters/tux-kusanagi/back.svg",
  37304. extra: 941/842,
  37305. bottom: 28/969
  37306. }
  37307. },
  37308. rump: {
  37309. height: math.unit(5.25, "feet"),
  37310. name: "Rump",
  37311. image: {
  37312. source: "./media/characters/tux-kusanagi/rump.svg"
  37313. }
  37314. },
  37315. beak: {
  37316. height: math.unit(1.54, "feet"),
  37317. name: "Beak",
  37318. image: {
  37319. source: "./media/characters/tux-kusanagi/beak.svg"
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(10 + 3/12, "feet"),
  37327. default: true
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37333. {
  37334. front: {
  37335. height: math.unit(58, "feet"),
  37336. weight: math.unit(200, "tons"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/uzarmazari/front.svg",
  37340. extra: 1575/1455,
  37341. bottom: 152/1727
  37342. }
  37343. },
  37344. back: {
  37345. height: math.unit(58, "feet"),
  37346. weight: math.unit(200, "tons"),
  37347. name: "Back",
  37348. image: {
  37349. source: "./media/characters/uzarmazari/back.svg",
  37350. extra: 1585/1510,
  37351. bottom: 157/1742
  37352. }
  37353. },
  37354. head: {
  37355. height: math.unit(26, "feet"),
  37356. name: "Head",
  37357. image: {
  37358. source: "./media/characters/uzarmazari/head.svg"
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(58, "feet"),
  37366. default: true
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37372. {
  37373. side: {
  37374. height: math.unit(15, "feet"),
  37375. name: "Side",
  37376. image: {
  37377. source: "./media/characters/akitu/side.svg",
  37378. extra: 1421/1321,
  37379. bottom: 157/1578
  37380. }
  37381. },
  37382. front: {
  37383. height: math.unit(15, "feet"),
  37384. name: "Front",
  37385. image: {
  37386. source: "./media/characters/akitu/front.svg",
  37387. extra: 1435/1326,
  37388. bottom: 232/1667
  37389. }
  37390. },
  37391. },
  37392. [
  37393. {
  37394. name: "Normal",
  37395. height: math.unit(15, "feet"),
  37396. default: true
  37397. },
  37398. ]
  37399. ))
  37400. characterMakers.push(() => makeCharacter(
  37401. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37402. {
  37403. front: {
  37404. height: math.unit(10 + 8/12, "feet"),
  37405. name: "Front",
  37406. image: {
  37407. source: "./media/characters/azalie-croixland/front.svg",
  37408. extra: 1972/1856,
  37409. bottom: 31/2003
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Original Height",
  37416. height: math.unit(5 + 4/12, "feet")
  37417. },
  37418. {
  37419. name: "Normal Height",
  37420. height: math.unit(10 + 8/12, "feet"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37427. {
  37428. side: {
  37429. height: math.unit(7 + 1/12, "feet"),
  37430. weight: math.unit(245, "lb"),
  37431. name: "Side",
  37432. image: {
  37433. source: "./media/characters/kavus-kazian/side.svg",
  37434. extra: 349/342,
  37435. bottom: 15/364
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(7 + 1/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37449. {
  37450. normalFront: {
  37451. height: math.unit(5 + 11/12, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/moonlight-rose/normal-front.svg",
  37455. extra: 1980/1825,
  37456. bottom: 18/1998
  37457. },
  37458. form: "normal",
  37459. default: true
  37460. },
  37461. normalBack: {
  37462. height: math.unit(5 + 11/12, "feet"),
  37463. name: "Back",
  37464. image: {
  37465. source: "./media/characters/moonlight-rose/normal-back.svg",
  37466. extra: 2010/1839,
  37467. bottom: 10/2020
  37468. },
  37469. form: "normal"
  37470. },
  37471. demonFront: {
  37472. height: math.unit(1.5, "earths"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/moonlight-rose/demon.svg",
  37476. extra: 1400/1294,
  37477. bottom: 45/1445
  37478. },
  37479. form: "demon",
  37480. default: true
  37481. },
  37482. terraFront: {
  37483. height: math.unit(1.5, "earths"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/moonlight-rose/terra.svg"
  37487. },
  37488. form: "terra",
  37489. default: true
  37490. },
  37491. jupiterFront: {
  37492. height: math.unit(69911*2, "km"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37496. extra: 1367/1286,
  37497. bottom: 55/1422
  37498. },
  37499. form: "jupiter",
  37500. default: true
  37501. },
  37502. neptuneFront: {
  37503. height: math.unit(24622*2, "feet"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37507. extra: 1851/1712,
  37508. bottom: 0/1851
  37509. },
  37510. form: "neptune",
  37511. default: true
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "\"Natural\" Height",
  37517. height: math.unit(5 + 11/12, "feet"),
  37518. form: "normal"
  37519. },
  37520. {
  37521. name: "Smallest comfortable size",
  37522. height: math.unit(40, "meters"),
  37523. form: "normal"
  37524. },
  37525. {
  37526. name: "Common size",
  37527. height: math.unit(50, "km"),
  37528. form: "normal",
  37529. default: true
  37530. },
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(1.5, "earths"),
  37534. form: "demon",
  37535. default: true
  37536. },
  37537. {
  37538. name: "Universal",
  37539. height: math.unit(15, "universes"),
  37540. form: "demon"
  37541. },
  37542. {
  37543. name: "Earth",
  37544. height: math.unit(1.5, "earths"),
  37545. form: "terra",
  37546. default: true
  37547. },
  37548. {
  37549. name: "Super Earth",
  37550. height: math.unit(67.5, "earths"),
  37551. form: "terra"
  37552. },
  37553. {
  37554. name: "Doesn't fit in a solar system...",
  37555. height: math.unit(1, "galaxy"),
  37556. form: "terra"
  37557. },
  37558. {
  37559. name: "Saturn",
  37560. height: math.unit(58232*2, "km"),
  37561. form: "jupiter"
  37562. },
  37563. {
  37564. name: "Jupiter",
  37565. height: math.unit(69911*2, "km"),
  37566. form: "jupiter",
  37567. default: true
  37568. },
  37569. {
  37570. name: "HD 100546 b",
  37571. height: math.unit(482938, "km"),
  37572. form: "jupiter"
  37573. },
  37574. {
  37575. name: "Enceladus",
  37576. height: math.unit(513*2, "km"),
  37577. form: "neptune"
  37578. },
  37579. {
  37580. name: "Europe",
  37581. height: math.unit(1560*2, "km"),
  37582. form: "neptune"
  37583. },
  37584. {
  37585. name: "Neptune",
  37586. height: math.unit(24622*2, "km"),
  37587. form: "neptune",
  37588. default: true
  37589. },
  37590. {
  37591. name: "CoRoT-9b",
  37592. height: math.unit(75067*2, "km"),
  37593. form: "neptune"
  37594. },
  37595. ],
  37596. {
  37597. "normal": {
  37598. name: "Normal",
  37599. default: true
  37600. },
  37601. "demon": {
  37602. name: "Demon"
  37603. },
  37604. "terra": {
  37605. name: "Terra"
  37606. },
  37607. "jupiter": {
  37608. name: "Jupiter"
  37609. },
  37610. "neptune": {
  37611. name: "Neptune"
  37612. }
  37613. }
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37617. {
  37618. front: {
  37619. height: math.unit(16, "feet"),
  37620. weight: math.unit(610, "kg"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/huckle/front.svg",
  37624. extra: 1731/1625,
  37625. bottom: 33/1764
  37626. }
  37627. },
  37628. back: {
  37629. height: math.unit(16, "feet"),
  37630. weight: math.unit(610, "kg"),
  37631. name: "Back",
  37632. image: {
  37633. source: "./media/characters/huckle/back.svg",
  37634. extra: 1738/1651,
  37635. bottom: 37/1775
  37636. }
  37637. },
  37638. laughing: {
  37639. height: math.unit(3.75, "feet"),
  37640. name: "Laughing",
  37641. image: {
  37642. source: "./media/characters/huckle/laughing.svg"
  37643. }
  37644. },
  37645. angry: {
  37646. height: math.unit(4.15, "feet"),
  37647. name: "Angry",
  37648. image: {
  37649. source: "./media/characters/huckle/angry.svg"
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(16, "feet"),
  37657. default: true
  37658. },
  37659. {
  37660. name: "Mini Macro",
  37661. height: math.unit(463, "feet")
  37662. },
  37663. {
  37664. name: "Macro",
  37665. height: math.unit(1680, "meters")
  37666. },
  37667. {
  37668. name: "Mega Macro",
  37669. height: math.unit(175, "km")
  37670. },
  37671. {
  37672. name: "Terra Macro",
  37673. height: math.unit(32, "gigameters")
  37674. },
  37675. {
  37676. name: "Multiverse+",
  37677. height: math.unit(2.56e23, "yottameters")
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(6 + 9/12, "feet"),
  37686. weight: math.unit(280, "lb"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/candy/front.svg",
  37690. extra: 234/217,
  37691. bottom: 11/245
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Really Small",
  37698. height: math.unit(0.1, "nm")
  37699. },
  37700. {
  37701. name: "Micro",
  37702. height: math.unit(2, "inches")
  37703. },
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(6 + 9/12, "feet"),
  37707. default: true
  37708. },
  37709. {
  37710. name: "Small Macro",
  37711. height: math.unit(69, "feet")
  37712. },
  37713. {
  37714. name: "Macro",
  37715. height: math.unit(160, "feet")
  37716. },
  37717. {
  37718. name: "Megamacro",
  37719. height: math.unit(22000, "miles")
  37720. },
  37721. {
  37722. name: "Gigamacro",
  37723. height: math.unit(50000, "miles")
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(4, "feet"),
  37732. weight: math.unit(90, "lb"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/joey-mcdonald/front.svg",
  37736. extra: 1059/852,
  37737. bottom: 33/1092
  37738. }
  37739. },
  37740. back: {
  37741. height: math.unit(4, "feet"),
  37742. weight: math.unit(90, "lb"),
  37743. name: "Back",
  37744. image: {
  37745. source: "./media/characters/joey-mcdonald/back.svg",
  37746. extra: 1077/879,
  37747. bottom: 5/1082
  37748. }
  37749. },
  37750. frontKobold: {
  37751. height: math.unit(4, "feet"),
  37752. weight: math.unit(100, "lb"),
  37753. name: "Front-kobold",
  37754. image: {
  37755. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37756. extra: 1480/1367,
  37757. bottom: 0/1480
  37758. }
  37759. },
  37760. backKobold: {
  37761. height: math.unit(4, "feet"),
  37762. weight: math.unit(100, "lb"),
  37763. name: "Back-kobold",
  37764. image: {
  37765. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37766. extra: 1449/1361,
  37767. bottom: 0/1449
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(4, "feet"),
  37775. default: true
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37781. {
  37782. front: {
  37783. height: math.unit(12 + 6/12, "feet"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/kass-lockheed/front.svg",
  37787. extra: 354/343,
  37788. bottom: 9/363
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(12 + 6/12, "feet"),
  37793. name: "Back",
  37794. image: {
  37795. source: "./media/characters/kass-lockheed/back.svg",
  37796. extra: 364/352,
  37797. bottom: 3/367
  37798. }
  37799. },
  37800. dick: {
  37801. height: math.unit(3.12, "feet"),
  37802. name: "Dick",
  37803. image: {
  37804. source: "./media/characters/kass-lockheed/dick.svg"
  37805. }
  37806. },
  37807. head: {
  37808. height: math.unit(2.6, "feet"),
  37809. name: "Head",
  37810. image: {
  37811. source: "./media/characters/kass-lockheed/head.svg"
  37812. }
  37813. },
  37814. bleh: {
  37815. height: math.unit(2.85, "feet"),
  37816. name: "Bleh",
  37817. image: {
  37818. source: "./media/characters/kass-lockheed/bleh.svg"
  37819. }
  37820. },
  37821. smug: {
  37822. height: math.unit(2.85, "feet"),
  37823. name: "Smug",
  37824. image: {
  37825. source: "./media/characters/kass-lockheed/smug.svg"
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(12 + 6/12, "feet"),
  37833. default: true
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(6 + 2/12, "feet"),
  37842. name: "Front",
  37843. image: {
  37844. source: "./media/characters/taylor/front.svg",
  37845. extra: 639/495,
  37846. bottom: 12/651
  37847. }
  37848. },
  37849. },
  37850. [
  37851. {
  37852. name: "Normal",
  37853. height: math.unit(6 + 2/12, "feet"),
  37854. default: true
  37855. },
  37856. {
  37857. name: "Big",
  37858. height: math.unit(15, "feet")
  37859. },
  37860. {
  37861. name: "Lorg",
  37862. height: math.unit(80, "feet")
  37863. },
  37864. {
  37865. name: "Too Lorg",
  37866. height: math.unit(120, "feet")
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(15, "feet"),
  37875. name: "Front",
  37876. image: {
  37877. source: "./media/characters/kaizer/front.svg",
  37878. extra: 1612/1436,
  37879. bottom: 43/1655
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(15, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(2, "feet"),
  37896. weight: math.unit(30, "lb"),
  37897. name: "Front",
  37898. image: {
  37899. source: "./media/characters/sandy/front.svg",
  37900. extra: 1439/1307,
  37901. bottom: 194/1633
  37902. }
  37903. },
  37904. },
  37905. [
  37906. {
  37907. name: "Normal",
  37908. height: math.unit(2, "feet"),
  37909. default: true
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(3, "feet"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/mellvi/front.svg",
  37921. extra: 1831/1630,
  37922. bottom: 58/1889
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(3, "feet"),
  37930. default: true
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(5 + 11/12, "feet"),
  37939. weight: math.unit(200, "lb"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/shirou/front.svg",
  37943. extra: 2491/2383,
  37944. bottom: 189/2680
  37945. }
  37946. },
  37947. back: {
  37948. height: math.unit(5 + 11/12, "feet"),
  37949. weight: math.unit(200, "lb"),
  37950. name: "Back",
  37951. image: {
  37952. source: "./media/characters/shirou/back.svg",
  37953. extra: 2554/2450,
  37954. bottom: 76/2630
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Normal",
  37961. height: math.unit(5 + 11/12, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(6 + 3/12, "feet"),
  37971. weight: math.unit(177, "lb"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/noryu/front.svg",
  37975. extra: 973/885,
  37976. bottom: 10/983
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(6 + 3/12, "feet"),
  37984. default: true
  37985. },
  37986. ]
  37987. ))
  37988. characterMakers.push(() => makeCharacter(
  37989. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37990. {
  37991. front: {
  37992. height: math.unit(5 + 6/12, "feet"),
  37993. weight: math.unit(170, "lb"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/mevolas-rubenido/front.svg",
  37997. extra: 2109/1901,
  37998. bottom: 96/2205
  37999. }
  38000. },
  38001. },
  38002. [
  38003. {
  38004. name: "Normal",
  38005. height: math.unit(5 + 6/12, "feet"),
  38006. default: true
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(100, "feet"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/dee/front.svg",
  38018. extra: 2153/2036,
  38019. bottom: 59/2212
  38020. }
  38021. },
  38022. back: {
  38023. height: math.unit(100, "feet"),
  38024. name: "Back",
  38025. image: {
  38026. source: "./media/characters/dee/back.svg",
  38027. extra: 2183/2058,
  38028. bottom: 75/2258
  38029. }
  38030. },
  38031. foot: {
  38032. height: math.unit(19.43, "feet"),
  38033. name: "Foot",
  38034. image: {
  38035. source: "./media/characters/dee/foot.svg"
  38036. }
  38037. },
  38038. hoof: {
  38039. height: math.unit(20.6, "feet"),
  38040. name: "Hoof",
  38041. image: {
  38042. source: "./media/characters/dee/hoof.svg"
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Macro",
  38049. height: math.unit(100, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(5 + 6/12, "feet"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/teh/front.svg",
  38062. extra: 1002/847,
  38063. bottom: 62/1064
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(5 + 6/12, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38077. {
  38078. side: {
  38079. height: math.unit(6 + 1/12, "feet"),
  38080. weight: math.unit(204, "lb"),
  38081. name: "Side",
  38082. image: {
  38083. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38084. extra: 974/775,
  38085. bottom: 169/1143
  38086. }
  38087. },
  38088. sitting: {
  38089. height: math.unit(6 + 2/12, "feet"),
  38090. weight: math.unit(204, "lb"),
  38091. name: "Sitting",
  38092. image: {
  38093. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38094. extra: 1175/964,
  38095. bottom: 378/1553
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Normal",
  38102. height: math.unit(6 + 1/12, "feet"),
  38103. default: true
  38104. },
  38105. ]
  38106. ))
  38107. characterMakers.push(() => makeCharacter(
  38108. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38109. {
  38110. front: {
  38111. height: math.unit(6, "inches"),
  38112. name: "Front",
  38113. image: {
  38114. source: "./media/characters/tululi/front.svg",
  38115. extra: 1997/1876,
  38116. bottom: 20/2017
  38117. }
  38118. },
  38119. },
  38120. [
  38121. {
  38122. name: "Normal",
  38123. height: math.unit(6, "inches"),
  38124. default: true
  38125. },
  38126. ]
  38127. ))
  38128. characterMakers.push(() => makeCharacter(
  38129. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38130. {
  38131. front: {
  38132. height: math.unit(4 + 1/12, "feet"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/star/front.svg",
  38136. extra: 1493/1189,
  38137. bottom: 48/1541
  38138. }
  38139. },
  38140. },
  38141. [
  38142. {
  38143. name: "Normal",
  38144. height: math.unit(4 + 1/12, "feet"),
  38145. default: true
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38151. {
  38152. front: {
  38153. height: math.unit(6 + 3/12, "feet"),
  38154. name: "Front",
  38155. image: {
  38156. source: "./media/characters/comet/front.svg",
  38157. extra: 1681/1462,
  38158. bottom: 26/1707
  38159. }
  38160. },
  38161. },
  38162. [
  38163. {
  38164. name: "Normal",
  38165. height: math.unit(6 + 3/12, "feet"),
  38166. default: true
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(950, "feet"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/vortex/front.svg",
  38178. extra: 1497/1434,
  38179. bottom: 56/1553
  38180. }
  38181. },
  38182. maw: {
  38183. height: math.unit(285, "feet"),
  38184. name: "Maw",
  38185. image: {
  38186. source: "./media/characters/vortex/maw.svg"
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Macro",
  38193. height: math.unit(950, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38200. {
  38201. front: {
  38202. height: math.unit(600, "feet"),
  38203. weight: math.unit(0.02, "grams"),
  38204. name: "Front",
  38205. image: {
  38206. source: "./media/characters/doodle/front.svg",
  38207. extra: 1578/1413,
  38208. bottom: 37/1615
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Macro",
  38215. height: math.unit(600, "feet"),
  38216. default: true
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(6 + 6/12, "feet"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/jai/front.svg",
  38228. extra: 1645/1534,
  38229. bottom: 115/1760
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(6 + 6/12, "feet"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(6 + 8/12, "feet"),
  38246. name: "Front",
  38247. image: {
  38248. source: "./media/characters/pixel/front.svg",
  38249. extra: 1900/1735,
  38250. bottom: 63/1963
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(6 + 8/12, "feet"),
  38258. default: true
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38264. {
  38265. back: {
  38266. height: math.unit(4 + 1/12, "feet"),
  38267. weight: math.unit(75, "lb"),
  38268. name: "Back",
  38269. image: {
  38270. source: "./media/characters/rhett/back.svg",
  38271. extra: 930/878,
  38272. bottom: 25/955
  38273. }
  38274. },
  38275. front: {
  38276. height: math.unit(4 + 1/12, "feet"),
  38277. weight: math.unit(75, "lb"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/rhett/front.svg",
  38281. extra: 1682/1586,
  38282. bottom: 92/1774
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Micro",
  38289. height: math.unit(8, "inches")
  38290. },
  38291. {
  38292. name: "Tiny",
  38293. height: math.unit(2, "feet")
  38294. },
  38295. {
  38296. name: "Normal",
  38297. height: math.unit(4 + 1/12, "feet"),
  38298. default: true
  38299. },
  38300. ]
  38301. ))
  38302. characterMakers.push(() => makeCharacter(
  38303. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38304. {
  38305. front: {
  38306. height: math.unit(3 + 3/12, "feet"),
  38307. name: "Front",
  38308. image: {
  38309. source: "./media/characters/penny/front.svg",
  38310. extra: 1406/1311,
  38311. bottom: 26/1432
  38312. }
  38313. },
  38314. },
  38315. [
  38316. {
  38317. name: "Normal",
  38318. height: math.unit(3 + 3/12, "feet"),
  38319. default: true
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38325. {
  38326. front: {
  38327. height: math.unit(4 + 11/12, "feet"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/monty/front.svg",
  38331. extra: 1479/1209,
  38332. bottom: 0/1479
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(4 + 11/12, "feet"),
  38340. default: true
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38346. {
  38347. front: {
  38348. height: math.unit(8 + 4/12, "feet"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/sterling/front.svg",
  38352. extra: 1420/1236,
  38353. bottom: 27/1447
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(8 + 4/12, "feet"),
  38361. default: true
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(15, "feet"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/marble/front.svg",
  38373. extra: 973/937,
  38374. bottom: 32/1005
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(15, "feet"),
  38382. default: true
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38388. {
  38389. front: {
  38390. height: math.unit(3, "inches"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/powder/front.svg",
  38394. extra: 1504/1334,
  38395. bottom: 518/2022
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(3, "inches"),
  38403. default: true
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(4 + 5/12, "feet"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/joey-raccoon/front.svg",
  38415. extra: 1273/1197,
  38416. bottom: 0/1273
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(4 + 5/12, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(8 + 4/12, "feet"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/vick/front.svg",
  38436. extra: 2187/2118,
  38437. bottom: 47/2234
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(8 + 4/12, "feet"),
  38445. default: true
  38446. },
  38447. ]
  38448. ))
  38449. characterMakers.push(() => makeCharacter(
  38450. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38451. {
  38452. front: {
  38453. height: math.unit(5 + 5/12, "feet"),
  38454. name: "Front",
  38455. image: {
  38456. source: "./media/characters/mitsy/front.svg",
  38457. extra: 1842/1695,
  38458. bottom: 0/1842
  38459. }
  38460. },
  38461. },
  38462. [
  38463. {
  38464. name: "Normal",
  38465. height: math.unit(5 + 5/12, "feet"),
  38466. default: true
  38467. },
  38468. ]
  38469. ))
  38470. characterMakers.push(() => makeCharacter(
  38471. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38472. {
  38473. front: {
  38474. height: math.unit(6 + 3/12, "feet"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/silvy/front.svg",
  38478. extra: 1995/1836,
  38479. bottom: 225/2220
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(6 + 3/12, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(3 + 8/12, "feet"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/rodney/front.svg",
  38499. extra: 1956/1747,
  38500. bottom: 31/1987
  38501. }
  38502. },
  38503. frontDressed: {
  38504. height: math.unit(2.9, "feet"),
  38505. name: "Front (Dressed)",
  38506. image: {
  38507. source: "./media/characters/rodney/front-dressed.svg",
  38508. extra: 1382/1241,
  38509. bottom: 385/1767
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(3 + 8/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(5 + 9/12, "feet"),
  38526. weight: math.unit(194, "lbs"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/zakail-sudekai/front.svg",
  38530. extra: 2696/2533,
  38531. bottom: 248/2944
  38532. }
  38533. },
  38534. maw: {
  38535. height: math.unit(1.35, "feet"),
  38536. name: "Maw",
  38537. image: {
  38538. source: "./media/characters/zakail-sudekai/maw.svg"
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(5 + 9/12, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(8 + 4/12, "feet"),
  38555. weight: math.unit(1200, "lb"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/eleanor/front.svg",
  38559. extra: 1226/1192,
  38560. bottom: 52/1278
  38561. }
  38562. },
  38563. back: {
  38564. height: math.unit(8 + 4/12, "feet"),
  38565. weight: math.unit(1200, "lb"),
  38566. name: "Back",
  38567. image: {
  38568. source: "./media/characters/eleanor/back.svg",
  38569. extra: 1242/1184,
  38570. bottom: 60/1302
  38571. }
  38572. },
  38573. head: {
  38574. height: math.unit(2.62, "feet"),
  38575. name: "Head",
  38576. image: {
  38577. source: "./media/characters/eleanor/head.svg"
  38578. }
  38579. },
  38580. },
  38581. [
  38582. {
  38583. name: "Normal",
  38584. height: math.unit(8 + 4/12, "feet"),
  38585. default: true
  38586. },
  38587. ]
  38588. ))
  38589. characterMakers.push(() => makeCharacter(
  38590. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38591. {
  38592. front: {
  38593. height: math.unit(8 + 4/12, "feet"),
  38594. weight: math.unit(750, "lb"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/tanya/front.svg",
  38598. extra: 1749/1615,
  38599. bottom: 33/1782
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(8 + 4/12, "feet"),
  38607. default: true
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(5, "feet"),
  38616. weight: math.unit(225, "lb"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/cindy/front.svg",
  38620. extra: 1320/1250,
  38621. bottom: 42/1362
  38622. }
  38623. },
  38624. frontDressed: {
  38625. height: math.unit(5, "feet"),
  38626. weight: math.unit(225, "lb"),
  38627. name: "Front (Dressed)",
  38628. image: {
  38629. source: "./media/characters/cindy/front-dressed.svg",
  38630. extra: 1320/1250,
  38631. bottom: 42/1362
  38632. }
  38633. },
  38634. back: {
  38635. height: math.unit(5, "feet"),
  38636. weight: math.unit(225, "lb"),
  38637. name: "Back",
  38638. image: {
  38639. source: "./media/characters/cindy/back.svg",
  38640. extra: 1384/1346,
  38641. bottom: 14/1398
  38642. }
  38643. },
  38644. },
  38645. [
  38646. {
  38647. name: "Normal",
  38648. height: math.unit(5, "feet"),
  38649. default: true
  38650. },
  38651. ]
  38652. ))
  38653. characterMakers.push(() => makeCharacter(
  38654. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38655. {
  38656. front: {
  38657. height: math.unit(6 + 9/12, "feet"),
  38658. weight: math.unit(440, "lb"),
  38659. name: "Front",
  38660. image: {
  38661. source: "./media/characters/wilbur-owen/front.svg",
  38662. extra: 1575/1448,
  38663. bottom: 72/1647
  38664. }
  38665. },
  38666. back: {
  38667. height: math.unit(6 + 9/12, "feet"),
  38668. weight: math.unit(440, "lb"),
  38669. name: "Back",
  38670. image: {
  38671. source: "./media/characters/wilbur-owen/back.svg",
  38672. extra: 1578/1445,
  38673. bottom: 36/1614
  38674. }
  38675. },
  38676. },
  38677. [
  38678. {
  38679. name: "Normal",
  38680. height: math.unit(6 + 9/12, "feet"),
  38681. default: true
  38682. },
  38683. ]
  38684. ))
  38685. characterMakers.push(() => makeCharacter(
  38686. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38687. {
  38688. front: {
  38689. height: math.unit(6 + 5/12, "feet"),
  38690. weight: math.unit(650, "lb"),
  38691. name: "Front",
  38692. image: {
  38693. source: "./media/characters/keegan/front.svg",
  38694. extra: 2387/2198,
  38695. bottom: 33/2420
  38696. }
  38697. },
  38698. side: {
  38699. height: math.unit(6 + 5/12, "feet"),
  38700. weight: math.unit(650, "lb"),
  38701. name: "Side",
  38702. image: {
  38703. source: "./media/characters/keegan/side.svg",
  38704. extra: 2390/2202,
  38705. bottom: 47/2437
  38706. }
  38707. },
  38708. back: {
  38709. height: math.unit(6 + 5/12, "feet"),
  38710. weight: math.unit(650, "lb"),
  38711. name: "Back",
  38712. image: {
  38713. source: "./media/characters/keegan/back.svg",
  38714. extra: 2418/2268,
  38715. bottom: 15/2433
  38716. }
  38717. },
  38718. frontSfw: {
  38719. height: math.unit(6 + 5/12, "feet"),
  38720. weight: math.unit(650, "lb"),
  38721. name: "Front (SFW)",
  38722. image: {
  38723. source: "./media/characters/keegan/front-sfw.svg",
  38724. extra: 2387/2198,
  38725. bottom: 33/2420
  38726. }
  38727. },
  38728. beans: {
  38729. height: math.unit(1.85, "feet"),
  38730. name: "Beans",
  38731. image: {
  38732. source: "./media/characters/keegan/beans.svg"
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Normal",
  38739. height: math.unit(6 + 5/12, "feet"),
  38740. default: true
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(9, "feet"),
  38749. name: "Front",
  38750. image: {
  38751. source: "./media/characters/colton/front.svg",
  38752. extra: 1589/1326,
  38753. bottom: 139/1728
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "Normal",
  38760. height: math.unit(9, "feet"),
  38761. default: true
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38767. {
  38768. front: {
  38769. height: math.unit(2 + 9/12, "feet"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/bora/front.svg",
  38773. extra: 1265/1250,
  38774. bottom: 24/1289
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Normal",
  38781. height: math.unit(2 + 9/12, "feet"),
  38782. default: true
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38788. {
  38789. front: {
  38790. height: math.unit(8, "feet"),
  38791. name: "Front",
  38792. image: {
  38793. source: "./media/characters/myu-myu/front.svg",
  38794. extra: 1949/1857,
  38795. bottom: 90/2039
  38796. }
  38797. },
  38798. },
  38799. [
  38800. {
  38801. name: "Normal",
  38802. height: math.unit(8, "feet"),
  38803. default: true
  38804. },
  38805. {
  38806. name: "Big",
  38807. height: math.unit(15, "feet")
  38808. },
  38809. {
  38810. name: "BIG",
  38811. height: math.unit(25, "feet")
  38812. },
  38813. ]
  38814. ))
  38815. characterMakers.push(() => makeCharacter(
  38816. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38817. {
  38818. side: {
  38819. height: math.unit(7 + 5/12, "feet"),
  38820. weight: math.unit(2800, "lb"),
  38821. name: "Side",
  38822. image: {
  38823. source: "./media/characters/haloren/side.svg",
  38824. extra: 1793/409,
  38825. bottom: 59/1852
  38826. }
  38827. },
  38828. frontPaw: {
  38829. height: math.unit(2.36, "feet"),
  38830. name: "Front paw",
  38831. image: {
  38832. source: "./media/characters/haloren/front-paw.svg"
  38833. }
  38834. },
  38835. hindPaw: {
  38836. height: math.unit(3.18, "feet"),
  38837. name: "Hind paw",
  38838. image: {
  38839. source: "./media/characters/haloren/hind-paw.svg"
  38840. }
  38841. },
  38842. maw: {
  38843. height: math.unit(5.05, "feet"),
  38844. name: "Maw",
  38845. image: {
  38846. source: "./media/characters/haloren/maw.svg"
  38847. }
  38848. },
  38849. dick: {
  38850. height: math.unit(2.90, "feet"),
  38851. name: "Dick",
  38852. image: {
  38853. source: "./media/characters/haloren/dick.svg"
  38854. }
  38855. },
  38856. },
  38857. [
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(7 + 5/12, "feet"),
  38861. default: true
  38862. },
  38863. {
  38864. name: "Enhanced",
  38865. height: math.unit(14 + 3/12, "feet")
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38871. {
  38872. front: {
  38873. height: math.unit(171, "cm"),
  38874. name: "Front",
  38875. image: {
  38876. source: "./media/characters/kimmy/front.svg",
  38877. extra: 1491/1435,
  38878. bottom: 53/1544
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Small",
  38885. height: math.unit(9, "cm")
  38886. },
  38887. {
  38888. name: "Normal",
  38889. height: math.unit(171, "cm"),
  38890. default: true
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38896. {
  38897. front: {
  38898. height: math.unit(8, "feet"),
  38899. weight: math.unit(300, "lb"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/galeboomer/front.svg",
  38903. extra: 4651/4415,
  38904. bottom: 162/4813
  38905. }
  38906. },
  38907. back: {
  38908. height: math.unit(8, "feet"),
  38909. weight: math.unit(300, "lb"),
  38910. name: "Back",
  38911. image: {
  38912. source: "./media/characters/galeboomer/back.svg",
  38913. extra: 4544/4314,
  38914. bottom: 16/4560
  38915. }
  38916. },
  38917. frontAlt: {
  38918. height: math.unit(8, "feet"),
  38919. weight: math.unit(300, "lb"),
  38920. name: "Front (Alt)",
  38921. image: {
  38922. source: "./media/characters/galeboomer/front-alt.svg",
  38923. extra: 4458/4228,
  38924. bottom: 68/4526
  38925. }
  38926. },
  38927. maw: {
  38928. height: math.unit(1.2, "feet"),
  38929. name: "Maw",
  38930. image: {
  38931. source: "./media/characters/galeboomer/maw.svg"
  38932. }
  38933. },
  38934. },
  38935. [
  38936. {
  38937. name: "Normal",
  38938. height: math.unit(8, "feet"),
  38939. default: true
  38940. },
  38941. ]
  38942. ))
  38943. characterMakers.push(() => makeCharacter(
  38944. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38945. {
  38946. front: {
  38947. height: math.unit(5 + 9/12, "feet"),
  38948. weight: math.unit(120, "lb"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/chyr/front.svg",
  38952. extra: 1323/1254,
  38953. bottom: 63/1386
  38954. }
  38955. },
  38956. back: {
  38957. height: math.unit(5 + 9/12, "feet"),
  38958. weight: math.unit(120, "lb"),
  38959. name: "Back",
  38960. image: {
  38961. source: "./media/characters/chyr/back.svg",
  38962. extra: 1323/1252,
  38963. bottom: 48/1371
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(5 + 9/12, "feet"),
  38971. default: true
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(7, "feet"),
  38980. weight: math.unit(310, "lb"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/solarus/front.svg",
  38984. extra: 2415/2021,
  38985. bottom: 103/2518
  38986. }
  38987. },
  38988. back: {
  38989. height: math.unit(7, "feet"),
  38990. weight: math.unit(310, "lb"),
  38991. name: "Back",
  38992. image: {
  38993. source: "./media/characters/solarus/back.svg",
  38994. extra: 2463/2089,
  38995. bottom: 79/2542
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(7, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(16, "feet"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39015. extra: 1844/1780,
  39016. bottom: 58/1902
  39017. }
  39018. },
  39019. winterCoat: {
  39020. height: math.unit(16, "feet"),
  39021. name: "Winter Coat",
  39022. image: {
  39023. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39024. extra: 1807/1775,
  39025. bottom: 69/1876
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Normal",
  39032. height: math.unit(16, "feet"),
  39033. default: true
  39034. },
  39035. {
  39036. name: "Chicago Size",
  39037. height: math.unit(560, "feet")
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(11 + 6/12, "feet"),
  39046. weight: math.unit(1366, "lb"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/lexor/front.svg",
  39050. extra: 1560/1481,
  39051. bottom: 211/1771
  39052. }
  39053. },
  39054. back: {
  39055. height: math.unit(11 + 6/12, "feet"),
  39056. weight: math.unit(1366, "lb"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/lexor/back.svg",
  39060. extra: 1614/1533,
  39061. bottom: 76/1690
  39062. }
  39063. },
  39064. maw: {
  39065. height: math.unit(3, "feet"),
  39066. name: "Maw",
  39067. image: {
  39068. source: "./media/characters/lexor/maw.svg"
  39069. }
  39070. },
  39071. dick: {
  39072. height: math.unit(2.59, "feet"),
  39073. name: "Dick",
  39074. image: {
  39075. source: "./media/characters/lexor/dick.svg"
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(11 + 6/12, "feet"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(5 + 8/12, "feet"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/magnum/front.svg",
  39095. extra: 942/855,
  39096. bottom: 26/968
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(5 + 8/12, "feet"),
  39104. default: true
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(18 + 4/12, "feet"),
  39113. weight: math.unit(1500, "kg"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/solas-sharpsman/front.svg",
  39117. extra: 1698/1589,
  39118. bottom: 0/1698
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(18 + 4/12, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(5 + 5/12, "feet"),
  39135. weight: math.unit(180, "lb"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/october/front.svg",
  39139. extra: 1800/1650,
  39140. bottom: 0/1800
  39141. }
  39142. },
  39143. frontNsfw: {
  39144. height: math.unit(5 + 5/12, "feet"),
  39145. weight: math.unit(180, "lb"),
  39146. name: "Front (NSFW)",
  39147. image: {
  39148. source: "./media/characters/october/front-nsfw.svg",
  39149. extra: 1392/1307,
  39150. bottom: 42/1434
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(5 + 5/12, "feet"),
  39158. default: true
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39164. {
  39165. front: {
  39166. height: math.unit(8 + 6/12, "feet"),
  39167. name: "Front",
  39168. image: {
  39169. source: "./media/characters/essynkardi/front.svg",
  39170. extra: 1541/1457,
  39171. bottom: 47/1588
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Normal",
  39178. height: math.unit(8 + 6/12, "feet"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(6 + 6/12, "feet"),
  39188. weight: math.unit(7, "lb"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/icky/front.svg",
  39192. extra: 813/782,
  39193. bottom: 66/879
  39194. }
  39195. },
  39196. back: {
  39197. height: math.unit(6 + 6/12, "feet"),
  39198. weight: math.unit(7, "lb"),
  39199. name: "Back",
  39200. image: {
  39201. source: "./media/characters/icky/back.svg",
  39202. extra: 754/735,
  39203. bottom: 56/810
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(6 + 6/12, "feet"),
  39211. default: true
  39212. },
  39213. ]
  39214. ))
  39215. characterMakers.push(() => makeCharacter(
  39216. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39217. {
  39218. front: {
  39219. height: math.unit(15, "feet"),
  39220. name: "Front",
  39221. image: {
  39222. source: "./media/characters/rojas/front.svg",
  39223. extra: 1462/1408,
  39224. bottom: 95/1557
  39225. }
  39226. },
  39227. back: {
  39228. height: math.unit(15, "feet"),
  39229. name: "Back",
  39230. image: {
  39231. source: "./media/characters/rojas/back.svg",
  39232. extra: 1023/954,
  39233. bottom: 28/1051
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(15, "feet"),
  39241. default: true
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39247. {
  39248. frontHuman: {
  39249. height: math.unit(5 + 7/12, "feet"),
  39250. name: "Front (Human)",
  39251. image: {
  39252. source: "./media/characters/alek-dryagan/front-human.svg",
  39253. extra: 1687/1667,
  39254. bottom: 69/1756
  39255. }
  39256. },
  39257. backHuman: {
  39258. height: math.unit(5 + 7/12, "feet"),
  39259. name: "Back (Human)",
  39260. image: {
  39261. source: "./media/characters/alek-dryagan/back-human.svg",
  39262. extra: 1670/1649,
  39263. bottom: 65/1735
  39264. }
  39265. },
  39266. frontDemi: {
  39267. height: math.unit(65, "feet"),
  39268. name: "Front (Demi)",
  39269. image: {
  39270. source: "./media/characters/alek-dryagan/front-demi.svg",
  39271. extra: 1669/1642,
  39272. bottom: 49/1718
  39273. }
  39274. },
  39275. backDemi: {
  39276. height: math.unit(65, "feet"),
  39277. name: "Back (Demi)",
  39278. image: {
  39279. source: "./media/characters/alek-dryagan/back-demi.svg",
  39280. extra: 1658/1637,
  39281. bottom: 40/1698
  39282. }
  39283. },
  39284. mawHuman: {
  39285. height: math.unit(0.3, "feet"),
  39286. name: "Maw (Human)",
  39287. image: {
  39288. source: "./media/characters/alek-dryagan/maw-human.svg"
  39289. }
  39290. },
  39291. mawDemi: {
  39292. height: math.unit(3.8, "feet"),
  39293. name: "Maw (Demi)",
  39294. image: {
  39295. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(5 + 7/12, "feet"),
  39303. default: true
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39309. {
  39310. frontHuman: {
  39311. height: math.unit(5 + 2/12, "feet"),
  39312. name: "Front (Human)",
  39313. image: {
  39314. source: "./media/characters/gen/front-human.svg",
  39315. extra: 1627/1538,
  39316. bottom: 71/1698
  39317. }
  39318. },
  39319. backHuman: {
  39320. height: math.unit(5 + 2/12, "feet"),
  39321. name: "Back (Human)",
  39322. image: {
  39323. source: "./media/characters/gen/back-human.svg",
  39324. extra: 1638/1548,
  39325. bottom: 69/1707
  39326. }
  39327. },
  39328. frontDemi: {
  39329. height: math.unit(5 + 2/12, "feet"),
  39330. name: "Front (Demi)",
  39331. image: {
  39332. source: "./media/characters/gen/front-demi.svg",
  39333. extra: 1627/1538,
  39334. bottom: 71/1698
  39335. }
  39336. },
  39337. backDemi: {
  39338. height: math.unit(5 + 2/12, "feet"),
  39339. name: "Back (Demi)",
  39340. image: {
  39341. source: "./media/characters/gen/back-demi.svg",
  39342. extra: 1638/1548,
  39343. bottom: 69/1707
  39344. }
  39345. },
  39346. },
  39347. [
  39348. {
  39349. name: "Normal",
  39350. height: math.unit(5 + 2/12, "feet"),
  39351. default: true
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39357. {
  39358. frontImp: {
  39359. height: math.unit(1 + 11/12, "feet"),
  39360. name: "Front (Imp)",
  39361. image: {
  39362. source: "./media/characters/max-kobold/front-imp.svg",
  39363. extra: 1238/1134,
  39364. bottom: 81/1319
  39365. }
  39366. },
  39367. backImp: {
  39368. height: math.unit(1 + 11/12, "feet"),
  39369. name: "Back (Imp)",
  39370. image: {
  39371. source: "./media/characters/max-kobold/back-imp.svg",
  39372. extra: 1334/1175,
  39373. bottom: 34/1368
  39374. }
  39375. },
  39376. frontDemi: {
  39377. height: math.unit(5 + 9/12, "feet"),
  39378. name: "Front (Demi)",
  39379. image: {
  39380. source: "./media/characters/max-kobold/front-demi.svg",
  39381. extra: 1715/1685,
  39382. bottom: 54/1769
  39383. }
  39384. },
  39385. backDemi: {
  39386. height: math.unit(5 + 9/12, "feet"),
  39387. name: "Back (Demi)",
  39388. image: {
  39389. source: "./media/characters/max-kobold/back-demi.svg",
  39390. extra: 1752/1729,
  39391. bottom: 41/1793
  39392. }
  39393. },
  39394. handImp: {
  39395. height: math.unit(0.45, "feet"),
  39396. name: "Hand (Imp)",
  39397. image: {
  39398. source: "./media/characters/max-kobold/hand.svg"
  39399. }
  39400. },
  39401. pawImp: {
  39402. height: math.unit(0.46, "feet"),
  39403. name: "Paw (Imp)",
  39404. image: {
  39405. source: "./media/characters/max-kobold/paw.svg"
  39406. }
  39407. },
  39408. handDemi: {
  39409. height: math.unit(0.80, "feet"),
  39410. name: "Hand (Demi)",
  39411. image: {
  39412. source: "./media/characters/max-kobold/hand.svg"
  39413. }
  39414. },
  39415. pawDemi: {
  39416. height: math.unit(1.1, "feet"),
  39417. name: "Paw (Demi)",
  39418. image: {
  39419. source: "./media/characters/max-kobold/paw.svg"
  39420. }
  39421. },
  39422. headImp: {
  39423. height: math.unit(1.33, "feet"),
  39424. name: "Head (Imp)",
  39425. image: {
  39426. source: "./media/characters/max-kobold/head-imp.svg"
  39427. }
  39428. },
  39429. mawImp: {
  39430. height: math.unit(0.75, "feet"),
  39431. name: "Maw (Imp)",
  39432. image: {
  39433. source: "./media/characters/max-kobold/maw-imp.svg"
  39434. }
  39435. },
  39436. mawDemi: {
  39437. height: math.unit(0.42, "feet"),
  39438. name: "Maw (Demi)",
  39439. image: {
  39440. source: "./media/characters/max-kobold/maw-demi.svg"
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Normal",
  39447. height: math.unit(1 + 11/12, "feet"),
  39448. default: true
  39449. },
  39450. ]
  39451. ))
  39452. characterMakers.push(() => makeCharacter(
  39453. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39454. {
  39455. front: {
  39456. height: math.unit(7 + 5/12, "feet"),
  39457. name: "Front",
  39458. image: {
  39459. source: "./media/characters/carbon/front.svg",
  39460. extra: 1754/1689,
  39461. bottom: 65/1819
  39462. }
  39463. },
  39464. back: {
  39465. height: math.unit(7 + 5/12, "feet"),
  39466. name: "Back",
  39467. image: {
  39468. source: "./media/characters/carbon/back.svg",
  39469. extra: 1762/1695,
  39470. bottom: 24/1786
  39471. }
  39472. },
  39473. frontGigantamax: {
  39474. height: math.unit(150, "feet"),
  39475. name: "Front (Gigantamax)",
  39476. image: {
  39477. source: "./media/characters/carbon/front-gigantamax.svg",
  39478. extra: 1826/1669,
  39479. bottom: 59/1885
  39480. }
  39481. },
  39482. backGigantamax: {
  39483. height: math.unit(150, "feet"),
  39484. name: "Back (Gigantamax)",
  39485. image: {
  39486. source: "./media/characters/carbon/back-gigantamax.svg",
  39487. extra: 1796/1653,
  39488. bottom: 53/1849
  39489. }
  39490. },
  39491. maw: {
  39492. height: math.unit(0.48, "feet"),
  39493. name: "Maw",
  39494. image: {
  39495. source: "./media/characters/carbon/maw.svg"
  39496. }
  39497. },
  39498. mawGigantamax: {
  39499. height: math.unit(7.5, "feet"),
  39500. name: "Maw (Gigantamax)",
  39501. image: {
  39502. source: "./media/characters/carbon/maw-gigantamax.svg"
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(7 + 5/12, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(6, "feet"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/maverick/front.svg",
  39522. extra: 1672/1661,
  39523. bottom: 85/1757
  39524. }
  39525. },
  39526. back: {
  39527. height: math.unit(6, "feet"),
  39528. name: "Back",
  39529. image: {
  39530. source: "./media/characters/maverick/back.svg",
  39531. extra: 1642/1631,
  39532. bottom: 38/1680
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(6, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39546. {
  39547. front: {
  39548. height: math.unit(15, "feet"),
  39549. weight: math.unit(615, "lb"),
  39550. name: "Front",
  39551. image: {
  39552. source: "./media/characters/grockle/front.svg",
  39553. extra: 1535/1427,
  39554. bottom: 56/1591
  39555. }
  39556. },
  39557. },
  39558. [
  39559. {
  39560. name: "Normal",
  39561. height: math.unit(15, "feet"),
  39562. default: true
  39563. },
  39564. {
  39565. name: "Large",
  39566. height: math.unit(150, "feet")
  39567. },
  39568. {
  39569. name: "Macro",
  39570. height: math.unit(1876, "feet")
  39571. },
  39572. {
  39573. name: "Mega Macro",
  39574. height: math.unit(121940, "feet")
  39575. },
  39576. {
  39577. name: "Giga Macro",
  39578. height: math.unit(750, "km")
  39579. },
  39580. {
  39581. name: "Tera Macro",
  39582. height: math.unit(750000, "km")
  39583. },
  39584. {
  39585. name: "Galactic",
  39586. height: math.unit(1.4e5, "km")
  39587. },
  39588. {
  39589. name: "Godlike",
  39590. height: math.unit(9.8e280, "galaxies")
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(11, "meters"),
  39599. weight: math.unit(20, "tonnes"),
  39600. name: "Front",
  39601. image: {
  39602. source: "./media/characters/alistair/front.svg",
  39603. extra: 1265/1009,
  39604. bottom: 93/1358
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Normal",
  39611. height: math.unit(11, "meters"),
  39612. default: true
  39613. },
  39614. ]
  39615. ))
  39616. characterMakers.push(() => makeCharacter(
  39617. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39618. {
  39619. front: {
  39620. height: math.unit(5 + 8/12, "feet"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/haruka/front.svg",
  39624. extra: 2012/1952,
  39625. bottom: 0/2012
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Normal",
  39632. height: math.unit(5 + 8/12, "feet"),
  39633. default: true
  39634. },
  39635. ]
  39636. ))
  39637. characterMakers.push(() => makeCharacter(
  39638. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39639. {
  39640. back: {
  39641. height: math.unit(9, "feet"),
  39642. name: "Back",
  39643. image: {
  39644. source: "./media/characters/vivian-sylveon/back.svg",
  39645. extra: 1853/1714,
  39646. bottom: 0/1853
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(9, "feet"),
  39654. default: true
  39655. },
  39656. {
  39657. name: "Macro",
  39658. height: math.unit(500, "feet")
  39659. },
  39660. {
  39661. name: "Megamacro",
  39662. height: math.unit(600, "miles")
  39663. },
  39664. {
  39665. name: "Gigamacro",
  39666. height: math.unit(30000, "miles")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39672. {
  39673. anthro: {
  39674. height: math.unit(5 + 10/12, "feet"),
  39675. weight: math.unit(100, "lb"),
  39676. name: "Anthro",
  39677. image: {
  39678. source: "./media/characters/daiki/anthro.svg",
  39679. extra: 1115/1027,
  39680. bottom: 69/1184
  39681. }
  39682. },
  39683. feral: {
  39684. height: math.unit(200, "feet"),
  39685. name: "Feral",
  39686. image: {
  39687. source: "./media/characters/daiki/feral.svg",
  39688. extra: 1256/313,
  39689. bottom: 39/1295
  39690. }
  39691. },
  39692. feralHead: {
  39693. height: math.unit(171, "feet"),
  39694. name: "Feral Head",
  39695. image: {
  39696. source: "./media/characters/daiki/feral-head.svg"
  39697. }
  39698. },
  39699. manaDragon: {
  39700. height: math.unit(170, "meters"),
  39701. name: "Mana-dragon",
  39702. image: {
  39703. source: "./media/characters/daiki/mana-dragon.svg",
  39704. extra: 763/420,
  39705. bottom: 97/860
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Normal",
  39712. height: math.unit(5 + 10/12, "feet"),
  39713. default: true
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39719. {
  39720. fullyEquippedFront: {
  39721. height: math.unit(3 + 1/12, "feet"),
  39722. weight: math.unit(24, "lb"),
  39723. name: "Fully Equipped (Front)",
  39724. image: {
  39725. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39726. extra: 687/605,
  39727. bottom: 18/705
  39728. }
  39729. },
  39730. fullyEquippedBack: {
  39731. height: math.unit(3 + 1/12, "feet"),
  39732. weight: math.unit(24, "lb"),
  39733. name: "Fully Equipped (Back)",
  39734. image: {
  39735. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39736. extra: 689/590,
  39737. bottom: 18/707
  39738. }
  39739. },
  39740. dailyWear: {
  39741. height: math.unit(3 + 1/12, "feet"),
  39742. weight: math.unit(24, "lb"),
  39743. name: "Daily Wear",
  39744. image: {
  39745. source: "./media/characters/tea-spot/daily-wear.svg",
  39746. extra: 701/620,
  39747. bottom: 21/722
  39748. }
  39749. },
  39750. maidWork: {
  39751. height: math.unit(3 + 1/12, "feet"),
  39752. weight: math.unit(24, "lb"),
  39753. name: "Maid Work",
  39754. image: {
  39755. source: "./media/characters/tea-spot/maid-work.svg",
  39756. extra: 693/609,
  39757. bottom: 15/708
  39758. }
  39759. },
  39760. },
  39761. [
  39762. {
  39763. name: "Normal",
  39764. height: math.unit(3 + 1/12, "feet"),
  39765. default: true
  39766. },
  39767. ]
  39768. ))
  39769. characterMakers.push(() => makeCharacter(
  39770. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39771. {
  39772. front: {
  39773. height: math.unit(175, "cm"),
  39774. weight: math.unit(75, "kg"),
  39775. name: "Front",
  39776. image: {
  39777. source: "./media/characters/chee/front.svg",
  39778. extra: 1796/1740,
  39779. bottom: 40/1836
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Micro-Micro",
  39786. height: math.unit(1, "nm")
  39787. },
  39788. {
  39789. name: "Micro-erst",
  39790. height: math.unit(1, "micrometer")
  39791. },
  39792. {
  39793. name: "Micro-er",
  39794. height: math.unit(1, "cm")
  39795. },
  39796. {
  39797. name: "Normal",
  39798. height: math.unit(175, "cm"),
  39799. default: true
  39800. },
  39801. {
  39802. name: "Macro",
  39803. height: math.unit(100, "m")
  39804. },
  39805. {
  39806. name: "Macro-er",
  39807. height: math.unit(1, "km")
  39808. },
  39809. {
  39810. name: "Macro-erst",
  39811. height: math.unit(10, "km")
  39812. },
  39813. {
  39814. name: "Macro-Macro",
  39815. height: math.unit(100, "km")
  39816. },
  39817. ]
  39818. ))
  39819. characterMakers.push(() => makeCharacter(
  39820. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39821. {
  39822. front: {
  39823. height: math.unit(11 + 9/12, "feet"),
  39824. weight: math.unit(935, "lb"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/kingsley/front.svg",
  39828. extra: 1803/1674,
  39829. bottom: 127/1930
  39830. }
  39831. },
  39832. frontNude: {
  39833. height: math.unit(11 + 9/12, "feet"),
  39834. weight: math.unit(935, "lb"),
  39835. name: "Front (Nude)",
  39836. image: {
  39837. source: "./media/characters/kingsley/front-nude.svg",
  39838. extra: 1803/1674,
  39839. bottom: 127/1930
  39840. }
  39841. },
  39842. },
  39843. [
  39844. {
  39845. name: "Normal",
  39846. height: math.unit(11 + 9/12, "feet"),
  39847. default: true
  39848. },
  39849. ]
  39850. ))
  39851. characterMakers.push(() => makeCharacter(
  39852. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39853. {
  39854. side: {
  39855. height: math.unit(9, "feet"),
  39856. name: "Side",
  39857. image: {
  39858. source: "./media/characters/rymel/side.svg",
  39859. extra: 792/469,
  39860. bottom: 121/913
  39861. }
  39862. },
  39863. maw: {
  39864. height: math.unit(2.4, "meters"),
  39865. name: "Maw",
  39866. image: {
  39867. source: "./media/characters/rymel/maw.svg"
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "House Drake",
  39874. height: math.unit(2, "feet")
  39875. },
  39876. {
  39877. name: "Reduced",
  39878. height: math.unit(4.5, "feet")
  39879. },
  39880. {
  39881. name: "Normal",
  39882. height: math.unit(9, "feet"),
  39883. default: true
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(1.74, "meters"),
  39892. weight: math.unit(55, "kg"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/rubus/front.svg",
  39896. extra: 1894/1742,
  39897. bottom: 44/1938
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(1.74, "meters"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(5 + 2/12, "feet"),
  39914. weight: math.unit(112, "lb"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/cassie-kingston/front.svg",
  39918. extra: 1438/1390,
  39919. bottom: 47/1485
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(5 + 2/12, "feet"),
  39927. default: true
  39928. },
  39929. {
  39930. name: "Macro",
  39931. height: math.unit(128, "feet")
  39932. },
  39933. {
  39934. name: "Megamacro",
  39935. height: math.unit(2.56, "miles")
  39936. },
  39937. ]
  39938. ))
  39939. characterMakers.push(() => makeCharacter(
  39940. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39941. {
  39942. front: {
  39943. height: math.unit(7, "feet"),
  39944. name: "Front",
  39945. image: {
  39946. source: "./media/characters/fox/front.svg",
  39947. extra: 1798/1703,
  39948. bottom: 55/1853
  39949. }
  39950. },
  39951. back: {
  39952. height: math.unit(7, "feet"),
  39953. name: "Back",
  39954. image: {
  39955. source: "./media/characters/fox/back.svg",
  39956. extra: 1748/1649,
  39957. bottom: 32/1780
  39958. }
  39959. },
  39960. head: {
  39961. height: math.unit(1.95, "feet"),
  39962. name: "Head",
  39963. image: {
  39964. source: "./media/characters/fox/head.svg"
  39965. }
  39966. },
  39967. dick: {
  39968. height: math.unit(1.33, "feet"),
  39969. name: "Dick",
  39970. image: {
  39971. source: "./media/characters/fox/dick.svg"
  39972. }
  39973. },
  39974. foot: {
  39975. height: math.unit(1, "feet"),
  39976. name: "Foot",
  39977. image: {
  39978. source: "./media/characters/fox/foot.svg"
  39979. }
  39980. },
  39981. paw: {
  39982. height: math.unit(0.92, "feet"),
  39983. name: "Paw",
  39984. image: {
  39985. source: "./media/characters/fox/paw.svg"
  39986. }
  39987. },
  39988. },
  39989. [
  39990. {
  39991. name: "Small",
  39992. height: math.unit(3, "inches")
  39993. },
  39994. {
  39995. name: "\"Realistic\"",
  39996. height: math.unit(7, "feet")
  39997. },
  39998. {
  39999. name: "Normal",
  40000. height: math.unit(150, "feet"),
  40001. default: true
  40002. },
  40003. {
  40004. name: "BIG",
  40005. height: math.unit(1200, "feet")
  40006. },
  40007. {
  40008. name: "👀",
  40009. height: math.unit(5, "miles")
  40010. },
  40011. {
  40012. name: "👀👀👀",
  40013. height: math.unit(64, "miles")
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40019. {
  40020. front: {
  40021. height: math.unit(625, "feet"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/asonja-rossa/front.svg",
  40025. extra: 1833/1686,
  40026. bottom: 24/1857
  40027. }
  40028. },
  40029. back: {
  40030. height: math.unit(625, "feet"),
  40031. name: "Back",
  40032. image: {
  40033. source: "./media/characters/asonja-rossa/back.svg",
  40034. extra: 1852/1753,
  40035. bottom: 26/1878
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(625, "feet"),
  40043. default: true
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40049. {
  40050. side: {
  40051. height: math.unit(8, "feet"),
  40052. name: "Side",
  40053. image: {
  40054. source: "./media/characters/rezukii/side.svg",
  40055. extra: 979/542,
  40056. bottom: 87/1066
  40057. }
  40058. },
  40059. sitting: {
  40060. height: math.unit(14.6, "feet"),
  40061. name: "Sitting",
  40062. image: {
  40063. source: "./media/characters/rezukii/sitting.svg",
  40064. extra: 1023/813,
  40065. bottom: 45/1068
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Tiny",
  40072. height: math.unit(2, "feet")
  40073. },
  40074. {
  40075. name: "Smol",
  40076. height: math.unit(4, "feet")
  40077. },
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(8, "feet"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Big",
  40085. height: math.unit(12, "feet")
  40086. },
  40087. {
  40088. name: "Macro",
  40089. height: math.unit(30, "feet")
  40090. },
  40091. ]
  40092. ))
  40093. characterMakers.push(() => makeCharacter(
  40094. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40095. {
  40096. front: {
  40097. height: math.unit(14, "feet"),
  40098. weight: math.unit(9.5, "tonnes"),
  40099. name: "Front",
  40100. image: {
  40101. source: "./media/characters/dawnheart/front.svg",
  40102. extra: 2792/2675,
  40103. bottom: 64/2856
  40104. }
  40105. },
  40106. },
  40107. [
  40108. {
  40109. name: "Normal",
  40110. height: math.unit(14, "feet"),
  40111. default: true
  40112. },
  40113. ]
  40114. ))
  40115. characterMakers.push(() => makeCharacter(
  40116. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40117. {
  40118. front: {
  40119. height: math.unit(1.7, "m"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/gladi/front.svg",
  40123. extra: 1460/1362,
  40124. bottom: 19/1479
  40125. }
  40126. },
  40127. back: {
  40128. height: math.unit(1.7, "m"),
  40129. name: "Back",
  40130. image: {
  40131. source: "./media/characters/gladi/back.svg",
  40132. extra: 1459/1357,
  40133. bottom: 12/1471
  40134. }
  40135. },
  40136. feral: {
  40137. height: math.unit(2.05, "m"),
  40138. name: "Feral",
  40139. image: {
  40140. source: "./media/characters/gladi/feral.svg",
  40141. extra: 821/557,
  40142. bottom: 91/912
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Shortest",
  40149. height: math.unit(70, "cm")
  40150. },
  40151. {
  40152. name: "Normal",
  40153. height: math.unit(1.7, "m")
  40154. },
  40155. {
  40156. name: "Macro",
  40157. height: math.unit(10, "m"),
  40158. default: true
  40159. },
  40160. {
  40161. name: "Tallest",
  40162. height: math.unit(200, "m")
  40163. },
  40164. ]
  40165. ))
  40166. characterMakers.push(() => makeCharacter(
  40167. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40168. {
  40169. front: {
  40170. height: math.unit(5 + 7/12, "feet"),
  40171. weight: math.unit(2, "tons"),
  40172. name: "Front",
  40173. image: {
  40174. source: "./media/characters/erdno/front.svg",
  40175. extra: 1234/1129,
  40176. bottom: 35/1269
  40177. }
  40178. },
  40179. angled: {
  40180. height: math.unit(5 + 7/12, "feet"),
  40181. weight: math.unit(2, "tons"),
  40182. name: "Angled",
  40183. image: {
  40184. source: "./media/characters/erdno/angled.svg",
  40185. extra: 1185/1139,
  40186. bottom: 36/1221
  40187. }
  40188. },
  40189. side: {
  40190. height: math.unit(5 + 7/12, "feet"),
  40191. weight: math.unit(2, "tons"),
  40192. name: "Side",
  40193. image: {
  40194. source: "./media/characters/erdno/side.svg",
  40195. extra: 1191/1144,
  40196. bottom: 40/1231
  40197. }
  40198. },
  40199. back: {
  40200. height: math.unit(5 + 7/12, "feet"),
  40201. weight: math.unit(2, "tons"),
  40202. name: "Back",
  40203. image: {
  40204. source: "./media/characters/erdno/back.svg",
  40205. extra: 1202/1146,
  40206. bottom: 17/1219
  40207. }
  40208. },
  40209. frontNsfw: {
  40210. height: math.unit(5 + 7/12, "feet"),
  40211. weight: math.unit(2, "tons"),
  40212. name: "Front (NSFW)",
  40213. image: {
  40214. source: "./media/characters/erdno/front-nsfw.svg",
  40215. extra: 1234/1129,
  40216. bottom: 35/1269
  40217. }
  40218. },
  40219. angledNsfw: {
  40220. height: math.unit(5 + 7/12, "feet"),
  40221. weight: math.unit(2, "tons"),
  40222. name: "Angled (NSFW)",
  40223. image: {
  40224. source: "./media/characters/erdno/angled-nsfw.svg",
  40225. extra: 1185/1139,
  40226. bottom: 36/1221
  40227. }
  40228. },
  40229. sideNsfw: {
  40230. height: math.unit(5 + 7/12, "feet"),
  40231. weight: math.unit(2, "tons"),
  40232. name: "Side (NSFW)",
  40233. image: {
  40234. source: "./media/characters/erdno/side-nsfw.svg",
  40235. extra: 1191/1144,
  40236. bottom: 40/1231
  40237. }
  40238. },
  40239. backNsfw: {
  40240. height: math.unit(5 + 7/12, "feet"),
  40241. weight: math.unit(2, "tons"),
  40242. name: "Back (NSFW)",
  40243. image: {
  40244. source: "./media/characters/erdno/back-nsfw.svg",
  40245. extra: 1202/1146,
  40246. bottom: 17/1219
  40247. }
  40248. },
  40249. frontHyper: {
  40250. height: math.unit(5 + 7/12, "feet"),
  40251. weight: math.unit(2, "tons"),
  40252. name: "Front (Hyper)",
  40253. image: {
  40254. source: "./media/characters/erdno/front-hyper.svg",
  40255. extra: 1298/1136,
  40256. bottom: 35/1333
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(5 + 7/12, "feet"),
  40264. default: true
  40265. },
  40266. {
  40267. name: "Big",
  40268. height: math.unit(5.7, "meters")
  40269. },
  40270. {
  40271. name: "Macro",
  40272. height: math.unit(5.7, "kilometers")
  40273. },
  40274. {
  40275. name: "Megamacro",
  40276. height: math.unit(5.7, "earths")
  40277. },
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(5 + 10/12, "feet"),
  40285. weight: math.unit(150, "lb"),
  40286. name: "Front",
  40287. image: {
  40288. source: "./media/characters/jamie/front.svg",
  40289. extra: 1908/1768,
  40290. bottom: 19/1927
  40291. }
  40292. },
  40293. },
  40294. [
  40295. {
  40296. name: "Minimum",
  40297. height: math.unit(2, "cm")
  40298. },
  40299. {
  40300. name: "Micro",
  40301. height: math.unit(3, "inches")
  40302. },
  40303. {
  40304. name: "Normal",
  40305. height: math.unit(5 + 10/12, "feet"),
  40306. default: true
  40307. },
  40308. {
  40309. name: "Macro",
  40310. height: math.unit(150, "feet")
  40311. },
  40312. {
  40313. name: "Megamacro",
  40314. height: math.unit(10000, "m")
  40315. },
  40316. ]
  40317. ))
  40318. characterMakers.push(() => makeCharacter(
  40319. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40320. {
  40321. front: {
  40322. height: math.unit(2, "meters"),
  40323. weight: math.unit(100, "kg"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/shiron/front.svg",
  40327. extra: 2103/1985,
  40328. bottom: 98/2201
  40329. }
  40330. },
  40331. back: {
  40332. height: math.unit(2, "meters"),
  40333. weight: math.unit(100, "kg"),
  40334. name: "Back",
  40335. image: {
  40336. source: "./media/characters/shiron/back.svg",
  40337. extra: 2110/2015,
  40338. bottom: 89/2199
  40339. }
  40340. },
  40341. hand: {
  40342. height: math.unit(0.96, "feet"),
  40343. name: "Hand",
  40344. image: {
  40345. source: "./media/characters/shiron/hand.svg"
  40346. }
  40347. },
  40348. foot: {
  40349. height: math.unit(1.464, "feet"),
  40350. name: "Foot",
  40351. image: {
  40352. source: "./media/characters/shiron/foot.svg"
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Normal",
  40359. height: math.unit(2, "meters")
  40360. },
  40361. {
  40362. name: "Macro",
  40363. height: math.unit(500, "meters"),
  40364. default: true
  40365. },
  40366. {
  40367. name: "Megamacro",
  40368. height: math.unit(20, "km")
  40369. },
  40370. ]
  40371. ))
  40372. characterMakers.push(() => makeCharacter(
  40373. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40374. {
  40375. front: {
  40376. height: math.unit(6, "feet"),
  40377. name: "Front",
  40378. image: {
  40379. source: "./media/characters/sam/front.svg",
  40380. extra: 849/826,
  40381. bottom: 19/868
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(6, "feet"),
  40389. default: true
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(8 + 4/12, "feet"),
  40398. weight: math.unit(122, "kg"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/namori-kurogawa/front.svg",
  40402. extra: 1894/1576,
  40403. bottom: 34/1928
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(8 + 4/12, "feet"),
  40411. default: true
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(9, "feet"),
  40420. weight: math.unit(621, "lb"),
  40421. name: "Front",
  40422. image: {
  40423. source: "./media/characters/unmru/front.svg",
  40424. extra: 1853/1747,
  40425. bottom: 73/1926
  40426. }
  40427. },
  40428. side: {
  40429. height: math.unit(9, "feet"),
  40430. weight: math.unit(621, "lb"),
  40431. name: "Side",
  40432. image: {
  40433. source: "./media/characters/unmru/side.svg",
  40434. extra: 1781/1671,
  40435. bottom: 127/1908
  40436. }
  40437. },
  40438. back: {
  40439. height: math.unit(9, "feet"),
  40440. weight: math.unit(621, "lb"),
  40441. name: "Back",
  40442. image: {
  40443. source: "./media/characters/unmru/back.svg",
  40444. extra: 1894/1765,
  40445. bottom: 75/1969
  40446. }
  40447. },
  40448. dick: {
  40449. height: math.unit(3, "feet"),
  40450. weight: math.unit(35, "lb"),
  40451. name: "Dick",
  40452. image: {
  40453. source: "./media/characters/unmru/dick.svg"
  40454. }
  40455. },
  40456. },
  40457. [
  40458. {
  40459. name: "Normal",
  40460. height: math.unit(9, "feet")
  40461. },
  40462. {
  40463. name: "Natural",
  40464. height: math.unit(27, "feet"),
  40465. default: true
  40466. },
  40467. {
  40468. name: "Giant",
  40469. height: math.unit(90, "feet")
  40470. },
  40471. {
  40472. name: "Kaiju",
  40473. height: math.unit(270, "feet")
  40474. },
  40475. {
  40476. name: "Macro",
  40477. height: math.unit(900, "feet")
  40478. },
  40479. {
  40480. name: "Macro+",
  40481. height: math.unit(2700, "feet")
  40482. },
  40483. {
  40484. name: "Megamacro",
  40485. height: math.unit(9000, "feet")
  40486. },
  40487. {
  40488. name: "City-Crushing",
  40489. height: math.unit(27000, "feet")
  40490. },
  40491. {
  40492. name: "Mountain-Mashing",
  40493. height: math.unit(90000, "feet")
  40494. },
  40495. {
  40496. name: "Earth-Eclipsing",
  40497. height: math.unit(2.7e8, "feet")
  40498. },
  40499. {
  40500. name: "Sol-Swallowing",
  40501. height: math.unit(9e10, "feet")
  40502. },
  40503. {
  40504. name: "Majoris-Munching",
  40505. height: math.unit(2.7e13, "feet")
  40506. },
  40507. ]
  40508. ))
  40509. characterMakers.push(() => makeCharacter(
  40510. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40511. {
  40512. front: {
  40513. height: math.unit(1, "inch"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/squeaks-mouse/front.svg",
  40517. extra: 352/308,
  40518. bottom: 25/377
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Micro",
  40525. height: math.unit(1, "inch"),
  40526. default: true
  40527. },
  40528. ]
  40529. ))
  40530. characterMakers.push(() => makeCharacter(
  40531. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40532. {
  40533. side: {
  40534. height: math.unit(35, "feet"),
  40535. name: "Side",
  40536. image: {
  40537. source: "./media/characters/sayko/side.svg",
  40538. extra: 1697/1021,
  40539. bottom: 82/1779
  40540. }
  40541. },
  40542. head: {
  40543. height: math.unit(16, "feet"),
  40544. name: "Head",
  40545. image: {
  40546. source: "./media/characters/sayko/head.svg"
  40547. }
  40548. },
  40549. forepaw: {
  40550. height: math.unit(7.85, "feet"),
  40551. name: "Forepaw",
  40552. image: {
  40553. source: "./media/characters/sayko/forepaw.svg"
  40554. }
  40555. },
  40556. hindpaw: {
  40557. height: math.unit(8.8, "feet"),
  40558. name: "Hindpaw",
  40559. image: {
  40560. source: "./media/characters/sayko/hindpaw.svg"
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Normal",
  40567. height: math.unit(35, "feet"),
  40568. default: true
  40569. },
  40570. {
  40571. name: "Colossus",
  40572. height: math.unit(100, "meters")
  40573. },
  40574. {
  40575. name: "\"Small\" Deity",
  40576. height: math.unit(1, "km")
  40577. },
  40578. {
  40579. name: "\"Large\" Deity",
  40580. height: math.unit(15, "km")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(6, "feet"),
  40589. weight: math.unit(250, "lb"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/mukiro/front.svg",
  40593. extra: 1368/1310,
  40594. bottom: 34/1402
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(6, "feet"),
  40602. default: true
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(12 + 4/12, "feet"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40614. extra: 1346/1311,
  40615. bottom: 65/1411
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Base",
  40622. height: math.unit(12 + 4/12, "feet"),
  40623. default: true
  40624. },
  40625. {
  40626. name: "Macro",
  40627. height: math.unit(150, "feet")
  40628. },
  40629. {
  40630. name: "Mega",
  40631. height: math.unit(2, "miles")
  40632. },
  40633. {
  40634. name: "Demi God",
  40635. height: math.unit(4, "AU")
  40636. },
  40637. {
  40638. name: "God Size",
  40639. height: math.unit(1, "universe")
  40640. },
  40641. ]
  40642. ))
  40643. characterMakers.push(() => makeCharacter(
  40644. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40645. {
  40646. front: {
  40647. height: math.unit(3 + 3/12, "feet"),
  40648. weight: math.unit(88, "lb"),
  40649. name: "Front",
  40650. image: {
  40651. source: "./media/characters/trey/front.svg",
  40652. extra: 1815/1509,
  40653. bottom: 60/1875
  40654. }
  40655. },
  40656. },
  40657. [
  40658. {
  40659. name: "Normal",
  40660. height: math.unit(3 + 3/12, "feet"),
  40661. default: true
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40667. {
  40668. front: {
  40669. height: math.unit(4, "meters"),
  40670. name: "Front",
  40671. image: {
  40672. source: "./media/characters/adelonda/front.svg",
  40673. extra: 1077/982,
  40674. bottom: 39/1116
  40675. }
  40676. },
  40677. back: {
  40678. height: math.unit(4, "meters"),
  40679. name: "Back",
  40680. image: {
  40681. source: "./media/characters/adelonda/back.svg",
  40682. extra: 1105/1003,
  40683. bottom: 25/1130
  40684. }
  40685. },
  40686. feral: {
  40687. height: math.unit(40/1.5, "meters"),
  40688. name: "Feral",
  40689. image: {
  40690. source: "./media/characters/adelonda/feral.svg",
  40691. extra: 597/271,
  40692. bottom: 387/984
  40693. }
  40694. },
  40695. },
  40696. [
  40697. {
  40698. name: "Normal",
  40699. height: math.unit(4, "meters"),
  40700. default: true
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(8 + 4/12, "feet"),
  40709. weight: math.unit(670, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/acadiel/front.svg",
  40713. extra: 1901/1595,
  40714. bottom: 142/2043
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(8 + 4/12, "feet"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Macro",
  40726. height: math.unit(200, "feet")
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40732. {
  40733. front: {
  40734. height: math.unit(6 + 2/12, "feet"),
  40735. weight: math.unit(185, "lb"),
  40736. name: "Front",
  40737. image: {
  40738. source: "./media/characters/kayne-ein/front.svg",
  40739. extra: 1780/1560,
  40740. bottom: 81/1861
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Normal",
  40747. height: math.unit(6 + 2/12, "feet"),
  40748. default: true
  40749. },
  40750. {
  40751. name: "Transformation Stage",
  40752. height: math.unit(15, "feet")
  40753. },
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(150, "feet")
  40757. },
  40758. {
  40759. name: "Earth's Shadow",
  40760. height: math.unit(6200, "miles")
  40761. },
  40762. {
  40763. name: "Universal Demon",
  40764. height: math.unit(28e9, "parsecs")
  40765. },
  40766. {
  40767. name: "Multiverse God",
  40768. height: math.unit(3, "multiverses")
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40774. {
  40775. front: {
  40776. height: math.unit(5 + 5/12, "feet"),
  40777. name: "Front",
  40778. image: {
  40779. source: "./media/characters/fawn/front.svg",
  40780. extra: 1873/1731,
  40781. bottom: 95/1968
  40782. }
  40783. },
  40784. back: {
  40785. height: math.unit(5 + 5/12, "feet"),
  40786. name: "Back",
  40787. image: {
  40788. source: "./media/characters/fawn/back.svg",
  40789. extra: 1813/1700,
  40790. bottom: 14/1827
  40791. }
  40792. },
  40793. hoof: {
  40794. height: math.unit(1.45, "feet"),
  40795. name: "Hoof",
  40796. image: {
  40797. source: "./media/characters/fawn/hoof.svg"
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(5 + 5/12, "feet"),
  40805. default: true
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(2 + 5/12, "feet"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/orion/front.svg",
  40817. extra: 1366/1304,
  40818. bottom: 43/1409
  40819. }
  40820. },
  40821. paw: {
  40822. height: math.unit(0.52, "feet"),
  40823. name: "Paw",
  40824. image: {
  40825. source: "./media/characters/orion/paw.svg"
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Normal",
  40832. height: math.unit(2 + 5/12, "feet"),
  40833. default: true
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(5 + 10/12, "feet"),
  40842. name: "Front",
  40843. image: {
  40844. source: "./media/characters/vera/front.svg",
  40845. extra: 1680/1575,
  40846. bottom: 49/1729
  40847. }
  40848. },
  40849. back: {
  40850. height: math.unit(5 + 10/12, "feet"),
  40851. name: "Back",
  40852. image: {
  40853. source: "./media/characters/vera/back.svg",
  40854. extra: 1700/1588,
  40855. bottom: 18/1718
  40856. }
  40857. },
  40858. arcanine: {
  40859. height: math.unit(6 + 8/12, "feet"),
  40860. name: "Arcanine",
  40861. image: {
  40862. source: "./media/characters/vera/arcanine.svg",
  40863. extra: 1590/1511,
  40864. bottom: 71/1661
  40865. }
  40866. },
  40867. maw: {
  40868. height: math.unit(0.82, "feet"),
  40869. name: "Maw",
  40870. image: {
  40871. source: "./media/characters/vera/maw.svg"
  40872. }
  40873. },
  40874. mawArcanine: {
  40875. height: math.unit(0.97, "feet"),
  40876. name: "Maw (Arcanine)",
  40877. image: {
  40878. source: "./media/characters/vera/maw-arcanine.svg"
  40879. }
  40880. },
  40881. paw: {
  40882. height: math.unit(0.75, "feet"),
  40883. name: "Paw",
  40884. image: {
  40885. source: "./media/characters/vera/paw.svg"
  40886. }
  40887. },
  40888. pawprint: {
  40889. height: math.unit(0.52, "feet"),
  40890. name: "Pawprint",
  40891. image: {
  40892. source: "./media/characters/vera/pawprint.svg"
  40893. }
  40894. },
  40895. },
  40896. [
  40897. {
  40898. name: "Normal",
  40899. height: math.unit(5 + 10/12, "feet"),
  40900. default: true
  40901. },
  40902. {
  40903. name: "Macro",
  40904. height: math.unit(75, "feet")
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(4, "feet"),
  40913. weight: math.unit(40, "lb"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/orvan-rabbit/front.svg",
  40917. extra: 1896/1642,
  40918. bottom: 29/1925
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Normal",
  40925. height: math.unit(4, "feet"),
  40926. default: true
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(6, "feet"),
  40935. weight: math.unit(168, "lb"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/lisa/front.svg",
  40939. extra: 2065/1867,
  40940. bottom: 46/2111
  40941. }
  40942. },
  40943. back: {
  40944. height: math.unit(6, "feet"),
  40945. weight: math.unit(168, "lb"),
  40946. name: "Back",
  40947. image: {
  40948. source: "./media/characters/lisa/back.svg",
  40949. extra: 1982/1838,
  40950. bottom: 29/2011
  40951. }
  40952. },
  40953. maw: {
  40954. height: math.unit(0.81, "feet"),
  40955. name: "Maw",
  40956. image: {
  40957. source: "./media/characters/lisa/maw.svg"
  40958. }
  40959. },
  40960. paw: {
  40961. height: math.unit(0.9, "feet"),
  40962. name: "Paw",
  40963. image: {
  40964. source: "./media/characters/lisa/paw.svg"
  40965. }
  40966. },
  40967. caribousune: {
  40968. height: math.unit(7 + 2/12, "feet"),
  40969. weight: math.unit(268, "lb"),
  40970. name: "Caribousune",
  40971. image: {
  40972. source: "./media/characters/lisa/caribousune.svg",
  40973. extra: 1843/1633,
  40974. bottom: 29/1872
  40975. }
  40976. },
  40977. frontCaribousune: {
  40978. height: math.unit(7 + 2/12, "feet"),
  40979. weight: math.unit(268, "lb"),
  40980. name: "Front (Caribousune)",
  40981. image: {
  40982. source: "./media/characters/lisa/front-caribousune.svg",
  40983. extra: 1818/1638,
  40984. bottom: 52/1870
  40985. }
  40986. },
  40987. sideCaribousune: {
  40988. height: math.unit(7 + 2/12, "feet"),
  40989. weight: math.unit(268, "lb"),
  40990. name: "Side (Caribousune)",
  40991. image: {
  40992. source: "./media/characters/lisa/side-caribousune.svg",
  40993. extra: 1851/1635,
  40994. bottom: 16/1867
  40995. }
  40996. },
  40997. backCaribousune: {
  40998. height: math.unit(7 + 2/12, "feet"),
  40999. weight: math.unit(268, "lb"),
  41000. name: "Back (Caribousune)",
  41001. image: {
  41002. source: "./media/characters/lisa/back-caribousune.svg",
  41003. extra: 1801/1604,
  41004. bottom: 44/1845
  41005. }
  41006. },
  41007. caribou: {
  41008. height: math.unit(7 + 2/12, "feet"),
  41009. weight: math.unit(268, "lb"),
  41010. name: "Caribou",
  41011. image: {
  41012. source: "./media/characters/lisa/caribou.svg",
  41013. extra: 1843/1633,
  41014. bottom: 29/1872
  41015. }
  41016. },
  41017. frontCaribou: {
  41018. height: math.unit(7 + 2/12, "feet"),
  41019. weight: math.unit(268, "lb"),
  41020. name: "Front (Caribou)",
  41021. image: {
  41022. source: "./media/characters/lisa/front-caribou.svg",
  41023. extra: 1818/1638,
  41024. bottom: 52/1870
  41025. }
  41026. },
  41027. sideCaribou: {
  41028. height: math.unit(7 + 2/12, "feet"),
  41029. weight: math.unit(268, "lb"),
  41030. name: "Side (Caribou)",
  41031. image: {
  41032. source: "./media/characters/lisa/side-caribou.svg",
  41033. extra: 1851/1635,
  41034. bottom: 16/1867
  41035. }
  41036. },
  41037. backCaribou: {
  41038. height: math.unit(7 + 2/12, "feet"),
  41039. weight: math.unit(268, "lb"),
  41040. name: "Back (Caribou)",
  41041. image: {
  41042. source: "./media/characters/lisa/back-caribou.svg",
  41043. extra: 1801/1604,
  41044. bottom: 44/1845
  41045. }
  41046. },
  41047. mawCaribou: {
  41048. height: math.unit(1.45, "feet"),
  41049. name: "Maw (Caribou)",
  41050. image: {
  41051. source: "./media/characters/lisa/maw-caribou.svg"
  41052. }
  41053. },
  41054. mawCaribousune: {
  41055. height: math.unit(1.45, "feet"),
  41056. name: "Maw (Caribousune)",
  41057. image: {
  41058. source: "./media/characters/lisa/maw-caribousune.svg"
  41059. }
  41060. },
  41061. pawCaribousune: {
  41062. height: math.unit(1.61, "feet"),
  41063. name: "Paw (Caribou)",
  41064. image: {
  41065. source: "./media/characters/lisa/paw-caribousune.svg"
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Normal",
  41072. height: math.unit(6, "feet")
  41073. },
  41074. {
  41075. name: "God Size",
  41076. height: math.unit(72, "feet"),
  41077. default: true
  41078. },
  41079. {
  41080. name: "Towering",
  41081. height: math.unit(288, "feet")
  41082. },
  41083. {
  41084. name: "City Size",
  41085. height: math.unit(48384, "feet")
  41086. },
  41087. {
  41088. name: "Continental",
  41089. height: math.unit(4200, "miles")
  41090. },
  41091. {
  41092. name: "Planet Eater",
  41093. height: math.unit(42, "earths")
  41094. },
  41095. {
  41096. name: "Star Swallower",
  41097. height: math.unit(42, "solarradii")
  41098. },
  41099. {
  41100. name: "System Swallower",
  41101. height: math.unit(84000, "AU")
  41102. },
  41103. {
  41104. name: "Galaxy Gobbler",
  41105. height: math.unit(42, "galaxies")
  41106. },
  41107. {
  41108. name: "Universe Devourer",
  41109. height: math.unit(42, "universes")
  41110. },
  41111. {
  41112. name: "Multiverse Muncher",
  41113. height: math.unit(42, "multiverses")
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(36, "feet"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/shadow-rat/front.svg",
  41125. extra: 1845/1758,
  41126. bottom: 83/1928
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Macro",
  41133. height: math.unit(36, "feet"),
  41134. default: true
  41135. },
  41136. ]
  41137. ))
  41138. characterMakers.push(() => makeCharacter(
  41139. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41140. {
  41141. side: {
  41142. height: math.unit(8, "feet"),
  41143. weight: math.unit(2630, "lb"),
  41144. name: "Side",
  41145. image: {
  41146. source: "./media/characters/torallia/side.svg",
  41147. extra: 2164/2021,
  41148. bottom: 371/2535
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Mortal Interaction",
  41155. height: math.unit(8, "feet")
  41156. },
  41157. {
  41158. name: "Natural",
  41159. height: math.unit(24, "feet"),
  41160. default: true
  41161. },
  41162. {
  41163. name: "Giant",
  41164. height: math.unit(80, "feet")
  41165. },
  41166. {
  41167. name: "Kaiju",
  41168. height: math.unit(240, "feet")
  41169. },
  41170. {
  41171. name: "Macro",
  41172. height: math.unit(800, "feet")
  41173. },
  41174. {
  41175. name: "Macro+",
  41176. height: math.unit(2400, "feet")
  41177. },
  41178. {
  41179. name: "Macro++",
  41180. height: math.unit(8000, "feet")
  41181. },
  41182. {
  41183. name: "City-Crushing",
  41184. height: math.unit(24000, "feet")
  41185. },
  41186. {
  41187. name: "Mountain-Mashing",
  41188. height: math.unit(80000, "feet")
  41189. },
  41190. {
  41191. name: "District Demolisher",
  41192. height: math.unit(240000, "feet")
  41193. },
  41194. {
  41195. name: "Tri-County Terror",
  41196. height: math.unit(800000, "feet")
  41197. },
  41198. {
  41199. name: "State Smasher",
  41200. height: math.unit(2.4e6, "feet")
  41201. },
  41202. {
  41203. name: "Nation Nemesis",
  41204. height: math.unit(8e6, "feet")
  41205. },
  41206. {
  41207. name: "Continent Cracker",
  41208. height: math.unit(2.4e7, "feet")
  41209. },
  41210. {
  41211. name: "Planet-Pillaging",
  41212. height: math.unit(8e7, "feet")
  41213. },
  41214. {
  41215. name: "Earth-Eclipsing",
  41216. height: math.unit(2.4e8, "feet")
  41217. },
  41218. {
  41219. name: "Jovian-Jostling",
  41220. height: math.unit(8e8, "feet")
  41221. },
  41222. {
  41223. name: "Gas Giant Gulper",
  41224. height: math.unit(2.4e9, "feet")
  41225. },
  41226. {
  41227. name: "Astral Annihilator",
  41228. height: math.unit(8e9, "feet")
  41229. },
  41230. {
  41231. name: "Celestial Conqueror",
  41232. height: math.unit(2.4e10, "feet")
  41233. },
  41234. {
  41235. name: "Sol-Swallowing",
  41236. height: math.unit(8e10, "feet")
  41237. },
  41238. {
  41239. name: "Hunter of the Heavens",
  41240. height: math.unit(2.4e13, "feet")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(6 + 8/12, "feet"),
  41249. weight: math.unit(250, "kilograms"),
  41250. volume: math.unit(28, "liters"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/rebecca-pawlson/front.svg",
  41254. extra: 1737/1596,
  41255. bottom: 107/1844
  41256. }
  41257. },
  41258. back: {
  41259. height: math.unit(6 + 8/12, "feet"),
  41260. weight: math.unit(250, "kilograms"),
  41261. volume: math.unit(28, "liters"),
  41262. name: "Back",
  41263. image: {
  41264. source: "./media/characters/rebecca-pawlson/back.svg",
  41265. extra: 1702/1523,
  41266. bottom: 86/1788
  41267. }
  41268. },
  41269. },
  41270. [
  41271. {
  41272. name: "Normal",
  41273. height: math.unit(6 + 8/12, "feet")
  41274. },
  41275. {
  41276. name: "Mini Macro",
  41277. height: math.unit(10, "feet"),
  41278. default: true
  41279. },
  41280. {
  41281. name: "Macro",
  41282. height: math.unit(100, "feet")
  41283. },
  41284. {
  41285. name: "Mega Macro",
  41286. height: math.unit(2500, "feet")
  41287. },
  41288. {
  41289. name: "Giga Macro",
  41290. height: math.unit(50, "miles")
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(7 + 6/12, "feet"),
  41299. weight: math.unit(600, "lb"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/moxie-nova/front.svg",
  41303. extra: 1734/1652,
  41304. bottom: 41/1775
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(7 + 6/12, "feet"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41318. {
  41319. goat: {
  41320. height: math.unit(4, "feet"),
  41321. weight: math.unit(180, "lb"),
  41322. name: "Goat",
  41323. image: {
  41324. source: "./media/characters/tiffany/goat.svg",
  41325. extra: 1845/1595,
  41326. bottom: 106/1951
  41327. }
  41328. },
  41329. front: {
  41330. height: math.unit(5, "feet"),
  41331. weight: math.unit(150, "lb"),
  41332. name: "Foxcoon",
  41333. image: {
  41334. source: "./media/characters/tiffany/foxcoon.svg",
  41335. extra: 1941/1845,
  41336. bottom: 58/1999
  41337. }
  41338. },
  41339. },
  41340. [
  41341. {
  41342. name: "Normal",
  41343. height: math.unit(5, "feet"),
  41344. default: true
  41345. },
  41346. ]
  41347. ))
  41348. characterMakers.push(() => makeCharacter(
  41349. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41350. {
  41351. front: {
  41352. height: math.unit(8, "feet"),
  41353. weight: math.unit(300, "lb"),
  41354. name: "Front",
  41355. image: {
  41356. source: "./media/characters/raxinath/front.svg",
  41357. extra: 1407/1309,
  41358. bottom: 39/1446
  41359. }
  41360. },
  41361. back: {
  41362. height: math.unit(8, "feet"),
  41363. weight: math.unit(300, "lb"),
  41364. name: "Back",
  41365. image: {
  41366. source: "./media/characters/raxinath/back.svg",
  41367. extra: 1405/1315,
  41368. bottom: 9/1414
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Speck",
  41375. height: math.unit(0.5, "nm")
  41376. },
  41377. {
  41378. name: "Micro",
  41379. height: math.unit(3, "inches")
  41380. },
  41381. {
  41382. name: "Kobold",
  41383. height: math.unit(3, "feet")
  41384. },
  41385. {
  41386. name: "Normal",
  41387. height: math.unit(8, "feet"),
  41388. default: true
  41389. },
  41390. {
  41391. name: "Giant",
  41392. height: math.unit(50, "feet")
  41393. },
  41394. {
  41395. name: "Macro",
  41396. height: math.unit(1000, "feet")
  41397. },
  41398. {
  41399. name: "Megamacro",
  41400. height: math.unit(1, "mile")
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41406. {
  41407. front: {
  41408. height: math.unit(10, "feet"),
  41409. weight: math.unit(1442, "lb"),
  41410. name: "Front",
  41411. image: {
  41412. source: "./media/characters/mal-dragon/front.svg",
  41413. extra: 1515/1444,
  41414. bottom: 113/1628
  41415. }
  41416. },
  41417. back: {
  41418. height: math.unit(10, "feet"),
  41419. weight: math.unit(1442, "lb"),
  41420. name: "Back",
  41421. image: {
  41422. source: "./media/characters/mal-dragon/back.svg",
  41423. extra: 1527/1434,
  41424. bottom: 25/1552
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Mortal Interaction",
  41431. height: math.unit(10, "feet"),
  41432. default: true
  41433. },
  41434. {
  41435. name: "Large",
  41436. height: math.unit(30, "feet")
  41437. },
  41438. {
  41439. name: "Kaiju",
  41440. height: math.unit(300, "feet")
  41441. },
  41442. {
  41443. name: "Megamacro",
  41444. height: math.unit(10000, "feet")
  41445. },
  41446. {
  41447. name: "Continent Cracker",
  41448. height: math.unit(30000000, "feet")
  41449. },
  41450. {
  41451. name: "Sol-Swallowing",
  41452. height: math.unit(1e11, "feet")
  41453. },
  41454. {
  41455. name: "Light Universal",
  41456. height: math.unit(5, "universes")
  41457. },
  41458. {
  41459. name: "Universe Atoms",
  41460. height: math.unit(1.829e9, "universes")
  41461. },
  41462. {
  41463. name: "Light Multiversal",
  41464. height: math.unit(5, "multiverses")
  41465. },
  41466. {
  41467. name: "Multiverse Atoms",
  41468. height: math.unit(1.829e9, "multiverses")
  41469. },
  41470. {
  41471. name: "Fabric of Time",
  41472. height: math.unit(1e262, "multiverses")
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41478. {
  41479. front: {
  41480. height: math.unit(9, "feet"),
  41481. weight: math.unit(1050, "lb"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/tabitha/front.svg",
  41485. extra: 2083/1994,
  41486. bottom: 68/2151
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Baseline",
  41493. height: math.unit(9, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Giant",
  41498. height: math.unit(90, "feet")
  41499. },
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(900, "feet")
  41503. },
  41504. {
  41505. name: "Megamacro",
  41506. height: math.unit(9000, "feet")
  41507. },
  41508. {
  41509. name: "City-Crushing",
  41510. height: math.unit(27000, "feet")
  41511. },
  41512. {
  41513. name: "Mountain-Mashing",
  41514. height: math.unit(90000, "feet")
  41515. },
  41516. {
  41517. name: "Nation Nemesis",
  41518. height: math.unit(9e6, "feet")
  41519. },
  41520. {
  41521. name: "Continent Cracker",
  41522. height: math.unit(27e6, "feet")
  41523. },
  41524. {
  41525. name: "Earth-Eclipsing",
  41526. height: math.unit(2.7e8, "feet")
  41527. },
  41528. {
  41529. name: "Gas Giant Gulper",
  41530. height: math.unit(2.7e9, "feet")
  41531. },
  41532. {
  41533. name: "Sol-Swallowing",
  41534. height: math.unit(9e10, "feet")
  41535. },
  41536. {
  41537. name: "Galaxy Gulper",
  41538. height: math.unit(9, "galaxies")
  41539. },
  41540. {
  41541. name: "Cosmos Churner",
  41542. height: math.unit(9, "universes")
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41548. {
  41549. front: {
  41550. height: math.unit(160, "cm"),
  41551. weight: math.unit(55, "kg"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/tow/front.svg",
  41555. extra: 1751/1722,
  41556. bottom: 74/1825
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Norm",
  41563. height: math.unit(160, "cm")
  41564. },
  41565. {
  41566. name: "Casual",
  41567. height: math.unit(3200, "m"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Show-Off",
  41572. height: math.unit(160, "km")
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41578. {
  41579. front: {
  41580. height: math.unit(7 + 11/12, "feet"),
  41581. weight: math.unit(342.8, "lb"),
  41582. name: "Front",
  41583. image: {
  41584. source: "./media/characters/vivian-orca-dragon/front.svg",
  41585. extra: 1890/1865,
  41586. bottom: 28/1918
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Micro",
  41593. height: math.unit(5, "inches")
  41594. },
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(7 + 11/12, "feet"),
  41598. default: true
  41599. },
  41600. {
  41601. name: "Macro",
  41602. height: math.unit(395 + 7/12, "feet")
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41608. {
  41609. side: {
  41610. height: math.unit(10, "feet"),
  41611. weight: math.unit(1442, "lb"),
  41612. name: "Side",
  41613. image: {
  41614. source: "./media/characters/lotherakon/side.svg",
  41615. extra: 1604/1497,
  41616. bottom: 89/1693
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Mortal Interaction",
  41623. height: math.unit(10, "feet")
  41624. },
  41625. {
  41626. name: "Large",
  41627. height: math.unit(30, "feet"),
  41628. default: true
  41629. },
  41630. {
  41631. name: "Giant",
  41632. height: math.unit(100, "feet")
  41633. },
  41634. {
  41635. name: "Kaiju",
  41636. height: math.unit(300, "feet")
  41637. },
  41638. {
  41639. name: "Macro",
  41640. height: math.unit(1000, "feet")
  41641. },
  41642. {
  41643. name: "Macro+",
  41644. height: math.unit(3000, "feet")
  41645. },
  41646. {
  41647. name: "Megamacro",
  41648. height: math.unit(10000, "feet")
  41649. },
  41650. {
  41651. name: "City-Crushing",
  41652. height: math.unit(30000, "feet")
  41653. },
  41654. {
  41655. name: "Continent Cracker",
  41656. height: math.unit(30e6, "feet")
  41657. },
  41658. {
  41659. name: "Earth Eclipsing",
  41660. height: math.unit(3e8, "feet")
  41661. },
  41662. {
  41663. name: "Gas Giant Gulper",
  41664. height: math.unit(3e9, "feet")
  41665. },
  41666. {
  41667. name: "Sol-Swallowing",
  41668. height: math.unit(1e11, "feet")
  41669. },
  41670. {
  41671. name: "System Swallower",
  41672. height: math.unit(3e14, "feet")
  41673. },
  41674. {
  41675. name: "Galaxy Gulper",
  41676. height: math.unit(10, "galaxies")
  41677. },
  41678. {
  41679. name: "Light Universal",
  41680. height: math.unit(5, "universes")
  41681. },
  41682. {
  41683. name: "Universe Palm",
  41684. height: math.unit(20, "universes")
  41685. },
  41686. {
  41687. name: "Light Multiversal",
  41688. height: math.unit(5, "multiverses")
  41689. },
  41690. {
  41691. name: "Multiverse Palm",
  41692. height: math.unit(20, "multiverses")
  41693. },
  41694. {
  41695. name: "Inferno Incarnate",
  41696. height: math.unit(1e7, "multiverses")
  41697. },
  41698. ]
  41699. ))
  41700. characterMakers.push(() => makeCharacter(
  41701. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41702. {
  41703. front: {
  41704. height: math.unit(8, "feet"),
  41705. weight: math.unit(1200, "lb"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/malithee/front.svg",
  41709. extra: 1675/1640,
  41710. bottom: 162/1837
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Mortal Interaction",
  41717. height: math.unit(8, "feet"),
  41718. default: true
  41719. },
  41720. {
  41721. name: "Large",
  41722. height: math.unit(24, "feet")
  41723. },
  41724. {
  41725. name: "Kaiju",
  41726. height: math.unit(240, "feet")
  41727. },
  41728. {
  41729. name: "Megamacro",
  41730. height: math.unit(8000, "feet")
  41731. },
  41732. {
  41733. name: "Continent Cracker",
  41734. height: math.unit(24e6, "feet")
  41735. },
  41736. {
  41737. name: "Earth-Eclipsing",
  41738. height: math.unit(2.4e8, "feet")
  41739. },
  41740. {
  41741. name: "Sol-Swallowing",
  41742. height: math.unit(8e10, "feet")
  41743. },
  41744. {
  41745. name: "Galaxy Gulper",
  41746. height: math.unit(8, "galaxies")
  41747. },
  41748. {
  41749. name: "Light Universal",
  41750. height: math.unit(4, "universes")
  41751. },
  41752. {
  41753. name: "Universe Atoms",
  41754. height: math.unit(1.829e9, "universes")
  41755. },
  41756. {
  41757. name: "Light Multiversal",
  41758. height: math.unit(4, "multiverses")
  41759. },
  41760. {
  41761. name: "Multiverse Atoms",
  41762. height: math.unit(1.829e9, "multiverses")
  41763. },
  41764. {
  41765. name: "Nigh-Omnipresence",
  41766. height: math.unit(8e261, "multiverses")
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(10, "feet"),
  41775. weight: math.unit(1500, "lb"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/miles-thestia/front.svg",
  41779. extra: 1812/1727,
  41780. bottom: 86/1898
  41781. }
  41782. },
  41783. back: {
  41784. height: math.unit(10, "feet"),
  41785. weight: math.unit(1500, "lb"),
  41786. name: "Back",
  41787. image: {
  41788. source: "./media/characters/miles-thestia/back.svg",
  41789. extra: 1799/1690,
  41790. bottom: 47/1846
  41791. }
  41792. },
  41793. frontNsfw: {
  41794. height: math.unit(10, "feet"),
  41795. weight: math.unit(1500, "lb"),
  41796. name: "Front (NSFW)",
  41797. image: {
  41798. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41799. extra: 1812/1727,
  41800. bottom: 86/1898
  41801. }
  41802. },
  41803. },
  41804. [
  41805. {
  41806. name: "Mini-Macro",
  41807. height: math.unit(10, "feet"),
  41808. default: true
  41809. },
  41810. ]
  41811. ))
  41812. characterMakers.push(() => makeCharacter(
  41813. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41814. {
  41815. front: {
  41816. height: math.unit(25, "feet"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/titan-s-wulf/front.svg",
  41820. extra: 1560/1484,
  41821. bottom: 76/1636
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Smallest",
  41828. height: math.unit(25, "feet"),
  41829. default: true
  41830. },
  41831. {
  41832. name: "Normal",
  41833. height: math.unit(200, "feet")
  41834. },
  41835. {
  41836. name: "Macro",
  41837. height: math.unit(200000, "feet")
  41838. },
  41839. {
  41840. name: "Multiversal Original",
  41841. height: math.unit(10000, "multiverses")
  41842. },
  41843. ]
  41844. ))
  41845. characterMakers.push(() => makeCharacter(
  41846. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41847. {
  41848. front: {
  41849. height: math.unit(8, "feet"),
  41850. weight: math.unit(553, "lb"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/tawendeh/front.svg",
  41854. extra: 2365/2268,
  41855. bottom: 83/2448
  41856. }
  41857. },
  41858. frontClothed: {
  41859. height: math.unit(8, "feet"),
  41860. weight: math.unit(553, "lb"),
  41861. name: "Front (Clothed)",
  41862. image: {
  41863. source: "./media/characters/tawendeh/front-clothed.svg",
  41864. extra: 2365/2268,
  41865. bottom: 83/2448
  41866. }
  41867. },
  41868. back: {
  41869. height: math.unit(8, "feet"),
  41870. weight: math.unit(553, "lb"),
  41871. name: "Back",
  41872. image: {
  41873. source: "./media/characters/tawendeh/back.svg",
  41874. extra: 2397/2294,
  41875. bottom: 42/2439
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Mortal Interaction",
  41882. height: math.unit(8, "feet"),
  41883. default: true
  41884. },
  41885. {
  41886. name: "Giant",
  41887. height: math.unit(80, "feet")
  41888. },
  41889. {
  41890. name: "Macro",
  41891. height: math.unit(800, "feet")
  41892. },
  41893. {
  41894. name: "Megamacro",
  41895. height: math.unit(8000, "feet")
  41896. },
  41897. {
  41898. name: "City-Crushing",
  41899. height: math.unit(24000, "feet")
  41900. },
  41901. {
  41902. name: "Mountain-Mashing",
  41903. height: math.unit(80000, "feet")
  41904. },
  41905. {
  41906. name: "Nation Nemesis",
  41907. height: math.unit(8e6, "feet")
  41908. },
  41909. {
  41910. name: "Continent Cracker",
  41911. height: math.unit(24e6, "feet")
  41912. },
  41913. {
  41914. name: "Earth-Eclipsing",
  41915. height: math.unit(2.4e8, "feet")
  41916. },
  41917. {
  41918. name: "Gas Giant Gulper",
  41919. height: math.unit(2.4e9, "feet")
  41920. },
  41921. {
  41922. name: "Sol-Swallowing",
  41923. height: math.unit(8e10, "feet")
  41924. },
  41925. {
  41926. name: "Galaxy Gulper",
  41927. height: math.unit(8, "galaxies")
  41928. },
  41929. {
  41930. name: "Cosmos Churner",
  41931. height: math.unit(8, "universes")
  41932. },
  41933. {
  41934. name: "Omnipotent Otter",
  41935. height: math.unit(80, "universes")
  41936. },
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41941. {
  41942. front: {
  41943. height: math.unit(2.6, "meters"),
  41944. weight: math.unit(900, "kg"),
  41945. name: "Front",
  41946. image: {
  41947. source: "./media/characters/neesha/front.svg",
  41948. extra: 1803/1653,
  41949. bottom: 128/1931
  41950. }
  41951. },
  41952. },
  41953. [
  41954. {
  41955. name: "Normal",
  41956. height: math.unit(2.6, "meters"),
  41957. default: true
  41958. },
  41959. {
  41960. name: "Macro",
  41961. height: math.unit(50, "meters")
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41967. {
  41968. front: {
  41969. height: math.unit(5, "feet"),
  41970. weight: math.unit(185, "lb"),
  41971. name: "Front",
  41972. image: {
  41973. source: "./media/characters/kyera/front.svg",
  41974. extra: 1875/1790,
  41975. bottom: 96/1971
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Normal",
  41982. height: math.unit(5, "feet"),
  41983. default: true
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(7 + 6/12, "feet"),
  41992. weight: math.unit(540, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/yuko/front.svg",
  41996. extra: 1282/1222,
  41997. bottom: 101/1383
  41998. }
  41999. },
  42000. frontClothed: {
  42001. height: math.unit(7 + 6/12, "feet"),
  42002. weight: math.unit(540, "lb"),
  42003. name: "Front (Clothed)",
  42004. image: {
  42005. source: "./media/characters/yuko/front-clothed.svg",
  42006. extra: 1282/1222,
  42007. bottom: 101/1383
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(7 + 6/12, "feet"),
  42015. default: true
  42016. },
  42017. {
  42018. name: "Macro",
  42019. height: math.unit(26 + 9/12, "feet")
  42020. },
  42021. {
  42022. name: "Megamacro",
  42023. height: math.unit(300, "feet")
  42024. },
  42025. {
  42026. name: "Gigamacro",
  42027. height: math.unit(5000, "feet")
  42028. },
  42029. {
  42030. name: "Planetary",
  42031. height: math.unit(10000, "miles")
  42032. },
  42033. ]
  42034. ))
  42035. characterMakers.push(() => makeCharacter(
  42036. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42037. {
  42038. front: {
  42039. height: math.unit(8 + 2/12, "feet"),
  42040. weight: math.unit(600, "lb"),
  42041. name: "Front",
  42042. image: {
  42043. source: "./media/characters/deam-nitrel/front.svg",
  42044. extra: 1308/1234,
  42045. bottom: 125/1433
  42046. }
  42047. },
  42048. },
  42049. [
  42050. {
  42051. name: "Normal",
  42052. height: math.unit(8 + 2/12, "feet"),
  42053. default: true
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(6.1, "feet"),
  42062. weight: math.unit(180, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/skyress/front.svg",
  42066. extra: 1045/915,
  42067. bottom: 28/1073
  42068. }
  42069. },
  42070. maw: {
  42071. height: math.unit(1, "feet"),
  42072. name: "Maw",
  42073. image: {
  42074. source: "./media/characters/skyress/maw.svg"
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(6.1, "feet"),
  42082. default: true
  42083. },
  42084. {
  42085. name: "Macro",
  42086. height: math.unit(200, "feet")
  42087. },
  42088. ]
  42089. ))
  42090. characterMakers.push(() => makeCharacter(
  42091. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42092. {
  42093. front: {
  42094. height: math.unit(4 + 2/12, "feet"),
  42095. weight: math.unit(40, "kg"),
  42096. name: "Front",
  42097. image: {
  42098. source: "./media/characters/amethyst-jones/front.svg",
  42099. extra: 1220/1150,
  42100. bottom: 101/1321
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(4 + 2/12, "feet"),
  42108. default: true
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(1.7, "m"),
  42117. weight: math.unit(135, "lb"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/jade/front.svg",
  42121. extra: 1818/1767,
  42122. bottom: 32/1850
  42123. }
  42124. },
  42125. back: {
  42126. height: math.unit(1.7, "m"),
  42127. weight: math.unit(135, "lb"),
  42128. name: "Back",
  42129. image: {
  42130. source: "./media/characters/jade/back.svg",
  42131. extra: 1869/1809,
  42132. bottom: 35/1904
  42133. }
  42134. },
  42135. hand: {
  42136. height: math.unit(0.24, "m"),
  42137. name: "Hand",
  42138. image: {
  42139. source: "./media/characters/jade/hand.svg"
  42140. }
  42141. },
  42142. foot: {
  42143. height: math.unit(0.263, "m"),
  42144. name: "Foot",
  42145. image: {
  42146. source: "./media/characters/jade/foot.svg"
  42147. }
  42148. },
  42149. dick: {
  42150. height: math.unit(0.47, "m"),
  42151. name: "Dick",
  42152. image: {
  42153. source: "./media/characters/jade/dick.svg"
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Micro",
  42160. height: math.unit(22, "cm")
  42161. },
  42162. {
  42163. name: "Normal",
  42164. height: math.unit(1.7, "m"),
  42165. default: true
  42166. },
  42167. {
  42168. name: "Macro",
  42169. height: math.unit(152, "m")
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42175. {
  42176. front: {
  42177. height: math.unit(100, "miles"),
  42178. weight: math.unit(20000, "tons"),
  42179. name: "Front",
  42180. image: {
  42181. source: "./media/characters/cookie/front.svg",
  42182. extra: 1125/1070,
  42183. bottom: 30/1155
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Big",
  42190. height: math.unit(50, "feet")
  42191. },
  42192. {
  42193. name: "Macro",
  42194. height: math.unit(100, "miles"),
  42195. default: true
  42196. },
  42197. {
  42198. name: "Megamacro",
  42199. height: math.unit(90000, "miles")
  42200. },
  42201. ]
  42202. ))
  42203. characterMakers.push(() => makeCharacter(
  42204. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42205. {
  42206. front: {
  42207. height: math.unit(6, "feet"),
  42208. weight: math.unit(145, "lb"),
  42209. name: "Front",
  42210. image: {
  42211. source: "./media/characters/farzian/front.svg",
  42212. extra: 1902/1693,
  42213. bottom: 108/2010
  42214. }
  42215. },
  42216. },
  42217. [
  42218. {
  42219. name: "Macro",
  42220. height: math.unit(500, "feet"),
  42221. default: true
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(3 + 6/12, "feet"),
  42230. weight: math.unit(50, "lb"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/kimberly-tilson/front.svg",
  42234. extra: 1400/1322,
  42235. bottom: 36/1436
  42236. }
  42237. },
  42238. back: {
  42239. height: math.unit(3 + 6/12, "feet"),
  42240. weight: math.unit(50, "lb"),
  42241. name: "Back",
  42242. image: {
  42243. source: "./media/characters/kimberly-tilson/back.svg",
  42244. extra: 1370/1307,
  42245. bottom: 20/1390
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Normal",
  42252. height: math.unit(3 + 6/12, "feet"),
  42253. default: true
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42259. {
  42260. front: {
  42261. height: math.unit(1148, "feet"),
  42262. weight: math.unit(34057, "lb"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/harthos/front.svg",
  42266. extra: 1391/1339,
  42267. bottom: 13/1404
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Macro",
  42274. height: math.unit(1148, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(15, "feet"),
  42284. name: "Front",
  42285. image: {
  42286. source: "./media/characters/hypatia/front.svg",
  42287. extra: 1653/1591,
  42288. bottom: 79/1732
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(15, "feet")
  42296. },
  42297. {
  42298. name: "Small",
  42299. height: math.unit(300, "feet")
  42300. },
  42301. {
  42302. name: "Macro",
  42303. height: math.unit(2500, "feet"),
  42304. default: true
  42305. },
  42306. {
  42307. name: "Mega Macro",
  42308. height: math.unit(1500, "miles")
  42309. },
  42310. {
  42311. name: "Giga Macro",
  42312. height: math.unit(1.5e6, "miles")
  42313. },
  42314. ]
  42315. ))
  42316. characterMakers.push(() => makeCharacter(
  42317. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42318. {
  42319. front: {
  42320. height: math.unit(6, "feet"),
  42321. weight: math.unit(200, "lb"),
  42322. name: "Front",
  42323. image: {
  42324. source: "./media/characters/wulver/front.svg",
  42325. extra: 1724/1632,
  42326. bottom: 130/1854
  42327. }
  42328. },
  42329. frontNsfw: {
  42330. height: math.unit(6, "feet"),
  42331. weight: math.unit(200, "lb"),
  42332. name: "Front (NSFW)",
  42333. image: {
  42334. source: "./media/characters/wulver/front-nsfw.svg",
  42335. extra: 1724/1632,
  42336. bottom: 130/1854
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Human-Sized",
  42343. height: math.unit(6, "feet")
  42344. },
  42345. {
  42346. name: "Normal",
  42347. height: math.unit(4, "meters"),
  42348. default: true
  42349. },
  42350. {
  42351. name: "Large",
  42352. height: math.unit(6, "m")
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(7, "feet"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/maru/front.svg",
  42364. extra: 1595/1570,
  42365. bottom: 0/1595
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(7, "feet"),
  42373. default: true
  42374. },
  42375. {
  42376. name: "Macro",
  42377. height: math.unit(700, "feet")
  42378. },
  42379. {
  42380. name: "Mega Macro",
  42381. height: math.unit(25, "miles")
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(6, "feet"),
  42390. weight: math.unit(170, "lb"),
  42391. name: "Front",
  42392. image: {
  42393. source: "./media/characters/xenon/front.svg",
  42394. extra: 1376/1305,
  42395. bottom: 56/1432
  42396. }
  42397. },
  42398. back: {
  42399. height: math.unit(6, "feet"),
  42400. weight: math.unit(170, "lb"),
  42401. name: "Back",
  42402. image: {
  42403. source: "./media/characters/xenon/back.svg",
  42404. extra: 1328/1259,
  42405. bottom: 95/1423
  42406. }
  42407. },
  42408. maw: {
  42409. height: math.unit(0.52, "feet"),
  42410. name: "Maw",
  42411. image: {
  42412. source: "./media/characters/xenon/maw.svg"
  42413. }
  42414. },
  42415. handLeft: {
  42416. height: math.unit(0.82 * 169 / 153, "feet"),
  42417. name: "Hand (Left)",
  42418. image: {
  42419. source: "./media/characters/xenon/hand-left.svg"
  42420. }
  42421. },
  42422. handRight: {
  42423. height: math.unit(0.82, "feet"),
  42424. name: "Hand (Right)",
  42425. image: {
  42426. source: "./media/characters/xenon/hand-right.svg"
  42427. }
  42428. },
  42429. footLeft: {
  42430. height: math.unit(1.13, "feet"),
  42431. name: "Foot (Left)",
  42432. image: {
  42433. source: "./media/characters/xenon/foot-left.svg"
  42434. }
  42435. },
  42436. footRight: {
  42437. height: math.unit(1.13 * 194 / 196, "feet"),
  42438. name: "Foot (Right)",
  42439. image: {
  42440. source: "./media/characters/xenon/foot-right.svg"
  42441. }
  42442. },
  42443. },
  42444. [
  42445. {
  42446. name: "Micro",
  42447. height: math.unit(0.8, "inches")
  42448. },
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(6, "feet")
  42452. },
  42453. {
  42454. name: "Macro",
  42455. height: math.unit(50, "feet"),
  42456. default: true
  42457. },
  42458. {
  42459. name: "Macro+",
  42460. height: math.unit(250, "feet")
  42461. },
  42462. {
  42463. name: "Megamacro",
  42464. height: math.unit(1500, "feet")
  42465. },
  42466. ]
  42467. ))
  42468. characterMakers.push(() => makeCharacter(
  42469. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42470. {
  42471. front: {
  42472. height: math.unit(7 + 5/12, "feet"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/zane/front.svg",
  42476. extra: 1260/1203,
  42477. bottom: 94/1354
  42478. }
  42479. },
  42480. back: {
  42481. height: math.unit(5.05, "feet"),
  42482. name: "Back",
  42483. image: {
  42484. source: "./media/characters/zane/back.svg",
  42485. extra: 893/829,
  42486. bottom: 30/923
  42487. }
  42488. },
  42489. werewolf: {
  42490. height: math.unit(11, "feet"),
  42491. name: "Werewolf",
  42492. image: {
  42493. source: "./media/characters/zane/werewolf.svg",
  42494. extra: 1383/1323,
  42495. bottom: 89/1472
  42496. }
  42497. },
  42498. foot: {
  42499. height: math.unit(1.46, "feet"),
  42500. name: "Foot",
  42501. image: {
  42502. source: "./media/characters/zane/foot.svg"
  42503. }
  42504. },
  42505. footFront: {
  42506. height: math.unit(0.784, "feet"),
  42507. name: "Foot (Front)",
  42508. image: {
  42509. source: "./media/characters/zane/foot-front.svg"
  42510. }
  42511. },
  42512. dick: {
  42513. height: math.unit(1.95, "feet"),
  42514. name: "Dick",
  42515. image: {
  42516. source: "./media/characters/zane/dick.svg"
  42517. }
  42518. },
  42519. dickWerewolf: {
  42520. height: math.unit(3.77, "feet"),
  42521. name: "Dick (Werewolf)",
  42522. image: {
  42523. source: "./media/characters/zane/dick.svg"
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(7 + 5/12, "feet"),
  42531. default: true
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(6 + 2/12, "feet"),
  42540. weight: math.unit(284, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/benni-desparque/front.svg",
  42544. extra: 1353/1126,
  42545. bottom: 69/1422
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Civilian",
  42552. height: math.unit(6 + 2/12, "feet")
  42553. },
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(98, "feet"),
  42557. default: true
  42558. },
  42559. {
  42560. name: "Kaiju Fighter",
  42561. height: math.unit(268, "feet")
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42567. {
  42568. front: {
  42569. height: math.unit(5, "feet"),
  42570. weight: math.unit(105, "lb"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/maxine/front.svg",
  42574. extra: 1386/1250,
  42575. bottom: 71/1457
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Normal",
  42582. height: math.unit(5, "feet"),
  42583. default: true
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(11 + 7/12, "feet"),
  42592. weight: math.unit(9576, "lb"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/scaly/front.svg",
  42596. extra: 888/867,
  42597. bottom: 36/924
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Normal",
  42604. height: math.unit(11 + 7/12, "feet"),
  42605. default: true
  42606. },
  42607. ]
  42608. ))
  42609. characterMakers.push(() => makeCharacter(
  42610. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42611. {
  42612. front: {
  42613. height: math.unit(6 + 3/12, "feet"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/saelria/front.svg",
  42617. extra: 1243/1138,
  42618. bottom: 46/1289
  42619. }
  42620. },
  42621. },
  42622. [
  42623. {
  42624. name: "Micro",
  42625. height: math.unit(6, "inches"),
  42626. },
  42627. {
  42628. name: "Normal",
  42629. height: math.unit(6 + 3/12, "feet"),
  42630. default: true
  42631. },
  42632. {
  42633. name: "Macro",
  42634. height: math.unit(25, "feet")
  42635. },
  42636. ]
  42637. ))
  42638. characterMakers.push(() => makeCharacter(
  42639. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42640. {
  42641. front: {
  42642. height: math.unit(80, "meters"),
  42643. weight: math.unit(7000, "tonnes"),
  42644. name: "Front",
  42645. image: {
  42646. source: "./media/characters/tef/front.svg",
  42647. extra: 2036/1991,
  42648. bottom: 54/2090
  42649. }
  42650. },
  42651. back: {
  42652. height: math.unit(80, "meters"),
  42653. weight: math.unit(7000, "tonnes"),
  42654. name: "Back",
  42655. image: {
  42656. source: "./media/characters/tef/back.svg",
  42657. extra: 2036/1991,
  42658. bottom: 54/2090
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Macro",
  42665. height: math.unit(80, "meters"),
  42666. default: true
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(13, "feet"),
  42675. weight: math.unit(6, "tons"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/rover/front.svg",
  42679. extra: 1233/1156,
  42680. bottom: 50/1283
  42681. }
  42682. },
  42683. back: {
  42684. height: math.unit(13, "feet"),
  42685. weight: math.unit(6, "tons"),
  42686. name: "Back",
  42687. image: {
  42688. source: "./media/characters/rover/back.svg",
  42689. extra: 1327/1258,
  42690. bottom: 39/1366
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Normal",
  42697. height: math.unit(13, "feet"),
  42698. default: true
  42699. },
  42700. {
  42701. name: "Macro",
  42702. height: math.unit(1300, "feet")
  42703. },
  42704. {
  42705. name: "Megamacro",
  42706. height: math.unit(1300, "miles")
  42707. },
  42708. {
  42709. name: "Gigamacro",
  42710. height: math.unit(1300000, "miles")
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42716. {
  42717. front: {
  42718. height: math.unit(6, "feet"),
  42719. weight: math.unit(150, "lb"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/ariz/front.svg",
  42723. extra: 1401/1346,
  42724. bottom: 5/1406
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(10, "feet"),
  42732. default: true
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(6, "feet"),
  42741. weight: math.unit(140, "lb"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/sigrun/front.svg",
  42745. extra: 1418/1359,
  42746. bottom: 27/1445
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Macro",
  42753. height: math.unit(35, "feet"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(6, "feet"),
  42763. weight: math.unit(150, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/numin/front.svg",
  42767. extra: 1433/1388,
  42768. bottom: 12/1445
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(21.5, "km"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(6, "feet"),
  42785. weight: math.unit(463, "lb"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/melwa/front.svg",
  42789. extra: 1307/1248,
  42790. bottom: 93/1400
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Macro",
  42797. height: math.unit(50, "meters"),
  42798. default: true
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(325, "feet"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/zorkaiju/front.svg",
  42810. extra: 1955/1814,
  42811. bottom: 40/1995
  42812. }
  42813. },
  42814. frontExtended: {
  42815. height: math.unit(325, "feet"),
  42816. name: "Front (Extended)",
  42817. image: {
  42818. source: "./media/characters/zorkaiju/front-extended.svg",
  42819. extra: 1955/1814,
  42820. bottom: 40/1995
  42821. }
  42822. },
  42823. side: {
  42824. height: math.unit(325, "feet"),
  42825. name: "Side",
  42826. image: {
  42827. source: "./media/characters/zorkaiju/side.svg",
  42828. extra: 1495/1396,
  42829. bottom: 17/1512
  42830. }
  42831. },
  42832. sideExtended: {
  42833. height: math.unit(325, "feet"),
  42834. name: "Side (Extended)",
  42835. image: {
  42836. source: "./media/characters/zorkaiju/side-extended.svg",
  42837. extra: 1495/1396,
  42838. bottom: 17/1512
  42839. }
  42840. },
  42841. back: {
  42842. height: math.unit(325, "feet"),
  42843. name: "Back",
  42844. image: {
  42845. source: "./media/characters/zorkaiju/back.svg",
  42846. extra: 1959/1821,
  42847. bottom: 31/1990
  42848. }
  42849. },
  42850. backExtended: {
  42851. height: math.unit(325, "feet"),
  42852. name: "Back (Extended)",
  42853. image: {
  42854. source: "./media/characters/zorkaiju/back-extended.svg",
  42855. extra: 1959/1821,
  42856. bottom: 31/1990
  42857. }
  42858. },
  42859. hand: {
  42860. height: math.unit(58.4, "feet"),
  42861. name: "Hand",
  42862. image: {
  42863. source: "./media/characters/zorkaiju/hand.svg"
  42864. }
  42865. },
  42866. handExtended: {
  42867. height: math.unit(61.4, "feet"),
  42868. name: "Hand (Extended)",
  42869. image: {
  42870. source: "./media/characters/zorkaiju/hand-extended.svg"
  42871. }
  42872. },
  42873. foot: {
  42874. height: math.unit(95, "feet"),
  42875. name: "Foot",
  42876. image: {
  42877. source: "./media/characters/zorkaiju/foot.svg"
  42878. }
  42879. },
  42880. leftArm: {
  42881. height: math.unit(59, "feet"),
  42882. name: "Left Arm",
  42883. image: {
  42884. source: "./media/characters/zorkaiju/left-arm.svg"
  42885. }
  42886. },
  42887. rightArm: {
  42888. height: math.unit(59, "feet"),
  42889. name: "Right Arm",
  42890. image: {
  42891. source: "./media/characters/zorkaiju/right-arm.svg"
  42892. }
  42893. },
  42894. leftArmExtended: {
  42895. height: math.unit(59 * 1.033546, "feet"),
  42896. name: "Left Arm (Extended)",
  42897. image: {
  42898. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42899. }
  42900. },
  42901. rightArmExtended: {
  42902. height: math.unit(59 * 1.0496, "feet"),
  42903. name: "Right Arm (Extended)",
  42904. image: {
  42905. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42906. }
  42907. },
  42908. tail: {
  42909. height: math.unit(104, "feet"),
  42910. name: "Tail",
  42911. image: {
  42912. source: "./media/characters/zorkaiju/tail.svg"
  42913. }
  42914. },
  42915. tailExtended: {
  42916. height: math.unit(104, "feet"),
  42917. name: "Tail (Extended)",
  42918. image: {
  42919. source: "./media/characters/zorkaiju/tail-extended.svg"
  42920. }
  42921. },
  42922. tailBottom: {
  42923. height: math.unit(104, "feet"),
  42924. name: "Tail Bottom",
  42925. image: {
  42926. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42927. }
  42928. },
  42929. crystal: {
  42930. height: math.unit(27.54, "feet"),
  42931. name: "Crystal",
  42932. image: {
  42933. source: "./media/characters/zorkaiju/crystal.svg"
  42934. }
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Kaiju",
  42940. height: math.unit(325, "feet"),
  42941. default: true
  42942. },
  42943. ]
  42944. ))
  42945. characterMakers.push(() => makeCharacter(
  42946. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42947. {
  42948. front: {
  42949. height: math.unit(6 + 1/12, "feet"),
  42950. weight: math.unit(115, "lb"),
  42951. name: "Front",
  42952. image: {
  42953. source: "./media/characters/bailey-belfry/front.svg",
  42954. extra: 1240/1121,
  42955. bottom: 101/1341
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(6 + 1/12, "feet"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42969. {
  42970. side: {
  42971. height: math.unit(4, "meters"),
  42972. weight: math.unit(250, "kg"),
  42973. name: "Side",
  42974. image: {
  42975. source: "./media/characters/blacky/side.svg",
  42976. extra: 1027/919,
  42977. bottom: 43/1070
  42978. }
  42979. },
  42980. maw: {
  42981. height: math.unit(1, "meters"),
  42982. name: "Maw",
  42983. image: {
  42984. source: "./media/characters/blacky/maw.svg"
  42985. }
  42986. },
  42987. paw: {
  42988. height: math.unit(1, "meters"),
  42989. name: "Paw",
  42990. image: {
  42991. source: "./media/characters/blacky/paw.svg"
  42992. }
  42993. },
  42994. },
  42995. [
  42996. {
  42997. name: "Normal",
  42998. height: math.unit(4, "meters"),
  42999. default: true
  43000. },
  43001. ]
  43002. ))
  43003. characterMakers.push(() => makeCharacter(
  43004. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43005. {
  43006. front: {
  43007. height: math.unit(170, "cm"),
  43008. weight: math.unit(66, "kg"),
  43009. name: "Front",
  43010. image: {
  43011. source: "./media/characters/thux-ei/front.svg",
  43012. extra: 1109/1011,
  43013. bottom: 8/1117
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Normal",
  43020. height: math.unit(170, "cm"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(5, "feet"),
  43030. weight: math.unit(120, "lb"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/roxanne-voltaire/front.svg",
  43034. extra: 1901/1779,
  43035. bottom: 53/1954
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(5, "feet"),
  43043. default: true
  43044. },
  43045. {
  43046. name: "Giant",
  43047. height: math.unit(50, "feet")
  43048. },
  43049. {
  43050. name: "Titan",
  43051. height: math.unit(500, "feet")
  43052. },
  43053. {
  43054. name: "Macro",
  43055. height: math.unit(5000, "feet")
  43056. },
  43057. {
  43058. name: "Megamacro",
  43059. height: math.unit(50000, "feet")
  43060. },
  43061. {
  43062. name: "Gigamacro",
  43063. height: math.unit(500000, "feet")
  43064. },
  43065. {
  43066. name: "Teramacro",
  43067. height: math.unit(5e6, "feet")
  43068. },
  43069. ]
  43070. ))
  43071. characterMakers.push(() => makeCharacter(
  43072. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43073. {
  43074. front: {
  43075. height: math.unit(6 + 2/12, "feet"),
  43076. name: "Front",
  43077. image: {
  43078. source: "./media/characters/squeaks/front.svg",
  43079. extra: 1823/1768,
  43080. bottom: 138/1961
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Micro",
  43087. height: math.unit(0.5, "inches")
  43088. },
  43089. {
  43090. name: "Normal",
  43091. height: math.unit(6 + 2/12, "feet"),
  43092. default: true
  43093. },
  43094. {
  43095. name: "Macro",
  43096. height: math.unit(600, "feet")
  43097. },
  43098. ]
  43099. ))
  43100. characterMakers.push(() => makeCharacter(
  43101. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43102. {
  43103. front: {
  43104. height: math.unit(1.72, "meters"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/archinger/front.svg",
  43108. extra: 1861/1675,
  43109. bottom: 125/1986
  43110. }
  43111. },
  43112. back: {
  43113. height: math.unit(1.72, "meters"),
  43114. name: "Back",
  43115. image: {
  43116. source: "./media/characters/archinger/back.svg",
  43117. extra: 1844/1701,
  43118. bottom: 104/1948
  43119. }
  43120. },
  43121. cock: {
  43122. height: math.unit(0.59, "feet"),
  43123. name: "Cock",
  43124. image: {
  43125. source: "./media/characters/archinger/cock.svg"
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(1.72, "meters"),
  43133. default: true
  43134. },
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(84, "meters")
  43138. },
  43139. {
  43140. name: "Macro+",
  43141. height: math.unit(112, "meters")
  43142. },
  43143. {
  43144. name: "Macro++",
  43145. height: math.unit(960, "meters")
  43146. },
  43147. {
  43148. name: "Macro+++",
  43149. height: math.unit(4, "km")
  43150. },
  43151. {
  43152. name: "Macro++++",
  43153. height: math.unit(48, "km")
  43154. },
  43155. {
  43156. name: "Macro+++++",
  43157. height: math.unit(4500, "km")
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(5 + 5/12, "feet"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/alsnapz/front.svg",
  43169. extra: 1157/1065,
  43170. bottom: 42/1199
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(5 + 5/12, "feet"),
  43178. default: true
  43179. },
  43180. ]
  43181. ))
  43182. characterMakers.push(() => makeCharacter(
  43183. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43184. {
  43185. side: {
  43186. height: math.unit(3.2, "earths"),
  43187. name: "Side",
  43188. image: {
  43189. source: "./media/characters/mag/side.svg",
  43190. extra: 1331/1008,
  43191. bottom: 52/1383
  43192. }
  43193. },
  43194. wing: {
  43195. height: math.unit(1.94, "earths"),
  43196. name: "Wing",
  43197. image: {
  43198. source: "./media/characters/mag/wing.svg"
  43199. }
  43200. },
  43201. dick: {
  43202. height: math.unit(1.8, "earths"),
  43203. name: "Dick",
  43204. image: {
  43205. source: "./media/characters/mag/dick.svg"
  43206. }
  43207. },
  43208. ass: {
  43209. height: math.unit(1.33, "earths"),
  43210. name: "Ass",
  43211. image: {
  43212. source: "./media/characters/mag/ass.svg"
  43213. }
  43214. },
  43215. head: {
  43216. height: math.unit(1.1, "earths"),
  43217. name: "Head",
  43218. image: {
  43219. source: "./media/characters/mag/head.svg"
  43220. }
  43221. },
  43222. maw: {
  43223. height: math.unit(1.62, "earths"),
  43224. name: "Maw",
  43225. image: {
  43226. source: "./media/characters/mag/maw.svg"
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Small",
  43233. height: math.unit(162, "feet")
  43234. },
  43235. {
  43236. name: "Normal",
  43237. height: math.unit(3.2, "earths"),
  43238. default: true
  43239. },
  43240. ]
  43241. ))
  43242. characterMakers.push(() => makeCharacter(
  43243. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43244. {
  43245. front: {
  43246. height: math.unit(512, "feet"),
  43247. weight: math.unit(63509, "tonnes"),
  43248. name: "Front",
  43249. image: {
  43250. source: "./media/characters/vorrel-harroc/front.svg",
  43251. extra: 1075/1063,
  43252. bottom: 62/1137
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Normal",
  43259. height: math.unit(10, "feet")
  43260. },
  43261. {
  43262. name: "Macro",
  43263. height: math.unit(512, "feet"),
  43264. default: true
  43265. },
  43266. {
  43267. name: "Megamacro",
  43268. height: math.unit(256, "miles")
  43269. },
  43270. {
  43271. name: "Gigamacro",
  43272. height: math.unit(4096, "miles")
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43278. {
  43279. side: {
  43280. height: math.unit(50, "feet"),
  43281. name: "Side",
  43282. image: {
  43283. source: "./media/characters/froimar/side.svg",
  43284. extra: 855/638,
  43285. bottom: 99/954
  43286. }
  43287. },
  43288. },
  43289. [
  43290. {
  43291. name: "Macro",
  43292. height: math.unit(50, "feet"),
  43293. default: true
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(210, "miles"),
  43302. name: "Front",
  43303. image: {
  43304. source: "./media/characters/timothy/front.svg",
  43305. extra: 1007/943,
  43306. bottom: 62/1069
  43307. }
  43308. },
  43309. frontSkirt: {
  43310. height: math.unit(210, "miles"),
  43311. name: "Front (Skirt)",
  43312. image: {
  43313. source: "./media/characters/timothy/front-skirt.svg",
  43314. extra: 1007/943,
  43315. bottom: 62/1069
  43316. }
  43317. },
  43318. frontCoat: {
  43319. height: math.unit(210, "miles"),
  43320. name: "Front (Coat)",
  43321. image: {
  43322. source: "./media/characters/timothy/front-coat.svg",
  43323. extra: 1007/943,
  43324. bottom: 62/1069
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Macro",
  43331. height: math.unit(210, "miles"),
  43332. default: true
  43333. },
  43334. {
  43335. name: "Megamacro",
  43336. height: math.unit(210000, "miles")
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(188, "feet"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/pyotr/front.svg",
  43348. extra: 1912/1826,
  43349. bottom: 18/1930
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Macro",
  43356. height: math.unit(188, "feet"),
  43357. default: true
  43358. },
  43359. {
  43360. name: "Megamacro",
  43361. height: math.unit(8, "miles")
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43367. {
  43368. side: {
  43369. height: math.unit(10, "feet"),
  43370. weight: math.unit(4500, "lb"),
  43371. name: "Side",
  43372. image: {
  43373. source: "./media/characters/ackart/side.svg",
  43374. extra: 1776/1668,
  43375. bottom: 116/1892
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(10, "feet"),
  43383. default: true
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43389. {
  43390. side: {
  43391. height: math.unit(21, "feet"),
  43392. name: "Side",
  43393. image: {
  43394. source: "./media/characters/nolow/side.svg",
  43395. extra: 1484/1434,
  43396. bottom: 85/1569
  43397. }
  43398. },
  43399. sideErect: {
  43400. height: math.unit(21, "feet"),
  43401. name: "Side-erect",
  43402. image: {
  43403. source: "./media/characters/nolow/side-erect.svg",
  43404. extra: 1484/1434,
  43405. bottom: 85/1569
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Regular",
  43412. height: math.unit(12, "feet")
  43413. },
  43414. {
  43415. name: "Big Chee",
  43416. height: math.unit(21, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(7, "feet"),
  43426. weight: math.unit(250, "lb"),
  43427. name: "Front",
  43428. image: {
  43429. source: "./media/characters/nines/front.svg",
  43430. extra: 1741/1607,
  43431. bottom: 41/1782
  43432. }
  43433. },
  43434. side: {
  43435. height: math.unit(7, "feet"),
  43436. weight: math.unit(250, "lb"),
  43437. name: "Side",
  43438. image: {
  43439. source: "./media/characters/nines/side.svg",
  43440. extra: 1854/1735,
  43441. bottom: 93/1947
  43442. }
  43443. },
  43444. back: {
  43445. height: math.unit(7, "feet"),
  43446. weight: math.unit(250, "lb"),
  43447. name: "Back",
  43448. image: {
  43449. source: "./media/characters/nines/back.svg",
  43450. extra: 1748/1615,
  43451. bottom: 20/1768
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Megamacro",
  43458. height: math.unit(99, "km"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43465. {
  43466. front: {
  43467. height: math.unit(5 + 10/12, "feet"),
  43468. weight: math.unit(210, "lb"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/zenith/front.svg",
  43472. extra: 1531/1452,
  43473. bottom: 198/1729
  43474. }
  43475. },
  43476. back: {
  43477. height: math.unit(5 + 10/12, "feet"),
  43478. weight: math.unit(210, "lb"),
  43479. name: "Back",
  43480. image: {
  43481. source: "./media/characters/zenith/back.svg",
  43482. extra: 1571/1487,
  43483. bottom: 75/1646
  43484. }
  43485. },
  43486. },
  43487. [
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(5 + 10/12, "feet"),
  43491. default: true
  43492. }
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43497. {
  43498. front: {
  43499. height: math.unit(4, "feet"),
  43500. weight: math.unit(60, "lb"),
  43501. name: "Front",
  43502. image: {
  43503. source: "./media/characters/jasper/front.svg",
  43504. extra: 1450/1379,
  43505. bottom: 19/1469
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(4, "feet"),
  43513. default: true
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(6 + 5/12, "feet"),
  43522. weight: math.unit(290, "lb"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/tiberius-thyben/front.svg",
  43526. extra: 757/739,
  43527. bottom: 39/796
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Micro",
  43534. height: math.unit(1.5, "inches")
  43535. },
  43536. {
  43537. name: "Normal",
  43538. height: math.unit(6 + 5/12, "feet"),
  43539. default: true
  43540. },
  43541. {
  43542. name: "Macro",
  43543. height: math.unit(300, "feet")
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(5 + 6/12, "feet"),
  43552. weight: math.unit(60, "kg"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/sabre/front.svg",
  43556. extra: 738/671,
  43557. bottom: 27/765
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Teeny",
  43564. height: math.unit(2, "inches")
  43565. },
  43566. {
  43567. name: "Smol",
  43568. height: math.unit(8, "inches")
  43569. },
  43570. {
  43571. name: "Normal",
  43572. height: math.unit(5 + 6/12, "feet"),
  43573. default: true
  43574. },
  43575. {
  43576. name: "Mini-Macro",
  43577. height: math.unit(15, "feet")
  43578. },
  43579. {
  43580. name: "Macro",
  43581. height: math.unit(50, "feet")
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(6 + 4/12, "feet"),
  43590. weight: math.unit(170, "lb"),
  43591. name: "Front",
  43592. image: {
  43593. source: "./media/characters/charlie/front.svg",
  43594. extra: 1348/1228,
  43595. bottom: 15/1363
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Macro",
  43602. height: math.unit(1700, "meters"),
  43603. default: true
  43604. },
  43605. {
  43606. name: "MegaMacro",
  43607. height: math.unit(20400, "meters")
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(6 + 3/12, "feet"),
  43616. weight: math.unit(185, "lb"),
  43617. name: "Front",
  43618. image: {
  43619. source: "./media/characters/susan-grant/front.svg",
  43620. extra: 1351/1327,
  43621. bottom: 26/1377
  43622. }
  43623. },
  43624. },
  43625. [
  43626. {
  43627. name: "Normal",
  43628. height: math.unit(6 + 3/12, "feet"),
  43629. default: true
  43630. },
  43631. {
  43632. name: "Macro",
  43633. height: math.unit(225, "feet")
  43634. },
  43635. {
  43636. name: "Macro+",
  43637. height: math.unit(900, "feet")
  43638. },
  43639. {
  43640. name: "MegaMacro",
  43641. height: math.unit(14400, "feet")
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43647. {
  43648. front: {
  43649. height: math.unit(5 + 4/12, "feet"),
  43650. weight: math.unit(110, "lb"),
  43651. name: "Front",
  43652. image: {
  43653. source: "./media/characters/axel-isanov/front.svg",
  43654. extra: 1096/1065,
  43655. bottom: 13/1109
  43656. }
  43657. },
  43658. },
  43659. [
  43660. {
  43661. name: "Normal",
  43662. height: math.unit(5 + 4/12, "feet"),
  43663. default: true
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(9, "feet"),
  43672. weight: math.unit(467, "lb"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/necahual/front.svg",
  43676. extra: 920/873,
  43677. bottom: 26/946
  43678. }
  43679. },
  43680. back: {
  43681. height: math.unit(9, "feet"),
  43682. weight: math.unit(467, "lb"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/necahual/back.svg",
  43686. extra: 930/884,
  43687. bottom: 16/946
  43688. }
  43689. },
  43690. frontUnderwear: {
  43691. height: math.unit(9, "feet"),
  43692. weight: math.unit(467, "lb"),
  43693. name: "Front (Underwear)",
  43694. image: {
  43695. source: "./media/characters/necahual/front-underwear.svg",
  43696. extra: 920/873,
  43697. bottom: 26/946
  43698. }
  43699. },
  43700. frontDressed: {
  43701. height: math.unit(9, "feet"),
  43702. weight: math.unit(467, "lb"),
  43703. name: "Front (Dressed)",
  43704. image: {
  43705. source: "./media/characters/necahual/front-dressed.svg",
  43706. extra: 920/873,
  43707. bottom: 26/946
  43708. }
  43709. },
  43710. },
  43711. [
  43712. {
  43713. name: "Comprsesed",
  43714. height: math.unit(9, "feet")
  43715. },
  43716. {
  43717. name: "Natural",
  43718. height: math.unit(15, "feet"),
  43719. default: true
  43720. },
  43721. {
  43722. name: "Boosted",
  43723. height: math.unit(50, "feet")
  43724. },
  43725. {
  43726. name: "Boosted+",
  43727. height: math.unit(150, "feet")
  43728. },
  43729. {
  43730. name: "Max",
  43731. height: math.unit(500, "feet")
  43732. },
  43733. ]
  43734. ))
  43735. characterMakers.push(() => makeCharacter(
  43736. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43737. {
  43738. front: {
  43739. height: math.unit(22 + 1/12, "feet"),
  43740. weight: math.unit(3200, "lb"),
  43741. name: "Front",
  43742. image: {
  43743. source: "./media/characters/theo-acacia/front.svg",
  43744. extra: 1796/1741,
  43745. bottom: 83/1879
  43746. }
  43747. },
  43748. frontUnderwear: {
  43749. height: math.unit(22 + 1/12, "feet"),
  43750. weight: math.unit(3200, "lb"),
  43751. name: "Front (Underwear)",
  43752. image: {
  43753. source: "./media/characters/theo-acacia/front-underwear.svg",
  43754. extra: 1796/1741,
  43755. bottom: 83/1879
  43756. }
  43757. },
  43758. frontNude: {
  43759. height: math.unit(22 + 1/12, "feet"),
  43760. weight: math.unit(3200, "lb"),
  43761. name: "Front (Nude)",
  43762. image: {
  43763. source: "./media/characters/theo-acacia/front-nude.svg",
  43764. extra: 1796/1741,
  43765. bottom: 83/1879
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(22 + 1/12, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(20, "feet"),
  43782. name: "Front",
  43783. image: {
  43784. source: "./media/characters/astra/front.svg",
  43785. extra: 1850/1714,
  43786. bottom: 106/1956
  43787. }
  43788. },
  43789. frontUndressed: {
  43790. height: math.unit(20, "feet"),
  43791. name: "Front (Undressed)",
  43792. image: {
  43793. source: "./media/characters/astra/front-undressed.svg",
  43794. extra: 1926/1749,
  43795. bottom: 0/1926
  43796. }
  43797. },
  43798. hand: {
  43799. height: math.unit(1.53, "feet"),
  43800. name: "Hand",
  43801. image: {
  43802. source: "./media/characters/astra/hand.svg"
  43803. }
  43804. },
  43805. paw: {
  43806. height: math.unit(1.53, "feet"),
  43807. name: "Paw",
  43808. image: {
  43809. source: "./media/characters/astra/paw.svg"
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Smallest",
  43816. height: math.unit(20, "feet")
  43817. },
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(1e9, "miles"),
  43821. default: true
  43822. },
  43823. {
  43824. name: "Larger",
  43825. height: math.unit(5, "multiverses")
  43826. },
  43827. {
  43828. name: "Largest",
  43829. height: math.unit(1e9, "multiverses")
  43830. },
  43831. ]
  43832. ))
  43833. characterMakers.push(() => makeCharacter(
  43834. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43835. {
  43836. front: {
  43837. height: math.unit(8, "feet"),
  43838. name: "Front",
  43839. image: {
  43840. source: "./media/characters/breanna/front.svg",
  43841. extra: 1912/1632,
  43842. bottom: 33/1945
  43843. }
  43844. },
  43845. },
  43846. [
  43847. {
  43848. name: "Smallest",
  43849. height: math.unit(8, "feet")
  43850. },
  43851. {
  43852. name: "Normal",
  43853. height: math.unit(1, "mile"),
  43854. default: true
  43855. },
  43856. {
  43857. name: "Maximum",
  43858. height: math.unit(1500000000000, "lightyears")
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(5 + 11/12, "feet"),
  43867. weight: math.unit(155, "lb"),
  43868. name: "Front",
  43869. image: {
  43870. source: "./media/characters/cai/front.svg",
  43871. extra: 1823/1702,
  43872. bottom: 32/1855
  43873. }
  43874. },
  43875. back: {
  43876. height: math.unit(5 + 11/12, "feet"),
  43877. weight: math.unit(155, "lb"),
  43878. name: "Back",
  43879. image: {
  43880. source: "./media/characters/cai/back.svg",
  43881. extra: 1809/1708,
  43882. bottom: 31/1840
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Normal",
  43889. height: math.unit(5 + 11/12, "feet"),
  43890. default: true
  43891. },
  43892. {
  43893. name: "Big",
  43894. height: math.unit(15, "feet")
  43895. },
  43896. {
  43897. name: "Macro",
  43898. height: math.unit(200, "feet")
  43899. },
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(5 + 6/12, "feet"),
  43907. weight: math.unit(160, "lb"),
  43908. name: "Front",
  43909. image: {
  43910. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43911. extra: 1227/1174,
  43912. bottom: 37/1264
  43913. }
  43914. },
  43915. },
  43916. [
  43917. {
  43918. name: "Macro",
  43919. height: math.unit(444, "meters"),
  43920. default: true
  43921. },
  43922. ]
  43923. ))
  43924. characterMakers.push(() => makeCharacter(
  43925. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43926. {
  43927. front: {
  43928. height: math.unit(18 + 7/12, "feet"),
  43929. name: "Front",
  43930. image: {
  43931. source: "./media/characters/rex/front.svg",
  43932. extra: 1941/1807,
  43933. bottom: 66/2007
  43934. }
  43935. },
  43936. back: {
  43937. height: math.unit(18 + 7/12, "feet"),
  43938. name: "Back",
  43939. image: {
  43940. source: "./media/characters/rex/back.svg",
  43941. extra: 1937/1822,
  43942. bottom: 42/1979
  43943. }
  43944. },
  43945. boot: {
  43946. height: math.unit(3.45, "feet"),
  43947. name: "Boot",
  43948. image: {
  43949. source: "./media/characters/rex/boot.svg"
  43950. }
  43951. },
  43952. paw: {
  43953. height: math.unit(4.17, "feet"),
  43954. name: "Paw",
  43955. image: {
  43956. source: "./media/characters/rex/paw.svg"
  43957. }
  43958. },
  43959. head: {
  43960. height: math.unit(6.728, "feet"),
  43961. name: "Head",
  43962. image: {
  43963. source: "./media/characters/rex/head.svg"
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Nano",
  43970. height: math.unit(18 + 7/12, "feet")
  43971. },
  43972. {
  43973. name: "Micro",
  43974. height: math.unit(1.5, "megameters")
  43975. },
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(440, "megameters"),
  43979. default: true
  43980. },
  43981. {
  43982. name: "Macro",
  43983. height: math.unit(2.5, "gigameters")
  43984. },
  43985. {
  43986. name: "Gigamacro",
  43987. height: math.unit(2, "galaxies")
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43993. {
  43994. side: {
  43995. height: math.unit(32, "feet"),
  43996. weight: math.unit(250000, "lb"),
  43997. name: "Side",
  43998. image: {
  43999. source: "./media/characters/silverwing/side.svg",
  44000. extra: 1100/1019,
  44001. bottom: 204/1304
  44002. }
  44003. },
  44004. },
  44005. [
  44006. {
  44007. name: "Normal",
  44008. height: math.unit(32, "feet"),
  44009. default: true
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44015. {
  44016. front: {
  44017. height: math.unit(6 + 6/12, "feet"),
  44018. weight: math.unit(350, "lb"),
  44019. name: "Front",
  44020. image: {
  44021. source: "./media/characters/tristan-hawthorne/front.svg",
  44022. extra: 1159/1124,
  44023. bottom: 37/1196
  44024. },
  44025. form: "labrador",
  44026. default: true
  44027. },
  44028. skunkFront: {
  44029. height: math.unit(4 + 6/12, "feet"),
  44030. weight: math.unit(120, "lb"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44034. extra: 1609/1551,
  44035. bottom: 169/1778
  44036. },
  44037. form: "skunk",
  44038. default: true
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(6 + 6/12, "feet"),
  44045. form: "labrador",
  44046. default: true
  44047. },
  44048. {
  44049. name: "Normal",
  44050. height: math.unit(4 + 6/12, "feet"),
  44051. form: "skunk",
  44052. default: true
  44053. },
  44054. ],
  44055. {
  44056. "labrador": {
  44057. name: "Labrador",
  44058. default: true
  44059. },
  44060. "skunk": {
  44061. name: "Skunk"
  44062. }
  44063. }
  44064. ))
  44065. characterMakers.push(() => makeCharacter(
  44066. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44067. {
  44068. front: {
  44069. height: math.unit(5 + 11/12, "feet"),
  44070. weight: math.unit(190, "lb"),
  44071. name: "Front",
  44072. image: {
  44073. source: "./media/characters/mizu/front.svg",
  44074. extra: 1988/1788,
  44075. bottom: 14/2002
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Normal",
  44082. height: math.unit(5 + 11/12, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(1.7, "feet"),
  44092. weight: math.unit(50, "lb"),
  44093. name: "Front",
  44094. image: {
  44095. source: "./media/characters/dechroma/front.svg",
  44096. extra: 1095/859,
  44097. bottom: 64/1159
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Normal",
  44104. height: math.unit(1.7, "feet"),
  44105. default: true
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44111. {
  44112. side: {
  44113. height: math.unit(30, "feet"),
  44114. name: "Side",
  44115. image: {
  44116. source: "./media/characters/veluren-thanazel/side.svg",
  44117. extra: 1611/633,
  44118. bottom: 118/1729
  44119. }
  44120. },
  44121. front: {
  44122. height: math.unit(30, "feet"),
  44123. name: "Front",
  44124. image: {
  44125. source: "./media/characters/veluren-thanazel/front.svg",
  44126. extra: 1486/636,
  44127. bottom: 238/1724
  44128. }
  44129. },
  44130. head: {
  44131. height: math.unit(21.4, "feet"),
  44132. name: "Head",
  44133. image: {
  44134. source: "./media/characters/veluren-thanazel/head.svg"
  44135. }
  44136. },
  44137. genitals: {
  44138. height: math.unit(19.4, "feet"),
  44139. name: "Genitals",
  44140. image: {
  44141. source: "./media/characters/veluren-thanazel/genitals.svg"
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Social",
  44148. height: math.unit(6, "feet")
  44149. },
  44150. {
  44151. name: "Play",
  44152. height: math.unit(12, "feet")
  44153. },
  44154. {
  44155. name: "True",
  44156. height: math.unit(30, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(7 + 6/12, "feet"),
  44166. weight: math.unit(500, "kg"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/arcturas/front.svg",
  44170. extra: 1700/1500,
  44171. bottom: 145/1845
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(7 + 6/12, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44185. {
  44186. side: {
  44187. height: math.unit(6, "feet"),
  44188. weight: math.unit(2, "tons"),
  44189. name: "Side",
  44190. image: {
  44191. source: "./media/characters/vitaen/side.svg",
  44192. extra: 1157/617,
  44193. bottom: 122/1279
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(6, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(19, "feet"),
  44210. name: "Front",
  44211. image: {
  44212. source: "./media/characters/fia-dreamweaver/front.svg",
  44213. extra: 1630/1504,
  44214. bottom: 25/1655
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(19, "feet"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44228. {
  44229. front: {
  44230. height: math.unit(5 + 4/12, "feet"),
  44231. name: "Front",
  44232. image: {
  44233. source: "./media/characters/artan/front.svg",
  44234. extra: 1618/1535,
  44235. bottom: 46/1664
  44236. }
  44237. },
  44238. back: {
  44239. height: math.unit(5 + 4/12, "feet"),
  44240. name: "Back",
  44241. image: {
  44242. source: "./media/characters/artan/back.svg",
  44243. extra: 1618/1543,
  44244. bottom: 31/1649
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(5 + 4/12, "feet"),
  44252. default: true
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44258. {
  44259. side: {
  44260. height: math.unit(182, "cm"),
  44261. weight: math.unit(1000, "lb"),
  44262. name: "Side",
  44263. image: {
  44264. source: "./media/characters/silver-dragon/side.svg",
  44265. extra: 710/287,
  44266. bottom: 88/798
  44267. }
  44268. },
  44269. },
  44270. [
  44271. {
  44272. name: "Normal",
  44273. height: math.unit(182, "cm"),
  44274. default: true
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44280. {
  44281. side: {
  44282. height: math.unit(6 + 6/12, "feet"),
  44283. weight: math.unit(1.5, "tons"),
  44284. name: "Side",
  44285. image: {
  44286. source: "./media/characters/zephyr/side.svg",
  44287. extra: 1433/586,
  44288. bottom: 109/1542
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(6 + 6/12, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44302. {
  44303. side: {
  44304. height: math.unit(1, "feet"),
  44305. name: "Side",
  44306. image: {
  44307. source: "./media/characters/vixye/side.svg",
  44308. extra: 632/541,
  44309. bottom: 0/632
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(1, "feet"),
  44317. default: true
  44318. },
  44319. {
  44320. name: "True",
  44321. height: math.unit(1e15, "multiverses")
  44322. },
  44323. ]
  44324. ))
  44325. characterMakers.push(() => makeCharacter(
  44326. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44327. {
  44328. front: {
  44329. height: math.unit(8 + 2/12, "feet"),
  44330. weight: math.unit(650, "lb"),
  44331. name: "Front",
  44332. image: {
  44333. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44334. extra: 1174/1137,
  44335. bottom: 82/1256
  44336. }
  44337. },
  44338. back: {
  44339. height: math.unit(8 + 2/12, "feet"),
  44340. weight: math.unit(650, "lb"),
  44341. name: "Back",
  44342. image: {
  44343. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44344. extra: 1204/1157,
  44345. bottom: 46/1250
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Wildform",
  44352. height: math.unit(8 + 2/12, "feet"),
  44353. default: true
  44354. },
  44355. ]
  44356. ))
  44357. characterMakers.push(() => makeCharacter(
  44358. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44359. {
  44360. front: {
  44361. height: math.unit(18, "feet"),
  44362. name: "Front",
  44363. image: {
  44364. source: "./media/characters/cyphin/front.svg",
  44365. extra: 970/886,
  44366. bottom: 42/1012
  44367. }
  44368. },
  44369. back: {
  44370. height: math.unit(18, "feet"),
  44371. name: "Back",
  44372. image: {
  44373. source: "./media/characters/cyphin/back.svg",
  44374. extra: 1009/894,
  44375. bottom: 24/1033
  44376. }
  44377. },
  44378. head: {
  44379. height: math.unit(5.05, "feet"),
  44380. name: "Head",
  44381. image: {
  44382. source: "./media/characters/cyphin/head.svg"
  44383. }
  44384. },
  44385. tailbud: {
  44386. height: math.unit(5, "feet"),
  44387. name: "Tailbud",
  44388. image: {
  44389. source: "./media/characters/cyphin/tailbud.svg"
  44390. }
  44391. },
  44392. },
  44393. [
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44398. {
  44399. side: {
  44400. height: math.unit(10, "feet"),
  44401. weight: math.unit(6, "tons"),
  44402. name: "Side",
  44403. image: {
  44404. source: "./media/characters/raijin/side.svg",
  44405. extra: 1529/613,
  44406. bottom: 337/1866
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal",
  44413. height: math.unit(10, "feet"),
  44414. default: true
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44420. {
  44421. side: {
  44422. height: math.unit(9, "feet"),
  44423. name: "Side",
  44424. image: {
  44425. source: "./media/characters/nilghais/side.svg",
  44426. extra: 1047/744,
  44427. bottom: 91/1138
  44428. }
  44429. },
  44430. head: {
  44431. height: math.unit(3.14, "feet"),
  44432. name: "Head",
  44433. image: {
  44434. source: "./media/characters/nilghais/head.svg"
  44435. }
  44436. },
  44437. mouth: {
  44438. height: math.unit(4.6, "feet"),
  44439. name: "Mouth",
  44440. image: {
  44441. source: "./media/characters/nilghais/mouth.svg"
  44442. }
  44443. },
  44444. wings: {
  44445. height: math.unit(24, "feet"),
  44446. name: "Wings",
  44447. image: {
  44448. source: "./media/characters/nilghais/wings.svg"
  44449. }
  44450. },
  44451. ass: {
  44452. height: math.unit(6.12, "feet"),
  44453. name: "Ass",
  44454. image: {
  44455. source: "./media/characters/nilghais/ass.svg"
  44456. }
  44457. },
  44458. },
  44459. [
  44460. {
  44461. name: "Normal",
  44462. height: math.unit(9, "feet"),
  44463. default: true
  44464. },
  44465. ]
  44466. ))
  44467. characterMakers.push(() => makeCharacter(
  44468. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44469. {
  44470. regular: {
  44471. height: math.unit(16 + 2/12, "feet"),
  44472. weight: math.unit(2300, "lb"),
  44473. name: "Regular",
  44474. image: {
  44475. source: "./media/characters/zolgar/regular.svg",
  44476. extra: 1246/1004,
  44477. bottom: 124/1370
  44478. }
  44479. },
  44480. boxers: {
  44481. height: math.unit(16 + 2/12, "feet"),
  44482. weight: math.unit(2300, "lb"),
  44483. name: "Boxers",
  44484. image: {
  44485. source: "./media/characters/zolgar/boxers.svg",
  44486. extra: 1246/1004,
  44487. bottom: 124/1370
  44488. }
  44489. },
  44490. armored: {
  44491. height: math.unit(16 + 2/12, "feet"),
  44492. weight: math.unit(2300, "lb"),
  44493. name: "Armored",
  44494. image: {
  44495. source: "./media/characters/zolgar/armored.svg",
  44496. extra: 1246/1004,
  44497. bottom: 124/1370
  44498. }
  44499. },
  44500. goth: {
  44501. height: math.unit(16 + 2/12, "feet"),
  44502. weight: math.unit(2300, "lb"),
  44503. name: "Goth",
  44504. image: {
  44505. source: "./media/characters/zolgar/goth.svg",
  44506. extra: 1246/1004,
  44507. bottom: 124/1370
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Shrunken Down",
  44514. height: math.unit(9 + 2/12, "feet")
  44515. },
  44516. {
  44517. name: "Normal",
  44518. height: math.unit(16 + 2/12, "feet"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(6, "feet"),
  44528. weight: math.unit(168, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/luca/front.svg",
  44532. extra: 841/667,
  44533. bottom: 102/943
  44534. }
  44535. },
  44536. },
  44537. [
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(6, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44547. {
  44548. side: {
  44549. height: math.unit(7 + 3/12, "feet"),
  44550. weight: math.unit(312, "lb"),
  44551. name: "Side",
  44552. image: {
  44553. source: "./media/characters/zezo/side.svg",
  44554. extra: 1192/1067,
  44555. bottom: 63/1255
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(7 + 3/12, "feet"),
  44563. default: true
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(5 + 5/12, "feet"),
  44572. weight: math.unit(170, "lb"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/mayso/front.svg",
  44576. extra: 1215/1108,
  44577. bottom: 16/1231
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(5 + 5/12, "feet"),
  44585. default: true
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(4 + 3/12, "feet"),
  44594. weight: math.unit(80, "lb"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/hess/front.svg",
  44598. extra: 1200/1123,
  44599. bottom: 16/1216
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(4 + 3/12, "feet"),
  44607. default: true
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44613. {
  44614. front: {
  44615. height: math.unit(1.9, "meters"),
  44616. name: "Front",
  44617. image: {
  44618. source: "./media/characters/ashgar/front.svg",
  44619. extra: 1177/1146,
  44620. bottom: 99/1276
  44621. }
  44622. },
  44623. back: {
  44624. height: math.unit(1.9, "meters"),
  44625. name: "Back",
  44626. image: {
  44627. source: "./media/characters/ashgar/back.svg",
  44628. extra: 1201/1183,
  44629. bottom: 53/1254
  44630. }
  44631. },
  44632. feral: {
  44633. height: math.unit(1.4, "meters"),
  44634. name: "Feral",
  44635. image: {
  44636. source: "./media/characters/ashgar/feral.svg",
  44637. extra: 370/345,
  44638. bottom: 45/415
  44639. }
  44640. },
  44641. },
  44642. [
  44643. {
  44644. name: "Normal",
  44645. height: math.unit(1.9, "meters"),
  44646. default: true
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44652. {
  44653. regular: {
  44654. height: math.unit(6, "feet"),
  44655. weight: math.unit(220, "lb"),
  44656. name: "Regular",
  44657. image: {
  44658. source: "./media/characters/phillip/regular.svg",
  44659. extra: 1373/1277,
  44660. bottom: 75/1448
  44661. }
  44662. },
  44663. dressed: {
  44664. height: math.unit(6, "feet"),
  44665. weight: math.unit(220, "lb"),
  44666. name: "Dressed",
  44667. image: {
  44668. source: "./media/characters/phillip/dressed.svg",
  44669. extra: 1373/1277,
  44670. bottom: 75/1448
  44671. }
  44672. },
  44673. paw: {
  44674. height: math.unit(1.44, "feet"),
  44675. name: "Paw",
  44676. image: {
  44677. source: "./media/characters/phillip/paw.svg"
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(6, "feet"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44691. {
  44692. side: {
  44693. height: math.unit(42, "feet"),
  44694. name: "Side",
  44695. image: {
  44696. source: "./media/characters/uvula/side.svg",
  44697. extra: 683/586,
  44698. bottom: 60/743
  44699. }
  44700. },
  44701. front: {
  44702. height: math.unit(42, "feet"),
  44703. name: "Front",
  44704. image: {
  44705. source: "./media/characters/uvula/front.svg",
  44706. extra: 705/613,
  44707. bottom: 54/759
  44708. }
  44709. },
  44710. maw: {
  44711. height: math.unit(23.5, "feet"),
  44712. name: "Maw",
  44713. image: {
  44714. source: "./media/characters/uvula/maw.svg"
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Original Size",
  44721. height: math.unit(14, "inches")
  44722. },
  44723. {
  44724. name: "Human Size",
  44725. height: math.unit(6, "feet")
  44726. },
  44727. {
  44728. name: "Big",
  44729. height: math.unit(42, "feet"),
  44730. default: true
  44731. },
  44732. {
  44733. name: "Bigger",
  44734. height: math.unit(100, "feet")
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44740. {
  44741. front: {
  44742. height: math.unit(5 + 11/12, "feet"),
  44743. name: "Front",
  44744. image: {
  44745. source: "./media/characters/lannah/front.svg",
  44746. extra: 1208/1113,
  44747. bottom: 97/1305
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(5 + 11/12, "feet"),
  44755. default: true
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44761. {
  44762. front: {
  44763. height: math.unit(6 + 3/12, "feet"),
  44764. weight: math.unit(3.5, "tons"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/emberflame/front.svg",
  44768. extra: 1198/672,
  44769. bottom: 82/1280
  44770. }
  44771. },
  44772. side: {
  44773. height: math.unit(6 + 3/12, "feet"),
  44774. weight: math.unit(3.5, "tons"),
  44775. name: "Side",
  44776. image: {
  44777. source: "./media/characters/emberflame/side.svg",
  44778. extra: 938/527,
  44779. bottom: 56/994
  44780. }
  44781. },
  44782. },
  44783. [
  44784. {
  44785. name: "Normal",
  44786. height: math.unit(6 + 3/12, "feet"),
  44787. default: true
  44788. },
  44789. ]
  44790. ))
  44791. characterMakers.push(() => makeCharacter(
  44792. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44793. {
  44794. side: {
  44795. height: math.unit(17.5, "feet"),
  44796. weight: math.unit(35, "tons"),
  44797. name: "Side",
  44798. image: {
  44799. source: "./media/characters/sophie-ambrose/side.svg",
  44800. extra: 1573/1242,
  44801. bottom: 71/1644
  44802. }
  44803. },
  44804. maw: {
  44805. height: math.unit(7.4, "feet"),
  44806. name: "Maw",
  44807. image: {
  44808. source: "./media/characters/sophie-ambrose/maw.svg"
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(17.5, "feet"),
  44816. default: true
  44817. },
  44818. ]
  44819. ))
  44820. characterMakers.push(() => makeCharacter(
  44821. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44822. {
  44823. front: {
  44824. height: math.unit(280, "feet"),
  44825. weight: math.unit(550, "tons"),
  44826. name: "Front",
  44827. image: {
  44828. source: "./media/characters/king-mugi/front.svg",
  44829. extra: 1102/947,
  44830. bottom: 104/1206
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "King Mugi",
  44837. height: math.unit(280, "feet"),
  44838. default: true
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44844. {
  44845. front: {
  44846. height: math.unit(64, "meters"),
  44847. name: "Front",
  44848. image: {
  44849. source: "./media/characters/nova-fox/front.svg",
  44850. extra: 1310/1246,
  44851. bottom: 65/1375
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Macro",
  44858. height: math.unit(64, "meters"),
  44859. default: true
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44865. {
  44866. front: {
  44867. height: math.unit(6 + 3/12, "feet"),
  44868. weight: math.unit(170, "lb"),
  44869. name: "Front",
  44870. image: {
  44871. source: "./media/characters/sam-bat/front.svg",
  44872. extra: 1601/1411,
  44873. bottom: 125/1726
  44874. }
  44875. },
  44876. back: {
  44877. height: math.unit(6 + 3/12, "feet"),
  44878. weight: math.unit(170, "lb"),
  44879. name: "Back",
  44880. image: {
  44881. source: "./media/characters/sam-bat/back.svg",
  44882. extra: 1577/1405,
  44883. bottom: 58/1635
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(6 + 3/12, "feet"),
  44891. default: true
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44897. {
  44898. front: {
  44899. height: math.unit(59, "feet"),
  44900. weight: math.unit(40000, "lb"),
  44901. name: "Front",
  44902. image: {
  44903. source: "./media/characters/inari/front.svg",
  44904. extra: 1884/1350,
  44905. bottom: 95/1979
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Gigantamax",
  44912. height: math.unit(59, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(5 + 8/12, "feet"),
  44922. name: "Front",
  44923. image: {
  44924. source: "./media/characters/elizabeth/front.svg",
  44925. extra: 1395/1298,
  44926. bottom: 54/1449
  44927. }
  44928. },
  44929. mouth: {
  44930. height: math.unit(1.97, "feet"),
  44931. name: "Mouth",
  44932. image: {
  44933. source: "./media/characters/elizabeth/mouth.svg"
  44934. }
  44935. },
  44936. foot: {
  44937. height: math.unit(1.17, "feet"),
  44938. name: "Foot",
  44939. image: {
  44940. source: "./media/characters/elizabeth/foot.svg"
  44941. }
  44942. },
  44943. },
  44944. [
  44945. {
  44946. name: "Normal",
  44947. height: math.unit(5 + 8/12, "feet"),
  44948. default: true
  44949. },
  44950. {
  44951. name: "Minimacro",
  44952. height: math.unit(18, "feet")
  44953. },
  44954. {
  44955. name: "Macro",
  44956. height: math.unit(180, "feet")
  44957. },
  44958. ]
  44959. ))
  44960. characterMakers.push(() => makeCharacter(
  44961. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44962. {
  44963. front: {
  44964. height: math.unit(5 + 2/12, "feet"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/october-gossamer/front.svg",
  44968. extra: 505/454,
  44969. bottom: 7/512
  44970. }
  44971. },
  44972. back: {
  44973. height: math.unit(5 + 2/12, "feet"),
  44974. name: "Back",
  44975. image: {
  44976. source: "./media/characters/october-gossamer/back.svg",
  44977. extra: 501/454,
  44978. bottom: 11/512
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(5 + 2/12, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(5, "feet"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/epiglottis/front.svg",
  44998. extra: 923/849,
  44999. bottom: 17/940
  45000. }
  45001. },
  45002. },
  45003. [
  45004. {
  45005. name: "Original Size",
  45006. height: math.unit(10, "inches")
  45007. },
  45008. {
  45009. name: "Human Size",
  45010. height: math.unit(5, "feet"),
  45011. default: true
  45012. },
  45013. {
  45014. name: "Big",
  45015. height: math.unit(25, "feet")
  45016. },
  45017. {
  45018. name: "Bigger",
  45019. height: math.unit(50, "feet")
  45020. },
  45021. {
  45022. name: "oh lawd",
  45023. height: math.unit(75, "feet")
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45029. {
  45030. front: {
  45031. height: math.unit(2 + 4/12, "feet"),
  45032. weight: math.unit(60, "lb"),
  45033. name: "Front",
  45034. image: {
  45035. source: "./media/characters/lerm/front.svg",
  45036. extra: 796/790,
  45037. bottom: 79/875
  45038. }
  45039. },
  45040. },
  45041. [
  45042. {
  45043. name: "Normal",
  45044. height: math.unit(2 + 4/12, "feet"),
  45045. default: true
  45046. },
  45047. ]
  45048. ))
  45049. characterMakers.push(() => makeCharacter(
  45050. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45051. {
  45052. front: {
  45053. height: math.unit(5.5, "feet"),
  45054. weight: math.unit(130, "lb"),
  45055. name: "Front",
  45056. image: {
  45057. source: "./media/characters/xena-nebadon/front.svg",
  45058. extra: 1828/1730,
  45059. bottom: 79/1907
  45060. }
  45061. },
  45062. },
  45063. [
  45064. {
  45065. name: "Tiny Puppy",
  45066. height: math.unit(3, "inches")
  45067. },
  45068. {
  45069. name: "Normal",
  45070. height: math.unit(5.5, "feet"),
  45071. default: true
  45072. },
  45073. {
  45074. name: "Lotta Lady",
  45075. height: math.unit(12, "feet")
  45076. },
  45077. {
  45078. name: "Pretty Big",
  45079. height: math.unit(100, "feet")
  45080. },
  45081. {
  45082. name: "Big",
  45083. height: math.unit(500, "feet")
  45084. },
  45085. {
  45086. name: "Skyscraper Toys",
  45087. height: math.unit(2500, "feet")
  45088. },
  45089. {
  45090. name: "Plane Catcher",
  45091. height: math.unit(8, "miles")
  45092. },
  45093. {
  45094. name: "Planet Toys",
  45095. height: math.unit(15, "earths")
  45096. },
  45097. {
  45098. name: "Stardust",
  45099. height: math.unit(0.25, "galaxies")
  45100. },
  45101. {
  45102. name: "Snacks",
  45103. height: math.unit(70, "universes")
  45104. },
  45105. ]
  45106. ))
  45107. characterMakers.push(() => makeCharacter(
  45108. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45109. {
  45110. front: {
  45111. height: math.unit(1.6, "meters"),
  45112. weight: math.unit(60, "kg"),
  45113. name: "Front",
  45114. image: {
  45115. source: "./media/characters/bounty/front.svg",
  45116. extra: 1426/1308,
  45117. bottom: 15/1441
  45118. }
  45119. },
  45120. back: {
  45121. height: math.unit(1.6, "meters"),
  45122. weight: math.unit(60, "kg"),
  45123. name: "Back",
  45124. image: {
  45125. source: "./media/characters/bounty/back.svg",
  45126. extra: 1417/1307,
  45127. bottom: 8/1425
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(1.6, "meters"),
  45135. default: true
  45136. },
  45137. {
  45138. name: "Macro",
  45139. height: math.unit(300, "meters")
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45145. {
  45146. front: {
  45147. height: math.unit(2 + 8/12, "feet"),
  45148. weight: math.unit(15, "lb"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/mochi/front.svg",
  45152. extra: 1022/852,
  45153. bottom: 435/1457
  45154. }
  45155. },
  45156. back: {
  45157. height: math.unit(2 + 8/12, "feet"),
  45158. weight: math.unit(15, "lb"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/mochi/back.svg",
  45162. extra: 1335/1119,
  45163. bottom: 39/1374
  45164. }
  45165. },
  45166. bird: {
  45167. height: math.unit(2 + 8/12, "feet"),
  45168. weight: math.unit(15, "lb"),
  45169. name: "Bird",
  45170. image: {
  45171. source: "./media/characters/mochi/bird.svg",
  45172. extra: 1251/1113,
  45173. bottom: 178/1429
  45174. }
  45175. },
  45176. kaiju: {
  45177. height: math.unit(154, "feet"),
  45178. weight: math.unit(1e7, "lb"),
  45179. name: "Kaiju",
  45180. image: {
  45181. source: "./media/characters/mochi/kaiju.svg",
  45182. extra: 460/324,
  45183. bottom: 40/500
  45184. }
  45185. },
  45186. head: {
  45187. height: math.unit(1.21, "feet"),
  45188. name: "Head",
  45189. image: {
  45190. source: "./media/characters/mochi/head.svg"
  45191. }
  45192. },
  45193. alternateTail: {
  45194. height: math.unit(2 + 8/12, "feet"),
  45195. weight: math.unit(45, "lb"),
  45196. name: "Alternate Tail",
  45197. image: {
  45198. source: "./media/characters/mochi/alternate-tail.svg",
  45199. extra: 139/76,
  45200. bottom: 45/184
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Micro",
  45207. height: math.unit(2, "inches")
  45208. },
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(2 + 8/12, "feet"),
  45212. default: true
  45213. },
  45214. {
  45215. name: "Macro",
  45216. height: math.unit(106, "feet")
  45217. },
  45218. ]
  45219. ))
  45220. characterMakers.push(() => makeCharacter(
  45221. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45222. {
  45223. front: {
  45224. height: math.unit(5.67, "feet"),
  45225. weight: math.unit(135, "lb"),
  45226. name: "Front",
  45227. image: {
  45228. source: "./media/characters/sarel/front.svg",
  45229. extra: 865/788,
  45230. bottom: 97/962
  45231. }
  45232. },
  45233. back: {
  45234. height: math.unit(5.67, "feet"),
  45235. weight: math.unit(135, "lb"),
  45236. name: "Back",
  45237. image: {
  45238. source: "./media/characters/sarel/back.svg",
  45239. extra: 857/777,
  45240. bottom: 32/889
  45241. }
  45242. },
  45243. chozoan: {
  45244. height: math.unit(5.67, "feet"),
  45245. weight: math.unit(135, "lb"),
  45246. name: "Chozoan",
  45247. image: {
  45248. source: "./media/characters/sarel/chozoan.svg",
  45249. extra: 865/788,
  45250. bottom: 97/962
  45251. }
  45252. },
  45253. current: {
  45254. height: math.unit(5.67, "feet"),
  45255. weight: math.unit(135, "lb"),
  45256. name: "Current",
  45257. image: {
  45258. source: "./media/characters/sarel/current.svg",
  45259. extra: 865/788,
  45260. bottom: 97/962
  45261. }
  45262. },
  45263. head: {
  45264. height: math.unit(1.77, "feet"),
  45265. name: "Head",
  45266. image: {
  45267. source: "./media/characters/sarel/head.svg"
  45268. }
  45269. },
  45270. claws: {
  45271. height: math.unit(1.8, "feet"),
  45272. name: "Claws",
  45273. image: {
  45274. source: "./media/characters/sarel/claws.svg"
  45275. }
  45276. },
  45277. clawsAlt: {
  45278. height: math.unit(1.8, "feet"),
  45279. name: "Claws-alt",
  45280. image: {
  45281. source: "./media/characters/sarel/claws-alt.svg"
  45282. }
  45283. },
  45284. },
  45285. [
  45286. {
  45287. name: "Normal",
  45288. height: math.unit(5.67, "feet"),
  45289. default: true
  45290. },
  45291. ]
  45292. ))
  45293. characterMakers.push(() => makeCharacter(
  45294. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45295. {
  45296. front: {
  45297. height: math.unit(5500, "feet"),
  45298. name: "Front",
  45299. image: {
  45300. source: "./media/characters/alyonia/front.svg",
  45301. extra: 1200/1135,
  45302. bottom: 29/1229
  45303. }
  45304. },
  45305. back: {
  45306. height: math.unit(5500, "feet"),
  45307. name: "Back",
  45308. image: {
  45309. source: "./media/characters/alyonia/back.svg",
  45310. extra: 1205/1138,
  45311. bottom: 10/1215
  45312. }
  45313. },
  45314. },
  45315. [
  45316. {
  45317. name: "Small",
  45318. height: math.unit(10, "feet")
  45319. },
  45320. {
  45321. name: "Macro",
  45322. height: math.unit(500, "feet")
  45323. },
  45324. {
  45325. name: "Mega Macro",
  45326. height: math.unit(5500, "feet"),
  45327. default: true
  45328. },
  45329. {
  45330. name: "Mega Macro+",
  45331. height: math.unit(500000, "feet")
  45332. },
  45333. {
  45334. name: "Giga Macro",
  45335. height: math.unit(3000, "miles")
  45336. },
  45337. {
  45338. name: "Tera Macro",
  45339. height: math.unit(2.8e6, "miles")
  45340. },
  45341. {
  45342. name: "Galactic",
  45343. height: math.unit(120000, "lightyears")
  45344. },
  45345. ]
  45346. ))
  45347. characterMakers.push(() => makeCharacter(
  45348. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45349. {
  45350. werewolf: {
  45351. height: math.unit(8, "feet"),
  45352. weight: math.unit(425, "lb"),
  45353. name: "Werewolf",
  45354. image: {
  45355. source: "./media/characters/autumn/werewolf.svg",
  45356. extra: 2154/2031,
  45357. bottom: 160/2314
  45358. }
  45359. },
  45360. human: {
  45361. height: math.unit(5 + 8/12, "feet"),
  45362. weight: math.unit(150, "lb"),
  45363. name: "Human",
  45364. image: {
  45365. source: "./media/characters/autumn/human.svg",
  45366. extra: 1200/1149,
  45367. bottom: 30/1230
  45368. }
  45369. },
  45370. },
  45371. [
  45372. {
  45373. name: "Normal",
  45374. height: math.unit(8, "feet"),
  45375. default: true
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45381. {
  45382. front: {
  45383. height: math.unit(8 + 5/12, "feet"),
  45384. weight: math.unit(825, "lb"),
  45385. name: "Front",
  45386. image: {
  45387. source: "./media/characters/cobalt-charizard/front.svg",
  45388. extra: 1268/1155,
  45389. bottom: 122/1390
  45390. }
  45391. },
  45392. side: {
  45393. height: math.unit(8 + 5/12, "feet"),
  45394. weight: math.unit(825, "lb"),
  45395. name: "Side",
  45396. image: {
  45397. source: "./media/characters/cobalt-charizard/side.svg",
  45398. extra: 1348/1257,
  45399. bottom: 58/1406
  45400. }
  45401. },
  45402. gMax: {
  45403. height: math.unit(134 + 11/12, "feet"),
  45404. name: "G-Max",
  45405. image: {
  45406. source: "./media/characters/cobalt-charizard/g-max.svg",
  45407. extra: 1835/1541,
  45408. bottom: 151/1986
  45409. }
  45410. },
  45411. },
  45412. [
  45413. {
  45414. name: "Normal",
  45415. height: math.unit(8 + 5/12, "feet"),
  45416. default: true
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(6 + 3/12, "feet"),
  45425. weight: math.unit(210, "lb"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/stella/front.svg",
  45429. extra: 3549/3335,
  45430. bottom: 51/3600
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(6 + 3/12, "feet"),
  45438. default: true
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45444. {
  45445. front: {
  45446. height: math.unit(5, "feet"),
  45447. weight: math.unit(90, "lb"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/riley-bishop/front.svg",
  45451. extra: 1450/1428,
  45452. bottom: 152/1602
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(5, "feet"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45466. {
  45467. side: {
  45468. height: math.unit(8 + 2/12, "feet"),
  45469. weight: math.unit(500, "kg"),
  45470. name: "Side",
  45471. image: {
  45472. source: "./media/characters/theo-arcanine/side.svg",
  45473. extra: 1342/1074,
  45474. bottom: 111/1453
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(8 + 2/12, "feet"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45488. {
  45489. front: {
  45490. height: math.unit(4, "feet"),
  45491. name: "Front",
  45492. image: {
  45493. source: "./media/characters/kali/front.svg",
  45494. extra: 1074/867,
  45495. bottom: 34/1108
  45496. }
  45497. },
  45498. back: {
  45499. height: math.unit(4, "feet"),
  45500. name: "Back",
  45501. image: {
  45502. source: "./media/characters/kali/back.svg",
  45503. extra: 1068/863,
  45504. bottom: 26/1094
  45505. }
  45506. },
  45507. frontAlt: {
  45508. height: math.unit(4, "feet"),
  45509. name: "Front (Alt)",
  45510. image: {
  45511. source: "./media/characters/kali/front-alt.svg",
  45512. extra: 1921/1357,
  45513. bottom: 70/1991
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(4, "feet"),
  45521. default: true
  45522. },
  45523. {
  45524. name: "Big'vali",
  45525. height: math.unit(11, "feet")
  45526. },
  45527. {
  45528. name: "Macro",
  45529. height: math.unit(32, "meters")
  45530. },
  45531. {
  45532. name: "Macro+",
  45533. height: math.unit(150, "meters")
  45534. },
  45535. {
  45536. name: "Megamacro",
  45537. height: math.unit(7500, "meters")
  45538. },
  45539. {
  45540. name: "Megamacro+",
  45541. height: math.unit(80, "kilometers")
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45547. {
  45548. side: {
  45549. height: math.unit(5 + 11/12, "feet"),
  45550. weight: math.unit(236, "lb"),
  45551. name: "Side",
  45552. image: {
  45553. source: "./media/characters/gapp/side.svg",
  45554. extra: 775/340,
  45555. bottom: 58/833
  45556. }
  45557. },
  45558. mouth: {
  45559. height: math.unit(2.98, "feet"),
  45560. name: "Mouth",
  45561. image: {
  45562. source: "./media/characters/gapp/mouth.svg"
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(5 + 1/12, "feet"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(6, "feet"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/persephone/front.svg",
  45582. extra: 1895/1717,
  45583. bottom: 96/1991
  45584. }
  45585. },
  45586. back: {
  45587. height: math.unit(6, "feet"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/persephone/back.svg",
  45591. extra: 1868/1679,
  45592. bottom: 26/1894
  45593. }
  45594. },
  45595. casual: {
  45596. height: math.unit(6, "feet"),
  45597. name: "Casual",
  45598. image: {
  45599. source: "./media/characters/persephone/casual.svg",
  45600. extra: 1713/1541,
  45601. bottom: 76/1789
  45602. }
  45603. },
  45604. gaming: {
  45605. height: math.unit(3.55, "feet"),
  45606. name: "Gaming",
  45607. image: {
  45608. source: "./media/characters/persephone/gaming.svg",
  45609. extra: 1242/1038,
  45610. bottom: 66/1308
  45611. }
  45612. },
  45613. head: {
  45614. height: math.unit(2.15, "feet"),
  45615. name: "😐",
  45616. image: {
  45617. source: "./media/characters/persephone/head.svg"
  45618. }
  45619. },
  45620. talking: {
  45621. height: math.unit(2.5, "feet"),
  45622. name: "💬",
  45623. image: {
  45624. source: "./media/characters/persephone/talking.svg"
  45625. }
  45626. },
  45627. hmm: {
  45628. height: math.unit(2.28, "feet"),
  45629. name: "🤨",
  45630. image: {
  45631. source: "./media/characters/persephone/hmm.svg"
  45632. }
  45633. },
  45634. },
  45635. [
  45636. {
  45637. name: "Human Size",
  45638. height: math.unit(6, "feet")
  45639. },
  45640. {
  45641. name: "Big Steppy",
  45642. height: math.unit(600, "meters"),
  45643. default: true
  45644. },
  45645. {
  45646. name: "Galaxy Brain",
  45647. height: math.unit(1, "zettameter")
  45648. },
  45649. ]
  45650. ))
  45651. characterMakers.push(() => makeCharacter(
  45652. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45653. {
  45654. front: {
  45655. height: math.unit(1.85, "meters"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/riley-foxthing/front.svg",
  45659. extra: 1495/1354,
  45660. bottom: 122/1617
  45661. }
  45662. },
  45663. frontAlt: {
  45664. height: math.unit(1.85, "meters"),
  45665. name: "Front (Alt)",
  45666. image: {
  45667. source: "./media/characters/riley-foxthing/front-alt.svg",
  45668. extra: 1572/1389,
  45669. bottom: 116/1688
  45670. }
  45671. },
  45672. },
  45673. [
  45674. {
  45675. name: "Normal Sized",
  45676. height: math.unit(1.85, "meters"),
  45677. default: true
  45678. },
  45679. {
  45680. name: "Quite Sizable",
  45681. height: math.unit(5, "meters")
  45682. },
  45683. {
  45684. name: "Rather Large",
  45685. height: math.unit(20, "meters")
  45686. },
  45687. {
  45688. name: "Macro",
  45689. height: math.unit(450, "meters")
  45690. },
  45691. {
  45692. name: "Giga",
  45693. height: math.unit(5, "km")
  45694. },
  45695. ]
  45696. ))
  45697. characterMakers.push(() => makeCharacter(
  45698. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45699. {
  45700. front: {
  45701. height: math.unit(6, "feet"),
  45702. weight: math.unit(200, "lb"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/blizzard/front.svg",
  45706. extra: 1136/990,
  45707. bottom: 136/1272
  45708. }
  45709. },
  45710. back: {
  45711. height: math.unit(6, "feet"),
  45712. weight: math.unit(200, "lb"),
  45713. name: "Back",
  45714. image: {
  45715. source: "./media/characters/blizzard/back.svg",
  45716. extra: 1175/1034,
  45717. bottom: 97/1272
  45718. }
  45719. },
  45720. sitting: {
  45721. height: math.unit(3.725, "feet"),
  45722. weight: math.unit(200, "lb"),
  45723. name: "Sitting",
  45724. image: {
  45725. source: "./media/characters/blizzard/sitting.svg",
  45726. extra: 581/485,
  45727. bottom: 90/671
  45728. }
  45729. },
  45730. frontWizard: {
  45731. height: math.unit(7.9, "feet"),
  45732. weight: math.unit(200, "lb"),
  45733. name: "Front (Wizard)",
  45734. image: {
  45735. source: "./media/characters/blizzard/front-wizard.svg"
  45736. }
  45737. },
  45738. backWizard: {
  45739. height: math.unit(7.9, "feet"),
  45740. weight: math.unit(200, "lb"),
  45741. name: "Back (Wizard)",
  45742. image: {
  45743. source: "./media/characters/blizzard/back-wizard.svg"
  45744. }
  45745. },
  45746. frontNsfw: {
  45747. height: math.unit(6, "feet"),
  45748. weight: math.unit(200, "lb"),
  45749. name: "Front (NSFW)",
  45750. image: {
  45751. source: "./media/characters/blizzard/front-nsfw.svg",
  45752. extra: 1136/990,
  45753. bottom: 136/1272
  45754. }
  45755. },
  45756. backNsfw: {
  45757. height: math.unit(6, "feet"),
  45758. weight: math.unit(200, "lb"),
  45759. name: "Back (NSFW)",
  45760. image: {
  45761. source: "./media/characters/blizzard/back-nsfw.svg",
  45762. extra: 1175/1034,
  45763. bottom: 97/1272
  45764. }
  45765. },
  45766. sittingNsfw: {
  45767. height: math.unit(3.725, "feet"),
  45768. weight: math.unit(200, "lb"),
  45769. name: "Sitting (NSFW)",
  45770. image: {
  45771. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45772. extra: 581/485,
  45773. bottom: 90/671
  45774. }
  45775. },
  45776. wizardFrontNsfw: {
  45777. height: math.unit(7.9, "feet"),
  45778. weight: math.unit(200, "lb"),
  45779. name: "Wizard (Front, NSFW)",
  45780. image: {
  45781. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(6, "feet"),
  45789. default: true
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(5 + 2/12, "feet"),
  45798. name: "Front",
  45799. image: {
  45800. source: "./media/characters/lumi/front.svg",
  45801. extra: 1328/1268,
  45802. bottom: 103/1431
  45803. }
  45804. },
  45805. back: {
  45806. height: math.unit(5 + 2/12, "feet"),
  45807. name: "Back",
  45808. image: {
  45809. source: "./media/characters/lumi/back.svg",
  45810. extra: 1381/1327,
  45811. bottom: 43/1424
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(5 + 2/12, "feet"),
  45819. default: true
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45825. {
  45826. front: {
  45827. height: math.unit(5 + 9/12, "feet"),
  45828. name: "Front",
  45829. image: {
  45830. source: "./media/characters/aliya-cotton/front.svg",
  45831. extra: 577/564,
  45832. bottom: 29/606
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Normal",
  45839. height: math.unit(5 + 9/12, "feet"),
  45840. default: true
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45846. {
  45847. front: {
  45848. height: math.unit(2.7, "meters"),
  45849. weight: math.unit(25000, "lb"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/noah-luxray/front.svg",
  45853. extra: 1644/825,
  45854. bottom: 339/1983
  45855. }
  45856. },
  45857. side: {
  45858. height: math.unit(2.97, "meters"),
  45859. weight: math.unit(25000, "lb"),
  45860. name: "Side",
  45861. image: {
  45862. source: "./media/characters/noah-luxray/side.svg",
  45863. extra: 1319/650,
  45864. bottom: 163/1482
  45865. }
  45866. },
  45867. dick: {
  45868. height: math.unit(7.4, "feet"),
  45869. weight: math.unit(2500, "lb"),
  45870. name: "Dick",
  45871. image: {
  45872. source: "./media/characters/noah-luxray/dick.svg"
  45873. }
  45874. },
  45875. dickAlt: {
  45876. height: math.unit(10.83, "feet"),
  45877. weight: math.unit(2500, "lb"),
  45878. name: "Dick-alt",
  45879. image: {
  45880. source: "./media/characters/noah-luxray/dick-alt.svg"
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "BIG",
  45887. height: math.unit(2.7, "meters"),
  45888. default: true
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45894. {
  45895. standing: {
  45896. height: math.unit(183, "cm"),
  45897. weight: math.unit(68, "kg"),
  45898. name: "Standing",
  45899. image: {
  45900. source: "./media/characters/arion/standing.svg",
  45901. extra: 1869/1807,
  45902. bottom: 93/1962
  45903. }
  45904. },
  45905. reclining: {
  45906. height: math.unit(70.5, "cm"),
  45907. weight: math.unit(68, "lb"),
  45908. name: "Reclining",
  45909. image: {
  45910. source: "./media/characters/arion/reclining.svg",
  45911. extra: 937/870,
  45912. bottom: 63/1000
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Colossus Size, Low",
  45919. height: math.unit(33, "meters"),
  45920. default: true
  45921. },
  45922. {
  45923. name: "Colossus Size, Mid",
  45924. height: math.unit(52, "meters")
  45925. },
  45926. {
  45927. name: "Colossus Size, High",
  45928. height: math.unit(60, "meters")
  45929. },
  45930. {
  45931. name: "Titan Size, Low",
  45932. height: math.unit(91, "meters"),
  45933. },
  45934. {
  45935. name: "Titan Size, Mid",
  45936. height: math.unit(122, "meters")
  45937. },
  45938. {
  45939. name: "Titan Size, High",
  45940. height: math.unit(162, "meters")
  45941. },
  45942. ]
  45943. ))
  45944. characterMakers.push(() => makeCharacter(
  45945. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45946. {
  45947. front: {
  45948. height: math.unit(53, "meters"),
  45949. name: "Front",
  45950. image: {
  45951. source: "./media/characters/stellar-marbey/front.svg",
  45952. extra: 1913/1805,
  45953. bottom: 92/2005
  45954. }
  45955. },
  45956. back: {
  45957. height: math.unit(53, "meters"),
  45958. name: "Back",
  45959. image: {
  45960. source: "./media/characters/stellar-marbey/back.svg",
  45961. extra: 1960/1851,
  45962. bottom: 28/1988
  45963. }
  45964. },
  45965. mouth: {
  45966. height: math.unit(3.5, "meters"),
  45967. name: "Mouth",
  45968. image: {
  45969. source: "./media/characters/stellar-marbey/mouth.svg"
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Macro",
  45976. height: math.unit(53, "meters"),
  45977. default: true
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45983. {
  45984. front: {
  45985. height: math.unit(8 + 1/12, "feet"),
  45986. weight: math.unit(233, "lb"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/matsu/front.svg",
  45990. extra: 832/772,
  45991. bottom: 40/872
  45992. }
  45993. },
  45994. back: {
  45995. height: math.unit(8 + 1/12, "feet"),
  45996. weight: math.unit(233, "lb"),
  45997. name: "Back",
  45998. image: {
  45999. source: "./media/characters/matsu/back.svg",
  46000. extra: 839/780,
  46001. bottom: 47/886
  46002. }
  46003. },
  46004. },
  46005. [
  46006. {
  46007. name: "Normal",
  46008. height: math.unit(8 + 1/12, "feet"),
  46009. default: true
  46010. },
  46011. ]
  46012. ))
  46013. characterMakers.push(() => makeCharacter(
  46014. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46015. {
  46016. front: {
  46017. height: math.unit(4, "feet"),
  46018. weight: math.unit(148, "lb"),
  46019. name: "Front",
  46020. image: {
  46021. source: "./media/characters/thiz/front.svg",
  46022. extra: 1913/1748,
  46023. bottom: 62/1975
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(4, "feet"),
  46031. default: true
  46032. },
  46033. ]
  46034. ))
  46035. characterMakers.push(() => makeCharacter(
  46036. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46037. {
  46038. front: {
  46039. height: math.unit(7 + 6/12, "feet"),
  46040. weight: math.unit(267, "lb"),
  46041. name: "Front",
  46042. image: {
  46043. source: "./media/characters/marcel/front.svg",
  46044. extra: 1221/1096,
  46045. bottom: 76/1297
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(7 + 6/12, "feet"),
  46053. default: true
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46059. {
  46060. side: {
  46061. height: math.unit(42, "meters"),
  46062. name: "Side",
  46063. image: {
  46064. source: "./media/characters/flake/side.svg",
  46065. extra: 1525/1306,
  46066. bottom: 209/1734
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(42, "meters"),
  46074. default: true
  46075. },
  46076. ]
  46077. ))
  46078. characterMakers.push(() => makeCharacter(
  46079. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46080. {
  46081. dressed: {
  46082. height: math.unit(6 + 4/12, "feet"),
  46083. weight: math.unit(520, "lb"),
  46084. name: "Dressed",
  46085. image: {
  46086. source: "./media/characters/someonne/dressed.svg",
  46087. extra: 1020/1010,
  46088. bottom: 178/1198
  46089. }
  46090. },
  46091. undressed: {
  46092. height: math.unit(6 + 4/12, "feet"),
  46093. weight: math.unit(520, "lb"),
  46094. name: "Undressed",
  46095. image: {
  46096. source: "./media/characters/someonne/undressed.svg",
  46097. extra: 1019/1014,
  46098. bottom: 169/1188
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(6 + 4/12, "feet"),
  46106. default: true
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(3, "feet"),
  46115. weight: math.unit(30, "lb"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/till/front.svg",
  46119. extra: 892/823,
  46120. bottom: 55/947
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(3, "feet"),
  46128. default: true
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(9 + 8/12, "feet"),
  46137. weight: math.unit(800, "lb"),
  46138. name: "Front",
  46139. image: {
  46140. source: "./media/characters/sydney-heki/front.svg",
  46141. extra: 1360/1300,
  46142. bottom: 22/1382
  46143. }
  46144. },
  46145. back: {
  46146. height: math.unit(9 + 8/12, "feet"),
  46147. weight: math.unit(800, "lb"),
  46148. name: "Back",
  46149. image: {
  46150. source: "./media/characters/sydney-heki/back.svg",
  46151. extra: 1356/1293,
  46152. bottom: 12/1368
  46153. }
  46154. },
  46155. frontDressed: {
  46156. height: math.unit(9 + 8/12, "feet"),
  46157. weight: math.unit(800, "lb"),
  46158. name: "Front-dressed",
  46159. image: {
  46160. source: "./media/characters/sydney-heki/front-dressed.svg",
  46161. extra: 1360/1300,
  46162. bottom: 22/1382
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(9 + 8/12, "feet"),
  46170. default: true
  46171. },
  46172. {
  46173. name: "Macro",
  46174. height: math.unit(500, "feet")
  46175. },
  46176. {
  46177. name: "Megamacro",
  46178. height: math.unit(3.6, "miles")
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46184. {
  46185. front: {
  46186. height: math.unit(200, "cm"),
  46187. weight: math.unit(250, "lb"),
  46188. name: "Front",
  46189. image: {
  46190. source: "./media/characters/fowler-karlsson/front.svg",
  46191. extra: 897/845,
  46192. bottom: 123/1020
  46193. }
  46194. },
  46195. back: {
  46196. height: math.unit(200, "cm"),
  46197. weight: math.unit(250, "lb"),
  46198. name: "Back",
  46199. image: {
  46200. source: "./media/characters/fowler-karlsson/back.svg",
  46201. extra: 999/944,
  46202. bottom: 26/1025
  46203. }
  46204. },
  46205. dick: {
  46206. height: math.unit(1.92, "feet"),
  46207. weight: math.unit(150, "lb"),
  46208. name: "Dick",
  46209. image: {
  46210. source: "./media/characters/fowler-karlsson/dick.svg"
  46211. }
  46212. },
  46213. },
  46214. [
  46215. {
  46216. name: "Normal",
  46217. height: math.unit(200, "cm"),
  46218. default: true
  46219. },
  46220. {
  46221. name: "Smaller Macro",
  46222. height: math.unit(90, "m")
  46223. },
  46224. {
  46225. name: "Macro",
  46226. height: math.unit(150, "m")
  46227. },
  46228. {
  46229. name: "Bigger Macro",
  46230. height: math.unit(300, "m")
  46231. },
  46232. ]
  46233. ))
  46234. characterMakers.push(() => makeCharacter(
  46235. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46236. {
  46237. side: {
  46238. height: math.unit(8 + 2/12, "feet"),
  46239. weight: math.unit(1, "tonne"),
  46240. name: "Side",
  46241. image: {
  46242. source: "./media/characters/rylide/side.svg",
  46243. extra: 1318/1034,
  46244. bottom: 106/1424
  46245. }
  46246. },
  46247. sitting: {
  46248. height: math.unit(303, "cm"),
  46249. weight: math.unit(1, "tonne"),
  46250. name: "Sitting",
  46251. image: {
  46252. source: "./media/characters/rylide/sitting.svg",
  46253. extra: 1303/1103,
  46254. bottom: 36/1339
  46255. }
  46256. },
  46257. },
  46258. [
  46259. {
  46260. name: "Normal",
  46261. height: math.unit(8 + 2/12, "feet"),
  46262. default: true
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46268. {
  46269. front: {
  46270. height: math.unit(5 + 10/12, "feet"),
  46271. weight: math.unit(160, "lb"),
  46272. name: "Front",
  46273. image: {
  46274. source: "./media/characters/pudask/front.svg",
  46275. extra: 1616/1590,
  46276. bottom: 161/1777
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Ferret Height",
  46283. height: math.unit(2 + 5/12, "feet")
  46284. },
  46285. {
  46286. name: "Canon Height",
  46287. height: math.unit(5 + 10/12, "feet"),
  46288. default: true
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46294. {
  46295. front: {
  46296. height: math.unit(3 + 6/12, "feet"),
  46297. weight: math.unit(60, "lb"),
  46298. name: "Front",
  46299. image: {
  46300. source: "./media/characters/ramita/front.svg",
  46301. extra: 1402/1232,
  46302. bottom: 62/1464
  46303. }
  46304. },
  46305. dressed: {
  46306. height: math.unit(3 + 6/12, "feet"),
  46307. weight: math.unit(60, "lb"),
  46308. name: "Dressed",
  46309. image: {
  46310. source: "./media/characters/ramita/dressed.svg",
  46311. extra: 1534/1249,
  46312. bottom: 50/1584
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Normal",
  46319. height: math.unit(3 + 6/12, "feet"),
  46320. default: true
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(8, "feet"),
  46329. name: "Front",
  46330. image: {
  46331. source: "./media/characters/ark/front.svg",
  46332. extra: 772/693,
  46333. bottom: 45/817
  46334. }
  46335. },
  46336. },
  46337. [
  46338. {
  46339. name: "Normal",
  46340. height: math.unit(8, "feet"),
  46341. default: true
  46342. },
  46343. ]
  46344. ))
  46345. characterMakers.push(() => makeCharacter(
  46346. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46347. {
  46348. front: {
  46349. height: math.unit(6, "feet"),
  46350. weight: math.unit(250, "lb"),
  46351. volume: math.unit(5/8, "gallons"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/ludwig-horn/front.svg",
  46355. extra: 1782/1635,
  46356. bottom: 96/1878
  46357. }
  46358. },
  46359. back: {
  46360. height: math.unit(6, "feet"),
  46361. weight: math.unit(250, "lb"),
  46362. volume: math.unit(5/8, "gallons"),
  46363. name: "Back",
  46364. image: {
  46365. source: "./media/characters/ludwig-horn/back.svg",
  46366. extra: 1874/1729,
  46367. bottom: 27/1901
  46368. }
  46369. },
  46370. dick: {
  46371. height: math.unit(1.05, "feet"),
  46372. weight: math.unit(15, "lb"),
  46373. volume: math.unit(5/8, "gallons"),
  46374. name: "Dick",
  46375. image: {
  46376. source: "./media/characters/ludwig-horn/dick.svg"
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Small",
  46383. height: math.unit(6, "feet")
  46384. },
  46385. {
  46386. name: "Typical",
  46387. height: math.unit(12, "feet"),
  46388. default: true
  46389. },
  46390. {
  46391. name: "Building",
  46392. height: math.unit(80, "feet")
  46393. },
  46394. {
  46395. name: "Town",
  46396. height: math.unit(800, "feet")
  46397. },
  46398. {
  46399. name: "Kingdom",
  46400. height: math.unit(80000, "feet")
  46401. },
  46402. {
  46403. name: "Planet",
  46404. height: math.unit(8000000, "feet")
  46405. },
  46406. {
  46407. name: "Universe",
  46408. height: math.unit(8000000000, "feet")
  46409. },
  46410. {
  46411. name: "Transcended",
  46412. height: math.unit(8e27, "feet")
  46413. },
  46414. ]
  46415. ))
  46416. characterMakers.push(() => makeCharacter(
  46417. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46418. {
  46419. front: {
  46420. height: math.unit(5, "feet"),
  46421. weight: math.unit(50, "kg"),
  46422. name: "Front",
  46423. image: {
  46424. source: "./media/characters/biot-avery/front.svg",
  46425. extra: 1295/1232,
  46426. bottom: 86/1381
  46427. }
  46428. },
  46429. },
  46430. [
  46431. {
  46432. name: "Normal",
  46433. height: math.unit(5, "feet"),
  46434. default: true
  46435. },
  46436. ]
  46437. ))
  46438. characterMakers.push(() => makeCharacter(
  46439. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46440. {
  46441. front: {
  46442. height: math.unit(6, "feet"),
  46443. name: "Front",
  46444. image: {
  46445. source: "./media/characters/kitsune-kiro/front.svg",
  46446. extra: 1270/1158,
  46447. bottom: 42/1312
  46448. }
  46449. },
  46450. frontAlt: {
  46451. height: math.unit(6, "feet"),
  46452. name: "Front-alt",
  46453. image: {
  46454. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46455. extra: 1130/1081,
  46456. bottom: 36/1166
  46457. }
  46458. },
  46459. },
  46460. [
  46461. {
  46462. name: "Smol",
  46463. height: math.unit(3, "feet")
  46464. },
  46465. {
  46466. name: "Normal",
  46467. height: math.unit(6, "feet"),
  46468. default: true
  46469. },
  46470. ]
  46471. ))
  46472. characterMakers.push(() => makeCharacter(
  46473. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46474. {
  46475. front: {
  46476. height: math.unit(6, "feet"),
  46477. weight: math.unit(125, "lb"),
  46478. name: "Front",
  46479. image: {
  46480. source: "./media/characters/jack-thatcher/front.svg",
  46481. extra: 1474/1370,
  46482. bottom: 26/1500
  46483. }
  46484. },
  46485. back: {
  46486. height: math.unit(6, "feet"),
  46487. weight: math.unit(125, "lb"),
  46488. name: "Back",
  46489. image: {
  46490. source: "./media/characters/jack-thatcher/back.svg",
  46491. extra: 1489/1384,
  46492. bottom: 18/1507
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(6, "feet"),
  46500. default: true
  46501. },
  46502. {
  46503. name: "Macro",
  46504. height: math.unit(75, "feet")
  46505. },
  46506. {
  46507. name: "Macro-er",
  46508. height: math.unit(250, "feet")
  46509. },
  46510. ]
  46511. ))
  46512. characterMakers.push(() => makeCharacter(
  46513. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46514. {
  46515. front: {
  46516. height: math.unit(7, "feet"),
  46517. weight: math.unit(110, "kg"),
  46518. name: "Front",
  46519. image: {
  46520. source: "./media/characters/max-hyper/front.svg",
  46521. extra: 1969/1881,
  46522. bottom: 49/2018
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(7, "feet"),
  46530. default: true
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(5 + 5/12, "feet"),
  46539. weight: math.unit(160, "lb"),
  46540. name: "Front",
  46541. image: {
  46542. source: "./media/characters/spook/front.svg",
  46543. extra: 794/791,
  46544. bottom: 54/848
  46545. }
  46546. },
  46547. back: {
  46548. height: math.unit(5 + 5/12, "feet"),
  46549. weight: math.unit(160, "lb"),
  46550. name: "Back",
  46551. image: {
  46552. source: "./media/characters/spook/back.svg",
  46553. extra: 812/798,
  46554. bottom: 32/844
  46555. }
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(5 + 5/12, "feet"),
  46562. default: true
  46563. },
  46564. ]
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46568. {
  46569. front: {
  46570. height: math.unit(18, "feet"),
  46571. name: "Front",
  46572. image: {
  46573. source: "./media/characters/xeaduulix/front.svg",
  46574. extra: 1380/1166,
  46575. bottom: 110/1490
  46576. }
  46577. },
  46578. back: {
  46579. height: math.unit(18, "feet"),
  46580. name: "Back",
  46581. image: {
  46582. source: "./media/characters/xeaduulix/back.svg",
  46583. extra: 1592/1170,
  46584. bottom: 128/1720
  46585. }
  46586. },
  46587. frontNsfw: {
  46588. height: math.unit(18, "feet"),
  46589. name: "Front (NSFW)",
  46590. image: {
  46591. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46592. extra: 1380/1166,
  46593. bottom: 110/1490
  46594. }
  46595. },
  46596. backNsfw: {
  46597. height: math.unit(18, "feet"),
  46598. name: "Back (NSFW)",
  46599. image: {
  46600. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46601. extra: 1592/1170,
  46602. bottom: 128/1720
  46603. }
  46604. },
  46605. },
  46606. [
  46607. {
  46608. name: "Normal",
  46609. height: math.unit(18, "feet"),
  46610. default: true
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46616. {
  46617. spreadWings: {
  46618. height: math.unit(20, "feet"),
  46619. name: "Spread Wings",
  46620. image: {
  46621. source: "./media/characters/fledge/spread-wings.svg",
  46622. extra: 693/635,
  46623. bottom: 26/719
  46624. }
  46625. },
  46626. front: {
  46627. height: math.unit(20, "feet"),
  46628. name: "Front",
  46629. image: {
  46630. source: "./media/characters/fledge/front.svg",
  46631. extra: 684/637,
  46632. bottom: 18/702
  46633. }
  46634. },
  46635. frontAlt: {
  46636. height: math.unit(20, "feet"),
  46637. name: "Front (Alt)",
  46638. image: {
  46639. source: "./media/characters/fledge/front-alt.svg",
  46640. extra: 708/664,
  46641. bottom: 13/721
  46642. }
  46643. },
  46644. back: {
  46645. height: math.unit(20, "feet"),
  46646. name: "Back",
  46647. image: {
  46648. source: "./media/characters/fledge/back.svg",
  46649. extra: 718/634,
  46650. bottom: 22/740
  46651. }
  46652. },
  46653. head: {
  46654. height: math.unit(5.55, "feet"),
  46655. name: "Head",
  46656. image: {
  46657. source: "./media/characters/fledge/head.svg"
  46658. }
  46659. },
  46660. headAlt: {
  46661. height: math.unit(5.1, "feet"),
  46662. name: "Head (Alt)",
  46663. image: {
  46664. source: "./media/characters/fledge/head-alt.svg"
  46665. }
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Small",
  46671. height: math.unit(6 + 2/12, "feet")
  46672. },
  46673. {
  46674. name: "Big",
  46675. height: math.unit(20, "feet"),
  46676. default: true
  46677. },
  46678. {
  46679. name: "Giant",
  46680. height: math.unit(100, "feet")
  46681. },
  46682. {
  46683. name: "Macro",
  46684. height: math.unit(200, "feet")
  46685. },
  46686. ]
  46687. ))
  46688. characterMakers.push(() => makeCharacter(
  46689. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46690. {
  46691. front: {
  46692. height: math.unit(1, "meter"),
  46693. name: "Front",
  46694. image: {
  46695. source: "./media/characters/atlas-morenai/front.svg",
  46696. extra: 1275/1043,
  46697. bottom: 19/1294
  46698. }
  46699. },
  46700. back: {
  46701. height: math.unit(1, "meter"),
  46702. name: "Back",
  46703. image: {
  46704. source: "./media/characters/atlas-morenai/back.svg",
  46705. extra: 1141/1001,
  46706. bottom: 25/1166
  46707. }
  46708. },
  46709. },
  46710. [
  46711. {
  46712. name: "Normal",
  46713. height: math.unit(1, "meter"),
  46714. default: true
  46715. },
  46716. {
  46717. name: "Magic-Infused",
  46718. height: math.unit(5, "meters")
  46719. },
  46720. ]
  46721. ))
  46722. characterMakers.push(() => makeCharacter(
  46723. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46724. {
  46725. front: {
  46726. height: math.unit(5, "meters"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/cintia/front.svg",
  46730. extra: 1312/1228,
  46731. bottom: 38/1350
  46732. }
  46733. },
  46734. back: {
  46735. height: math.unit(5, "meters"),
  46736. name: "Back",
  46737. image: {
  46738. source: "./media/characters/cintia/back.svg",
  46739. extra: 1260/1166,
  46740. bottom: 98/1358
  46741. }
  46742. },
  46743. frontDick: {
  46744. height: math.unit(5, "meters"),
  46745. name: "Front (Dick)",
  46746. image: {
  46747. source: "./media/characters/cintia/front-dick.svg",
  46748. extra: 1312/1228,
  46749. bottom: 38/1350
  46750. }
  46751. },
  46752. backDick: {
  46753. height: math.unit(5, "meters"),
  46754. name: "Back (Dick)",
  46755. image: {
  46756. source: "./media/characters/cintia/back-dick.svg",
  46757. extra: 1260/1166,
  46758. bottom: 98/1358
  46759. }
  46760. },
  46761. bust: {
  46762. height: math.unit(1.97, "meters"),
  46763. name: "Bust",
  46764. image: {
  46765. source: "./media/characters/cintia/bust.svg",
  46766. extra: 617/565,
  46767. bottom: 0/617
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(5, "meters"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46781. {
  46782. side: {
  46783. height: math.unit(100, "feet"),
  46784. name: "Side",
  46785. image: {
  46786. source: "./media/characters/denora/side.svg",
  46787. extra: 875/803,
  46788. bottom: 9/884
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Standard",
  46795. height: math.unit(100, "feet"),
  46796. default: true
  46797. },
  46798. {
  46799. name: "Grand",
  46800. height: math.unit(1000, "feet")
  46801. },
  46802. {
  46803. name: "Conquering",
  46804. height: math.unit(10000, "feet")
  46805. },
  46806. ]
  46807. ))
  46808. characterMakers.push(() => makeCharacter(
  46809. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46810. {
  46811. dressed: {
  46812. height: math.unit(8 + 5/12, "feet"),
  46813. weight: math.unit(700, "lb"),
  46814. name: "Dressed",
  46815. image: {
  46816. source: "./media/characters/kiva/dressed.svg",
  46817. extra: 1102/1055,
  46818. bottom: 60/1162
  46819. }
  46820. },
  46821. nude: {
  46822. height: math.unit(8 + 5/12, "feet"),
  46823. weight: math.unit(700, "lb"),
  46824. name: "Nude",
  46825. image: {
  46826. source: "./media/characters/kiva/nude.svg",
  46827. extra: 1102/1055,
  46828. bottom: 60/1162
  46829. }
  46830. },
  46831. },
  46832. [
  46833. {
  46834. name: "Base Height",
  46835. height: math.unit(8 + 5/12, "feet"),
  46836. default: true
  46837. },
  46838. {
  46839. name: "Macro",
  46840. height: math.unit(100, "feet")
  46841. },
  46842. {
  46843. name: "Max",
  46844. height: math.unit(3280, "feet")
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(6 + 8/12, "feet"),
  46853. weight: math.unit(250, "lb"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/ztragon/front.svg",
  46857. extra: 1825/1684,
  46858. bottom: 98/1923
  46859. }
  46860. },
  46861. },
  46862. [
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(6 + 8/12, "feet"),
  46866. default: true
  46867. },
  46868. {
  46869. name: "Macro",
  46870. height: math.unit(80, "feet")
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46876. {
  46877. front: {
  46878. height: math.unit(10.4, "feet"),
  46879. weight: math.unit(2, "tons"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/yesenia/front.svg",
  46883. extra: 1479/1474,
  46884. bottom: 233/1712
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(10.4, "feet"),
  46892. default: true
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46898. {
  46899. normal: {
  46900. height: math.unit(6 + 1/12, "feet"),
  46901. weight: math.unit(180, "lb"),
  46902. name: "Normal",
  46903. image: {
  46904. source: "./media/characters/leanne-lycheborne/normal.svg",
  46905. extra: 1748/1660,
  46906. bottom: 98/1846
  46907. }
  46908. },
  46909. were: {
  46910. height: math.unit(12, "feet"),
  46911. weight: math.unit(1600, "lb"),
  46912. name: "Were",
  46913. image: {
  46914. source: "./media/characters/leanne-lycheborne/were.svg",
  46915. extra: 1485/1432,
  46916. bottom: 66/1551
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(6 + 1/12, "feet"),
  46924. default: true
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46930. {
  46931. side: {
  46932. height: math.unit(13, "feet"),
  46933. name: "Side",
  46934. image: {
  46935. source: "./media/characters/kira-tyler/side.svg",
  46936. extra: 693/393,
  46937. bottom: 58/751
  46938. }
  46939. },
  46940. },
  46941. [
  46942. {
  46943. name: "Normal",
  46944. height: math.unit(13, "feet"),
  46945. default: true
  46946. },
  46947. ]
  46948. ))
  46949. characterMakers.push(() => makeCharacter(
  46950. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46951. {
  46952. front: {
  46953. height: math.unit(10.3, "feet"),
  46954. weight: math.unit(150, "lb"),
  46955. name: "Front",
  46956. image: {
  46957. source: "./media/characters/blaze/front.svg",
  46958. extra: 1378/1286,
  46959. bottom: 172/1550
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(10.3, "feet"),
  46967. default: true
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46973. {
  46974. side: {
  46975. height: math.unit(2, "meters"),
  46976. weight: math.unit(400, "kg"),
  46977. name: "Side",
  46978. image: {
  46979. source: "./media/characters/anu/side.svg",
  46980. extra: 506/394,
  46981. bottom: 18/524
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Humanoid",
  46988. height: math.unit(2, "meters")
  46989. },
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(5, "meters"),
  46993. default: true
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46999. {
  47000. front: {
  47001. height: math.unit(5 + 5/12, "feet"),
  47002. weight: math.unit(170, "lb"),
  47003. name: "Front",
  47004. image: {
  47005. source: "./media/characters/synx-the-lynx/front.svg",
  47006. extra: 1893/1745,
  47007. bottom: 17/1910
  47008. }
  47009. },
  47010. side: {
  47011. height: math.unit(5 + 5/12, "feet"),
  47012. weight: math.unit(170, "lb"),
  47013. name: "Side",
  47014. image: {
  47015. source: "./media/characters/synx-the-lynx/side.svg",
  47016. extra: 1884/1740,
  47017. bottom: 39/1923
  47018. }
  47019. },
  47020. back: {
  47021. height: math.unit(5 + 5/12, "feet"),
  47022. weight: math.unit(170, "lb"),
  47023. name: "Back",
  47024. image: {
  47025. source: "./media/characters/synx-the-lynx/back.svg",
  47026. extra: 1903/1755,
  47027. bottom: 14/1917
  47028. }
  47029. },
  47030. },
  47031. [
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(5 + 5/12, "feet"),
  47035. default: true
  47036. },
  47037. ]
  47038. ))
  47039. characterMakers.push(() => makeCharacter(
  47040. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47041. {
  47042. back: {
  47043. height: math.unit(15, "feet"),
  47044. name: "Back",
  47045. image: {
  47046. source: "./media/characters/nadezda-fex/back.svg",
  47047. extra: 1695/1481,
  47048. bottom: 25/1720
  47049. }
  47050. },
  47051. },
  47052. [
  47053. {
  47054. name: "Normal",
  47055. height: math.unit(15, "feet"),
  47056. default: true
  47057. },
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(2.5, "miles")
  47061. },
  47062. {
  47063. name: "Goddess",
  47064. height: math.unit(2, "multiverses")
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47070. {
  47071. front: {
  47072. height: math.unit(216, "cm"),
  47073. name: "Front",
  47074. image: {
  47075. source: "./media/characters/lev/front.svg",
  47076. extra: 1728/1670,
  47077. bottom: 82/1810
  47078. }
  47079. },
  47080. back: {
  47081. height: math.unit(216, "cm"),
  47082. name: "Back",
  47083. image: {
  47084. source: "./media/characters/lev/back.svg",
  47085. extra: 1738/1675,
  47086. bottom: 24/1762
  47087. }
  47088. },
  47089. dressed: {
  47090. height: math.unit(216, "cm"),
  47091. name: "Dressed",
  47092. image: {
  47093. source: "./media/characters/lev/dressed.svg",
  47094. extra: 1397/1351,
  47095. bottom: 73/1470
  47096. }
  47097. },
  47098. head: {
  47099. height: math.unit(0.51, "meter"),
  47100. name: "Head",
  47101. image: {
  47102. source: "./media/characters/lev/head.svg"
  47103. }
  47104. },
  47105. },
  47106. [
  47107. {
  47108. name: "Normal",
  47109. height: math.unit(216, "cm"),
  47110. default: true
  47111. },
  47112. {
  47113. name: "Relatively Macro",
  47114. height: math.unit(80, "meters")
  47115. },
  47116. {
  47117. name: "Megamacro",
  47118. height: math.unit(21600, "meters")
  47119. },
  47120. {
  47121. name: "Megamacro+",
  47122. height: math.unit(64800, "meters")
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(2, "meters"),
  47131. weight: math.unit(80, "kg"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/moka/front.svg",
  47135. extra: 1337/1255,
  47136. bottom: 58/1395
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Micro",
  47143. height: math.unit(15, "cm")
  47144. },
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(2, "meters"),
  47148. default: true
  47149. },
  47150. {
  47151. name: "Macro",
  47152. height: math.unit(20, "meters"),
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47158. {
  47159. front: {
  47160. height: math.unit(9, "feet"),
  47161. weight: math.unit(240, "lb"),
  47162. name: "Front",
  47163. image: {
  47164. source: "./media/characters/kuzco/front.svg",
  47165. extra: 1593/1487,
  47166. bottom: 32/1625
  47167. }
  47168. },
  47169. side: {
  47170. height: math.unit(9, "feet"),
  47171. weight: math.unit(240, "lb"),
  47172. name: "Side",
  47173. image: {
  47174. source: "./media/characters/kuzco/side.svg",
  47175. extra: 1575/1485,
  47176. bottom: 30/1605
  47177. }
  47178. },
  47179. back: {
  47180. height: math.unit(9, "feet"),
  47181. weight: math.unit(240, "lb"),
  47182. name: "Back",
  47183. image: {
  47184. source: "./media/characters/kuzco/back.svg",
  47185. extra: 1603/1514,
  47186. bottom: 14/1617
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(9, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47200. {
  47201. side: {
  47202. height: math.unit(2, "meters"),
  47203. weight: math.unit(300, "kg"),
  47204. name: "Side",
  47205. image: {
  47206. source: "./media/characters/ceruleus/side.svg",
  47207. extra: 1068/974,
  47208. bottom: 126/1194
  47209. }
  47210. },
  47211. maw: {
  47212. height: math.unit(0.8125, "meter"),
  47213. name: "Maw",
  47214. image: {
  47215. source: "./media/characters/ceruleus/maw.svg"
  47216. }
  47217. },
  47218. },
  47219. [
  47220. {
  47221. name: "Normal",
  47222. height: math.unit(16, "meters"),
  47223. default: true
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47229. {
  47230. front: {
  47231. height: math.unit(9, "feet"),
  47232. weight: math.unit(500, "kg"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/acouya/front.svg",
  47236. extra: 1660/1473,
  47237. bottom: 28/1688
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(9, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(5 + 6/12, "feet"),
  47254. weight: math.unit(195, "lb"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/vant/front.svg",
  47258. extra: 1396/1320,
  47259. bottom: 20/1416
  47260. }
  47261. },
  47262. back: {
  47263. height: math.unit(5 + 6/12, "feet"),
  47264. weight: math.unit(195, "lb"),
  47265. name: "Back",
  47266. image: {
  47267. source: "./media/characters/vant/back.svg",
  47268. extra: 1396/1320,
  47269. bottom: 20/1416
  47270. }
  47271. },
  47272. maw: {
  47273. height: math.unit(0.75, "feet"),
  47274. name: "Maw",
  47275. image: {
  47276. source: "./media/characters/vant/maw.svg"
  47277. }
  47278. },
  47279. paw: {
  47280. height: math.unit(1.07, "feet"),
  47281. name: "Paw",
  47282. image: {
  47283. source: "./media/characters/vant/paw.svg"
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Micro",
  47290. height: math.unit(0.25, "inches")
  47291. },
  47292. {
  47293. name: "Normal",
  47294. height: math.unit(5 + 6/12, "feet"),
  47295. default: true
  47296. },
  47297. {
  47298. name: "Macro",
  47299. height: math.unit(75, "feet")
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47305. {
  47306. front: {
  47307. height: math.unit(30, "meters"),
  47308. weight: math.unit(363, "tons"),
  47309. name: "Front",
  47310. image: {
  47311. source: "./media/characters/ahra/front.svg",
  47312. extra: 1914/1814,
  47313. bottom: 46/1960
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Macro",
  47320. height: math.unit(30, "meters"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47327. {
  47328. undressed: {
  47329. height: math.unit(2, "m"),
  47330. weight: math.unit(250, "kg"),
  47331. name: "Undressed",
  47332. image: {
  47333. source: "./media/characters/coriander/undressed.svg",
  47334. extra: 1757/1606,
  47335. bottom: 107/1864
  47336. }
  47337. },
  47338. dressed: {
  47339. height: math.unit(2, "m"),
  47340. weight: math.unit(250, "kg"),
  47341. name: "Dressed",
  47342. image: {
  47343. source: "./media/characters/coriander/dressed.svg",
  47344. extra: 1757/1606,
  47345. bottom: 107/1864
  47346. }
  47347. },
  47348. },
  47349. [
  47350. {
  47351. name: "Normal",
  47352. height: math.unit(4, "meters"),
  47353. default: true
  47354. },
  47355. {
  47356. name: "XL",
  47357. height: math.unit(6, "meters")
  47358. },
  47359. {
  47360. name: "XXL",
  47361. height: math.unit(8, "meters")
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47367. {
  47368. front: {
  47369. height: math.unit(6, "feet"),
  47370. name: "Front",
  47371. image: {
  47372. source: "./media/characters/syrinx/front.svg",
  47373. extra: 1557/1259,
  47374. bottom: 171/1728
  47375. }
  47376. },
  47377. },
  47378. [
  47379. {
  47380. name: "Normal",
  47381. height: math.unit(6 + 3/12, "feet"),
  47382. default: true
  47383. },
  47384. ]
  47385. ))
  47386. characterMakers.push(() => makeCharacter(
  47387. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47388. {
  47389. front: {
  47390. height: math.unit(11 + 6/12, "feet"),
  47391. weight: math.unit(1.5, "tons"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/bor/front.svg",
  47395. extra: 1189/1109,
  47396. bottom: 170/1359
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(11 + 6/12, "feet"),
  47404. default: true
  47405. },
  47406. {
  47407. name: "Macro",
  47408. height: math.unit(32 + 9/12, "feet")
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47414. {
  47415. anthro: {
  47416. height: math.unit(9, "feet"),
  47417. weight: math.unit(2076, "lb"),
  47418. name: "Anthro",
  47419. image: {
  47420. source: "./media/characters/abacus/anthro.svg",
  47421. extra: 1540/1494,
  47422. bottom: 233/1773
  47423. }
  47424. },
  47425. pigeon: {
  47426. height: math.unit(1, "feet"),
  47427. name: "Pigeon",
  47428. image: {
  47429. source: "./media/characters/abacus/pigeon.svg",
  47430. extra: 528/525,
  47431. bottom: 46/574
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Normal",
  47438. height: math.unit(9, "feet"),
  47439. default: true
  47440. },
  47441. ]
  47442. ))
  47443. characterMakers.push(() => makeCharacter(
  47444. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47445. {
  47446. side: {
  47447. height: math.unit(6, "feet"),
  47448. name: "Side",
  47449. image: {
  47450. source: "./media/characters/delkhan/side.svg",
  47451. extra: 1884/1786,
  47452. bottom: 308/2192
  47453. }
  47454. },
  47455. head: {
  47456. height: math.unit(3.38, "feet"),
  47457. name: "Head",
  47458. image: {
  47459. source: "./media/characters/delkhan/head.svg"
  47460. }
  47461. },
  47462. },
  47463. [
  47464. {
  47465. name: "Normal",
  47466. height: math.unit(72, "feet"),
  47467. default: true
  47468. },
  47469. {
  47470. name: "Giant",
  47471. height: math.unit(172, "feet")
  47472. },
  47473. ]
  47474. ))
  47475. characterMakers.push(() => makeCharacter(
  47476. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47477. {
  47478. standing: {
  47479. height: math.unit(6, "feet"),
  47480. name: "Standing",
  47481. image: {
  47482. source: "./media/characters/euchidat/standing.svg",
  47483. extra: 1612/1553,
  47484. bottom: 116/1728
  47485. }
  47486. },
  47487. leaning: {
  47488. height: math.unit(6, "feet"),
  47489. name: "Leaning",
  47490. image: {
  47491. source: "./media/characters/euchidat/leaning.svg",
  47492. extra: 1719/1674,
  47493. bottom: 27/1746
  47494. }
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Normal",
  47500. height: math.unit(175, "feet"),
  47501. default: true
  47502. },
  47503. {
  47504. name: "Megamacro",
  47505. height: math.unit(190, "miles")
  47506. },
  47507. {
  47508. name: "Gigamacro",
  47509. height: math.unit(190000, "miles")
  47510. },
  47511. ]
  47512. ))
  47513. characterMakers.push(() => makeCharacter(
  47514. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47515. {
  47516. front: {
  47517. height: math.unit(6, "feet"),
  47518. weight: math.unit(150, "lb"),
  47519. name: "Front",
  47520. image: {
  47521. source: "./media/characters/rebecca-stack/front.svg",
  47522. extra: 1256/1201,
  47523. bottom: 18/1274
  47524. }
  47525. },
  47526. },
  47527. [
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(5 + 8/12, "feet"),
  47531. default: true
  47532. },
  47533. {
  47534. name: "Demolitionist",
  47535. height: math.unit(200, "feet")
  47536. },
  47537. {
  47538. name: "Out of Control",
  47539. height: math.unit(2, "miles")
  47540. },
  47541. {
  47542. name: "Giga",
  47543. height: math.unit(7200, "miles")
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47549. {
  47550. front: {
  47551. height: math.unit(6, "feet"),
  47552. weight: math.unit(150, "lb"),
  47553. name: "Front",
  47554. image: {
  47555. source: "./media/characters/jenny-cartwright/front.svg",
  47556. extra: 1384/1376,
  47557. bottom: 58/1442
  47558. }
  47559. },
  47560. },
  47561. [
  47562. {
  47563. name: "Normal",
  47564. height: math.unit(6 + 7/12, "feet"),
  47565. default: true
  47566. },
  47567. {
  47568. name: "Librarian",
  47569. height: math.unit(55, "feet")
  47570. },
  47571. {
  47572. name: "Sightseer",
  47573. height: math.unit(50, "miles")
  47574. },
  47575. {
  47576. name: "Giga",
  47577. height: math.unit(30000, "miles")
  47578. },
  47579. ]
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47583. {
  47584. nude: {
  47585. height: math.unit(8, "feet"),
  47586. weight: math.unit(225, "lb"),
  47587. name: "Nude",
  47588. image: {
  47589. source: "./media/characters/marvy/nude.svg",
  47590. extra: 1900/1683,
  47591. bottom: 89/1989
  47592. }
  47593. },
  47594. dressed: {
  47595. height: math.unit(8, "feet"),
  47596. weight: math.unit(225, "lb"),
  47597. name: "Dressed",
  47598. image: {
  47599. source: "./media/characters/marvy/dressed.svg",
  47600. extra: 1900/1683,
  47601. bottom: 89/1989
  47602. }
  47603. },
  47604. head: {
  47605. height: math.unit(2.85, "feet"),
  47606. name: "Head",
  47607. image: {
  47608. source: "./media/characters/marvy/head.svg"
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(8, "feet"),
  47616. default: true
  47617. },
  47618. ]
  47619. ))
  47620. characterMakers.push(() => makeCharacter(
  47621. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47622. {
  47623. front: {
  47624. height: math.unit(8, "feet"),
  47625. weight: math.unit(250, "lb"),
  47626. name: "Front",
  47627. image: {
  47628. source: "./media/characters/leah/front.svg",
  47629. extra: 1257/1149,
  47630. bottom: 109/1366
  47631. }
  47632. },
  47633. },
  47634. [
  47635. {
  47636. name: "Normal",
  47637. height: math.unit(8, "feet"),
  47638. default: true
  47639. },
  47640. {
  47641. name: "Minimacro",
  47642. height: math.unit(40, "feet")
  47643. },
  47644. {
  47645. name: "Macro",
  47646. height: math.unit(124, "feet")
  47647. },
  47648. {
  47649. name: "Megamacro",
  47650. height: math.unit(850, "feet")
  47651. },
  47652. ]
  47653. ))
  47654. characterMakers.push(() => makeCharacter(
  47655. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47656. {
  47657. side: {
  47658. height: math.unit(13 + 6/12, "feet"),
  47659. weight: math.unit(3200, "lb"),
  47660. name: "Side",
  47661. image: {
  47662. source: "./media/characters/alvir/side.svg",
  47663. extra: 896/589,
  47664. bottom: 26/922
  47665. }
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(13 + 6/12, "feet"),
  47672. default: true
  47673. },
  47674. ]
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47678. {
  47679. front: {
  47680. height: math.unit(5 + 4/12, "feet"),
  47681. weight: math.unit(236, "lb"),
  47682. name: "Front",
  47683. image: {
  47684. source: "./media/characters/zaina-khalil/front.svg",
  47685. extra: 1533/1485,
  47686. bottom: 94/1627
  47687. }
  47688. },
  47689. side: {
  47690. height: math.unit(5 + 4/12, "feet"),
  47691. weight: math.unit(236, "lb"),
  47692. name: "Side",
  47693. image: {
  47694. source: "./media/characters/zaina-khalil/side.svg",
  47695. extra: 1537/1498,
  47696. bottom: 66/1603
  47697. }
  47698. },
  47699. back: {
  47700. height: math.unit(5 + 4/12, "feet"),
  47701. weight: math.unit(236, "lb"),
  47702. name: "Back",
  47703. image: {
  47704. source: "./media/characters/zaina-khalil/back.svg",
  47705. extra: 1546/1494,
  47706. bottom: 89/1635
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Normal",
  47713. height: math.unit(5 + 4/12, "feet"),
  47714. default: true
  47715. },
  47716. ]
  47717. ))
  47718. characterMakers.push(() => makeCharacter(
  47719. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47720. {
  47721. side: {
  47722. height: math.unit(12, "feet"),
  47723. weight: math.unit(4000, "lb"),
  47724. name: "Side",
  47725. image: {
  47726. source: "./media/characters/terry/side.svg",
  47727. extra: 1518/1439,
  47728. bottom: 149/1667
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Normal",
  47735. height: math.unit(12, "feet"),
  47736. default: true
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47742. {
  47743. front: {
  47744. height: math.unit(12, "feet"),
  47745. weight: math.unit(1500, "lb"),
  47746. name: "Front",
  47747. image: {
  47748. source: "./media/characters/kahea/front.svg",
  47749. extra: 1722/1617,
  47750. bottom: 179/1901
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(12, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47764. {
  47765. demonFront: {
  47766. height: math.unit(36, "feet"),
  47767. name: "Front",
  47768. image: {
  47769. source: "./media/characters/alex-xuria/demon-front.svg",
  47770. extra: 1705/1673,
  47771. bottom: 198/1903
  47772. },
  47773. form: "demon",
  47774. default: true
  47775. },
  47776. demonBack: {
  47777. height: math.unit(36, "feet"),
  47778. name: "Back",
  47779. image: {
  47780. source: "./media/characters/alex-xuria/demon-back.svg",
  47781. extra: 1725/1693,
  47782. bottom: 70/1795
  47783. },
  47784. form: "demon"
  47785. },
  47786. demonHead: {
  47787. height: math.unit(2.14, "meters"),
  47788. name: "Head",
  47789. image: {
  47790. source: "./media/characters/alex-xuria/demon-head.svg"
  47791. },
  47792. form: "demon"
  47793. },
  47794. demonHand: {
  47795. height: math.unit(1.61, "meters"),
  47796. name: "Hand",
  47797. image: {
  47798. source: "./media/characters/alex-xuria/demon-hand.svg"
  47799. },
  47800. form: "demon"
  47801. },
  47802. demonPaw: {
  47803. height: math.unit(1.35, "meters"),
  47804. name: "Paw",
  47805. image: {
  47806. source: "./media/characters/alex-xuria/demon-paw.svg"
  47807. },
  47808. form: "demon"
  47809. },
  47810. demonFoot: {
  47811. height: math.unit(2.2, "meters"),
  47812. name: "Foot",
  47813. image: {
  47814. source: "./media/characters/alex-xuria/demon-foot.svg"
  47815. },
  47816. form: "demon"
  47817. },
  47818. demonCock: {
  47819. height: math.unit(1.74, "meters"),
  47820. name: "Cock",
  47821. image: {
  47822. source: "./media/characters/alex-xuria/demon-cock.svg"
  47823. },
  47824. form: "demon"
  47825. },
  47826. demonTailClosed: {
  47827. height: math.unit(1.47, "meters"),
  47828. name: "Tail (Closed)",
  47829. image: {
  47830. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47831. },
  47832. form: "demon"
  47833. },
  47834. demonTailOpen: {
  47835. height: math.unit(2.85, "meters"),
  47836. name: "Tail (Open)",
  47837. image: {
  47838. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47839. },
  47840. form: "demon"
  47841. },
  47842. incubusFront: {
  47843. height: math.unit(12, "feet"),
  47844. name: "Front",
  47845. image: {
  47846. source: "./media/characters/alex-xuria/incubus-front.svg",
  47847. extra: 1754/1677,
  47848. bottom: 125/1879
  47849. },
  47850. form: "incubus",
  47851. default: true
  47852. },
  47853. incubusBack: {
  47854. height: math.unit(12, "feet"),
  47855. name: "Back",
  47856. image: {
  47857. source: "./media/characters/alex-xuria/incubus-back.svg",
  47858. extra: 1702/1647,
  47859. bottom: 30/1732
  47860. },
  47861. form: "incubus"
  47862. },
  47863. incubusHead: {
  47864. height: math.unit(3.45, "feet"),
  47865. name: "Head",
  47866. image: {
  47867. source: "./media/characters/alex-xuria/incubus-head.svg"
  47868. },
  47869. form: "incubus"
  47870. },
  47871. rabbitFront: {
  47872. height: math.unit(6, "feet"),
  47873. name: "Front",
  47874. image: {
  47875. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47876. extra: 1369/1349,
  47877. bottom: 45/1414
  47878. },
  47879. form: "rabbit",
  47880. default: true
  47881. },
  47882. rabbitSide: {
  47883. height: math.unit(6, "feet"),
  47884. name: "Side",
  47885. image: {
  47886. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47887. extra: 1370/1356,
  47888. bottom: 37/1407
  47889. },
  47890. form: "rabbit"
  47891. },
  47892. rabbitBack: {
  47893. height: math.unit(6, "feet"),
  47894. name: "Back",
  47895. image: {
  47896. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47897. extra: 1375/1358,
  47898. bottom: 43/1418
  47899. },
  47900. form: "rabbit"
  47901. },
  47902. },
  47903. [
  47904. {
  47905. name: "Normal",
  47906. height: math.unit(6, "feet"),
  47907. default: true,
  47908. form: "rabbit"
  47909. },
  47910. {
  47911. name: "Incubus",
  47912. height: math.unit(12, "feet"),
  47913. default: true,
  47914. form: "incubus"
  47915. },
  47916. {
  47917. name: "Demon",
  47918. height: math.unit(36, "feet"),
  47919. default: true,
  47920. form: "demon"
  47921. }
  47922. ],
  47923. {
  47924. "demon": {
  47925. name: "Demon",
  47926. default: true
  47927. },
  47928. "incubus": {
  47929. name: "Incubus",
  47930. },
  47931. "rabbit": {
  47932. name: "Rabbit"
  47933. }
  47934. }
  47935. ))
  47936. characterMakers.push(() => makeCharacter(
  47937. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47938. {
  47939. front: {
  47940. height: math.unit(7 + 5/12, "feet"),
  47941. weight: math.unit(510, "lb"),
  47942. name: "Front",
  47943. image: {
  47944. source: "./media/characters/syrup/front.svg",
  47945. extra: 932/916,
  47946. bottom: 26/958
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(7 + 5/12, "feet"),
  47954. default: true
  47955. },
  47956. {
  47957. name: "Big",
  47958. height: math.unit(50, "feet")
  47959. },
  47960. {
  47961. name: "Macro",
  47962. height: math.unit(300, "feet")
  47963. },
  47964. {
  47965. name: "Megamacro",
  47966. height: math.unit(1, "mile")
  47967. },
  47968. ]
  47969. ))
  47970. characterMakers.push(() => makeCharacter(
  47971. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47972. {
  47973. front: {
  47974. height: math.unit(6 + 9/12, "feet"),
  47975. name: "Front",
  47976. image: {
  47977. source: "./media/characters/zeimne/front.svg",
  47978. extra: 1969/1806,
  47979. bottom: 53/2022
  47980. }
  47981. },
  47982. },
  47983. [
  47984. {
  47985. name: "Normal",
  47986. height: math.unit(6 + 9/12, "feet"),
  47987. default: true
  47988. },
  47989. {
  47990. name: "Giant",
  47991. height: math.unit(550, "feet")
  47992. },
  47993. {
  47994. name: "Mega",
  47995. height: math.unit(3, "miles")
  47996. },
  47997. {
  47998. name: "Giga",
  47999. height: math.unit(250, "miles")
  48000. },
  48001. {
  48002. name: "Tera",
  48003. height: math.unit(1, "AU")
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48009. {
  48010. front: {
  48011. height: math.unit(5 + 2/12, "feet"),
  48012. name: "Front",
  48013. image: {
  48014. source: "./media/characters/grar/front.svg",
  48015. extra: 1331/1119,
  48016. bottom: 60/1391
  48017. }
  48018. },
  48019. back: {
  48020. height: math.unit(5 + 2/12, "feet"),
  48021. name: "Back",
  48022. image: {
  48023. source: "./media/characters/grar/back.svg",
  48024. extra: 1385/1169,
  48025. bottom: 23/1408
  48026. }
  48027. },
  48028. },
  48029. [
  48030. {
  48031. name: "Normal",
  48032. height: math.unit(5 + 2/12, "feet"),
  48033. default: true
  48034. },
  48035. ]
  48036. ))
  48037. characterMakers.push(() => makeCharacter(
  48038. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48039. {
  48040. front: {
  48041. height: math.unit(13 + 7/12, "feet"),
  48042. weight: math.unit(2200, "lb"),
  48043. name: "Front",
  48044. image: {
  48045. source: "./media/characters/endraya/front.svg",
  48046. extra: 1289/1215,
  48047. bottom: 50/1339
  48048. }
  48049. },
  48050. nude: {
  48051. height: math.unit(13 + 7/12, "feet"),
  48052. weight: math.unit(2200, "lb"),
  48053. name: "Nude",
  48054. image: {
  48055. source: "./media/characters/endraya/nude.svg",
  48056. extra: 1247/1171,
  48057. bottom: 40/1287
  48058. }
  48059. },
  48060. head: {
  48061. height: math.unit(2.6, "feet"),
  48062. name: "Head",
  48063. image: {
  48064. source: "./media/characters/endraya/head.svg"
  48065. }
  48066. },
  48067. slit: {
  48068. height: math.unit(3.4, "feet"),
  48069. name: "Slit",
  48070. image: {
  48071. source: "./media/characters/endraya/slit.svg"
  48072. }
  48073. },
  48074. },
  48075. [
  48076. {
  48077. name: "Normal",
  48078. height: math.unit(13 + 7/12, "feet"),
  48079. default: true
  48080. },
  48081. {
  48082. name: "Macro",
  48083. height: math.unit(200, "feet")
  48084. },
  48085. ]
  48086. ))
  48087. characterMakers.push(() => makeCharacter(
  48088. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48089. {
  48090. front: {
  48091. height: math.unit(1.81, "meters"),
  48092. weight: math.unit(69, "kg"),
  48093. name: "Front",
  48094. image: {
  48095. source: "./media/characters/rodryana/front.svg",
  48096. extra: 2002/1921,
  48097. bottom: 53/2055
  48098. }
  48099. },
  48100. back: {
  48101. height: math.unit(1.81, "meters"),
  48102. weight: math.unit(69, "kg"),
  48103. name: "Back",
  48104. image: {
  48105. source: "./media/characters/rodryana/back.svg",
  48106. extra: 1993/1926,
  48107. bottom: 48/2041
  48108. }
  48109. },
  48110. maw: {
  48111. height: math.unit(0.19769417475, "meters"),
  48112. name: "Maw",
  48113. image: {
  48114. source: "./media/characters/rodryana/maw.svg"
  48115. }
  48116. },
  48117. slit: {
  48118. height: math.unit(0.31631067961, "meters"),
  48119. name: "Slit",
  48120. image: {
  48121. source: "./media/characters/rodryana/slit.svg"
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(1.81, "meters")
  48129. },
  48130. {
  48131. name: "Mini Macro",
  48132. height: math.unit(181, "meters")
  48133. },
  48134. {
  48135. name: "Macro",
  48136. height: math.unit(452, "meters"),
  48137. default: true
  48138. },
  48139. {
  48140. name: "Mega Macro",
  48141. height: math.unit(1.375, "km")
  48142. },
  48143. {
  48144. name: "Giga Macro",
  48145. height: math.unit(13.575, "km")
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48151. {
  48152. front: {
  48153. height: math.unit(6, "feet"),
  48154. weight: math.unit(1000, "lb"),
  48155. name: "Front",
  48156. image: {
  48157. source: "./media/characters/asaya/front.svg",
  48158. extra: 1460/1200,
  48159. bottom: 71/1531
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(8, "km"),
  48167. default: true
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48173. {
  48174. front: {
  48175. height: math.unit(3.5, "meters"),
  48176. name: "Front",
  48177. image: {
  48178. source: "./media/characters/sarzu-and-israz/front.svg",
  48179. extra: 1570/1558,
  48180. bottom: 150/1720
  48181. },
  48182. },
  48183. back: {
  48184. height: math.unit(3.5, "meters"),
  48185. name: "Back",
  48186. image: {
  48187. source: "./media/characters/sarzu-and-israz/back.svg",
  48188. extra: 1523/1509,
  48189. bottom: 132/1655
  48190. },
  48191. },
  48192. frontFemale: {
  48193. height: math.unit(3.5, "meters"),
  48194. name: "Front (Female)",
  48195. image: {
  48196. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48197. extra: 1570/1558,
  48198. bottom: 150/1720
  48199. },
  48200. },
  48201. frontHerm: {
  48202. height: math.unit(3.5, "meters"),
  48203. name: "Front (Herm)",
  48204. image: {
  48205. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48206. extra: 1570/1558,
  48207. bottom: 150/1720
  48208. },
  48209. },
  48210. },
  48211. [
  48212. {
  48213. name: "Normal",
  48214. height: math.unit(3.5, "meters"),
  48215. default: true,
  48216. },
  48217. {
  48218. name: "Macro",
  48219. height: math.unit(65.5, "meters"),
  48220. },
  48221. ],
  48222. ))
  48223. characterMakers.push(() => makeCharacter(
  48224. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48225. {
  48226. front: {
  48227. height: math.unit(6, "feet"),
  48228. weight: math.unit(250, "lb"),
  48229. name: "Front",
  48230. image: {
  48231. source: "./media/characters/zenimma/front.svg",
  48232. extra: 1346/1320,
  48233. bottom: 58/1404
  48234. }
  48235. },
  48236. back: {
  48237. height: math.unit(6, "feet"),
  48238. weight: math.unit(250, "lb"),
  48239. name: "Back",
  48240. image: {
  48241. source: "./media/characters/zenimma/back.svg",
  48242. extra: 1324/1308,
  48243. bottom: 44/1368
  48244. }
  48245. },
  48246. dick: {
  48247. height: math.unit(1.44, "feet"),
  48248. name: "Dick",
  48249. image: {
  48250. source: "./media/characters/zenimma/dick.svg"
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Canon Height",
  48257. height: math.unit(66, "miles"),
  48258. default: true
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48264. {
  48265. nude: {
  48266. height: math.unit(6, "feet"),
  48267. weight: math.unit(150, "lb"),
  48268. name: "Nude",
  48269. image: {
  48270. source: "./media/characters/shavon/nude.svg",
  48271. extra: 1242/1096,
  48272. bottom: 98/1340
  48273. }
  48274. },
  48275. dressed: {
  48276. height: math.unit(6, "feet"),
  48277. weight: math.unit(150, "lb"),
  48278. name: "Dressed",
  48279. image: {
  48280. source: "./media/characters/shavon/dressed.svg",
  48281. extra: 1242/1096,
  48282. bottom: 98/1340
  48283. }
  48284. },
  48285. },
  48286. [
  48287. {
  48288. name: "Macro",
  48289. height: math.unit(255, "feet"),
  48290. default: true
  48291. },
  48292. ]
  48293. ))
  48294. characterMakers.push(() => makeCharacter(
  48295. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48296. {
  48297. front: {
  48298. height: math.unit(6, "feet"),
  48299. name: "Front",
  48300. image: {
  48301. source: "./media/characters/steph/front.svg",
  48302. extra: 1430/1330,
  48303. bottom: 54/1484
  48304. }
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Normal",
  48310. height: math.unit(6, "feet"),
  48311. default: true
  48312. },
  48313. ]
  48314. ))
  48315. characterMakers.push(() => makeCharacter(
  48316. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48317. {
  48318. front: {
  48319. height: math.unit(9, "feet"),
  48320. weight: math.unit(400, "lb"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/kil'aman/front.svg",
  48324. extra: 1210/1159,
  48325. bottom: 109/1319
  48326. }
  48327. },
  48328. head: {
  48329. height: math.unit(2.14, "feet"),
  48330. name: "Head",
  48331. image: {
  48332. source: "./media/characters/kil'aman/head.svg"
  48333. }
  48334. },
  48335. maw: {
  48336. height: math.unit(1.21, "feet"),
  48337. name: "Maw",
  48338. image: {
  48339. source: "./media/characters/kil'aman/maw.svg"
  48340. }
  48341. },
  48342. foot: {
  48343. height: math.unit(1.7, "feet"),
  48344. name: "Foot",
  48345. image: {
  48346. source: "./media/characters/kil'aman/foot.svg"
  48347. }
  48348. },
  48349. dick: {
  48350. height: math.unit(2.1, "feet"),
  48351. name: "Dick",
  48352. image: {
  48353. source: "./media/characters/kil'aman/dick.svg"
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Normal",
  48360. height: math.unit(9, "feet")
  48361. },
  48362. {
  48363. name: "Canon Height",
  48364. height: math.unit(10, "miles"),
  48365. default: true
  48366. },
  48367. {
  48368. name: "Maximum",
  48369. height: math.unit(6e9, "miles")
  48370. },
  48371. ]
  48372. ))
  48373. characterMakers.push(() => makeCharacter(
  48374. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48375. {
  48376. front: {
  48377. height: math.unit(90, "feet"),
  48378. weight: math.unit(675000, "lb"),
  48379. name: "Front",
  48380. image: {
  48381. source: "./media/characters/qadan/front.svg",
  48382. extra: 1012/1004,
  48383. bottom: 78/1090
  48384. }
  48385. },
  48386. back: {
  48387. height: math.unit(90, "feet"),
  48388. weight: math.unit(675000, "lb"),
  48389. name: "Back",
  48390. image: {
  48391. source: "./media/characters/qadan/back.svg",
  48392. extra: 1042/1031,
  48393. bottom: 55/1097
  48394. }
  48395. },
  48396. armored: {
  48397. height: math.unit(90, "feet"),
  48398. weight: math.unit(675000, "lb"),
  48399. name: "Armored",
  48400. image: {
  48401. source: "./media/characters/qadan/armored.svg",
  48402. extra: 1047/1037,
  48403. bottom: 48/1095
  48404. }
  48405. },
  48406. },
  48407. [
  48408. {
  48409. name: "Normal",
  48410. height: math.unit(90, "feet"),
  48411. default: true
  48412. },
  48413. ]
  48414. ))
  48415. characterMakers.push(() => makeCharacter(
  48416. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48417. {
  48418. front: {
  48419. height: math.unit(6, "feet"),
  48420. weight: math.unit(225, "lb"),
  48421. name: "Front",
  48422. image: {
  48423. source: "./media/characters/brooke/front.svg",
  48424. extra: 1050/1010,
  48425. bottom: 66/1116
  48426. }
  48427. },
  48428. back: {
  48429. height: math.unit(6, "feet"),
  48430. weight: math.unit(225, "lb"),
  48431. name: "Back",
  48432. image: {
  48433. source: "./media/characters/brooke/back.svg",
  48434. extra: 1053/1013,
  48435. bottom: 41/1094
  48436. }
  48437. },
  48438. dressed: {
  48439. height: math.unit(6, "feet"),
  48440. weight: math.unit(225, "lb"),
  48441. name: "Dressed",
  48442. image: {
  48443. source: "./media/characters/brooke/dressed.svg",
  48444. extra: 1050/1010,
  48445. bottom: 66/1116
  48446. }
  48447. },
  48448. },
  48449. [
  48450. {
  48451. name: "Canon Height",
  48452. height: math.unit(500, "miles"),
  48453. default: true
  48454. },
  48455. ]
  48456. ))
  48457. characterMakers.push(() => makeCharacter(
  48458. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48459. {
  48460. front: {
  48461. height: math.unit(6 + 2/12, "feet"),
  48462. weight: math.unit(210, "lb"),
  48463. name: "Front",
  48464. image: {
  48465. source: "./media/characters/wubs/front.svg",
  48466. extra: 1345/1325,
  48467. bottom: 70/1415
  48468. }
  48469. },
  48470. back: {
  48471. height: math.unit(6 + 2/12, "feet"),
  48472. weight: math.unit(210, "lb"),
  48473. name: "Back",
  48474. image: {
  48475. source: "./media/characters/wubs/back.svg",
  48476. extra: 1296/1275,
  48477. bottom: 58/1354
  48478. }
  48479. },
  48480. },
  48481. [
  48482. {
  48483. name: "Normal",
  48484. height: math.unit(6 + 2/12, "feet"),
  48485. default: true
  48486. },
  48487. {
  48488. name: "Macro",
  48489. height: math.unit(1000, "feet")
  48490. },
  48491. {
  48492. name: "Megamacro",
  48493. height: math.unit(1, "mile")
  48494. },
  48495. ]
  48496. ))
  48497. characterMakers.push(() => makeCharacter(
  48498. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48499. {
  48500. front: {
  48501. height: math.unit(4, "feet"),
  48502. weight: math.unit(120, "lb"),
  48503. name: "Front",
  48504. image: {
  48505. source: "./media/characters/blue/front.svg",
  48506. extra: 1636/1525,
  48507. bottom: 43/1679
  48508. }
  48509. },
  48510. back: {
  48511. height: math.unit(4, "feet"),
  48512. weight: math.unit(120, "lb"),
  48513. name: "Back",
  48514. image: {
  48515. source: "./media/characters/blue/back.svg",
  48516. extra: 1660/1560,
  48517. bottom: 57/1717
  48518. }
  48519. },
  48520. paws: {
  48521. height: math.unit(0.826, "feet"),
  48522. name: "Paws",
  48523. image: {
  48524. source: "./media/characters/blue/paws.svg"
  48525. }
  48526. },
  48527. },
  48528. [
  48529. {
  48530. name: "Micro",
  48531. height: math.unit(3, "inches")
  48532. },
  48533. {
  48534. name: "Normal",
  48535. height: math.unit(4, "feet"),
  48536. default: true
  48537. },
  48538. {
  48539. name: "Femenine Form",
  48540. height: math.unit(14, "feet")
  48541. },
  48542. {
  48543. name: "Werebat Form",
  48544. height: math.unit(18, "feet")
  48545. },
  48546. ]
  48547. ))
  48548. characterMakers.push(() => makeCharacter(
  48549. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48550. {
  48551. female: {
  48552. height: math.unit(7 + 4/12, "feet"),
  48553. weight: math.unit(243, "lb"),
  48554. name: "Female",
  48555. image: {
  48556. source: "./media/characters/kaya/female.svg",
  48557. extra: 975/898,
  48558. bottom: 34/1009
  48559. }
  48560. },
  48561. herm: {
  48562. height: math.unit(7 + 4/12, "feet"),
  48563. weight: math.unit(243, "lb"),
  48564. name: "Herm",
  48565. image: {
  48566. source: "./media/characters/kaya/herm.svg",
  48567. extra: 975/898,
  48568. bottom: 34/1009
  48569. }
  48570. },
  48571. },
  48572. [
  48573. {
  48574. name: "Normal",
  48575. height: math.unit(7 + 4/12, "feet"),
  48576. default: true
  48577. },
  48578. ]
  48579. ))
  48580. characterMakers.push(() => makeCharacter(
  48581. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48582. {
  48583. female: {
  48584. height: math.unit(9 + 4/12, "feet"),
  48585. weight: math.unit(398, "lb"),
  48586. name: "Female",
  48587. image: {
  48588. source: "./media/characters/kassandra/female.svg",
  48589. extra: 908/839,
  48590. bottom: 61/969
  48591. }
  48592. },
  48593. intersex: {
  48594. height: math.unit(9 + 4/12, "feet"),
  48595. weight: math.unit(398, "lb"),
  48596. name: "Intersex",
  48597. image: {
  48598. source: "./media/characters/kassandra/intersex.svg",
  48599. extra: 908/839,
  48600. bottom: 61/969
  48601. }
  48602. },
  48603. },
  48604. [
  48605. {
  48606. name: "Normal",
  48607. height: math.unit(9 + 4/12, "feet"),
  48608. default: true
  48609. },
  48610. ]
  48611. ))
  48612. characterMakers.push(() => makeCharacter(
  48613. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48614. {
  48615. front: {
  48616. height: math.unit(3, "meters"),
  48617. name: "Front",
  48618. image: {
  48619. source: "./media/characters/amy/front.svg",
  48620. extra: 1380/1343,
  48621. bottom: 70/1450
  48622. }
  48623. },
  48624. back: {
  48625. height: math.unit(3, "meters"),
  48626. name: "Back",
  48627. image: {
  48628. source: "./media/characters/amy/back.svg",
  48629. extra: 1380/1347,
  48630. bottom: 66/1446
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(3, "meters"),
  48638. default: true
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48644. {
  48645. side: {
  48646. height: math.unit(47, "cm"),
  48647. weight: math.unit(10.8, "kg"),
  48648. name: "Side",
  48649. image: {
  48650. source: "./media/characters/alphaschakal/side.svg",
  48651. extra: 1058/568,
  48652. bottom: 62/1120
  48653. }
  48654. },
  48655. back: {
  48656. height: math.unit(78, "cm"),
  48657. weight: math.unit(10.8, "kg"),
  48658. name: "Back",
  48659. image: {
  48660. source: "./media/characters/alphaschakal/back.svg",
  48661. extra: 1102/942,
  48662. bottom: 185/1287
  48663. }
  48664. },
  48665. head: {
  48666. height: math.unit(28, "cm"),
  48667. name: "Head",
  48668. image: {
  48669. source: "./media/characters/alphaschakal/head.svg",
  48670. extra: 696/508,
  48671. bottom: 0/696
  48672. }
  48673. },
  48674. paw: {
  48675. height: math.unit(16, "cm"),
  48676. name: "Paw",
  48677. image: {
  48678. source: "./media/characters/alphaschakal/paw.svg"
  48679. }
  48680. },
  48681. },
  48682. [
  48683. {
  48684. name: "Normal",
  48685. height: math.unit(47, "cm"),
  48686. default: true
  48687. },
  48688. {
  48689. name: "Macro",
  48690. height: math.unit(340, "cm")
  48691. },
  48692. ]
  48693. ))
  48694. characterMakers.push(() => makeCharacter(
  48695. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48696. {
  48697. front: {
  48698. height: math.unit(36, "earths"),
  48699. name: "Front",
  48700. image: {
  48701. source: "./media/characters/ecobyss/front.svg",
  48702. extra: 1282/1215,
  48703. bottom: 11/1293
  48704. }
  48705. },
  48706. back: {
  48707. height: math.unit(36, "earths"),
  48708. name: "Back",
  48709. image: {
  48710. source: "./media/characters/ecobyss/back.svg",
  48711. extra: 1291/1222,
  48712. bottom: 8/1299
  48713. }
  48714. },
  48715. },
  48716. [
  48717. {
  48718. name: "Normal",
  48719. height: math.unit(36, "earths"),
  48720. default: true
  48721. },
  48722. ]
  48723. ))
  48724. characterMakers.push(() => makeCharacter(
  48725. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48726. {
  48727. front: {
  48728. height: math.unit(12, "feet"),
  48729. name: "Front",
  48730. image: {
  48731. source: "./media/characters/vasuk/front.svg",
  48732. extra: 1326/1207,
  48733. bottom: 64/1390
  48734. }
  48735. },
  48736. },
  48737. [
  48738. {
  48739. name: "Normal",
  48740. height: math.unit(12, "feet"),
  48741. default: true
  48742. },
  48743. ]
  48744. ))
  48745. characterMakers.push(() => makeCharacter(
  48746. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48747. {
  48748. side: {
  48749. height: math.unit(100, "feet"),
  48750. name: "Side",
  48751. image: {
  48752. source: "./media/characters/linneaus/side.svg",
  48753. extra: 987/807,
  48754. bottom: 47/1034
  48755. }
  48756. },
  48757. },
  48758. [
  48759. {
  48760. name: "Macro",
  48761. height: math.unit(100, "feet"),
  48762. default: true
  48763. },
  48764. ]
  48765. ))
  48766. characterMakers.push(() => makeCharacter(
  48767. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48768. {
  48769. front: {
  48770. height: math.unit(8, "feet"),
  48771. weight: math.unit(1200, "lb"),
  48772. name: "Front",
  48773. image: {
  48774. source: "./media/characters/nyterious-daligdig/front.svg",
  48775. extra: 1284/1094,
  48776. bottom: 84/1368
  48777. }
  48778. },
  48779. back: {
  48780. height: math.unit(8, "feet"),
  48781. weight: math.unit(1200, "lb"),
  48782. name: "Back",
  48783. image: {
  48784. source: "./media/characters/nyterious-daligdig/back.svg",
  48785. extra: 1301/1121,
  48786. bottom: 129/1430
  48787. }
  48788. },
  48789. mouth: {
  48790. height: math.unit(1.464, "feet"),
  48791. name: "Mouth",
  48792. image: {
  48793. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48794. }
  48795. },
  48796. },
  48797. [
  48798. {
  48799. name: "Small",
  48800. height: math.unit(8, "feet"),
  48801. default: true
  48802. },
  48803. {
  48804. name: "Normal",
  48805. height: math.unit(15, "feet")
  48806. },
  48807. {
  48808. name: "Macro",
  48809. height: math.unit(90, "feet")
  48810. },
  48811. ]
  48812. ))
  48813. characterMakers.push(() => makeCharacter(
  48814. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48815. {
  48816. front: {
  48817. height: math.unit(7 + 4/12, "feet"),
  48818. weight: math.unit(252, "lb"),
  48819. name: "Front",
  48820. image: {
  48821. source: "./media/characters/bandel/front.svg",
  48822. extra: 1946/1775,
  48823. bottom: 26/1972
  48824. }
  48825. },
  48826. back: {
  48827. height: math.unit(7 + 4/12, "feet"),
  48828. weight: math.unit(252, "lb"),
  48829. name: "Back",
  48830. image: {
  48831. source: "./media/characters/bandel/back.svg",
  48832. extra: 1940/1770,
  48833. bottom: 25/1965
  48834. }
  48835. },
  48836. maw: {
  48837. height: math.unit(2.15, "feet"),
  48838. name: "Maw",
  48839. image: {
  48840. source: "./media/characters/bandel/maw.svg"
  48841. }
  48842. },
  48843. stomach: {
  48844. height: math.unit(1.95, "feet"),
  48845. name: "Stomach",
  48846. image: {
  48847. source: "./media/characters/bandel/stomach.svg"
  48848. }
  48849. },
  48850. },
  48851. [
  48852. {
  48853. name: "Normal",
  48854. height: math.unit(7 + 4/12, "feet"),
  48855. default: true
  48856. },
  48857. ]
  48858. ))
  48859. characterMakers.push(() => makeCharacter(
  48860. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48861. {
  48862. front: {
  48863. height: math.unit(10 + 5/12, "feet"),
  48864. weight: math.unit(773.5, "kg"),
  48865. name: "Front",
  48866. image: {
  48867. source: "./media/characters/zed/front.svg",
  48868. extra: 987/941,
  48869. bottom: 52/1039
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Short",
  48876. height: math.unit(5 + 4/12, "feet")
  48877. },
  48878. {
  48879. name: "Average",
  48880. height: math.unit(10 + 5/12, "feet"),
  48881. default: true
  48882. },
  48883. {
  48884. name: "Mini-Macro",
  48885. height: math.unit(24 + 9/12, "feet")
  48886. },
  48887. {
  48888. name: "Macro",
  48889. height: math.unit(249, "feet")
  48890. },
  48891. {
  48892. name: "Mega-Macro",
  48893. height: math.unit(12490, "feet")
  48894. },
  48895. {
  48896. name: "Giga-Macro",
  48897. height: math.unit(24.9, "miles")
  48898. },
  48899. {
  48900. name: "Tera-Macro",
  48901. height: math.unit(24900, "miles")
  48902. },
  48903. {
  48904. name: "Cosmic Scale",
  48905. height: math.unit(38.9, "lightyears")
  48906. },
  48907. {
  48908. name: "Universal Scale",
  48909. height: math.unit(138e12, "lightyears")
  48910. },
  48911. ]
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48915. {
  48916. front: {
  48917. height: math.unit(1561, "inches"),
  48918. name: "Front",
  48919. image: {
  48920. source: "./media/characters/ivan/front.svg",
  48921. extra: 1126/1071,
  48922. bottom: 26/1152
  48923. }
  48924. },
  48925. back: {
  48926. height: math.unit(1561, "inches"),
  48927. name: "Back",
  48928. image: {
  48929. source: "./media/characters/ivan/back.svg",
  48930. extra: 1134/1079,
  48931. bottom: 30/1164
  48932. }
  48933. },
  48934. },
  48935. [
  48936. {
  48937. name: "Normal",
  48938. height: math.unit(1561, "inches"),
  48939. default: true
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(5 + 7/12, "feet"),
  48948. weight: math.unit(150, "lb"),
  48949. name: "Front",
  48950. image: {
  48951. source: "./media/characters/robin-arctic-hare/front.svg",
  48952. extra: 1148/974,
  48953. bottom: 20/1168
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(5 + 7/12, "feet"),
  48961. default: true
  48962. },
  48963. ]
  48964. ))
  48965. characterMakers.push(() => makeCharacter(
  48966. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48967. {
  48968. side: {
  48969. height: math.unit(5, "feet"),
  48970. name: "Side",
  48971. image: {
  48972. source: "./media/characters/birch/side.svg",
  48973. extra: 985/796,
  48974. bottom: 111/1096
  48975. }
  48976. },
  48977. },
  48978. [
  48979. {
  48980. name: "Normal",
  48981. height: math.unit(5, "feet"),
  48982. default: true
  48983. },
  48984. ]
  48985. ))
  48986. characterMakers.push(() => makeCharacter(
  48987. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48988. {
  48989. front: {
  48990. height: math.unit(4, "feet"),
  48991. name: "Front",
  48992. image: {
  48993. source: "./media/characters/rasp/front.svg",
  48994. extra: 561/478,
  48995. bottom: 74/635
  48996. }
  48997. },
  48998. },
  48999. [
  49000. {
  49001. name: "Normal",
  49002. height: math.unit(4, "feet"),
  49003. default: true
  49004. },
  49005. ]
  49006. ))
  49007. characterMakers.push(() => makeCharacter(
  49008. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49009. {
  49010. front: {
  49011. height: math.unit(4 + 6/12, "feet"),
  49012. name: "Front",
  49013. image: {
  49014. source: "./media/characters/agatha/front.svg",
  49015. extra: 947/933,
  49016. bottom: 42/989
  49017. }
  49018. },
  49019. back: {
  49020. height: math.unit(4 + 6/12, "feet"),
  49021. name: "Back",
  49022. image: {
  49023. source: "./media/characters/agatha/back.svg",
  49024. extra: 935/922,
  49025. bottom: 48/983
  49026. }
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(4 + 6 /12, "feet"),
  49033. default: true
  49034. },
  49035. {
  49036. name: "Max Size",
  49037. height: math.unit(500, "feet")
  49038. },
  49039. ]
  49040. ))
  49041. characterMakers.push(() => makeCharacter(
  49042. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49043. {
  49044. side: {
  49045. height: math.unit(30, "feet"),
  49046. name: "Side",
  49047. image: {
  49048. source: "./media/characters/roggy/side.svg",
  49049. extra: 909/643,
  49050. bottom: 63/972
  49051. }
  49052. },
  49053. lounging: {
  49054. height: math.unit(20, "feet"),
  49055. name: "Lounging",
  49056. image: {
  49057. source: "./media/characters/roggy/lounging.svg",
  49058. extra: 643/479,
  49059. bottom: 145/788
  49060. }
  49061. },
  49062. handpaw: {
  49063. height: math.unit(13.1, "feet"),
  49064. name: "Handpaw",
  49065. image: {
  49066. source: "./media/characters/roggy/handpaw.svg"
  49067. }
  49068. },
  49069. footpaw: {
  49070. height: math.unit(15.8, "feet"),
  49071. name: "Footpaw",
  49072. image: {
  49073. source: "./media/characters/roggy/footpaw.svg"
  49074. }
  49075. },
  49076. },
  49077. [
  49078. {
  49079. name: "Menacing",
  49080. height: math.unit(30, "feet"),
  49081. default: true
  49082. },
  49083. ]
  49084. ))
  49085. characterMakers.push(() => makeCharacter(
  49086. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49087. {
  49088. front: {
  49089. height: math.unit(5 + 7/12, "feet"),
  49090. weight: math.unit(135, "lb"),
  49091. name: "Front",
  49092. image: {
  49093. source: "./media/characters/naomi/front.svg",
  49094. extra: 1209/1154,
  49095. bottom: 129/1338
  49096. }
  49097. },
  49098. back: {
  49099. height: math.unit(5 + 7/12, "feet"),
  49100. weight: math.unit(135, "lb"),
  49101. name: "Back",
  49102. image: {
  49103. source: "./media/characters/naomi/back.svg",
  49104. extra: 1252/1190,
  49105. bottom: 23/1275
  49106. }
  49107. },
  49108. },
  49109. [
  49110. {
  49111. name: "Normal",
  49112. height: math.unit(5 + 7 /12, "feet"),
  49113. default: true
  49114. },
  49115. ]
  49116. ))
  49117. characterMakers.push(() => makeCharacter(
  49118. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49119. {
  49120. side: {
  49121. height: math.unit(35, "meters"),
  49122. name: "Side",
  49123. image: {
  49124. source: "./media/characters/kimpi/side.svg",
  49125. extra: 419/382,
  49126. bottom: 63/482
  49127. }
  49128. },
  49129. hand: {
  49130. height: math.unit(8.96, "meters"),
  49131. name: "Hand",
  49132. image: {
  49133. source: "./media/characters/kimpi/hand.svg"
  49134. }
  49135. },
  49136. },
  49137. [
  49138. {
  49139. name: "Normal",
  49140. height: math.unit(35, "meters"),
  49141. default: true
  49142. },
  49143. ]
  49144. ))
  49145. characterMakers.push(() => makeCharacter(
  49146. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49147. {
  49148. front: {
  49149. height: math.unit(4 + 4/12, "feet"),
  49150. name: "Front",
  49151. image: {
  49152. source: "./media/characters/pepper-purrloin/front.svg",
  49153. extra: 1141/1024,
  49154. bottom: 21/1162
  49155. }
  49156. },
  49157. },
  49158. [
  49159. {
  49160. name: "Normal",
  49161. height: math.unit(4 + 4/12, "feet"),
  49162. default: true
  49163. },
  49164. ]
  49165. ))
  49166. characterMakers.push(() => makeCharacter(
  49167. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49168. {
  49169. front: {
  49170. height: math.unit(6 + 2/12, "feet"),
  49171. name: "Front",
  49172. image: {
  49173. source: "./media/characters/raphael/front.svg",
  49174. extra: 1101/962,
  49175. bottom: 59/1160
  49176. }
  49177. },
  49178. },
  49179. [
  49180. {
  49181. name: "Normal",
  49182. height: math.unit(6 + 2/12, "feet"),
  49183. default: true
  49184. },
  49185. ]
  49186. ))
  49187. characterMakers.push(() => makeCharacter(
  49188. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49189. {
  49190. front: {
  49191. height: math.unit(6, "feet"),
  49192. weight: math.unit(150, "lb"),
  49193. name: "Front",
  49194. image: {
  49195. source: "./media/characters/victor-williams/front.svg",
  49196. extra: 1894/1825,
  49197. bottom: 67/1961
  49198. }
  49199. },
  49200. },
  49201. [
  49202. {
  49203. name: "Normal",
  49204. height: math.unit(6, "feet"),
  49205. default: true
  49206. },
  49207. ]
  49208. ))
  49209. characterMakers.push(() => makeCharacter(
  49210. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49211. {
  49212. front: {
  49213. height: math.unit(5 + 8/12, "feet"),
  49214. weight: math.unit(150, "lb"),
  49215. name: "Front",
  49216. image: {
  49217. source: "./media/characters/rachel/front.svg",
  49218. extra: 1902/1787,
  49219. bottom: 46/1948
  49220. }
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Base Height",
  49226. height: math.unit(5 + 8/12, "feet"),
  49227. default: true
  49228. },
  49229. {
  49230. name: "Macro",
  49231. height: math.unit(200, "feet")
  49232. },
  49233. {
  49234. name: "Mega Macro",
  49235. height: math.unit(1, "mile")
  49236. },
  49237. {
  49238. name: "Giga Macro",
  49239. height: math.unit(1500, "miles")
  49240. },
  49241. {
  49242. name: "Tera Macro",
  49243. height: math.unit(8000, "miles")
  49244. },
  49245. {
  49246. name: "Tera Macro+",
  49247. height: math.unit(2e5, "miles")
  49248. },
  49249. ]
  49250. ))
  49251. characterMakers.push(() => makeCharacter(
  49252. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49253. {
  49254. front: {
  49255. height: math.unit(6.5, "feet"),
  49256. name: "Front",
  49257. image: {
  49258. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49259. extra: 860/819,
  49260. bottom: 307/1167
  49261. }
  49262. },
  49263. back: {
  49264. height: math.unit(6.5, "feet"),
  49265. name: "Back",
  49266. image: {
  49267. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49268. extra: 880/837,
  49269. bottom: 395/1275
  49270. }
  49271. },
  49272. sleeping: {
  49273. height: math.unit(2.79, "feet"),
  49274. name: "Sleeping",
  49275. image: {
  49276. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49277. extra: 465/383,
  49278. bottom: 263/728
  49279. }
  49280. },
  49281. maw: {
  49282. height: math.unit(2.52, "feet"),
  49283. name: "Maw",
  49284. image: {
  49285. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(6.5, "feet"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(5, "feet"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/nova-nerium/front.svg",
  49305. extra: 1548/1392,
  49306. bottom: 374/1922
  49307. }
  49308. },
  49309. back: {
  49310. height: math.unit(5, "feet"),
  49311. name: "Back",
  49312. image: {
  49313. source: "./media/characters/nova-nerium/back.svg",
  49314. extra: 1658/1468,
  49315. bottom: 257/1915
  49316. }
  49317. },
  49318. },
  49319. [
  49320. {
  49321. name: "Normal",
  49322. height: math.unit(5, "feet"),
  49323. default: true
  49324. },
  49325. ]
  49326. ))
  49327. characterMakers.push(() => makeCharacter(
  49328. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49329. {
  49330. front: {
  49331. height: math.unit(5 + 4/12, "feet"),
  49332. name: "Front",
  49333. image: {
  49334. source: "./media/characters/ashe-pyriph/front.svg",
  49335. extra: 1935/1747,
  49336. bottom: 60/1995
  49337. }
  49338. },
  49339. },
  49340. [
  49341. {
  49342. name: "Normal",
  49343. height: math.unit(5 + 4/12, "feet"),
  49344. default: true
  49345. },
  49346. ]
  49347. ))
  49348. characterMakers.push(() => makeCharacter(
  49349. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49350. {
  49351. front: {
  49352. height: math.unit(8.7, "feet"),
  49353. name: "Front",
  49354. image: {
  49355. source: "./media/characters/flicker-wisp/front.svg",
  49356. extra: 1835/1613,
  49357. bottom: 449/2284
  49358. }
  49359. },
  49360. side: {
  49361. height: math.unit(8.7, "feet"),
  49362. name: "Side",
  49363. image: {
  49364. source: "./media/characters/flicker-wisp/side.svg",
  49365. extra: 1841/1642,
  49366. bottom: 336/2177
  49367. },
  49368. default: true
  49369. },
  49370. maw: {
  49371. height: math.unit(3.35, "feet"),
  49372. name: "Maw",
  49373. image: {
  49374. source: "./media/characters/flicker-wisp/maw.svg",
  49375. extra: 2338/1506,
  49376. bottom: 0/2338
  49377. }
  49378. },
  49379. ovipositor: {
  49380. height: math.unit(4.95, "feet"),
  49381. name: "Ovipositor",
  49382. image: {
  49383. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49384. }
  49385. },
  49386. egg: {
  49387. height: math.unit(0.385, "feet"),
  49388. weight: math.unit(2, "lb"),
  49389. name: "Egg",
  49390. image: {
  49391. source: "./media/characters/flicker-wisp/egg.svg"
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(8.7, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49405. {
  49406. side: {
  49407. height: math.unit(11, "feet"),
  49408. name: "Side",
  49409. image: {
  49410. source: "./media/characters/faefnul/side.svg",
  49411. extra: 1100/1007,
  49412. bottom: 0/1100
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(11, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(6 + 2/12, "feet"),
  49429. name: "Front",
  49430. image: {
  49431. source: "./media/characters/shady/front.svg",
  49432. extra: 502/461,
  49433. bottom: 9/511
  49434. }
  49435. },
  49436. kneeling: {
  49437. height: math.unit(4.6, "feet"),
  49438. name: "Kneeling",
  49439. image: {
  49440. source: "./media/characters/shady/kneeling.svg",
  49441. extra: 1328/1219,
  49442. bottom: 117/1445
  49443. }
  49444. },
  49445. maw: {
  49446. height: math.unit(2, "feet"),
  49447. name: "Maw",
  49448. image: {
  49449. source: "./media/characters/shady/maw.svg"
  49450. }
  49451. },
  49452. },
  49453. [
  49454. {
  49455. name: "Nano",
  49456. height: math.unit(1, "mm")
  49457. },
  49458. {
  49459. name: "Micro",
  49460. height: math.unit(12, "mm")
  49461. },
  49462. {
  49463. name: "Tiny",
  49464. height: math.unit(3, "inches")
  49465. },
  49466. {
  49467. name: "Normal",
  49468. height: math.unit(6 + 2/12, "feet"),
  49469. default: true
  49470. },
  49471. {
  49472. name: "Big",
  49473. height: math.unit(15, "feet")
  49474. },
  49475. {
  49476. name: "Macro",
  49477. height: math.unit(150, "feet")
  49478. },
  49479. {
  49480. name: "Titanic",
  49481. height: math.unit(500, "feet")
  49482. },
  49483. ]
  49484. ))
  49485. characterMakers.push(() => makeCharacter(
  49486. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49487. {
  49488. front: {
  49489. height: math.unit(12, "feet"),
  49490. name: "Front",
  49491. image: {
  49492. source: "./media/characters/fenrir/front.svg",
  49493. extra: 968/875,
  49494. bottom: 22/990
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Big",
  49501. height: math.unit(12, "feet"),
  49502. default: true
  49503. },
  49504. ]
  49505. ))
  49506. characterMakers.push(() => makeCharacter(
  49507. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49508. {
  49509. front: {
  49510. height: math.unit(5 + 4/12, "feet"),
  49511. name: "Front",
  49512. image: {
  49513. source: "./media/characters/makar/front.svg",
  49514. extra: 1181/1112,
  49515. bottom: 78/1259
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Normal",
  49522. height: math.unit(5 + 4/12, "feet"),
  49523. default: true
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(5 + 7/12, "feet"),
  49532. name: "Front",
  49533. image: {
  49534. source: "./media/characters/callow/front.svg",
  49535. extra: 1482/1304,
  49536. bottom: 23/1505
  49537. }
  49538. },
  49539. back: {
  49540. height: math.unit(5 + 7/12, "feet"),
  49541. name: "Back",
  49542. image: {
  49543. source: "./media/characters/callow/back.svg",
  49544. extra: 1484/1296,
  49545. bottom: 25/1509
  49546. }
  49547. },
  49548. },
  49549. [
  49550. {
  49551. name: "Micro",
  49552. height: math.unit(3, "inches"),
  49553. default: true
  49554. },
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(5 + 7/12, "feet")
  49558. },
  49559. ]
  49560. ))
  49561. characterMakers.push(() => makeCharacter(
  49562. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49563. {
  49564. front: {
  49565. height: math.unit(6 + 2/12, "feet"),
  49566. name: "Front",
  49567. image: {
  49568. source: "./media/characters/natel/front.svg",
  49569. extra: 1833/1692,
  49570. bottom: 166/1999
  49571. }
  49572. },
  49573. },
  49574. [
  49575. {
  49576. name: "Normal",
  49577. height: math.unit(6 + 2/12, "feet"),
  49578. default: true
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49584. {
  49585. front: {
  49586. height: math.unit(1.75, "meters"),
  49587. name: "Front",
  49588. image: {
  49589. source: "./media/characters/misu/front.svg",
  49590. extra: 1690/1558,
  49591. bottom: 234/1924
  49592. }
  49593. },
  49594. back: {
  49595. height: math.unit(1.75, "meters"),
  49596. name: "Back",
  49597. image: {
  49598. source: "./media/characters/misu/back.svg",
  49599. extra: 1762/1618,
  49600. bottom: 146/1908
  49601. }
  49602. },
  49603. frontNude: {
  49604. height: math.unit(1.75, "meters"),
  49605. name: "Front (Nude)",
  49606. image: {
  49607. source: "./media/characters/misu/front-nude.svg",
  49608. extra: 1690/1558,
  49609. bottom: 234/1924
  49610. }
  49611. },
  49612. backNude: {
  49613. height: math.unit(1.75, "meters"),
  49614. name: "Back (Nude)",
  49615. image: {
  49616. source: "./media/characters/misu/back-nude.svg",
  49617. extra: 1762/1618,
  49618. bottom: 146/1908
  49619. }
  49620. },
  49621. frontErect: {
  49622. height: math.unit(1.75, "meters"),
  49623. name: "Front (Erect)",
  49624. image: {
  49625. source: "./media/characters/misu/front-erect.svg",
  49626. extra: 1690/1558,
  49627. bottom: 234/1924
  49628. }
  49629. },
  49630. maw: {
  49631. height: math.unit(0.47, "meters"),
  49632. name: "Maw",
  49633. image: {
  49634. source: "./media/characters/misu/maw.svg"
  49635. }
  49636. },
  49637. head: {
  49638. height: math.unit(0.35, "meters"),
  49639. name: "Head",
  49640. image: {
  49641. source: "./media/characters/misu/head.svg"
  49642. }
  49643. },
  49644. rear: {
  49645. height: math.unit(0.47, "meters"),
  49646. name: "Rear",
  49647. image: {
  49648. source: "./media/characters/misu/rear.svg"
  49649. }
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Normal",
  49655. height: math.unit(1.75, "meters")
  49656. },
  49657. {
  49658. name: "Not good for the people",
  49659. height: math.unit(42, "meters")
  49660. },
  49661. {
  49662. name: "Not good for the neighborhood",
  49663. height: math.unit(135, "meters")
  49664. },
  49665. {
  49666. name: "Bit bigger problem",
  49667. height: math.unit(380, "meters"),
  49668. default: true
  49669. },
  49670. {
  49671. name: "Not good for the city",
  49672. height: math.unit(1.5, "km")
  49673. },
  49674. {
  49675. name: "Not good for the county",
  49676. height: math.unit(5.5, "km")
  49677. },
  49678. {
  49679. name: "Not good for the state",
  49680. height: math.unit(25, "km")
  49681. },
  49682. {
  49683. name: "Not good for the country",
  49684. height: math.unit(125, "km")
  49685. },
  49686. {
  49687. name: "Not good for the continent",
  49688. height: math.unit(2100, "km")
  49689. },
  49690. {
  49691. name: "Not good for the planet",
  49692. height: math.unit(35000, "km")
  49693. },
  49694. {
  49695. name: "Just no",
  49696. height: math.unit(8.5e18, "km")
  49697. },
  49698. ]
  49699. ))
  49700. characterMakers.push(() => makeCharacter(
  49701. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49702. {
  49703. front: {
  49704. height: math.unit(6.5, "feet"),
  49705. name: "Front",
  49706. image: {
  49707. source: "./media/characters/poppy/front.svg",
  49708. extra: 1878/1812,
  49709. bottom: 43/1921
  49710. }
  49711. },
  49712. feet: {
  49713. height: math.unit(1.06, "feet"),
  49714. name: "Feet",
  49715. image: {
  49716. source: "./media/characters/poppy/feet.svg",
  49717. extra: 1083/1083,
  49718. bottom: 87/1170
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Human",
  49725. height: math.unit(6.5, "feet")
  49726. },
  49727. {
  49728. name: "Default",
  49729. height: math.unit(300, "feet"),
  49730. default: true
  49731. },
  49732. {
  49733. name: "Huge",
  49734. height: math.unit(850, "feet")
  49735. },
  49736. {
  49737. name: "Mega",
  49738. height: math.unit(8000, "feet")
  49739. },
  49740. {
  49741. name: "Giga",
  49742. height: math.unit(300, "miles")
  49743. },
  49744. ]
  49745. ))
  49746. characterMakers.push(() => makeCharacter(
  49747. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49748. {
  49749. bipedal: {
  49750. height: math.unit(7, "feet"),
  49751. name: "Bipedal",
  49752. image: {
  49753. source: "./media/characters/zener/bipedal.svg",
  49754. extra: 874/805,
  49755. bottom: 109/983
  49756. }
  49757. },
  49758. quadrupedal: {
  49759. height: math.unit(4.64, "feet"),
  49760. name: "Quadrupedal",
  49761. image: {
  49762. source: "./media/characters/zener/quadrupedal.svg",
  49763. extra: 638/507,
  49764. bottom: 190/828
  49765. }
  49766. },
  49767. cock: {
  49768. height: math.unit(18, "inches"),
  49769. name: "Cock",
  49770. image: {
  49771. source: "./media/characters/zener/cock.svg"
  49772. }
  49773. },
  49774. },
  49775. [
  49776. {
  49777. name: "Normal",
  49778. height: math.unit(7, "feet"),
  49779. default: true
  49780. },
  49781. ]
  49782. ))
  49783. characterMakers.push(() => makeCharacter(
  49784. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49785. {
  49786. nude: {
  49787. height: math.unit(5 + 6/12, "feet"),
  49788. name: "Nude",
  49789. image: {
  49790. source: "./media/characters/charlie-dog/nude.svg",
  49791. extra: 768/734,
  49792. bottom: 26/794
  49793. }
  49794. },
  49795. dressed: {
  49796. height: math.unit(5 + 6/12, "feet"),
  49797. name: "Dressed",
  49798. image: {
  49799. source: "./media/characters/charlie-dog/dressed.svg",
  49800. extra: 768/734,
  49801. bottom: 26/794
  49802. }
  49803. },
  49804. },
  49805. [
  49806. {
  49807. name: "Normal",
  49808. height: math.unit(5 + 6/12, "feet"),
  49809. default: true
  49810. },
  49811. ]
  49812. ))
  49813. characterMakers.push(() => makeCharacter(
  49814. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49815. {
  49816. front: {
  49817. height: math.unit(6 + 4/12, "feet"),
  49818. name: "Front",
  49819. image: {
  49820. source: "./media/characters/ir'istrasz/front.svg",
  49821. extra: 1014/977,
  49822. bottom: 65/1079
  49823. }
  49824. },
  49825. back: {
  49826. height: math.unit(6 + 4/12, "feet"),
  49827. name: "Back",
  49828. image: {
  49829. source: "./media/characters/ir'istrasz/back.svg",
  49830. extra: 1024/992,
  49831. bottom: 34/1058
  49832. }
  49833. },
  49834. },
  49835. [
  49836. {
  49837. name: "Normal",
  49838. height: math.unit(6 + 4/12, "feet"),
  49839. default: true
  49840. },
  49841. ]
  49842. ))
  49843. characterMakers.push(() => makeCharacter(
  49844. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49845. {
  49846. front: {
  49847. height: math.unit(5 + 8/12, "feet"),
  49848. name: "Front",
  49849. image: {
  49850. source: "./media/characters/dee-ditto/front.svg",
  49851. extra: 1874/1785,
  49852. bottom: 68/1942
  49853. }
  49854. },
  49855. back: {
  49856. height: math.unit(5 + 8/12, "feet"),
  49857. name: "Back",
  49858. image: {
  49859. source: "./media/characters/dee-ditto/back.svg",
  49860. extra: 1870/1783,
  49861. bottom: 77/1947
  49862. }
  49863. },
  49864. },
  49865. [
  49866. {
  49867. name: "Normal",
  49868. height: math.unit(5 + 8/12, "feet"),
  49869. default: true
  49870. },
  49871. ]
  49872. ))
  49873. characterMakers.push(() => makeCharacter(
  49874. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49875. {
  49876. front: {
  49877. height: math.unit(7 + 6/12, "feet"),
  49878. name: "Front",
  49879. image: {
  49880. source: "./media/characters/fey/front.svg",
  49881. extra: 995/979,
  49882. bottom: 30/1025
  49883. }
  49884. },
  49885. back: {
  49886. height: math.unit(7 + 6/12, "feet"),
  49887. name: "Back",
  49888. image: {
  49889. source: "./media/characters/fey/back.svg",
  49890. extra: 1079/1008,
  49891. bottom: 5/1084
  49892. }
  49893. },
  49894. dressed: {
  49895. height: math.unit(7 + 6/12, "feet"),
  49896. name: "Dressed",
  49897. image: {
  49898. source: "./media/characters/fey/dressed.svg",
  49899. extra: 995/979,
  49900. bottom: 30/1025
  49901. }
  49902. },
  49903. },
  49904. [
  49905. {
  49906. name: "Normal",
  49907. height: math.unit(7 + 6/12, "feet"),
  49908. default: true
  49909. },
  49910. ]
  49911. ))
  49912. characterMakers.push(() => makeCharacter(
  49913. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49914. {
  49915. standing: {
  49916. height: math.unit(17, "feet"),
  49917. name: "Standing",
  49918. image: {
  49919. source: "./media/characters/aster/standing.svg",
  49920. extra: 1798/1598,
  49921. bottom: 117/1915
  49922. }
  49923. },
  49924. },
  49925. [
  49926. {
  49927. name: "Normal",
  49928. height: math.unit(17, "feet"),
  49929. default: true
  49930. },
  49931. {
  49932. name: "Homewrecker",
  49933. height: math.unit(95, "feet")
  49934. },
  49935. {
  49936. name: "Planet Devourer",
  49937. height: math.unit(1008000, "miles")
  49938. },
  49939. ]
  49940. ))
  49941. characterMakers.push(() => makeCharacter(
  49942. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49943. {
  49944. front: {
  49945. height: math.unit(6 + 5/12, "feet"),
  49946. weight: math.unit(265, "lb"),
  49947. name: "Front",
  49948. image: {
  49949. source: "./media/characters/devon-childs/front.svg",
  49950. extra: 1795/1721,
  49951. bottom: 41/1836
  49952. }
  49953. },
  49954. side: {
  49955. height: math.unit(6 + 5/12, "feet"),
  49956. weight: math.unit(265, "lb"),
  49957. name: "Side",
  49958. image: {
  49959. source: "./media/characters/devon-childs/side.svg",
  49960. extra: 1812/1738,
  49961. bottom: 30/1842
  49962. }
  49963. },
  49964. back: {
  49965. height: math.unit(6 + 5/12, "feet"),
  49966. weight: math.unit(265, "lb"),
  49967. name: "Back",
  49968. image: {
  49969. source: "./media/characters/devon-childs/back.svg",
  49970. extra: 1808/1735,
  49971. bottom: 23/1831
  49972. }
  49973. },
  49974. hand: {
  49975. height: math.unit(1.464, "feet"),
  49976. name: "Hand",
  49977. image: {
  49978. source: "./media/characters/devon-childs/hand.svg"
  49979. }
  49980. },
  49981. foot: {
  49982. height: math.unit(1.6, "feet"),
  49983. name: "Foot",
  49984. image: {
  49985. source: "./media/characters/devon-childs/foot.svg"
  49986. }
  49987. },
  49988. },
  49989. [
  49990. {
  49991. name: "Micro",
  49992. height: math.unit(7, "cm")
  49993. },
  49994. {
  49995. name: "Normal",
  49996. height: math.unit(6 + 5/12, "feet"),
  49997. default: true
  49998. },
  49999. {
  50000. name: "Macro",
  50001. height: math.unit(154, "feet")
  50002. },
  50003. ]
  50004. ))
  50005. characterMakers.push(() => makeCharacter(
  50006. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50007. {
  50008. front: {
  50009. height: math.unit(6, "feet"),
  50010. weight: math.unit(180, "lb"),
  50011. name: "Front",
  50012. image: {
  50013. source: "./media/characters/lydemox-vir/front.svg",
  50014. extra: 1632/1435,
  50015. bottom: 58/1690
  50016. }
  50017. },
  50018. frontSFW: {
  50019. height: math.unit(6, "feet"),
  50020. weight: math.unit(180, "lb"),
  50021. name: "Front (SFW)",
  50022. image: {
  50023. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50024. extra: 1632/1435,
  50025. bottom: 58/1690
  50026. }
  50027. },
  50028. back: {
  50029. height: math.unit(6, "feet"),
  50030. weight: math.unit(180, "lb"),
  50031. name: "Back",
  50032. image: {
  50033. source: "./media/characters/lydemox-vir/back.svg",
  50034. extra: 1593/1408,
  50035. bottom: 31/1624
  50036. }
  50037. },
  50038. paw: {
  50039. height: math.unit(1.85, "feet"),
  50040. name: "Paw",
  50041. image: {
  50042. source: "./media/characters/lydemox-vir/paw.svg"
  50043. }
  50044. },
  50045. dick: {
  50046. height: math.unit(1.8, "feet"),
  50047. name: "Dick",
  50048. image: {
  50049. source: "./media/characters/lydemox-vir/dick.svg"
  50050. }
  50051. },
  50052. },
  50053. [
  50054. {
  50055. name: "Macro",
  50056. height: math.unit(100, "feet"),
  50057. default: true
  50058. },
  50059. {
  50060. name: "Teramacro",
  50061. height: math.unit(1, "earth")
  50062. },
  50063. {
  50064. name: "Planetary",
  50065. height: math.unit(20, "earths")
  50066. },
  50067. ]
  50068. ))
  50069. characterMakers.push(() => makeCharacter(
  50070. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50071. {
  50072. front: {
  50073. height: math.unit(15 + 8/12, "feet"),
  50074. weight: math.unit(1237, "kg"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/mia/front.svg",
  50078. extra: 1573/1446,
  50079. bottom: 58/1631
  50080. }
  50081. },
  50082. },
  50083. [
  50084. {
  50085. name: "Small",
  50086. height: math.unit(9 + 5/12, "feet")
  50087. },
  50088. {
  50089. name: "Normal",
  50090. height: math.unit(15 + 8/12, "feet"),
  50091. default: true
  50092. },
  50093. ]
  50094. ))
  50095. characterMakers.push(() => makeCharacter(
  50096. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50097. {
  50098. front: {
  50099. height: math.unit(10 + 6/12, "feet"),
  50100. weight: math.unit(1.3, "tons"),
  50101. name: "Front",
  50102. image: {
  50103. source: "./media/characters/mr-graves/front.svg",
  50104. extra: 1779/1695,
  50105. bottom: 198/1977
  50106. }
  50107. },
  50108. },
  50109. [
  50110. {
  50111. name: "Normal",
  50112. height: math.unit(10 + 6 /12, "feet"),
  50113. default: true
  50114. },
  50115. ]
  50116. ))
  50117. characterMakers.push(() => makeCharacter(
  50118. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50119. {
  50120. dressedFront: {
  50121. height: math.unit(5 + 8/12, "feet"),
  50122. weight: math.unit(125, "lb"),
  50123. name: "Dressed (Front)",
  50124. image: {
  50125. source: "./media/characters/jess/dressed-front.svg",
  50126. extra: 1176/1152,
  50127. bottom: 42/1218
  50128. }
  50129. },
  50130. dressedSide: {
  50131. height: math.unit(5 + 8/12, "feet"),
  50132. weight: math.unit(125, "lb"),
  50133. name: "Dressed (Side)",
  50134. image: {
  50135. source: "./media/characters/jess/dressed-side.svg",
  50136. extra: 1204/1190,
  50137. bottom: 6/1210
  50138. }
  50139. },
  50140. nudeFront: {
  50141. height: math.unit(5 + 8/12, "feet"),
  50142. weight: math.unit(125, "lb"),
  50143. name: "Nude (Front)",
  50144. image: {
  50145. source: "./media/characters/jess/nude-front.svg",
  50146. extra: 1176/1152,
  50147. bottom: 42/1218
  50148. }
  50149. },
  50150. nudeSide: {
  50151. height: math.unit(5 + 8/12, "feet"),
  50152. weight: math.unit(125, "lb"),
  50153. name: "Nude (Side)",
  50154. image: {
  50155. source: "./media/characters/jess/nude-side.svg",
  50156. extra: 1204/1190,
  50157. bottom: 6/1210
  50158. }
  50159. },
  50160. organsFront: {
  50161. height: math.unit(2.83799342105, "feet"),
  50162. name: "Organs (Front)",
  50163. image: {
  50164. source: "./media/characters/jess/organs-front.svg"
  50165. }
  50166. },
  50167. organsSide: {
  50168. height: math.unit(2.64225290474, "feet"),
  50169. name: "Organs (Side)",
  50170. image: {
  50171. source: "./media/characters/jess/organs-side.svg"
  50172. }
  50173. },
  50174. digestiveTractFront: {
  50175. height: math.unit(2.8106580871, "feet"),
  50176. name: "Digestive Tract (Front)",
  50177. image: {
  50178. source: "./media/characters/jess/digestive-tract-front.svg"
  50179. }
  50180. },
  50181. digestiveTractSide: {
  50182. height: math.unit(2.54365045014, "feet"),
  50183. name: "Digestive Tract (Side)",
  50184. image: {
  50185. source: "./media/characters/jess/digestive-tract-side.svg"
  50186. }
  50187. },
  50188. respiratorySystemFront: {
  50189. height: math.unit(1.11196233456, "feet"),
  50190. name: "Respiratory System (Front)",
  50191. image: {
  50192. source: "./media/characters/jess/respiratory-system-front.svg"
  50193. }
  50194. },
  50195. respiratorySystemSide: {
  50196. height: math.unit(0.89327966297, "feet"),
  50197. name: "Respiratory System (Side)",
  50198. image: {
  50199. source: "./media/characters/jess/respiratory-system-side.svg"
  50200. }
  50201. },
  50202. urinaryTractFront: {
  50203. height: math.unit(1.16126356186, "feet"),
  50204. name: "Urinary Tract (Front)",
  50205. image: {
  50206. source: "./media/characters/jess/urinary-tract-front.svg"
  50207. }
  50208. },
  50209. urinaryTractSide: {
  50210. height: math.unit(1.20910039627, "feet"),
  50211. name: "Urinary Tract (Side)",
  50212. image: {
  50213. source: "./media/characters/jess/urinary-tract-side.svg"
  50214. }
  50215. },
  50216. reproductiveOrgansFront: {
  50217. height: math.unit(0.48422591566, "feet"),
  50218. name: "Reproductive Organs (Front)",
  50219. image: {
  50220. source: "./media/characters/jess/reproductive-organs-front.svg"
  50221. }
  50222. },
  50223. reproductiveOrgansSide: {
  50224. height: math.unit(0.61553314481, "feet"),
  50225. name: "Reproductive Organs (Side)",
  50226. image: {
  50227. source: "./media/characters/jess/reproductive-organs-side.svg"
  50228. }
  50229. },
  50230. breastsFront: {
  50231. height: math.unit(0.47690395121, "feet"),
  50232. name: "Breasts (Front)",
  50233. image: {
  50234. source: "./media/characters/jess/breasts-front.svg"
  50235. }
  50236. },
  50237. breastsSide: {
  50238. height: math.unit(0.30556998307, "feet"),
  50239. name: "Breasts (Side)",
  50240. image: {
  50241. source: "./media/characters/jess/breasts-side.svg"
  50242. }
  50243. },
  50244. heartFront: {
  50245. height: math.unit(0.53011022622, "feet"),
  50246. name: "Heart (Front)",
  50247. image: {
  50248. source: "./media/characters/jess/heart-front.svg"
  50249. }
  50250. },
  50251. heartSide: {
  50252. height: math.unit(0.51790695213, "feet"),
  50253. name: "Heart (Side)",
  50254. image: {
  50255. source: "./media/characters/jess/heart-side.svg"
  50256. }
  50257. },
  50258. earsAndNoseFront: {
  50259. height: math.unit(0.29385483995, "feet"),
  50260. name: "Ears and Nose (Front)",
  50261. image: {
  50262. source: "./media/characters/jess/ears-and-nose-front.svg"
  50263. }
  50264. },
  50265. earsAndNoseSide: {
  50266. height: math.unit(0.18109658741, "feet"),
  50267. name: "Ears and Nose (Side)",
  50268. image: {
  50269. source: "./media/characters/jess/ears-and-nose-side.svg"
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(5 + 8/12, "feet"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50283. {
  50284. front: {
  50285. height: math.unit(6, "feet"),
  50286. weight: math.unit(6.64467e-7, "grams"),
  50287. name: "Front",
  50288. image: {
  50289. source: "./media/characters/wimpering/front.svg",
  50290. extra: 597/587,
  50291. bottom: 34/631
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Micro",
  50298. height: math.unit(0.4, "mm"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50305. {
  50306. front: {
  50307. height: math.unit(5 + 2/12, "feet"),
  50308. weight: math.unit(110, "lb"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/keltre/front.svg",
  50312. extra: 1099/1057,
  50313. bottom: 22/1121
  50314. }
  50315. },
  50316. back: {
  50317. height: math.unit(5 + 2/12, "feet"),
  50318. weight: math.unit(110, "lb"),
  50319. name: "Back",
  50320. image: {
  50321. source: "./media/characters/keltre/back.svg",
  50322. extra: 1095/1053,
  50323. bottom: 17/1112
  50324. }
  50325. },
  50326. dressed: {
  50327. height: math.unit(5 + 2/12, "feet"),
  50328. weight: math.unit(110, "lb"),
  50329. name: "Dressed",
  50330. image: {
  50331. source: "./media/characters/keltre/dressed.svg",
  50332. extra: 1099/1057,
  50333. bottom: 22/1121
  50334. }
  50335. },
  50336. winter: {
  50337. height: math.unit(5 + 2/12, "feet"),
  50338. weight: math.unit(110, "lb"),
  50339. name: "Winter",
  50340. image: {
  50341. source: "./media/characters/keltre/winter.svg",
  50342. extra: 1099/1057,
  50343. bottom: 22/1121
  50344. }
  50345. },
  50346. head: {
  50347. height: math.unit(1.61 * 0.86, "feet"),
  50348. name: "Head",
  50349. image: {
  50350. source: "./media/characters/keltre/head.svg",
  50351. extra: 534/421,
  50352. bottom: 0/534
  50353. }
  50354. },
  50355. hand: {
  50356. height: math.unit(1.3 * 0.86, "feet"),
  50357. name: "Hand",
  50358. image: {
  50359. source: "./media/characters/keltre/hand.svg"
  50360. }
  50361. },
  50362. foot: {
  50363. height: math.unit(1.8 * 0.86, "feet"),
  50364. name: "Foot",
  50365. image: {
  50366. source: "./media/characters/keltre/foot.svg"
  50367. }
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Fine",
  50373. height: math.unit(1, "inch")
  50374. },
  50375. {
  50376. name: "Dimnutive",
  50377. height: math.unit(4, "inches")
  50378. },
  50379. {
  50380. name: "Tiny",
  50381. height: math.unit(1, "foot")
  50382. },
  50383. {
  50384. name: "Small",
  50385. height: math.unit(3, "feet")
  50386. },
  50387. {
  50388. name: "Normal",
  50389. height: math.unit(5 + 2/12, "feet"),
  50390. default: true
  50391. },
  50392. ]
  50393. ))
  50394. characterMakers.push(() => makeCharacter(
  50395. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50396. {
  50397. front: {
  50398. height: math.unit(6 + 2/12, "feet"),
  50399. name: "Front",
  50400. image: {
  50401. source: "./media/characters/nox/front.svg",
  50402. extra: 1917/1830,
  50403. bottom: 74/1991
  50404. }
  50405. },
  50406. back: {
  50407. height: math.unit(6 + 2/12, "feet"),
  50408. name: "Back",
  50409. image: {
  50410. source: "./media/characters/nox/back.svg",
  50411. extra: 1896/1815,
  50412. bottom: 21/1917
  50413. }
  50414. },
  50415. head: {
  50416. height: math.unit(1.1, "feet"),
  50417. name: "Head",
  50418. image: {
  50419. source: "./media/characters/nox/head.svg",
  50420. extra: 874/704,
  50421. bottom: 0/874
  50422. }
  50423. },
  50424. tattoo: {
  50425. height: math.unit(0.729, "feet"),
  50426. name: "Tattoo",
  50427. image: {
  50428. source: "./media/characters/nox/tattoo.svg"
  50429. }
  50430. },
  50431. },
  50432. [
  50433. {
  50434. name: "Normal",
  50435. height: math.unit(6 + 2/12, "feet")
  50436. },
  50437. {
  50438. name: "Gigamacro",
  50439. height: math.unit(2, "earths"),
  50440. default: true
  50441. },
  50442. {
  50443. name: "Cosmic",
  50444. height: math.unit(867, "yottameters")
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(6, "feet"),
  50453. weight: math.unit(150, "lb"),
  50454. name: "Front",
  50455. image: {
  50456. source: "./media/characters/caspian/front.svg",
  50457. extra: 1443/1359,
  50458. bottom: 0/1443
  50459. }
  50460. },
  50461. back: {
  50462. height: math.unit(6, "feet"),
  50463. weight: math.unit(150, "lb"),
  50464. name: "Back",
  50465. image: {
  50466. source: "./media/characters/caspian/back.svg",
  50467. extra: 1379/1309,
  50468. bottom: 0/1379
  50469. }
  50470. },
  50471. head: {
  50472. height: math.unit(0.9, "feet"),
  50473. name: "Head",
  50474. image: {
  50475. source: "./media/characters/caspian/head.svg",
  50476. extra: 692/492,
  50477. bottom: 0/692
  50478. }
  50479. },
  50480. headAlt: {
  50481. height: math.unit(0.95, "feet"),
  50482. name: "Head (Alt)",
  50483. image: {
  50484. source: "./media/characters/caspian/head-alt.svg",
  50485. extra: 668/508,
  50486. bottom: 0/668
  50487. }
  50488. },
  50489. hand: {
  50490. height: math.unit(0.8, "feet"),
  50491. name: "Hand",
  50492. image: {
  50493. source: "./media/characters/caspian/hand.svg"
  50494. }
  50495. },
  50496. paw: {
  50497. height: math.unit(0.95, "feet"),
  50498. name: "Paw",
  50499. image: {
  50500. source: "./media/characters/caspian/paw.svg"
  50501. }
  50502. },
  50503. },
  50504. [
  50505. {
  50506. name: "Normal",
  50507. height: math.unit(162, "feet"),
  50508. default: true
  50509. },
  50510. ]
  50511. ))
  50512. characterMakers.push(() => makeCharacter(
  50513. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50514. {
  50515. front: {
  50516. height: math.unit(6, "feet"),
  50517. name: "Front",
  50518. image: {
  50519. source: "./media/characters/myra-aisling/front.svg",
  50520. extra: 1268/1166,
  50521. bottom: 73/1341
  50522. }
  50523. },
  50524. back: {
  50525. height: math.unit(6, "feet"),
  50526. name: "Back",
  50527. image: {
  50528. source: "./media/characters/myra-aisling/back.svg",
  50529. extra: 1249/1149,
  50530. bottom: 79/1328
  50531. }
  50532. },
  50533. dressed: {
  50534. height: math.unit(6, "feet"),
  50535. name: "Dressed",
  50536. image: {
  50537. source: "./media/characters/myra-aisling/dressed.svg",
  50538. extra: 1290/1189,
  50539. bottom: 47/1337
  50540. }
  50541. },
  50542. hand: {
  50543. height: math.unit(1.1, "feet"),
  50544. name: "Hand",
  50545. image: {
  50546. source: "./media/characters/myra-aisling/hand.svg"
  50547. }
  50548. },
  50549. paw: {
  50550. height: math.unit(1.23, "feet"),
  50551. name: "Paw",
  50552. image: {
  50553. source: "./media/characters/myra-aisling/paw.svg"
  50554. }
  50555. },
  50556. },
  50557. [
  50558. {
  50559. name: "Normal",
  50560. height: math.unit(160, "feet"),
  50561. default: true
  50562. },
  50563. ]
  50564. ))
  50565. characterMakers.push(() => makeCharacter(
  50566. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50567. {
  50568. front: {
  50569. height: math.unit(6, "feet"),
  50570. name: "Front",
  50571. image: {
  50572. source: "./media/characters/tenley-sidero/front.svg",
  50573. extra: 1365/1276,
  50574. bottom: 47/1412
  50575. }
  50576. },
  50577. back: {
  50578. height: math.unit(6, "feet"),
  50579. name: "Back",
  50580. image: {
  50581. source: "./media/characters/tenley-sidero/back.svg",
  50582. extra: 1383/1283,
  50583. bottom: 35/1418
  50584. }
  50585. },
  50586. dressed: {
  50587. height: math.unit(6, "feet"),
  50588. name: "Dressed",
  50589. image: {
  50590. source: "./media/characters/tenley-sidero/dressed.svg",
  50591. extra: 1364/1275,
  50592. bottom: 42/1406
  50593. }
  50594. },
  50595. head: {
  50596. height: math.unit(1.47, "feet"),
  50597. name: "Head",
  50598. image: {
  50599. source: "./media/characters/tenley-sidero/head.svg",
  50600. extra: 610/490,
  50601. bottom: 0/610
  50602. }
  50603. },
  50604. },
  50605. [
  50606. {
  50607. name: "Normal",
  50608. height: math.unit(154, "feet"),
  50609. default: true
  50610. },
  50611. ]
  50612. ))
  50613. characterMakers.push(() => makeCharacter(
  50614. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50615. {
  50616. front: {
  50617. height: math.unit(5, "inches"),
  50618. name: "Front",
  50619. image: {
  50620. source: "./media/characters/mallory/front.svg",
  50621. extra: 1919/1678,
  50622. bottom: 29/1948
  50623. }
  50624. },
  50625. hand: {
  50626. height: math.unit(0.73, "inches"),
  50627. name: "Hand",
  50628. image: {
  50629. source: "./media/characters/mallory/hand.svg"
  50630. }
  50631. },
  50632. paw: {
  50633. height: math.unit(0.68, "inches"),
  50634. name: "Paw",
  50635. image: {
  50636. source: "./media/characters/mallory/paw.svg"
  50637. }
  50638. },
  50639. },
  50640. [
  50641. {
  50642. name: "Small",
  50643. height: math.unit(5, "inches"),
  50644. default: true
  50645. },
  50646. ]
  50647. ))
  50648. characterMakers.push(() => makeCharacter(
  50649. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50650. {
  50651. naked: {
  50652. height: math.unit(6, "feet"),
  50653. name: "Naked",
  50654. image: {
  50655. source: "./media/characters/mab/naked.svg",
  50656. extra: 1855/1757,
  50657. bottom: 208/2063
  50658. }
  50659. },
  50660. outside: {
  50661. height: math.unit(6, "feet"),
  50662. name: "Outside",
  50663. image: {
  50664. source: "./media/characters/mab/outside.svg",
  50665. extra: 1855/1757,
  50666. bottom: 208/2063
  50667. }
  50668. },
  50669. party: {
  50670. height: math.unit(6, "feet"),
  50671. name: "Party",
  50672. image: {
  50673. source: "./media/characters/mab/party.svg",
  50674. extra: 1855/1757,
  50675. bottom: 208/2063
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(165, "feet"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50689. {
  50690. feral: {
  50691. height: math.unit(12, "feet"),
  50692. weight: math.unit(20000, "lb"),
  50693. name: "Side",
  50694. image: {
  50695. source: "./media/characters/winter/feral.svg",
  50696. extra: 1286/943,
  50697. bottom: 112/1398
  50698. },
  50699. form: "feral",
  50700. default: true
  50701. },
  50702. feralNsfw: {
  50703. height: math.unit(12, "feet"),
  50704. weight: math.unit(20000, "lb"),
  50705. name: "Side (NSFW)",
  50706. image: {
  50707. source: "./media/characters/winter/feral-nsfw.svg",
  50708. extra: 1286/943,
  50709. bottom: 112/1398
  50710. },
  50711. form: "feral"
  50712. },
  50713. dick: {
  50714. height: math.unit(3.79, "feet"),
  50715. name: "Dick",
  50716. image: {
  50717. source: "./media/characters/winter/dick.svg"
  50718. },
  50719. form: "feral"
  50720. },
  50721. anthro: {
  50722. height: math.unit(12, "feet"),
  50723. weight: math.unit(10, "tons"),
  50724. name: "Anthro",
  50725. image: {
  50726. source: "./media/characters/winter/anthro.svg",
  50727. extra: 1701/1553,
  50728. bottom: 64/1765
  50729. },
  50730. form: "anthro",
  50731. default: true
  50732. },
  50733. },
  50734. [
  50735. {
  50736. name: "Big",
  50737. height: math.unit(12, "feet"),
  50738. default: true,
  50739. form: "feral"
  50740. },
  50741. {
  50742. name: "Big",
  50743. height: math.unit(12, "feet"),
  50744. default: true,
  50745. form: "anthro"
  50746. },
  50747. ],
  50748. {
  50749. "feral": {
  50750. name: "Feral",
  50751. default: true
  50752. },
  50753. "anthro": {
  50754. name: "Anthro"
  50755. }
  50756. }
  50757. ))
  50758. characterMakers.push(() => makeCharacter(
  50759. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50760. {
  50761. front: {
  50762. height: math.unit(4.1, "inches"),
  50763. name: "Front",
  50764. image: {
  50765. source: "./media/characters/alto/front.svg",
  50766. extra: 736/627,
  50767. bottom: 90/826
  50768. }
  50769. },
  50770. },
  50771. [
  50772. {
  50773. name: "Normal",
  50774. height: math.unit(4.1, "inches"),
  50775. default: true
  50776. },
  50777. ]
  50778. ))
  50779. characterMakers.push(() => makeCharacter(
  50780. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50781. {
  50782. sitting: {
  50783. height: math.unit(3, "feet"),
  50784. name: "Sitting",
  50785. image: {
  50786. source: "./media/characters/ratstrid-v/sitting.svg",
  50787. extra: 355/310,
  50788. bottom: 136/491
  50789. }
  50790. },
  50791. },
  50792. [
  50793. {
  50794. name: "Normal",
  50795. height: math.unit(3, "feet"),
  50796. default: true
  50797. },
  50798. ]
  50799. ))
  50800. characterMakers.push(() => makeCharacter(
  50801. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50802. {
  50803. back: {
  50804. height: math.unit(6, "feet"),
  50805. weight: math.unit(450, "lb"),
  50806. name: "Back",
  50807. image: {
  50808. source: "./media/characters/siz/back.svg",
  50809. extra: 1449/1274,
  50810. bottom: 13/1462
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Smallest",
  50817. height: math.unit(18 + 3/12, "feet")
  50818. },
  50819. {
  50820. name: "Modest",
  50821. height: math.unit(56 + 8/12, "feet"),
  50822. default: true
  50823. },
  50824. {
  50825. name: "Largest",
  50826. height: math.unit(3590, "feet")
  50827. },
  50828. ]
  50829. ))
  50830. characterMakers.push(() => makeCharacter(
  50831. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50832. {
  50833. front: {
  50834. height: math.unit(5 + 9/12, "feet"),
  50835. weight: math.unit(150, "lb"),
  50836. name: "Front",
  50837. image: {
  50838. source: "./media/characters/ven/front.svg",
  50839. extra: 1372/1320,
  50840. bottom: 73/1445
  50841. }
  50842. },
  50843. side: {
  50844. height: math.unit(5 + 9/12, "feet"),
  50845. weight: math.unit(1150, "lb"),
  50846. name: "Side",
  50847. image: {
  50848. source: "./media/characters/ven/side.svg",
  50849. extra: 1119/1070,
  50850. bottom: 42/1161
  50851. },
  50852. default: true
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Normal",
  50858. height: math.unit(5 + 9/12, "feet"),
  50859. default: true
  50860. },
  50861. ]
  50862. ))
  50863. characterMakers.push(() => makeCharacter(
  50864. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50865. {
  50866. front: {
  50867. height: math.unit(12, "feet"),
  50868. weight: math.unit(1000, "kg"),
  50869. name: "Front",
  50870. image: {
  50871. source: "./media/characters/maple/front.svg",
  50872. extra: 1193/1081,
  50873. bottom: 22/1215
  50874. }
  50875. },
  50876. },
  50877. [
  50878. {
  50879. name: "Compressed",
  50880. height: math.unit(7, "feet")
  50881. },
  50882. {
  50883. name: "Normal",
  50884. height: math.unit(12, "feet"),
  50885. default: true
  50886. },
  50887. ]
  50888. ))
  50889. characterMakers.push(() => makeCharacter(
  50890. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50891. {
  50892. front: {
  50893. height: math.unit(9, "feet"),
  50894. weight: math.unit(1500, "lb"),
  50895. name: "Front",
  50896. image: {
  50897. source: "./media/characters/nora/front.svg",
  50898. extra: 1348/1286,
  50899. bottom: 218/1566
  50900. }
  50901. },
  50902. erect: {
  50903. height: math.unit(9, "feet"),
  50904. weight: math.unit(11500, "lb"),
  50905. name: "Erect",
  50906. image: {
  50907. source: "./media/characters/nora/erect.svg",
  50908. extra: 1488/1433,
  50909. bottom: 133/1621
  50910. }
  50911. },
  50912. },
  50913. [
  50914. {
  50915. name: "Normal",
  50916. height: math.unit(9, "feet"),
  50917. default: true
  50918. },
  50919. ]
  50920. ))
  50921. characterMakers.push(() => makeCharacter(
  50922. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50923. {
  50924. front: {
  50925. height: math.unit(25, "feet"),
  50926. weight: math.unit(27500, "lb"),
  50927. name: "Front",
  50928. image: {
  50929. source: "./media/characters/north-caudin/front.svg",
  50930. extra: 1184/1082,
  50931. bottom: 23/1207
  50932. }
  50933. },
  50934. },
  50935. [
  50936. {
  50937. name: "Compressed",
  50938. height: math.unit(10, "feet")
  50939. },
  50940. {
  50941. name: "Normal",
  50942. height: math.unit(25, "feet"),
  50943. default: true
  50944. },
  50945. ]
  50946. ))
  50947. characterMakers.push(() => makeCharacter(
  50948. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50949. {
  50950. front: {
  50951. height: math.unit(9, "feet"),
  50952. weight: math.unit(1250, "lb"),
  50953. name: "Front",
  50954. image: {
  50955. source: "./media/characters/merrian/front.svg",
  50956. extra: 2393/2304,
  50957. bottom: 40/2433
  50958. }
  50959. },
  50960. },
  50961. [
  50962. {
  50963. name: "Normal",
  50964. height: math.unit(9, "feet"),
  50965. default: true
  50966. },
  50967. ]
  50968. ))
  50969. characterMakers.push(() => makeCharacter(
  50970. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50971. {
  50972. front: {
  50973. height: math.unit(9, "feet"),
  50974. weight: math.unit(1000, "lb"),
  50975. name: "Front",
  50976. image: {
  50977. source: "./media/characters/hazel/front.svg",
  50978. extra: 2351/2298,
  50979. bottom: 38/2389
  50980. }
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Normal",
  50986. height: math.unit(9, "feet"),
  50987. default: true
  50988. },
  50989. ]
  50990. ))
  50991. characterMakers.push(() => makeCharacter(
  50992. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50993. {
  50994. front: {
  50995. height: math.unit(13, "feet"),
  50996. weight: math.unit(3200, "lb"),
  50997. name: "Front",
  50998. image: {
  50999. source: "./media/characters/emma/front.svg",
  51000. extra: 2263/2029,
  51001. bottom: 68/2331
  51002. }
  51003. },
  51004. },
  51005. [
  51006. {
  51007. name: "Normal",
  51008. height: math.unit(13, "feet"),
  51009. default: true
  51010. },
  51011. ]
  51012. ))
  51013. characterMakers.push(() => makeCharacter(
  51014. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51015. {
  51016. front: {
  51017. height: math.unit(11 + 9/12, "feet"),
  51018. weight: math.unit(2500, "lb"),
  51019. name: "Front",
  51020. image: {
  51021. source: "./media/characters/ilumina/front.svg",
  51022. extra: 2248/2209,
  51023. bottom: 164/2412
  51024. }
  51025. },
  51026. },
  51027. [
  51028. {
  51029. name: "Normal",
  51030. height: math.unit(11 + 9/12, "feet"),
  51031. default: true
  51032. },
  51033. ]
  51034. ))
  51035. characterMakers.push(() => makeCharacter(
  51036. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51037. {
  51038. front: {
  51039. height: math.unit(8 + 10/12, "feet"),
  51040. weight: math.unit(1350, "lb"),
  51041. name: "Front",
  51042. image: {
  51043. source: "./media/characters/moonshine/front.svg",
  51044. extra: 2395/2288,
  51045. bottom: 40/2435
  51046. }
  51047. },
  51048. },
  51049. [
  51050. {
  51051. name: "Normal",
  51052. height: math.unit(8 + 10/12, "feet"),
  51053. default: true
  51054. },
  51055. ]
  51056. ))
  51057. characterMakers.push(() => makeCharacter(
  51058. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51059. {
  51060. front: {
  51061. height: math.unit(14, "feet"),
  51062. weight: math.unit(3400, "lb"),
  51063. name: "Front",
  51064. image: {
  51065. source: "./media/characters/aletia/front.svg",
  51066. extra: 1185/1052,
  51067. bottom: 21/1206
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Compressed",
  51074. height: math.unit(8, "feet")
  51075. },
  51076. {
  51077. name: "Normal",
  51078. height: math.unit(14, "feet"),
  51079. default: true
  51080. },
  51081. ]
  51082. ))
  51083. characterMakers.push(() => makeCharacter(
  51084. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51085. {
  51086. front: {
  51087. height: math.unit(17, "feet"),
  51088. weight: math.unit(6500, "lb"),
  51089. name: "Front",
  51090. image: {
  51091. source: "./media/characters/deidra/front.svg",
  51092. extra: 1201/1081,
  51093. bottom: 16/1217
  51094. }
  51095. },
  51096. },
  51097. [
  51098. {
  51099. name: "Compressed",
  51100. height: math.unit(9 + 6/12, "feet")
  51101. },
  51102. {
  51103. name: "Normal",
  51104. height: math.unit(17, "feet"),
  51105. default: true
  51106. },
  51107. ]
  51108. ))
  51109. characterMakers.push(() => makeCharacter(
  51110. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51111. {
  51112. front: {
  51113. height: math.unit(7 + 4/12, "feet"),
  51114. weight: math.unit(280, "lb"),
  51115. name: "Front",
  51116. image: {
  51117. source: "./media/characters/freki-yrmori/front.svg",
  51118. extra: 1286/1182,
  51119. bottom: 29/1315
  51120. }
  51121. },
  51122. maw: {
  51123. height: math.unit(0.9, "feet"),
  51124. name: "Maw",
  51125. image: {
  51126. source: "./media/characters/freki-yrmori/maw.svg"
  51127. }
  51128. },
  51129. },
  51130. [
  51131. {
  51132. name: "Normal",
  51133. height: math.unit(7 + 4/12, "feet"),
  51134. default: true
  51135. },
  51136. {
  51137. name: "Macro",
  51138. height: math.unit(38.5, "meters")
  51139. },
  51140. ]
  51141. ))
  51142. characterMakers.push(() => makeCharacter(
  51143. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51144. {
  51145. side: {
  51146. height: math.unit(47.2, "meters"),
  51147. weight: math.unit(10000, "tons"),
  51148. name: "Side",
  51149. image: {
  51150. source: "./media/characters/aetherios/side.svg",
  51151. extra: 2363/642,
  51152. bottom: 221/2584
  51153. }
  51154. },
  51155. top: {
  51156. height: math.unit(240, "meters"),
  51157. weight: math.unit(10000, "tons"),
  51158. name: "Top",
  51159. image: {
  51160. source: "./media/characters/aetherios/top.svg"
  51161. }
  51162. },
  51163. bottom: {
  51164. height: math.unit(240, "meters"),
  51165. weight: math.unit(10000, "tons"),
  51166. name: "Bottom",
  51167. image: {
  51168. source: "./media/characters/aetherios/bottom.svg"
  51169. }
  51170. },
  51171. head: {
  51172. height: math.unit(38.6, "meters"),
  51173. name: "Head",
  51174. image: {
  51175. source: "./media/characters/aetherios/head.svg",
  51176. extra: 1335/1112,
  51177. bottom: 0/1335
  51178. }
  51179. },
  51180. front: {
  51181. height: math.unit(29, "meters"),
  51182. name: "Front",
  51183. image: {
  51184. source: "./media/characters/aetherios/front.svg",
  51185. extra: 1266/953,
  51186. bottom: 158/1424
  51187. }
  51188. },
  51189. maw: {
  51190. height: math.unit(16.37, "meters"),
  51191. name: "Maw",
  51192. image: {
  51193. source: "./media/characters/aetherios/maw.svg",
  51194. extra: 748/637,
  51195. bottom: 0/748
  51196. },
  51197. extraAttributes: {
  51198. preyCapacity: {
  51199. name: "Capacity",
  51200. power: 3,
  51201. type: "volume",
  51202. base: math.unit(1000, "people")
  51203. },
  51204. tongueSize: {
  51205. name: "Tongue Size",
  51206. power: 2,
  51207. type: "area",
  51208. base: math.unit(21, "m^2")
  51209. }
  51210. }
  51211. },
  51212. forepaw: {
  51213. height: math.unit(18, "meters"),
  51214. name: "Forepaw",
  51215. image: {
  51216. source: "./media/characters/aetherios/forepaw.svg"
  51217. }
  51218. },
  51219. hindpaw: {
  51220. height: math.unit(23, "meters"),
  51221. name: "Hindpaw",
  51222. image: {
  51223. source: "./media/characters/aetherios/hindpaw.svg"
  51224. }
  51225. },
  51226. genitals: {
  51227. height: math.unit(42, "meters"),
  51228. name: "Genitals",
  51229. image: {
  51230. source: "./media/characters/aetherios/genitals.svg"
  51231. }
  51232. },
  51233. },
  51234. [
  51235. {
  51236. name: "Normal",
  51237. height: math.unit(47.2, "meters"),
  51238. default: true
  51239. },
  51240. {
  51241. name: "Macro",
  51242. height: math.unit(160, "meters")
  51243. },
  51244. {
  51245. name: "Mega",
  51246. height: math.unit(1.87, "km")
  51247. },
  51248. {
  51249. name: "Giga",
  51250. height: math.unit(40000, "km")
  51251. },
  51252. {
  51253. name: "Stellar",
  51254. height: math.unit(158000000, "km")
  51255. },
  51256. {
  51257. name: "Cosmic",
  51258. height: math.unit(9.46e12, "km")
  51259. },
  51260. ]
  51261. ))
  51262. characterMakers.push(() => makeCharacter(
  51263. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51264. {
  51265. front: {
  51266. height: math.unit(5 + 4/12, "feet"),
  51267. weight: math.unit(80, "lb"),
  51268. name: "Front",
  51269. image: {
  51270. source: "./media/characters/mizu-gieeg/front.svg",
  51271. extra: 850/709,
  51272. bottom: 52/902
  51273. }
  51274. },
  51275. back: {
  51276. height: math.unit(5 + 4/12, "feet"),
  51277. weight: math.unit(80, "lb"),
  51278. name: "Back",
  51279. image: {
  51280. source: "./media/characters/mizu-gieeg/back.svg",
  51281. extra: 882/745,
  51282. bottom: 25/907
  51283. }
  51284. },
  51285. },
  51286. [
  51287. {
  51288. name: "Normal",
  51289. height: math.unit(5 + 4/12, "feet"),
  51290. default: true
  51291. },
  51292. ]
  51293. ))
  51294. characterMakers.push(() => makeCharacter(
  51295. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51296. {
  51297. front: {
  51298. height: math.unit(6, "feet"),
  51299. name: "Front",
  51300. image: {
  51301. source: "./media/characters/roselle-st-papier/front.svg",
  51302. extra: 1430/1280,
  51303. bottom: 37/1467
  51304. }
  51305. },
  51306. back: {
  51307. height: math.unit(6, "feet"),
  51308. name: "Back",
  51309. image: {
  51310. source: "./media/characters/roselle-st-papier/back.svg",
  51311. extra: 1491/1296,
  51312. bottom: 23/1514
  51313. }
  51314. },
  51315. ear: {
  51316. height: math.unit(1.26, "feet"),
  51317. name: "Ear",
  51318. image: {
  51319. source: "./media/characters/roselle-st-papier/ear.svg"
  51320. }
  51321. },
  51322. },
  51323. [
  51324. {
  51325. name: "Normal",
  51326. height: math.unit(150, "feet"),
  51327. default: true
  51328. },
  51329. ]
  51330. ))
  51331. characterMakers.push(() => makeCharacter(
  51332. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51333. {
  51334. front: {
  51335. height: math.unit(1, "inches"),
  51336. name: "Front",
  51337. image: {
  51338. source: "./media/characters/valargent/front.svg",
  51339. extra: 1825/1694,
  51340. bottom: 62/1887
  51341. }
  51342. },
  51343. back: {
  51344. height: math.unit(1, "inches"),
  51345. name: "Back",
  51346. image: {
  51347. source: "./media/characters/valargent/back.svg",
  51348. extra: 1775/1682,
  51349. bottom: 88/1863
  51350. }
  51351. },
  51352. },
  51353. [
  51354. {
  51355. name: "Micro",
  51356. height: math.unit(1, "inch"),
  51357. default: true
  51358. },
  51359. ]
  51360. ))
  51361. characterMakers.push(() => makeCharacter(
  51362. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51363. {
  51364. front: {
  51365. height: math.unit(3.4, "meters"),
  51366. name: "Front",
  51367. image: {
  51368. source: "./media/characters/zarina/front.svg",
  51369. extra: 1733/1425,
  51370. bottom: 93/1826
  51371. }
  51372. },
  51373. squatting: {
  51374. height: math.unit(2.14, "meters"),
  51375. name: "Squatting",
  51376. image: {
  51377. source: "./media/characters/zarina/squatting.svg",
  51378. extra: 1073/788,
  51379. bottom: 63/1136
  51380. }
  51381. },
  51382. back: {
  51383. height: math.unit(2.14, "meters"),
  51384. name: "Back",
  51385. image: {
  51386. source: "./media/characters/zarina/back.svg",
  51387. extra: 1128/885,
  51388. bottom: 0/1128
  51389. }
  51390. },
  51391. },
  51392. [
  51393. {
  51394. name: "Normal",
  51395. height: math.unit(3.4, "meters"),
  51396. default: true
  51397. },
  51398. {
  51399. name: "Big",
  51400. height: math.unit(5, "meters")
  51401. },
  51402. {
  51403. name: "Macro",
  51404. height: math.unit(110, "meters")
  51405. },
  51406. ]
  51407. ))
  51408. characterMakers.push(() => makeCharacter(
  51409. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51410. {
  51411. front: {
  51412. height: math.unit(7, "feet"),
  51413. name: "Front",
  51414. image: {
  51415. source: "./media/characters/ventus-astro-fox/front.svg",
  51416. extra: 1792/1623,
  51417. bottom: 28/1820
  51418. }
  51419. },
  51420. back: {
  51421. height: math.unit(7, "feet"),
  51422. name: "Back",
  51423. image: {
  51424. source: "./media/characters/ventus-astro-fox/back.svg",
  51425. extra: 1789/1620,
  51426. bottom: 31/1820
  51427. }
  51428. },
  51429. outfit: {
  51430. height: math.unit(7, "feet"),
  51431. name: "Outfit",
  51432. image: {
  51433. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51434. extra: 1054/925,
  51435. bottom: 15/1069
  51436. }
  51437. },
  51438. head: {
  51439. height: math.unit(1.12, "feet"),
  51440. name: "Head",
  51441. image: {
  51442. source: "./media/characters/ventus-astro-fox/head.svg",
  51443. extra: 866/504,
  51444. bottom: 0/866
  51445. }
  51446. },
  51447. hand: {
  51448. height: math.unit(1, "feet"),
  51449. name: "Hand",
  51450. image: {
  51451. source: "./media/characters/ventus-astro-fox/hand.svg"
  51452. }
  51453. },
  51454. paw: {
  51455. height: math.unit(1.5, "feet"),
  51456. name: "Paw",
  51457. image: {
  51458. source: "./media/characters/ventus-astro-fox/paw.svg"
  51459. }
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Normal",
  51465. height: math.unit(7, "feet"),
  51466. default: true
  51467. },
  51468. {
  51469. name: "Macro",
  51470. height: math.unit(200, "feet")
  51471. },
  51472. {
  51473. name: "Cosmic",
  51474. height: math.unit(3, "universes")
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51480. {
  51481. front: {
  51482. height: math.unit(3, "meters"),
  51483. weight: math.unit(7000, "lb"),
  51484. name: "Front",
  51485. image: {
  51486. source: "./media/characters/core-t/front.svg",
  51487. extra: 5729/4941,
  51488. bottom: 1129/6858
  51489. }
  51490. },
  51491. },
  51492. [
  51493. {
  51494. name: "Big",
  51495. height: math.unit(3, "meters"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51502. {
  51503. normal: {
  51504. height: math.unit(6 + 6/12, "feet"),
  51505. weight: math.unit(275, "lb"),
  51506. name: "Front",
  51507. image: {
  51508. source: "./media/characters/cadbunny/normal.svg",
  51509. extra: 1129/947,
  51510. bottom: 93/1222
  51511. },
  51512. default: true,
  51513. form: "normal"
  51514. },
  51515. gigantamax: {
  51516. height: math.unit(26, "feet"),
  51517. weight: math.unit(16000, "lb"),
  51518. name: "Front",
  51519. image: {
  51520. source: "./media/characters/cadbunny/gigantamax.svg",
  51521. extra: 1133/944,
  51522. bottom: 90/1223
  51523. },
  51524. default: true,
  51525. form: "gigantamax"
  51526. },
  51527. },
  51528. [
  51529. {
  51530. name: "Normal",
  51531. height: math.unit(6 + 6/12, "feet"),
  51532. default: true,
  51533. form: "normal"
  51534. },
  51535. {
  51536. name: "Small",
  51537. height: math.unit(26, "feet"),
  51538. default: true,
  51539. form: "gigantamax"
  51540. },
  51541. {
  51542. name: "Large",
  51543. height: math.unit(78, "feet"),
  51544. form: "gigantamax"
  51545. },
  51546. ],
  51547. {
  51548. "normal": {
  51549. name: "Normal",
  51550. default: true
  51551. },
  51552. "gigantamax": {
  51553. name: "Gigantamax"
  51554. }
  51555. }
  51556. ))
  51557. characterMakers.push(() => makeCharacter(
  51558. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51559. {
  51560. anthroFront: {
  51561. height: math.unit(8, "feet"),
  51562. weight: math.unit(300, "lb"),
  51563. name: "Front",
  51564. image: {
  51565. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51566. extra: 1272/1176,
  51567. bottom: 53/1325
  51568. },
  51569. form: "anthro",
  51570. default: true
  51571. },
  51572. feralSide: {
  51573. height: math.unit(4, "feet"),
  51574. weight: math.unit(250, "lb"),
  51575. name: "Side",
  51576. image: {
  51577. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51578. extra: 731/621,
  51579. bottom: 0/731
  51580. },
  51581. form: "feral",
  51582. default: true
  51583. },
  51584. },
  51585. [
  51586. {
  51587. name: "Regular",
  51588. height: math.unit(8, "feet"),
  51589. form: "anthro"
  51590. },
  51591. {
  51592. name: "Macro",
  51593. height: math.unit(250, "feet"),
  51594. form: "anthro",
  51595. default: true
  51596. },
  51597. {
  51598. name: "Regular",
  51599. height: math.unit(4, "feet"),
  51600. form: "feral"
  51601. },
  51602. {
  51603. name: "Macro",
  51604. height: math.unit(125, "feet"),
  51605. form: "feral",
  51606. default: true
  51607. },
  51608. ],
  51609. {
  51610. "anthro": {
  51611. name: "Anthro",
  51612. default: true
  51613. },
  51614. "feral": {
  51615. name: "Feral",
  51616. },
  51617. }
  51618. ))
  51619. characterMakers.push(() => makeCharacter(
  51620. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51621. {
  51622. front: {
  51623. height: math.unit(11 + 10/12, "feet"),
  51624. weight: math.unit(1587, "kg"),
  51625. name: "Front",
  51626. image: {
  51627. source: "./media/characters/maple-javira-dragon/front.svg",
  51628. extra: 1136/744,
  51629. bottom: 73/1209
  51630. }
  51631. },
  51632. side: {
  51633. height: math.unit(11 + 10/12, "feet"),
  51634. weight: math.unit(1587, "kg"),
  51635. name: "Side",
  51636. image: {
  51637. source: "./media/characters/maple-javira-dragon/side.svg",
  51638. extra: 712/505,
  51639. bottom: 17/729
  51640. }
  51641. },
  51642. head: {
  51643. height: math.unit(8.05, "feet"),
  51644. name: "Head",
  51645. image: {
  51646. source: "./media/characters/maple-javira-dragon/head.svg",
  51647. extra: 1420/1344,
  51648. bottom: 0/1420
  51649. }
  51650. },
  51651. },
  51652. [
  51653. {
  51654. name: "Normal",
  51655. height: math.unit(11 + 10/12, "feet"),
  51656. default: true
  51657. },
  51658. ]
  51659. ))
  51660. characterMakers.push(() => makeCharacter(
  51661. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51662. {
  51663. front: {
  51664. height: math.unit(117, "cm"),
  51665. weight: math.unit(50, "kg"),
  51666. name: "Front",
  51667. image: {
  51668. source: "./media/characters/sonia-wyverntail/front.svg",
  51669. extra: 708/592,
  51670. bottom: 25/733
  51671. }
  51672. },
  51673. },
  51674. [
  51675. {
  51676. name: "Normal",
  51677. height: math.unit(117, "cm"),
  51678. default: true
  51679. },
  51680. ]
  51681. ))
  51682. characterMakers.push(() => makeCharacter(
  51683. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51684. {
  51685. front: {
  51686. height: math.unit(6 + 5/12, "feet"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/micah/front.svg",
  51690. extra: 1758/1546,
  51691. bottom: 214/1972
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Normal",
  51698. height: math.unit(6 + 5/12, "feet"),
  51699. default: true
  51700. },
  51701. ]
  51702. ))
  51703. characterMakers.push(() => makeCharacter(
  51704. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51705. {
  51706. front: {
  51707. height: math.unit(1.75, "meters"),
  51708. weight: math.unit(100, "kg"),
  51709. name: "Front",
  51710. image: {
  51711. source: "./media/characters/zarya/front.svg",
  51712. extra: 741/735,
  51713. bottom: 44/785
  51714. },
  51715. extraAttributes: {
  51716. "tailLength": {
  51717. name: "Tail Length",
  51718. power: 1,
  51719. type: "length",
  51720. base: math.unit(180, "cm")
  51721. },
  51722. "pawLength": {
  51723. name: "Paw Length",
  51724. power: 1,
  51725. type: "length",
  51726. base: math.unit(31, "cm")
  51727. },
  51728. }
  51729. },
  51730. side: {
  51731. height: math.unit(1.75, "meters"),
  51732. weight: math.unit(100, "kg"),
  51733. name: "Side",
  51734. image: {
  51735. source: "./media/characters/zarya/side.svg",
  51736. extra: 776/770,
  51737. bottom: 17/793
  51738. },
  51739. extraAttributes: {
  51740. "tailLength": {
  51741. name: "Tail Length",
  51742. power: 1,
  51743. type: "length",
  51744. base: math.unit(180, "cm")
  51745. },
  51746. "pawLength": {
  51747. name: "Paw Length",
  51748. power: 1,
  51749. type: "length",
  51750. base: math.unit(31, "cm")
  51751. },
  51752. }
  51753. },
  51754. back: {
  51755. height: math.unit(1.75, "meters"),
  51756. weight: math.unit(100, "kg"),
  51757. name: "Back",
  51758. image: {
  51759. source: "./media/characters/zarya/back.svg",
  51760. extra: 741/735,
  51761. bottom: 44/785
  51762. },
  51763. extraAttributes: {
  51764. "tailLength": {
  51765. name: "Tail Length",
  51766. power: 1,
  51767. type: "length",
  51768. base: math.unit(180, "cm")
  51769. },
  51770. "pawLength": {
  51771. name: "Paw Length",
  51772. power: 1,
  51773. type: "length",
  51774. base: math.unit(31, "cm")
  51775. },
  51776. }
  51777. },
  51778. frontNoTail: {
  51779. height: math.unit(1.75, "meters"),
  51780. weight: math.unit(100, "kg"),
  51781. name: "Front (No Tail)",
  51782. image: {
  51783. source: "./media/characters/zarya/front-no-tail.svg",
  51784. extra: 741/735,
  51785. bottom: 44/785
  51786. },
  51787. extraAttributes: {
  51788. "tailLength": {
  51789. name: "Tail Length",
  51790. power: 1,
  51791. type: "length",
  51792. base: math.unit(180, "cm")
  51793. },
  51794. "pawLength": {
  51795. name: "Paw Length",
  51796. power: 1,
  51797. type: "length",
  51798. base: math.unit(31, "cm")
  51799. },
  51800. }
  51801. },
  51802. dressed: {
  51803. height: math.unit(1.75, "meters"),
  51804. weight: math.unit(100, "kg"),
  51805. name: "Dressed",
  51806. image: {
  51807. source: "./media/characters/zarya/dressed.svg",
  51808. extra: 683/672,
  51809. bottom: 79/762
  51810. },
  51811. extraAttributes: {
  51812. "tailLength": {
  51813. name: "Tail Length",
  51814. power: 1,
  51815. type: "length",
  51816. base: math.unit(180, "cm")
  51817. },
  51818. "pawLength": {
  51819. name: "Paw Length",
  51820. power: 1,
  51821. type: "length",
  51822. base: math.unit(31, "cm")
  51823. },
  51824. }
  51825. },
  51826. },
  51827. [
  51828. {
  51829. name: "Micro",
  51830. height: math.unit(5, "cm")
  51831. },
  51832. {
  51833. name: "Normal",
  51834. height: math.unit(1.75, "meters"),
  51835. default: true
  51836. },
  51837. {
  51838. name: "Macro",
  51839. height: math.unit(122, "meters")
  51840. },
  51841. ]
  51842. ))
  51843. characterMakers.push(() => makeCharacter(
  51844. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51845. {
  51846. front: {
  51847. height: math.unit(7.5, "feet"),
  51848. name: "Front",
  51849. image: {
  51850. source: "./media/characters/sven-hatisson/front.svg",
  51851. extra: 917/857,
  51852. bottom: 42/959
  51853. }
  51854. },
  51855. back: {
  51856. height: math.unit(7.5, "feet"),
  51857. name: "Back",
  51858. image: {
  51859. source: "./media/characters/sven-hatisson/back.svg",
  51860. extra: 903/856,
  51861. bottom: 15/918
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Base Height",
  51868. height: math.unit(7.5, "feet")
  51869. },
  51870. {
  51871. name: "Usual Height",
  51872. height: math.unit(13.5, "feet"),
  51873. default: true
  51874. },
  51875. {
  51876. name: "Smaller Macro",
  51877. height: math.unit(85, "feet")
  51878. },
  51879. {
  51880. name: "Moderate Macro",
  51881. height: math.unit(320, "feet")
  51882. },
  51883. {
  51884. name: "Large Macro",
  51885. height: math.unit(1000, "feet")
  51886. },
  51887. {
  51888. name: "Largest Size",
  51889. height: math.unit(2, "miles")
  51890. },
  51891. ]
  51892. ))
  51893. characterMakers.push(() => makeCharacter(
  51894. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51895. {
  51896. side: {
  51897. height: math.unit(1.8, "meters"),
  51898. weight: math.unit(275, "kg"),
  51899. name: "Side",
  51900. image: {
  51901. source: "./media/characters/terra/side.svg",
  51902. extra: 1273/1147,
  51903. bottom: 0/1273
  51904. }
  51905. },
  51906. },
  51907. [
  51908. {
  51909. name: "Normal",
  51910. height: math.unit(16.2, "meters"),
  51911. default: true
  51912. },
  51913. ]
  51914. ))
  51915. characterMakers.push(() => makeCharacter(
  51916. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51917. {
  51918. borzoiFront: {
  51919. height: math.unit(6 + 9/12, "feet"),
  51920. name: "Front",
  51921. image: {
  51922. source: "./media/characters/rae/borzoi-front.svg",
  51923. extra: 1161/1098,
  51924. bottom: 31/1192
  51925. },
  51926. form: "borzoi",
  51927. default: true
  51928. },
  51929. werewolfFront: {
  51930. height: math.unit(8 + 7/12, "feet"),
  51931. name: "Front",
  51932. image: {
  51933. source: "./media/characters/rae/werewolf-front.svg",
  51934. extra: 1411/1334,
  51935. bottom: 127/1538
  51936. },
  51937. form: "werewolf",
  51938. default: true
  51939. },
  51940. },
  51941. [
  51942. {
  51943. name: "Normal",
  51944. height: math.unit(6 + 9/12, "feet"),
  51945. default: true,
  51946. form: "borzoi"
  51947. },
  51948. {
  51949. name: "Normal",
  51950. height: math.unit(8 + 7/12, "feet"),
  51951. default: true,
  51952. form: "werewolf"
  51953. },
  51954. ],
  51955. {
  51956. "borzoi": {
  51957. name: "Borzoi",
  51958. default: true
  51959. },
  51960. "werewolf": {
  51961. name: "Werewolf",
  51962. },
  51963. }
  51964. ))
  51965. characterMakers.push(() => makeCharacter(
  51966. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51967. {
  51968. front: {
  51969. height: math.unit(8 + 7/12, "feet"),
  51970. weight: math.unit(482, "lb"),
  51971. name: "Front",
  51972. image: {
  51973. source: "./media/characters/kit/front.svg",
  51974. extra: 1247/1103,
  51975. bottom: 41/1288
  51976. }
  51977. },
  51978. back: {
  51979. height: math.unit(8 + 7/12, "feet"),
  51980. weight: math.unit(482, "lb"),
  51981. name: "Back",
  51982. image: {
  51983. source: "./media/characters/kit/back.svg",
  51984. extra: 1252/1123,
  51985. bottom: 21/1273
  51986. }
  51987. },
  51988. paw: {
  51989. height: math.unit(1.46, "feet"),
  51990. name: "Paw",
  51991. image: {
  51992. source: "./media/characters/kit/paw.svg"
  51993. }
  51994. },
  51995. },
  51996. [
  51997. {
  51998. name: "Normal",
  51999. height: math.unit(2.61, "meters"),
  52000. default: true
  52001. },
  52002. {
  52003. name: "\"Tall\"",
  52004. height: math.unit(8.21, "meters")
  52005. },
  52006. {
  52007. name: "Tall",
  52008. height: math.unit(19.6, "meters")
  52009. },
  52010. {
  52011. name: "Very Tall",
  52012. height: math.unit(57.91, "meters")
  52013. },
  52014. {
  52015. name: "Semi-Macro",
  52016. height: math.unit(138.64, "meters")
  52017. },
  52018. {
  52019. name: "Macro",
  52020. height: math.unit(831.99, "meters")
  52021. },
  52022. {
  52023. name: "EX-Macro",
  52024. height: math.unit(96451121, "meters")
  52025. },
  52026. {
  52027. name: "S1-Omnipotent",
  52028. height: math.unit(4.42074e+9, "meters")
  52029. },
  52030. {
  52031. name: "S2-Omnipotent",
  52032. height: math.unit(9.42074e+17, "meters")
  52033. },
  52034. {
  52035. name: "Omnipotent",
  52036. height: math.unit(4.23112e+24, "meters")
  52037. },
  52038. {
  52039. name: "Hypergod",
  52040. height: math.unit(5.05176e+27, "meters")
  52041. },
  52042. {
  52043. name: "Hypergod-EX",
  52044. height: math.unit(9.45532e+49, "meters")
  52045. },
  52046. {
  52047. name: "Hypergod-SP",
  52048. height: math.unit(9.45532e+195, "meters")
  52049. },
  52050. ]
  52051. ))
  52052. characterMakers.push(() => makeCharacter(
  52053. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52054. {
  52055. side: {
  52056. height: math.unit(0.6, "meters"),
  52057. weight: math.unit(24, "kg"),
  52058. name: "Side",
  52059. image: {
  52060. source: "./media/characters/celeste/side.svg",
  52061. extra: 810/517,
  52062. bottom: 53/863
  52063. }
  52064. },
  52065. },
  52066. [
  52067. {
  52068. name: "Velociraptor",
  52069. height: math.unit(0.6, "meters"),
  52070. default: true
  52071. },
  52072. {
  52073. name: "Utahraptor",
  52074. height: math.unit(1.8, "meters")
  52075. },
  52076. {
  52077. name: "Gallimimus",
  52078. height: math.unit(4.0, "meters")
  52079. },
  52080. {
  52081. name: "Large",
  52082. height: math.unit(20, "meters")
  52083. },
  52084. {
  52085. name: "Planetary",
  52086. height: math.unit(50, "megameters")
  52087. },
  52088. {
  52089. name: "Stellar",
  52090. height: math.unit(1.5, "gigameters")
  52091. },
  52092. {
  52093. name: "Galactic",
  52094. height: math.unit(100, "exameters")
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(6, "feet"),
  52103. weight: math.unit(210, "lb"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/glacia/front.svg",
  52107. extra: 958/901,
  52108. bottom: 45/1003
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Macro",
  52115. height: math.unit(1000, "meters"),
  52116. default: true
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(4, "meters"),
  52125. name: "Front",
  52126. image: {
  52127. source: "./media/characters/giri/front.svg",
  52128. extra: 966/894,
  52129. bottom: 21/987
  52130. }
  52131. },
  52132. },
  52133. [
  52134. {
  52135. name: "Normal",
  52136. height: math.unit(4, "meters"),
  52137. default: true
  52138. },
  52139. ]
  52140. ))
  52141. characterMakers.push(() => makeCharacter(
  52142. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52143. {
  52144. back: {
  52145. height: math.unit(4, "feet"),
  52146. weight: math.unit(37, "lb"),
  52147. name: "Back",
  52148. image: {
  52149. source: "./media/characters/tin/back.svg",
  52150. extra: 845/780,
  52151. bottom: 28/873
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Normal",
  52158. height: math.unit(4, "feet"),
  52159. default: true
  52160. },
  52161. ]
  52162. ))
  52163. characterMakers.push(() => makeCharacter(
  52164. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52165. {
  52166. front: {
  52167. height: math.unit(25, "feet"),
  52168. name: "Front",
  52169. image: {
  52170. source: "./media/characters/cadenza-vivace/front.svg",
  52171. extra: 1842/1578,
  52172. bottom: 30/1872
  52173. }
  52174. },
  52175. },
  52176. [
  52177. {
  52178. name: "Macro",
  52179. height: math.unit(25, "feet"),
  52180. default: true
  52181. },
  52182. ]
  52183. ))
  52184. characterMakers.push(() => makeCharacter(
  52185. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52186. {
  52187. front: {
  52188. height: math.unit(10, "feet"),
  52189. weight: math.unit(625, "kg"),
  52190. name: "Front",
  52191. image: {
  52192. source: "./media/characters/zain/front.svg",
  52193. extra: 1682/1498,
  52194. bottom: 223/1905
  52195. }
  52196. },
  52197. back: {
  52198. height: math.unit(10, "feet"),
  52199. weight: math.unit(625, "kg"),
  52200. name: "Back",
  52201. image: {
  52202. source: "./media/characters/zain/back.svg",
  52203. extra: 1814/1657,
  52204. bottom: 152/1966
  52205. }
  52206. },
  52207. head: {
  52208. height: math.unit(10, "feet"),
  52209. weight: math.unit(625, "kg"),
  52210. name: "Head",
  52211. image: {
  52212. source: "./media/characters/zain/head.svg",
  52213. extra: 1059/762,
  52214. bottom: 0/1059
  52215. }
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Normal",
  52221. height: math.unit(10, "feet"),
  52222. default: true
  52223. },
  52224. ]
  52225. ))
  52226. characterMakers.push(() => makeCharacter(
  52227. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52228. {
  52229. front: {
  52230. height: math.unit(6 + 5/12, "feet"),
  52231. weight: math.unit(750, "lb"),
  52232. name: "Front",
  52233. image: {
  52234. source: "./media/characters/ruchex/front.svg",
  52235. extra: 877/820,
  52236. bottom: 17/894
  52237. },
  52238. extraAttributes: {
  52239. "width": {
  52240. name: "Width",
  52241. power: 1,
  52242. type: "length",
  52243. base: math.unit(4.757, "feet")
  52244. },
  52245. }
  52246. },
  52247. },
  52248. [
  52249. {
  52250. name: "Normal",
  52251. height: math.unit(6 + 5/12, "feet"),
  52252. default: true
  52253. },
  52254. ]
  52255. ))
  52256. characterMakers.push(() => makeCharacter(
  52257. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52258. {
  52259. dressedFront: {
  52260. height: math.unit(191, "cm"),
  52261. weight: math.unit(80, "kg"),
  52262. name: "Front",
  52263. image: {
  52264. source: "./media/characters/buster/dressed-front.svg",
  52265. extra: 1022/973,
  52266. bottom: 69/1091
  52267. }
  52268. },
  52269. dressedBack: {
  52270. height: math.unit(191, "cm"),
  52271. weight: math.unit(80, "kg"),
  52272. name: "Back",
  52273. image: {
  52274. source: "./media/characters/buster/dressed-back.svg",
  52275. extra: 1018/970,
  52276. bottom: 55/1073
  52277. }
  52278. },
  52279. nudeFront: {
  52280. height: math.unit(191, "cm"),
  52281. weight: math.unit(80, "kg"),
  52282. name: "Front (Nude)",
  52283. image: {
  52284. source: "./media/characters/buster/nude-front.svg",
  52285. extra: 1022/973,
  52286. bottom: 69/1091
  52287. }
  52288. },
  52289. nudeBack: {
  52290. height: math.unit(191, "cm"),
  52291. weight: math.unit(80, "kg"),
  52292. name: "Back (Nude)",
  52293. image: {
  52294. source: "./media/characters/buster/nude-back.svg",
  52295. extra: 1018/970,
  52296. bottom: 55/1073
  52297. }
  52298. },
  52299. dick: {
  52300. height: math.unit(2.59, "feet"),
  52301. name: "Dick",
  52302. image: {
  52303. source: "./media/characters/buster/dick.svg"
  52304. }
  52305. },
  52306. ass: {
  52307. height: math.unit(1.2, "feet"),
  52308. name: "Ass",
  52309. image: {
  52310. source: "./media/characters/buster/ass.svg"
  52311. }
  52312. },
  52313. },
  52314. [
  52315. {
  52316. name: "Normal",
  52317. height: math.unit(191, "cm"),
  52318. default: true
  52319. },
  52320. ]
  52321. ))
  52322. characterMakers.push(() => makeCharacter(
  52323. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52324. {
  52325. side: {
  52326. height: math.unit(8.1, "feet"),
  52327. weight: math.unit(3500, "lb"),
  52328. name: "Side",
  52329. image: {
  52330. source: "./media/characters/sonya/side.svg",
  52331. extra: 1730/1317,
  52332. bottom: 86/1816
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(8.1, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(6, "feet"),
  52349. weight: math.unit(150, "lb"),
  52350. name: "Front",
  52351. image: {
  52352. source: "./media/characters/cadence-andrysiak/front.svg",
  52353. extra: 1164/1121,
  52354. bottom: 60/1224
  52355. }
  52356. },
  52357. back: {
  52358. height: math.unit(6, "feet"),
  52359. weight: math.unit(150, "lb"),
  52360. name: "Back",
  52361. image: {
  52362. source: "./media/characters/cadence-andrysiak/back.svg",
  52363. extra: 1200/1165,
  52364. bottom: 9/1209
  52365. }
  52366. },
  52367. dressed: {
  52368. height: math.unit(6, "feet"),
  52369. weight: math.unit(150, "lb"),
  52370. name: "Dressed",
  52371. image: {
  52372. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52373. extra: 1164/1121,
  52374. bottom: 60/1224
  52375. }
  52376. },
  52377. },
  52378. [
  52379. {
  52380. name: "Micro",
  52381. height: math.unit(1, "mm")
  52382. },
  52383. {
  52384. name: "Normal",
  52385. height: math.unit(6, "feet"),
  52386. default: true
  52387. },
  52388. ]
  52389. ))
  52390. characterMakers.push(() => makeCharacter(
  52391. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52392. {
  52393. front: {
  52394. height: math.unit(60, "inches"),
  52395. weight: math.unit(16, "lb"),
  52396. preyCapacity: math.unit(80, "liters"),
  52397. name: "Front",
  52398. image: {
  52399. source: "./media/characters/penny-lynx/front.svg",
  52400. extra: 1959/1769,
  52401. bottom: 49/2008
  52402. }
  52403. },
  52404. },
  52405. [
  52406. {
  52407. name: "Nokia",
  52408. height: math.unit(2, "inches")
  52409. },
  52410. {
  52411. name: "Desktop",
  52412. height: math.unit(24, "inches")
  52413. },
  52414. {
  52415. name: "TV",
  52416. height: math.unit(60, "inches")
  52417. },
  52418. {
  52419. name: "Jumbotron",
  52420. height: math.unit(12, "feet")
  52421. },
  52422. {
  52423. name: "Billboard",
  52424. height: math.unit(48, "feet"),
  52425. default: true
  52426. },
  52427. {
  52428. name: "IMAX",
  52429. height: math.unit(96, "feet")
  52430. },
  52431. {
  52432. name: "SINGULARITY",
  52433. height: math.unit(864938, "miles")
  52434. },
  52435. ]
  52436. ))
  52437. characterMakers.push(() => makeCharacter(
  52438. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52439. {
  52440. front: {
  52441. height: math.unit(5 + 4/12, "feet"),
  52442. weight: math.unit(230, "lb"),
  52443. name: "Front",
  52444. image: {
  52445. source: "./media/characters/sukebe/front.svg",
  52446. extra: 2130/2038,
  52447. bottom: 90/2220
  52448. }
  52449. },
  52450. back: {
  52451. height: math.unit(3.48, "feet"),
  52452. weight: math.unit(230, "lb"),
  52453. name: "Back",
  52454. image: {
  52455. source: "./media/characters/sukebe/back.svg",
  52456. extra: 1670/1604,
  52457. bottom: 0/1670
  52458. }
  52459. },
  52460. },
  52461. [
  52462. {
  52463. name: "Normal",
  52464. height: math.unit(5 + 4/12, "feet"),
  52465. default: true
  52466. },
  52467. ]
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52471. {
  52472. front: {
  52473. height: math.unit(6, "feet"),
  52474. name: "Front",
  52475. image: {
  52476. source: "./media/characters/nylla/front.svg",
  52477. extra: 1868/1699,
  52478. bottom: 97/1965
  52479. }
  52480. },
  52481. back: {
  52482. height: math.unit(6, "feet"),
  52483. name: "Back",
  52484. image: {
  52485. source: "./media/characters/nylla/back.svg",
  52486. extra: 1889/1712,
  52487. bottom: 93/1982
  52488. }
  52489. },
  52490. frontNsfw: {
  52491. height: math.unit(6, "feet"),
  52492. name: "Front (NSFW)",
  52493. image: {
  52494. source: "./media/characters/nylla/front-nsfw.svg",
  52495. extra: 1868/1699,
  52496. bottom: 97/1965
  52497. },
  52498. extraAttributes: {
  52499. "dickLength": {
  52500. name: "Dick Length",
  52501. power: 1,
  52502. type: "length",
  52503. base: math.unit(1.4, "feet")
  52504. },
  52505. "cumVolume": {
  52506. name: "Cum Volume",
  52507. power: 3,
  52508. type: "volume",
  52509. base: math.unit(100, "mL")
  52510. },
  52511. }
  52512. },
  52513. backNsfw: {
  52514. height: math.unit(6, "feet"),
  52515. name: "Back (NSFW)",
  52516. image: {
  52517. source: "./media/characters/nylla/back-nsfw.svg",
  52518. extra: 1889/1712,
  52519. bottom: 93/1982
  52520. }
  52521. },
  52522. maw: {
  52523. height: math.unit(2.10, "feet"),
  52524. name: "Maw",
  52525. image: {
  52526. source: "./media/characters/nylla/maw.svg"
  52527. }
  52528. },
  52529. paws: {
  52530. height: math.unit(2.06, "feet"),
  52531. name: "Paws",
  52532. image: {
  52533. source: "./media/characters/nylla/paws.svg"
  52534. }
  52535. },
  52536. muzzle: {
  52537. height: math.unit(0.61, "feet"),
  52538. name: "Muzzle",
  52539. image: {
  52540. source: "./media/characters/nylla/muzzle.svg"
  52541. }
  52542. },
  52543. sheath: {
  52544. height: math.unit(1.305, "feet"),
  52545. name: "Sheath",
  52546. image: {
  52547. source: "./media/characters/nylla/sheath.svg"
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Micro",
  52554. height: math.unit(7.5, "inches")
  52555. },
  52556. {
  52557. name: "Normal",
  52558. height: math.unit(7, "feet"),
  52559. default: true
  52560. },
  52561. {
  52562. name: "Macro",
  52563. height: math.unit(60, "feet")
  52564. },
  52565. {
  52566. name: "Mega",
  52567. height: math.unit(200, "feet")
  52568. },
  52569. ]
  52570. ))
  52571. characterMakers.push(() => makeCharacter(
  52572. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52573. {
  52574. front: {
  52575. height: math.unit(10, "feet"),
  52576. weight: math.unit(2300, "lb"),
  52577. name: "Front",
  52578. image: {
  52579. source: "./media/characters/hunt3r/front.svg",
  52580. extra: 1909/1742,
  52581. bottom: 46/1955
  52582. }
  52583. },
  52584. },
  52585. [
  52586. {
  52587. name: "Normal",
  52588. height: math.unit(10, "feet"),
  52589. default: true
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52595. {
  52596. dressed: {
  52597. height: math.unit(11, "feet"),
  52598. weight: math.unit(18500, "lb"),
  52599. preyCapacity: math.unit(9, "people"),
  52600. name: "Dressed",
  52601. image: {
  52602. source: "./media/characters/cylphis/dressed.svg",
  52603. extra: 1028/1003,
  52604. bottom: 75/1103
  52605. },
  52606. },
  52607. undressed: {
  52608. height: math.unit(11, "feet"),
  52609. weight: math.unit(18500, "lb"),
  52610. preyCapacity: math.unit(9, "people"),
  52611. name: "Undressed",
  52612. image: {
  52613. source: "./media/characters/cylphis/undressed.svg",
  52614. extra: 1028/1003,
  52615. bottom: 75/1103
  52616. }
  52617. },
  52618. full: {
  52619. height: math.unit(11, "feet"),
  52620. weight: math.unit(18500 + 150*9, "lb"),
  52621. preyCapacity: math.unit(9, "people"),
  52622. name: "Full",
  52623. image: {
  52624. source: "./media/characters/cylphis/full.svg",
  52625. extra: 1028/1003,
  52626. bottom: 75/1103
  52627. }
  52628. },
  52629. },
  52630. [
  52631. {
  52632. name: "Small",
  52633. height: math.unit(8, "feet")
  52634. },
  52635. {
  52636. name: "Normal",
  52637. height: math.unit(11, "feet"),
  52638. default: true
  52639. },
  52640. ]
  52641. ))
  52642. characterMakers.push(() => makeCharacter(
  52643. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52644. {
  52645. front: {
  52646. height: math.unit(2 + 7/12, "feet"),
  52647. name: "Front",
  52648. image: {
  52649. source: "./media/characters/orishan/front.svg",
  52650. extra: 1058/1023,
  52651. bottom: 23/1081
  52652. }
  52653. },
  52654. back: {
  52655. height: math.unit(2 + 7/12, "feet"),
  52656. name: "Back",
  52657. image: {
  52658. source: "./media/characters/orishan/back.svg",
  52659. extra: 1058/1023,
  52660. bottom: 23/1081
  52661. }
  52662. },
  52663. },
  52664. [
  52665. {
  52666. name: "Micro",
  52667. height: math.unit(2, "cm")
  52668. },
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(2 + 7/12, "feet"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(3, "meters"),
  52681. weight: math.unit(508, "kg"),
  52682. name: "Front",
  52683. image: {
  52684. source: "./media/characters/seranis/front.svg",
  52685. extra: 1478/1454,
  52686. bottom: 41/1519
  52687. }
  52688. },
  52689. },
  52690. [
  52691. {
  52692. name: "Normal",
  52693. height: math.unit(3, "meters"),
  52694. default: true
  52695. },
  52696. {
  52697. name: "Macro",
  52698. height: math.unit(108, "meters")
  52699. },
  52700. {
  52701. name: "Megamacro",
  52702. height: math.unit(1250, "meters")
  52703. },
  52704. ]
  52705. ))
  52706. characterMakers.push(() => makeCharacter(
  52707. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52708. {
  52709. undressed: {
  52710. height: math.unit(5 + 3/12, "feet"),
  52711. name: "Undressed",
  52712. image: {
  52713. source: "./media/characters/ankou/undressed.svg",
  52714. extra: 1301/1213,
  52715. bottom: 87/1388
  52716. }
  52717. },
  52718. dressed: {
  52719. height: math.unit(5 + 3/12, "feet"),
  52720. name: "Dressed",
  52721. image: {
  52722. source: "./media/characters/ankou/dressed.svg",
  52723. extra: 1301/1213,
  52724. bottom: 87/1388
  52725. }
  52726. },
  52727. head: {
  52728. height: math.unit(1.61, "feet"),
  52729. name: "Head",
  52730. image: {
  52731. source: "./media/characters/ankou/head.svg"
  52732. }
  52733. },
  52734. },
  52735. [
  52736. {
  52737. name: "Normal",
  52738. height: math.unit(5 + 3/12, "feet"),
  52739. default: true
  52740. },
  52741. ]
  52742. ))
  52743. characterMakers.push(() => makeCharacter(
  52744. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52745. {
  52746. side: {
  52747. height: math.unit(6 + 3/12, "feet"),
  52748. weight: math.unit(200, "kg"),
  52749. name: "Side",
  52750. image: {
  52751. source: "./media/characters/juniper-skunktaur/side.svg",
  52752. extra: 1574/1229,
  52753. bottom: 38/1612
  52754. }
  52755. },
  52756. front: {
  52757. height: math.unit(6 + 3/12, "feet"),
  52758. weight: math.unit(200, "kg"),
  52759. name: "Front",
  52760. image: {
  52761. source: "./media/characters/juniper-skunktaur/front.svg",
  52762. extra: 1337/1278,
  52763. bottom: 22/1359
  52764. }
  52765. },
  52766. back: {
  52767. height: math.unit(6 + 3/12, "feet"),
  52768. weight: math.unit(200, "kg"),
  52769. name: "Back",
  52770. image: {
  52771. source: "./media/characters/juniper-skunktaur/back.svg",
  52772. extra: 1618/1273,
  52773. bottom: 13/1631
  52774. }
  52775. },
  52776. top: {
  52777. height: math.unit(2.62, "feet"),
  52778. weight: math.unit(200, "kg"),
  52779. name: "Top",
  52780. image: {
  52781. source: "./media/characters/juniper-skunktaur/top.svg"
  52782. }
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Normal",
  52788. height: math.unit(6 + 3/12, "feet"),
  52789. default: true
  52790. },
  52791. ]
  52792. ))
  52793. characterMakers.push(() => makeCharacter(
  52794. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52795. {
  52796. front: {
  52797. height: math.unit(20.5, "feet"),
  52798. name: "Front",
  52799. image: {
  52800. source: "./media/characters/rei/front.svg",
  52801. extra: 1349/1195,
  52802. bottom: 31/1380
  52803. }
  52804. },
  52805. back: {
  52806. height: math.unit(20.5, "feet"),
  52807. name: "Back",
  52808. image: {
  52809. source: "./media/characters/rei/back.svg",
  52810. extra: 1358/1204,
  52811. bottom: 22/1380
  52812. }
  52813. },
  52814. pawsDigi: {
  52815. height: math.unit(3.45, "feet"),
  52816. name: "Paws (Digi)",
  52817. image: {
  52818. source: "./media/characters/rei/paws-digi.svg"
  52819. }
  52820. },
  52821. pawsPlanti: {
  52822. height: math.unit(3.45, "feet"),
  52823. name: "Paws (Planti)",
  52824. image: {
  52825. source: "./media/characters/rei/paws-planti.svg"
  52826. }
  52827. },
  52828. },
  52829. [
  52830. {
  52831. name: "Normal",
  52832. height: math.unit(20.5, "feet"),
  52833. default: true
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52839. {
  52840. front: {
  52841. height: math.unit(5 + 11/12, "feet"),
  52842. name: "Front",
  52843. image: {
  52844. source: "./media/characters/carina/front.svg",
  52845. extra: 1720/1449,
  52846. bottom: 14/1734
  52847. }
  52848. },
  52849. back: {
  52850. height: math.unit(5 + 11/12, "feet"),
  52851. name: "Back",
  52852. image: {
  52853. source: "./media/characters/carina/back.svg",
  52854. extra: 1493/1445,
  52855. bottom: 17/1510
  52856. }
  52857. },
  52858. paw: {
  52859. height: math.unit(0.92, "feet"),
  52860. name: "Paw",
  52861. image: {
  52862. source: "./media/characters/carina/paw.svg"
  52863. }
  52864. },
  52865. },
  52866. [
  52867. {
  52868. name: "Normal",
  52869. height: math.unit(5 + 11/12, "feet"),
  52870. default: true
  52871. },
  52872. ]
  52873. ))
  52874. characterMakers.push(() => makeCharacter(
  52875. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52876. {
  52877. normal_front: {
  52878. height: math.unit(4.88, "meters"),
  52879. name: "Front",
  52880. image: {
  52881. source: "./media/characters/maya/normal-front.svg",
  52882. extra: 1222/1145,
  52883. bottom: 57/1279
  52884. },
  52885. form: "normal",
  52886. default: true
  52887. },
  52888. monstrous_front: {
  52889. height: math.unit(10, "meters"),
  52890. name: "Front",
  52891. image: {
  52892. source: "./media/characters/maya/monstrous-front.svg",
  52893. extra: 1523/1109,
  52894. bottom: 113/1636
  52895. },
  52896. form: "monstrous",
  52897. extraAttributes: {
  52898. "swallowSize": {
  52899. name: "Tailmaw Bite Size",
  52900. power: 3,
  52901. type: "volume",
  52902. base: math.unit(43000, "liters")
  52903. },
  52904. }
  52905. },
  52906. taur_front: {
  52907. height: math.unit(10, "meters"),
  52908. name: "Front",
  52909. image: {
  52910. source: "./media/characters/maya/taur-front.svg",
  52911. extra: 743/506,
  52912. bottom: 101/844
  52913. },
  52914. form: "taur",
  52915. },
  52916. },
  52917. [
  52918. {
  52919. name: "Normal",
  52920. height: math.unit(4.88, "meters"),
  52921. default: true,
  52922. form: "normal"
  52923. },
  52924. {
  52925. name: "Macro",
  52926. height: math.unit(38.1, "meters"),
  52927. form: "normal"
  52928. },
  52929. {
  52930. name: "Macro+",
  52931. height: math.unit(152.4, "meters"),
  52932. form: "normal"
  52933. },
  52934. {
  52935. name: "Macro++",
  52936. height: math.unit(16.09, "km"),
  52937. form: "normal"
  52938. },
  52939. {
  52940. name: "Mega-macro",
  52941. height: math.unit(700, "megameters"),
  52942. form: "normal"
  52943. },
  52944. {
  52945. name: "Satiated",
  52946. height: math.unit(10, "meters"),
  52947. default: true,
  52948. form: "monstrous"
  52949. },
  52950. {
  52951. name: "Hungry",
  52952. height: math.unit(75, "meters"),
  52953. form: "monstrous"
  52954. },
  52955. {
  52956. name: "Ravenous",
  52957. height: math.unit(500, "meters"),
  52958. form: "monstrous"
  52959. },
  52960. {
  52961. name: "\"Normal\"",
  52962. height: math.unit(10, "meters"),
  52963. form: "taur"
  52964. },
  52965. {
  52966. name: "Macro",
  52967. height: math.unit(50, "meters"),
  52968. form: "taur"
  52969. },
  52970. ],
  52971. {
  52972. "normal": {
  52973. name: "Normal",
  52974. default: true
  52975. },
  52976. "monstrous": {
  52977. name: "Monstrous",
  52978. },
  52979. "taur": {
  52980. name: "Taur",
  52981. },
  52982. }
  52983. ))
  52984. characterMakers.push(() => makeCharacter(
  52985. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52986. {
  52987. front: {
  52988. height: math.unit(6 + 2/12, "feet"),
  52989. weight: math.unit(500, "lb"),
  52990. preyCapacity: math.unit(4, "people"),
  52991. name: "Front",
  52992. image: {
  52993. source: "./media/characters/yepir/front.svg"
  52994. }
  52995. },
  52996. side: {
  52997. height: math.unit(6 + 2/12, "feet"),
  52998. weight: math.unit(500, "lb"),
  52999. preyCapacity: math.unit(4, "people"),
  53000. name: "Side",
  53001. image: {
  53002. source: "./media/characters/yepir/side.svg"
  53003. }
  53004. },
  53005. paw: {
  53006. height: math.unit(1.05, "feet"),
  53007. name: "Paw",
  53008. image: {
  53009. source: "./media/characters/yepir/paw.svg"
  53010. }
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Normal",
  53016. height: math.unit(6 + 2/12, "feet"),
  53017. default: true
  53018. },
  53019. ]
  53020. ))
  53021. characterMakers.push(() => makeCharacter(
  53022. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53023. {
  53024. front: {
  53025. height: math.unit(5 + 4/12, "feet"),
  53026. name: "Front",
  53027. image: {
  53028. source: "./media/characters/russec/front.svg",
  53029. extra: 1926/1626,
  53030. bottom: 72/1998
  53031. }
  53032. },
  53033. back: {
  53034. height: math.unit(5 + 4/12, "feet"),
  53035. name: "Back",
  53036. image: {
  53037. source: "./media/characters/russec/back.svg",
  53038. extra: 1910/1591,
  53039. bottom: 48/1958
  53040. }
  53041. },
  53042. },
  53043. [
  53044. {
  53045. name: "Small",
  53046. height: math.unit(5 + 4/12, "feet")
  53047. },
  53048. {
  53049. name: "Normal",
  53050. height: math.unit(72, "feet"),
  53051. default: true
  53052. },
  53053. ]
  53054. ))
  53055. characterMakers.push(() => makeCharacter(
  53056. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53057. {
  53058. side: {
  53059. height: math.unit(12, "feet"),
  53060. name: "Side",
  53061. image: {
  53062. source: "./media/characters/cianus/side.svg",
  53063. extra: 808/526,
  53064. bottom: 61/869
  53065. }
  53066. },
  53067. },
  53068. [
  53069. {
  53070. name: "Normal",
  53071. height: math.unit(12, "feet"),
  53072. default: true
  53073. },
  53074. ]
  53075. ))
  53076. characterMakers.push(() => makeCharacter(
  53077. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53078. {
  53079. front: {
  53080. height: math.unit(9 + 6/12, "feet"),
  53081. weight: math.unit(300, "lb"),
  53082. name: "Front",
  53083. image: {
  53084. source: "./media/characters/ahab/front.svg",
  53085. extra: 1897/1868,
  53086. bottom: 121/2018
  53087. }
  53088. },
  53089. frontNsfw: {
  53090. height: math.unit(9 + 6/12, "feet"),
  53091. weight: math.unit(300, "lb"),
  53092. name: "Front-nsfw",
  53093. image: {
  53094. source: "./media/characters/ahab/front-nsfw.svg",
  53095. extra: 1897/1868,
  53096. bottom: 121/2018
  53097. }
  53098. },
  53099. },
  53100. [
  53101. {
  53102. name: "Normal",
  53103. height: math.unit(9 + 6/12, "feet")
  53104. },
  53105. {
  53106. name: "Macro",
  53107. height: math.unit(657, "feet"),
  53108. default: true
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53114. {
  53115. front: {
  53116. height: math.unit(2.69, "meters"),
  53117. weight: math.unit(132, "kg"),
  53118. name: "Front",
  53119. image: {
  53120. source: "./media/characters/aarkus/front.svg",
  53121. extra: 1400/1231,
  53122. bottom: 34/1434
  53123. }
  53124. },
  53125. back: {
  53126. height: math.unit(2.69, "meters"),
  53127. weight: math.unit(132, "kg"),
  53128. name: "Back",
  53129. image: {
  53130. source: "./media/characters/aarkus/back.svg",
  53131. extra: 1381/1218,
  53132. bottom: 30/1411
  53133. }
  53134. },
  53135. frontNsfw: {
  53136. height: math.unit(2.69, "meters"),
  53137. weight: math.unit(132, "kg"),
  53138. name: "Front (NSFW)",
  53139. image: {
  53140. source: "./media/characters/aarkus/front-nsfw.svg",
  53141. extra: 1400/1231,
  53142. bottom: 34/1434
  53143. }
  53144. },
  53145. foot: {
  53146. height: math.unit(1.45, "feet"),
  53147. name: "Foot",
  53148. image: {
  53149. source: "./media/characters/aarkus/foot.svg"
  53150. }
  53151. },
  53152. head: {
  53153. height: math.unit(2.85, "feet"),
  53154. name: "Head",
  53155. image: {
  53156. source: "./media/characters/aarkus/head.svg"
  53157. }
  53158. },
  53159. headAlt: {
  53160. height: math.unit(3.07, "feet"),
  53161. name: "Head (Alt)",
  53162. image: {
  53163. source: "./media/characters/aarkus/head-alt.svg"
  53164. }
  53165. },
  53166. mouth: {
  53167. height: math.unit(1.25, "feet"),
  53168. name: "Mouth",
  53169. image: {
  53170. source: "./media/characters/aarkus/mouth.svg"
  53171. }
  53172. },
  53173. dick: {
  53174. height: math.unit(1.77, "feet"),
  53175. name: "Dick",
  53176. image: {
  53177. source: "./media/characters/aarkus/dick.svg"
  53178. }
  53179. },
  53180. },
  53181. [
  53182. {
  53183. name: "Normal",
  53184. height: math.unit(2.69, "meters"),
  53185. default: true
  53186. },
  53187. {
  53188. name: "Macro",
  53189. height: math.unit(269, "meters")
  53190. },
  53191. {
  53192. name: "Macro+",
  53193. height: math.unit(672.5, "meters")
  53194. },
  53195. {
  53196. name: "Megamacro",
  53197. height: math.unit(2.017, "km")
  53198. },
  53199. ]
  53200. ))
  53201. characterMakers.push(() => makeCharacter(
  53202. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53203. {
  53204. front: {
  53205. height: math.unit(23.47, "cm"),
  53206. weight: math.unit(600, "grams"),
  53207. name: "Front",
  53208. image: {
  53209. source: "./media/characters/diode/front.svg",
  53210. extra: 1778/1396,
  53211. bottom: 95/1873
  53212. }
  53213. },
  53214. side: {
  53215. height: math.unit(23.47, "cm"),
  53216. weight: math.unit(600, "grams"),
  53217. name: "Side",
  53218. image: {
  53219. source: "./media/characters/diode/side.svg",
  53220. extra: 1831/1404,
  53221. bottom: 86/1917
  53222. }
  53223. },
  53224. wings: {
  53225. height: math.unit(0.683, "feet"),
  53226. name: "Wings",
  53227. image: {
  53228. source: "./media/characters/diode/wings.svg"
  53229. }
  53230. },
  53231. },
  53232. [
  53233. {
  53234. name: "Normal",
  53235. height: math.unit(23.47, "cm"),
  53236. default: true
  53237. },
  53238. ]
  53239. ))
  53240. characterMakers.push(() => makeCharacter(
  53241. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53242. {
  53243. front: {
  53244. height: math.unit(6 + 3/12, "feet"),
  53245. weight: math.unit(250, "lb"),
  53246. name: "Front",
  53247. image: {
  53248. source: "./media/characters/reika/front.svg",
  53249. extra: 1120/1078,
  53250. bottom: 86/1206
  53251. }
  53252. },
  53253. },
  53254. [
  53255. {
  53256. name: "Normal",
  53257. height: math.unit(6 + 3/12, "feet"),
  53258. default: true
  53259. },
  53260. ]
  53261. ))
  53262. characterMakers.push(() => makeCharacter(
  53263. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53264. {
  53265. front: {
  53266. height: math.unit(16 + 8/12, "feet"),
  53267. weight: math.unit(9000, "lb"),
  53268. name: "Front",
  53269. image: {
  53270. source: "./media/characters/lokuto-takama/front.svg",
  53271. extra: 1774/1632,
  53272. bottom: 147/1921
  53273. },
  53274. extraAttributes: {
  53275. "bustWidth": {
  53276. name: "Bust Width",
  53277. power: 1,
  53278. type: "length",
  53279. base: math.unit(2.4, "meters")
  53280. },
  53281. "breastWeight": {
  53282. name: "Breast Weight",
  53283. power: 3,
  53284. type: "mass",
  53285. base: math.unit(1000, "kg")
  53286. },
  53287. }
  53288. },
  53289. },
  53290. [
  53291. {
  53292. name: "Normal",
  53293. height: math.unit(16 + 8/12, "feet"),
  53294. default: true
  53295. },
  53296. ]
  53297. ))
  53298. characterMakers.push(() => makeCharacter(
  53299. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53300. {
  53301. front: {
  53302. height: math.unit(10, "cm"),
  53303. weight: math.unit(850, "grams"),
  53304. name: "Front",
  53305. image: {
  53306. source: "./media/characters/owak-bone/front.svg",
  53307. extra: 1965/1801,
  53308. bottom: 31/1996
  53309. }
  53310. },
  53311. },
  53312. [
  53313. {
  53314. name: "Normal",
  53315. height: math.unit(10, "cm"),
  53316. default: true
  53317. },
  53318. ]
  53319. ))
  53320. characterMakers.push(() => makeCharacter(
  53321. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53322. {
  53323. front: {
  53324. height: math.unit(2 + 6/12, "feet"),
  53325. weight: math.unit(9, "lb"),
  53326. name: "Front",
  53327. image: {
  53328. source: "./media/characters/muffin/front.svg",
  53329. extra: 1220/1195,
  53330. bottom: 84/1304
  53331. }
  53332. },
  53333. },
  53334. [
  53335. {
  53336. name: "Normal",
  53337. height: math.unit(2 + 6/12, "feet"),
  53338. default: true
  53339. },
  53340. ]
  53341. ))
  53342. characterMakers.push(() => makeCharacter(
  53343. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53344. {
  53345. front: {
  53346. height: math.unit(7, "feet"),
  53347. name: "Front",
  53348. image: {
  53349. source: "./media/characters/chimera/front.svg",
  53350. extra: 1752/1614,
  53351. bottom: 68/1820
  53352. }
  53353. },
  53354. },
  53355. [
  53356. {
  53357. name: "Normal",
  53358. height: math.unit(7, "feet")
  53359. },
  53360. {
  53361. name: "Gigamacro",
  53362. height: math.unit(2.9, "gigameters"),
  53363. default: true
  53364. },
  53365. {
  53366. name: "Universal",
  53367. height: math.unit(1.56e26, "yottameters")
  53368. },
  53369. ]
  53370. ))
  53371. characterMakers.push(() => makeCharacter(
  53372. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53373. {
  53374. front: {
  53375. height: math.unit(3, "feet"),
  53376. weight: math.unit(20, "lb"),
  53377. name: "Front",
  53378. image: {
  53379. source: "./media/characters/kit-fennec-fox/front.svg",
  53380. extra: 1027/932,
  53381. bottom: 16/1043
  53382. }
  53383. },
  53384. back: {
  53385. height: math.unit(3, "feet"),
  53386. weight: math.unit(20, "lb"),
  53387. name: "Back",
  53388. image: {
  53389. source: "./media/characters/kit-fennec-fox/back.svg",
  53390. extra: 1027/932,
  53391. bottom: 16/1043
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(3, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53405. {
  53406. front: {
  53407. height: math.unit(167, "cm"),
  53408. name: "Front",
  53409. image: {
  53410. source: "./media/characters/blue-otter/front.svg",
  53411. extra: 1951/1920,
  53412. bottom: 31/1982
  53413. }
  53414. },
  53415. },
  53416. [
  53417. {
  53418. name: "Otter-Sized",
  53419. height: math.unit(100, "cm")
  53420. },
  53421. {
  53422. name: "Normal",
  53423. height: math.unit(167, "cm"),
  53424. default: true
  53425. },
  53426. ]
  53427. ))
  53428. characterMakers.push(() => makeCharacter(
  53429. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53430. {
  53431. front: {
  53432. height: math.unit(4 + 4/12, "feet"),
  53433. name: "Front",
  53434. image: {
  53435. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53436. extra: 1072/1067,
  53437. bottom: 117/1189
  53438. }
  53439. },
  53440. back: {
  53441. height: math.unit(4 + 4/12, "feet"),
  53442. name: "Back",
  53443. image: {
  53444. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53445. extra: 1135/1129,
  53446. bottom: 57/1192
  53447. }
  53448. },
  53449. head: {
  53450. height: math.unit(1.77, "feet"),
  53451. name: "Head",
  53452. image: {
  53453. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53454. }
  53455. },
  53456. },
  53457. [
  53458. {
  53459. name: "Normal",
  53460. height: math.unit(4 + 4/12, "feet"),
  53461. default: true
  53462. },
  53463. ]
  53464. ))
  53465. characterMakers.push(() => makeCharacter(
  53466. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53467. {
  53468. front: {
  53469. height: math.unit(2, "inches"),
  53470. name: "Front",
  53471. image: {
  53472. source: "./media/characters/carley-hartford/front.svg",
  53473. extra: 1035/988,
  53474. bottom: 23/1058
  53475. }
  53476. },
  53477. back: {
  53478. height: math.unit(2, "inches"),
  53479. name: "Back",
  53480. image: {
  53481. source: "./media/characters/carley-hartford/back.svg",
  53482. extra: 1035/988,
  53483. bottom: 23/1058
  53484. }
  53485. },
  53486. dressed: {
  53487. height: math.unit(2, "inches"),
  53488. name: "Dressed",
  53489. image: {
  53490. source: "./media/characters/carley-hartford/dressed.svg",
  53491. extra: 651/620,
  53492. bottom: 0/651
  53493. }
  53494. },
  53495. },
  53496. [
  53497. {
  53498. name: "Micro",
  53499. height: math.unit(2, "inches"),
  53500. default: true
  53501. },
  53502. {
  53503. name: "Macro",
  53504. height: math.unit(6 + 3/12, "feet")
  53505. },
  53506. ]
  53507. ))
  53508. characterMakers.push(() => makeCharacter(
  53509. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53510. {
  53511. front: {
  53512. height: math.unit(2 + 3/12, "feet"),
  53513. weight: math.unit(15 + 7/16, "lb"),
  53514. name: "Front",
  53515. image: {
  53516. source: "./media/characters/duke/front.svg",
  53517. extra: 910/815,
  53518. bottom: 30/940
  53519. }
  53520. },
  53521. },
  53522. [
  53523. {
  53524. name: "Normal",
  53525. height: math.unit(2 + 3/12, "feet"),
  53526. default: true
  53527. },
  53528. ]
  53529. ))
  53530. characterMakers.push(() => makeCharacter(
  53531. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53532. {
  53533. front: {
  53534. height: math.unit(5 + 4/12, "feet"),
  53535. weight: math.unit(156, "lb"),
  53536. name: "Front",
  53537. image: {
  53538. source: "./media/characters/dein/front.svg",
  53539. extra: 855/815,
  53540. bottom: 48/903
  53541. }
  53542. },
  53543. side: {
  53544. height: math.unit(5 + 4/12, "feet"),
  53545. weight: math.unit(156, "lb"),
  53546. name: "side",
  53547. image: {
  53548. source: "./media/characters/dein/side.svg",
  53549. extra: 846/803,
  53550. bottom: 25/871
  53551. }
  53552. },
  53553. maw: {
  53554. height: math.unit(1.45, "feet"),
  53555. name: "Maw",
  53556. image: {
  53557. source: "./media/characters/dein/maw.svg"
  53558. }
  53559. },
  53560. },
  53561. [
  53562. {
  53563. name: "Ferret Sized",
  53564. height: math.unit(2 + 5/12, "feet")
  53565. },
  53566. {
  53567. name: "Normal",
  53568. height: math.unit(5 + 4/12, "feet"),
  53569. default: true
  53570. },
  53571. ]
  53572. ))
  53573. characterMakers.push(() => makeCharacter(
  53574. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53575. {
  53576. front: {
  53577. height: math.unit(84 + 8/12, "feet"),
  53578. weight: math.unit(942180, "lb"),
  53579. name: "Front",
  53580. image: {
  53581. source: "./media/characters/daurine-arima/front.svg",
  53582. extra: 1989/1782,
  53583. bottom: 37/2026
  53584. }
  53585. },
  53586. side: {
  53587. height: math.unit(84 + 8/12, "feet"),
  53588. weight: math.unit(942180, "lb"),
  53589. name: "Side",
  53590. image: {
  53591. source: "./media/characters/daurine-arima/side.svg",
  53592. extra: 1997/1790,
  53593. bottom: 21/2018
  53594. }
  53595. },
  53596. back: {
  53597. height: math.unit(84 + 8/12, "feet"),
  53598. weight: math.unit(942180, "lb"),
  53599. name: "Back",
  53600. image: {
  53601. source: "./media/characters/daurine-arima/back.svg",
  53602. extra: 1992/1800,
  53603. bottom: 12/2004
  53604. }
  53605. },
  53606. head: {
  53607. height: math.unit(15.5, "feet"),
  53608. name: "Head",
  53609. image: {
  53610. source: "./media/characters/daurine-arima/head.svg"
  53611. }
  53612. },
  53613. headAlt: {
  53614. height: math.unit(19.19, "feet"),
  53615. name: "Head (Alt)",
  53616. image: {
  53617. source: "./media/characters/daurine-arima/head-alt.svg"
  53618. }
  53619. },
  53620. },
  53621. [
  53622. {
  53623. name: "Minimum height",
  53624. height: math.unit(8 + 10/12, "feet")
  53625. },
  53626. {
  53627. name: "Comfort height",
  53628. height: math.unit(19 + 6 /12, "feet")
  53629. },
  53630. {
  53631. name: "\"Normal\" height",
  53632. height: math.unit(28 + 10/12, "feet")
  53633. },
  53634. {
  53635. name: "Base height",
  53636. height: math.unit(84 + 8/12, "feet"),
  53637. default: true
  53638. },
  53639. {
  53640. name: "Mini-macro",
  53641. height: math.unit(2360, "feet")
  53642. },
  53643. {
  53644. name: "Macro",
  53645. height: math.unit(10, "miles")
  53646. },
  53647. {
  53648. name: "Goddess",
  53649. height: math.unit(9.99e40, "yottameters")
  53650. },
  53651. ]
  53652. ))
  53653. characterMakers.push(() => makeCharacter(
  53654. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53655. {
  53656. front: {
  53657. height: math.unit(2.3, "meters"),
  53658. name: "Front",
  53659. image: {
  53660. source: "./media/characters/cilenomon/front.svg",
  53661. extra: 1963/1778,
  53662. bottom: 54/2017
  53663. }
  53664. },
  53665. },
  53666. [
  53667. {
  53668. name: "Normal",
  53669. height: math.unit(2.3, "meters"),
  53670. default: true
  53671. },
  53672. {
  53673. name: "Big",
  53674. height: math.unit(5, "meters")
  53675. },
  53676. {
  53677. name: "Macro",
  53678. height: math.unit(30, "meters")
  53679. },
  53680. {
  53681. name: "True",
  53682. height: math.unit(1, "universe")
  53683. },
  53684. ]
  53685. ))
  53686. characterMakers.push(() => makeCharacter(
  53687. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53688. {
  53689. front: {
  53690. height: math.unit(5, "feet"),
  53691. name: "Front",
  53692. image: {
  53693. source: "./media/characters/sen-mink/front.svg",
  53694. extra: 1727/1675,
  53695. bottom: 35/1762
  53696. }
  53697. },
  53698. },
  53699. [
  53700. {
  53701. name: "Normal",
  53702. height: math.unit(5, "feet"),
  53703. default: true
  53704. },
  53705. ]
  53706. ))
  53707. characterMakers.push(() => makeCharacter(
  53708. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53709. {
  53710. front: {
  53711. height: math.unit(5.42999, "feet"),
  53712. weight: math.unit(100, "lb"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/ophois/front.svg",
  53716. extra: 1429/1286,
  53717. bottom: 60/1489
  53718. }
  53719. },
  53720. },
  53721. [
  53722. {
  53723. name: "Normal",
  53724. height: math.unit(5.42999, "feet"),
  53725. default: true
  53726. },
  53727. ]
  53728. ))
  53729. characterMakers.push(() => makeCharacter(
  53730. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53731. {
  53732. front: {
  53733. height: math.unit(2, "meters"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/riley/front.svg",
  53737. extra: 1779/1754,
  53738. bottom: 139/1918
  53739. }
  53740. },
  53741. },
  53742. [
  53743. {
  53744. name: "Normal",
  53745. height: math.unit(2, "meters"),
  53746. default: true
  53747. },
  53748. ]
  53749. ))
  53750. characterMakers.push(() => makeCharacter(
  53751. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53752. {
  53753. front: {
  53754. height: math.unit(6 + 2/12, "feet"),
  53755. weight: math.unit(195, "lb"),
  53756. preyCapacity: math.unit(6, "people"),
  53757. name: "Front",
  53758. image: {
  53759. source: "./media/characters/shuken-flash/front.svg",
  53760. extra: 1905/1739,
  53761. bottom: 65/1970
  53762. }
  53763. },
  53764. back: {
  53765. height: math.unit(6 + 2/12, "feet"),
  53766. weight: math.unit(195, "lb"),
  53767. preyCapacity: math.unit(6, "people"),
  53768. name: "Back",
  53769. image: {
  53770. source: "./media/characters/shuken-flash/back.svg",
  53771. extra: 1912/1751,
  53772. bottom: 13/1925
  53773. }
  53774. },
  53775. },
  53776. [
  53777. {
  53778. name: "Normal",
  53779. height: math.unit(6 + 2/12, "feet"),
  53780. default: true
  53781. },
  53782. ]
  53783. ))
  53784. characterMakers.push(() => makeCharacter(
  53785. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53786. {
  53787. front: {
  53788. height: math.unit(5 + 9/12, "feet"),
  53789. weight: math.unit(150, "lb"),
  53790. name: "Front",
  53791. image: {
  53792. source: "./media/characters/plat/front.svg",
  53793. extra: 1816/1703,
  53794. bottom: 43/1859
  53795. }
  53796. },
  53797. side: {
  53798. height: math.unit(5 + 9/12, "feet"),
  53799. weight: math.unit(300, "lb"),
  53800. name: "Side",
  53801. image: {
  53802. source: "./media/characters/plat/side.svg",
  53803. extra: 1824/1699,
  53804. bottom: 18/1842
  53805. }
  53806. },
  53807. },
  53808. [
  53809. {
  53810. name: "Normal",
  53811. height: math.unit(5 + 9/12, "feet"),
  53812. default: true
  53813. },
  53814. ]
  53815. ))
  53816. characterMakers.push(() => makeCharacter(
  53817. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53818. {
  53819. front: {
  53820. height: math.unit(9, "feet"),
  53821. weight: math.unit(1800, "lb"),
  53822. name: "Front",
  53823. image: {
  53824. source: "./media/characters/elaine/front.svg",
  53825. extra: 1833/1354,
  53826. bottom: 25/1858
  53827. }
  53828. },
  53829. back: {
  53830. height: math.unit(8.8, "feet"),
  53831. weight: math.unit(1800, "lb"),
  53832. name: "Back",
  53833. image: {
  53834. source: "./media/characters/elaine/back.svg",
  53835. extra: 1641/1233,
  53836. bottom: 53/1694
  53837. }
  53838. },
  53839. },
  53840. [
  53841. {
  53842. name: "Normal",
  53843. height: math.unit(9, "feet"),
  53844. default: true
  53845. },
  53846. ]
  53847. ))
  53848. characterMakers.push(() => makeCharacter(
  53849. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53850. {
  53851. front: {
  53852. height: math.unit(17 + 9/12, "feet"),
  53853. weight: math.unit(8000, "lb"),
  53854. name: "Front",
  53855. image: {
  53856. source: "./media/characters/vera-raven/front.svg",
  53857. extra: 1457/1412,
  53858. bottom: 121/1578
  53859. }
  53860. },
  53861. side: {
  53862. height: math.unit(17 + 9/12, "feet"),
  53863. weight: math.unit(8000, "lb"),
  53864. name: "Side",
  53865. image: {
  53866. source: "./media/characters/vera-raven/side.svg",
  53867. extra: 1510/1464,
  53868. bottom: 54/1564
  53869. }
  53870. },
  53871. },
  53872. [
  53873. {
  53874. name: "Normal",
  53875. height: math.unit(17 + 9/12, "feet"),
  53876. default: true
  53877. },
  53878. ]
  53879. ))
  53880. characterMakers.push(() => makeCharacter(
  53881. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53882. {
  53883. dressed: {
  53884. height: math.unit(6 + 9/12, "feet"),
  53885. name: "Dressed",
  53886. image: {
  53887. source: "./media/characters/nakisha/dressed.svg",
  53888. extra: 1909/1757,
  53889. bottom: 48/1957
  53890. }
  53891. },
  53892. nude: {
  53893. height: math.unit(6 + 9/12, "feet"),
  53894. name: "Nude",
  53895. image: {
  53896. source: "./media/characters/nakisha/nude.svg",
  53897. extra: 1917/1765,
  53898. bottom: 34/1951
  53899. }
  53900. },
  53901. },
  53902. [
  53903. {
  53904. name: "Normal",
  53905. height: math.unit(6 + 9/12, "feet"),
  53906. default: true
  53907. },
  53908. ]
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(87, "meters"),
  53915. name: "Front",
  53916. image: {
  53917. source: "./media/characters/serafin/front.svg",
  53918. extra: 1919/1776,
  53919. bottom: 65/1984
  53920. }
  53921. },
  53922. },
  53923. [
  53924. {
  53925. name: "Normal",
  53926. height: math.unit(87, "meters"),
  53927. default: true
  53928. },
  53929. ]
  53930. ))
  53931. characterMakers.push(() => makeCharacter(
  53932. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53933. {
  53934. front: {
  53935. height: math.unit(6, "feet"),
  53936. weight: math.unit(200, "lb"),
  53937. name: "Front",
  53938. image: {
  53939. source: "./media/characters/poptart/front.svg",
  53940. extra: 615/583,
  53941. bottom: 23/638
  53942. }
  53943. },
  53944. back: {
  53945. height: math.unit(6, "feet"),
  53946. weight: math.unit(200, "lb"),
  53947. name: "Back",
  53948. image: {
  53949. source: "./media/characters/poptart/back.svg",
  53950. extra: 617/584,
  53951. bottom: 22/639
  53952. }
  53953. },
  53954. frontNsfw: {
  53955. height: math.unit(6, "feet"),
  53956. weight: math.unit(200, "lb"),
  53957. name: "Front (NSFW)",
  53958. image: {
  53959. source: "./media/characters/poptart/front-nsfw.svg",
  53960. extra: 615/583,
  53961. bottom: 23/638
  53962. }
  53963. },
  53964. backNsfw: {
  53965. height: math.unit(6, "feet"),
  53966. weight: math.unit(200, "lb"),
  53967. name: "Back (NSFW)",
  53968. image: {
  53969. source: "./media/characters/poptart/back-nsfw.svg",
  53970. extra: 617/584,
  53971. bottom: 22/639
  53972. }
  53973. },
  53974. hand: {
  53975. height: math.unit(1.14, "feet"),
  53976. name: "Hand",
  53977. image: {
  53978. source: "./media/characters/poptart/hand.svg"
  53979. }
  53980. },
  53981. foot: {
  53982. height: math.unit(1.5, "feet"),
  53983. name: "Foot",
  53984. image: {
  53985. source: "./media/characters/poptart/foot.svg"
  53986. }
  53987. },
  53988. },
  53989. [
  53990. {
  53991. name: "Normal",
  53992. height: math.unit(6, "feet"),
  53993. default: true
  53994. },
  53995. {
  53996. name: "Grande",
  53997. height: math.unit(350, "feet")
  53998. },
  53999. {
  54000. name: "Massif",
  54001. height: math.unit(967, "feet")
  54002. },
  54003. ]
  54004. ))
  54005. characterMakers.push(() => makeCharacter(
  54006. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54007. {
  54008. hyenaSide: {
  54009. height: math.unit(120, "cm"),
  54010. weight: math.unit(120, "lb"),
  54011. name: "Side",
  54012. image: {
  54013. source: "./media/characters/trance/hyena-side.svg",
  54014. extra: 998/904,
  54015. bottom: 76/1074
  54016. }
  54017. },
  54018. },
  54019. [
  54020. {
  54021. name: "Normal",
  54022. height: math.unit(120, "cm"),
  54023. default: true
  54024. },
  54025. {
  54026. name: "Dire",
  54027. height: math.unit(230, "cm")
  54028. },
  54029. {
  54030. name: "Macro",
  54031. height: math.unit(37, "feet")
  54032. },
  54033. ]
  54034. ))
  54035. characterMakers.push(() => makeCharacter(
  54036. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54037. {
  54038. front: {
  54039. height: math.unit(6 + 3/12, "feet"),
  54040. name: "Front",
  54041. image: {
  54042. source: "./media/characters/michael-berretta/front.svg",
  54043. extra: 515/494,
  54044. bottom: 20/535
  54045. }
  54046. },
  54047. back: {
  54048. height: math.unit(6 + 3/12, "feet"),
  54049. name: "Back",
  54050. image: {
  54051. source: "./media/characters/michael-berretta/back.svg",
  54052. extra: 520/497,
  54053. bottom: 21/541
  54054. }
  54055. },
  54056. frontNsfw: {
  54057. height: math.unit(6 + 3/12, "feet"),
  54058. name: "Front (NSFW)",
  54059. image: {
  54060. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54061. extra: 515/494,
  54062. bottom: 20/535
  54063. }
  54064. },
  54065. dick: {
  54066. height: math.unit(1, "feet"),
  54067. name: "Dick",
  54068. image: {
  54069. source: "./media/characters/michael-berretta/dick.svg"
  54070. }
  54071. },
  54072. },
  54073. [
  54074. {
  54075. name: "Normal",
  54076. height: math.unit(6 + 3/12, "feet"),
  54077. default: true
  54078. },
  54079. {
  54080. name: "Big",
  54081. height: math.unit(12, "feet")
  54082. },
  54083. {
  54084. name: "Macro",
  54085. height: math.unit(187.5, "feet")
  54086. },
  54087. ]
  54088. ))
  54089. characterMakers.push(() => makeCharacter(
  54090. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54091. {
  54092. front: {
  54093. height: math.unit(9 + 9/12, "feet"),
  54094. weight: math.unit(1244, "lb"),
  54095. name: "Front",
  54096. image: {
  54097. source: "./media/characters/stella-edgecomb/front.svg",
  54098. extra: 1835/1706,
  54099. bottom: 49/1884
  54100. }
  54101. },
  54102. pen: {
  54103. height: math.unit(0.95, "feet"),
  54104. name: "Pen",
  54105. image: {
  54106. source: "./media/characters/stella-edgecomb/pen.svg"
  54107. }
  54108. },
  54109. },
  54110. [
  54111. {
  54112. name: "Cozy Bear",
  54113. height: math.unit(0.5, "inches")
  54114. },
  54115. {
  54116. name: "Normal",
  54117. height: math.unit(9 + 9/12, "feet"),
  54118. default: true
  54119. },
  54120. {
  54121. name: "Giga Bear",
  54122. height: math.unit(1, "mile")
  54123. },
  54124. {
  54125. name: "Great Bear",
  54126. height: math.unit(53, "miles")
  54127. },
  54128. {
  54129. name: "Goddess Bear",
  54130. height: math.unit(40000, "miles")
  54131. },
  54132. {
  54133. name: "Sun Bear",
  54134. height: math.unit(900000, "miles")
  54135. },
  54136. ]
  54137. ))
  54138. characterMakers.push(() => makeCharacter(
  54139. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54140. {
  54141. anthroFront: {
  54142. height: math.unit(556, "cm"),
  54143. weight: math.unit(2650, "kg"),
  54144. preyCapacity: math.unit(3, "people"),
  54145. name: "Front",
  54146. image: {
  54147. source: "./media/characters/ash´iika/front.svg",
  54148. extra: 710/673,
  54149. bottom: 15/725
  54150. },
  54151. form: "anthro",
  54152. default: true
  54153. },
  54154. anthroSide: {
  54155. height: math.unit(556, "cm"),
  54156. weight: math.unit(2650, "kg"),
  54157. preyCapacity: math.unit(3, "people"),
  54158. name: "Side",
  54159. image: {
  54160. source: "./media/characters/ash´iika/side.svg",
  54161. extra: 696/676,
  54162. bottom: 13/709
  54163. },
  54164. form: "anthro"
  54165. },
  54166. anthroDressed: {
  54167. height: math.unit(556, "cm"),
  54168. weight: math.unit(2650, "kg"),
  54169. preyCapacity: math.unit(3, "people"),
  54170. name: "Dressed",
  54171. image: {
  54172. source: "./media/characters/ash´iika/dressed.svg",
  54173. extra: 710/673,
  54174. bottom: 15/725
  54175. },
  54176. form: "anthro"
  54177. },
  54178. anthroHead: {
  54179. height: math.unit(3.5, "feet"),
  54180. name: "Head",
  54181. image: {
  54182. source: "./media/characters/ash´iika/head.svg",
  54183. extra: 348/291,
  54184. bottom: 45/393
  54185. },
  54186. form: "anthro"
  54187. },
  54188. feralSide: {
  54189. height: math.unit(870, "cm"),
  54190. weight: math.unit(17500, "kg"),
  54191. preyCapacity: math.unit(15, "people"),
  54192. name: "Side",
  54193. image: {
  54194. source: "./media/characters/ash´iika/feral.svg",
  54195. extra: 595/199,
  54196. bottom: 7/602
  54197. },
  54198. form: "feral",
  54199. default: true,
  54200. },
  54201. },
  54202. [
  54203. {
  54204. name: "Normal",
  54205. height: math.unit(556, "cm"),
  54206. default: true,
  54207. form: "anthro"
  54208. },
  54209. {
  54210. name: "Macro",
  54211. height: math.unit(88, "meters"),
  54212. form: "anthro"
  54213. },
  54214. {
  54215. name: "Normal",
  54216. height: math.unit(870, "cm"),
  54217. default: true,
  54218. form: "feral"
  54219. },
  54220. {
  54221. name: "Large",
  54222. height: math.unit(25, "meters"),
  54223. form: "feral"
  54224. },
  54225. ],
  54226. {
  54227. "anthro": {
  54228. name: "Anthro",
  54229. default: true
  54230. },
  54231. "feral": {
  54232. name: "Feral",
  54233. },
  54234. }
  54235. ))
  54236. characterMakers.push(() => makeCharacter(
  54237. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54238. {
  54239. front: {
  54240. height: math.unit(10, "feet"),
  54241. weight: math.unit(800, "lb"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/yen/front.svg",
  54245. extra: 443/411,
  54246. bottom: 6/449
  54247. }
  54248. },
  54249. sleeping: {
  54250. height: math.unit(10, "feet"),
  54251. weight: math.unit(800, "lb"),
  54252. name: "Sleeping",
  54253. image: {
  54254. source: "./media/characters/yen/sleeping.svg",
  54255. extra: 470/422,
  54256. bottom: 0/470
  54257. }
  54258. },
  54259. head: {
  54260. height: math.unit(2.2, "feet"),
  54261. name: "Head",
  54262. image: {
  54263. source: "./media/characters/yen/head.svg"
  54264. }
  54265. },
  54266. headAlt: {
  54267. height: math.unit(2.1, "feet"),
  54268. name: "Head (Alt)",
  54269. image: {
  54270. source: "./media/characters/yen/head-alt.svg"
  54271. }
  54272. },
  54273. },
  54274. [
  54275. {
  54276. name: "Normal",
  54277. height: math.unit(10, "feet"),
  54278. default: true
  54279. },
  54280. ]
  54281. ))
  54282. characterMakers.push(() => makeCharacter(
  54283. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54284. {
  54285. front: {
  54286. height: math.unit(12, "feet"),
  54287. name: "Front",
  54288. image: {
  54289. source: "./media/characters/citra/front.svg",
  54290. extra: 1950/1710,
  54291. bottom: 47/1997
  54292. }
  54293. },
  54294. },
  54295. [
  54296. {
  54297. name: "Normal",
  54298. height: math.unit(12, "feet"),
  54299. default: true
  54300. },
  54301. ]
  54302. ))
  54303. characterMakers.push(() => makeCharacter(
  54304. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54305. {
  54306. side: {
  54307. height: math.unit(7 + 10/12, "feet"),
  54308. name: "Side",
  54309. image: {
  54310. source: "./media/characters/sholstim/side.svg",
  54311. extra: 786/682,
  54312. bottom: 40/826
  54313. }
  54314. },
  54315. },
  54316. [
  54317. {
  54318. name: "Normal",
  54319. height: math.unit(7 + 10/12, "feet"),
  54320. default: true
  54321. },
  54322. ]
  54323. ))
  54324. characterMakers.push(() => makeCharacter(
  54325. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54326. {
  54327. front: {
  54328. height: math.unit(3.10, "meters"),
  54329. name: "Front",
  54330. image: {
  54331. source: "./media/characters/aggyn/front.svg",
  54332. extra: 1188/963,
  54333. bottom: 24/1212
  54334. }
  54335. },
  54336. },
  54337. [
  54338. {
  54339. name: "Normal",
  54340. height: math.unit(3.10, "meters"),
  54341. default: true
  54342. },
  54343. ]
  54344. ))
  54345. characterMakers.push(() => makeCharacter(
  54346. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54347. {
  54348. front: {
  54349. height: math.unit(7 + 5/12, "feet"),
  54350. weight: math.unit(687, "lb"),
  54351. name: "Front",
  54352. image: {
  54353. source: "./media/characters/alsandair-hergenroether/front.svg",
  54354. extra: 1251/1186,
  54355. bottom: 75/1326
  54356. }
  54357. },
  54358. back: {
  54359. height: math.unit(7 + 5/12, "feet"),
  54360. weight: math.unit(687, "lb"),
  54361. name: "Back",
  54362. image: {
  54363. source: "./media/characters/alsandair-hergenroether/back.svg",
  54364. extra: 1290/1229,
  54365. bottom: 17/1307
  54366. }
  54367. },
  54368. },
  54369. [
  54370. {
  54371. name: "Max Compression",
  54372. height: math.unit(7 + 5/12, "feet"),
  54373. default: true
  54374. },
  54375. {
  54376. name: "\"Normal\"",
  54377. height: math.unit(2, "universes")
  54378. },
  54379. ]
  54380. ))
  54381. characterMakers.push(() => makeCharacter(
  54382. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54383. {
  54384. front: {
  54385. height: math.unit(4 + 1/12, "feet"),
  54386. weight: math.unit(92, "lb"),
  54387. name: "Front",
  54388. image: {
  54389. source: "./media/characters/ie/front.svg",
  54390. extra: 1585/1352,
  54391. bottom: 91/1676
  54392. }
  54393. },
  54394. },
  54395. [
  54396. {
  54397. name: "Normal",
  54398. height: math.unit(4 + 1/12, "feet"),
  54399. default: true
  54400. },
  54401. ]
  54402. ))
  54403. characterMakers.push(() => makeCharacter(
  54404. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54405. {
  54406. anthro: {
  54407. height: math.unit(6, "feet"),
  54408. weight: math.unit(150, "lb"),
  54409. name: "Front",
  54410. image: {
  54411. source: "./media/characters/willow/anthro.svg",
  54412. extra: 1073/986,
  54413. bottom: 34/1107
  54414. },
  54415. form: "anthro",
  54416. default: true
  54417. },
  54418. taur: {
  54419. height: math.unit(6, "feet"),
  54420. weight: math.unit(150, "lb"),
  54421. name: "Side",
  54422. image: {
  54423. source: "./media/characters/willow/taur.svg",
  54424. extra: 647/512,
  54425. bottom: 136/783
  54426. },
  54427. form: "taur",
  54428. default: true
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Humanoid",
  54434. height: math.unit(2.7, "meters"),
  54435. form: "anthro"
  54436. },
  54437. {
  54438. name: "Normal",
  54439. height: math.unit(9, "meters"),
  54440. form: "anthro",
  54441. default: true
  54442. },
  54443. {
  54444. name: "Humanoid",
  54445. height: math.unit(2.1, "meters"),
  54446. form: "taur"
  54447. },
  54448. {
  54449. name: "Normal",
  54450. height: math.unit(7, "meters"),
  54451. form: "taur",
  54452. default: true
  54453. },
  54454. ],
  54455. {
  54456. "anthro": {
  54457. name: "Anthro",
  54458. default: true
  54459. },
  54460. "taur": {
  54461. name: "Taur",
  54462. },
  54463. }
  54464. ))
  54465. characterMakers.push(() => makeCharacter(
  54466. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54467. {
  54468. front: {
  54469. height: math.unit(2 + 5/12, "feet"),
  54470. name: "Front",
  54471. image: {
  54472. source: "./media/characters/kyan/front.svg",
  54473. extra: 460/334,
  54474. bottom: 23/483
  54475. },
  54476. extraAttributes: {
  54477. "toeLength": {
  54478. name: "Toe Length",
  54479. power: 1,
  54480. type: "length",
  54481. base: math.unit(7, "cm")
  54482. },
  54483. "toeclawLength": {
  54484. name: "Toeclaw Length",
  54485. power: 1,
  54486. type: "length",
  54487. base: math.unit(4.7, "cm")
  54488. },
  54489. "earHeight": {
  54490. name: "Ear Height",
  54491. power: 1,
  54492. type: "length",
  54493. base: math.unit(14.1, "cm")
  54494. },
  54495. }
  54496. },
  54497. paws: {
  54498. height: math.unit(0.45, "feet"),
  54499. name: "Paws",
  54500. image: {
  54501. source: "./media/characters/kyan/paws.svg",
  54502. extra: 581/581,
  54503. bottom: 114/695
  54504. }
  54505. },
  54506. },
  54507. [
  54508. {
  54509. name: "Normal",
  54510. height: math.unit(2 + 5/12, "feet"),
  54511. default: true
  54512. },
  54513. ]
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54517. {
  54518. front: {
  54519. height: math.unit(2 + 2/3, "feet"),
  54520. name: "Front",
  54521. image: {
  54522. source: "./media/characters/xazzon/front.svg",
  54523. extra: 1109/984,
  54524. bottom: 42/1151
  54525. }
  54526. },
  54527. back: {
  54528. height: math.unit(2 + 2/3, "feet"),
  54529. name: "Back",
  54530. image: {
  54531. source: "./media/characters/xazzon/back.svg",
  54532. extra: 1095/971,
  54533. bottom: 23/1118
  54534. }
  54535. },
  54536. },
  54537. [
  54538. {
  54539. name: "Normal",
  54540. height: math.unit(2 + 2/3, "feet"),
  54541. default: true
  54542. },
  54543. ]
  54544. ))
  54545. characterMakers.push(() => makeCharacter(
  54546. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54547. {
  54548. dressed: {
  54549. height: math.unit(5 + 7/12, "feet"),
  54550. weight: math.unit(173, "lb"),
  54551. name: "Dressed",
  54552. image: {
  54553. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54554. extra: 3262/2862,
  54555. bottom: 188/3450
  54556. }
  54557. },
  54558. undressed: {
  54559. height: math.unit(5 + 7/12, "feet"),
  54560. weight: math.unit(173, "lb"),
  54561. name: "Undressed",
  54562. image: {
  54563. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54564. extra: 3262/2862,
  54565. bottom: 188/3450
  54566. }
  54567. },
  54568. },
  54569. [
  54570. {
  54571. name: "The void",
  54572. height: math.unit(7.29193e-34, "angstroms")
  54573. },
  54574. {
  54575. name: "Uh-Oh.",
  54576. height: math.unit(5.734e-7, "angstroms")
  54577. },
  54578. {
  54579. name: "Pico",
  54580. height: math.unit(0.876, "angstroms")
  54581. },
  54582. {
  54583. name: "Nano",
  54584. height: math.unit(0.000134200, "mm")
  54585. },
  54586. {
  54587. name: "Micro",
  54588. height: math.unit(0.0673020, "mm")
  54589. },
  54590. {
  54591. name: "Tiny",
  54592. height: math.unit(2.4, "mm")
  54593. },
  54594. {
  54595. name: "Actual Normal",
  54596. height: math.unit(3, "inches"),
  54597. default: true
  54598. },
  54599. {
  54600. name: "Normal",
  54601. height: math.unit(5 + 8/12, "feet")
  54602. },
  54603. {
  54604. name: "Giant",
  54605. height: math.unit(12, "feet")
  54606. },
  54607. {
  54608. name: "City Ruler",
  54609. height: math.unit(270, "meters")
  54610. },
  54611. {
  54612. name: "Giga",
  54613. height: math.unit(1117.6, "km")
  54614. },
  54615. {
  54616. name: "All-Powerful Queen",
  54617. height: math.unit(70.8, "gigameters")
  54618. },
  54619. {
  54620. name: "'Goddess'",
  54621. height: math.unit(600, "yottameters")
  54622. },
  54623. {
  54624. name: "Biggest!",
  54625. height: math.unit(4.23e5, "yottameters")
  54626. },
  54627. ]
  54628. ))
  54629. characterMakers.push(() => makeCharacter(
  54630. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54631. {
  54632. front: {
  54633. height: math.unit(8, "feet"),
  54634. weight: math.unit(300, "lb"),
  54635. name: "Front",
  54636. image: {
  54637. source: "./media/characters/khyla-shadowsong/front.svg",
  54638. extra: 861/798,
  54639. bottom: 32/893
  54640. }
  54641. },
  54642. side: {
  54643. height: math.unit(8, "feet"),
  54644. weight: math.unit(300, "lb"),
  54645. name: "Side",
  54646. image: {
  54647. source: "./media/characters/khyla-shadowsong/side.svg",
  54648. extra: 790/750,
  54649. bottom: 87/877
  54650. }
  54651. },
  54652. back: {
  54653. height: math.unit(8, "feet"),
  54654. weight: math.unit(300, "lb"),
  54655. name: "Back",
  54656. image: {
  54657. source: "./media/characters/khyla-shadowsong/back.svg",
  54658. extra: 855/808,
  54659. bottom: 14/869
  54660. }
  54661. },
  54662. head: {
  54663. height: math.unit(2.7, "feet"),
  54664. name: "Head",
  54665. image: {
  54666. source: "./media/characters/khyla-shadowsong/head.svg"
  54667. }
  54668. },
  54669. },
  54670. [
  54671. {
  54672. name: "Micro",
  54673. height: math.unit(6, "inches")
  54674. },
  54675. {
  54676. name: "Normal",
  54677. height: math.unit(8, "feet"),
  54678. default: true
  54679. },
  54680. ]
  54681. ))
  54682. characterMakers.push(() => makeCharacter(
  54683. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54684. {
  54685. hyperFront: {
  54686. height: math.unit(9 + 4/12, "feet"),
  54687. weight: math.unit(2000, "lb"),
  54688. name: "Front",
  54689. image: {
  54690. source: "./media/characters/tiden/hyper-front.svg",
  54691. extra: 400/382,
  54692. bottom: 6/406
  54693. },
  54694. form: "hyper",
  54695. },
  54696. regularFront: {
  54697. height: math.unit(7 + 10/12, "feet"),
  54698. weight: math.unit(470, "lb"),
  54699. name: "Front",
  54700. image: {
  54701. source: "./media/characters/tiden/regular-front.svg",
  54702. extra: 468/442,
  54703. bottom: 6/474
  54704. },
  54705. form: "regular",
  54706. },
  54707. },
  54708. [
  54709. {
  54710. name: "Normal",
  54711. height: math.unit(9 + 4/12, "feet"),
  54712. default: true,
  54713. form: "hyper"
  54714. },
  54715. {
  54716. name: "Normal",
  54717. height: math.unit(7 + 10/12, "feet"),
  54718. default: true,
  54719. form: "regular"
  54720. },
  54721. ],
  54722. {
  54723. "hyper": {
  54724. name: "Hyper",
  54725. default: true
  54726. },
  54727. "regular": {
  54728. name: "Regular",
  54729. },
  54730. }
  54731. ))
  54732. characterMakers.push(() => makeCharacter(
  54733. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54734. {
  54735. side: {
  54736. height: math.unit(6, "feet"),
  54737. weight: math.unit(150, "lb"),
  54738. name: "Side",
  54739. image: {
  54740. source: "./media/characters/jason-crowe/side.svg",
  54741. extra: 1771/766,
  54742. bottom: 219/1990
  54743. }
  54744. },
  54745. },
  54746. [
  54747. {
  54748. name: "Pocket Gryphon",
  54749. height: math.unit(6, "cm")
  54750. },
  54751. {
  54752. name: "Raven",
  54753. height: math.unit(60, "cm")
  54754. },
  54755. {
  54756. name: "Normal",
  54757. height: math.unit(1, "meter"),
  54758. default: true
  54759. },
  54760. ]
  54761. ))
  54762. characterMakers.push(() => makeCharacter(
  54763. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54764. {
  54765. front: {
  54766. height: math.unit(9 + 6/12, "feet"),
  54767. weight: math.unit(1100, "lb"),
  54768. name: "Front",
  54769. image: {
  54770. source: "./media/characters/django/front.svg",
  54771. extra: 1231/1136,
  54772. bottom: 34/1265
  54773. }
  54774. },
  54775. side: {
  54776. height: math.unit(9 + 6/12, "feet"),
  54777. weight: math.unit(1100, "lb"),
  54778. name: "Side",
  54779. image: {
  54780. source: "./media/characters/django/side.svg",
  54781. extra: 1267/1174,
  54782. bottom: 9/1276
  54783. }
  54784. },
  54785. },
  54786. [
  54787. {
  54788. name: "Normal",
  54789. height: math.unit(9 + 6/12, "feet"),
  54790. default: true
  54791. },
  54792. {
  54793. name: "Macro 1",
  54794. height: math.unit(50, "feet")
  54795. },
  54796. {
  54797. name: "Macro 2",
  54798. height: math.unit(500, "feet")
  54799. },
  54800. {
  54801. name: "Mega Macro",
  54802. height: math.unit(5300, "feet")
  54803. },
  54804. ]
  54805. ))
  54806. characterMakers.push(() => makeCharacter(
  54807. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54808. {
  54809. frontSfw: {
  54810. height: math.unit(120, "cm"),
  54811. weight: math.unit(15, "kg"),
  54812. name: "Front (SFW)",
  54813. image: {
  54814. source: "./media/characters/eri/front-sfw.svg",
  54815. extra: 1014/939,
  54816. bottom: 37/1051
  54817. },
  54818. form: "moth",
  54819. },
  54820. frontNsfw: {
  54821. height: math.unit(120, "cm"),
  54822. weight: math.unit(15, "kg"),
  54823. name: "Front (NSFW)",
  54824. image: {
  54825. source: "./media/characters/eri/front-nsfw.svg",
  54826. extra: 1014/939,
  54827. bottom: 37/1051
  54828. },
  54829. form: "moth",
  54830. default: true
  54831. },
  54832. egg: {
  54833. height: math.unit(10, "cm"),
  54834. name: "Egg",
  54835. image: {
  54836. source: "./media/characters/eri/egg.svg"
  54837. },
  54838. form: "egg",
  54839. default: true
  54840. },
  54841. },
  54842. [
  54843. {
  54844. name: "Normal",
  54845. height: math.unit(120, "cm"),
  54846. default: true,
  54847. form: "moth"
  54848. },
  54849. {
  54850. name: "Normal",
  54851. height: math.unit(10, "cm"),
  54852. default: true,
  54853. form: "egg"
  54854. },
  54855. ],
  54856. {
  54857. "moth": {
  54858. name: "Moth",
  54859. default: true
  54860. },
  54861. "egg": {
  54862. name: "Egg",
  54863. },
  54864. }
  54865. ))
  54866. characterMakers.push(() => makeCharacter(
  54867. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54868. {
  54869. front: {
  54870. height: math.unit(200, "feet"),
  54871. name: "Front",
  54872. image: {
  54873. source: "./media/characters/bishop-dowser/front.svg",
  54874. extra: 933/868,
  54875. bottom: 106/1039
  54876. }
  54877. },
  54878. },
  54879. [
  54880. {
  54881. name: "Giant",
  54882. height: math.unit(200, "feet"),
  54883. default: true
  54884. },
  54885. ]
  54886. ))
  54887. characterMakers.push(() => makeCharacter(
  54888. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54889. {
  54890. front: {
  54891. height: math.unit(2, "meters"),
  54892. preyCapacity: math.unit(3, "people"),
  54893. name: "Front",
  54894. image: {
  54895. source: "./media/characters/fryra/front.svg",
  54896. extra: 1025/948,
  54897. bottom: 30/1055
  54898. },
  54899. extraAttributes: {
  54900. "breastVolume": {
  54901. name: "Breast Volume",
  54902. power: 3,
  54903. type: "volume",
  54904. base: math.unit(8, "liters")
  54905. },
  54906. }
  54907. },
  54908. back: {
  54909. height: math.unit(2, "meters"),
  54910. preyCapacity: math.unit(3, "people"),
  54911. name: "Back",
  54912. image: {
  54913. source: "./media/characters/fryra/back.svg",
  54914. extra: 993/938,
  54915. bottom: 38/1031
  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. head: {
  54927. height: math.unit(1.33, "feet"),
  54928. name: "Head",
  54929. image: {
  54930. source: "./media/characters/fryra/head.svg"
  54931. }
  54932. },
  54933. maw: {
  54934. height: math.unit(0.56, "feet"),
  54935. name: "Maw",
  54936. image: {
  54937. source: "./media/characters/fryra/maw.svg"
  54938. }
  54939. },
  54940. },
  54941. [
  54942. {
  54943. name: "Micro",
  54944. height: math.unit(5, "cm")
  54945. },
  54946. {
  54947. name: "Normal",
  54948. height: math.unit(2, "meters"),
  54949. default: true
  54950. },
  54951. {
  54952. name: "Small Macro",
  54953. height: math.unit(8, "meters")
  54954. },
  54955. {
  54956. name: "Macro",
  54957. height: math.unit(50, "meters")
  54958. },
  54959. {
  54960. name: "Megamacro",
  54961. height: math.unit(1, "km")
  54962. },
  54963. {
  54964. name: "Planetary",
  54965. height: math.unit(300000, "km")
  54966. },
  54967. {
  54968. name: "Universal",
  54969. height: math.unit(250, "lightyears")
  54970. },
  54971. {
  54972. name: "Fabric of Reality",
  54973. height: math.unit(1000, "multiverses")
  54974. },
  54975. ]
  54976. ))
  54977. characterMakers.push(() => makeCharacter(
  54978. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54979. {
  54980. frontDressed: {
  54981. height: math.unit(6 + 2/12, "feet"),
  54982. name: "Front (Dressed)",
  54983. image: {
  54984. source: "./media/characters/fiera/front-dressed.svg",
  54985. extra: 1883/1793,
  54986. bottom: 70/1953
  54987. }
  54988. },
  54989. backDressed: {
  54990. height: math.unit(6 + 2/12, "feet"),
  54991. name: "Back (Dressed)",
  54992. image: {
  54993. source: "./media/characters/fiera/back-dressed.svg",
  54994. extra: 1847/1780,
  54995. bottom: 70/1917
  54996. }
  54997. },
  54998. frontNude: {
  54999. height: math.unit(6 + 2/12, "feet"),
  55000. name: "Front (Nude)",
  55001. image: {
  55002. source: "./media/characters/fiera/front-nude.svg",
  55003. extra: 1875/1785,
  55004. bottom: 66/1941
  55005. }
  55006. },
  55007. backNude: {
  55008. height: math.unit(6 + 2/12, "feet"),
  55009. name: "Back (Nude)",
  55010. image: {
  55011. source: "./media/characters/fiera/back-nude.svg",
  55012. extra: 1855/1788,
  55013. bottom: 44/1899
  55014. }
  55015. },
  55016. maw: {
  55017. height: math.unit(1.3, "feet"),
  55018. name: "Maw",
  55019. image: {
  55020. source: "./media/characters/fiera/maw.svg"
  55021. }
  55022. },
  55023. paw: {
  55024. height: math.unit(1, "feet"),
  55025. name: "Paw",
  55026. image: {
  55027. source: "./media/characters/fiera/paw.svg"
  55028. }
  55029. },
  55030. shoe: {
  55031. height: math.unit(1.05, "feet"),
  55032. name: "Shoe",
  55033. image: {
  55034. source: "./media/characters/fiera/shoe.svg"
  55035. }
  55036. },
  55037. },
  55038. [
  55039. {
  55040. name: "Normal",
  55041. height: math.unit(6 + 2/12, "feet"),
  55042. default: true
  55043. },
  55044. {
  55045. name: "Size Difference",
  55046. height: math.unit(13, "feet")
  55047. },
  55048. {
  55049. name: "Macro",
  55050. height: math.unit(60, "feet")
  55051. },
  55052. {
  55053. name: "Mega Macro",
  55054. height: math.unit(200, "feet")
  55055. },
  55056. ]
  55057. ))
  55058. characterMakers.push(() => makeCharacter(
  55059. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55060. {
  55061. back: {
  55062. height: math.unit(6, "feet"),
  55063. name: "Back",
  55064. image: {
  55065. source: "./media/characters/flare/back.svg",
  55066. extra: 1883/1765,
  55067. bottom: 32/1915
  55068. }
  55069. },
  55070. },
  55071. [
  55072. {
  55073. name: "Normal",
  55074. height: math.unit(6 + 2/12, "feet"),
  55075. default: true
  55076. },
  55077. {
  55078. name: "Size Difference",
  55079. height: math.unit(13, "feet")
  55080. },
  55081. {
  55082. name: "Macro",
  55083. height: math.unit(60, "feet")
  55084. },
  55085. {
  55086. name: "Macro 2",
  55087. height: math.unit(100, "feet")
  55088. },
  55089. {
  55090. name: "Mega Macro",
  55091. height: math.unit(200, "feet")
  55092. },
  55093. ]
  55094. ))
  55095. characterMakers.push(() => makeCharacter(
  55096. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55097. {
  55098. front: {
  55099. height: math.unit(2.2, "m"),
  55100. weight: math.unit(300, "kg"),
  55101. name: "Front",
  55102. image: {
  55103. source: "./media/characters/hanna/front.svg",
  55104. extra: 1696/1502,
  55105. bottom: 206/1902
  55106. }
  55107. },
  55108. },
  55109. [
  55110. {
  55111. name: "Humanoid",
  55112. height: math.unit(2.2, "meters")
  55113. },
  55114. {
  55115. name: "Normal",
  55116. height: math.unit(4.8, "meters"),
  55117. default: true
  55118. },
  55119. ]
  55120. ))
  55121. characterMakers.push(() => makeCharacter(
  55122. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55123. {
  55124. front: {
  55125. height: math.unit(2.8, "meters"),
  55126. name: "Front",
  55127. image: {
  55128. source: "./media/characters/argo/front.svg",
  55129. extra: 731/518,
  55130. bottom: 84/815
  55131. }
  55132. },
  55133. },
  55134. [
  55135. {
  55136. name: "Normal",
  55137. height: math.unit(3, "meters"),
  55138. default: true
  55139. },
  55140. ]
  55141. ))
  55142. characterMakers.push(() => makeCharacter(
  55143. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55144. {
  55145. side: {
  55146. height: math.unit(3.8, "meters"),
  55147. name: "Side",
  55148. image: {
  55149. source: "./media/characters/sybil/side.svg",
  55150. extra: 382/361,
  55151. bottom: 25/407
  55152. }
  55153. },
  55154. },
  55155. [
  55156. {
  55157. name: "Normal",
  55158. height: math.unit(3.8, "meters"),
  55159. default: true
  55160. },
  55161. ]
  55162. ))
  55163. characterMakers.push(() => makeCharacter(
  55164. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55165. {
  55166. side: {
  55167. height: math.unit(6, "meters"),
  55168. name: "Side",
  55169. image: {
  55170. source: "./media/characters/plum/side.svg",
  55171. extra: 858/755,
  55172. bottom: 45/903
  55173. },
  55174. form: "taur",
  55175. default: true
  55176. },
  55177. back: {
  55178. height: math.unit(6.3, "meters"),
  55179. name: "Back",
  55180. image: {
  55181. source: "./media/characters/plum/back.svg",
  55182. extra: 887/813,
  55183. bottom: 32/919
  55184. },
  55185. form: "taur",
  55186. },
  55187. feral: {
  55188. height: math.unit(5.5, "meter"),
  55189. name: "Front",
  55190. image: {
  55191. source: "./media/characters/plum/feral.svg",
  55192. extra: 568/403,
  55193. bottom: 51/619
  55194. },
  55195. form: "feral",
  55196. default: true
  55197. },
  55198. head: {
  55199. height: math.unit(1.46, "meter"),
  55200. name: "Head",
  55201. image: {
  55202. source: "./media/characters/plum/head.svg"
  55203. },
  55204. form: "taur"
  55205. },
  55206. tailTop: {
  55207. height: math.unit(5.6, "meter"),
  55208. name: "Tail (Top)",
  55209. image: {
  55210. source: "./media/characters/plum/tail-top.svg"
  55211. },
  55212. form: "taur",
  55213. },
  55214. tailBottom: {
  55215. height: math.unit(5.6, "meter"),
  55216. name: "Tail (Bottom)",
  55217. image: {
  55218. source: "./media/characters/plum/tail-bottom.svg"
  55219. },
  55220. form: "taur",
  55221. },
  55222. feralHead: {
  55223. height: math.unit(2.56549521, "meter"),
  55224. name: "Head",
  55225. image: {
  55226. source: "./media/characters/plum/head.svg"
  55227. },
  55228. form: "feral"
  55229. },
  55230. feralTailTop: {
  55231. height: math.unit(5.44728435, "meter"),
  55232. name: "Tail (Top)",
  55233. image: {
  55234. source: "./media/characters/plum/tail-top.svg"
  55235. },
  55236. form: "feral",
  55237. },
  55238. feralTailBottom: {
  55239. height: math.unit(5.44728435, "meter"),
  55240. name: "Tail (Bottom)",
  55241. image: {
  55242. source: "./media/characters/plum/tail-bottom.svg"
  55243. },
  55244. form: "feral",
  55245. },
  55246. },
  55247. [
  55248. {
  55249. name: "Normal",
  55250. height: math.unit(6, "meters"),
  55251. default: true,
  55252. form: "taur"
  55253. },
  55254. {
  55255. name: "Normal",
  55256. height: math.unit(5.5, "meters"),
  55257. default: true,
  55258. form: "feral"
  55259. },
  55260. ],
  55261. {
  55262. "taur": {
  55263. name: "Taur",
  55264. default: true
  55265. },
  55266. "feral": {
  55267. name: "Feral",
  55268. },
  55269. }
  55270. ))
  55271. characterMakers.push(() => makeCharacter(
  55272. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55273. {
  55274. front: {
  55275. height: math.unit(6, "feet"),
  55276. weight: math.unit(115, "lb"),
  55277. name: "Front",
  55278. image: {
  55279. source: "./media/characters/celeste-kitsune/front.svg",
  55280. extra: 393/366,
  55281. bottom: 7/400
  55282. }
  55283. },
  55284. side: {
  55285. height: math.unit(6, "feet"),
  55286. weight: math.unit(115, "lb"),
  55287. name: "Side",
  55288. image: {
  55289. source: "./media/characters/celeste-kitsune/side.svg",
  55290. extra: 818/765,
  55291. bottom: 40/858
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Megamacro",
  55298. height: math.unit(1500, "miles"),
  55299. default: true
  55300. },
  55301. ]
  55302. ))
  55303. characterMakers.push(() => makeCharacter(
  55304. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55305. {
  55306. front: {
  55307. height: math.unit(8, "meters"),
  55308. name: "Front",
  55309. image: {
  55310. source: "./media/characters/io/front.svg",
  55311. extra: 865/722,
  55312. bottom: 58/923
  55313. }
  55314. },
  55315. back: {
  55316. height: math.unit(8, "meters"),
  55317. name: "Back",
  55318. image: {
  55319. source: "./media/characters/io/back.svg",
  55320. extra: 920/776,
  55321. bottom: 42/962
  55322. }
  55323. },
  55324. head: {
  55325. height: math.unit(5.09, "meters"),
  55326. name: "Head",
  55327. image: {
  55328. source: "./media/characters/io/head.svg"
  55329. }
  55330. },
  55331. hand: {
  55332. height: math.unit(1.6, "meters"),
  55333. name: "Hand",
  55334. image: {
  55335. source: "./media/characters/io/hand.svg"
  55336. }
  55337. },
  55338. foot: {
  55339. height: math.unit(2.4, "meters"),
  55340. name: "Foot",
  55341. image: {
  55342. source: "./media/characters/io/foot.svg"
  55343. }
  55344. },
  55345. },
  55346. [
  55347. {
  55348. name: "Normal",
  55349. height: math.unit(8, "meters"),
  55350. default: true
  55351. },
  55352. ]
  55353. ))
  55354. characterMakers.push(() => makeCharacter(
  55355. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55356. {
  55357. side: {
  55358. height: math.unit(6 + 3/12, "feet"),
  55359. weight: math.unit(225, "lb"),
  55360. name: "Side",
  55361. image: {
  55362. source: "./media/characters/silas/side.svg",
  55363. extra: 703/653,
  55364. bottom: 23/726
  55365. },
  55366. extraAttributes: {
  55367. "pawLength": {
  55368. name: "Paw Length",
  55369. power: 1,
  55370. type: "length",
  55371. base: math.unit(12, "inches")
  55372. },
  55373. "pawWidth": {
  55374. name: "Paw Width",
  55375. power: 1,
  55376. type: "length",
  55377. base: math.unit(4.5, "inches")
  55378. },
  55379. "pawArea": {
  55380. name: "Paw Area",
  55381. power: 2,
  55382. type: "area",
  55383. base: math.unit(12 * 4.5, "inches^2")
  55384. },
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Normal",
  55391. height: math.unit(6 + 3/12, "feet"),
  55392. default: true
  55393. },
  55394. ]
  55395. ))
  55396. characterMakers.push(() => makeCharacter(
  55397. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55398. {
  55399. back: {
  55400. height: math.unit(1.6, "meters"),
  55401. weight: math.unit(150, "lb"),
  55402. name: "Back",
  55403. image: {
  55404. source: "./media/characters/zari/back.svg",
  55405. extra: 424/411,
  55406. bottom: 32/456
  55407. },
  55408. extraAttributes: {
  55409. "bladderCapacity": {
  55410. name: "Bladder Size",
  55411. power: 3,
  55412. type: "volume",
  55413. base: math.unit(500, "mL")
  55414. },
  55415. "bladderFlow": {
  55416. name: "Flow Rate",
  55417. power: 3,
  55418. type: "volume",
  55419. base: math.unit(25, "mL")
  55420. },
  55421. }
  55422. },
  55423. },
  55424. [
  55425. {
  55426. name: "Normal",
  55427. height: math.unit(1.6, "meters"),
  55428. default: true
  55429. },
  55430. ]
  55431. ))
  55432. characterMakers.push(() => makeCharacter(
  55433. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55434. {
  55435. front: {
  55436. height: math.unit(25, "feet"),
  55437. weight: math.unit(5, "tons"),
  55438. name: "Front",
  55439. image: {
  55440. source: "./media/characters/charlie-human/front.svg",
  55441. extra: 1870/1740,
  55442. bottom: 102/1972
  55443. },
  55444. extraAttributes: {
  55445. "dickLength": {
  55446. name: "Dick Length",
  55447. power: 1,
  55448. type: "length",
  55449. base: math.unit(9, "feet")
  55450. },
  55451. }
  55452. },
  55453. back: {
  55454. height: math.unit(25, "feet"),
  55455. weight: math.unit(5, "tons"),
  55456. name: "Back",
  55457. image: {
  55458. source: "./media/characters/charlie-human/back.svg",
  55459. extra: 1858/1733,
  55460. bottom: 105/1963
  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. },
  55472. [
  55473. {
  55474. name: "\"Normal\"",
  55475. height: math.unit(6 + 4/12, "feet")
  55476. },
  55477. {
  55478. name: "Big",
  55479. height: math.unit(25, "feet"),
  55480. default: true
  55481. },
  55482. ]
  55483. ))
  55484. characterMakers.push(() => makeCharacter(
  55485. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55486. {
  55487. front: {
  55488. height: math.unit(6 + 4/12, "feet"),
  55489. weight: math.unit(320, "lb"),
  55490. name: "Front",
  55491. image: {
  55492. source: "./media/characters/ookitsu/front.svg",
  55493. extra: 1160/976,
  55494. bottom: 38/1198
  55495. }
  55496. },
  55497. frontNsfw: {
  55498. height: math.unit(6 + 4/12, "feet"),
  55499. weight: math.unit(320, "lb"),
  55500. name: "Front (NSFW)",
  55501. image: {
  55502. source: "./media/characters/ookitsu/front-nsfw.svg",
  55503. extra: 1160/976,
  55504. bottom: 38/1198
  55505. }
  55506. },
  55507. back: {
  55508. height: math.unit(6 + 4/12, "feet"),
  55509. weight: math.unit(320, "lb"),
  55510. name: "Back",
  55511. image: {
  55512. source: "./media/characters/ookitsu/back.svg",
  55513. extra: 1030/975,
  55514. bottom: 70/1100
  55515. }
  55516. },
  55517. head: {
  55518. height: math.unit(1.79, "feet"),
  55519. name: "Head",
  55520. image: {
  55521. source: "./media/characters/ookitsu/head.svg"
  55522. }
  55523. },
  55524. hand: {
  55525. height: math.unit(0.92, "feet"),
  55526. name: "Hand",
  55527. image: {
  55528. source: "./media/characters/ookitsu/hand.svg"
  55529. }
  55530. },
  55531. tails: {
  55532. height: math.unit(3.3, "feet"),
  55533. name: "Tails",
  55534. image: {
  55535. source: "./media/characters/ookitsu/tails.svg"
  55536. }
  55537. },
  55538. dick: {
  55539. height: math.unit(1.10833, "feet"),
  55540. name: "Dick",
  55541. image: {
  55542. source: "./media/characters/ookitsu/dick.svg"
  55543. }
  55544. },
  55545. },
  55546. [
  55547. {
  55548. name: "Normal",
  55549. height: math.unit(6 + 4/12, "feet"),
  55550. default: true
  55551. },
  55552. {
  55553. name: "Macro",
  55554. height: math.unit(30, "feet")
  55555. },
  55556. ]
  55557. ))
  55558. characterMakers.push(() => makeCharacter(
  55559. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55560. {
  55561. anthroFront: {
  55562. height: math.unit(6, "feet"),
  55563. weight: math.unit(250, "lb"),
  55564. name: "Front",
  55565. image: {
  55566. source: "./media/characters/jhusky/anthro-front.svg",
  55567. extra: 474/439,
  55568. bottom: 7/481
  55569. },
  55570. form: "anthro",
  55571. default: true
  55572. },
  55573. taurSideSfw: {
  55574. height: math.unit(6 + 4/12, "feet"),
  55575. weight: math.unit(500, "lb"),
  55576. name: "Side (SFW)",
  55577. image: {
  55578. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55579. extra: 1741/1629,
  55580. bottom: 196/1937
  55581. },
  55582. form: "taur",
  55583. default: true
  55584. },
  55585. taurSideNsfw: {
  55586. height: math.unit(6 + 4/12, "feet"),
  55587. weight: math.unit(500, "lb"),
  55588. name: "Taur (NSFW)",
  55589. image: {
  55590. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55591. extra: 1741/1629,
  55592. bottom: 196/1937
  55593. },
  55594. form: "taur",
  55595. },
  55596. },
  55597. [
  55598. {
  55599. name: "Huge",
  55600. height: math.unit(500, "feet"),
  55601. form: "anthro"
  55602. },
  55603. {
  55604. name: "Macro",
  55605. height: math.unit(1000, "feet"),
  55606. default: true,
  55607. form: "anthro"
  55608. },
  55609. {
  55610. name: "Megamacro",
  55611. height: math.unit(10000, "feet"),
  55612. form: "anthro"
  55613. },
  55614. {
  55615. name: "Huge",
  55616. height: math.unit(528, "feet"),
  55617. form: "taur"
  55618. },
  55619. {
  55620. name: "Macro",
  55621. height: math.unit(1056, "feet"),
  55622. default: true,
  55623. form: "taur"
  55624. },
  55625. {
  55626. name: "Megamacro",
  55627. height: math.unit(10556, "feet"),
  55628. form: "taur"
  55629. },
  55630. ],
  55631. {
  55632. "anthro": {
  55633. name: "Anthro",
  55634. default: true
  55635. },
  55636. "taur": {
  55637. name: "Taur",
  55638. },
  55639. }
  55640. ))
  55641. characterMakers.push(() => makeCharacter(
  55642. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55643. {
  55644. front: {
  55645. height: math.unit(8, "feet"),
  55646. weight: math.unit(500, "lb"),
  55647. name: "Front",
  55648. image: {
  55649. source: "./media/characters/armail/front.svg",
  55650. extra: 1753/1669,
  55651. bottom: 155/1908
  55652. }
  55653. },
  55654. back: {
  55655. height: math.unit(8, "feet"),
  55656. weight: math.unit(500, "lb"),
  55657. name: "Back",
  55658. image: {
  55659. source: "./media/characters/armail/back.svg",
  55660. extra: 1872/1803,
  55661. bottom: 63/1935
  55662. }
  55663. },
  55664. },
  55665. [
  55666. {
  55667. name: "Micro",
  55668. height: math.unit(0.25, "feet")
  55669. },
  55670. {
  55671. name: "Normal",
  55672. height: math.unit(8, "feet"),
  55673. default: true
  55674. },
  55675. {
  55676. name: "Mini-macro",
  55677. height: math.unit(30, "feet")
  55678. },
  55679. {
  55680. name: "Macro",
  55681. height: math.unit(400, "feet")
  55682. },
  55683. {
  55684. name: "Mega-macro",
  55685. height: math.unit(6000, "feet")
  55686. },
  55687. ]
  55688. ))
  55689. characterMakers.push(() => makeCharacter(
  55690. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55691. {
  55692. front: {
  55693. height: math.unit(6 + 7/12, "feet"),
  55694. weight: math.unit(210, "lb"),
  55695. name: "Front",
  55696. image: {
  55697. source: "./media/characters/wilfred-t-buxton/front.svg",
  55698. extra: 1068/882,
  55699. bottom: 28/1096
  55700. }
  55701. },
  55702. },
  55703. [
  55704. {
  55705. name: "Normal",
  55706. height: math.unit(6 + 7/12, "feet"),
  55707. default: true
  55708. },
  55709. ]
  55710. ))
  55711. characterMakers.push(() => makeCharacter(
  55712. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55713. {
  55714. front: {
  55715. height: math.unit(5 + 2/12, "feet"),
  55716. weight: math.unit(120, "lb"),
  55717. name: "Front",
  55718. image: {
  55719. source: "./media/characters/leighton-marrow/front.svg",
  55720. extra: 441/409,
  55721. bottom: 37/478
  55722. }
  55723. },
  55724. },
  55725. [
  55726. {
  55727. name: "Normal",
  55728. height: math.unit(5 + 2/12, "feet"),
  55729. default: true
  55730. },
  55731. ]
  55732. ))
  55733. characterMakers.push(() => makeCharacter(
  55734. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55735. {
  55736. front: {
  55737. height: math.unit(4, "meters"),
  55738. weight: math.unit(1200, "kg"),
  55739. name: "Front",
  55740. image: {
  55741. source: "./media/characters/licos/front.svg",
  55742. extra: 1727/1604,
  55743. bottom: 101/1828
  55744. },
  55745. form: "anthro",
  55746. default: true
  55747. },
  55748. taur_side: {
  55749. height: math.unit(20, "meters"),
  55750. weight: math.unit(1100000, "kg"),
  55751. name: "Side",
  55752. image: {
  55753. source: "./media/characters/licos/taur.svg",
  55754. extra: 1158/1091,
  55755. bottom: 80/1238
  55756. },
  55757. form: "taur",
  55758. default: true
  55759. },
  55760. },
  55761. [
  55762. {
  55763. name: "Normal",
  55764. height: math.unit(4, "meters"),
  55765. default: true,
  55766. form: "anthro"
  55767. },
  55768. {
  55769. name: "Normal",
  55770. height: math.unit(20, "meters"),
  55771. default: true,
  55772. form: "taur"
  55773. },
  55774. ],
  55775. {
  55776. "anthro": {
  55777. name: "Anthro",
  55778. default: true
  55779. },
  55780. "taur": {
  55781. name: "Taur",
  55782. },
  55783. }
  55784. ))
  55785. characterMakers.push(() => makeCharacter(
  55786. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55787. {
  55788. front: {
  55789. height: math.unit(10 + 3/12, "feet"),
  55790. name: "Front",
  55791. image: {
  55792. source: "./media/characters/theo-monkey/front.svg",
  55793. extra: 1735/1658,
  55794. bottom: 73/1808
  55795. }
  55796. },
  55797. back: {
  55798. height: math.unit(10 + 3/12, "feet"),
  55799. name: "Back",
  55800. image: {
  55801. source: "./media/characters/theo-monkey/back.svg",
  55802. extra: 1742/1664,
  55803. bottom: 33/1775
  55804. }
  55805. },
  55806. head: {
  55807. height: math.unit(2.29, "feet"),
  55808. name: "Head",
  55809. image: {
  55810. source: "./media/characters/theo-monkey/head.svg"
  55811. }
  55812. },
  55813. handPalm: {
  55814. height: math.unit(1.73, "feet"),
  55815. name: "Hand (Palm)",
  55816. image: {
  55817. source: "./media/characters/theo-monkey/hand-palm.svg"
  55818. }
  55819. },
  55820. handBack: {
  55821. height: math.unit(1.63, "feet"),
  55822. name: "Hand (Back)",
  55823. image: {
  55824. source: "./media/characters/theo-monkey/hand-back.svg"
  55825. }
  55826. },
  55827. footSole: {
  55828. height: math.unit(2.15, "feet"),
  55829. name: "Foot (Sole)",
  55830. image: {
  55831. source: "./media/characters/theo-monkey/foot-sole.svg"
  55832. }
  55833. },
  55834. footSide: {
  55835. height: math.unit(1.6, "feet"),
  55836. name: "Foot (Side)",
  55837. image: {
  55838. source: "./media/characters/theo-monkey/foot-side.svg"
  55839. }
  55840. },
  55841. },
  55842. [
  55843. {
  55844. name: "Normal",
  55845. height: math.unit(10 + 3/12, "feet"),
  55846. default: true
  55847. },
  55848. ]
  55849. ))
  55850. characterMakers.push(() => makeCharacter(
  55851. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55852. {
  55853. front: {
  55854. height: math.unit(11, "feet"),
  55855. weight: math.unit(3000, "lb"),
  55856. preyCapacity: math.unit(10, "people"),
  55857. name: "Front",
  55858. image: {
  55859. source: "./media/characters/brook/front.svg",
  55860. extra: 909/835,
  55861. bottom: 108/1017
  55862. }
  55863. },
  55864. back: {
  55865. height: math.unit(11, "feet"),
  55866. weight: math.unit(3000, "lb"),
  55867. preyCapacity: math.unit(10, "people"),
  55868. name: "Back",
  55869. image: {
  55870. source: "./media/characters/brook/back.svg",
  55871. extra: 976/916,
  55872. bottom: 34/1010
  55873. }
  55874. },
  55875. backAlt: {
  55876. height: math.unit(11, "feet"),
  55877. weight: math.unit(3000, "lb"),
  55878. preyCapacity: math.unit(10, "people"),
  55879. name: "Back (Alt)",
  55880. image: {
  55881. source: "./media/characters/brook/back-alt.svg",
  55882. extra: 1283/1213,
  55883. bottom: 35/1318
  55884. }
  55885. },
  55886. bust: {
  55887. height: math.unit(9.0859030837, "feet"),
  55888. weight: math.unit(3000, "lb"),
  55889. preyCapacity: math.unit(10, "people"),
  55890. name: "Bust",
  55891. image: {
  55892. source: "./media/characters/brook/bust.svg",
  55893. extra: 2043/1923,
  55894. bottom: 0/2043
  55895. }
  55896. },
  55897. },
  55898. [
  55899. {
  55900. name: "Small",
  55901. height: math.unit(11, "feet"),
  55902. default: true
  55903. },
  55904. {
  55905. name: "Towering",
  55906. height: math.unit(5, "km")
  55907. },
  55908. {
  55909. name: "Enormous",
  55910. height: math.unit(25, "earths")
  55911. },
  55912. ]
  55913. ))
  55914. characterMakers.push(() => makeCharacter(
  55915. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55916. {
  55917. front: {
  55918. height: math.unit(4, "feet"),
  55919. weight: math.unit(150, "lb"),
  55920. name: "Front",
  55921. image: {
  55922. source: "./media/characters/squishi/front.svg",
  55923. extra: 1428/1271,
  55924. bottom: 30/1458
  55925. },
  55926. extraAttributes: {
  55927. "pawSize": {
  55928. name: "Paw Size",
  55929. power: 1,
  55930. type: "length",
  55931. base: math.unit(14, "ShoeSizeMensUS"),
  55932. defaultUnit: "ShoeSizeMensUS"
  55933. },
  55934. }
  55935. },
  55936. side: {
  55937. height: math.unit(4, "feet"),
  55938. weight: math.unit(150, "lb"),
  55939. name: "Side",
  55940. image: {
  55941. source: "./media/characters/squishi/side.svg",
  55942. extra: 1428/1271,
  55943. bottom: 30/1458
  55944. },
  55945. extraAttributes: {
  55946. "pawSize": {
  55947. name: "Paw Size",
  55948. power: 1,
  55949. type: "length",
  55950. base: math.unit(14, "ShoeSizeMensUS"),
  55951. defaultUnit: "ShoeSizeMensUS"
  55952. },
  55953. }
  55954. },
  55955. back: {
  55956. height: math.unit(4, "feet"),
  55957. weight: math.unit(150, "lb"),
  55958. name: "Back",
  55959. image: {
  55960. source: "./media/characters/squishi/back.svg",
  55961. extra: 1428/1271,
  55962. bottom: 30/1458
  55963. },
  55964. extraAttributes: {
  55965. "pawSize": {
  55966. name: "Paw Size",
  55967. power: 1,
  55968. type: "length",
  55969. base: math.unit(14, "ShoeSizeMensUS"),
  55970. defaultUnit: "ShoeSizeMensUS"
  55971. },
  55972. }
  55973. },
  55974. },
  55975. [
  55976. {
  55977. name: "Normal",
  55978. height: math.unit(4, "feet"),
  55979. default: true
  55980. },
  55981. ]
  55982. ))
  55983. characterMakers.push(() => makeCharacter(
  55984. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55985. {
  55986. front: {
  55987. height: math.unit(7 + 8/12, "feet"),
  55988. weight: math.unit(333, "lb"),
  55989. name: "Front",
  55990. image: {
  55991. source: "./media/characters/vincent-vasroc/front.svg",
  55992. extra: 1962/1860,
  55993. bottom: 41/2003
  55994. }
  55995. },
  55996. back: {
  55997. height: math.unit(7 + 8/12, "feet"),
  55998. weight: math.unit(333, "lb"),
  55999. name: "Back",
  56000. image: {
  56001. source: "./media/characters/vincent-vasroc/back.svg",
  56002. extra: 1952/1815,
  56003. bottom: 33/1985
  56004. }
  56005. },
  56006. paw: {
  56007. height: math.unit(1.24, "feet"),
  56008. name: "Paw",
  56009. image: {
  56010. source: "./media/characters/vincent-vasroc/paw.svg"
  56011. }
  56012. },
  56013. ear: {
  56014. height: math.unit(0.75, "feet"),
  56015. name: "Ear",
  56016. image: {
  56017. source: "./media/characters/vincent-vasroc/ear.svg"
  56018. }
  56019. },
  56020. },
  56021. [
  56022. {
  56023. name: "Nano",
  56024. height: math.unit(92, "micrometers")
  56025. },
  56026. {
  56027. name: "Normal",
  56028. height: math.unit(7 + 8/12, "feet"),
  56029. default: true
  56030. },
  56031. ]
  56032. ))
  56033. characterMakers.push(() => makeCharacter(
  56034. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56035. {
  56036. frontNsfw: {
  56037. height: math.unit(40, "feet"),
  56038. weight: math.unit(58, "tons"),
  56039. name: "Front (NSFW)",
  56040. image: {
  56041. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56042. extra: 1265/965,
  56043. bottom: 155/1420
  56044. }
  56045. },
  56046. frontSfw: {
  56047. height: math.unit(40, "feet"),
  56048. weight: math.unit(58, "tons"),
  56049. name: "Front (SFW)",
  56050. image: {
  56051. source: "./media/characters/ru-kahn/front-sfw.svg",
  56052. extra: 1265/965,
  56053. bottom: 80/1345
  56054. }
  56055. },
  56056. },
  56057. [
  56058. {
  56059. name: "Small",
  56060. height: math.unit(4, "feet")
  56061. },
  56062. {
  56063. name: "Normal",
  56064. height: math.unit(40, "feet"),
  56065. default: true
  56066. },
  56067. {
  56068. name: "Macro",
  56069. height: math.unit(400, "feet")
  56070. },
  56071. ]
  56072. ))
  56073. characterMakers.push(() => makeCharacter(
  56074. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56075. {
  56076. frontNude: {
  56077. height: math.unit(6 + 5/12, "feet"),
  56078. name: "Front (Nude)",
  56079. image: {
  56080. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56081. extra: 1369/1366,
  56082. bottom: 68/1437
  56083. }
  56084. },
  56085. frontDressed: {
  56086. height: math.unit(6 + 5/12, "feet"),
  56087. name: "Front (Dressed)",
  56088. image: {
  56089. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56090. extra: 1369/1366,
  56091. bottom: 68/1437
  56092. }
  56093. },
  56094. },
  56095. [
  56096. {
  56097. name: "Normal",
  56098. height: math.unit(6 + 5/12, "feet"),
  56099. default: true
  56100. },
  56101. {
  56102. name: "Maximum",
  56103. height: math.unit(1930, "feet")
  56104. },
  56105. ]
  56106. ))
  56107. characterMakers.push(() => makeCharacter(
  56108. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56109. {
  56110. front: {
  56111. height: math.unit(5 + 6/12, "feet"),
  56112. name: "Front",
  56113. image: {
  56114. source: "./media/characters/kaja/front.svg",
  56115. extra: 1874/1514,
  56116. bottom: 117/1991
  56117. }
  56118. },
  56119. },
  56120. [
  56121. {
  56122. name: "Normal",
  56123. height: math.unit(5 + 6/12, "feet"),
  56124. default: true
  56125. },
  56126. ]
  56127. ))
  56128. characterMakers.push(() => makeCharacter(
  56129. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56130. {
  56131. front: {
  56132. height: math.unit(5 + 9/12, "feet"),
  56133. weight: math.unit(200, "lb"),
  56134. name: "Front",
  56135. image: {
  56136. source: "./media/characters/mark-smith/front.svg",
  56137. extra: 1004/943,
  56138. bottom: 58/1062
  56139. }
  56140. },
  56141. back: {
  56142. height: math.unit(5 + 9/12, "feet"),
  56143. weight: math.unit(200, "lb"),
  56144. name: "Back",
  56145. image: {
  56146. source: "./media/characters/mark-smith/back.svg",
  56147. extra: 1023/953,
  56148. bottom: 24/1047
  56149. }
  56150. },
  56151. head: {
  56152. height: math.unit(1.82, "feet"),
  56153. name: "Head",
  56154. image: {
  56155. source: "./media/characters/mark-smith/head.svg"
  56156. }
  56157. },
  56158. hand: {
  56159. height: math.unit(1.4, "feet"),
  56160. name: "Hand",
  56161. image: {
  56162. source: "./media/characters/mark-smith/hand.svg"
  56163. }
  56164. },
  56165. paw: {
  56166. height: math.unit(1.69, "feet"),
  56167. name: "Paw",
  56168. image: {
  56169. source: "./media/characters/mark-smith/paw.svg"
  56170. }
  56171. },
  56172. },
  56173. [
  56174. {
  56175. name: "Micro",
  56176. height: math.unit(0.25, "inches")
  56177. },
  56178. {
  56179. name: "Normal",
  56180. height: math.unit(5 + 9/12, "feet"),
  56181. default: true
  56182. },
  56183. {
  56184. name: "Macro",
  56185. height: math.unit(500, "feet")
  56186. },
  56187. ]
  56188. ))
  56189. characterMakers.push(() => makeCharacter(
  56190. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56191. {
  56192. frontNude: {
  56193. height: math.unit(6, "feet"),
  56194. name: "Front (Nude)",
  56195. image: {
  56196. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56197. extra: 1384/1321,
  56198. bottom: 57/1441
  56199. }
  56200. },
  56201. frontDressed: {
  56202. height: math.unit(6, "feet"),
  56203. name: "Front (Dressed)",
  56204. image: {
  56205. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56206. extra: 1384/1321,
  56207. bottom: 57/1441
  56208. }
  56209. },
  56210. },
  56211. [
  56212. {
  56213. name: "Normal",
  56214. height: math.unit(6, "feet"),
  56215. default: true
  56216. },
  56217. {
  56218. name: "Maximum",
  56219. height: math.unit(1776, "feet")
  56220. },
  56221. ]
  56222. ))
  56223. characterMakers.push(() => makeCharacter(
  56224. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56225. {
  56226. front: {
  56227. height: math.unit(2 + 4/12, "feet"),
  56228. weight: math.unit(350, "lb"),
  56229. name: "Front",
  56230. image: {
  56231. source: "./media/characters/devos/front.svg",
  56232. extra: 958/852,
  56233. bottom: 143/1101
  56234. }
  56235. },
  56236. },
  56237. [
  56238. {
  56239. name: "Base",
  56240. height: math.unit(2 + 4/12, "feet"),
  56241. default: true
  56242. },
  56243. ]
  56244. ))
  56245. characterMakers.push(() => makeCharacter(
  56246. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56247. {
  56248. front: {
  56249. height: math.unit(9 + 2/12, "feet"),
  56250. name: "Front",
  56251. image: {
  56252. source: "./media/characters/hiveheart/front.svg",
  56253. extra: 394/364,
  56254. bottom: 65/459
  56255. }
  56256. },
  56257. back: {
  56258. height: math.unit(9 + 2/12, "feet"),
  56259. name: "Back",
  56260. image: {
  56261. source: "./media/characters/hiveheart/back.svg",
  56262. extra: 374/357,
  56263. bottom: 63/437
  56264. }
  56265. },
  56266. },
  56267. [
  56268. {
  56269. name: "Base",
  56270. height: math.unit(9 + 2/12, "feet"),
  56271. default: true
  56272. },
  56273. ]
  56274. ))
  56275. characterMakers.push(() => makeCharacter(
  56276. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56277. {
  56278. front: {
  56279. height: math.unit(2.5, "inches"),
  56280. weight: math.unit(0.6, "oz"),
  56281. name: "Front",
  56282. image: {
  56283. source: "./media/characters/bryn/front.svg",
  56284. extra: 1480/1205,
  56285. bottom: 27/1507
  56286. }
  56287. },
  56288. back: {
  56289. height: math.unit(2.5, "inches"),
  56290. weight: math.unit(0.6, "oz"),
  56291. name: "Back",
  56292. image: {
  56293. source: "./media/characters/bryn/back.svg",
  56294. extra: 1475/1201,
  56295. bottom: 39/1514
  56296. }
  56297. },
  56298. foot: {
  56299. height: math.unit(0.4, "inches"),
  56300. name: "Foot",
  56301. image: {
  56302. source: "./media/characters/bryn/foot.svg"
  56303. }
  56304. },
  56305. },
  56306. [
  56307. {
  56308. name: "Normal",
  56309. height: math.unit(2.5, "inches"),
  56310. default: true
  56311. },
  56312. ]
  56313. ))
  56314. characterMakers.push(() => makeCharacter(
  56315. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56316. {
  56317. side: {
  56318. height: math.unit(7, "feet"),
  56319. weight: math.unit(657, "kg"),
  56320. name: "Side",
  56321. image: {
  56322. source: "./media/characters/delta/side.svg",
  56323. extra: 781/212,
  56324. bottom: 7/788
  56325. },
  56326. extraAttributes: {
  56327. "wingspan": {
  56328. name: "Wingspan",
  56329. power: 1,
  56330. type: "length",
  56331. base: math.unit(48, "feet")
  56332. },
  56333. "length": {
  56334. name: "Length",
  56335. power: 1,
  56336. type: "length",
  56337. base: math.unit(21, "feet")
  56338. },
  56339. "pawSize": {
  56340. name: "Paw Size",
  56341. power: 2,
  56342. type: "area",
  56343. base: math.unit(1.5*1.4, "feet^2")
  56344. },
  56345. }
  56346. },
  56347. },
  56348. [
  56349. {
  56350. name: "Normal",
  56351. height: math.unit(6, "feet"),
  56352. default: true
  56353. },
  56354. ]
  56355. ))
  56356. characterMakers.push(() => makeCharacter(
  56357. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56358. {
  56359. front: {
  56360. height: math.unit(6, "feet"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/pyrow/front.svg",
  56364. extra: 513/486,
  56365. bottom: 14/527
  56366. }
  56367. },
  56368. frontWing: {
  56369. height: math.unit(6, "feet"),
  56370. name: "Front (Wing)",
  56371. image: {
  56372. source: "./media/characters/pyrow/front-wing.svg",
  56373. extra: 539/383,
  56374. bottom: 20/559
  56375. }
  56376. },
  56377. back: {
  56378. height: math.unit(6, "feet"),
  56379. name: "Back",
  56380. image: {
  56381. source: "./media/characters/pyrow/back.svg",
  56382. extra: 500/473,
  56383. bottom: 9/509
  56384. }
  56385. },
  56386. },
  56387. [
  56388. {
  56389. name: "Normal",
  56390. height: math.unit(6, "feet"),
  56391. default: true
  56392. },
  56393. ]
  56394. ))
  56395. characterMakers.push(() => makeCharacter(
  56396. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56397. {
  56398. front: {
  56399. height: math.unit(5, "meters"),
  56400. weight: math.unit(3, "tonnes"),
  56401. name: "Front",
  56402. image: {
  56403. source: "./media/characters/velikan/front.svg",
  56404. extra: 867/744,
  56405. bottom: 71/938
  56406. },
  56407. extraAttributes: {
  56408. "shoeSize": {
  56409. name: "Shoe Size",
  56410. power: 1,
  56411. type: "length",
  56412. base: math.unit(135, "ShoeSizeUK"),
  56413. defaultUnit: "ShoeSizeUK"
  56414. },
  56415. }
  56416. },
  56417. },
  56418. [
  56419. {
  56420. name: "Normal",
  56421. height: math.unit(5, "meters"),
  56422. default: true
  56423. },
  56424. {
  56425. name: "Macro",
  56426. height: math.unit(1, "km")
  56427. },
  56428. {
  56429. name: "Mega Macro",
  56430. height: math.unit(100, "km")
  56431. },
  56432. {
  56433. name: "Giga Macro",
  56434. height: math.unit(2, "megameters")
  56435. },
  56436. {
  56437. name: "Planetary",
  56438. height: math.unit(22, "megameters")
  56439. },
  56440. {
  56441. name: "Solar",
  56442. height: math.unit(8, "gigameters")
  56443. },
  56444. {
  56445. name: "Cosmic",
  56446. height: math.unit(10, "zettameters")
  56447. },
  56448. {
  56449. name: "Omni",
  56450. height: math.unit(9e260, "multiverses")
  56451. },
  56452. ]
  56453. ))
  56454. characterMakers.push(() => makeCharacter(
  56455. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56456. {
  56457. front: {
  56458. height: math.unit(4 + 3/12, "feet"),
  56459. weight: math.unit(90, "lb"),
  56460. name: "Front",
  56461. image: {
  56462. source: "./media/characters/sabiki/front.svg",
  56463. extra: 1662/1423,
  56464. bottom: 65/1727
  56465. }
  56466. },
  56467. },
  56468. [
  56469. {
  56470. name: "Normal",
  56471. height: math.unit(4 + 3/12, "feet"),
  56472. default: true
  56473. },
  56474. ]
  56475. ))
  56476. characterMakers.push(() => makeCharacter(
  56477. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56478. {
  56479. frontSfw: {
  56480. height: math.unit(2, "mm"),
  56481. name: "Front (SFW)",
  56482. image: {
  56483. source: "./media/characters/carmel/front-sfw.svg",
  56484. extra: 1131/1006,
  56485. bottom: 66/1197
  56486. }
  56487. },
  56488. frontNsfw: {
  56489. height: math.unit(2, "mm"),
  56490. name: "Front (NSFW)",
  56491. image: {
  56492. source: "./media/characters/carmel/front-nsfw.svg",
  56493. extra: 1131/1006,
  56494. bottom: 66/1197
  56495. }
  56496. },
  56497. foot: {
  56498. height: math.unit(0.3, "mm"),
  56499. name: "Foot",
  56500. image: {
  56501. source: "./media/characters/carmel/foot.svg"
  56502. }
  56503. },
  56504. tongue: {
  56505. height: math.unit(0.71, "mm"),
  56506. name: "Tongue",
  56507. image: {
  56508. source: "./media/characters/carmel/tongue.svg"
  56509. }
  56510. },
  56511. dick: {
  56512. height: math.unit(0.085, "mm"),
  56513. name: "Dick",
  56514. image: {
  56515. source: "./media/characters/carmel/dick.svg"
  56516. }
  56517. },
  56518. },
  56519. [
  56520. {
  56521. name: "Micro",
  56522. height: math.unit(2, "mm"),
  56523. default: true
  56524. },
  56525. {
  56526. name: "Normal",
  56527. height: math.unit(4 + 8/12, "feet")
  56528. },
  56529. {
  56530. name: "Mega Macro",
  56531. height: math.unit(250, "feet")
  56532. },
  56533. {
  56534. name: "BIGGER",
  56535. height: math.unit(1000, "feet")
  56536. },
  56537. {
  56538. name: "BIGGEST",
  56539. height: math.unit(2, "miles")
  56540. },
  56541. ]
  56542. ))
  56543. characterMakers.push(() => makeCharacter(
  56544. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56545. {
  56546. front: {
  56547. height: math.unit(6.5, "feet"),
  56548. weight: math.unit(198, "lb"),
  56549. name: "Front",
  56550. image: {
  56551. source: "./media/characters/tamani/anthro.svg",
  56552. extra: 930/890,
  56553. bottom: 34/964
  56554. },
  56555. form: "anthro",
  56556. default: true
  56557. },
  56558. side: {
  56559. height: math.unit(6, "feet"),
  56560. weight: math.unit(198*2, "lb"),
  56561. name: "Side",
  56562. image: {
  56563. source: "./media/characters/tamani/feral.svg",
  56564. extra: 559/519,
  56565. bottom: 43/602
  56566. },
  56567. form: "feral"
  56568. },
  56569. },
  56570. [
  56571. {
  56572. name: "Normal",
  56573. height: math.unit(6.5, "feet"),
  56574. default: true,
  56575. form: "anthro"
  56576. },
  56577. {
  56578. name: "Normal",
  56579. height: math.unit(6, "feet"),
  56580. default: true,
  56581. form: "feral"
  56582. },
  56583. ],
  56584. {
  56585. "anthro": {
  56586. name: "Anthro",
  56587. default: true
  56588. },
  56589. "feral": {
  56590. name: "Feral",
  56591. },
  56592. }
  56593. ))
  56594. characterMakers.push(() => makeCharacter(
  56595. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56596. {
  56597. front: {
  56598. height: math.unit(4 + 1/12, "feet"),
  56599. weight: math.unit(114, "lb"),
  56600. name: "Front",
  56601. image: {
  56602. source: "./media/characters/dex/front.svg",
  56603. extra: 787/680,
  56604. bottom: 18/805
  56605. }
  56606. },
  56607. side: {
  56608. height: math.unit(4 + 1/12, "feet"),
  56609. weight: math.unit(114, "lb"),
  56610. name: "Side",
  56611. image: {
  56612. source: "./media/characters/dex/side.svg",
  56613. extra: 785/680,
  56614. bottom: 12/797
  56615. }
  56616. },
  56617. back: {
  56618. height: math.unit(4 + 1/12, "feet"),
  56619. weight: math.unit(114, "lb"),
  56620. name: "Back",
  56621. image: {
  56622. source: "./media/characters/dex/back.svg",
  56623. extra: 785/681,
  56624. bottom: 17/802
  56625. }
  56626. },
  56627. loungewear: {
  56628. height: math.unit(4 + 1/12, "feet"),
  56629. weight: math.unit(114, "lb"),
  56630. name: "Loungewear",
  56631. image: {
  56632. source: "./media/characters/dex/loungewear.svg",
  56633. extra: 787/680,
  56634. bottom: 18/805
  56635. }
  56636. },
  56637. workout: {
  56638. height: math.unit(4 + 1/12, "feet"),
  56639. weight: math.unit(114, "lb"),
  56640. name: "Workout",
  56641. image: {
  56642. source: "./media/characters/dex/workout.svg",
  56643. extra: 787/680,
  56644. bottom: 18/805
  56645. }
  56646. },
  56647. schoolUniform: {
  56648. height: math.unit(4 + 1/12, "feet"),
  56649. weight: math.unit(114, "lb"),
  56650. name: "School-uniform",
  56651. image: {
  56652. source: "./media/characters/dex/school-uniform.svg",
  56653. extra: 787/680,
  56654. bottom: 18/805
  56655. }
  56656. },
  56657. maw: {
  56658. height: math.unit(0.55, "feet"),
  56659. name: "Maw",
  56660. image: {
  56661. source: "./media/characters/dex/maw.svg"
  56662. }
  56663. },
  56664. paw: {
  56665. height: math.unit(0.87, "feet"),
  56666. name: "Paw",
  56667. image: {
  56668. source: "./media/characters/dex/paw.svg"
  56669. }
  56670. },
  56671. bust: {
  56672. height: math.unit(1.67, "feet"),
  56673. name: "Bust",
  56674. image: {
  56675. source: "./media/characters/dex/bust.svg"
  56676. }
  56677. },
  56678. },
  56679. [
  56680. {
  56681. name: "Normal",
  56682. height: math.unit(4 + 1/12, "feet"),
  56683. default: true
  56684. },
  56685. ]
  56686. ))
  56687. characterMakers.push(() => makeCharacter(
  56688. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56689. {
  56690. front: {
  56691. height: math.unit(4 + 3/12, "feet"),
  56692. weight: math.unit(60, "lb"),
  56693. name: "Front",
  56694. image: {
  56695. source: "./media/characters/silke/front.svg",
  56696. extra: 1334/1122,
  56697. bottom: 21/1355
  56698. }
  56699. },
  56700. back: {
  56701. height: math.unit(4 + 3/12, "feet"),
  56702. weight: math.unit(60, "lb"),
  56703. name: "Back",
  56704. image: {
  56705. source: "./media/characters/silke/back.svg",
  56706. extra: 1328/1092,
  56707. bottom: 16/1344
  56708. }
  56709. },
  56710. dressed: {
  56711. height: math.unit(4 + 3/12, "feet"),
  56712. weight: math.unit(60, "lb"),
  56713. name: "Dressed",
  56714. image: {
  56715. source: "./media/characters/silke/dressed.svg",
  56716. extra: 1334/1122,
  56717. bottom: 43/1377
  56718. }
  56719. },
  56720. },
  56721. [
  56722. {
  56723. name: "Normal",
  56724. height: math.unit(4 + 3/12, "feet"),
  56725. default: true
  56726. },
  56727. ]
  56728. ))
  56729. characterMakers.push(() => makeCharacter(
  56730. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56731. {
  56732. front: {
  56733. height: math.unit(1.58, "meters"),
  56734. weight: math.unit(47, "kg"),
  56735. name: "Front",
  56736. image: {
  56737. source: "./media/characters/wireshark/front.svg",
  56738. extra: 883/838,
  56739. bottom: 66/949
  56740. }
  56741. },
  56742. },
  56743. [
  56744. {
  56745. name: "Normal",
  56746. height: math.unit(1.58, "meters"),
  56747. default: true
  56748. },
  56749. ]
  56750. ))
  56751. characterMakers.push(() => makeCharacter(
  56752. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56753. {
  56754. front: {
  56755. height: math.unit(6, "meters"),
  56756. weight: math.unit(15000, "kg"),
  56757. name: "Front",
  56758. image: {
  56759. source: "./media/characters/gallagher/front.svg",
  56760. extra: 532/493,
  56761. bottom: 0/532
  56762. }
  56763. },
  56764. },
  56765. [
  56766. {
  56767. name: "Normal",
  56768. height: math.unit(6, "meters"),
  56769. default: true
  56770. },
  56771. ]
  56772. ))
  56773. characterMakers.push(() => makeCharacter(
  56774. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56775. {
  56776. front: {
  56777. height: math.unit(2.4, "meters"),
  56778. weight: math.unit(270, "kg"),
  56779. name: "Front",
  56780. image: {
  56781. source: "./media/characters/alice/front.svg",
  56782. extra: 950/900,
  56783. bottom: 36/986
  56784. }
  56785. },
  56786. side: {
  56787. height: math.unit(2.4, "meters"),
  56788. weight: math.unit(270, "kg"),
  56789. name: "Side",
  56790. image: {
  56791. source: "./media/characters/alice/side.svg",
  56792. extra: 921/876,
  56793. bottom: 19/940
  56794. }
  56795. },
  56796. dressed: {
  56797. height: math.unit(2.4, "meters"),
  56798. weight: math.unit(270, "kg"),
  56799. name: "Dressed",
  56800. image: {
  56801. source: "./media/characters/alice/dressed.svg",
  56802. extra: 905/850,
  56803. bottom: 81/986
  56804. }
  56805. },
  56806. fishnet: {
  56807. height: math.unit(2.4, "meters"),
  56808. weight: math.unit(270, "kg"),
  56809. name: "Fishnet",
  56810. image: {
  56811. source: "./media/characters/alice/fishnet.svg",
  56812. extra: 905/850,
  56813. bottom: 81/986
  56814. }
  56815. },
  56816. },
  56817. [
  56818. {
  56819. name: "Normal",
  56820. height: math.unit(2.4, "meters"),
  56821. default: true
  56822. },
  56823. ]
  56824. ))
  56825. characterMakers.push(() => makeCharacter(
  56826. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56827. {
  56828. front: {
  56829. height: math.unit(175.25, "feet"),
  56830. name: "Front",
  56831. image: {
  56832. source: "./media/characters/fio/front.svg",
  56833. extra: 1883/1591,
  56834. bottom: 34/1917
  56835. }
  56836. },
  56837. },
  56838. [
  56839. {
  56840. name: "Normal",
  56841. height: math.unit(175.25, "cm"),
  56842. default: true
  56843. },
  56844. ]
  56845. ))
  56846. characterMakers.push(() => makeCharacter(
  56847. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56848. {
  56849. side: {
  56850. height: math.unit(6, "meters"),
  56851. weight: math.unit(3400, "kg"),
  56852. preyCapacity: math.unit(1700, "liters"),
  56853. name: "Side",
  56854. image: {
  56855. source: "./media/characters/hass/side.svg",
  56856. extra: 1058/997,
  56857. bottom: 177/1235
  56858. }
  56859. },
  56860. feeding: {
  56861. height: math.unit(6*0.63, "meters"),
  56862. weight: math.unit(3400, "kg"),
  56863. preyCapacity: math.unit(1700, "liters"),
  56864. name: "Feeding",
  56865. image: {
  56866. source: "./media/characters/hass/feeding.svg",
  56867. extra: 689/579,
  56868. bottom: 146/835
  56869. }
  56870. },
  56871. guts: {
  56872. height: math.unit(6, "meters"),
  56873. weight: math.unit(3400, "kg"),
  56874. name: "Guts",
  56875. image: {
  56876. source: "./media/characters/hass/guts.svg",
  56877. extra: 1223/1198,
  56878. bottom: 182/1405
  56879. }
  56880. },
  56881. dickFront: {
  56882. height: math.unit(1.4, "meters"),
  56883. name: "Dick (Front)",
  56884. image: {
  56885. source: "./media/characters/hass/dick-front.svg"
  56886. }
  56887. },
  56888. dickSide: {
  56889. height: math.unit(1.3, "meters"),
  56890. name: "Dick (Side)",
  56891. image: {
  56892. source: "./media/characters/hass/dick-side.svg"
  56893. }
  56894. },
  56895. dickBack: {
  56896. height: math.unit(1.4, "meters"),
  56897. name: "Dick (Back)",
  56898. image: {
  56899. source: "./media/characters/hass/dick-back.svg"
  56900. }
  56901. },
  56902. },
  56903. [
  56904. {
  56905. name: "Normal",
  56906. height: math.unit(6, "meters"),
  56907. default: true
  56908. },
  56909. ]
  56910. ))
  56911. characterMakers.push(() => makeCharacter(
  56912. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56913. {
  56914. front: {
  56915. height: math.unit(4, "feet"),
  56916. weight: math.unit(60, "lb"),
  56917. name: "Front",
  56918. image: {
  56919. source: "./media/characters/hickory-finnegan/front.svg",
  56920. extra: 444/411,
  56921. bottom: 10/454
  56922. }
  56923. },
  56924. side: {
  56925. height: math.unit(4, "feet"),
  56926. weight: math.unit(60, "lb"),
  56927. name: "Side",
  56928. image: {
  56929. source: "./media/characters/hickory-finnegan/side.svg",
  56930. extra: 444/411,
  56931. bottom: 10/454
  56932. }
  56933. },
  56934. back: {
  56935. height: math.unit(4, "feet"),
  56936. weight: math.unit(60, "lb"),
  56937. name: "Back",
  56938. image: {
  56939. source: "./media/characters/hickory-finnegan/back.svg",
  56940. extra: 444/411,
  56941. bottom: 10/454
  56942. }
  56943. },
  56944. },
  56945. [
  56946. {
  56947. name: "Normal",
  56948. height: math.unit(4, "feet"),
  56949. default: true
  56950. },
  56951. ]
  56952. ))
  56953. characterMakers.push(() => makeCharacter(
  56954. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56955. {
  56956. snivy_front: {
  56957. height: math.unit(2, "feet"),
  56958. weight: math.unit(17.9, "lb"),
  56959. name: "Front",
  56960. image: {
  56961. source: "./media/characters/robin-phox/snivy-front.svg",
  56962. extra: 569/504,
  56963. bottom: 33/602
  56964. },
  56965. form: "snivy",
  56966. default: true
  56967. },
  56968. snivy_frontNsfw: {
  56969. height: math.unit(2, "feet"),
  56970. weight: math.unit(17.9, "lb"),
  56971. name: "Front (NSFW)",
  56972. image: {
  56973. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56974. extra: 569/504,
  56975. bottom: 33/602
  56976. },
  56977. form: "snivy",
  56978. },
  56979. snivy_back: {
  56980. height: math.unit(2, "feet"),
  56981. weight: math.unit(17.9, "lb"),
  56982. name: "Back",
  56983. image: {
  56984. source: "./media/characters/robin-phox/snivy-back.svg",
  56985. extra: 577/508,
  56986. bottom: 21/598
  56987. },
  56988. form: "snivy",
  56989. },
  56990. snivy_foot: {
  56991. height: math.unit(0.68, "feet"),
  56992. name: "Foot",
  56993. image: {
  56994. source: "./media/characters/robin-phox/snivy-foot.svg"
  56995. },
  56996. form: "snivy",
  56997. },
  56998. snivy_sole: {
  56999. height: math.unit(0.68, "feet"),
  57000. name: "Sole",
  57001. image: {
  57002. source: "./media/characters/robin-phox/snivy-sole.svg"
  57003. },
  57004. form: "snivy",
  57005. },
  57006. yoshi_front: {
  57007. height: math.unit(6, "feet"),
  57008. weight: math.unit(150, "lb"),
  57009. name: "Front",
  57010. image: {
  57011. source: "./media/characters/robin-phox/yoshi-front.svg",
  57012. extra: 890/792,
  57013. bottom: 29/919
  57014. },
  57015. form: "yoshi",
  57016. default: true
  57017. },
  57018. yoshi_frontNsfw: {
  57019. height: math.unit(6, "feet"),
  57020. weight: math.unit(150, "lb"),
  57021. name: "Front (NSFW)",
  57022. image: {
  57023. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57024. extra: 890/792,
  57025. bottom: 29/919
  57026. },
  57027. form: "yoshi",
  57028. },
  57029. yoshi_back: {
  57030. height: math.unit(6, "feet"),
  57031. weight: math.unit(150, "lb"),
  57032. name: "Back",
  57033. image: {
  57034. source: "./media/characters/robin-phox/yoshi-back.svg",
  57035. extra: 890/792,
  57036. bottom: 29/919
  57037. },
  57038. form: "yoshi",
  57039. },
  57040. yoshi_foot: {
  57041. height: math.unit(1.5, "feet"),
  57042. name: "Foot",
  57043. image: {
  57044. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57045. },
  57046. form: "yoshi",
  57047. },
  57048. delphox_front: {
  57049. height: math.unit(4 + 11/12, "feet"),
  57050. weight: math.unit(86, "lb"),
  57051. name: "Front",
  57052. image: {
  57053. source: "./media/characters/robin-phox/delphox-front.svg",
  57054. extra: 1266/1069,
  57055. bottom: 32/1298
  57056. },
  57057. form: "delphox",
  57058. default: true
  57059. },
  57060. delphox_frontNsfw: {
  57061. height: math.unit(4 + 11/12, "feet"),
  57062. weight: math.unit(86, "lb"),
  57063. name: "Front (NSFW)",
  57064. image: {
  57065. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57066. extra: 1266/1069,
  57067. bottom: 32/1298
  57068. },
  57069. form: "delphox",
  57070. },
  57071. delphox_back: {
  57072. height: math.unit(4 + 11/12, "feet"),
  57073. weight: math.unit(86, "lb"),
  57074. name: "Back",
  57075. image: {
  57076. source: "./media/characters/robin-phox/delphox-back.svg",
  57077. extra: 1269/1083,
  57078. bottom: 15/1284
  57079. },
  57080. form: "delphox",
  57081. },
  57082. mienshao_front: {
  57083. height: math.unit(4 + 7/12, "feet"),
  57084. weight: math.unit(78.3, "lb"),
  57085. name: "Front",
  57086. image: {
  57087. source: "./media/characters/robin-phox/mienshao-front.svg",
  57088. extra: 1052/970,
  57089. bottom: 108/1160
  57090. },
  57091. form: "mienshao",
  57092. default: true
  57093. },
  57094. mienshao_frontNsfw: {
  57095. height: math.unit(4 + 7/12, "feet"),
  57096. weight: math.unit(78.3, "lb"),
  57097. name: "Front (NSFW)",
  57098. image: {
  57099. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57100. extra: 1052/970,
  57101. bottom: 108/1160
  57102. },
  57103. form: "mienshao",
  57104. },
  57105. mienshao_back: {
  57106. height: math.unit(4 + 7/12, "feet"),
  57107. weight: math.unit(78.3, "lb"),
  57108. name: "Back",
  57109. image: {
  57110. source: "./media/characters/robin-phox/mienshao-back.svg",
  57111. extra: 1102/982,
  57112. bottom: 32/1134
  57113. },
  57114. form: "mienshao",
  57115. },
  57116. inteleon_front: {
  57117. height: math.unit(6 + 3/12, "feet"),
  57118. weight: math.unit(99.6, "lb"),
  57119. name: "Front",
  57120. image: {
  57121. source: "./media/characters/robin-phox/inteleon-front.svg",
  57122. extra: 910/799,
  57123. bottom: 76/986
  57124. },
  57125. form: "inteleon",
  57126. default: true
  57127. },
  57128. inteleon_frontNsfw: {
  57129. height: math.unit(6 + 3/12, "feet"),
  57130. weight: math.unit(99.6, "lb"),
  57131. name: "Front (NSFW)",
  57132. image: {
  57133. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57134. extra: 910/799,
  57135. bottom: 76/986
  57136. },
  57137. form: "inteleon",
  57138. },
  57139. inteleon_back: {
  57140. height: math.unit(6 + 3/12, "feet"),
  57141. weight: math.unit(99.6, "lb"),
  57142. name: "Back",
  57143. image: {
  57144. source: "./media/characters/robin-phox/inteleon-back.svg",
  57145. extra: 907/796,
  57146. bottom: 25/932
  57147. },
  57148. form: "inteleon",
  57149. },
  57150. reshiram_front: {
  57151. height: math.unit(10 + 6/12, "feet"),
  57152. weight: math.unit(727.5, "lb"),
  57153. name: "Front",
  57154. image: {
  57155. source: "./media/characters/robin-phox/reshiram-front.svg",
  57156. extra: 1198/940,
  57157. bottom: 123/1321
  57158. },
  57159. form: "reshiram",
  57160. },
  57161. reshiram_frontNsfw: {
  57162. height: math.unit(10 + 6/12, "feet"),
  57163. weight: math.unit(727.5, "lb"),
  57164. name: "Front-nsfw",
  57165. image: {
  57166. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57167. extra: 1198/940,
  57168. bottom: 123/1321
  57169. },
  57170. form: "reshiram",
  57171. },
  57172. reshiram_back: {
  57173. height: math.unit(10 + 6/12, "feet"),
  57174. weight: math.unit(727.5, "lb"),
  57175. name: "Back",
  57176. image: {
  57177. source: "./media/characters/robin-phox/reshiram-back.svg",
  57178. extra: 1024/904,
  57179. bottom: 85/1109
  57180. },
  57181. form: "reshiram",
  57182. },
  57183. samurott_front: {
  57184. height: math.unit(8, "feet"),
  57185. weight: math.unit(208.6, "lb"),
  57186. name: "Front",
  57187. image: {
  57188. source: "./media/characters/robin-phox/samurott-front.svg",
  57189. extra: 1048/984,
  57190. bottom: 100/1148
  57191. },
  57192. form: "samurott",
  57193. },
  57194. samurott_frontNsfw: {
  57195. height: math.unit(8, "feet"),
  57196. weight: math.unit(208.6, "lb"),
  57197. name: "Front-nsfw",
  57198. image: {
  57199. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57200. extra: 1048/984,
  57201. bottom: 100/1148
  57202. },
  57203. form: "samurott",
  57204. },
  57205. samurott_back: {
  57206. height: math.unit(8, "feet"),
  57207. weight: math.unit(208.6, "lb"),
  57208. name: "Back",
  57209. image: {
  57210. source: "./media/characters/robin-phox/samurott-back.svg",
  57211. extra: 1110/1042,
  57212. bottom: 12/1122
  57213. },
  57214. form: "samurott",
  57215. },
  57216. samurott_feral: {
  57217. height: math.unit(4 + 11/12, "feet"),
  57218. weight: math.unit(208.6, "lb"),
  57219. name: "Feral",
  57220. image: {
  57221. source: "./media/characters/robin-phox/samurott-feral.svg",
  57222. extra: 766/681,
  57223. bottom: 108/874
  57224. },
  57225. form: "samurott",
  57226. },
  57227. },
  57228. [
  57229. {
  57230. name: "Normal",
  57231. height: math.unit(2, "feet"),
  57232. default: true,
  57233. form: "snivy"
  57234. },
  57235. {
  57236. name: "Normal",
  57237. height: math.unit(6, "feet"),
  57238. default: true,
  57239. form: "yoshi"
  57240. },
  57241. {
  57242. name: "Normal",
  57243. height: math.unit(4 + 11/12, "feet"),
  57244. default: true,
  57245. form: "delphox"
  57246. },
  57247. {
  57248. name: "Normal",
  57249. height: math.unit(4 + 7/12, "feet"),
  57250. default: true,
  57251. form: "mienshao"
  57252. },
  57253. {
  57254. name: "Normal",
  57255. height: math.unit(6 + 3/12, "feet"),
  57256. default: true,
  57257. form: "inteleon"
  57258. },
  57259. {
  57260. name: "Normal",
  57261. height: math.unit(10 + 6/12, "feet"),
  57262. default: true,
  57263. form: "reshiram"
  57264. },
  57265. {
  57266. name: "Normal",
  57267. height: math.unit(8, "feet"),
  57268. default: true,
  57269. form: "samurott"
  57270. },
  57271. {
  57272. name: "Macro",
  57273. height: math.unit(500, "feet"),
  57274. allForms: true
  57275. },
  57276. {
  57277. name: "Mega Macro",
  57278. height: math.unit(10, "earths"),
  57279. allForms: true
  57280. },
  57281. {
  57282. name: "Giga Macro",
  57283. height: math.unit(1, "galaxy"),
  57284. allForms: true
  57285. },
  57286. {
  57287. name: "Godly Macro",
  57288. height: math.unit(1e10, "multiverses"),
  57289. allForms: true
  57290. },
  57291. ],
  57292. {
  57293. "snivy": {
  57294. name: "Snivy",
  57295. default: true
  57296. },
  57297. "yoshi": {
  57298. name: "Yoshi",
  57299. },
  57300. "delphox": {
  57301. name: "Delphox",
  57302. },
  57303. "mienshao": {
  57304. name: "Mienshao",
  57305. },
  57306. "inteleon": {
  57307. name: "Inteleon",
  57308. },
  57309. "reshiram": {
  57310. name: "Reshiram",
  57311. },
  57312. "samurott": {
  57313. name: "Samurott",
  57314. },
  57315. }
  57316. ))
  57317. characterMakers.push(() => makeCharacter(
  57318. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57319. {
  57320. front: {
  57321. height: math.unit(4, "feet"),
  57322. name: "Front",
  57323. image: {
  57324. source: "./media/characters/ash-leung/front.svg",
  57325. extra: 1916/1792,
  57326. bottom: 50/1966
  57327. }
  57328. },
  57329. },
  57330. [
  57331. {
  57332. name: "Atomic",
  57333. height: math.unit(1, "angstrom")
  57334. },
  57335. {
  57336. name: "Microscopic",
  57337. height: math.unit(4000, "angstroms")
  57338. },
  57339. {
  57340. name: "Speck",
  57341. height: math.unit(1, "mm")
  57342. },
  57343. {
  57344. name: "Small",
  57345. height: math.unit(1, "inch")
  57346. },
  57347. {
  57348. name: "Normal",
  57349. height: math.unit(4, "feet"),
  57350. default: true
  57351. },
  57352. ]
  57353. ))
  57354. characterMakers.push(() => makeCharacter(
  57355. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57356. {
  57357. frontDressed: {
  57358. height: math.unit(2.08, "meters"),
  57359. weight: math.unit(175, "lb"),
  57360. name: "Front (Dressed)",
  57361. image: {
  57362. source: "./media/characters/carie/front-dressed.svg",
  57363. extra: 456/417,
  57364. bottom: 7/463
  57365. }
  57366. },
  57367. backDressed: {
  57368. height: math.unit(2.08, "meters"),
  57369. weight: math.unit(175, "lb"),
  57370. name: "Back (Dressed)",
  57371. image: {
  57372. source: "./media/characters/carie/back-dressed.svg",
  57373. extra: 455/414,
  57374. bottom: 11/466
  57375. }
  57376. },
  57377. front: {
  57378. height: math.unit(2, "meters"),
  57379. weight: math.unit(175, "lb"),
  57380. name: "Front",
  57381. image: {
  57382. source: "./media/characters/carie/front.svg",
  57383. extra: 438/399,
  57384. bottom: 12/450
  57385. }
  57386. },
  57387. back: {
  57388. height: math.unit(2, "meters"),
  57389. weight: math.unit(175, "lb"),
  57390. name: "Back",
  57391. image: {
  57392. source: "./media/characters/carie/back.svg",
  57393. extra: 438/397,
  57394. bottom: 7/445
  57395. }
  57396. },
  57397. },
  57398. [
  57399. {
  57400. name: "Normal",
  57401. height: math.unit(2.08, "meters"),
  57402. default: true
  57403. },
  57404. {
  57405. name: "Macro",
  57406. height: math.unit(2.08e3, "meters")
  57407. },
  57408. {
  57409. name: "Mega Macro",
  57410. height: math.unit(2.08e6, "meters")
  57411. },
  57412. {
  57413. name: "Giga Macro",
  57414. height: math.unit(2.08e9, "meters")
  57415. },
  57416. {
  57417. name: "Tera Macro",
  57418. height: math.unit(2.08e12, "meters")
  57419. },
  57420. {
  57421. name: "Peta Macro",
  57422. height: math.unit(2.08e15, "meters")
  57423. },
  57424. {
  57425. name: "Exa Macro",
  57426. height: math.unit(2.08e18, "meters")
  57427. },
  57428. {
  57429. name: "Zetta Macro",
  57430. height: math.unit(2.08e21, "meters")
  57431. },
  57432. {
  57433. name: "Yotta Macro",
  57434. height: math.unit(2.08e24, "meters")
  57435. },
  57436. ]
  57437. ))
  57438. characterMakers.push(() => makeCharacter(
  57439. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57440. {
  57441. front: {
  57442. height: math.unit(5 + 2/12, "feet"),
  57443. weight: math.unit(120, "lb"),
  57444. name: "Front",
  57445. image: {
  57446. source: "./media/characters/sai-bree/front.svg",
  57447. extra: 1843/1702,
  57448. bottom: 91/1934
  57449. }
  57450. },
  57451. back: {
  57452. height: math.unit(5 + 2/12, "feet"),
  57453. weight: math.unit(120, "lb"),
  57454. name: "Back",
  57455. image: {
  57456. source: "./media/characters/sai-bree/back.svg",
  57457. extra: 1809/1637,
  57458. bottom: 56/1865
  57459. }
  57460. },
  57461. },
  57462. [
  57463. {
  57464. name: "Normal",
  57465. height: math.unit(5 + 2/12, "feet"),
  57466. default: true
  57467. },
  57468. {
  57469. name: "Macro",
  57470. height: math.unit(500, "feet")
  57471. },
  57472. ]
  57473. ))
  57474. characterMakers.push(() => makeCharacter(
  57475. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57476. {
  57477. side: {
  57478. height: math.unit(0.77, "meters"),
  57479. weight: math.unit(120, "lb"),
  57480. name: "Side",
  57481. image: {
  57482. source: "./media/characters/davwyn/side.svg",
  57483. extra: 1557/1225,
  57484. bottom: 131/1688
  57485. }
  57486. },
  57487. front: {
  57488. height: math.unit(0.835410, "meters"),
  57489. weight: math.unit(120, "lb"),
  57490. name: "Front",
  57491. image: {
  57492. source: "./media/characters/davwyn/front.svg",
  57493. extra: 870/843,
  57494. bottom: 175/1045
  57495. }
  57496. },
  57497. },
  57498. [
  57499. {
  57500. name: "Minidrake",
  57501. height: math.unit(0.77/4, "meters")
  57502. },
  57503. {
  57504. name: "Normal",
  57505. height: math.unit(0.77, "meters"),
  57506. default: true
  57507. },
  57508. ]
  57509. ))
  57510. characterMakers.push(() => makeCharacter(
  57511. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57512. {
  57513. front: {
  57514. height: math.unit(10 + 3/12, "feet"),
  57515. weight: math.unit(2857, "lb"),
  57516. name: "Front",
  57517. image: {
  57518. source: "./media/characters/balans/front.svg",
  57519. extra: 427/402,
  57520. bottom: 26/453
  57521. }
  57522. },
  57523. side: {
  57524. height: math.unit(10 + 3/12, "feet"),
  57525. weight: math.unit(2857, "lb"),
  57526. name: "Side",
  57527. image: {
  57528. source: "./media/characters/balans/side.svg",
  57529. extra: 397/371,
  57530. bottom: 17/414
  57531. }
  57532. },
  57533. back: {
  57534. height: math.unit(10 + 3/12, "feet"),
  57535. weight: math.unit(2857, "lb"),
  57536. name: "Back",
  57537. image: {
  57538. source: "./media/characters/balans/back.svg",
  57539. extra: 408/381,
  57540. bottom: 14/422
  57541. }
  57542. },
  57543. hand: {
  57544. height: math.unit(1.15, "feet"),
  57545. name: "Hand",
  57546. image: {
  57547. source: "./media/characters/balans/hand.svg"
  57548. }
  57549. },
  57550. footRest: {
  57551. height: math.unit(3.1, "feet"),
  57552. name: "Foot (Rest)",
  57553. image: {
  57554. source: "./media/characters/balans/foot-rest.svg"
  57555. }
  57556. },
  57557. footActive: {
  57558. height: math.unit(3.5, "feet"),
  57559. name: "Foot (Active)",
  57560. image: {
  57561. source: "./media/characters/balans/foot-active.svg"
  57562. }
  57563. },
  57564. },
  57565. [
  57566. {
  57567. name: "Normal",
  57568. height: math.unit(10 + 3/12, "feet"),
  57569. default: true
  57570. },
  57571. ]
  57572. ))
  57573. characterMakers.push(() => makeCharacter(
  57574. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57575. {
  57576. side: {
  57577. height: math.unit(9, "meters"),
  57578. weight: math.unit(114, "tonnes"),
  57579. name: "Side",
  57580. image: {
  57581. source: "./media/characters/eldkveikir/side.svg",
  57582. extra: 1927/338,
  57583. bottom: 42/1969
  57584. }
  57585. },
  57586. sitting: {
  57587. height: math.unit(13.4, "meters"),
  57588. weight: math.unit(114, "tonnes"),
  57589. name: "Sitting",
  57590. image: {
  57591. source: "./media/characters/eldkveikir/sitting.svg",
  57592. extra: 1108/963,
  57593. bottom: 610/1718
  57594. }
  57595. },
  57596. maw: {
  57597. height: math.unit(8.36, "meters"),
  57598. name: "Maw",
  57599. image: {
  57600. source: "./media/characters/eldkveikir/maw.svg"
  57601. }
  57602. },
  57603. hand: {
  57604. height: math.unit(4.84, "meters"),
  57605. name: "Hand",
  57606. image: {
  57607. source: "./media/characters/eldkveikir/hand.svg"
  57608. }
  57609. },
  57610. foot: {
  57611. height: math.unit(6.9, "meters"),
  57612. name: "Foot",
  57613. image: {
  57614. source: "./media/characters/eldkveikir/foot.svg"
  57615. }
  57616. },
  57617. genitals: {
  57618. height: math.unit(9.6, "meters"),
  57619. name: "Genitals",
  57620. image: {
  57621. source: "./media/characters/eldkveikir/genitals.svg"
  57622. }
  57623. },
  57624. },
  57625. [
  57626. {
  57627. name: "Normal",
  57628. height: math.unit(9, "meters"),
  57629. default: true
  57630. },
  57631. ]
  57632. ))
  57633. characterMakers.push(() => makeCharacter(
  57634. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57635. {
  57636. front: {
  57637. height: math.unit(14, "feet"),
  57638. weight: math.unit(4100, "lb"),
  57639. name: "Front",
  57640. image: {
  57641. source: "./media/characters/arrow/front.svg",
  57642. extra: 330/318,
  57643. bottom: 56/386
  57644. }
  57645. },
  57646. },
  57647. [
  57648. {
  57649. name: "Normal",
  57650. height: math.unit(14, "feet"),
  57651. default: true
  57652. },
  57653. {
  57654. name: "Minimacro",
  57655. height: math.unit(63, "feet")
  57656. },
  57657. {
  57658. name: "Macro",
  57659. height: math.unit(630, "feet")
  57660. },
  57661. {
  57662. name: "Megamacro",
  57663. height: math.unit(12600, "feet")
  57664. },
  57665. {
  57666. name: "Gigamacro",
  57667. height: math.unit(18000, "miles")
  57668. },
  57669. ]
  57670. ))
  57671. characterMakers.push(() => makeCharacter(
  57672. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57673. {
  57674. front: {
  57675. height: math.unit(10, "feet"),
  57676. weight: math.unit(2.4, "tons"),
  57677. name: "Front",
  57678. image: {
  57679. source: "./media/characters/3yk-k0-unit/front.svg",
  57680. extra: 573/561,
  57681. bottom: 33/606
  57682. }
  57683. },
  57684. back: {
  57685. height: math.unit(10, "feet"),
  57686. weight: math.unit(2.4, "tons"),
  57687. name: "Back",
  57688. image: {
  57689. source: "./media/characters/3yk-k0-unit/back.svg",
  57690. extra: 614/573,
  57691. bottom: 32/646
  57692. }
  57693. },
  57694. maw: {
  57695. height: math.unit(2.15, "feet"),
  57696. name: "Maw",
  57697. image: {
  57698. source: "./media/characters/3yk-k0-unit/maw.svg"
  57699. }
  57700. },
  57701. },
  57702. [
  57703. {
  57704. name: "Normal",
  57705. height: math.unit(10, "feet"),
  57706. default: true
  57707. },
  57708. ]
  57709. ))
  57710. characterMakers.push(() => makeCharacter(
  57711. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57712. {
  57713. front: {
  57714. height: math.unit(8 + 8/12, "feet"),
  57715. name: "Front",
  57716. image: {
  57717. source: "./media/characters/nemo/front.svg",
  57718. extra: 1308/1217,
  57719. bottom: 57/1365
  57720. }
  57721. },
  57722. },
  57723. [
  57724. {
  57725. name: "Normal",
  57726. height: math.unit(8 + 8/12, "feet"),
  57727. default: true
  57728. },
  57729. ]
  57730. ))
  57731. characterMakers.push(() => makeCharacter(
  57732. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57733. {
  57734. front: {
  57735. height: math.unit(8, "feet"),
  57736. weight: math.unit(760, "lb"),
  57737. name: "Front",
  57738. image: {
  57739. source: "./media/characters/rexx/front.svg",
  57740. extra: 786/750,
  57741. bottom: 17/803
  57742. },
  57743. extraAttributes: {
  57744. "pawLength": {
  57745. name: "Paw Length",
  57746. power: 1,
  57747. type: "length",
  57748. base: math.unit(27, "inches")
  57749. },
  57750. }
  57751. },
  57752. },
  57753. [
  57754. {
  57755. name: "Micro",
  57756. height: math.unit(2, "inches")
  57757. },
  57758. {
  57759. name: "Normal",
  57760. height: math.unit(8, "feet"),
  57761. default: true
  57762. },
  57763. {
  57764. name: "Macro",
  57765. height: math.unit(150, "feet")
  57766. },
  57767. ]
  57768. ))
  57769. characterMakers.push(() => makeCharacter(
  57770. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57771. {
  57772. front: {
  57773. height: math.unit(18, "feet"),
  57774. weight: math.unit(1975, "lb"),
  57775. name: "Front",
  57776. image: {
  57777. source: "./media/characters/draco/front.svg",
  57778. extra: 1325/1241,
  57779. bottom: 83/1408
  57780. }
  57781. },
  57782. back: {
  57783. height: math.unit(18, "feet"),
  57784. weight: math.unit(1975, "lb"),
  57785. name: "Back",
  57786. image: {
  57787. source: "./media/characters/draco/back.svg",
  57788. extra: 1332/1250,
  57789. bottom: 43/1375
  57790. }
  57791. },
  57792. dick: {
  57793. height: math.unit(7.5, "feet"),
  57794. name: "Dick",
  57795. image: {
  57796. source: "./media/characters/draco/dick.svg"
  57797. }
  57798. },
  57799. },
  57800. [
  57801. {
  57802. name: "Normal",
  57803. height: math.unit(18, "feet"),
  57804. default: true
  57805. },
  57806. ]
  57807. ))
  57808. characterMakers.push(() => makeCharacter(
  57809. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57810. {
  57811. front: {
  57812. height: math.unit(3.2, "meters"),
  57813. name: "Front",
  57814. image: {
  57815. source: "./media/characters/harriett/front.svg",
  57816. extra: 1966/1915,
  57817. bottom: 9/1975
  57818. }
  57819. },
  57820. },
  57821. [
  57822. {
  57823. name: "Normal",
  57824. height: math.unit(3.2, "meters"),
  57825. default: true
  57826. },
  57827. ]
  57828. ))
  57829. characterMakers.push(() => makeCharacter(
  57830. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57831. {
  57832. sitting: {
  57833. height: math.unit(0.8, "meter"),
  57834. name: "Sitting",
  57835. image: {
  57836. source: "./media/characters/serpentus/sitting.svg",
  57837. extra: 293/290,
  57838. bottom: 140/433
  57839. }
  57840. },
  57841. },
  57842. [
  57843. {
  57844. name: "Normal",
  57845. height: math.unit(0.8, "meter"),
  57846. default: true
  57847. },
  57848. ]
  57849. ))
  57850. characterMakers.push(() => makeCharacter(
  57851. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57852. {
  57853. front: {
  57854. height: math.unit(5.7174385736, "feet"),
  57855. name: "Front",
  57856. image: {
  57857. source: "./media/characters/nova-polecat/front.svg",
  57858. extra: 1317/1216,
  57859. bottom: 92/1409
  57860. }
  57861. },
  57862. },
  57863. [
  57864. {
  57865. name: "Normal",
  57866. height: math.unit(5.7174385736, "feet"),
  57867. default: true
  57868. },
  57869. ]
  57870. ))
  57871. characterMakers.push(() => makeCharacter(
  57872. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57873. {
  57874. front: {
  57875. height: math.unit(5 + 4/12, "feet"),
  57876. weight: math.unit(250, "lb"),
  57877. name: "Front",
  57878. image: {
  57879. source: "./media/characters/mook/front.svg",
  57880. extra: 1088/1037,
  57881. bottom: 132/1220
  57882. }
  57883. },
  57884. back: {
  57885. height: math.unit(5 + 1/12, "feet"),
  57886. weight: math.unit(250, "lb"),
  57887. name: "Back",
  57888. image: {
  57889. source: "./media/characters/mook/back.svg",
  57890. extra: 1184/905,
  57891. bottom: 96/1280
  57892. }
  57893. },
  57894. head: {
  57895. height: math.unit(1.85, "feet"),
  57896. name: "Head",
  57897. image: {
  57898. source: "./media/characters/mook/head.svg"
  57899. }
  57900. },
  57901. hand: {
  57902. height: math.unit(1.9, "feet"),
  57903. name: "Hand",
  57904. image: {
  57905. source: "./media/characters/mook/hand.svg"
  57906. }
  57907. },
  57908. palm: {
  57909. height: math.unit(1.84, "feet"),
  57910. name: "Palm",
  57911. image: {
  57912. source: "./media/characters/mook/palm.svg"
  57913. }
  57914. },
  57915. foot: {
  57916. height: math.unit(1.44, "feet"),
  57917. name: "Foot",
  57918. image: {
  57919. source: "./media/characters/mook/foot.svg"
  57920. }
  57921. },
  57922. sole: {
  57923. height: math.unit(1.44, "feet"),
  57924. name: "Sole",
  57925. image: {
  57926. source: "./media/characters/mook/sole.svg"
  57927. }
  57928. },
  57929. },
  57930. [
  57931. {
  57932. name: "Normal",
  57933. height: math.unit(5 + 4/12, "feet"),
  57934. default: true
  57935. },
  57936. {
  57937. name: "Big",
  57938. height: math.unit(12, "feet")
  57939. },
  57940. ]
  57941. ))
  57942. characterMakers.push(() => makeCharacter(
  57943. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57944. {
  57945. front: {
  57946. height: math.unit(6 + 10/12, "feet"),
  57947. weight: math.unit(233, "lb"),
  57948. name: "Front",
  57949. image: {
  57950. source: "./media/characters/kayla/front.svg",
  57951. extra: 1850/1775,
  57952. bottom: 65/1915
  57953. }
  57954. },
  57955. },
  57956. [
  57957. {
  57958. name: "Normal",
  57959. height: math.unit(6 + 10/12, "feet"),
  57960. default: true
  57961. },
  57962. {
  57963. name: "Amazonian",
  57964. height: math.unit(12 + 5/12, "feet")
  57965. },
  57966. {
  57967. name: "Mini Giantess",
  57968. height: math.unit(26, "feet")
  57969. },
  57970. {
  57971. name: "Giantess",
  57972. height: math.unit(200, "feet")
  57973. },
  57974. {
  57975. name: "Mega Giantess",
  57976. height: math.unit(2500, "feet")
  57977. },
  57978. {
  57979. name: "City Sized",
  57980. height: math.unit(50, "miles")
  57981. },
  57982. {
  57983. name: "Country Sized",
  57984. height: math.unit(500, "miles")
  57985. },
  57986. {
  57987. name: "Continent Sized",
  57988. height: math.unit(2500, "miles")
  57989. },
  57990. {
  57991. name: "Planet Sized",
  57992. height: math.unit(10000, "miles")
  57993. },
  57994. {
  57995. name: "Star Sized",
  57996. height: math.unit(5e6, "miles")
  57997. },
  57998. {
  57999. name: "Solar System Sized",
  58000. height: math.unit(125, "AU")
  58001. },
  58002. {
  58003. name: "Galaxy Sized",
  58004. height: math.unit(300e3, "lightyears")
  58005. },
  58006. {
  58007. name: "Universe Sized",
  58008. height: math.unit(200e9, "lightyears")
  58009. },
  58010. {
  58011. name: "Multiverse Sized",
  58012. height: math.unit(20, "exauniverses")
  58013. },
  58014. {
  58015. name: "Mother of Existence",
  58016. height: math.unit(1e6, "yottauniverses")
  58017. },
  58018. ]
  58019. ))
  58020. characterMakers.push(() => makeCharacter(
  58021. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58022. {
  58023. side: {
  58024. height: math.unit(9.5, "meters"),
  58025. name: "Side",
  58026. image: {
  58027. source: "./media/characters/kulve-ragnarok/side.svg",
  58028. extra: 364/326,
  58029. bottom: 50/414
  58030. }
  58031. },
  58032. },
  58033. [
  58034. {
  58035. name: "Normal",
  58036. height: math.unit(9.5, "meters"),
  58037. default: true
  58038. },
  58039. ]
  58040. ))
  58041. characterMakers.push(() => makeCharacter(
  58042. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58043. {
  58044. front: {
  58045. height: math.unit(8 + 9/12, "feet"),
  58046. name: "Front",
  58047. image: {
  58048. source: "./media/characters/atlas-goat/front.svg",
  58049. extra: 1462/1323,
  58050. bottom: 12/1474
  58051. }
  58052. },
  58053. },
  58054. [
  58055. {
  58056. name: "Normal",
  58057. height: math.unit(8 + 9/12, "feet"),
  58058. default: true
  58059. },
  58060. {
  58061. name: "Skyline",
  58062. height: math.unit(845, "feet")
  58063. },
  58064. {
  58065. name: "Orbital",
  58066. height: math.unit(93000, "miles")
  58067. },
  58068. {
  58069. name: "Constellation",
  58070. height: math.unit(27000, "lightyears")
  58071. },
  58072. ]
  58073. ))
  58074. characterMakers.push(() => makeCharacter(
  58075. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58076. {
  58077. side: {
  58078. height: math.unit(1.8, "meters"),
  58079. weight: math.unit(120, "kg"),
  58080. name: "Side",
  58081. image: {
  58082. source: "./media/characters/xie-ling/side.svg",
  58083. extra: 646/574,
  58084. bottom: 44/690
  58085. }
  58086. },
  58087. },
  58088. [
  58089. {
  58090. name: "Tiny",
  58091. height: math.unit(1.80, "meters")
  58092. },
  58093. {
  58094. name: "Small",
  58095. height: math.unit(6, "meters")
  58096. },
  58097. {
  58098. name: "Medium",
  58099. height: math.unit(15, "meters")
  58100. },
  58101. {
  58102. name: "Normal",
  58103. height: math.unit(30, "meters"),
  58104. default: true
  58105. },
  58106. {
  58107. name: "Above Normal",
  58108. height: math.unit(60, "meters")
  58109. },
  58110. {
  58111. name: "Big",
  58112. height: math.unit(220, "meters")
  58113. },
  58114. {
  58115. name: "Giant",
  58116. height: math.unit(2.2, "km")
  58117. },
  58118. {
  58119. name: "Macro",
  58120. height: math.unit(25, "km")
  58121. },
  58122. {
  58123. name: "Mega Macro",
  58124. height: math.unit(350, "km")
  58125. },
  58126. {
  58127. name: "Mega Macro+",
  58128. height: math.unit(5000, "km")
  58129. },
  58130. {
  58131. name: "Goddess",
  58132. height: math.unit(3, "multiverses")
  58133. },
  58134. ]
  58135. ))
  58136. characterMakers.push(() => makeCharacter(
  58137. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58138. {
  58139. frontSfw: {
  58140. height: math.unit(5 + 11/12, "feet"),
  58141. weight: math.unit(210, "lb"),
  58142. name: "Front",
  58143. image: {
  58144. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58145. extra: 1928/1821,
  58146. bottom: 45/1973
  58147. }
  58148. },
  58149. backSfw: {
  58150. height: math.unit(5 + 11/12, "feet"),
  58151. weight: math.unit(210, "lb"),
  58152. name: "Back",
  58153. image: {
  58154. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58155. extra: 1920/1813,
  58156. bottom: 34/1954
  58157. }
  58158. },
  58159. frontNsfw: {
  58160. height: math.unit(5 + 11/12, "feet"),
  58161. weight: math.unit(210, "lb"),
  58162. name: "Front (NSFW)",
  58163. image: {
  58164. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58165. extra: 1928/1821,
  58166. bottom: 45/1973
  58167. }
  58168. },
  58169. backNsfw: {
  58170. height: math.unit(5 + 11/12, "feet"),
  58171. weight: math.unit(210, "lb"),
  58172. name: "Back (NSFW)",
  58173. image: {
  58174. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58175. extra: 1920/1813,
  58176. bottom: 34/1954
  58177. }
  58178. },
  58179. },
  58180. [
  58181. {
  58182. name: "Normal",
  58183. height: math.unit(5 + 11/12, "feet"),
  58184. default: true
  58185. },
  58186. {
  58187. name: "Goddess",
  58188. height: math.unit(20 + 3/12, "feet")
  58189. },
  58190. {
  58191. name: "Breaker of Man",
  58192. height: math.unit(329 + 9/12, "feet")
  58193. },
  58194. {
  58195. name: "Solar Justice",
  58196. height: math.unit(0.6, "solarradii")
  58197. },
  58198. {
  58199. name: "She Who Judges",
  58200. height: math.unit(1, "universe")
  58201. },
  58202. ]
  58203. ))
  58204. characterMakers.push(() => makeCharacter(
  58205. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58206. {
  58207. casual_front: {
  58208. height: math.unit(6 + 1/12, "feet"),
  58209. weight: math.unit(190, "lb"),
  58210. preyCapacity: math.unit(1, "people"),
  58211. name: "Front",
  58212. image: {
  58213. source: "./media/characters/managarmr/casual-front.svg",
  58214. extra: 411/381,
  58215. bottom: 15/426
  58216. },
  58217. extraAttributes: {
  58218. "pawSize": {
  58219. name: "Paw Size",
  58220. power: 1,
  58221. type: "length",
  58222. base: math.unit(0.2, "meters")
  58223. },
  58224. },
  58225. form: "casual",
  58226. },
  58227. casual_back: {
  58228. height: math.unit(6 + 1/12, "feet"),
  58229. weight: math.unit(190, "lb"),
  58230. preyCapacity: math.unit(1, "people"),
  58231. name: "Back",
  58232. image: {
  58233. source: "./media/characters/managarmr/casual-back.svg",
  58234. extra: 413/383,
  58235. bottom: 13/426
  58236. },
  58237. extraAttributes: {
  58238. "pawSize": {
  58239. name: "Paw Size",
  58240. power: 1,
  58241. type: "length",
  58242. base: math.unit(0.2, "meters")
  58243. },
  58244. },
  58245. form: "casual",
  58246. },
  58247. base_front: {
  58248. height: math.unit(7, "feet"),
  58249. weight: math.unit(210, "lb"),
  58250. preyCapacity: math.unit(2, "people"),
  58251. name: "Front",
  58252. image: {
  58253. source: "./media/characters/managarmr/base-front.svg",
  58254. extra: 580/485,
  58255. bottom: 32/612
  58256. },
  58257. extraAttributes: {
  58258. "wingspan": {
  58259. name: "Wingspan",
  58260. power: 1,
  58261. type: "length",
  58262. base: math.unit(4, "meters")
  58263. },
  58264. "pawSize": {
  58265. name: "Paw Size",
  58266. power: 1,
  58267. type: "length",
  58268. base: math.unit(0.2, "meters")
  58269. },
  58270. },
  58271. form: "base",
  58272. },
  58273. "true-divine_front": {
  58274. height: math.unit(40, "feet"),
  58275. weight: math.unit(39000, "lb"),
  58276. preyCapacity: math.unit(375, "people"),
  58277. name: "Front",
  58278. image: {
  58279. source: "./media/characters/managarmr/true-divine-front.svg",
  58280. extra: 725/573,
  58281. bottom: 120/845
  58282. },
  58283. extraAttributes: {
  58284. "wingspan": {
  58285. name: "Wingspan",
  58286. power: 1,
  58287. type: "length",
  58288. base: math.unit(20, "meters")
  58289. },
  58290. "pawSize": {
  58291. name: "Paw Size",
  58292. power: 1,
  58293. type: "length",
  58294. base: math.unit(1.5, "meters")
  58295. },
  58296. },
  58297. form: "true-divine",
  58298. },
  58299. },
  58300. [
  58301. {
  58302. name: "Normal",
  58303. height: math.unit(6 + 1/12, "feet"),
  58304. form: "casual",
  58305. default: true
  58306. },
  58307. {
  58308. name: "Normal",
  58309. height: math.unit(7, "feet"),
  58310. form: "base",
  58311. default: true
  58312. },
  58313. ],
  58314. {
  58315. "casual": {
  58316. name: "Casual",
  58317. default: true
  58318. },
  58319. "base": {
  58320. name: "Base",
  58321. },
  58322. "true-divine": {
  58323. name: "True Divine",
  58324. },
  58325. }
  58326. ))
  58327. characterMakers.push(() => makeCharacter(
  58328. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58329. {
  58330. front: {
  58331. height: math.unit(1.8, "meters"),
  58332. weight: math.unit(110, "kg"),
  58333. name: "Front",
  58334. image: {
  58335. source: "./media/characters/mystra/front.svg",
  58336. extra: 529/442,
  58337. bottom: 31/560
  58338. }
  58339. },
  58340. frontLewd: {
  58341. height: math.unit(1.8, "meters"),
  58342. weight: math.unit(110, "kg"),
  58343. name: "Front (Lewd)",
  58344. image: {
  58345. source: "./media/characters/mystra/front-lewd.svg",
  58346. extra: 529/442,
  58347. bottom: 31/560
  58348. }
  58349. },
  58350. head: {
  58351. height: math.unit(1.63, "feet"),
  58352. name: "Head",
  58353. image: {
  58354. source: "./media/characters/mystra/head.svg"
  58355. }
  58356. },
  58357. paw: {
  58358. height: math.unit(1.9, "feet"),
  58359. name: "Paw",
  58360. image: {
  58361. source: "./media/characters/mystra/paw.svg"
  58362. }
  58363. },
  58364. },
  58365. [
  58366. {
  58367. name: "Incognito",
  58368. height: math.unit(2.3, "meters")
  58369. },
  58370. {
  58371. name: "Small Macro",
  58372. height: math.unit(300, "meters")
  58373. },
  58374. {
  58375. name: "Small Mega",
  58376. height: math.unit(2, "km")
  58377. },
  58378. {
  58379. name: "Mega",
  58380. height: math.unit(30, "km")
  58381. },
  58382. {
  58383. name: "Small Giga",
  58384. height: math.unit(100, "km")
  58385. },
  58386. {
  58387. name: "Giga",
  58388. height: math.unit(1000, "km"),
  58389. default: true
  58390. },
  58391. {
  58392. name: "Continental",
  58393. height: math.unit(5000, "km")
  58394. },
  58395. {
  58396. name: "Terra",
  58397. height: math.unit(20000, "km")
  58398. },
  58399. {
  58400. name: "Solar",
  58401. height: math.unit(2e6, "km")
  58402. },
  58403. {
  58404. name: "Galactic",
  58405. height: math.unit(528502, "lightyears")
  58406. },
  58407. {
  58408. name: "Universal",
  58409. height: math.unit(20, "universes")
  58410. },
  58411. ]
  58412. ))
  58413. characterMakers.push(() => makeCharacter(
  58414. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58415. {
  58416. front: {
  58417. height: math.unit(2, "meters"),
  58418. weight: math.unit(140, "kg"),
  58419. name: "Front",
  58420. image: {
  58421. source: "./media/characters/caleb/front.svg",
  58422. extra: 873/817,
  58423. bottom: 47/920
  58424. }
  58425. },
  58426. back: {
  58427. height: math.unit(2, "meters"),
  58428. weight: math.unit(140, "kg"),
  58429. name: "Back",
  58430. image: {
  58431. source: "./media/characters/caleb/back.svg",
  58432. extra: 877/828,
  58433. bottom: 24/901
  58434. }
  58435. },
  58436. snakeTail: {
  58437. height: math.unit(1.44, "feet"),
  58438. name: "Snake Tail",
  58439. image: {
  58440. source: "./media/characters/caleb/snake-tail.svg"
  58441. }
  58442. },
  58443. dick: {
  58444. height: math.unit(2.6, "feet"),
  58445. name: "Dick",
  58446. image: {
  58447. source: "./media/characters/caleb/dick.svg"
  58448. }
  58449. },
  58450. },
  58451. [
  58452. {
  58453. name: "Incognito",
  58454. height: math.unit(3, "meters")
  58455. },
  58456. {
  58457. name: "Home Size",
  58458. height: math.unit(200, "meters"),
  58459. default: true
  58460. },
  58461. {
  58462. name: "Macro",
  58463. height: math.unit(500, "meters")
  58464. },
  58465. {
  58466. name: "Big Macro",
  58467. height: math.unit(5, "km")
  58468. },
  58469. {
  58470. name: "Giga",
  58471. height: math.unit(250, "km")
  58472. },
  58473. {
  58474. name: "Giga+",
  58475. height: math.unit(5000, "km")
  58476. },
  58477. {
  58478. name: "Small Terra",
  58479. height: math.unit(35e3, "km")
  58480. },
  58481. {
  58482. name: "Terra",
  58483. height: math.unit(2e6, "km")
  58484. },
  58485. {
  58486. name: "Terra+",
  58487. height: math.unit(1.5e6, "km")
  58488. },
  58489. ]
  58490. ))
  58491. characterMakers.push(() => makeCharacter(
  58492. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58493. {
  58494. front: {
  58495. height: math.unit(2, "meters"),
  58496. weight: math.unit(120, "kg"),
  58497. name: "Front",
  58498. image: {
  58499. source: "./media/characters/gilirian/front.svg",
  58500. extra: 805/737,
  58501. bottom: 13/818
  58502. }
  58503. },
  58504. side: {
  58505. height: math.unit(2, "meters"),
  58506. weight: math.unit(120, "kg"),
  58507. name: "Side",
  58508. image: {
  58509. source: "./media/characters/gilirian/side.svg",
  58510. extra: 810/746,
  58511. bottom: 6/816
  58512. }
  58513. },
  58514. back: {
  58515. height: math.unit(2, "meters"),
  58516. weight: math.unit(120, "kg"),
  58517. name: "Back",
  58518. image: {
  58519. source: "./media/characters/gilirian/back.svg",
  58520. extra: 815/745,
  58521. bottom: 15/830
  58522. }
  58523. },
  58524. frontNsfw: {
  58525. height: math.unit(2, "meters"),
  58526. weight: math.unit(120, "kg"),
  58527. name: "Front (NSFW)",
  58528. image: {
  58529. source: "./media/characters/gilirian/front-nsfw.svg",
  58530. extra: 805/737,
  58531. bottom: 13/818
  58532. }
  58533. },
  58534. sideNsfw: {
  58535. height: math.unit(2, "meters"),
  58536. weight: math.unit(120, "kg"),
  58537. name: "Side (NSFW)",
  58538. image: {
  58539. source: "./media/characters/gilirian/side-nsfw.svg",
  58540. extra: 810/746,
  58541. bottom: 6/816
  58542. }
  58543. },
  58544. },
  58545. [
  58546. {
  58547. name: "Incognito",
  58548. height: math.unit(2, "meters"),
  58549. default: true
  58550. },
  58551. {
  58552. name: "Macro",
  58553. height: math.unit(250, "meters")
  58554. },
  58555. {
  58556. name: "Big Macro",
  58557. height: math.unit(1500, "meters")
  58558. },
  58559. {
  58560. name: "Mega",
  58561. height: math.unit(40, "km")
  58562. },
  58563. {
  58564. name: "Giga",
  58565. height: math.unit(300, "km")
  58566. },
  58567. {
  58568. name: "Extra Giga",
  58569. height: math.unit(5000, "km")
  58570. },
  58571. {
  58572. name: "Small Terra",
  58573. height: math.unit(10e3, "km")
  58574. },
  58575. {
  58576. name: "Terra",
  58577. height: math.unit(3e5, "km")
  58578. },
  58579. {
  58580. name: "Galactic",
  58581. height: math.unit(369950, "lightyears")
  58582. },
  58583. ]
  58584. ))
  58585. characterMakers.push(() => makeCharacter(
  58586. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58587. {
  58588. front: {
  58589. height: math.unit(2.5, "meters"),
  58590. weight: math.unit(230, "lb"),
  58591. name: "Front",
  58592. image: {
  58593. source: "./media/characters/tarken/front.svg",
  58594. extra: 764/720,
  58595. bottom: 49/813
  58596. }
  58597. },
  58598. back: {
  58599. height: math.unit(2.5, "meters"),
  58600. weight: math.unit(230, "lb"),
  58601. name: "Back",
  58602. image: {
  58603. source: "./media/characters/tarken/back.svg",
  58604. extra: 756/720,
  58605. bottom: 35/791
  58606. }
  58607. },
  58608. frontNsfw: {
  58609. height: math.unit(2.5, "meters"),
  58610. weight: math.unit(230, "lb"),
  58611. name: "Front (NSFW)",
  58612. image: {
  58613. source: "./media/characters/tarken/front-nsfw.svg",
  58614. extra: 764/720,
  58615. bottom: 49/813
  58616. }
  58617. },
  58618. backNsfw: {
  58619. height: math.unit(2.5, "meters"),
  58620. weight: math.unit(230, "lb"),
  58621. name: "Back (NSFW)",
  58622. image: {
  58623. source: "./media/characters/tarken/back-nsfw.svg",
  58624. extra: 756/720,
  58625. bottom: 35/791
  58626. }
  58627. },
  58628. head: {
  58629. height: math.unit(2.22, "feet"),
  58630. name: "Head",
  58631. image: {
  58632. source: "./media/characters/tarken/head.svg"
  58633. }
  58634. },
  58635. tail: {
  58636. height: math.unit(5.25, "feet"),
  58637. name: "Tail",
  58638. image: {
  58639. source: "./media/characters/tarken/tail.svg"
  58640. }
  58641. },
  58642. dick: {
  58643. height: math.unit(1.95, "feet"),
  58644. name: "Dick",
  58645. image: {
  58646. source: "./media/characters/tarken/dick.svg"
  58647. }
  58648. },
  58649. hand: {
  58650. height: math.unit(1.78, "feet"),
  58651. name: "Hand",
  58652. image: {
  58653. source: "./media/characters/tarken/hand.svg"
  58654. }
  58655. },
  58656. beam: {
  58657. height: math.unit(1.5, "feet"),
  58658. name: "Beam",
  58659. image: {
  58660. source: "./media/characters/tarken/beam.svg"
  58661. }
  58662. },
  58663. },
  58664. [
  58665. {
  58666. name: "Original Size",
  58667. height: math.unit(2.5, "meters")
  58668. },
  58669. {
  58670. name: "Macro",
  58671. height: math.unit(150, "meters"),
  58672. default: true
  58673. },
  58674. {
  58675. name: "Macro+",
  58676. height: math.unit(300, "meters")
  58677. },
  58678. {
  58679. name: "Mega",
  58680. height: math.unit(2, "km")
  58681. },
  58682. {
  58683. name: "Mega+",
  58684. height: math.unit(35, "km")
  58685. },
  58686.  {
  58687. name: "Mega++",
  58688. height: math.unit(60, "km")
  58689. },
  58690. {
  58691. name: "Giga",
  58692. height: math.unit(200, "km")
  58693. },
  58694. {
  58695. name: "Giga+",
  58696. height: math.unit(2500, "km")
  58697. },
  58698. {
  58699. name: "Giga++",
  58700. height: math.unit(6600, "km")
  58701. },
  58702. {
  58703. name: "Terra",
  58704. height: math.unit(20000, "km")
  58705. },
  58706. {
  58707. name: "Terra+",
  58708. height: math.unit(300000, "km")
  58709. },
  58710. ]
  58711. ))
  58712. characterMakers.push(() => makeCharacter(
  58713. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58714. {
  58715. magpie_dressed: {
  58716. height: math.unit(1.7, "meters"),
  58717. weight: math.unit(70, "kg"),
  58718. name: "Dressed",
  58719. image: {
  58720. source: "./media/characters/otreus/magpie-dressed.svg",
  58721. extra: 691/672,
  58722. bottom: 116/807
  58723. },
  58724. form: "magpie",
  58725. default: true
  58726. },
  58727. magpie_nude: {
  58728. height: math.unit(1.7, "meters"),
  58729. weight: math.unit(70, "kg"),
  58730. name: "Nude",
  58731. image: {
  58732. source: "./media/characters/otreus/magpie-nude.svg",
  58733. extra: 691/672,
  58734. bottom: 116/807
  58735. },
  58736. form: "magpie",
  58737. },
  58738. magpie_dressedLewd: {
  58739. height: math.unit(1.7, "meters"),
  58740. weight: math.unit(70, "kg"),
  58741. name: "Dressed (Lewd)",
  58742. image: {
  58743. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58744. extra: 691/672,
  58745. bottom: 116/807
  58746. },
  58747. form: "magpie",
  58748. },
  58749. magpie_nudeLewd: {
  58750. height: math.unit(1.7, "meters"),
  58751. weight: math.unit(70, "kg"),
  58752. name: "Nude (Lewd)",
  58753. image: {
  58754. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58755. extra: 691/672,
  58756. bottom: 116/807
  58757. },
  58758. form: "magpie",
  58759. },
  58760. magpie_leftFoot: {
  58761. height: math.unit(1.58, "feet"),
  58762. name: "Left Foot",
  58763. image: {
  58764. source: "./media/characters/otreus/magpie-left-foot.svg"
  58765. },
  58766. form: "magpie",
  58767. },
  58768. magpie_rightFoot: {
  58769. height: math.unit(1.58, "feet"),
  58770. name: "Right Foot",
  58771. image: {
  58772. source: "./media/characters/otreus/magpie-right-foot.svg"
  58773. },
  58774. form: "magpie",
  58775. },
  58776. magpie_wingspan: {
  58777. height: math.unit(2, "meters"),
  58778. weight: math.unit(70, "kg"),
  58779. name: "Wingspan",
  58780. image: {
  58781. source: "./media/characters/otreus/magpie-wingspan.svg"
  58782. },
  58783. extraAttributes: {
  58784. "wingspan": {
  58785. name: "Wingspan",
  58786. power: 1,
  58787. type: "length",
  58788. base: math.unit(3.35, "meters")
  58789. },
  58790. },
  58791. form: "magpie",
  58792. },
  58793. hippogriff_dressed: {
  58794. height: math.unit(1.7, "meters"),
  58795. weight: math.unit(70, "kg"),
  58796. name: "Dressed",
  58797. image: {
  58798. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58799. extra: 710/689,
  58800. bottom: 67/777
  58801. },
  58802. form: "hippogriff",
  58803. default: true
  58804. },
  58805. hippogriff_nude: {
  58806. height: math.unit(1.7, "meters"),
  58807. weight: math.unit(70, "kg"),
  58808. name: "Nude",
  58809. image: {
  58810. source: "./media/characters/otreus/hippogriff-nude.svg",
  58811. extra: 710/689,
  58812. bottom: 67/777
  58813. },
  58814. form: "hippogriff",
  58815. },
  58816. hippogriff_dressedLewd: {
  58817. height: math.unit(1.7, "meters"),
  58818. weight: math.unit(70, "kg"),
  58819. name: "Dressed (Lewd)",
  58820. image: {
  58821. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58822. extra: 710/689,
  58823. bottom: 67/777
  58824. },
  58825. form: "hippogriff",
  58826. },
  58827. hippogriff_nudeLewd: {
  58828. height: math.unit(1.7, "meters"),
  58829. weight: math.unit(70, "kg"),
  58830. name: "Nude (Lewd)",
  58831. image: {
  58832. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58833. extra: 710/689,
  58834. bottom: 67/777
  58835. },
  58836. form: "hippogriff",
  58837. },
  58838. },
  58839. [
  58840. {
  58841. name: "Original Size",
  58842. height: math.unit(1.7, "meters"),
  58843. allForms: true
  58844. },
  58845. {
  58846. name: "Incognito Size",
  58847. height: math.unit(2, "meters"),
  58848. allForms: true
  58849. },
  58850. {
  58851. name: "Mega",
  58852. height: math.unit(2, "km"),
  58853. allForms: true
  58854. },
  58855. {
  58856. name: "Mega+",
  58857. height: math.unit(40, "km"),
  58858. allForms: true
  58859. },
  58860. {
  58861. name: "Giga",
  58862. height: math.unit(250, "km"),
  58863. allForms: true
  58864. },
  58865. {
  58866. name: "Giga+",
  58867. height: math.unit(3000, "km"),
  58868. allForms: true
  58869. },
  58870. {
  58871. name: "Terra",
  58872. height: math.unit(20000, "km"),
  58873. allForms: true
  58874. },
  58875. {
  58876. name: "Solar (Home Size)",
  58877. height: math.unit(3e6, "km"),
  58878. allForms: true,
  58879. default: true
  58880. },
  58881. ],
  58882. {
  58883. "magpie": {
  58884. name: "Magpie",
  58885. default: true
  58886. },
  58887. "hippogriff": {
  58888. name: "Hippogriff",
  58889. },
  58890. }
  58891. ))
  58892. characterMakers.push(() => makeCharacter(
  58893. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58894. {
  58895. frontDressed: {
  58896. height: math.unit(1.8, "meters"),
  58897. weight: math.unit(90, "kg"),
  58898. name: "Front (Dressed)",
  58899. image: {
  58900. source: "./media/characters/thalia/front-dressed.svg",
  58901. extra: 478/402,
  58902. bottom: 55/533
  58903. }
  58904. },
  58905. backDressed: {
  58906. height: math.unit(1.8, "meters"),
  58907. weight: math.unit(90, "kg"),
  58908. name: "Back (Dressed)",
  58909. image: {
  58910. source: "./media/characters/thalia/back-dressed.svg",
  58911. extra: 500/424,
  58912. bottom: 15/515
  58913. }
  58914. },
  58915. frontNude: {
  58916. height: math.unit(1.8, "meters"),
  58917. weight: math.unit(90, "kg"),
  58918. name: "Front (Nude)",
  58919. image: {
  58920. source: "./media/characters/thalia/front-nude.svg",
  58921. extra: 478/402,
  58922. bottom: 55/533
  58923. }
  58924. },
  58925. backNude: {
  58926. height: math.unit(1.8, "meters"),
  58927. weight: math.unit(90, "kg"),
  58928. name: "Back (Nude)",
  58929. image: {
  58930. source: "./media/characters/thalia/back-nude.svg",
  58931. extra: 500/424,
  58932. bottom: 15/515
  58933. }
  58934. },
  58935. },
  58936. [
  58937. {
  58938. name: "Incognito",
  58939. height: math.unit(3, "meters")
  58940. },
  58941. {
  58942. name: "Macro",
  58943. height: math.unit(500, "meters")
  58944. },
  58945. {
  58946. name: "Mega",
  58947. height: math.unit(5, "km")
  58948. },
  58949. {
  58950. name: "Mega+",
  58951. height: math.unit(30, "km")
  58952. },
  58953. {
  58954. name: "Giga",
  58955. height: math.unit(350, "km")
  58956. },
  58957. {
  58958. name: "Giga+",
  58959. height: math.unit(4000, "km")
  58960. },
  58961. {
  58962. name: "Terra",
  58963. height: math.unit(35000, "km")
  58964. },
  58965. {
  58966. name: "Original Size",
  58967. height: math.unit(130000, "km")
  58968. },
  58969. {
  58970. name: "Solar (Home Size)",
  58971. height: math.unit(4e6, "km"),
  58972. default: true
  58973. },
  58974. ]
  58975. ))
  58976. characterMakers.push(() => makeCharacter(
  58977. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58978. {
  58979. front: {
  58980. height: math.unit(1.8, "meters"),
  58981. weight: math.unit(95, "kg"),
  58982. name: "Front",
  58983. image: {
  58984. source: "./media/characters/shango/front.svg",
  58985. extra: 1925/1774,
  58986. bottom: 67/1992
  58987. }
  58988. },
  58989. back: {
  58990. height: math.unit(1.8, "meters"),
  58991. weight: math.unit(95, "kg"),
  58992. name: "Back",
  58993. image: {
  58994. source: "./media/characters/shango/back.svg",
  58995. extra: 1915/1766,
  58996. bottom: 52/1967
  58997. }
  58998. },
  58999. frontLewd: {
  59000. height: math.unit(1.8, "meters"),
  59001. weight: math.unit(95, "kg"),
  59002. name: "Front (Lewd)",
  59003. image: {
  59004. source: "./media/characters/shango/front-lewd.svg",
  59005. extra: 1925/1774,
  59006. bottom: 67/1992
  59007. }
  59008. },
  59009. backLewd: {
  59010. height: math.unit(1.8, "meters"),
  59011. weight: math.unit(95, "kg"),
  59012. name: "Back (Lewd)",
  59013. image: {
  59014. source: "./media/characters/shango/back-lewd.svg",
  59015. extra: 1915/1766,
  59016. bottom: 52/1967
  59017. }
  59018. },
  59019. maw: {
  59020. height: math.unit(1.64, "feet"),
  59021. name: "Maw",
  59022. image: {
  59023. source: "./media/characters/shango/maw.svg"
  59024. }
  59025. },
  59026. dick: {
  59027. height: math.unit(2.14, "feet"),
  59028. name: "Dick",
  59029. image: {
  59030. source: "./media/characters/shango/dick.svg"
  59031. }
  59032. },
  59033. },
  59034. [
  59035. {
  59036. name: "Incognito",
  59037. height: math.unit(1.8, "meters")
  59038. },
  59039. {
  59040. name: "Home Size",
  59041. height: math.unit(60, "meters"),
  59042. default: true
  59043. },
  59044. {
  59045. name: "Macro",
  59046. height: math.unit(450, "meters")
  59047. },
  59048. {
  59049. name: "Mega",
  59050. height: math.unit(6, "km")
  59051. },
  59052. {
  59053. name: "Mega+",
  59054. height: math.unit(35, "km")
  59055. },
  59056. {
  59057. name: "Giga",
  59058. height: math.unit(500, "km")
  59059. },
  59060. {
  59061. name: "Giga+",
  59062. height: math.unit(5000, "km")
  59063. },
  59064. {
  59065. name: "Terra",
  59066. height: math.unit(60000, "km")
  59067. },
  59068. {
  59069. name: "Terra+",
  59070. height: math.unit(400000, "km")
  59071. },
  59072. ]
  59073. ))
  59074. characterMakers.push(() => makeCharacter(
  59075. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59076. {
  59077. front: {
  59078. height: math.unit(2, "meters"),
  59079. weight: math.unit(95, "kg"),
  59080. name: "Front",
  59081. image: {
  59082. source: "./media/characters/osiris-gryphon/front.svg",
  59083. extra: 1508/1313,
  59084. bottom: 87/1595
  59085. }
  59086. },
  59087. back: {
  59088. height: math.unit(2, "meters"),
  59089. weight: math.unit(95, "kg"),
  59090. name: "Back",
  59091. image: {
  59092. source: "./media/characters/osiris-gryphon/back.svg",
  59093. extra: 1436/1309,
  59094. bottom: 64/1500
  59095. }
  59096. },
  59097. frontLewd: {
  59098. height: math.unit(2, "meters"),
  59099. weight: math.unit(95, "kg"),
  59100. name: "Front-lewd",
  59101. image: {
  59102. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59103. extra: 1508/1313,
  59104. bottom: 87/1595
  59105. }
  59106. },
  59107. wing: {
  59108. height: math.unit(6.3333, "feet"),
  59109. name: "Wing",
  59110. image: {
  59111. source: "./media/characters/osiris-gryphon/wing.svg"
  59112. }
  59113. },
  59114. },
  59115. [
  59116. {
  59117. name: "Incognito",
  59118. height: math.unit(2, "meters")
  59119. },
  59120. {
  59121. name: "Home Size",
  59122. height: math.unit(30, "meters"),
  59123. default: true
  59124. },
  59125. {
  59126. name: "Macro",
  59127. height: math.unit(100, "meters")
  59128. },
  59129. {
  59130. name: "Macro+",
  59131. height: math.unit(350, "meters")
  59132. },
  59133. {
  59134. name: "Mega",
  59135. height: math.unit(40, "km")
  59136. },
  59137. {
  59138. name: "Giga",
  59139. height: math.unit(300, "km")
  59140. },
  59141. {
  59142. name: "Giga+",
  59143. height: math.unit(2000, "km")
  59144. },
  59145. {
  59146. name: "Terra",
  59147. height: math.unit(30000, "km")
  59148. },
  59149. ]
  59150. ))
  59151. characterMakers.push(() => makeCharacter(
  59152. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59153. {
  59154. front: {
  59155. height: math.unit(2.5, "meters"),
  59156. weight: math.unit(200, "kg"),
  59157. name: "Front",
  59158. image: {
  59159. source: "./media/characters/atlas-dragon/front.svg",
  59160. extra: 745/462,
  59161. bottom: 36/781
  59162. }
  59163. },
  59164. back: {
  59165. height: math.unit(2.5, "meters"),
  59166. weight: math.unit(200, "kg"),
  59167. name: "Back",
  59168. image: {
  59169. source: "./media/characters/atlas-dragon/back.svg",
  59170. extra: 848/822,
  59171. bottom: 57/905
  59172. }
  59173. },
  59174. frontLewd: {
  59175. height: math.unit(2.5, "meters"),
  59176. weight: math.unit(200, "kg"),
  59177. name: "Front (Lewd)",
  59178. image: {
  59179. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59180. extra: 745/462,
  59181. bottom: 36/781
  59182. }
  59183. },
  59184. backLewd: {
  59185. height: math.unit(2.5, "meters"),
  59186. weight: math.unit(200, "kg"),
  59187. name: "Back (Lewd)",
  59188. image: {
  59189. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59190. extra: 848/822,
  59191. bottom: 57/905
  59192. }
  59193. },
  59194. },
  59195. [
  59196. {
  59197. name: "Incognito",
  59198. height: math.unit(2.5, "meters")
  59199. },
  59200. {
  59201. name: "Small Macro",
  59202. height: math.unit(50, "meters")
  59203. },
  59204. {
  59205. name: "Macro",
  59206. height: math.unit(350, "meters")
  59207. },
  59208. {
  59209. name: "Mega",
  59210. height: math.unit(5.5, "kilometers")
  59211. },
  59212. {
  59213. name: "Mega+",
  59214. height: math.unit(50, "km")
  59215. },
  59216. {
  59217. name: "Giga",
  59218. height: math.unit(350, "km")
  59219. },
  59220. {
  59221. name: "Giga+",
  59222. height: math.unit(2000, "km")
  59223. },
  59224. {
  59225. name: "Giga++",
  59226. height: math.unit(6500, "km")
  59227. },
  59228. {
  59229. name: "Terra",
  59230. height: math.unit(30000, "km")
  59231. },
  59232. {
  59233. name: "Terra+",
  59234. height: math.unit(250000, "km")
  59235. },
  59236. {
  59237. name: "True Size",
  59238. height: math.unit(100, "multiverses"),
  59239. default: true
  59240. },
  59241. ]
  59242. ))
  59243. characterMakers.push(() => makeCharacter(
  59244. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59245. {
  59246. front: {
  59247. height: math.unit(1.8, "m"),
  59248. weight: math.unit(120, "kg"),
  59249. name: "Front",
  59250. image: {
  59251. source: "./media/characters/chey/front.svg",
  59252. extra: 1359/1270,
  59253. bottom: 18/1377
  59254. }
  59255. },
  59256. arm: {
  59257. height: math.unit(2.05, "feet"),
  59258. name: "Arm",
  59259. image: {
  59260. source: "./media/characters/chey/arm.svg"
  59261. }
  59262. },
  59263. head: {
  59264. height: math.unit(1.89, "feet"),
  59265. name: "Head",
  59266. image: {
  59267. source: "./media/characters/chey/head.svg"
  59268. }
  59269. },
  59270. },
  59271. [
  59272. {
  59273. name: "Original Size",
  59274. height: math.unit(5, "cm")
  59275. },
  59276. {
  59277. name: "Incognito Size",
  59278. height: math.unit(2.4, "m")
  59279. },
  59280. {
  59281. name: "Home Size",
  59282. height: math.unit(200, "meters"),
  59283. default: true
  59284. },
  59285. {
  59286. name: "Mega",
  59287. height: math.unit(2, "km")
  59288. },
  59289. {
  59290. name: "Giga (Preferred Size)",
  59291. height: math.unit(2000, "km")
  59292. },
  59293. {
  59294. name: "Giga+",
  59295. height: math.unit(6000, "km")
  59296. },
  59297. {
  59298. name: "Terra",
  59299. height: math.unit(17000, "km")
  59300. },
  59301. {
  59302. name: "Terra+",
  59303. height: math.unit(75000, "km")
  59304. },
  59305. {
  59306. name: "Terra++",
  59307. height: math.unit(225000, "km")
  59308. },
  59309. ]
  59310. ))
  59311. characterMakers.push(() => makeCharacter(
  59312. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59313. {
  59314. side: {
  59315. height: math.unit(7.8, "meters"),
  59316. name: "Side",
  59317. image: {
  59318. source: "./media/characters/ragnarok/side.svg",
  59319. extra: 725/621,
  59320. bottom: 72/797
  59321. }
  59322. },
  59323. },
  59324. [
  59325. {
  59326. name: "Normal",
  59327. height: math.unit(7.8, "meters"),
  59328. default: true
  59329. },
  59330. ]
  59331. ))
  59332. characterMakers.push(() => makeCharacter(
  59333. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59334. {
  59335. hyena_front: {
  59336. height: math.unit(2.1, "meters"),
  59337. weight: math.unit(110, "kg"),
  59338. name: "Front",
  59339. image: {
  59340. source: "./media/characters/nima/hyena-front.svg",
  59341. extra: 1904/1796,
  59342. bottom: 67/1971
  59343. },
  59344. form: "hyena",
  59345. },
  59346. hyena_back: {
  59347. height: math.unit(2.1, "meters"),
  59348. weight: math.unit(110, "kg"),
  59349. name: "Back",
  59350. image: {
  59351. source: "./media/characters/nima/hyena-back.svg",
  59352. extra: 1964/1884,
  59353. bottom: 35/1999
  59354. },
  59355. form: "hyena",
  59356. },
  59357. shark_front: {
  59358. height: math.unit(1.95, "meters"),
  59359. weight: math.unit(110, "kg"),
  59360. name: "Front",
  59361. image: {
  59362. source: "./media/characters/nima/shark-front.svg",
  59363. extra: 2238/2013,
  59364. bottom: 0/223
  59365. },
  59366. form: "shark",
  59367. },
  59368. paw: {
  59369. height: math.unit(1, "feet"),
  59370. name: "Paw",
  59371. image: {
  59372. source: "./media/characters/nima/paw.svg"
  59373. }
  59374. },
  59375. circlet: {
  59376. height: math.unit(0.3, "feet"),
  59377. name: "Circlet",
  59378. image: {
  59379. source: "./media/characters/nima/circlet.svg"
  59380. }
  59381. },
  59382. necklace: {
  59383. height: math.unit(1.2, "feet"),
  59384. name: "Necklace",
  59385. image: {
  59386. source: "./media/characters/nima/necklace.svg"
  59387. }
  59388. },
  59389. bracelet: {
  59390. height: math.unit(0.51, "feet"),
  59391. name: "Bracelet",
  59392. image: {
  59393. source: "./media/characters/nima/bracelet.svg"
  59394. }
  59395. },
  59396. armband: {
  59397. height: math.unit(1.3, "feet"),
  59398. name: "Armband",
  59399. image: {
  59400. source: "./media/characters/nima/armband.svg"
  59401. }
  59402. },
  59403. },
  59404. [
  59405. {
  59406. name: "Incognito",
  59407. height: math.unit(2.1, "meters"),
  59408. allForms: true
  59409. },
  59410. {
  59411. name: "Small Macro",
  59412. height: math.unit(50, "meters"),
  59413. allForms: true
  59414. },
  59415. {
  59416. name: "Macro",
  59417. height: math.unit(200, "meters"),
  59418. allForms: true
  59419. },
  59420. {
  59421. name: "Mega",
  59422. height: math.unit(2.5, "km"),
  59423. allForms: true
  59424. },
  59425. {
  59426. name: "Mega+",
  59427. height: math.unit(30, "km"),
  59428. allForms: true
  59429. },
  59430. {
  59431. name: "Giga (Home Size)",
  59432. height: math.unit(400, "km"),
  59433. allForms: true,
  59434. default: true
  59435. },
  59436. {
  59437. name: "Giga+",
  59438. height: math.unit(2500, "km"),
  59439. allForms: true
  59440. },
  59441. {
  59442. name: "Giga++",
  59443. height: math.unit(8000, "km"),
  59444. allForms: true
  59445. },
  59446. {
  59447. name: "Terra",
  59448. height: math.unit(20000, "km"),
  59449. allForms: true
  59450. },
  59451. {
  59452. name: "Terra+",
  59453. height: math.unit(70000, "km"),
  59454. allForms: true
  59455. },
  59456. {
  59457. name: "Terra++",
  59458. height: math.unit(600000, "km"),
  59459. allForms: true
  59460. },
  59461. {
  59462. name: "Galactic",
  59463. height: math.unit(40, "galaxies"),
  59464. allForms: true
  59465. },
  59466. {
  59467. name: "Universal",
  59468. height: math.unit(40, "universes"),
  59469. allForms: true
  59470. },
  59471. ],
  59472. {
  59473. "hyena": {
  59474. name: "Hyena",
  59475. default: true
  59476. },
  59477. "shark": {
  59478. name: "Shark",
  59479. },
  59480. }
  59481. ))
  59482. characterMakers.push(() => makeCharacter(
  59483. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59484. {
  59485. anthro_front: {
  59486. height: math.unit(1.5, "meters"),
  59487. name: "Front",
  59488. image: {
  59489. source: "./media/characters/adelaide/anthro-front.svg",
  59490. extra: 860/783,
  59491. bottom: 60/920
  59492. },
  59493. form: "anthro",
  59494. default: true
  59495. },
  59496. hand: {
  59497. height: math.unit(0.65, "feet"),
  59498. name: "Hand",
  59499. image: {
  59500. source: "./media/characters/adelaide/hand.svg"
  59501. },
  59502. form: "anthro"
  59503. },
  59504. foot: {
  59505. height: math.unit(1.38 * 259 / 314, "feet"),
  59506. name: "Foot",
  59507. image: {
  59508. source: "./media/characters/adelaide/foot.svg",
  59509. extra: 259/259,
  59510. bottom: 55/314
  59511. },
  59512. form: "anthro"
  59513. },
  59514. feather: {
  59515. height: math.unit(0.85, "feet"),
  59516. name: "Feather",
  59517. image: {
  59518. source: "./media/characters/adelaide/feather.svg"
  59519. },
  59520. form: "anthro"
  59521. },
  59522. feral_side: {
  59523. height: math.unit(1, "meters"),
  59524. name: "Side",
  59525. image: {
  59526. source: "./media/characters/adelaide/feral-side.svg",
  59527. extra: 550/467,
  59528. bottom: 37/587
  59529. },
  59530. form: "feral",
  59531. default: true
  59532. },
  59533. feral_hand: {
  59534. height: math.unit(0.58, "feet"),
  59535. name: "Hand",
  59536. image: {
  59537. source: "./media/characters/adelaide/hand.svg"
  59538. },
  59539. form: "feral"
  59540. },
  59541. feral_foot: {
  59542. height: math.unit(1.2 * 259 / 314, "feet"),
  59543. name: "Foot",
  59544. image: {
  59545. source: "./media/characters/adelaide/foot.svg",
  59546. extra: 259/259,
  59547. bottom: 55/314
  59548. },
  59549. form: "feral"
  59550. },
  59551. feral_feather: {
  59552. height: math.unit(0.63, "feet"),
  59553. name: "Feather",
  59554. image: {
  59555. source: "./media/characters/adelaide/feather.svg"
  59556. },
  59557. form: "feral"
  59558. },
  59559. },
  59560. [
  59561. {
  59562. name: "Normal",
  59563. height: math.unit(1.5, "meters"),
  59564. form: "anthro",
  59565. default: true
  59566. },
  59567. {
  59568. name: "Normal",
  59569. height: math.unit(1, "meters"),
  59570. form: "feral",
  59571. default: true
  59572. },
  59573. ],
  59574. {
  59575. "anthro": {
  59576. name: "Anthro",
  59577. default: true
  59578. },
  59579. "feral": {
  59580. name: "Feral",
  59581. },
  59582. }
  59583. ))
  59584. characterMakers.push(() => makeCharacter(
  59585. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59586. {
  59587. front: {
  59588. height: math.unit(2.5, "meters"),
  59589. name: "Front",
  59590. image: {
  59591. source: "./media/characters/goa/front.svg",
  59592. extra: 1109/1013,
  59593. bottom: 150/1259
  59594. }
  59595. },
  59596. },
  59597. [
  59598. {
  59599. name: "Normal",
  59600. height: math.unit(2.5, "meters"),
  59601. default: true
  59602. },
  59603. ]
  59604. ))
  59605. characterMakers.push(() => makeCharacter(
  59606. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59607. {
  59608. front: {
  59609. height: math.unit(2, "meters"),
  59610. weight: math.unit(100, "kg"),
  59611. name: "Front",
  59612. image: {
  59613. source: "./media/characters/kiki-weavile/front.svg",
  59614. extra: 357/332,
  59615. bottom: 60/417
  59616. }
  59617. },
  59618. },
  59619. [
  59620. {
  59621. name: "Normal",
  59622. height: math.unit(2, "meters"),
  59623. default: true
  59624. },
  59625. ]
  59626. ))
  59627. characterMakers.push(() => makeCharacter(
  59628. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59629. {
  59630. side: {
  59631. height: math.unit(1.6, "meters"),
  59632. name: "Side",
  59633. image: {
  59634. source: "./media/characters/liza/side.svg",
  59635. extra: 943/915,
  59636. bottom: 72/1015
  59637. }
  59638. },
  59639. },
  59640. [
  59641. {
  59642. name: "Normal",
  59643. height: math.unit(1.6, "meters"),
  59644. default: true
  59645. },
  59646. ]
  59647. ))
  59648. characterMakers.push(() => makeCharacter(
  59649. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59650. {
  59651. side: {
  59652. height: math.unit(2.5, "meters"),
  59653. preyCapacity: math.unit(1, "people"),
  59654. name: "Side",
  59655. image: {
  59656. source: "./media/characters/persephone-sweetbreath/side.svg",
  59657. extra: 796/700,
  59658. bottom: 44/840
  59659. }
  59660. },
  59661. sideVore: {
  59662. height: math.unit(2.5, "meters"),
  59663. preyCapacity: math.unit(1, "people"),
  59664. name: "Side (Full)",
  59665. image: {
  59666. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59667. extra: 796/700,
  59668. bottom: 44/840
  59669. }
  59670. },
  59671. },
  59672. [
  59673. {
  59674. name: "Normal",
  59675. height: math.unit(2.5, "meters"),
  59676. default: true
  59677. },
  59678. ]
  59679. ))
  59680. characterMakers.push(() => makeCharacter(
  59681. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59682. {
  59683. front: {
  59684. height: math.unit(32, "meters"),
  59685. name: "Front",
  59686. image: {
  59687. source: "./media/characters/pierce/front.svg",
  59688. extra: 1695/1475,
  59689. bottom: 185/1880
  59690. }
  59691. },
  59692. side: {
  59693. height: math.unit(32, "meters"),
  59694. name: "Side",
  59695. image: {
  59696. source: "./media/characters/pierce/side.svg",
  59697. extra: 974/859,
  59698. bottom: 43/1017
  59699. }
  59700. },
  59701. frontWingless: {
  59702. height: math.unit(32, "meters"),
  59703. name: "Front (Wingless)",
  59704. image: {
  59705. source: "./media/characters/pierce/front-wingless.svg",
  59706. extra: 1695/1475,
  59707. bottom: 185/1880
  59708. }
  59709. },
  59710. sideWingless: {
  59711. height: math.unit(32, "meters"),
  59712. name: "Side (Wingless)",
  59713. image: {
  59714. source: "./media/characters/pierce/side-wingless.svg",
  59715. extra: 974/859,
  59716. bottom: 43/1017
  59717. }
  59718. },
  59719. maw: {
  59720. height: math.unit(19.3, "meters"),
  59721. name: "Maw",
  59722. image: {
  59723. source: "./media/characters/pierce/maw.svg"
  59724. }
  59725. },
  59726. },
  59727. [
  59728. {
  59729. name: "Small",
  59730. height: math.unit(8.5, "meters")
  59731. },
  59732. {
  59733. name: "Normal",
  59734. height: math.unit(32, "meters"),
  59735. default: true
  59736. },
  59737. ]
  59738. ))
  59739. characterMakers.push(() => makeCharacter(
  59740. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59741. {
  59742. front: {
  59743. height: math.unit(2.3, "meters"),
  59744. weight: math.unit(165, "kg"),
  59745. name: "Front",
  59746. image: {
  59747. source: "./media/characters/shira/front.svg",
  59748. extra: 924/919,
  59749. bottom: 17/941
  59750. },
  59751. form: "cobra",
  59752. default: true
  59753. },
  59754. back: {
  59755. height: math.unit(2.3, "meters"),
  59756. weight: math.unit(165, "kg"),
  59757. name: "Back",
  59758. image: {
  59759. source: "./media/characters/shira/back.svg",
  59760. extra: 928/922,
  59761. bottom: 18/946
  59762. },
  59763. form: "cobra"
  59764. },
  59765. frontLewd: {
  59766. height: math.unit(2.3, "meters"),
  59767. weight: math.unit(165, "kg"),
  59768. name: "Front (Lewd)",
  59769. image: {
  59770. source: "./media/characters/shira/front-lewd.svg",
  59771. extra: 924/919,
  59772. bottom: 17/941
  59773. },
  59774. form: "cobra"
  59775. },
  59776. backLewd: {
  59777. height: math.unit(2.3, "meters"),
  59778. weight: math.unit(165, "kg"),
  59779. name: "Back (Lewd)",
  59780. image: {
  59781. source: "./media/characters/shira/back-lewd.svg",
  59782. extra: 928/922,
  59783. bottom: 18/946
  59784. },
  59785. form: "cobra"
  59786. },
  59787. maw: {
  59788. height: math.unit(1.14, "feet"),
  59789. name: "Maw",
  59790. image: {
  59791. source: "./media/characters/shira/maw.svg"
  59792. },
  59793. form: "cobra"
  59794. },
  59795. magma_front: {
  59796. height: math.unit(2.3, "meters"),
  59797. weight: math.unit(165, "kg"),
  59798. name: "Front",
  59799. image: {
  59800. source: "./media/characters/shira/magma-front.svg",
  59801. extra: 1870/1693,
  59802. bottom: 24/1894
  59803. },
  59804. form: "magma",
  59805. },
  59806. magma_back: {
  59807. height: math.unit(2.3, "meters"),
  59808. weight: math.unit(165, "kg"),
  59809. name: "Back",
  59810. image: {
  59811. source: "./media/characters/shira/magma-back.svg",
  59812. extra: 1918/1756,
  59813. bottom: 46/1964
  59814. },
  59815. form: "magma",
  59816. },
  59817. },
  59818. [
  59819. {
  59820. name: "Incognito",
  59821. height: math.unit(2.3, "meters"),
  59822. allForms: true
  59823. },
  59824. {
  59825. name: "Home Size",
  59826. height: math.unit(150, "meters"),
  59827. default: true,
  59828. allForms: true
  59829. },
  59830. {
  59831. name: "Macro",
  59832. height: math.unit(2, "km"),
  59833. allForms: true
  59834. },
  59835. {
  59836. name: "Mega",
  59837. height: math.unit(30, "km"),
  59838. allForms: true
  59839. },
  59840. {
  59841. name: "Giga",
  59842. height: math.unit(450, "km"),
  59843. allForms: true
  59844. },
  59845. {
  59846. name: "Giga+",
  59847. height: math.unit(3000, "km"),
  59848. allForms: true
  59849. },
  59850. {
  59851. name: "Giga++",
  59852. height: math.unit(6000, "km"),
  59853. allForms: true
  59854. },
  59855. {
  59856. name: "Terra",
  59857. height: math.unit(80000, "km"),
  59858. allForms: true
  59859. },
  59860. {
  59861. name: "Terra+",
  59862. height: math.unit(350000, "km"),
  59863. allForms: true
  59864. },
  59865. {
  59866. name: "Solar",
  59867. height: math.unit(1e6, "km"),
  59868. allForms: true
  59869. },
  59870. ],
  59871. {
  59872. "cobra": {
  59873. name: "Cobra",
  59874. default: true
  59875. },
  59876. "magma": {
  59877. name: "Magma Dragon",
  59878. },
  59879. }
  59880. ))
  59881. characterMakers.push(() => makeCharacter(
  59882. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59883. {
  59884. front: {
  59885. height: math.unit(2, "meters"),
  59886. weight: math.unit(160, "kg"),
  59887. name: "Front",
  59888. image: {
  59889. source: "./media/characters/daxerios/front.svg",
  59890. extra: 1334/1277,
  59891. bottom: 45/1379
  59892. }
  59893. },
  59894. frontLewd: {
  59895. height: math.unit(2, "meters"),
  59896. weight: math.unit(160, "kg"),
  59897. name: "Front (Lewd)",
  59898. image: {
  59899. source: "./media/characters/daxerios/front-lewd.svg",
  59900. extra: 1334/1277,
  59901. bottom: 45/1379
  59902. }
  59903. },
  59904. dick: {
  59905. height: math.unit(2.35, "feet"),
  59906. name: "Dick",
  59907. image: {
  59908. source: "./media/characters/daxerios/dick.svg"
  59909. }
  59910. },
  59911. },
  59912. [
  59913. {
  59914. name: "\"Small\"",
  59915. height: math.unit(5, "meters")
  59916. },
  59917. {
  59918. name: "Original Size",
  59919. height: math.unit(500, "meters"),
  59920. default: true
  59921. },
  59922. {
  59923. name: "Mega",
  59924. height: math.unit(2, "km")
  59925. },
  59926. {
  59927. name: "Mega+",
  59928. height: math.unit(35, "km")
  59929. },
  59930. {
  59931. name: "Giga",
  59932. height: math.unit(250, "km")
  59933. },
  59934. {
  59935. name: "Giga+",
  59936. height: math.unit(3000, "km")
  59937. },
  59938. {
  59939. name: "Terra",
  59940. height: math.unit(25000, "km")
  59941. },
  59942. {
  59943. name: "Terra+",
  59944. height: math.unit(300000, "km")
  59945. },
  59946. {
  59947. name: "Solar",
  59948. height: math.unit(1e6, "km")
  59949. },
  59950. ]
  59951. ))
  59952. characterMakers.push(() => makeCharacter(
  59953. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59954. {
  59955. front: {
  59956. height: math.unit(8 + 4/12, "feet"),
  59957. weight: math.unit(464, "lb"),
  59958. name: "Front",
  59959. image: {
  59960. source: "./media/characters/caveat/front.svg",
  59961. extra: 1861/1678,
  59962. bottom: 40/1901
  59963. }
  59964. },
  59965. },
  59966. [
  59967. {
  59968. name: "Normal",
  59969. height: math.unit(8 + 4/12, "feet"),
  59970. default: true
  59971. },
  59972. ]
  59973. ))
  59974. characterMakers.push(() => makeCharacter(
  59975. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59976. {
  59977. front: {
  59978. height: math.unit(12, "feet"),
  59979. weight: math.unit(1800, "lb"),
  59980. name: "Front",
  59981. image: {
  59982. source: "./media/characters/centbair/front.svg",
  59983. extra: 781/663,
  59984. bottom: 25/806
  59985. }
  59986. },
  59987. frontNsfw: {
  59988. height: math.unit(12, "feet"),
  59989. weight: math.unit(1800, "lb"),
  59990. name: "Front (NSFW)",
  59991. image: {
  59992. source: "./media/characters/centbair/front-nsfw.svg",
  59993. extra: 781/663,
  59994. bottom: 25/806
  59995. }
  59996. },
  59997. back: {
  59998. height: math.unit(12, "feet"),
  59999. weight: math.unit(1800, "lb"),
  60000. name: "Back",
  60001. image: {
  60002. source: "./media/characters/centbair/back.svg",
  60003. extra: 808/761,
  60004. bottom: 19/827
  60005. }
  60006. },
  60007. dick: {
  60008. height: math.unit(6.5, "feet"),
  60009. name: "Dick",
  60010. image: {
  60011. source: "./media/characters/centbair/dick.svg"
  60012. }
  60013. },
  60014. slit: {
  60015. height: math.unit(3.25, "feet"),
  60016. name: "Slit",
  60017. image: {
  60018. source: "./media/characters/centbair/slit.svg"
  60019. }
  60020. },
  60021. },
  60022. [
  60023. {
  60024. name: "Normal",
  60025. height: math.unit(12, "feet"),
  60026. default: true
  60027. },
  60028. ]
  60029. ))
  60030. characterMakers.push(() => makeCharacter(
  60031. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60032. {
  60033. front: {
  60034. height: math.unit(5 + 7/12, "feet"),
  60035. name: "Front",
  60036. image: {
  60037. source: "./media/characters/andy/front.svg",
  60038. extra: 634/588,
  60039. bottom: 36/670
  60040. },
  60041. extraAttributes: {
  60042. "pawLength": {
  60043. name: "Paw Length",
  60044. power: 1,
  60045. type: "length",
  60046. base: math.unit(1, "feet")
  60047. },
  60048. }
  60049. },
  60050. side: {
  60051. height: math.unit(5 + 7/12, "feet"),
  60052. name: "Side",
  60053. image: {
  60054. source: "./media/characters/andy/side.svg",
  60055. extra: 641/596,
  60056. bottom: 34/675
  60057. },
  60058. extraAttributes: {
  60059. "pawLength": {
  60060. name: "Paw Length",
  60061. power: 1,
  60062. type: "length",
  60063. base: math.unit(1, "feet")
  60064. },
  60065. }
  60066. },
  60067. back: {
  60068. height: math.unit(5 + 7/12, "feet"),
  60069. name: "Back",
  60070. image: {
  60071. source: "./media/characters/andy/back.svg",
  60072. extra: 618/583,
  60073. bottom: 39/657
  60074. },
  60075. extraAttributes: {
  60076. "pawLength": {
  60077. name: "Paw Length",
  60078. power: 1,
  60079. type: "length",
  60080. base: math.unit(1, "feet")
  60081. },
  60082. }
  60083. },
  60084. paw: {
  60085. height: math.unit(1.13, "feet"),
  60086. name: "Paw",
  60087. image: {
  60088. source: "./media/characters/andy/paw.svg"
  60089. }
  60090. },
  60091. },
  60092. [
  60093. {
  60094. name: "Micro",
  60095. height: math.unit(4, "inches")
  60096. },
  60097. {
  60098. name: "Normal",
  60099. height: math.unit(5 + 7/12, "feet"),
  60100. default: true
  60101. },
  60102. {
  60103. name: "Macro",
  60104. height: math.unit(390.42, "feet")
  60105. },
  60106. ]
  60107. ))
  60108. characterMakers.push(() => makeCharacter(
  60109. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60110. {
  60111. front: {
  60112. height: math.unit(7, "feet"),
  60113. weight: math.unit(250, "lb"),
  60114. name: "Front",
  60115. image: {
  60116. source: "./media/characters/vix-titan/front.svg",
  60117. extra: 460/428,
  60118. bottom: 15/475
  60119. },
  60120. extraAttributes: {
  60121. "pawWidth": {
  60122. name: "Paw Width",
  60123. power: 1,
  60124. type: "length",
  60125. base: math.unit(0.75, "feet")
  60126. },
  60127. }
  60128. },
  60129. },
  60130. [
  60131. {
  60132. name: "Normal",
  60133. height: math.unit(7, "feet"),
  60134. default: true
  60135. },
  60136. {
  60137. name: "Giant",
  60138. height: math.unit(1500, "feet")
  60139. },
  60140. {
  60141. name: "Mega",
  60142. height: math.unit(10, "miles")
  60143. },
  60144. {
  60145. name: "Giga",
  60146. height: math.unit(150, "miles")
  60147. },
  60148. {
  60149. name: "Tera",
  60150. height: math.unit(144000, "miles")
  60151. },
  60152. ]
  60153. ))
  60154. characterMakers.push(() => makeCharacter(
  60155. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60156. {
  60157. front: {
  60158. height: math.unit(6 + 2/12, "feet"),
  60159. name: "Front",
  60160. image: {
  60161. source: "./media/characters/reiku/front.svg",
  60162. extra: 1910/1757,
  60163. bottom: 103/2013
  60164. },
  60165. extraAttributes: {
  60166. "thighThickness": {
  60167. name: "Thigh Thickness",
  60168. power: 1,
  60169. type: "length",
  60170. base: math.unit(1.12, "feet")
  60171. },
  60172. "assThickness": {
  60173. name: "Ass Thickness",
  60174. power: 1,
  60175. type: "length",
  60176. base: math.unit(1.12*2, "feet")
  60177. },
  60178. }
  60179. },
  60180. side: {
  60181. height: math.unit(6 + 2/12, "feet"),
  60182. name: "Side",
  60183. image: {
  60184. source: "./media/characters/reiku/side.svg",
  60185. extra: 1846/1748,
  60186. bottom: 99/1945
  60187. },
  60188. extraAttributes: {
  60189. "thighThickness": {
  60190. name: "Thigh Thickness",
  60191. power: 1,
  60192. type: "length",
  60193. base: math.unit(1.12, "feet")
  60194. },
  60195. "assThickness": {
  60196. name: "Ass Thickness",
  60197. power: 1,
  60198. type: "length",
  60199. base: math.unit(1.12*2, "feet")
  60200. },
  60201. }
  60202. },
  60203. back: {
  60204. height: math.unit(6 + 2/12, "feet"),
  60205. name: "Back",
  60206. image: {
  60207. source: "./media/characters/reiku/back.svg",
  60208. extra: 1941/1786,
  60209. bottom: 34/1975
  60210. },
  60211. extraAttributes: {
  60212. "thighThickness": {
  60213. name: "Thigh Thickness",
  60214. power: 1,
  60215. type: "length",
  60216. base: math.unit(1.12, "feet")
  60217. },
  60218. "assThickness": {
  60219. name: "Ass Thickness",
  60220. power: 1,
  60221. type: "length",
  60222. base: math.unit(1.12*2, "feet")
  60223. },
  60224. }
  60225. },
  60226. head: {
  60227. height: math.unit(1.8, "feet"),
  60228. name: "Head",
  60229. image: {
  60230. source: "./media/characters/reiku/head.svg"
  60231. }
  60232. },
  60233. tailTop: {
  60234. height: math.unit(8.4, "feet"),
  60235. name: "Tail (Top)",
  60236. image: {
  60237. source: "./media/characters/reiku/tail-top.svg"
  60238. }
  60239. },
  60240. tailBottom: {
  60241. height: math.unit(8.4, "feet"),
  60242. name: "Tail (Bottom)",
  60243. image: {
  60244. source: "./media/characters/reiku/tail-bottom.svg"
  60245. }
  60246. },
  60247. foot: {
  60248. height: math.unit(2.6, "feet"),
  60249. name: "Foot",
  60250. image: {
  60251. source: "./media/characters/reiku/foot.svg"
  60252. }
  60253. },
  60254. footCurled: {
  60255. height: math.unit(2.3, "feet"),
  60256. name: "Foot (Curled)",
  60257. image: {
  60258. source: "./media/characters/reiku/foot-curled.svg"
  60259. }
  60260. },
  60261. footSide: {
  60262. height: math.unit(1.26, "feet"),
  60263. name: "Foot (Side)",
  60264. image: {
  60265. source: "./media/characters/reiku/foot-side.svg"
  60266. }
  60267. },
  60268. },
  60269. [
  60270. {
  60271. name: "Normal",
  60272. height: math.unit(6 + 2/12, "feet"),
  60273. default: true
  60274. },
  60275. ]
  60276. ))
  60277. characterMakers.push(() => makeCharacter(
  60278. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60279. {
  60280. front: {
  60281. height: math.unit(7, "feet"),
  60282. weight: math.unit(500, "kg"),
  60283. name: "Front",
  60284. image: {
  60285. source: "./media/characters/cialda/front.svg",
  60286. extra: 912/745,
  60287. bottom: 55/967
  60288. }
  60289. },
  60290. },
  60291. [
  60292. {
  60293. name: "Normal",
  60294. height: math.unit(7, "feet"),
  60295. default: true
  60296. },
  60297. ]
  60298. ))
  60299. characterMakers.push(() => makeCharacter(
  60300. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60301. {
  60302. side: {
  60303. height: math.unit(6, "feet"),
  60304. weight: math.unit(600, "lb"),
  60305. preyCapacity: math.unit(25, "liters"),
  60306. name: "Side",
  60307. image: {
  60308. source: "./media/characters/darkkin/side.svg",
  60309. extra: 1597/1447,
  60310. bottom: 101/1698
  60311. }
  60312. },
  60313. },
  60314. [
  60315. {
  60316. name: "Canon Height",
  60317. height: math.unit(568, "feet"),
  60318. default: true
  60319. },
  60320. ]
  60321. ))
  60322. characterMakers.push(() => makeCharacter(
  60323. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60324. {
  60325. front: {
  60326. height: math.unit(6, "feet"),
  60327. weight: math.unit(1500, "lb"),
  60328. preyCapacity: math.unit(3, "people"),
  60329. name: "Front",
  60330. image: {
  60331. source: "./media/characters/livnia/front.svg",
  60332. extra: 934/932,
  60333. bottom: 83/1017
  60334. }
  60335. },
  60336. back: {
  60337. height: math.unit(6, "feet"),
  60338. weight: math.unit(1500, "lb"),
  60339. preyCapacity: math.unit(3, "people"),
  60340. name: "Back",
  60341. image: {
  60342. source: "./media/characters/livnia/back.svg",
  60343. extra: 916/915,
  60344. bottom: 58/974
  60345. }
  60346. },
  60347. head: {
  60348. height: math.unit(1.53, "feet"),
  60349. name: "Head",
  60350. image: {
  60351. source: "./media/characters/livnia/head.svg"
  60352. }
  60353. },
  60354. maw: {
  60355. height: math.unit(0.78, "feet"),
  60356. name: "Maw",
  60357. image: {
  60358. source: "./media/characters/livnia/maw.svg"
  60359. }
  60360. },
  60361. genitals: {
  60362. height: math.unit(0.35, "feet"),
  60363. name: "Genitals",
  60364. image: {
  60365. source: "./media/characters/livnia/genitals.svg"
  60366. }
  60367. },
  60368. },
  60369. [
  60370. {
  60371. name: "Normal",
  60372. height: math.unit(1000, "feet"),
  60373. default: true
  60374. },
  60375. ]
  60376. ))
  60377. characterMakers.push(() => makeCharacter(
  60378. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60379. {
  60380. front: {
  60381. height: math.unit(4, "feet"),
  60382. weight: math.unit(73, "lb"),
  60383. name: "Front",
  60384. image: {
  60385. source: "./media/characters/hayaku/front.svg",
  60386. extra: 1011/888,
  60387. bottom: 33/1044
  60388. }
  60389. },
  60390. back: {
  60391. height: math.unit(4, "feet"),
  60392. weight: math.unit(73, "lb"),
  60393. name: "Back",
  60394. image: {
  60395. source: "./media/characters/hayaku/back.svg",
  60396. extra: 1040/930,
  60397. bottom: 20/1060
  60398. }
  60399. },
  60400. },
  60401. [
  60402. {
  60403. name: "Normal",
  60404. height: math.unit(4, "feet"),
  60405. default: true
  60406. },
  60407. ]
  60408. ))
  60409. characterMakers.push(() => makeCharacter(
  60410. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60411. {
  60412. front: {
  60413. height: math.unit(6 + 7/12, "feet"),
  60414. weight: math.unit(300, "lb"),
  60415. name: "Front",
  60416. image: {
  60417. source: "./media/characters/athena-bryzant/front.svg",
  60418. extra: 870/835,
  60419. bottom: 33/903
  60420. }
  60421. },
  60422. back: {
  60423. height: math.unit(6 + 7/12, "feet"),
  60424. weight: math.unit(300, "lb"),
  60425. name: "Back",
  60426. image: {
  60427. source: "./media/characters/athena-bryzant/back.svg",
  60428. extra: 858/823,
  60429. bottom: 30/888
  60430. }
  60431. },
  60432. head: {
  60433. height: math.unit(2.38, "feet"),
  60434. name: "Head",
  60435. image: {
  60436. source: "./media/characters/athena-bryzant/head.svg"
  60437. }
  60438. },
  60439. wings: {
  60440. height: math.unit(2.85, "feet"),
  60441. name: "Wings",
  60442. image: {
  60443. source: "./media/characters/athena-bryzant/wings.svg"
  60444. }
  60445. },
  60446. },
  60447. [
  60448. {
  60449. name: "Normal",
  60450. height: math.unit(6 + 7/12, "feet"),
  60451. default: true
  60452. },
  60453. {
  60454. name: "Big",
  60455. height: math.unit(8, "feet")
  60456. },
  60457. {
  60458. name: "Very Big",
  60459. height: math.unit(11, "feet")
  60460. },
  60461. ]
  60462. ))
  60463. characterMakers.push(() => makeCharacter(
  60464. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60465. {
  60466. side: {
  60467. height: math.unit(3, "meters"),
  60468. weight: math.unit(7500, "kg"),
  60469. preyCapacity: math.unit(1e12, "people"),
  60470. name: "Side",
  60471. image: {
  60472. source: "./media/characters/zel-kesh/side.svg",
  60473. extra: 910/407,
  60474. bottom: 147/1057
  60475. }
  60476. },
  60477. },
  60478. [
  60479. {
  60480. name: "Normal",
  60481. height: math.unit(3, "meters"),
  60482. default: true
  60483. },
  60484. ]
  60485. ))
  60486. characterMakers.push(() => makeCharacter(
  60487. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60488. {
  60489. front: {
  60490. height: math.unit(2, "meters"),
  60491. weight: math.unit(95, "kg"),
  60492. name: "Front",
  60493. image: {
  60494. source: "./media/characters/kane-fox/front.svg",
  60495. extra: 945/888,
  60496. bottom: 27/972
  60497. }
  60498. },
  60499. back: {
  60500. height: math.unit(2, "meters"),
  60501. weight: math.unit(95, "kg"),
  60502. name: "Back",
  60503. image: {
  60504. source: "./media/characters/kane-fox/back.svg",
  60505. extra: 959/914,
  60506. bottom: 15/974
  60507. }
  60508. },
  60509. frontLewd: {
  60510. height: math.unit(2, "meters"),
  60511. weight: math.unit(95, "kg"),
  60512. name: "Front (Lewd)",
  60513. image: {
  60514. source: "./media/characters/kane-fox/front-lewd.svg",
  60515. extra: 945/888,
  60516. bottom: 27/972
  60517. }
  60518. },
  60519. },
  60520. [
  60521. {
  60522. name: "Home Size",
  60523. height: math.unit(2, "meters"),
  60524. default: true
  60525. },
  60526. {
  60527. name: "Macro",
  60528. height: math.unit(200, "meters")
  60529. },
  60530. {
  60531. name: "Small Mega",
  60532. height: math.unit(3, "km")
  60533. },
  60534. {
  60535. name: "Mega",
  60536. height: math.unit(50, "km")
  60537. },
  60538. {
  60539. name: "Giga",
  60540. height: math.unit(200, "km")
  60541. },
  60542. {
  60543. name: "Giga+",
  60544. height: math.unit(2500, "km")
  60545. },
  60546. {
  60547. name: "Terra",
  60548. height: math.unit(70000, "km")
  60549. },
  60550. {
  60551. name: "Terra+",
  60552. height: math.unit(150000, "km")
  60553. },
  60554. {
  60555. name: "Terra++",
  60556. height: math.unit(400000, "km")
  60557. },
  60558. ]
  60559. ))
  60560. characterMakers.push(() => makeCharacter(
  60561. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60562. {
  60563. otter_front: {
  60564. height: math.unit(1.8, "meters"),
  60565. weight: math.unit(90, "kg"),
  60566. name: "Front",
  60567. image: {
  60568. source: "./media/characters/ayranus/otter-front.svg",
  60569. extra: 468/452,
  60570. bottom: 43/511
  60571. },
  60572. form: "otter",
  60573. },
  60574. otter_frontLewd: {
  60575. height: math.unit(1.8, "meters"),
  60576. weight: math.unit(90, "kg"),
  60577. name: "Front (Lewd)",
  60578. image: {
  60579. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60580. extra: 468/452,
  60581. bottom: 43/511
  60582. },
  60583. form: "otter",
  60584. },
  60585. lionbat_front: {
  60586. height: math.unit(1.8, "meters"),
  60587. weight: math.unit(90, "kg"),
  60588. name: "Front (Lewd)",
  60589. image: {
  60590. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60591. extra: 797/740,
  60592. bottom: 78/875
  60593. },
  60594. form: "lionbat",
  60595. },
  60596. paw: {
  60597. height: math.unit(1.5, "feet"),
  60598. name: "Paw",
  60599. image: {
  60600. source: "./media/characters/ayranus/paw.svg"
  60601. },
  60602. },
  60603. },
  60604. [
  60605. {
  60606. name: "Incognito",
  60607. height: math.unit(1.8, "meters"),
  60608. allForms: true
  60609. },
  60610. {
  60611. name: "Macro",
  60612. height: math.unit(60, "meters"),
  60613. allForms: true
  60614. },
  60615. {
  60616. name: "Macro+",
  60617. height: math.unit(200, "meters"),
  60618. allForms: true
  60619. },
  60620. {
  60621. name: "Mega",
  60622. height: math.unit(35, "km"),
  60623. allForms: true
  60624. },
  60625. {
  60626. name: "Giga",
  60627. height: math.unit(220, "km"),
  60628. allForms: true
  60629. },
  60630. {
  60631. name: "Giga+",
  60632. height: math.unit(1500, "km"),
  60633. allForms: true
  60634. },
  60635. {
  60636. name: "Terra",
  60637. height: math.unit(13000, "km"),
  60638. allForms: true
  60639. },
  60640. {
  60641. name: "Terra+",
  60642. height: math.unit(500000, "km"),
  60643. allForms: true
  60644. },
  60645. {
  60646. name: "Galactic",
  60647. height: math.unit(486080, "parsecs"),
  60648. default: true,
  60649. allForms: true
  60650. },
  60651. ],
  60652. {
  60653. "otter": {
  60654. name: "Otter",
  60655. default: true
  60656. },
  60657. "lionbat": {
  60658. name: "Lionbat",
  60659. },
  60660. }
  60661. ))
  60662. characterMakers.push(() => makeCharacter(
  60663. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60664. {
  60665. front: {
  60666. height: math.unit(7 + 4/12, "feet"),
  60667. weight: math.unit(400, "lb"),
  60668. name: "Front",
  60669. image: {
  60670. source: "./media/characters/proxy/front.svg",
  60671. extra: 1605/1542,
  60672. bottom: 55/1660
  60673. }
  60674. },
  60675. side: {
  60676. height: math.unit(7 + 4/12, "feet"),
  60677. weight: math.unit(400, "lb"),
  60678. name: "Side",
  60679. image: {
  60680. source: "./media/characters/proxy/side.svg",
  60681. extra: 794/759,
  60682. bottom: 6/800
  60683. }
  60684. },
  60685. hand: {
  60686. height: math.unit(1.54, "feet"),
  60687. name: "Hand",
  60688. image: {
  60689. source: "./media/characters/proxy/hand.svg"
  60690. }
  60691. },
  60692. paw: {
  60693. height: math.unit(1.53, "feet"),
  60694. name: "Paw",
  60695. image: {
  60696. source: "./media/characters/proxy/paw.svg"
  60697. }
  60698. },
  60699. maw: {
  60700. height: math.unit(1.9, "feet"),
  60701. name: "Maw",
  60702. image: {
  60703. source: "./media/characters/proxy/maw.svg"
  60704. }
  60705. },
  60706. },
  60707. [
  60708. {
  60709. name: "Normal",
  60710. height: math.unit(7 + 4/12, "feet"),
  60711. default: true
  60712. },
  60713. ]
  60714. ))
  60715. characterMakers.push(() => makeCharacter(
  60716. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60717. {
  60718. front: {
  60719. height: math.unit(4, "meters"),
  60720. name: "Front",
  60721. image: {
  60722. source: "./media/characters/crocozilla/front.svg",
  60723. extra: 1790/1742,
  60724. bottom: 78/1868
  60725. }
  60726. },
  60727. },
  60728. [
  60729. {
  60730. name: "Normal",
  60731. height: math.unit(4, "meters"),
  60732. default: true
  60733. },
  60734. ]
  60735. ))
  60736. characterMakers.push(() => makeCharacter(
  60737. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60738. {
  60739. front: {
  60740. height: math.unit(1.8, "meters"),
  60741. weight: math.unit(120, "kg"),
  60742. name: "Front",
  60743. image: {
  60744. source: "./media/characters/kurz/front.svg",
  60745. extra: 1960/1824,
  60746. bottom: 41/2001
  60747. }
  60748. },
  60749. back: {
  60750. height: math.unit(1.8, "meters"),
  60751. weight: math.unit(120, "kg"),
  60752. name: "Back",
  60753. image: {
  60754. source: "./media/characters/kurz/back.svg",
  60755. extra: 1906/1787,
  60756. bottom: 60/1966
  60757. }
  60758. },
  60759. frontLewd: {
  60760. height: math.unit(1.8, "meters"),
  60761. weight: math.unit(120, "kg"),
  60762. name: "Front (Lewd)",
  60763. image: {
  60764. source: "./media/characters/kurz/front-lewd.svg",
  60765. extra: 1960/1824,
  60766. bottom: 41/2001
  60767. }
  60768. },
  60769. maw: {
  60770. height: math.unit(0.69, "meters"),
  60771. name: "Maw",
  60772. image: {
  60773. source: "./media/characters/kurz/maw.svg"
  60774. }
  60775. },
  60776. },
  60777. [
  60778. {
  60779. name: "Original Size",
  60780. height: math.unit(1.8, "meters")
  60781. },
  60782. {
  60783. name: "Incognito Size",
  60784. height: math.unit(2.4, "meters"),
  60785. default: true
  60786. },
  60787. {
  60788. name: "Macro",
  60789. height: math.unit(30, "meters")
  60790. },
  60791. {
  60792. name: "Macro+",
  60793. height: math.unit(250, "meters")
  60794. },
  60795. {
  60796. name: "Mega",
  60797. height: math.unit(2, "km")
  60798. },
  60799. {
  60800. name: "Mega+",
  60801. height: math.unit(35, "km")
  60802. },
  60803. {
  60804. name: "Mega++",
  60805. height: math.unit(75, "km")
  60806. },
  60807. {
  60808. name: "Giga",
  60809. height: math.unit(250, "km")
  60810. },
  60811. {
  60812. name: "Terra",
  60813. height: math.unit(15000, "km")
  60814. },
  60815. {
  60816. name: "Terra+",
  60817. height: math.unit(2250000, "km")
  60818. },
  60819. ]
  60820. ))
  60821. characterMakers.push(() => makeCharacter(
  60822. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60823. {
  60824. front: {
  60825. height: math.unit(16 + 3/12, "feet"),
  60826. weight: math.unit(3575, "lb"),
  60827. name: "Front",
  60828. image: {
  60829. source: "./media/characters/nikita/front.svg",
  60830. extra: 1064/955,
  60831. bottom: 47/1111
  60832. }
  60833. },
  60834. },
  60835. [
  60836. {
  60837. name: "Normal",
  60838. height: math.unit(16 + 3/12, "feet"),
  60839. default: true
  60840. },
  60841. {
  60842. name: "Big",
  60843. height: math.unit(21, "feet")
  60844. },
  60845. {
  60846. name: "Biggest",
  60847. height: math.unit(50, "feet")
  60848. },
  60849. ]
  60850. ))
  60851. characterMakers.push(() => makeCharacter(
  60852. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60853. {
  60854. front: {
  60855. height: math.unit(1.92, "m"),
  60856. weight: math.unit(76, "kg"),
  60857. name: "Front",
  60858. image: {
  60859. source: "./media/characters/kyara/front.svg",
  60860. extra: 1550/1438,
  60861. bottom: 139/1689
  60862. }
  60863. },
  60864. back: {
  60865. height: math.unit(1.92, "m"),
  60866. weight: math.unit(76, "kg"),
  60867. name: "Back",
  60868. image: {
  60869. source: "./media/characters/kyara/back.svg",
  60870. extra: 1523/1427,
  60871. bottom: 83/1606
  60872. }
  60873. },
  60874. head: {
  60875. height: math.unit(1.22, "feet"),
  60876. name: "Head",
  60877. image: {
  60878. source: "./media/characters/kyara/head.svg"
  60879. }
  60880. },
  60881. maw: {
  60882. height: math.unit(0.73, "feet"),
  60883. name: "Maw",
  60884. image: {
  60885. source: "./media/characters/kyara/maw.svg"
  60886. }
  60887. },
  60888. paws: {
  60889. height: math.unit(0.95, "feet"),
  60890. name: "Paws",
  60891. image: {
  60892. source: "./media/characters/kyara/paws.svg"
  60893. }
  60894. },
  60895. },
  60896. [
  60897. {
  60898. name: "Normal",
  60899. height: math.unit(1.92, "meters"),
  60900. default: true
  60901. },
  60902. {
  60903. name: "Mini Macro",
  60904. height: math.unit(192, "meters")
  60905. },
  60906. {
  60907. name: "Macro",
  60908. height: math.unit(480, "meters")
  60909. },
  60910. {
  60911. name: "Mega Macro",
  60912. height: math.unit(1440, "meters")
  60913. },
  60914. ]
  60915. ))
  60916. characterMakers.push(() => makeCharacter(
  60917. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60918. {
  60919. front: {
  60920. height: math.unit(6, "feet"),
  60921. weight: math.unit(160, "lbs"),
  60922. preyCapacity: math.unit(0.05, "people"),
  60923. name: "Front",
  60924. image: {
  60925. source: "./media/characters/layla-amari/front.svg",
  60926. extra: 1922/1723,
  60927. bottom: 90/2012
  60928. }
  60929. },
  60930. back: {
  60931. height: math.unit(6, "feet"),
  60932. weight: math.unit(160, "lbs"),
  60933. preyCapacity: math.unit(0.05, "people"),
  60934. name: "Back",
  60935. image: {
  60936. source: "./media/characters/layla-amari/back.svg",
  60937. extra: 1917/1718,
  60938. bottom: 50/1967
  60939. }
  60940. },
  60941. frontDressed: {
  60942. height: math.unit(6, "feet"),
  60943. weight: math.unit(160, "lbs"),
  60944. preyCapacity: math.unit(0.05, "people"),
  60945. name: "Front (Dressed)",
  60946. image: {
  60947. source: "./media/characters/layla-amari/front-dressed.svg",
  60948. extra: 1922/1723,
  60949. bottom: 90/2012
  60950. }
  60951. },
  60952. face: {
  60953. height: math.unit(0.93, "feet"),
  60954. name: "Face",
  60955. image: {
  60956. source: "./media/characters/layla-amari/face.svg"
  60957. }
  60958. },
  60959. hand: {
  60960. height: math.unit(0.66 , "feet"),
  60961. name: "Hand",
  60962. image: {
  60963. source: "./media/characters/layla-amari/hand.svg"
  60964. }
  60965. },
  60966. foot: {
  60967. height: math.unit(1, "feet"),
  60968. name: "Foot",
  60969. image: {
  60970. source: "./media/characters/layla-amari/foot.svg"
  60971. }
  60972. },
  60973. necklace: {
  60974. height: math.unit(0.32, "feet"),
  60975. name: "Necklace",
  60976. image: {
  60977. source: "./media/characters/layla-amari/necklace.svg"
  60978. }
  60979. },
  60980. nipple: {
  60981. height: math.unit(0.2, "feet"),
  60982. name: "Nipple",
  60983. image: {
  60984. source: "./media/characters/layla-amari/nipple.svg"
  60985. }
  60986. },
  60987. slit: {
  60988. height: math.unit(0.26, "feet"),
  60989. name: "Slit",
  60990. image: {
  60991. source: "./media/characters/layla-amari/slit.svg"
  60992. }
  60993. },
  60994. },
  60995. [
  60996. {
  60997. name: "Natural",
  60998. height: math.unit(825, "feet"),
  60999. default: true
  61000. },
  61001. {
  61002. name: "Enhanced",
  61003. height: math.unit(8250, "feet")
  61004. },
  61005. {
  61006. name: "Apparent Size",
  61007. height: math.unit(9.04363e+8, "meters")
  61008. },
  61009. ]
  61010. ))
  61011. characterMakers.push(() => makeCharacter(
  61012. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61013. {
  61014. front: {
  61015. height: math.unit(1.3, "meters"),
  61016. name: "Front",
  61017. image: {
  61018. source: "./media/characters/percy/front.svg",
  61019. extra: 1444/1289,
  61020. bottom: 54/1498
  61021. }
  61022. },
  61023. },
  61024. [
  61025. {
  61026. name: "Normal",
  61027. height: math.unit(1.3, "meters"),
  61028. default: true
  61029. },
  61030. ]
  61031. ))
  61032. characterMakers.push(() => makeCharacter(
  61033. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61034. {
  61035. side: {
  61036. height: math.unit(10, "meters"),
  61037. name: "Side",
  61038. image: {
  61039. source: "./media/characters/grev/side.svg",
  61040. extra: 653/266,
  61041. bottom: 77/730
  61042. }
  61043. },
  61044. head: {
  61045. height: math.unit(16.2, "m"),
  61046. name: "Head",
  61047. image: {
  61048. source: "./media/characters/grev/head.svg"
  61049. }
  61050. },
  61051. dick: {
  61052. height: math.unit(2.8135932034, "m"),
  61053. name: "Dick",
  61054. image: {
  61055. source: "./media/characters/grev/dick.svg"
  61056. }
  61057. },
  61058. },
  61059. [
  61060. {
  61061. name: "Friend-Sized",
  61062. height: math.unit(80, "cm")
  61063. },
  61064. {
  61065. name: "Normal",
  61066. height: math.unit(10, "meters"),
  61067. default: true
  61068. },
  61069. {
  61070. name: "Macro",
  61071. height: math.unit(200, "meters")
  61072. },
  61073. ]
  61074. ))
  61075. characterMakers.push(() => makeCharacter(
  61076. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61077. {
  61078. front: {
  61079. height: math.unit(19.75, "feet"),
  61080. weight: math.unit(20000, "lb"),
  61081. name: "Front",
  61082. image: {
  61083. source: "./media/characters/azuuca/front.svg",
  61084. extra: 1593/1511,
  61085. bottom: 55/1648
  61086. }
  61087. },
  61088. },
  61089. [
  61090. {
  61091. name: "Normal",
  61092. height: math.unit(19.75, "feet"),
  61093. default: true
  61094. },
  61095. ]
  61096. ))
  61097. characterMakers.push(() => makeCharacter(
  61098. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61099. {
  61100. front: {
  61101. height: math.unit(15, "feet"),
  61102. weight: math.unit(1500, "lb"),
  61103. name: "Front",
  61104. image: {
  61105. source: "./media/characters/valuria/front.svg",
  61106. extra: 1588/1486,
  61107. bottom: 31/1619
  61108. }
  61109. },
  61110. },
  61111. [
  61112. {
  61113. name: "Normal",
  61114. height: math.unit(15, "feet"),
  61115. default: true
  61116. },
  61117. {
  61118. name: "Small",
  61119. height: math.unit(500, "feet")
  61120. },
  61121. {
  61122. name: "Macro",
  61123. height: math.unit(4000, "feet")
  61124. },
  61125. {
  61126. name: "Mega Macro",
  61127. height: math.unit(2000, "miles")
  61128. },
  61129. {
  61130. name: "Giga Macro",
  61131. height: math.unit(3e6, "miles")
  61132. },
  61133. ]
  61134. ))
  61135. characterMakers.push(() => makeCharacter(
  61136. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61137. {
  61138. front: {
  61139. height: math.unit(3500, "solarradii"),
  61140. name: "Front",
  61141. image: {
  61142. source: "./media/characters/terigaia/front.svg",
  61143. extra: 1531/1451,
  61144. bottom: 98/1629
  61145. }
  61146. },
  61147. },
  61148. [
  61149. {
  61150. name: "Normal",
  61151. height: math.unit(3500, "solarradii"),
  61152. default: true
  61153. },
  61154. ]
  61155. ))
  61156. characterMakers.push(() => makeCharacter(
  61157. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61158. {
  61159. front: {
  61160. height: math.unit(9.34, "feet"),
  61161. weight: math.unit(600, "lb"),
  61162. name: "Front",
  61163. image: {
  61164. source: "./media/characters/blair-blaziken/front.svg",
  61165. extra: 1557/1462,
  61166. bottom: 55/1612
  61167. }
  61168. },
  61169. },
  61170. [
  61171. {
  61172. name: "Normal",
  61173. height: math.unit(9.34, "feet"),
  61174. default: true
  61175. },
  61176. ]
  61177. ))
  61178. characterMakers.push(() => makeCharacter(
  61179. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61180. {
  61181. pistrogre_front: {
  61182. height: math.unit(10, "feet"),
  61183. weight: math.unit(10, "tons"),
  61184. name: "Front",
  61185. image: {
  61186. source: "./media/characters/braxia/pistrogre-front.svg",
  61187. extra: 1531/1334,
  61188. bottom: 114/1645
  61189. },
  61190. form: "pistrogre",
  61191. default: true
  61192. },
  61193. human_front: {
  61194. height: math.unit(10, "feet"),
  61195. weight: math.unit(10, "tons"),
  61196. name: "Front",
  61197. image: {
  61198. source: "./media/characters/braxia/human-front.svg",
  61199. extra: 1574/1501,
  61200. bottom: 37/1611
  61201. },
  61202. form: "human",
  61203. default: true
  61204. },
  61205. },
  61206. [
  61207. {
  61208. name: "Normal",
  61209. height: math.unit(10, "feet"),
  61210. default: true,
  61211. allForms: true
  61212. },
  61213. {
  61214. name: "Macro",
  61215. height: math.unit(1000, "feet"),
  61216. allForms: true
  61217. },
  61218. {
  61219. name: "Mega Macro",
  61220. height: math.unit(100, "miles"),
  61221. allForms: true
  61222. },
  61223. {
  61224. name: "Cosmic",
  61225. height: math.unit(1000000, "lightyears"),
  61226. allForms: true
  61227. },
  61228. {
  61229. name: "ϐѮԆԬӁꭍϞԢ",
  61230. height: math.unit(1000, "multiverses"),
  61231. allForms: true
  61232. },
  61233. ],
  61234. {
  61235. "pistrogre": {
  61236. name: "Pistrogre",
  61237. default: true
  61238. },
  61239. "human": {
  61240. name: "Human",
  61241. },
  61242. }
  61243. ))
  61244. characterMakers.push(() => makeCharacter(
  61245. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61246. {
  61247. front: {
  61248. height: math.unit(6 + 1/12, "feet"),
  61249. weight: math.unit(280, "lb"),
  61250. name: "Front",
  61251. image: {
  61252. source: "./media/characters/kiriga-yato/front.svg",
  61253. extra: 445/394,
  61254. bottom: 11/456
  61255. }
  61256. },
  61257. },
  61258. [
  61259. {
  61260. name: "Descended",
  61261. height: math.unit(3, "feet")
  61262. },
  61263. {
  61264. name: "Average",
  61265. height: math.unit(6 + 1/12, "feet"),
  61266. default: true
  61267. },
  61268. {
  61269. name: "Ascended",
  61270. height: math.unit(9 + 2/12, "feet")
  61271. },
  61272. ]
  61273. ))
  61274. characterMakers.push(() => makeCharacter(
  61275. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61276. {
  61277. front: {
  61278. height: math.unit(6, "feet"),
  61279. weight: math.unit(150, "lb"),
  61280. name: "Front",
  61281. image: {
  61282. source: "./media/characters/kylie/front.svg",
  61283. extra: 1114/1046,
  61284. bottom: 65/1179
  61285. },
  61286. extraAttributes: {
  61287. "hoofSize": {
  61288. name: "Hoof Size",
  61289. power: 2,
  61290. type: "area",
  61291. base: math.unit(0.034, "m^2")
  61292. },
  61293. "footSize": {
  61294. name: "Foot Size",
  61295. power: 2,
  61296. type: "area",
  61297. base: math.unit(0.75, "m^2")
  61298. },
  61299. }
  61300. },
  61301. side: {
  61302. height: math.unit(6, "feet"),
  61303. weight: math.unit(150, "lb"),
  61304. name: "Side",
  61305. image: {
  61306. source: "./media/characters/kylie/side.svg",
  61307. extra: 1178/1110,
  61308. bottom: 21/1199
  61309. },
  61310. extraAttributes: {
  61311. "hoofSize": {
  61312. name: "Hoof Size",
  61313. power: 2,
  61314. type: "area",
  61315. base: math.unit(0.034, "m^2")
  61316. },
  61317. "footSize": {
  61318. name: "Foot Size",
  61319. power: 2,
  61320. type: "area",
  61321. base: math.unit(0.75, "m^2")
  61322. },
  61323. }
  61324. },
  61325. back: {
  61326. height: math.unit(6, "feet"),
  61327. weight: math.unit(150, "lb"),
  61328. name: "Back",
  61329. image: {
  61330. source: "./media/characters/kylie/back.svg",
  61331. extra: 1115/1047,
  61332. bottom: 66/1181
  61333. },
  61334. extraAttributes: {
  61335. "hoofSize": {
  61336. name: "Hoof Size",
  61337. power: 2,
  61338. type: "area",
  61339. base: math.unit(0.034, "m^2")
  61340. },
  61341. "footSize": {
  61342. name: "Foot Size",
  61343. power: 2,
  61344. type: "area",
  61345. base: math.unit(0.75, "m^2")
  61346. },
  61347. }
  61348. },
  61349. head: {
  61350. height: math.unit(1.85, "feet"),
  61351. name: "Head",
  61352. image: {
  61353. source: "./media/characters/kylie/head.svg"
  61354. }
  61355. },
  61356. },
  61357. [
  61358. {
  61359. name: "Normal",
  61360. height: math.unit(90, "meters"),
  61361. default: true
  61362. },
  61363. ]
  61364. ))
  61365. characterMakers.push(() => makeCharacter(
  61366. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61367. {
  61368. front: {
  61369. height: math.unit(245, "feet"),
  61370. weight: math.unit(400000, "lb"),
  61371. name: "Front",
  61372. image: {
  61373. source: "./media/characters/sabado/front.svg",
  61374. extra: 1309/1164,
  61375. bottom: 29/1338
  61376. }
  61377. },
  61378. },
  61379. [
  61380. {
  61381. name: "Normal",
  61382. height: math.unit(245, "feet"),
  61383. default: true
  61384. },
  61385. ]
  61386. ))
  61387. characterMakers.push(() => makeCharacter(
  61388. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61389. {
  61390. shark_front: {
  61391. height: math.unit(2, "meters"),
  61392. weight: math.unit(200, "kg"),
  61393. name: "Front",
  61394. image: {
  61395. source: "./media/characters/zechal/shark-front.svg",
  61396. extra: 969/925,
  61397. bottom: 74/1043
  61398. },
  61399. form: "shark",
  61400. },
  61401. shark_back: {
  61402. height: math.unit(2, "meters"),
  61403. weight: math.unit(200, "kg"),
  61404. name: "Back",
  61405. image: {
  61406. source: "./media/characters/zechal/shark-back.svg",
  61407. extra: 994/949,
  61408. bottom: 176/1170
  61409. },
  61410. form: "shark",
  61411. },
  61412. shark_frontLewd: {
  61413. height: math.unit(2, "meters"),
  61414. weight: math.unit(200, "kg"),
  61415. name: "Front (Lewd)",
  61416. image: {
  61417. source: "./media/characters/zechal/shark-front-lewd.svg",
  61418. extra: 969/925,
  61419. bottom: 74/1043
  61420. },
  61421. form: "shark",
  61422. },
  61423. shark_side: {
  61424. height: math.unit(1.56, "meters"),
  61425. weight: math.unit(200, "kg"),
  61426. name: "Side",
  61427. image: {
  61428. source: "./media/characters/zechal/shark-side.svg"
  61429. },
  61430. form: "shark",
  61431. },
  61432. dragon_front: {
  61433. height: math.unit(2, "meters"),
  61434. weight: math.unit(200, "kg"),
  61435. name: "Front",
  61436. image: {
  61437. source: "./media/characters/zechal/dragon-front.svg",
  61438. extra: 1041/925,
  61439. bottom: 74/1115
  61440. },
  61441. form: "dragon",
  61442. },
  61443. dragon_back: {
  61444. height: math.unit(2, "meters"),
  61445. weight: math.unit(200, "kg"),
  61446. name: "Back",
  61447. image: {
  61448. source: "./media/characters/zechal/dragon-back.svg",
  61449. extra: 1061/949,
  61450. bottom: 176/1237
  61451. },
  61452. form: "dragon",
  61453. },
  61454. dragon_frontLewd: {
  61455. height: math.unit(2, "meters"),
  61456. weight: math.unit(200, "kg"),
  61457. name: "Front (Lewd)",
  61458. image: {
  61459. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61460. extra: 1041/925,
  61461. bottom: 74/1115
  61462. },
  61463. form: "dragon",
  61464. },
  61465. dragon_side: {
  61466. height: math.unit(1.56, "meters"),
  61467. weight: math.unit(200, "kg"),
  61468. name: "Side",
  61469. image: {
  61470. source: "./media/characters/zechal/dragon-side.svg"
  61471. },
  61472. form: "dragon",
  61473. },
  61474. foot: {
  61475. height: math.unit(0.5, "meters"),
  61476. name: "Foot",
  61477. image: {
  61478. source: "./media/characters/zechal/foot.svg"
  61479. }
  61480. },
  61481. sheathFront: {
  61482. height: math.unit(0.45, "meters"),
  61483. name: "Sheath (Front)",
  61484. image: {
  61485. source: "./media/characters/zechal/sheath-front.svg"
  61486. }
  61487. },
  61488. sheathSide: {
  61489. height: math.unit(0.45, "meters"),
  61490. name: "Sheath (Side)",
  61491. image: {
  61492. source: "./media/characters/zechal/sheath-side.svg"
  61493. }
  61494. },
  61495. },
  61496. [
  61497. {
  61498. name: "Incognito",
  61499. height: math.unit(2, "meters"),
  61500. allForms: true
  61501. },
  61502. {
  61503. name: "Small Rampage",
  61504. height: math.unit(25, "meters"),
  61505. allForms: true
  61506. },
  61507. {
  61508. name: "Home Size",
  61509. height: math.unit(250, "meters"),
  61510. allForms: true,
  61511. default: true
  61512. },
  61513. {
  61514. name: "Macro+",
  61515. height: math.unit(700, "meters"),
  61516. allForms: true
  61517. },
  61518. {
  61519. name: "Small Mega",
  61520. height: math.unit(3, "km"),
  61521. allForms: true
  61522. },
  61523. {
  61524. name: "Mega",
  61525. height: math.unit(15, "km"),
  61526. allForms: true
  61527. },
  61528. {
  61529. name: "Giga",
  61530. height: math.unit(300, "km"),
  61531. allForms: true
  61532. },
  61533. {
  61534. name: "Giga+",
  61535. height: math.unit(1750, "km"),
  61536. allForms: true
  61537. },
  61538. {
  61539. name: "Continental",
  61540. height: math.unit(5000, "km"),
  61541. allForms: true
  61542. },
  61543. {
  61544. name: "Terra",
  61545. height: math.unit(20000, "km"),
  61546. allForms: true
  61547. },
  61548. {
  61549. name: "Terra+",
  61550. height: math.unit(300000, "km"),
  61551. allForms: true
  61552. },
  61553. {
  61554. name: "Solar",
  61555. height: math.unit(40000000, "km"),
  61556. allForms: true
  61557. },
  61558. {
  61559. name: "Galactic",
  61560. height: math.unit(810133, "parsecs"),
  61561. allForms: true
  61562. },
  61563. {
  61564. name: "Universal",
  61565. height: math.unit(25, "universes"),
  61566. allForms: true
  61567. },
  61568. ],
  61569. {
  61570. "shark": {
  61571. name: "Shark",
  61572. default: true
  61573. },
  61574. "dragon": {
  61575. name: "Dragon",
  61576. },
  61577. }
  61578. ))
  61579. characterMakers.push(() => makeCharacter(
  61580. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61581. {
  61582. front: {
  61583. height: math.unit(2.2, "meters"),
  61584. weight: math.unit(150, "kg"),
  61585. name: "Front",
  61586. image: {
  61587. source: "./media/characters/sergis/front.svg",
  61588. extra: 1314/1312,
  61589. bottom: 112/1426
  61590. }
  61591. },
  61592. back: {
  61593. height: math.unit(2.2, "meters"),
  61594. weight: math.unit(150, "kg"),
  61595. name: "Back",
  61596. image: {
  61597. source: "./media/characters/sergis/back.svg",
  61598. extra: 1335/1333,
  61599. bottom: 19/1354
  61600. }
  61601. },
  61602. frontLewd: {
  61603. height: math.unit(2.2, "meters"),
  61604. weight: math.unit(150, "kg"),
  61605. name: "Front (Lewd)",
  61606. image: {
  61607. source: "./media/characters/sergis/front-lewd.svg",
  61608. extra: 1314/1312,
  61609. bottom: 112/1426
  61610. }
  61611. },
  61612. frontDressed: {
  61613. height: math.unit(2.2, "meters"),
  61614. weight: math.unit(150, "kg"),
  61615. name: "Front (Dressed)",
  61616. image: {
  61617. source: "./media/characters/sergis/front-dressed.svg",
  61618. extra: 1330/1328,
  61619. bottom: 95/1425
  61620. }
  61621. },
  61622. frontDressedLewd: {
  61623. height: math.unit(2.2, "meters"),
  61624. weight: math.unit(150, "kg"),
  61625. name: "Front (Dressed, Lewd)",
  61626. image: {
  61627. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61628. extra: 1330/1328,
  61629. bottom: 95/1425
  61630. }
  61631. },
  61632. maw: {
  61633. height: math.unit(0.48, "meters"),
  61634. name: "Maw",
  61635. image: {
  61636. source: "./media/characters/sergis/maw.svg"
  61637. }
  61638. },
  61639. sheath: {
  61640. height: math.unit(0.38, "meters"),
  61641. name: "Sheath",
  61642. image: {
  61643. source: "./media/characters/sergis/sheath.svg"
  61644. }
  61645. },
  61646. },
  61647. [
  61648. {
  61649. name: "Incognito Size",
  61650. height: math.unit(2.2, "meters")
  61651. },
  61652. {
  61653. name: "Small Macro",
  61654. height: math.unit(40, "meters")
  61655. },
  61656. {
  61657. name: "Macro",
  61658. height: math.unit(150, "meters")
  61659. },
  61660. {
  61661. name: "Macro+",
  61662. height: math.unit(300, "meters")
  61663. },
  61664. {
  61665. name: "Mega",
  61666. height: math.unit(2.5, "km")
  61667. },
  61668. {
  61669. name: "Mega+",
  61670. height: math.unit(30, "km")
  61671. },
  61672. {
  61673. name: "Home Size",
  61674. height: math.unit(300, "km"),
  61675. default: true
  61676. },
  61677. {
  61678. name: "Giga+",
  61679. height: math.unit(1000, "km")
  61680. },
  61681. {
  61682. name: "Giga++",
  61683. height: math.unit(6000, "km")
  61684. },
  61685. {
  61686. name: "Terra",
  61687. height: math.unit(70000, "km")
  61688. },
  61689. {
  61690. name: "Terra+",
  61691. height: math.unit(200000, "km")
  61692. },
  61693. {
  61694. name: "Galactic",
  61695. height: math.unit(634200, "lightyears")
  61696. },
  61697. ]
  61698. ))
  61699. characterMakers.push(() => makeCharacter(
  61700. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61701. {
  61702. standard: {
  61703. height: math.unit(1 + 5/12, "feet"),
  61704. name: "Standard",
  61705. image: {
  61706. source: "./media/characters/spade/standard.svg",
  61707. extra: 1794/1703,
  61708. bottom: 115/1909
  61709. }
  61710. },
  61711. disguised: {
  61712. height: math.unit(1 + 5/12, "feet"),
  61713. name: "Disguised",
  61714. image: {
  61715. source: "./media/characters/spade/disguised.svg",
  61716. extra: 1794/1700,
  61717. bottom: 98/1892
  61718. }
  61719. },
  61720. },
  61721. [
  61722. {
  61723. name: "Normal",
  61724. height: math.unit(1 + 5/12, "feet"),
  61725. default: true
  61726. },
  61727. ]
  61728. ))
  61729. characterMakers.push(() => makeCharacter(
  61730. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61731. {
  61732. frontNsfw: {
  61733. height: math.unit(5, "meters"),
  61734. weight: math.unit(2000, "kg"),
  61735. preyCapacity: math.unit(5, "people"),
  61736. name: "Front (NSFW)",
  61737. image: {
  61738. source: "./media/characters/zeanlain/front-nsfw.svg",
  61739. extra: 1087/938,
  61740. bottom: 93/1180
  61741. },
  61742. extraAttributes: {
  61743. "wingspan": {
  61744. name: "Wingspan",
  61745. power: 1,
  61746. type: "length",
  61747. base: math.unit(10, "meters")
  61748. },
  61749. "footSize": {
  61750. name: "Foot Size",
  61751. power: 1,
  61752. type: "length",
  61753. base: math.unit(0.68, "meters")
  61754. },
  61755. "cockLength": {
  61756. name: "Cock Length",
  61757. power: 1,
  61758. type: "length",
  61759. base: math.unit(1.69, "meters")
  61760. },
  61761. "ballVolume": {
  61762. name: "Ball Volume",
  61763. power: 3,
  61764. type: "volume",
  61765. base: math.unit(0.028, "m^3")
  61766. },
  61767. }
  61768. },
  61769. front: {
  61770. height: math.unit(5, "meters"),
  61771. weight: math.unit(2000, "kg"),
  61772. preyCapacity: math.unit(3, "people"),
  61773. name: "Front",
  61774. image: {
  61775. source: "./media/characters/zeanlain/front.svg",
  61776. extra: 1087/938,
  61777. bottom: 93/1180
  61778. },
  61779. extraAttributes: {
  61780. "wingspan": {
  61781. name: "Wingspan",
  61782. power: 1,
  61783. type: "length",
  61784. base: math.unit(10, "meters")
  61785. },
  61786. "footSize": {
  61787. name: "Foot Size",
  61788. power: 1,
  61789. type: "length",
  61790. base: math.unit(0.68, "meters")
  61791. },
  61792. }
  61793. },
  61794. },
  61795. [
  61796. {
  61797. name: "Normal",
  61798. height: math.unit(5, "meters"),
  61799. default: true
  61800. },
  61801. ]
  61802. ))
  61803. characterMakers.push(() => makeCharacter(
  61804. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61805. {
  61806. front: {
  61807. height: math.unit(10, "meters"),
  61808. weight: math.unit(250000, "kg"),
  61809. name: "Front",
  61810. image: {
  61811. source: "./media/characters/airamis/front.svg",
  61812. extra: 865/835,
  61813. bottom: 13/878
  61814. }
  61815. },
  61816. },
  61817. [
  61818. {
  61819. name: "Normal",
  61820. height: math.unit(10, "meters"),
  61821. default: true
  61822. },
  61823. ]
  61824. ))
  61825. characterMakers.push(() => makeCharacter(
  61826. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61827. {
  61828. front: {
  61829. height: math.unit(3 + 3/12, "feet"),
  61830. weight: math.unit(75, "lb"),
  61831. name: "Front",
  61832. image: {
  61833. source: "./media/characters/corra-tourmaline/front.svg",
  61834. extra: 1037/864,
  61835. bottom: 39/1076
  61836. }
  61837. },
  61838. back: {
  61839. height: math.unit(3 + 3/12, "feet"),
  61840. weight: math.unit(75, "lb"),
  61841. name: "Back",
  61842. image: {
  61843. source: "./media/characters/corra-tourmaline/back.svg",
  61844. extra: 1022/849,
  61845. bottom: 26/1048
  61846. }
  61847. },
  61848. dressed: {
  61849. height: math.unit(3 + 3/12, "feet"),
  61850. weight: math.unit(75, "lb"),
  61851. name: "Dressed",
  61852. image: {
  61853. source: "./media/characters/corra-tourmaline/dressed.svg",
  61854. extra: 1037/864,
  61855. bottom: 39/1076
  61856. }
  61857. },
  61858. beans: {
  61859. height: math.unit(0.37, "feet"),
  61860. name: "Beans",
  61861. image: {
  61862. source: "./media/characters/corra-tourmaline/beans.svg"
  61863. }
  61864. },
  61865. },
  61866. [
  61867. {
  61868. name: "Normal",
  61869. height: math.unit(3 + 3/12, "feet"),
  61870. default: true
  61871. },
  61872. {
  61873. name: "Macro",
  61874. height: math.unit(32, "feet")
  61875. },
  61876. ]
  61877. ))
  61878. characterMakers.push(() => makeCharacter(
  61879. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61880. {
  61881. front: {
  61882. height: math.unit(6 + 2/12, "feet"),
  61883. weight: math.unit(203, "lb"),
  61884. name: "Front",
  61885. image: {
  61886. source: "./media/characters/maki-kawa/front.svg",
  61887. extra: 950/890,
  61888. bottom: 62/1012
  61889. }
  61890. },
  61891. back: {
  61892. height: math.unit(6 + 2/12, "feet"),
  61893. weight: math.unit(203, "lb"),
  61894. name: "Back",
  61895. image: {
  61896. source: "./media/characters/maki-kawa/back.svg",
  61897. extra: 953/878,
  61898. bottom: 49/1002
  61899. }
  61900. },
  61901. frontBarista: {
  61902. height: math.unit(6 + 2/12, "feet"),
  61903. weight: math.unit(203, "lb"),
  61904. name: "Front (Barista)",
  61905. image: {
  61906. source: "./media/characters/maki-kawa/front-barista.svg",
  61907. extra: 943/883,
  61908. bottom: 69/1012
  61909. }
  61910. },
  61911. backBarista: {
  61912. height: math.unit(6 + 2/12, "feet"),
  61913. weight: math.unit(203, "lb"),
  61914. name: "Back (Barista)",
  61915. image: {
  61916. source: "./media/characters/maki-kawa/back-barista.svg",
  61917. extra: 953/878,
  61918. bottom: 49/1002
  61919. }
  61920. },
  61921. frontWrestler: {
  61922. height: math.unit(6 + 2/12, "feet"),
  61923. weight: math.unit(203, "lb"),
  61924. name: "Front (Wrestler)",
  61925. image: {
  61926. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61927. extra: 950/890,
  61928. bottom: 62/1012
  61929. }
  61930. },
  61931. backWrestler: {
  61932. height: math.unit(6 + 2/12, "feet"),
  61933. weight: math.unit(203, "lb"),
  61934. name: "Back (Wrestler)",
  61935. image: {
  61936. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61937. extra: 953/878,
  61938. bottom: 49/1002
  61939. }
  61940. },
  61941. headFront: {
  61942. height: math.unit(1.64, "feet"),
  61943. name: "Head (Front)",
  61944. image: {
  61945. source: "./media/characters/maki-kawa/head-front.svg"
  61946. }
  61947. },
  61948. headSide: {
  61949. height: math.unit(1.59, "feet"),
  61950. name: "Head (Side)",
  61951. image: {
  61952. source: "./media/characters/maki-kawa/head-side.svg"
  61953. }
  61954. },
  61955. paw: {
  61956. height: math.unit(0.9, "feet"),
  61957. name: "Paw",
  61958. image: {
  61959. source: "./media/characters/maki-kawa/paw.svg"
  61960. }
  61961. },
  61962. },
  61963. [
  61964. {
  61965. name: "Normal",
  61966. height: math.unit(6 + 2/12, "feet"),
  61967. default: true
  61968. },
  61969. {
  61970. name: "Macro",
  61971. height: math.unit(617, "feet")
  61972. },
  61973. ]
  61974. ))
  61975. characterMakers.push(() => makeCharacter(
  61976. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61977. {
  61978. front: {
  61979. height: math.unit(10, "feet"),
  61980. weight: math.unit(1500, "lb"),
  61981. name: "Front",
  61982. image: {
  61983. source: "./media/characters/lennox/front.svg",
  61984. extra: 1623/1496,
  61985. bottom: 18/1641
  61986. }
  61987. },
  61988. back: {
  61989. height: math.unit(10, "feet"),
  61990. weight: math.unit(1500, "lb"),
  61991. name: "Back",
  61992. image: {
  61993. source: "./media/characters/lennox/back.svg",
  61994. extra: 1641/1481,
  61995. bottom: 13/1654
  61996. }
  61997. },
  61998. maw: {
  61999. height: math.unit(2.94, "feet"),
  62000. name: "Maw",
  62001. image: {
  62002. source: "./media/characters/lennox/maw.svg"
  62003. }
  62004. },
  62005. },
  62006. [
  62007. {
  62008. name: "Micro",
  62009. height: math.unit(1, "inch")
  62010. },
  62011. {
  62012. name: "Normal",
  62013. height: math.unit(10, "feet"),
  62014. default: true
  62015. },
  62016. {
  62017. name: "Macro",
  62018. height: math.unit(200, "feet")
  62019. },
  62020. ]
  62021. ))
  62022. characterMakers.push(() => makeCharacter(
  62023. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62024. {
  62025. frontDressed: {
  62026. height: math.unit(15 + 7/12, "feet"),
  62027. weight: math.unit(5000, "lb"),
  62028. name: "Front (Dressed)",
  62029. image: {
  62030. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62031. extra: 1136/1023,
  62032. bottom: 51/1187
  62033. }
  62034. },
  62035. backDressed: {
  62036. height: math.unit(15 + 7/12, "feet"),
  62037. weight: math.unit(5000, "lb"),
  62038. name: "Back (Dressed)",
  62039. image: {
  62040. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62041. extra: 2359/2143,
  62042. bottom: 103/2462
  62043. }
  62044. },
  62045. front: {
  62046. height: math.unit(15 + 7/12, "feet"),
  62047. weight: math.unit(5000, "lb"),
  62048. name: "Front",
  62049. image: {
  62050. source: "./media/characters/vyse-iron-thunder/front.svg",
  62051. extra: 1136/1023,
  62052. bottom: 51/1187
  62053. }
  62054. },
  62055. hand: {
  62056. height: math.unit(2.36, "feet"),
  62057. name: "Hand",
  62058. image: {
  62059. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62060. }
  62061. },
  62062. foot: {
  62063. height: math.unit(1.72, "feet"),
  62064. name: "Foot",
  62065. image: {
  62066. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62067. }
  62068. },
  62069. mouth: {
  62070. height: math.unit(2, "feet"),
  62071. name: "Mouth",
  62072. image: {
  62073. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62074. }
  62075. },
  62076. eye: {
  62077. height: math.unit(0.58, "feet"),
  62078. name: "Eye",
  62079. image: {
  62080. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62081. }
  62082. },
  62083. },
  62084. [
  62085. {
  62086. name: "Normal",
  62087. height: math.unit(15 + 7/12, "feet"),
  62088. default: true
  62089. },
  62090. {
  62091. name: "Macro",
  62092. height: math.unit(157, "feet")
  62093. },
  62094. {
  62095. name: "Macro+",
  62096. height: math.unit(1570, "feet")
  62097. },
  62098. {
  62099. name: "Macro++",
  62100. height: math.unit(15700, "feet")
  62101. },
  62102. {
  62103. name: "Macro+++",
  62104. height: math.unit(157000, "feet")
  62105. },
  62106. {
  62107. name: "Macro++++",
  62108. height: math.unit(1570000, "feet")
  62109. },
  62110. ]
  62111. ))
  62112. characterMakers.push(() => makeCharacter(
  62113. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62114. {
  62115. side: {
  62116. height: math.unit(6, "feet"),
  62117. weight: math.unit(115, "lb"),
  62118. name: "Side",
  62119. image: {
  62120. source: "./media/characters/moonbeam/side.svg",
  62121. extra: 839/485,
  62122. bottom: 60/899
  62123. }
  62124. },
  62125. },
  62126. [
  62127. {
  62128. name: "Normal",
  62129. height: math.unit(6, "feet"),
  62130. default: true
  62131. },
  62132. ]
  62133. ))
  62134. characterMakers.push(() => makeCharacter(
  62135. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62136. {
  62137. front: {
  62138. height: math.unit(3500, "miles"),
  62139. weight: math.unit(1659, "petatonnes"),
  62140. name: "Front",
  62141. image: {
  62142. source: "./media/characters/baltica/front.svg",
  62143. extra: 429/428,
  62144. bottom: 41/470
  62145. }
  62146. },
  62147. back: {
  62148. height: math.unit(3500, "miles"),
  62149. weight: math.unit(1659, "petatonnes"),
  62150. name: "Back",
  62151. image: {
  62152. source: "./media/characters/baltica/back.svg",
  62153. extra: 452/451,
  62154. bottom: 8/460
  62155. }
  62156. },
  62157. },
  62158. [
  62159. {
  62160. name: "Gigamacro",
  62161. height: math.unit(3500, "miles"),
  62162. default: true
  62163. },
  62164. ]
  62165. ))
  62166. //characters
  62167. function makeCharacters() {
  62168. const results = [];
  62169. characterMakers.forEach(character => {
  62170. results.push(character());
  62171. });
  62172. return results;
  62173. }