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.
 
 
 

62165 lines
1.5 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: ["tiger"]
  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. }
  2291. //species
  2292. function getSpeciesInfo(speciesList) {
  2293. let result = new Set();
  2294. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2295. result.add(entry)
  2296. });
  2297. return Array.from(result);
  2298. };
  2299. function getSpeciesInfoHelper(species) {
  2300. if (!speciesData[species]) {
  2301. console.warn(species + " doesn't exist");
  2302. return [];
  2303. }
  2304. if (speciesData[species].parents) {
  2305. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2306. } else {
  2307. return [species];
  2308. }
  2309. }
  2310. characterMakers.push(() => makeCharacter(
  2311. {
  2312. name: "Fen",
  2313. species: ["crux"],
  2314. description: {
  2315. title: "Bio",
  2316. text: "Very furry. Sheds on everything."
  2317. },
  2318. tags: [
  2319. "anthro",
  2320. "goo"
  2321. ]
  2322. },
  2323. {
  2324. front: {
  2325. height: math.unit(12, "feet"),
  2326. weight: math.unit(2400, "lb"),
  2327. preyCapacity: math.unit(1, "people"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/fen/front.svg",
  2331. extra: 1804/1562,
  2332. bottom: 205/2009
  2333. },
  2334. extraAttributes: {
  2335. pawSize: {
  2336. name: "Paw Size",
  2337. power: 2,
  2338. type: "area",
  2339. base: math.unit(0.35, "m^2")
  2340. }
  2341. }
  2342. },
  2343. diving: {
  2344. height: math.unit(4.9, "meters"),
  2345. weight: math.unit(2400, "lb"),
  2346. name: "Diving",
  2347. image: {
  2348. source: "./media/characters/fen/diving.svg"
  2349. }
  2350. },
  2351. sleeby: {
  2352. height: math.unit(3.45, "meters"),
  2353. weight: math.unit(2400, "lb"),
  2354. name: "Sleeby",
  2355. image: {
  2356. source: "./media/characters/fen/sleeby.svg"
  2357. }
  2358. },
  2359. goo: {
  2360. height: math.unit(12, "feet"),
  2361. weight: math.unit(3600, "lb"),
  2362. volume: math.unit(1000, "liters"),
  2363. preyCapacity: math.unit(6, "people"),
  2364. name: "Goo",
  2365. image: {
  2366. source: "./media/characters/fen/goo.svg",
  2367. extra: 1307/1071,
  2368. bottom: 134/1441
  2369. }
  2370. },
  2371. horror: {
  2372. height: math.unit(13.6, "feet"),
  2373. weight: math.unit(2400, "lb"),
  2374. preyCapacity: math.unit(1, "people"),
  2375. name: "Horror",
  2376. image: {
  2377. source: "./media/characters/fen/horror.svg",
  2378. extra: 893/797,
  2379. bottom: 0/893
  2380. }
  2381. },
  2382. gooNsfw: {
  2383. height: math.unit(12, "feet"),
  2384. weight: math.unit(3750, "lb"),
  2385. volume: math.unit(1000, "liters"),
  2386. preyCapacity: math.unit(6, "people"),
  2387. name: "Goo (NSFW)",
  2388. image: {
  2389. source: "./media/characters/fen/goo-nsfw.svg",
  2390. extra: 1875/1734,
  2391. bottom: 122/1997
  2392. }
  2393. },
  2394. maw: {
  2395. height: math.unit(5.03, "feet"),
  2396. name: "Maw",
  2397. image: {
  2398. source: "./media/characters/fen/maw.svg"
  2399. }
  2400. },
  2401. gooCeiling: {
  2402. height: math.unit(6.6, "feet"),
  2403. weight: math.unit(3000, "lb"),
  2404. volume: math.unit(1000, "liters"),
  2405. preyCapacity: math.unit(6, "people"),
  2406. name: "Maw (Goo)",
  2407. image: {
  2408. source: "./media/characters/fen/goo-maw.svg"
  2409. }
  2410. },
  2411. paw: {
  2412. height: math.unit(3.77, "feet"),
  2413. name: "Paw",
  2414. image: {
  2415. source: "./media/characters/fen/paw.svg"
  2416. },
  2417. extraAttributes: {
  2418. "toeSize": {
  2419. name: "Toe Size",
  2420. power: 2,
  2421. type: "area",
  2422. base: math.unit(0.02875, "m^2")
  2423. },
  2424. "pawSize": {
  2425. name: "Paw Size",
  2426. power: 2,
  2427. type: "area",
  2428. base: math.unit(0.378, "m^2")
  2429. },
  2430. }
  2431. },
  2432. tail: {
  2433. height: math.unit(12.1, "feet"),
  2434. name: "Tail",
  2435. image: {
  2436. source: "./media/characters/fen/tail.svg"
  2437. }
  2438. },
  2439. tailFull: {
  2440. height: math.unit(12.1, "feet"),
  2441. name: "Full Tail",
  2442. image: {
  2443. source: "./media/characters/fen/tail-full.svg"
  2444. }
  2445. },
  2446. back: {
  2447. height: math.unit(12, "feet"),
  2448. weight: math.unit(2400, "lb"),
  2449. name: "Back",
  2450. image: {
  2451. source: "./media/characters/fen/back.svg",
  2452. },
  2453. info: {
  2454. description: {
  2455. mode: "append",
  2456. text: "\n\nHe is not currently looking at you."
  2457. }
  2458. }
  2459. },
  2460. full: {
  2461. height: math.unit(1.85, "meter"),
  2462. weight: math.unit(3200, "lb"),
  2463. preyCapacity: math.unit(3, "people"),
  2464. name: "Full",
  2465. image: {
  2466. source: "./media/characters/fen/full.svg",
  2467. extra: 1133/859,
  2468. bottom: 145/1278
  2469. },
  2470. info: {
  2471. description: {
  2472. mode: "append",
  2473. text: "\n\nMunch."
  2474. }
  2475. }
  2476. },
  2477. gooLounging: {
  2478. height: math.unit(4.53, "feet"),
  2479. weight: math.unit(3000, "lb"),
  2480. preyCapacity: math.unit(6, "people"),
  2481. name: "Goo (Lounging)",
  2482. image: {
  2483. source: "./media/characters/fen/goo-lounging.svg",
  2484. bottom: 116 / 613
  2485. }
  2486. },
  2487. lounging: {
  2488. height: math.unit(10.52, "feet"),
  2489. weight: math.unit(2400, "lb"),
  2490. name: "Lounging",
  2491. image: {
  2492. source: "./media/characters/fen/lounging.svg"
  2493. }
  2494. },
  2495. },
  2496. [
  2497. {
  2498. name: "Small",
  2499. height: math.unit(2.2428, "meter")
  2500. },
  2501. {
  2502. name: "Normal",
  2503. height: math.unit(12, "feet"),
  2504. default: true,
  2505. },
  2506. {
  2507. name: "Big",
  2508. height: math.unit(20, "feet")
  2509. },
  2510. {
  2511. name: "Minimacro",
  2512. height: math.unit(40, "feet"),
  2513. info: {
  2514. description: {
  2515. mode: "append",
  2516. text: "\n\nTOO DAMN BIG"
  2517. }
  2518. }
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(100, "feet"),
  2523. info: {
  2524. description: {
  2525. mode: "append",
  2526. text: "\n\nTOO DAMN BIG"
  2527. }
  2528. }
  2529. },
  2530. {
  2531. name: "Megamacro",
  2532. height: math.unit(2, "miles")
  2533. },
  2534. {
  2535. name: "Gigamacro",
  2536. height: math.unit(10, "earths")
  2537. },
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2542. {
  2543. front: {
  2544. height: math.unit(183, "cm"),
  2545. weight: math.unit(80, "kg"),
  2546. name: "Front",
  2547. image: {
  2548. source: "./media/characters/sofia-fluttertail/front.svg",
  2549. bottom: 0.01,
  2550. extra: 2154 / 2081
  2551. }
  2552. },
  2553. frontAlt: {
  2554. height: math.unit(183, "cm"),
  2555. weight: math.unit(80, "kg"),
  2556. name: "Front (alt)",
  2557. image: {
  2558. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2559. }
  2560. },
  2561. back: {
  2562. height: math.unit(183, "cm"),
  2563. weight: math.unit(80, "kg"),
  2564. name: "Back",
  2565. image: {
  2566. source: "./media/characters/sofia-fluttertail/back.svg"
  2567. }
  2568. },
  2569. kneeling: {
  2570. height: math.unit(125, "cm"),
  2571. weight: math.unit(80, "kg"),
  2572. name: "Kneeling",
  2573. image: {
  2574. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2575. extra: 1033 / 977,
  2576. bottom: 23.7 / 1057
  2577. }
  2578. },
  2579. maw: {
  2580. height: math.unit(183 / 5, "cm"),
  2581. name: "Maw",
  2582. image: {
  2583. source: "./media/characters/sofia-fluttertail/maw.svg"
  2584. }
  2585. },
  2586. mawcloseup: {
  2587. height: math.unit(183 / 5 * 0.41, "cm"),
  2588. name: "Maw (Closeup)",
  2589. image: {
  2590. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2591. }
  2592. },
  2593. paws: {
  2594. height: math.unit(1.17, "feet"),
  2595. name: "Paws",
  2596. image: {
  2597. source: "./media/characters/sofia-fluttertail/paws.svg",
  2598. extra: 851 / 851,
  2599. bottom: 17 / 868
  2600. }
  2601. },
  2602. },
  2603. [
  2604. {
  2605. name: "Normal",
  2606. height: math.unit(1.83, "meter")
  2607. },
  2608. {
  2609. name: "Size Thief",
  2610. height: math.unit(18, "feet")
  2611. },
  2612. {
  2613. name: "50 Foot Collie",
  2614. height: math.unit(50, "feet")
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(96, "feet"),
  2619. default: true
  2620. },
  2621. {
  2622. name: "Megamerger",
  2623. height: math.unit(650, "feet")
  2624. },
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2629. {
  2630. front: {
  2631. height: math.unit(7, "feet"),
  2632. weight: math.unit(100, "kg"),
  2633. name: "Front",
  2634. image: {
  2635. source: "./media/characters/march/front.svg",
  2636. extra: 1992/1851,
  2637. bottom: 39/2031
  2638. }
  2639. },
  2640. foot: {
  2641. height: math.unit(0.9, "feet"),
  2642. name: "Foot",
  2643. image: {
  2644. source: "./media/characters/march/foot.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(7.9, "feet")
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(220, "meters")
  2656. },
  2657. {
  2658. name: "Megamacro",
  2659. height: math.unit(2.98, "km"),
  2660. default: true
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(15963, "km")
  2665. },
  2666. {
  2667. name: "Teramacro",
  2668. height: math.unit(2980000000, "km")
  2669. },
  2670. {
  2671. name: "Examacro",
  2672. height: math.unit(250, "parsecs")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(6, "feet"),
  2681. weight: math.unit(60, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/noir/front.svg",
  2685. extra: 1,
  2686. bottom: 0.032
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(6.6, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(500, "feet")
  2698. },
  2699. {
  2700. name: "Megamacro",
  2701. height: math.unit(2.5, "km"),
  2702. default: true
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(22500, "km")
  2707. },
  2708. {
  2709. name: "Teramacro",
  2710. height: math.unit(2500000000, "km")
  2711. },
  2712. {
  2713. name: "Examacro",
  2714. height: math.unit(200, "parsecs")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(7, "feet"),
  2723. weight: math.unit(100, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/okuri/front.svg",
  2727. extra: 739/665,
  2728. bottom: 39/778
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(7, "feet"),
  2733. weight: math.unit(100, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/okuri/back.svg",
  2737. extra: 734/653,
  2738. bottom: 13/747
  2739. }
  2740. },
  2741. sitting: {
  2742. height: math.unit(2.95, "feet"),
  2743. weight: math.unit(100, "kg"),
  2744. name: "Sitting",
  2745. image: {
  2746. source: "./media/characters/okuri/sitting.svg",
  2747. extra: 370/318,
  2748. bottom: 99/469
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Smallest",
  2755. height: math.unit(5 + 2/12, "feet")
  2756. },
  2757. {
  2758. name: "Smaller",
  2759. height: math.unit(300, "feet")
  2760. },
  2761. {
  2762. name: "Small",
  2763. height: math.unit(1000, "feet")
  2764. },
  2765. {
  2766. name: "Macro",
  2767. height: math.unit(1, "mile")
  2768. },
  2769. {
  2770. name: "Mega Macro (Small)",
  2771. height: math.unit(20, "km")
  2772. },
  2773. {
  2774. name: "Mega Macro (Large)",
  2775. height: math.unit(600, "km")
  2776. },
  2777. {
  2778. name: "Giga Macro",
  2779. height: math.unit(10000, "km")
  2780. },
  2781. {
  2782. name: "Normal",
  2783. height: math.unit(577560, "km"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Large",
  2788. height: math.unit(4, "galaxies")
  2789. },
  2790. {
  2791. name: "Largest",
  2792. height: math.unit(15, "multiverses")
  2793. },
  2794. ]
  2795. ))
  2796. characterMakers.push(() => makeCharacter(
  2797. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2798. {
  2799. front: {
  2800. height: math.unit(7, "feet"),
  2801. weight: math.unit(100, "kg"),
  2802. name: "Front",
  2803. image: {
  2804. source: "./media/characters/manny/front.svg",
  2805. extra: 1,
  2806. bottom: 0.06
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(7, "feet"),
  2811. weight: math.unit(100, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/manny/back.svg",
  2815. extra: 1,
  2816. bottom: 0.014
  2817. }
  2818. },
  2819. },
  2820. [
  2821. {
  2822. name: "Normal",
  2823. height: math.unit(7, "feet"),
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(78, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro+",
  2832. height: math.unit(300, "meters")
  2833. },
  2834. {
  2835. name: "Macro++",
  2836. height: math.unit(2400, "meters")
  2837. },
  2838. {
  2839. name: "Megamacro",
  2840. height: math.unit(5167, "meters")
  2841. },
  2842. {
  2843. name: "Gigamacro",
  2844. height: math.unit(41769, "miles")
  2845. },
  2846. ]
  2847. ))
  2848. characterMakers.push(() => makeCharacter(
  2849. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2850. {
  2851. front: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Front",
  2855. image: {
  2856. source: "./media/characters/adake/front-1.svg"
  2857. }
  2858. },
  2859. frontAlt: {
  2860. height: math.unit(7, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Front (Alt)",
  2863. image: {
  2864. source: "./media/characters/adake/front-2.svg",
  2865. extra: 1,
  2866. bottom: 0.01
  2867. }
  2868. },
  2869. back: {
  2870. height: math.unit(7, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Back",
  2873. image: {
  2874. source: "./media/characters/adake/back.svg",
  2875. }
  2876. },
  2877. kneel: {
  2878. height: math.unit(5.385, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Kneeling",
  2881. image: {
  2882. source: "./media/characters/adake/kneel.svg",
  2883. bottom: 0.052
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(7, "feet"),
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(78, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Macro+",
  2899. height: math.unit(300, "meters")
  2900. },
  2901. {
  2902. name: "Macro++",
  2903. height: math.unit(2400, "meters")
  2904. },
  2905. {
  2906. name: "Megamacro",
  2907. height: math.unit(5167, "meters")
  2908. },
  2909. {
  2910. name: "Gigamacro",
  2911. height: math.unit(41769, "miles")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(1.65, "meters"),
  2920. weight: math.unit(50, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/elijah/front.svg",
  2924. extra: 858 / 830,
  2925. bottom: 95.5 / 953.8559
  2926. }
  2927. },
  2928. back: {
  2929. height: math.unit(1.65, "meters"),
  2930. weight: math.unit(50, "kg"),
  2931. name: "Back",
  2932. image: {
  2933. source: "./media/characters/elijah/back.svg",
  2934. extra: 895 / 850,
  2935. bottom: 5.3 / 897.956
  2936. }
  2937. },
  2938. frontNsfw: {
  2939. height: math.unit(1.65, "meters"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front (NSFW)",
  2942. image: {
  2943. source: "./media/characters/elijah/front-nsfw.svg",
  2944. extra: 858 / 830,
  2945. bottom: 95.5 / 953.8559
  2946. }
  2947. },
  2948. backNsfw: {
  2949. height: math.unit(1.65, "meters"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back (NSFW)",
  2952. image: {
  2953. source: "./media/characters/elijah/back-nsfw.svg",
  2954. extra: 895 / 850,
  2955. bottom: 5.3 / 897.956
  2956. }
  2957. },
  2958. dick: {
  2959. height: math.unit(1, "feet"),
  2960. name: "Dick",
  2961. image: {
  2962. source: "./media/characters/elijah/dick.svg"
  2963. }
  2964. },
  2965. beakOpen: {
  2966. height: math.unit(1.25, "feet"),
  2967. name: "Beak (Open)",
  2968. image: {
  2969. source: "./media/characters/elijah/beak-open.svg"
  2970. }
  2971. },
  2972. beakShut: {
  2973. height: math.unit(1.25, "feet"),
  2974. name: "Beak (Shut)",
  2975. image: {
  2976. source: "./media/characters/elijah/beak-shut.svg"
  2977. }
  2978. },
  2979. footFlexing: {
  2980. height: math.unit(1.61, "feet"),
  2981. name: "Foot (Flexing)",
  2982. image: {
  2983. source: "./media/characters/elijah/foot-flexing.svg"
  2984. }
  2985. },
  2986. footStepping: {
  2987. height: math.unit(1.44, "feet"),
  2988. name: "Foot (Stepping)",
  2989. image: {
  2990. source: "./media/characters/elijah/foot-stepping.svg"
  2991. }
  2992. },
  2993. plantigradeLeg: {
  2994. height: math.unit(2.34, "feet"),
  2995. name: "Plantigrade Leg",
  2996. image: {
  2997. source: "./media/characters/elijah/plantigrade-leg.svg"
  2998. }
  2999. },
  3000. plantigradeFootLeft: {
  3001. height: math.unit(0.9, "feet"),
  3002. name: "Plantigrade Foot (Left)",
  3003. image: {
  3004. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3005. }
  3006. },
  3007. plantigradeFootRight: {
  3008. height: math.unit(0.9, "feet"),
  3009. name: "Plantigrade Foot (Right)",
  3010. image: {
  3011. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(1.65, "meters")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(55, "meters"),
  3023. default: true
  3024. },
  3025. {
  3026. name: "Macro+",
  3027. height: math.unit(105, "meters")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(7 + 2/12, "feet"),
  3036. weight: math.unit(320, "kg"),
  3037. preyCapacity: math.unit(0.276549935, "people"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/rai/front.svg",
  3041. extra: 1802/1696,
  3042. bottom: 68/1870
  3043. },
  3044. form: "anthro",
  3045. default: true
  3046. },
  3047. frontDressed: {
  3048. height: math.unit(7 + 2/12, "feet"),
  3049. weight: math.unit(320, "kg"),
  3050. preyCapacity: math.unit(0.276549935, "people"),
  3051. name: "Front (Dressed)",
  3052. image: {
  3053. source: "./media/characters/rai/front-dressed.svg",
  3054. extra: 1802/1696,
  3055. bottom: 68/1870
  3056. },
  3057. form: "anthro"
  3058. },
  3059. side: {
  3060. height: math.unit(7 + 2/12, "feet"),
  3061. weight: math.unit(320, "kg"),
  3062. preyCapacity: math.unit(0.276549935, "people"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/rai/side.svg",
  3066. extra: 1789/1710,
  3067. bottom: 115/1904
  3068. },
  3069. form: "anthro"
  3070. },
  3071. back: {
  3072. height: math.unit(7 + 2/12, "feet"),
  3073. weight: math.unit(320, "kg"),
  3074. preyCapacity: math.unit(0.276549935, "people"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/rai/back.svg",
  3078. extra: 1770/1707,
  3079. bottom: 28/1798
  3080. },
  3081. form: "anthro"
  3082. },
  3083. feral: {
  3084. height: math.unit(9.5, "feet"),
  3085. weight: math.unit(640, "kg"),
  3086. preyCapacity: math.unit(4, "people"),
  3087. name: "Feral",
  3088. image: {
  3089. source: "./media/characters/rai/feral.svg",
  3090. extra: 945/553,
  3091. bottom: 176/1121
  3092. },
  3093. form: "feral",
  3094. default: true
  3095. },
  3096. dragon: {
  3097. height: math.unit(23, "feet"),
  3098. weight: math.unit(50000, "lb"),
  3099. name: "Dragon",
  3100. image: {
  3101. source: "./media/characters/rai/dragon.svg",
  3102. extra: 2498 / 2030,
  3103. bottom: 85.2 / 2584
  3104. },
  3105. form: "dragon",
  3106. default: true
  3107. },
  3108. maw: {
  3109. height: math.unit(1.69, "feet"),
  3110. name: "Maw",
  3111. image: {
  3112. source: "./media/characters/rai/maw.svg"
  3113. },
  3114. form: "anthro"
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(7 + 2/12, "feet"),
  3121. form: "anthro"
  3122. },
  3123. {
  3124. name: "Big",
  3125. height: math.unit(11, "feet"),
  3126. form: "anthro"
  3127. },
  3128. {
  3129. name: "Minimacro",
  3130. height: math.unit(77, "feet"),
  3131. form: "anthro"
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(302, "feet"),
  3136. default: true,
  3137. form: "anthro"
  3138. },
  3139. {
  3140. name: "Normal",
  3141. height: math.unit(9.5, "feet"),
  3142. form: "feral",
  3143. default: true
  3144. },
  3145. {
  3146. name: "Normal",
  3147. height: math.unit(23, "feet"),
  3148. form: "dragon",
  3149. default: true
  3150. }
  3151. ],
  3152. {
  3153. "anthro": {
  3154. name: "Anthro",
  3155. default: true
  3156. },
  3157. "feral": {
  3158. name: "Feral",
  3159. },
  3160. "dragon": {
  3161. name: "Dragon",
  3162. },
  3163. }
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3167. {
  3168. frontDressed: {
  3169. height: math.unit(216, "feet"),
  3170. weight: math.unit(7000000, "lb"),
  3171. preyCapacity: math.unit(1321, "people"),
  3172. name: "Front (Dressed)",
  3173. image: {
  3174. source: "./media/characters/jazzy/front-dressed.svg",
  3175. extra: 2738 / 2651,
  3176. bottom: 41.8 / 2786
  3177. }
  3178. },
  3179. backDressed: {
  3180. height: math.unit(216, "feet"),
  3181. weight: math.unit(7000000, "lb"),
  3182. preyCapacity: math.unit(1321, "people"),
  3183. name: "Back (Dressed)",
  3184. image: {
  3185. source: "./media/characters/jazzy/back-dressed.svg",
  3186. extra: 2775 / 2673,
  3187. bottom: 36.8 / 2817
  3188. }
  3189. },
  3190. front: {
  3191. height: math.unit(216, "feet"),
  3192. weight: math.unit(7000000, "lb"),
  3193. preyCapacity: math.unit(1321, "people"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/jazzy/front.svg",
  3197. extra: 2738 / 2651,
  3198. bottom: 41.8 / 2786
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(216, "feet"),
  3203. weight: math.unit(7000000, "lb"),
  3204. preyCapacity: math.unit(1321, "people"),
  3205. name: "Back",
  3206. image: {
  3207. source: "./media/characters/jazzy/back.svg",
  3208. extra: 2775 / 2673,
  3209. bottom: 36.8 / 2817
  3210. }
  3211. },
  3212. maw: {
  3213. height: math.unit(20, "feet"),
  3214. name: "Maw",
  3215. image: {
  3216. source: "./media/characters/jazzy/maw.svg"
  3217. }
  3218. },
  3219. paws: {
  3220. height: math.unit(27.5, "feet"),
  3221. name: "Paws",
  3222. image: {
  3223. source: "./media/characters/jazzy/paws.svg"
  3224. }
  3225. },
  3226. eye: {
  3227. height: math.unit(4.4, "feet"),
  3228. name: "Eye",
  3229. image: {
  3230. source: "./media/characters/jazzy/eye.svg"
  3231. }
  3232. },
  3233. droneOffense: {
  3234. height: math.unit(9.5, "inches"),
  3235. name: "Drone (Offense)",
  3236. image: {
  3237. source: "./media/characters/jazzy/drone-offense.svg"
  3238. }
  3239. },
  3240. droneRecon: {
  3241. height: math.unit(9.5, "inches"),
  3242. name: "Drone (Recon)",
  3243. image: {
  3244. source: "./media/characters/jazzy/drone-recon.svg"
  3245. }
  3246. },
  3247. droneDefense: {
  3248. height: math.unit(9.5, "inches"),
  3249. name: "Drone (Defense)",
  3250. image: {
  3251. source: "./media/characters/jazzy/drone-defense.svg"
  3252. }
  3253. },
  3254. },
  3255. [
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(216, "feet"),
  3259. default: true
  3260. },
  3261. ]
  3262. ))
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(9 + 6/12, "feet"),
  3268. weight: math.unit(700, "lb"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/flamm/front.svg",
  3272. extra: 1736/1596,
  3273. bottom: 93/1829
  3274. }
  3275. },
  3276. buff: {
  3277. height: math.unit(9 + 6/12, "feet"),
  3278. weight: math.unit(950, "lb"),
  3279. name: "Buff",
  3280. image: {
  3281. source: "./media/characters/flamm/buff.svg",
  3282. extra: 3018/2874,
  3283. bottom: 221/3239
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(9.5, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(200, "feet"),
  3295. default: true
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(5 + 3/12, "feet"),
  3304. weight: math.unit(60, "kg"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/zephiro/front.svg",
  3308. extra: 1873/1761,
  3309. bottom: 147/2020
  3310. }
  3311. },
  3312. side: {
  3313. height: math.unit(5 + 3/12, "feet"),
  3314. weight: math.unit(60, "kg"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/zephiro/side.svg",
  3318. extra: 1929/1827,
  3319. bottom: 65/1994
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(5 + 3/12, "feet"),
  3324. weight: math.unit(60, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/zephiro/back.svg",
  3328. extra: 1926/1816,
  3329. bottom: 41/1967
  3330. }
  3331. },
  3332. hand: {
  3333. height: math.unit(0.68, "feet"),
  3334. name: "Hand",
  3335. image: {
  3336. source: "./media/characters/zephiro/hand.svg"
  3337. }
  3338. },
  3339. paw: {
  3340. height: math.unit(1, "feet"),
  3341. name: "Paw",
  3342. image: {
  3343. source: "./media/characters/zephiro/paw.svg"
  3344. }
  3345. },
  3346. beans: {
  3347. height: math.unit(0.93, "feet"),
  3348. name: "Beans",
  3349. image: {
  3350. source: "./media/characters/zephiro/beans.svg"
  3351. }
  3352. },
  3353. },
  3354. [
  3355. {
  3356. name: "Micro",
  3357. height: math.unit(3, "inches")
  3358. },
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(5 + 3 / 12, "feet"),
  3362. default: true
  3363. },
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(118, "feet")
  3367. },
  3368. ]
  3369. ))
  3370. characterMakers.push(() => makeCharacter(
  3371. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3372. {
  3373. front: {
  3374. height: math.unit(5, "feet"),
  3375. weight: math.unit(90, "kg"),
  3376. preyCapacity: math.unit(14, "people"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/fory/front.svg",
  3380. extra: 2862 / 2674,
  3381. bottom: 180 / 3043.8
  3382. },
  3383. form: "weaselbun",
  3384. default: true,
  3385. extraAttributes: {
  3386. "pawSize": {
  3387. name: "Paw Size",
  3388. power: 2,
  3389. type: "area",
  3390. base: math.unit(0.1596, "m^2")
  3391. },
  3392. "pawLength": {
  3393. name: "Paw Length",
  3394. power: 1,
  3395. type: "length",
  3396. base: math.unit(0.7, "m")
  3397. }
  3398. }
  3399. },
  3400. back: {
  3401. height: math.unit(5, "feet"),
  3402. weight: math.unit(90, "kg"),
  3403. preyCapacity: math.unit(14, "people"),
  3404. name: "Back",
  3405. image: {
  3406. source: "./media/characters/fory/back.svg",
  3407. extra: 1790/1672,
  3408. bottom: 84/1874
  3409. },
  3410. form: "weaselbun",
  3411. extraAttributes: {
  3412. "pawSize": {
  3413. name: "Paw Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.1596, "m^2")
  3417. },
  3418. "pawLength": {
  3419. name: "Paw Length",
  3420. power: 1,
  3421. type: "length",
  3422. base: math.unit(0.7, "m")
  3423. }
  3424. }
  3425. },
  3426. paw: {
  3427. height: math.unit(2.14, "feet"),
  3428. name: "Paw",
  3429. image: {
  3430. source: "./media/characters/fory/paw.svg"
  3431. },
  3432. form: "weaselbun",
  3433. extraAttributes: {
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.1596, "m^2")
  3439. },
  3440. "pawLength": {
  3441. name: "Paw Length",
  3442. power: 1,
  3443. type: "length",
  3444. base: math.unit(0.48, "m")
  3445. }
  3446. }
  3447. },
  3448. bunBack: {
  3449. height: math.unit(3, "feet"),
  3450. weight: math.unit(20, "kg"),
  3451. preyCapacity: math.unit(3, "people"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/fory/bun-back.svg",
  3455. extra: 1749/1564,
  3456. bottom: 246/1995
  3457. },
  3458. form: "bun",
  3459. default: true,
  3460. extraAttributes: {
  3461. "pawSize": {
  3462. name: "Paw Size",
  3463. power: 2,
  3464. type: "area",
  3465. base: math.unit(0.072, "m^2")
  3466. },
  3467. "pawLength": {
  3468. name: "Paw Length",
  3469. power: 1,
  3470. type: "length",
  3471. base: math.unit(0.45, "m")
  3472. }
  3473. }
  3474. },
  3475. },
  3476. [
  3477. {
  3478. name: "Normal",
  3479. height: math.unit(5, "feet"),
  3480. form: "weaselbun"
  3481. },
  3482. {
  3483. name: "Macro",
  3484. height: math.unit(50, "feet"),
  3485. default: true,
  3486. form: "weaselbun"
  3487. },
  3488. {
  3489. name: "Megamacro",
  3490. height: math.unit(10, "miles"),
  3491. form: "weaselbun"
  3492. },
  3493. {
  3494. name: "Gigamacro",
  3495. height: math.unit(5, "earths"),
  3496. form: "weaselbun"
  3497. },
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(3, "feet"),
  3501. default: true,
  3502. form: "bun"
  3503. },
  3504. {
  3505. name: "Fun-Size",
  3506. height: math.unit(12, "feet"),
  3507. form: "bun"
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(100, "feet"),
  3512. form: "bun"
  3513. },
  3514. {
  3515. name: "Planetary",
  3516. height: math.unit(3, "earths"),
  3517. form: "bun"
  3518. },
  3519. ],
  3520. {
  3521. "weaselbun": {
  3522. name: "Weaselbun",
  3523. default: true
  3524. },
  3525. "bun": {
  3526. name: "Bun",
  3527. },
  3528. }
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(7, "feet"),
  3535. weight: math.unit(90, "kg"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/kurrikage/front.svg",
  3539. extra: 1845/1733,
  3540. bottom: 119/1964
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(7, "feet"),
  3545. weight: math.unit(90, "kg"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/kurrikage/back.svg",
  3549. extra: 1790/1677,
  3550. bottom: 61/1851
  3551. }
  3552. },
  3553. dressed: {
  3554. height: math.unit(7, "feet"),
  3555. weight: math.unit(90, "kg"),
  3556. name: "Dressed",
  3557. image: {
  3558. source: "./media/characters/kurrikage/dressed.svg",
  3559. extra: 1845/1733,
  3560. bottom: 119/1964
  3561. }
  3562. },
  3563. foot: {
  3564. height: math.unit(1.5, "feet"),
  3565. name: "Foot",
  3566. image: {
  3567. source: "./media/characters/kurrikage/foot.svg"
  3568. }
  3569. },
  3570. staff: {
  3571. height: math.unit(6.7, "feet"),
  3572. name: "Staff",
  3573. image: {
  3574. source: "./media/characters/kurrikage/staff.svg"
  3575. }
  3576. },
  3577. peek: {
  3578. height: math.unit(1.05, "feet"),
  3579. name: "Peeking",
  3580. image: {
  3581. source: "./media/characters/kurrikage/peek.svg",
  3582. bottom: 0.08
  3583. }
  3584. },
  3585. },
  3586. [
  3587. {
  3588. name: "Normal",
  3589. height: math.unit(12, "feet"),
  3590. default: true
  3591. },
  3592. {
  3593. name: "Big",
  3594. height: math.unit(20, "feet")
  3595. },
  3596. {
  3597. name: "Macro",
  3598. height: math.unit(500, "feet")
  3599. },
  3600. {
  3601. name: "Megamacro",
  3602. height: math.unit(20, "miles")
  3603. },
  3604. ]
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(6, "feet"),
  3611. weight: math.unit(75, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/shingo/front.svg",
  3615. extra: 1900/1825,
  3616. bottom: 82/1982
  3617. }
  3618. },
  3619. side: {
  3620. height: math.unit(6, "feet"),
  3621. weight: math.unit(75, "kg"),
  3622. name: "Side",
  3623. image: {
  3624. source: "./media/characters/shingo/side.svg",
  3625. extra: 1930/1865,
  3626. bottom: 16/1946
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(6, "feet"),
  3631. weight: math.unit(75, "kg"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/shingo/back.svg",
  3635. extra: 1922/1852,
  3636. bottom: 16/1938
  3637. }
  3638. },
  3639. frontDressed: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(150, "lb"),
  3642. name: "Front-dressed",
  3643. image: {
  3644. source: "./media/characters/shingo/front-dressed.svg",
  3645. extra: 1900/1825,
  3646. bottom: 82/1982
  3647. }
  3648. },
  3649. paw: {
  3650. height: math.unit(1.29, "feet"),
  3651. name: "Paw",
  3652. image: {
  3653. source: "./media/characters/shingo/paw.svg"
  3654. }
  3655. },
  3656. hand: {
  3657. height: math.unit(1.07, "feet"),
  3658. name: "Hand",
  3659. image: {
  3660. source: "./media/characters/shingo/hand.svg"
  3661. }
  3662. },
  3663. frontAlt: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(75, "kg"),
  3666. name: "Front (Alt)",
  3667. image: {
  3668. source: "./media/characters/shingo/front-alt.svg",
  3669. extra: 3511 / 3338,
  3670. bottom: 0.005
  3671. }
  3672. },
  3673. frontAlt2: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(75, "kg"),
  3676. name: "Front (Alt 2)",
  3677. image: {
  3678. source: "./media/characters/shingo/front-alt-2.svg",
  3679. extra: 706/681,
  3680. bottom: 11/717
  3681. }
  3682. },
  3683. pawAlt: {
  3684. height: math.unit(1, "feet"),
  3685. name: "Paw (Alt)",
  3686. image: {
  3687. source: "./media/characters/shingo/paw-alt.svg"
  3688. }
  3689. },
  3690. },
  3691. [
  3692. {
  3693. name: "Micro",
  3694. height: math.unit(4, "inches")
  3695. },
  3696. {
  3697. name: "Normal",
  3698. height: math.unit(6, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(108, "feet")
  3704. },
  3705. {
  3706. name: "Macro+",
  3707. height: math.unit(1500, "feet")
  3708. },
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3713. {
  3714. side: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(75, "kg"),
  3717. name: "Side",
  3718. image: {
  3719. source: "./media/characters/aigey/side.svg"
  3720. }
  3721. },
  3722. },
  3723. [
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(200, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Megamacro",
  3731. height: math.unit(100, "miles")
  3732. },
  3733. ]
  3734. )
  3735. )
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(5 + 5 / 12, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/natasha/front.svg",
  3745. extra: 859 / 824,
  3746. bottom: 23 / 879.6
  3747. }
  3748. },
  3749. frontNsfw: {
  3750. height: math.unit(5 + 5 / 12, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front (NSFW)",
  3753. image: {
  3754. source: "./media/characters/natasha/front-nsfw.svg",
  3755. extra: 859 / 824,
  3756. bottom: 23 / 879.6
  3757. }
  3758. },
  3759. frontErect: {
  3760. height: math.unit(5 + 5 / 12, "feet"),
  3761. weight: math.unit(75, "kg"),
  3762. name: "Front (Erect)",
  3763. image: {
  3764. source: "./media/characters/natasha/front-erect.svg",
  3765. extra: 859 / 824,
  3766. bottom: 23 / 879.6
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(5 + 5 / 12, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/natasha/back.svg",
  3775. extra: 887.9 / 852.6,
  3776. bottom: 9.7 / 896.4
  3777. }
  3778. },
  3779. backAlt: {
  3780. height: math.unit(5 + 5 / 12, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Back (Alt)",
  3783. image: {
  3784. source: "./media/characters/natasha/back-alt.svg",
  3785. extra: 1236.7 / 1192,
  3786. bottom: 22.3 / 1258.2
  3787. }
  3788. },
  3789. dick: {
  3790. height: math.unit(1.772, "feet"),
  3791. name: "Dick",
  3792. image: {
  3793. source: "./media/characters/natasha/dick.svg"
  3794. }
  3795. },
  3796. paw: {
  3797. height: math.unit(0.250, "meters"),
  3798. name: "Paw",
  3799. image: {
  3800. source: "./media/characters/natasha/paw.svg"
  3801. },
  3802. extraAttributes: {
  3803. "toeSize": {
  3804. name: "Toe Size",
  3805. power: 2,
  3806. type: "area",
  3807. base: math.unit(0.0024, "m^2")
  3808. },
  3809. "padSize": {
  3810. name: "Pad Size",
  3811. power: 2,
  3812. type: "area",
  3813. base: math.unit(0.00889, "m^2")
  3814. },
  3815. "pawSize": {
  3816. name: "Paw Size",
  3817. power: 2,
  3818. type: "area",
  3819. base: math.unit(0.023667, "m^2")
  3820. },
  3821. }
  3822. },
  3823. },
  3824. [
  3825. {
  3826. name: "Shortstack",
  3827. height: math.unit(3, "feet"),
  3828. default: true
  3829. },
  3830. {
  3831. name: "Normal",
  3832. height: math.unit(5 + 5 / 12, "feet")
  3833. },
  3834. {
  3835. name: "Large",
  3836. height: math.unit(12, "feet")
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(100, "feet")
  3841. },
  3842. {
  3843. name: "Macro+",
  3844. height: math.unit(260, "feet")
  3845. },
  3846. {
  3847. name: "Macro++",
  3848. height: math.unit(1, "mile")
  3849. },
  3850. ]
  3851. ))
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(6, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/malik/front.svg",
  3861. extra: 1750/1561,
  3862. bottom: 80/1830
  3863. },
  3864. extraAttributes: {
  3865. "toeSize": {
  3866. name: "Toe Size",
  3867. power: 2,
  3868. type: "area",
  3869. base: math.unit(0.0159, "m^2")
  3870. },
  3871. "pawSize": {
  3872. name: "Paw Size",
  3873. power: 2,
  3874. type: "area",
  3875. base: math.unit(0.09834, "m^2")
  3876. },
  3877. }
  3878. },
  3879. side: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Side",
  3883. image: {
  3884. source: "./media/characters/malik/side.svg",
  3885. extra: 1802/1685,
  3886. bottom: 42/1844
  3887. },
  3888. extraAttributes: {
  3889. "toeSize": {
  3890. name: "Toe Size",
  3891. power: 2,
  3892. type: "area",
  3893. base: math.unit(0.0159, "m^2")
  3894. },
  3895. "pawSize": {
  3896. name: "Paw Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.09834, "m^2")
  3900. },
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(75, "kg"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/malik/back.svg",
  3909. extra: 1803/1607,
  3910. bottom: 33/1836
  3911. },
  3912. extraAttributes: {
  3913. "toeSize": {
  3914. name: "Toe Size",
  3915. power: 2,
  3916. type: "area",
  3917. base: math.unit(0.0159, "m^2")
  3918. },
  3919. "pawSize": {
  3920. name: "Paw Size",
  3921. power: 2,
  3922. type: "area",
  3923. base: math.unit(0.09834, "m^2")
  3924. },
  3925. }
  3926. },
  3927. },
  3928. [
  3929. {
  3930. name: "Macro",
  3931. height: math.unit(156, "feet"),
  3932. default: true
  3933. },
  3934. {
  3935. name: "Macro+",
  3936. height: math.unit(1188, "feet")
  3937. },
  3938. ]
  3939. ))
  3940. characterMakers.push(() => makeCharacter(
  3941. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3942. {
  3943. front: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(75, "kg"),
  3946. name: "Front",
  3947. image: {
  3948. source: "./media/characters/sefer/front.svg",
  3949. extra: 848 / 659,
  3950. bottom: 28.3 / 876.442
  3951. }
  3952. },
  3953. back: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(75, "kg"),
  3956. name: "Back",
  3957. image: {
  3958. source: "./media/characters/sefer/back.svg",
  3959. extra: 864 / 695,
  3960. bottom: 10 / 871
  3961. }
  3962. },
  3963. frontDressed: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Dressed",
  3967. image: {
  3968. source: "./media/characters/sefer/dressed.svg",
  3969. extra: 839 / 653,
  3970. bottom: 37.6 / 878
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(6, "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Big",
  3982. height: math.unit(8, "meters")
  3983. },
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3988. {
  3989. body: {
  3990. height: math.unit(2.2428, "meter"),
  3991. weight: math.unit(124.738, "kg"),
  3992. name: "Body",
  3993. image: {
  3994. extra: 1225 / 1050,
  3995. source: "./media/characters/north/front.svg"
  3996. }
  3997. }
  3998. },
  3999. [
  4000. {
  4001. name: "Micro",
  4002. height: math.unit(4, "inches")
  4003. },
  4004. {
  4005. name: "Macro",
  4006. height: math.unit(63, "meters")
  4007. },
  4008. {
  4009. name: "Megamacro",
  4010. height: math.unit(101, "miles"),
  4011. default: true
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4017. {
  4018. angled: {
  4019. height: math.unit(4, "meter"),
  4020. weight: math.unit(150, "kg"),
  4021. name: "Angled",
  4022. image: {
  4023. source: "./media/characters/talan/angled-sfw.svg",
  4024. bottom: 29 / 3734
  4025. }
  4026. },
  4027. angledNsfw: {
  4028. height: math.unit(4, "meter"),
  4029. weight: math.unit(150, "kg"),
  4030. name: "Angled (NSFW)",
  4031. image: {
  4032. source: "./media/characters/talan/angled-nsfw.svg",
  4033. bottom: 29 / 3734
  4034. }
  4035. },
  4036. frontNsfw: {
  4037. height: math.unit(4, "meter"),
  4038. weight: math.unit(150, "kg"),
  4039. name: "Front (NSFW)",
  4040. image: {
  4041. source: "./media/characters/talan/front-nsfw.svg",
  4042. bottom: 29 / 3734
  4043. }
  4044. },
  4045. sideNsfw: {
  4046. height: math.unit(4, "meter"),
  4047. weight: math.unit(150, "kg"),
  4048. name: "Side (NSFW)",
  4049. image: {
  4050. source: "./media/characters/talan/side-nsfw.svg",
  4051. bottom: 29 / 3734
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(4, "meter"),
  4056. weight: math.unit(150, "kg"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/talan/back.svg"
  4060. }
  4061. },
  4062. dickBottom: {
  4063. height: math.unit(0.621, "meter"),
  4064. name: "Dick (Bottom)",
  4065. image: {
  4066. source: "./media/characters/talan/dick-bottom.svg"
  4067. }
  4068. },
  4069. dickTop: {
  4070. height: math.unit(0.621, "meter"),
  4071. name: "Dick (Top)",
  4072. image: {
  4073. source: "./media/characters/talan/dick-top.svg"
  4074. }
  4075. },
  4076. dickSide: {
  4077. height: math.unit(0.305, "meter"),
  4078. name: "Dick (Side)",
  4079. image: {
  4080. source: "./media/characters/talan/dick-side.svg"
  4081. }
  4082. },
  4083. dickFront: {
  4084. height: math.unit(0.305, "meter"),
  4085. name: "Dick (Front)",
  4086. image: {
  4087. source: "./media/characters/talan/dick-front.svg"
  4088. }
  4089. },
  4090. },
  4091. [
  4092. {
  4093. name: "Normal",
  4094. height: math.unit(4, "meters")
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(100, "meters")
  4099. },
  4100. {
  4101. name: "Megamacro",
  4102. height: math.unit(2, "miles"),
  4103. default: true
  4104. },
  4105. {
  4106. name: "Gigamacro",
  4107. height: math.unit(5000, "miles")
  4108. },
  4109. {
  4110. name: "Teramacro",
  4111. height: math.unit(100, "parsecs")
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4117. {
  4118. front: {
  4119. height: math.unit(2, "meter"),
  4120. weight: math.unit(90, "kg"),
  4121. name: "Front",
  4122. image: {
  4123. source: "./media/characters/gael'rathus/front.svg"
  4124. }
  4125. },
  4126. frontAlt: {
  4127. height: math.unit(2, "meter"),
  4128. weight: math.unit(90, "kg"),
  4129. name: "Front (alt)",
  4130. image: {
  4131. source: "./media/characters/gael'rathus/front-alt.svg"
  4132. }
  4133. },
  4134. frontAlt2: {
  4135. height: math.unit(2, "meter"),
  4136. weight: math.unit(90, "kg"),
  4137. name: "Front (alt 2)",
  4138. image: {
  4139. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4140. }
  4141. }
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(9, "feet"),
  4147. default: true
  4148. },
  4149. {
  4150. name: "Large",
  4151. height: math.unit(25, "feet")
  4152. },
  4153. {
  4154. name: "Macro",
  4155. height: math.unit(0.25, "miles")
  4156. },
  4157. {
  4158. name: "Megamacro",
  4159. height: math.unit(10, "miles")
  4160. }
  4161. ]
  4162. ))
  4163. characterMakers.push(() => makeCharacter(
  4164. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4165. {
  4166. side: {
  4167. height: math.unit(2, "meter"),
  4168. weight: math.unit(140, "kg"),
  4169. name: "Side",
  4170. image: {
  4171. source: "./media/characters/sosha/side.svg",
  4172. extra: 1170/1006,
  4173. bottom: 94/1264
  4174. }
  4175. },
  4176. maw: {
  4177. height: math.unit(2.87, "feet"),
  4178. name: "Maw",
  4179. image: {
  4180. source: "./media/characters/sosha/maw.svg",
  4181. extra: 966/865,
  4182. bottom: 0/966
  4183. }
  4184. },
  4185. cooch: {
  4186. height: math.unit(5.6, "feet"),
  4187. name: "Cooch",
  4188. image: {
  4189. source: "./media/characters/sosha/cooch.svg"
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(12, "feet"),
  4197. default: true
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4203. {
  4204. side: {
  4205. height: math.unit(5 + 5 / 12, "feet"),
  4206. weight: math.unit(170, "kg"),
  4207. name: "Side",
  4208. image: {
  4209. source: "./media/characters/runnola/side.svg",
  4210. extra: 741 / 448,
  4211. bottom: 0.05
  4212. }
  4213. },
  4214. },
  4215. [
  4216. {
  4217. name: "Small",
  4218. height: math.unit(3, "feet")
  4219. },
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(5 + 5 / 12, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Big",
  4227. height: math.unit(10, "feet")
  4228. },
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(50, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/kurribird/front.svg",
  4240. bottom: 0.015
  4241. }
  4242. },
  4243. frontAlt: {
  4244. height: math.unit(1.5, "meter"),
  4245. weight: math.unit(50, "kg"),
  4246. name: "Front (Alt)",
  4247. image: {
  4248. source: "./media/characters/kurribird/front-alt.svg",
  4249. extra: 1.45
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(7, "feet")
  4257. },
  4258. {
  4259. name: "Big",
  4260. height: math.unit(12, "feet"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Macro",
  4265. height: math.unit(1500, "feet")
  4266. },
  4267. {
  4268. name: "Megamacro",
  4269. height: math.unit(2, "miles")
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(2, "meter"),
  4278. weight: math.unit(80, "kg"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/elbial/front.svg",
  4282. extra: 1643 / 1556,
  4283. bottom: 60.2 / 1696
  4284. }
  4285. },
  4286. side: {
  4287. height: math.unit(2, "meter"),
  4288. weight: math.unit(80, "kg"),
  4289. name: "Side",
  4290. image: {
  4291. source: "./media/characters/elbial/side.svg",
  4292. extra: 1601/1528,
  4293. bottom: 97/1698
  4294. }
  4295. },
  4296. back: {
  4297. height: math.unit(2, "meter"),
  4298. weight: math.unit(80, "kg"),
  4299. name: "Back",
  4300. image: {
  4301. source: "./media/characters/elbial/back.svg",
  4302. extra: 1653/1569,
  4303. bottom: 20/1673
  4304. }
  4305. },
  4306. frontDressed: {
  4307. height: math.unit(2, "meter"),
  4308. weight: math.unit(80, "kg"),
  4309. name: "Front (Dressed)",
  4310. image: {
  4311. source: "./media/characters/elbial/front-dressed.svg",
  4312. extra: 1638/1569,
  4313. bottom: 70/1708
  4314. }
  4315. },
  4316. genitals: {
  4317. height: math.unit(2 / 3.367, "meter"),
  4318. name: "Genitals",
  4319. image: {
  4320. source: "./media/characters/elbial/genitals.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Large",
  4327. height: math.unit(100, "feet")
  4328. },
  4329. {
  4330. name: "Macro",
  4331. height: math.unit(500, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Megamacro",
  4336. height: math.unit(10, "miles")
  4337. },
  4338. {
  4339. name: "Gigamacro",
  4340. height: math.unit(25000, "miles")
  4341. },
  4342. {
  4343. name: "Full-Size",
  4344. height: math.unit(8000000, "gigaparsecs")
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(2, "meter"),
  4353. weight: math.unit(60, "kg"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/noah/front.svg",
  4357. extra: 1383/1313,
  4358. bottom: 104/1487
  4359. }
  4360. },
  4361. hand: {
  4362. height: math.unit(0.6, "feet"),
  4363. name: "Hand",
  4364. image: {
  4365. source: "./media/characters/noah/hand.svg"
  4366. }
  4367. },
  4368. talons: {
  4369. height: math.unit(1.385, "feet"),
  4370. name: "Talons",
  4371. image: {
  4372. source: "./media/characters/noah/talons.svg"
  4373. }
  4374. },
  4375. beak: {
  4376. height: math.unit(0.43, "feet"),
  4377. name: "Beak",
  4378. image: {
  4379. source: "./media/characters/noah/beak.svg"
  4380. }
  4381. },
  4382. collar: {
  4383. height: math.unit(0.88, "feet"),
  4384. name: "Collar",
  4385. image: {
  4386. source: "./media/characters/noah/collar.svg"
  4387. }
  4388. },
  4389. eyeNarrow: {
  4390. height: math.unit(0.18, "feet"),
  4391. name: "Eye (Narrow)",
  4392. image: {
  4393. source: "./media/characters/noah/eye-narrow.svg"
  4394. }
  4395. },
  4396. eyeNormal: {
  4397. height: math.unit(0.18, "feet"),
  4398. name: "Eye (Normal)",
  4399. image: {
  4400. source: "./media/characters/noah/eye-normal.svg"
  4401. }
  4402. },
  4403. eyeWide: {
  4404. height: math.unit(0.18, "feet"),
  4405. name: "Eye (Wide)",
  4406. image: {
  4407. source: "./media/characters/noah/eye-wide.svg"
  4408. }
  4409. },
  4410. ear: {
  4411. height: math.unit(0.64, "feet"),
  4412. name: "Ear",
  4413. image: {
  4414. source: "./media/characters/noah/ear.svg"
  4415. }
  4416. },
  4417. },
  4418. [
  4419. {
  4420. name: "Large",
  4421. height: math.unit(50, "feet")
  4422. },
  4423. {
  4424. name: "Macro",
  4425. height: math.unit(750, "feet"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Megamacro",
  4430. height: math.unit(50, "miles")
  4431. },
  4432. {
  4433. name: "Gigamacro",
  4434. height: math.unit(100000, "miles")
  4435. },
  4436. {
  4437. name: "Full-Size",
  4438. height: math.unit(3000000000, "miles")
  4439. }
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4444. {
  4445. front: {
  4446. height: math.unit(2, "meter"),
  4447. weight: math.unit(80, "kg"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/natalya/front.svg"
  4451. }
  4452. },
  4453. back: {
  4454. height: math.unit(2, "meter"),
  4455. weight: math.unit(80, "kg"),
  4456. name: "Back",
  4457. image: {
  4458. source: "./media/characters/natalya/back.svg"
  4459. }
  4460. }
  4461. },
  4462. [
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(150, "feet"),
  4466. default: true
  4467. },
  4468. {
  4469. name: "Megamacro",
  4470. height: math.unit(5, "miles")
  4471. },
  4472. {
  4473. name: "Full-Size",
  4474. height: math.unit(600, "kiloparsecs")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(50, "kg"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/erestrebah/front.svg",
  4487. extra: 1262/1162,
  4488. bottom: 96/1358
  4489. }
  4490. },
  4491. back: {
  4492. height: math.unit(2, "meter"),
  4493. weight: math.unit(50, "kg"),
  4494. name: "Back",
  4495. image: {
  4496. source: "./media/characters/erestrebah/back.svg",
  4497. extra: 1257/1139,
  4498. bottom: 13/1270
  4499. }
  4500. },
  4501. wing: {
  4502. height: math.unit(2, "meter"),
  4503. weight: math.unit(50, "kg"),
  4504. name: "Wing",
  4505. image: {
  4506. source: "./media/characters/erestrebah/wing.svg",
  4507. extra: 1262/1162,
  4508. bottom: 96/1358
  4509. }
  4510. },
  4511. mouth: {
  4512. height: math.unit(0.39, "feet"),
  4513. name: "Mouth",
  4514. image: {
  4515. source: "./media/characters/erestrebah/mouth.svg"
  4516. }
  4517. }
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(10, "feet")
  4523. },
  4524. {
  4525. name: "Large",
  4526. height: math.unit(50, "feet"),
  4527. default: true
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(300, "feet")
  4532. },
  4533. {
  4534. name: "Macro+",
  4535. height: math.unit(750, "feet")
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(3, "miles")
  4540. }
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4545. {
  4546. front: {
  4547. height: math.unit(2, "meter"),
  4548. weight: math.unit(80, "kg"),
  4549. name: "Front",
  4550. image: {
  4551. source: "./media/characters/jennifer/front.svg",
  4552. bottom: 0.11,
  4553. extra: 1.16
  4554. }
  4555. },
  4556. frontAlt: {
  4557. height: math.unit(2, "meter"),
  4558. weight: math.unit(80, "kg"),
  4559. name: "Front (Alt)",
  4560. image: {
  4561. source: "./media/characters/jennifer/front-alt.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Canon Height",
  4568. height: math.unit(120, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Macro+",
  4573. height: math.unit(300, "feet")
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(20000, "feet")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(50, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/kalista/front.svg",
  4590. extra: 1314/1145,
  4591. bottom: 101/1415
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(2, "meter"),
  4596. weight: math.unit(50, "kg"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/kalista/back.svg",
  4600. extra: 1366 / 1156,
  4601. bottom: 33.9 / 1362.78
  4602. }
  4603. }
  4604. },
  4605. [
  4606. {
  4607. name: "Uncomfortably Small",
  4608. height: math.unit(10, "feet")
  4609. },
  4610. {
  4611. name: "Small",
  4612. height: math.unit(30, "feet")
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(100, "feet"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Macro+",
  4621. height: math.unit(2000, "feet")
  4622. },
  4623. {
  4624. name: "True Form",
  4625. height: math.unit(8924, "miles")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(120, "kg"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/ggv/front.svg"
  4638. }
  4639. },
  4640. side: {
  4641. height: math.unit(2, "meter"),
  4642. weight: math.unit(120, "kg"),
  4643. name: "Side",
  4644. image: {
  4645. source: "./media/characters/ggv/side.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Extremely Puny",
  4652. height: math.unit(9 + 5 / 12, "feet")
  4653. },
  4654. {
  4655. name: "Horribly Small",
  4656. height: math.unit(47.7, "miles"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Reasonably Sized",
  4661. height: math.unit(25000, "parsecs")
  4662. },
  4663. {
  4664. name: "Slightly Uncompressed",
  4665. height: math.unit(7.77e31, "parsecs")
  4666. },
  4667. {
  4668. name: "Omniversal",
  4669. height: math.unit(1e300, "meters")
  4670. },
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(75, "lb"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/napalm/front.svg"
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(75, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/napalm/back.svg"
  4690. }
  4691. }
  4692. },
  4693. [
  4694. {
  4695. name: "Standard",
  4696. height: math.unit(55, "feet"),
  4697. default: true
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(7 + 5 / 6, "feet"),
  4706. weight: math.unit(325, "lb"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/asana/front.svg",
  4710. extra: 1133 / 1060,
  4711. bottom: 15.2 / 1148.6
  4712. }
  4713. },
  4714. back: {
  4715. height: math.unit(7 + 5 / 6, "feet"),
  4716. weight: math.unit(325, "lb"),
  4717. name: "Back",
  4718. image: {
  4719. source: "./media/characters/asana/back.svg",
  4720. extra: 1114 / 1043,
  4721. bottom: 5 / 1120
  4722. }
  4723. },
  4724. dressedDark: {
  4725. height: math.unit(7 + 5 / 6, "feet"),
  4726. weight: math.unit(325, "lb"),
  4727. name: "Dressed (Dark)",
  4728. image: {
  4729. source: "./media/characters/asana/dressed-dark.svg",
  4730. extra: 1133 / 1060,
  4731. bottom: 15.2 / 1148.6
  4732. }
  4733. },
  4734. dressedLight: {
  4735. height: math.unit(7 + 5 / 6, "feet"),
  4736. weight: math.unit(325, "lb"),
  4737. name: "Dressed (Light)",
  4738. image: {
  4739. source: "./media/characters/asana/dressed-light.svg",
  4740. extra: 1133 / 1060,
  4741. bottom: 15.2 / 1148.6
  4742. }
  4743. },
  4744. },
  4745. [
  4746. {
  4747. name: "Standard",
  4748. height: math.unit(7 + 5 / 6, "feet"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Large",
  4753. height: math.unit(10, "meters")
  4754. },
  4755. {
  4756. name: "Macro",
  4757. height: math.unit(2500, "meters")
  4758. },
  4759. {
  4760. name: "Megamacro",
  4761. height: math.unit(5e6, "meters")
  4762. },
  4763. {
  4764. name: "Examacro",
  4765. height: math.unit(5e12, "lightyears")
  4766. },
  4767. {
  4768. name: "Max Size",
  4769. height: math.unit(1e31, "lightyears")
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(2, "meter"),
  4778. weight: math.unit(60, "kg"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/ebony/front.svg",
  4782. bottom: 0.03,
  4783. extra: 1045 / 810 + 0.03
  4784. }
  4785. },
  4786. side: {
  4787. height: math.unit(2, "meter"),
  4788. weight: math.unit(60, "kg"),
  4789. name: "Side",
  4790. image: {
  4791. source: "./media/characters/ebony/side.svg",
  4792. bottom: 0.03,
  4793. extra: 1045 / 810 + 0.03
  4794. }
  4795. },
  4796. back: {
  4797. height: math.unit(2, "meter"),
  4798. weight: math.unit(60, "kg"),
  4799. name: "Back",
  4800. image: {
  4801. source: "./media/characters/ebony/back.svg",
  4802. bottom: 0.01,
  4803. extra: 1045 / 810 + 0.01
  4804. }
  4805. },
  4806. },
  4807. [
  4808. // TODO check why I did this lol
  4809. {
  4810. name: "Standard",
  4811. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(200, "feet")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(13000, "km")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(175, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/mountain/front.svg",
  4833. extra: 972 / 955,
  4834. bottom: 64 / 1036.6
  4835. }
  4836. },
  4837. back: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(175, "lb"),
  4840. name: "Back",
  4841. image: {
  4842. source: "./media/characters/mountain/back.svg",
  4843. extra: 970 / 950,
  4844. bottom: 28.25 / 999
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Large",
  4851. height: math.unit(20, "meters")
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(300, "meters")
  4856. },
  4857. {
  4858. name: "Gigamacro",
  4859. height: math.unit(10000, "km"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Examacro",
  4864. height: math.unit(10e9, "lightyears")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4870. {
  4871. front: {
  4872. height: math.unit(8, "feet"),
  4873. weight: math.unit(500, "lb"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/rick/front.svg"
  4877. }
  4878. }
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(8, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(5, "km")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(8, "feet"),
  4897. weight: math.unit(120, "lb"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/ona/front.svg"
  4901. }
  4902. },
  4903. frontAlt: {
  4904. height: math.unit(8, "feet"),
  4905. weight: math.unit(120, "lb"),
  4906. name: "Front (Alt)",
  4907. image: {
  4908. source: "./media/characters/ona/front-alt.svg"
  4909. }
  4910. },
  4911. back: {
  4912. height: math.unit(8, "feet"),
  4913. weight: math.unit(120, "lb"),
  4914. name: "Back",
  4915. image: {
  4916. source: "./media/characters/ona/back.svg"
  4917. }
  4918. },
  4919. foot: {
  4920. height: math.unit(1.1, "feet"),
  4921. name: "Foot",
  4922. image: {
  4923. source: "./media/characters/ona/foot.svg"
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Megamacro",
  4930. height: math.unit(70, "km"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(681818, "miles")
  4936. },
  4937. {
  4938. name: "Examacro",
  4939. height: math.unit(3800000, "lightyears")
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(12, "feet"),
  4948. weight: math.unit(3000, "lb"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/mech/front.svg",
  4952. extra: 2900 / 2770,
  4953. bottom: 110 / 3010
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(12, "feet"),
  4958. weight: math.unit(3000, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/mech/back.svg",
  4962. extra: 3011 / 2890,
  4963. bottom: 94 / 3105
  4964. }
  4965. },
  4966. maw: {
  4967. height: math.unit(3.07, "feet"),
  4968. name: "Maw",
  4969. image: {
  4970. source: "./media/characters/mech/maw.svg"
  4971. }
  4972. },
  4973. head: {
  4974. height: math.unit(3.07, "feet"),
  4975. name: "Head",
  4976. image: {
  4977. source: "./media/characters/mech/head.svg"
  4978. }
  4979. },
  4980. dick: {
  4981. height: math.unit(1.43, "feet"),
  4982. name: "Dick",
  4983. image: {
  4984. source: "./media/characters/mech/dick.svg"
  4985. }
  4986. },
  4987. },
  4988. [
  4989. {
  4990. name: "Normal",
  4991. height: math.unit(12, "feet")
  4992. },
  4993. {
  4994. name: "Macro",
  4995. height: math.unit(300, "feet"),
  4996. default: true
  4997. },
  4998. {
  4999. name: "Macro+",
  5000. height: math.unit(1500, "feet")
  5001. },
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5006. {
  5007. front: {
  5008. height: math.unit(1.3, "meter"),
  5009. weight: math.unit(30, "kg"),
  5010. name: "Front",
  5011. image: {
  5012. source: "./media/characters/gregory/front.svg",
  5013. }
  5014. }
  5015. },
  5016. [
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(1.3, "meter"),
  5020. default: true
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(20, "meter")
  5025. }
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(2.8, "meter"),
  5033. weight: math.unit(200, "kg"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/elory/front.svg",
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(2.8, "meter"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(38, "meter")
  5049. }
  5050. ]
  5051. ))
  5052. characterMakers.push(() => makeCharacter(
  5053. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5054. {
  5055. front: {
  5056. height: math.unit(470, "feet"),
  5057. weight: math.unit(924, "tons"),
  5058. name: "Front",
  5059. image: {
  5060. source: "./media/characters/angelpatamon/front.svg",
  5061. }
  5062. }
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(470, "feet"),
  5068. default: true
  5069. },
  5070. {
  5071. name: "Deity Size I",
  5072. height: math.unit(28651.2, "km")
  5073. },
  5074. {
  5075. name: "Deity Size II",
  5076. height: math.unit(171907.2, "km")
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5082. {
  5083. side: {
  5084. height: math.unit(7.2, "meter"),
  5085. weight: math.unit(8.2, "tons"),
  5086. name: "Side",
  5087. image: {
  5088. source: "./media/characters/cryae/side.svg",
  5089. extra: 3500 / 1500
  5090. }
  5091. }
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(7.2, "meter"),
  5097. default: true
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(175, "lb"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/xera/front.svg",
  5110. extra: 2377 / 1972,
  5111. bottom: 75.5 / 2452
  5112. }
  5113. },
  5114. side: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(175, "lb"),
  5117. name: "Side",
  5118. image: {
  5119. source: "./media/characters/xera/side.svg",
  5120. extra: 2345 / 2019,
  5121. bottom: 39.7 / 2384
  5122. }
  5123. },
  5124. back: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(175, "lb"),
  5127. name: "Back",
  5128. image: {
  5129. source: "./media/characters/xera/back.svg",
  5130. extra: 2095 / 1984,
  5131. bottom: 67 / 2166
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Small",
  5138. height: math.unit(10, "feet")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(500, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro+",
  5147. height: math.unit(10, "km")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(25000, "km")
  5152. },
  5153. {
  5154. name: "Teramacro",
  5155. height: math.unit(3e6, "km")
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(175, "lb"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/nebula/front.svg",
  5168. extra: 2566 / 2362,
  5169. bottom: 81 / 2644
  5170. }
  5171. }
  5172. },
  5173. [
  5174. {
  5175. name: "Small",
  5176. height: math.unit(4.5, "meters")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(1500, "meters"),
  5181. default: true
  5182. },
  5183. {
  5184. name: "Megamacro",
  5185. height: math.unit(150, "km")
  5186. },
  5187. {
  5188. name: "Gigamacro",
  5189. height: math.unit(27000, "km")
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(225, "lb"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/abysgar/front.svg",
  5202. extra: 1739/1614,
  5203. bottom: 71/1810
  5204. }
  5205. },
  5206. frontNsfw: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(225, "lb"),
  5209. name: "Front (NSFW)",
  5210. image: {
  5211. source: "./media/characters/abysgar/front-nsfw.svg",
  5212. extra: 1739/1614,
  5213. bottom: 71/1810
  5214. }
  5215. },
  5216. back: {
  5217. height: math.unit(4.6, "feet"),
  5218. weight: math.unit(225, "lb"),
  5219. name: "Back",
  5220. image: {
  5221. source: "./media/characters/abysgar/back.svg",
  5222. extra: 1384/1327,
  5223. bottom: 0/1384
  5224. }
  5225. },
  5226. head: {
  5227. height: math.unit(1.25, "feet"),
  5228. name: "Head",
  5229. image: {
  5230. source: "./media/characters/abysgar/head.svg",
  5231. extra: 669/569,
  5232. bottom: 0/669
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Small",
  5239. height: math.unit(4.5, "meters")
  5240. },
  5241. {
  5242. name: "Macro",
  5243. height: math.unit(1250, "meters"),
  5244. default: true
  5245. },
  5246. {
  5247. name: "Megamacro",
  5248. height: math.unit(125, "km")
  5249. },
  5250. {
  5251. name: "Gigamacro",
  5252. height: math.unit(26000, "km")
  5253. }
  5254. ]
  5255. ))
  5256. characterMakers.push(() => makeCharacter(
  5257. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5258. {
  5259. front: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(180, "lb"),
  5262. name: "Front",
  5263. image: {
  5264. source: "./media/characters/yakuz/front.svg"
  5265. }
  5266. }
  5267. },
  5268. [
  5269. {
  5270. name: "Small",
  5271. height: math.unit(5, "meters")
  5272. },
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(1500, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Megamacro",
  5280. height: math.unit(200, "km")
  5281. },
  5282. {
  5283. name: "Gigamacro",
  5284. height: math.unit(100000, "km")
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(175, "lb"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/mirova/front.svg",
  5297. extra: 3334 / 3071,
  5298. bottom: 42 / 3375.6
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Small",
  5305. height: math.unit(5, "meters")
  5306. },
  5307. {
  5308. name: "Macro",
  5309. height: math.unit(900, "meters"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(135, "km")
  5315. },
  5316. {
  5317. name: "Gigamacro",
  5318. height: math.unit(20000, "km")
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5324. {
  5325. side: {
  5326. height: math.unit(28.35, "feet"),
  5327. weight: math.unit(99.75, "tons"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/asana-mech/side.svg",
  5331. extra: 923 / 699,
  5332. bottom: 50 / 975
  5333. }
  5334. },
  5335. chaingun: {
  5336. height: math.unit(7, "feet"),
  5337. weight: math.unit(2400, "lb"),
  5338. name: "Chaingun",
  5339. image: {
  5340. source: "./media/characters/asana-mech/chaingun.svg"
  5341. }
  5342. },
  5343. laser: {
  5344. height: math.unit(7.12, "feet"),
  5345. weight: math.unit(2000, "lb"),
  5346. name: "Laser",
  5347. image: {
  5348. source: "./media/characters/asana-mech/laser.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(28.35, "feet"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(2500, "feet")
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(25, "miles")
  5365. },
  5366. {
  5367. name: "Examacro",
  5368. height: math.unit(6e8, "lightyears")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(5, "meters"),
  5377. weight: math.unit(1000, "kg"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/asche/front.svg",
  5381. extra: 1258 / 1190,
  5382. bottom: 47 / 1305
  5383. }
  5384. },
  5385. frontUnderwear: {
  5386. height: math.unit(5, "meters"),
  5387. weight: math.unit(1000, "kg"),
  5388. name: "Front (Underwear)",
  5389. image: {
  5390. source: "./media/characters/asche/front-underwear.svg",
  5391. extra: 1258 / 1190,
  5392. bottom: 47 / 1305
  5393. }
  5394. },
  5395. frontDressed: {
  5396. height: math.unit(5, "meters"),
  5397. weight: math.unit(1000, "kg"),
  5398. name: "Front (Dressed)",
  5399. image: {
  5400. source: "./media/characters/asche/front-dressed.svg",
  5401. extra: 1258 / 1190,
  5402. bottom: 47 / 1305
  5403. }
  5404. },
  5405. frontArmor: {
  5406. height: math.unit(5, "meters"),
  5407. weight: math.unit(1000, "kg"),
  5408. name: "Front (Armored)",
  5409. image: {
  5410. source: "./media/characters/asche/front-armored.svg",
  5411. extra: 1374 / 1308,
  5412. bottom: 23 / 1397
  5413. }
  5414. },
  5415. mp724: {
  5416. height: math.unit(0.96, "meters"),
  5417. weight: math.unit(38, "kg"),
  5418. name: "H&K MP724",
  5419. image: {
  5420. source: "./media/characters/asche/h&k-mp724.svg"
  5421. }
  5422. },
  5423. side: {
  5424. height: math.unit(5, "meters"),
  5425. weight: math.unit(1000, "kg"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/asche/side.svg",
  5429. extra: 1717 / 1609,
  5430. bottom: 0.005
  5431. }
  5432. },
  5433. back: {
  5434. height: math.unit(5, "meters"),
  5435. weight: math.unit(1000, "kg"),
  5436. name: "Back",
  5437. image: {
  5438. source: "./media/characters/asche/back.svg",
  5439. extra: 1570 / 1501
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "DEFCON 5",
  5446. height: math.unit(5, "meters")
  5447. },
  5448. {
  5449. name: "DEFCON 4",
  5450. height: math.unit(500, "meters"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "DEFCON 3",
  5455. height: math.unit(5, "km")
  5456. },
  5457. {
  5458. name: "DEFCON 2",
  5459. height: math.unit(500, "km")
  5460. },
  5461. {
  5462. name: "DEFCON 1",
  5463. height: math.unit(500000, "km")
  5464. },
  5465. {
  5466. name: "DEFCON 0",
  5467. height: math.unit(3, "gigaparsecs")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(7, "feet"),
  5476. weight: math.unit(92.7, "kg"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/gale/front.svg",
  5480. extra: 977/919,
  5481. bottom: 105/1082
  5482. }
  5483. },
  5484. side: {
  5485. height: math.unit(6.7, "feet"),
  5486. weight: math.unit(92.7, "kg"),
  5487. name: "Side",
  5488. image: {
  5489. source: "./media/characters/gale/side.svg",
  5490. extra: 978/922,
  5491. bottom: 140/1118
  5492. }
  5493. },
  5494. back: {
  5495. height: math.unit(7, "feet"),
  5496. weight: math.unit(92.7, "kg"),
  5497. name: "Back",
  5498. image: {
  5499. source: "./media/characters/gale/back.svg",
  5500. extra: 966/920,
  5501. bottom: 61/1027
  5502. }
  5503. },
  5504. maw: {
  5505. height: math.unit(2.23, "feet"),
  5506. name: "Maw",
  5507. image: {
  5508. source: "./media/characters/gale/maw.svg"
  5509. }
  5510. },
  5511. foot: {
  5512. height: math.unit(2.1, "feet"),
  5513. name: "Foot",
  5514. image: {
  5515. source: "./media/characters/gale/foot.svg"
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(7, "feet")
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(150, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Macro+",
  5531. height: math.unit(300, "feet")
  5532. },
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(5 + 10/12, "feet"),
  5540. weight: math.unit(67, "kg"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/draylen/front.svg",
  5544. extra: 832/777,
  5545. bottom: 85/917
  5546. }
  5547. }
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(5 + 10/12, "feet")
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(150, "feet"),
  5557. default: true
  5558. }
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(7 + 9 / 12, "feet"),
  5566. weight: math.unit(379, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/chez/front.svg"
  5570. }
  5571. },
  5572. side: {
  5573. height: math.unit(7 + 9 / 12, "feet"),
  5574. weight: math.unit(379, "lbs"),
  5575. name: "Side",
  5576. image: {
  5577. source: "./media/characters/chez/side.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(7 + 9 / 12, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "God King",
  5589. height: math.unit(9750000, "meters")
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(275, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/kaylum/front.svg",
  5602. bottom: 0.01,
  5603. extra: 1166 / 1031
  5604. }
  5605. },
  5606. frontWingless: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(275, "lbs"),
  5609. name: "Front (Wingless)",
  5610. image: {
  5611. source: "./media/characters/kaylum/front-wingless.svg",
  5612. bottom: 0.01,
  5613. extra: 1117 / 1031
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(3.05, "meters")
  5621. },
  5622. {
  5623. name: "Master",
  5624. height: math.unit(5.5, "meters")
  5625. },
  5626. {
  5627. name: "Rampage",
  5628. height: math.unit(19, "meters")
  5629. },
  5630. {
  5631. name: "Macro Lite",
  5632. height: math.unit(37, "meters")
  5633. },
  5634. {
  5635. name: "Hyper Predator",
  5636. height: math.unit(61, "meters")
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(138, "meters"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(5 + 5 / 12, "feet"),
  5650. weight: math.unit(120, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/geta/front.svg",
  5654. extra: 1003/933,
  5655. bottom: 21/1024
  5656. }
  5657. },
  5658. paw: {
  5659. height: math.unit(0.35, "feet"),
  5660. name: "Paw",
  5661. image: {
  5662. source: "./media/characters/geta/paw.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Micro",
  5669. height: math.unit(3, "inches"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(5 + 5 / 12, "feet")
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(300, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/tyrnn/front.svg"
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Main Height",
  5693. height: math.unit(355, "feet"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Fave. Height",
  5698. height: math.unit(2400, "feet")
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(300, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/appledectomy/front.svg"
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Macro",
  5717. height: math.unit(2500, "feet")
  5718. },
  5719. {
  5720. name: "Megamacro",
  5721. height: math.unit(50, "miles"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Gigamacro",
  5726. height: math.unit(5000, "miles")
  5727. },
  5728. {
  5729. name: "Teramacro",
  5730. height: math.unit(250000, "miles")
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5736. {
  5737. front: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(200, "lbs"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/vulpes/front.svg",
  5743. extra: 573 / 543,
  5744. bottom: 0.033
  5745. }
  5746. },
  5747. side: {
  5748. height: math.unit(6, "feet"),
  5749. weight: math.unit(200, "lbs"),
  5750. name: "Side",
  5751. image: {
  5752. source: "./media/characters/vulpes/side.svg",
  5753. extra: 577 / 549,
  5754. bottom: 11 / 588
  5755. }
  5756. },
  5757. back: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(200, "lbs"),
  5760. name: "Back",
  5761. image: {
  5762. source: "./media/characters/vulpes/back.svg",
  5763. extra: 573 / 549,
  5764. bottom: 20 / 593
  5765. }
  5766. },
  5767. feet: {
  5768. height: math.unit(1.276, "feet"),
  5769. name: "Feet",
  5770. image: {
  5771. source: "./media/characters/vulpes/feet.svg"
  5772. }
  5773. },
  5774. maw: {
  5775. height: math.unit(1.18, "feet"),
  5776. name: "Maw",
  5777. image: {
  5778. source: "./media/characters/vulpes/maw.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Micro",
  5785. height: math.unit(2, "inches")
  5786. },
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(6.3, "feet")
  5790. },
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(850, "feet")
  5794. },
  5795. {
  5796. name: "Megamacro",
  5797. height: math.unit(7500, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Gigamacro",
  5802. height: math.unit(570000, "miles")
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(210, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/rain-fallen/front.svg"
  5815. }
  5816. },
  5817. side: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(210, "lbs"),
  5820. name: "Side",
  5821. image: {
  5822. source: "./media/characters/rain-fallen/side.svg"
  5823. }
  5824. },
  5825. back: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(210, "lbs"),
  5828. name: "Back",
  5829. image: {
  5830. source: "./media/characters/rain-fallen/back.svg"
  5831. }
  5832. },
  5833. feral: {
  5834. height: math.unit(9, "feet"),
  5835. weight: math.unit(700, "lbs"),
  5836. name: "Feral",
  5837. image: {
  5838. source: "./media/characters/rain-fallen/feral.svg"
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Meddling with Mortals",
  5845. height: math.unit(8 + 8/12, "feet")
  5846. },
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(5, "meter")
  5850. },
  5851. {
  5852. name: "Macro",
  5853. height: math.unit(150, "meter"),
  5854. default: true
  5855. },
  5856. {
  5857. name: "Megamacro",
  5858. height: math.unit(278e6, "meter")
  5859. },
  5860. {
  5861. name: "Gigamacro",
  5862. height: math.unit(2e9, "meter")
  5863. },
  5864. {
  5865. name: "Teramacro",
  5866. height: math.unit(8e12, "meter")
  5867. },
  5868. {
  5869. name: "Devourer",
  5870. height: math.unit(14, "zettameters")
  5871. },
  5872. {
  5873. name: "Scarlet King",
  5874. height: math.unit(18, "yottameters")
  5875. },
  5876. {
  5877. name: "Void",
  5878. height: math.unit(1e88, "yottameters")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5884. {
  5885. standing: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(180, "lbs"),
  5888. name: "Standing",
  5889. image: {
  5890. source: "./media/characters/zaakira/standing.svg",
  5891. extra: 1599/1504,
  5892. bottom: 39/1638
  5893. }
  5894. },
  5895. laying: {
  5896. height: math.unit(3.3, "feet"),
  5897. weight: math.unit(180, "lbs"),
  5898. name: "Laying",
  5899. image: {
  5900. source: "./media/characters/zaakira/laying.svg"
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(12, "feet")
  5908. },
  5909. {
  5910. name: "Macro",
  5911. height: math.unit(279, "feet"),
  5912. default: true
  5913. }
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5918. {
  5919. femSfw: {
  5920. height: math.unit(8, "feet"),
  5921. weight: math.unit(350, "lb"),
  5922. name: "Fem",
  5923. image: {
  5924. source: "./media/characters/sigvald/fem-sfw.svg",
  5925. extra: 182 / 164,
  5926. bottom: 8.7 / 190.5
  5927. }
  5928. },
  5929. femNsfw: {
  5930. height: math.unit(8, "feet"),
  5931. weight: math.unit(350, "lb"),
  5932. name: "Fem (NSFW)",
  5933. image: {
  5934. source: "./media/characters/sigvald/fem-nsfw.svg",
  5935. extra: 182 / 164,
  5936. bottom: 8.7 / 190.5
  5937. }
  5938. },
  5939. maleNsfw: {
  5940. height: math.unit(8, "feet"),
  5941. weight: math.unit(350, "lb"),
  5942. name: "Male (NSFW)",
  5943. image: {
  5944. source: "./media/characters/sigvald/male-nsfw.svg",
  5945. extra: 182 / 164,
  5946. bottom: 8.7 / 190.5
  5947. }
  5948. },
  5949. hermNsfw: {
  5950. height: math.unit(8, "feet"),
  5951. weight: math.unit(350, "lb"),
  5952. name: "Herm (NSFW)",
  5953. image: {
  5954. source: "./media/characters/sigvald/herm-nsfw.svg",
  5955. extra: 182 / 164,
  5956. bottom: 8.7 / 190.5
  5957. }
  5958. },
  5959. dick: {
  5960. height: math.unit(2.36, "feet"),
  5961. name: "Dick",
  5962. image: {
  5963. source: "./media/characters/sigvald/dick.svg"
  5964. }
  5965. },
  5966. eye: {
  5967. height: math.unit(0.31, "feet"),
  5968. name: "Eye",
  5969. image: {
  5970. source: "./media/characters/sigvald/eye.svg"
  5971. }
  5972. },
  5973. mouth: {
  5974. height: math.unit(0.92, "feet"),
  5975. name: "Mouth",
  5976. image: {
  5977. source: "./media/characters/sigvald/mouth.svg"
  5978. }
  5979. },
  5980. paws: {
  5981. height: math.unit(2.2, "feet"),
  5982. name: "Paws",
  5983. image: {
  5984. source: "./media/characters/sigvald/paws.svg"
  5985. }
  5986. }
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(8, "feet")
  5992. },
  5993. {
  5994. name: "Large",
  5995. height: math.unit(12, "feet")
  5996. },
  5997. {
  5998. name: "Larger",
  5999. height: math.unit(20, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(150, "feet")
  6004. },
  6005. {
  6006. name: "Macro+",
  6007. height: math.unit(200, "feet"),
  6008. default: true
  6009. },
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6014. {
  6015. side: {
  6016. height: math.unit(12, "feet"),
  6017. weight: math.unit(2000, "kg"),
  6018. name: "Side",
  6019. image: {
  6020. source: "./media/characters/scott/side.svg",
  6021. extra: 754 / 724,
  6022. bottom: 0.069
  6023. }
  6024. },
  6025. upright: {
  6026. height: math.unit(12, "feet"),
  6027. weight: math.unit(2000, "kg"),
  6028. name: "Upright",
  6029. image: {
  6030. source: "./media/characters/scott/upright.svg",
  6031. extra: 3881 / 3722,
  6032. bottom: 0.05
  6033. }
  6034. },
  6035. },
  6036. [
  6037. {
  6038. name: "Normal",
  6039. height: math.unit(12, "feet"),
  6040. default: true
  6041. },
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6046. {
  6047. side: {
  6048. height: math.unit(8, "meters"),
  6049. weight: math.unit(84755, "lbs"),
  6050. name: "Side",
  6051. image: {
  6052. source: "./media/characters/tobias/side.svg",
  6053. extra: 1474 / 1096,
  6054. bottom: 38.9 / 1513.1235
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(8, "meters"),
  6062. default: true
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6068. {
  6069. front: {
  6070. height: math.unit(5.5, "feet"),
  6071. weight: math.unit(400, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/kieran/front.svg",
  6075. extra: 2694 / 2364,
  6076. bottom: 217 / 2908
  6077. }
  6078. },
  6079. side: {
  6080. height: math.unit(5.5, "feet"),
  6081. weight: math.unit(400, "lbs"),
  6082. name: "Side",
  6083. image: {
  6084. source: "./media/characters/kieran/side.svg",
  6085. extra: 875 / 777,
  6086. bottom: 84.6 / 959
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(5.5, "feet"),
  6094. default: true
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6100. {
  6101. side: {
  6102. height: math.unit(2, "meters"),
  6103. weight: math.unit(70, "kg"),
  6104. name: "Side",
  6105. image: {
  6106. source: "./media/characters/sanya/side.svg",
  6107. bottom: 0.02,
  6108. extra: 1.02
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Small",
  6115. height: math.unit(2, "meters")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(3, "meters")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(16, "meters"),
  6124. default: true
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6130. {
  6131. front: {
  6132. height: math.unit(2, "meters"),
  6133. weight: math.unit(120, "kg"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/miranda/front.svg",
  6137. extra: 195 / 185,
  6138. bottom: 10.9 / 206.5
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(2, "meters"),
  6143. weight: math.unit(120, "kg"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/miranda/back.svg",
  6147. extra: 201 / 193,
  6148. bottom: 2.3 / 203.7
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(10, "feet"),
  6156. default: true
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "James", species: ["deer"], tags: ["anthro"] },
  6162. {
  6163. side: {
  6164. height: math.unit(2, "meters"),
  6165. weight: math.unit(100, "kg"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/james/front.svg",
  6169. extra: 10 / 8.5
  6170. }
  6171. },
  6172. },
  6173. [
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(8.5, "feet"),
  6177. default: true
  6178. }
  6179. ]
  6180. ))
  6181. characterMakers.push(() => makeCharacter(
  6182. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6183. {
  6184. side: {
  6185. height: math.unit(9.5, "feet"),
  6186. weight: math.unit(2500, "lbs"),
  6187. name: "Side",
  6188. image: {
  6189. source: "./media/characters/heather/side.svg"
  6190. }
  6191. },
  6192. },
  6193. [
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(9.5, "feet"),
  6197. default: true
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6203. {
  6204. side: {
  6205. height: math.unit(6.5, "feet"),
  6206. weight: math.unit(400, "lbs"),
  6207. name: "Side",
  6208. image: {
  6209. source: "./media/characters/lukas/side.svg",
  6210. extra: 7.25 / 6.5
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(6.5, "feet"),
  6218. default: true
  6219. }
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6224. {
  6225. side: {
  6226. height: math.unit(5, "feet"),
  6227. weight: math.unit(3000, "lbs"),
  6228. name: "Side",
  6229. image: {
  6230. source: "./media/characters/louise/side.svg"
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(5, "feet"),
  6238. default: true
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6244. {
  6245. side: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(150, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/ramona/side.svg",
  6251. extra: 871/854,
  6252. bottom: 41/912
  6253. }
  6254. },
  6255. },
  6256. [
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(6 + 4/12, "feet")
  6260. },
  6261. {
  6262. name: "Minimacro",
  6263. height: math.unit(5.3, "meters"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(20, "stories")
  6269. },
  6270. {
  6271. name: "Macro+",
  6272. height: math.unit(50, "stories")
  6273. },
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6278. {
  6279. standing: {
  6280. height: math.unit(5.75, "feet"),
  6281. weight: math.unit(160, "lbs"),
  6282. name: "Standing",
  6283. image: {
  6284. source: "./media/characters/deerpuff/standing.svg",
  6285. extra: 682 / 624
  6286. }
  6287. },
  6288. sitting: {
  6289. height: math.unit(5.75 / 1.79, "feet"),
  6290. weight: math.unit(160, "lbs"),
  6291. name: "Sitting",
  6292. image: {
  6293. source: "./media/characters/deerpuff/sitting.svg",
  6294. bottom: 44 / 400,
  6295. extra: 1
  6296. }
  6297. },
  6298. taurLaying: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(400, "lbs"),
  6301. name: "Taur (Laying)",
  6302. image: {
  6303. source: "./media/characters/deerpuff/taur-laying.svg"
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Puffball",
  6310. height: math.unit(6, "inches")
  6311. },
  6312. {
  6313. name: "Normalpuff",
  6314. height: math.unit(5.75, "feet")
  6315. },
  6316. {
  6317. name: "Macropuff",
  6318. height: math.unit(1500, "feet"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Megapuff",
  6323. height: math.unit(500, "miles")
  6324. },
  6325. {
  6326. name: "Gigapuff",
  6327. height: math.unit(250000, "miles")
  6328. },
  6329. {
  6330. name: "Omegapuff",
  6331. height: math.unit(1000, "lightyears")
  6332. },
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6337. {
  6338. stomping: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(170, "lbs"),
  6341. name: "Stomping",
  6342. image: {
  6343. source: "./media/characters/vivian/stomping.svg"
  6344. }
  6345. },
  6346. sitting: {
  6347. height: math.unit(6 / 1.75, "feet"),
  6348. weight: math.unit(170, "lbs"),
  6349. name: "Sitting",
  6350. image: {
  6351. source: "./media/characters/vivian/sitting.svg",
  6352. bottom: 1 / 6.4,
  6353. extra: 1,
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(7, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(10, "stories")
  6366. },
  6367. {
  6368. name: "Macro+",
  6369. height: math.unit(30, "stories")
  6370. },
  6371. {
  6372. name: "Megamacro",
  6373. height: math.unit(10, "miles")
  6374. },
  6375. {
  6376. name: "Megamacro+",
  6377. height: math.unit(2750000, "meters")
  6378. },
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6383. {
  6384. front: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(160, "lbs"),
  6387. name: "Front",
  6388. image: {
  6389. source: "./media/characters/prince/front.svg",
  6390. extra: 1938/1682,
  6391. bottom: 45/1983
  6392. }
  6393. },
  6394. back: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(160, "lbs"),
  6397. name: "Back",
  6398. image: {
  6399. source: "./media/characters/prince/back.svg",
  6400. extra: 1955/1726,
  6401. bottom: 6/1961
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(7.75, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Not cute",
  6413. height: math.unit(17, "feet")
  6414. },
  6415. {
  6416. name: "I said NOT",
  6417. height: math.unit(91, "feet")
  6418. },
  6419. {
  6420. name: "Please stop",
  6421. height: math.unit(560, "feet")
  6422. },
  6423. {
  6424. name: "What have you done",
  6425. height: math.unit(2200, "feet")
  6426. },
  6427. {
  6428. name: "Deer God",
  6429. height: math.unit(3.6, "miles")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6435. {
  6436. standing: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(300, "lbs"),
  6439. name: "Standing",
  6440. image: {
  6441. source: "./media/characters/psymon/standing.svg",
  6442. extra: 1888 / 1810,
  6443. bottom: 0.05
  6444. }
  6445. },
  6446. slithering: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(300, "lbs"),
  6449. name: "Slithering",
  6450. image: {
  6451. source: "./media/characters/psymon/slithering.svg",
  6452. extra: 1330 / 1224
  6453. }
  6454. },
  6455. slitheringAlt: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(300, "lbs"),
  6458. name: "Slithering (Alt)",
  6459. image: {
  6460. source: "./media/characters/psymon/slithering-alt.svg",
  6461. extra: 1330 / 1224
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(11.25, "feet"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Large",
  6473. height: math.unit(27, "feet")
  6474. },
  6475. {
  6476. name: "Giant",
  6477. height: math.unit(87, "feet")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(365, "feet")
  6482. },
  6483. {
  6484. name: "Megamacro",
  6485. height: math.unit(3, "miles")
  6486. },
  6487. {
  6488. name: "World Serpent",
  6489. height: math.unit(8000, "miles")
  6490. },
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(180, "lbs"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/daimos/front.svg",
  6502. extra: 4160 / 3897,
  6503. bottom: 0.021
  6504. }
  6505. }
  6506. },
  6507. [
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(8, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Big Dog",
  6515. height: math.unit(22, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(127, "feet")
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(3600, "feet")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6529. {
  6530. side: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(180, "lbs"),
  6533. name: "Side",
  6534. image: {
  6535. source: "./media/characters/blake/side.svg",
  6536. extra: 1212 / 1120,
  6537. bottom: 0.05
  6538. }
  6539. },
  6540. crouched: {
  6541. height: math.unit(6 * 0.57, "feet"),
  6542. weight: math.unit(180, "lbs"),
  6543. name: "Crouched",
  6544. image: {
  6545. source: "./media/characters/blake/crouched.svg",
  6546. extra: 840 / 587,
  6547. bottom: 0.04
  6548. }
  6549. },
  6550. bent: {
  6551. height: math.unit(6 * 0.75, "feet"),
  6552. weight: math.unit(180, "lbs"),
  6553. name: "Bent",
  6554. image: {
  6555. source: "./media/characters/blake/bent.svg",
  6556. extra: 592 / 544,
  6557. bottom: 0.035
  6558. }
  6559. },
  6560. },
  6561. [
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(8 + 1 / 6, "feet"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Big Backside",
  6569. height: math.unit(37, "feet")
  6570. },
  6571. {
  6572. name: "Subway Shredder",
  6573. height: math.unit(72, "feet")
  6574. },
  6575. {
  6576. name: "City Carver",
  6577. height: math.unit(1675, "feet")
  6578. },
  6579. {
  6580. name: "Tectonic Tweaker",
  6581. height: math.unit(2300, "miles")
  6582. },
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6587. {
  6588. front: {
  6589. height: math.unit(6, "feet"),
  6590. weight: math.unit(180, "lbs"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/guisetto/front.svg",
  6594. extra: 856 / 817,
  6595. bottom: 0.06
  6596. }
  6597. },
  6598. airborne: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(180, "lbs"),
  6601. name: "Airborne",
  6602. image: {
  6603. source: "./media/characters/guisetto/airborne.svg",
  6604. extra: 584 / 525
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(10 + 11 / 12, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Large",
  6616. height: math.unit(35, "feet")
  6617. },
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(475, "feet")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(180, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/luxor/front.svg",
  6633. extra: 2940 / 2152
  6634. }
  6635. },
  6636. back: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(180, "lbs"),
  6639. name: "Back",
  6640. image: {
  6641. source: "./media/characters/luxor/back.svg",
  6642. extra: 1083 / 960
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(5 + 5 / 6, "feet"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Lamp",
  6654. height: math.unit(50, "feet")
  6655. },
  6656. {
  6657. name: "Lämp",
  6658. height: math.unit(300, "feet")
  6659. },
  6660. {
  6661. name: "The sun is a lamp",
  6662. height: math.unit(250000, "miles")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(50, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/huoyan/front.svg"
  6675. }
  6676. },
  6677. side: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(180, "lbs"),
  6680. name: "Side",
  6681. image: {
  6682. source: "./media/characters/huoyan/side.svg"
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Chef",
  6689. height: math.unit(9, "feet")
  6690. },
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(65, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(780, "feet")
  6699. },
  6700. {
  6701. name: "Flaming Mountain",
  6702. height: math.unit(4.8, "miles")
  6703. },
  6704. {
  6705. name: "Celestial",
  6706. height: math.unit(765000, "miles")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(5 + 3 / 4, "feet"),
  6715. weight: math.unit(120, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/tails/front.svg"
  6719. }
  6720. }
  6721. },
  6722. [
  6723. {
  6724. name: "Normal",
  6725. height: math.unit(5 + 3 / 4, "feet"),
  6726. default: true
  6727. }
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(4, "feet"),
  6735. weight: math.unit(50, "lbs"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/rainy/front.svg"
  6739. }
  6740. }
  6741. },
  6742. [
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(800, "feet"),
  6746. default: true
  6747. }
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(150, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/rainier/front.svg"
  6759. }
  6760. }
  6761. },
  6762. [
  6763. {
  6764. name: "Micro",
  6765. height: math.unit(2, "mm"),
  6766. default: true
  6767. }
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(8 + 4/12, "feet"),
  6775. weight: math.unit(450, "kilograms"),
  6776. volume: math.unit(5, "cups"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/andy-renard/front.svg",
  6780. extra: 1839/1726,
  6781. bottom: 134/1973
  6782. }
  6783. },
  6784. back: {
  6785. height: math.unit(8 + 4/12, "feet"),
  6786. weight: math.unit(450, "kilograms"),
  6787. volume: math.unit(5, "cups"),
  6788. name: "Back",
  6789. image: {
  6790. source: "./media/characters/andy-renard/back.svg",
  6791. extra: 1838/1710,
  6792. bottom: 105/1943
  6793. }
  6794. },
  6795. },
  6796. [
  6797. {
  6798. name: "Tall",
  6799. height: math.unit(8 + 4/12, "feet")
  6800. },
  6801. {
  6802. name: "Mini Macro",
  6803. height: math.unit(15, "feet"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(100, "feet")
  6809. },
  6810. {
  6811. name: "Mega Macro",
  6812. height: math.unit(1000, "feet")
  6813. },
  6814. {
  6815. name: "Giga Macro",
  6816. height: math.unit(10, "miles")
  6817. },
  6818. {
  6819. name: "God Macro",
  6820. height: math.unit(1, "multiverse")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(210, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/cimmaron/front-sfw.svg",
  6833. extra: 701 / 676,
  6834. bottom: 0.046
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(210, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/cimmaron/back-sfw.svg",
  6843. extra: 701 / 676,
  6844. bottom: 0.046
  6845. }
  6846. },
  6847. frontNsfw: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(210, "lbs"),
  6850. name: "Front (NSFW)",
  6851. image: {
  6852. source: "./media/characters/cimmaron/front-nsfw.svg",
  6853. extra: 701 / 676,
  6854. bottom: 0.046
  6855. }
  6856. },
  6857. backNsfw: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(210, "lbs"),
  6860. name: "Back (NSFW)",
  6861. image: {
  6862. source: "./media/characters/cimmaron/back-nsfw.svg",
  6863. extra: 701 / 676,
  6864. bottom: 0.046
  6865. }
  6866. },
  6867. dick: {
  6868. height: math.unit(1.714, "feet"),
  6869. name: "Dick",
  6870. image: {
  6871. source: "./media/characters/cimmaron/dick.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro Mayor",
  6883. height: math.unit(350, "meters")
  6884. },
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(200, "lbs"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/akari/front.svg",
  6896. extra: 962 / 901,
  6897. bottom: 0.04
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Micro",
  6904. height: math.unit(5, "inches"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(7, "feet")
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(140, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/cynosura/front.svg",
  6922. extra: 437/410,
  6923. bottom: 9/446
  6924. }
  6925. },
  6926. back: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(140, "lbs"),
  6929. name: "Back",
  6930. image: {
  6931. source: "./media/characters/cynosura/back.svg",
  6932. extra: 1304/1160,
  6933. bottom: 71/1375
  6934. }
  6935. },
  6936. },
  6937. [
  6938. {
  6939. name: "Micro",
  6940. height: math.unit(4, "inches")
  6941. },
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(5.75, "feet"),
  6945. default: true
  6946. },
  6947. {
  6948. name: "Tall",
  6949. height: math.unit(10, "feet")
  6950. },
  6951. {
  6952. name: "Big",
  6953. height: math.unit(20, "feet")
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(50, "feet")
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(13 + 2/12, "feet"),
  6966. weight: math.unit(800, "kg"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/gin/front.svg",
  6970. extra: 1312/1191,
  6971. bottom: 45/1357
  6972. }
  6973. },
  6974. mouth: {
  6975. height: math.unit(2.39 * 1.8, "feet"),
  6976. name: "Mouth",
  6977. image: {
  6978. source: "./media/characters/gin/mouth.svg"
  6979. }
  6980. },
  6981. hand: {
  6982. height: math.unit(1.57 * 2.19, "feet"),
  6983. name: "Hand",
  6984. image: {
  6985. source: "./media/characters/gin/hand.svg"
  6986. }
  6987. },
  6988. foot: {
  6989. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6990. name: "Foot",
  6991. image: {
  6992. source: "./media/characters/gin/foot.svg"
  6993. }
  6994. },
  6995. sole: {
  6996. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6997. name: "Sole",
  6998. image: {
  6999. source: "./media/characters/gin/sole.svg"
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Very Small",
  7006. height: math.unit(13 + 2 / 12, "feet")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(600, "miles")
  7011. },
  7012. {
  7013. name: "Regular",
  7014. height: math.unit(20, "earths"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(2.2, "solarradii")
  7020. },
  7021. {
  7022. name: "Teramacro",
  7023. height: math.unit(1.2, "galaxies")
  7024. },
  7025. {
  7026. name: "Omegamacro",
  7027. height: math.unit(200, "universes")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(6 + 1 / 6, "feet"),
  7036. weight: math.unit(178, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/guy/front.svg"
  7040. }
  7041. }
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(6 + 1 / 6, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Large",
  7051. height: math.unit(25 + 7 / 12, "feet")
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(60 + 9 / 12, "feet")
  7056. },
  7057. {
  7058. name: "Macro+",
  7059. height: math.unit(246, "feet")
  7060. },
  7061. {
  7062. name: "Macro++",
  7063. height: math.unit(878, "feet")
  7064. }
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(9, "feet"),
  7072. weight: math.unit(800, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/tiberius/front.svg",
  7076. extra: 2295 / 2071
  7077. }
  7078. },
  7079. back: {
  7080. height: math.unit(9, "feet"),
  7081. weight: math.unit(800, "lbs"),
  7082. name: "Back",
  7083. image: {
  7084. source: "./media/characters/tiberius/back.svg",
  7085. extra: 2373 / 2160
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(9, "feet"),
  7093. default: true
  7094. }
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(600, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/surgo/front.svg",
  7106. extra: 3591 / 2227
  7107. }
  7108. },
  7109. back: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(600, "lbs"),
  7112. name: "Back",
  7113. image: {
  7114. source: "./media/characters/surgo/back.svg",
  7115. extra: 3557 / 2228
  7116. }
  7117. },
  7118. laying: {
  7119. height: math.unit(6 * 0.85, "feet"),
  7120. weight: math.unit(600, "lbs"),
  7121. name: "Laying",
  7122. image: {
  7123. source: "./media/characters/surgo/laying.svg"
  7124. }
  7125. },
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(6, "feet"),
  7131. default: true
  7132. }
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7137. {
  7138. side: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(150, "lbs"),
  7141. name: "Side",
  7142. image: {
  7143. source: "./media/characters/cibus/side.svg",
  7144. extra: 800 / 400
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(6, "feet"),
  7152. default: true
  7153. }
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(240, "lbs"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/nibbles/front.svg"
  7165. }
  7166. },
  7167. side: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(240, "lbs"),
  7170. name: "Side",
  7171. image: {
  7172. source: "./media/characters/nibbles/side.svg"
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(9, "feet"),
  7180. default: true
  7181. }
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7186. {
  7187. side: {
  7188. height: math.unit(5 + 1 / 6, "feet"),
  7189. weight: math.unit(130, "lbs"),
  7190. name: "Side",
  7191. image: {
  7192. source: "./media/characters/rikky/side.svg",
  7193. extra: 851 / 801
  7194. }
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(5 + 1 / 6, "feet")
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(152, "feet"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Megamacro",
  7209. height: math.unit(7, "miles")
  7210. }
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7215. {
  7216. side: {
  7217. height: math.unit(370, "cm"),
  7218. weight: math.unit(350, "lbs"),
  7219. name: "Side",
  7220. image: {
  7221. source: "./media/characters/malfressa/side.svg"
  7222. }
  7223. },
  7224. walking: {
  7225. height: math.unit(370, "cm"),
  7226. weight: math.unit(350, "lbs"),
  7227. name: "Walking",
  7228. image: {
  7229. source: "./media/characters/malfressa/walking.svg"
  7230. }
  7231. },
  7232. feral: {
  7233. height: math.unit(2500, "cm"),
  7234. weight: math.unit(100000, "lbs"),
  7235. name: "Feral",
  7236. image: {
  7237. source: "./media/characters/malfressa/feral.svg",
  7238. extra: 2108 / 837,
  7239. bottom: 0.02
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(370, "cm")
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(300, "meters"),
  7251. default: true
  7252. }
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(60, "kg"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/jaro/front.svg",
  7264. extra: 845/817,
  7265. bottom: 45/890
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(60, "kg"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/jaro/back.svg",
  7274. extra: 847/817,
  7275. bottom: 34/881
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Micro",
  7282. height: math.unit(7, "inches")
  7283. },
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(5.5, "feet"),
  7287. default: true
  7288. },
  7289. {
  7290. name: "Minimacro",
  7291. height: math.unit(20, "feet")
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(200, "meters")
  7296. }
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7301. {
  7302. front: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(195, "lb"),
  7305. name: "Front",
  7306. image: {
  7307. source: "./media/characters/rogue/front.svg"
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(90, "feet"),
  7315. default: true
  7316. },
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7321. {
  7322. standing: {
  7323. height: math.unit(5 + 8 / 12, "feet"),
  7324. weight: math.unit(140, "lb"),
  7325. name: "Standing",
  7326. image: {
  7327. source: "./media/characters/piper/standing.svg",
  7328. extra: 1440/1284,
  7329. bottom: 66/1506
  7330. }
  7331. },
  7332. running: {
  7333. height: math.unit(5 + 8 / 12, "feet"),
  7334. weight: math.unit(140, "lb"),
  7335. name: "Running",
  7336. image: {
  7337. source: "./media/characters/piper/running.svg",
  7338. extra: 3948/3655,
  7339. bottom: 0/3948
  7340. }
  7341. },
  7342. sole: {
  7343. height: math.unit(0.81, "feet"),
  7344. weight: math.unit(2, "kg"),
  7345. name: "Sole",
  7346. image: {
  7347. source: "./media/characters/piper/sole.svg"
  7348. }
  7349. },
  7350. nipple: {
  7351. height: math.unit(0.25, "feet"),
  7352. weight: math.unit(1.5, "lb"),
  7353. name: "Nipple",
  7354. image: {
  7355. source: "./media/characters/piper/nipple.svg"
  7356. }
  7357. },
  7358. head: {
  7359. height: math.unit(1.1, "feet"),
  7360. name: "Head",
  7361. image: {
  7362. source: "./media/characters/piper/head.svg"
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(2, "inches")
  7370. },
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(5 + 8 / 12, "feet")
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(250, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(7, "miles")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(220, "lb"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/gemini/front.svg"
  7395. }
  7396. },
  7397. back: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(220, "lb"),
  7400. name: "Back",
  7401. image: {
  7402. source: "./media/characters/gemini/back.svg"
  7403. }
  7404. },
  7405. kneeling: {
  7406. height: math.unit(6 / 1.5, "feet"),
  7407. weight: math.unit(220, "lb"),
  7408. name: "Kneeling",
  7409. image: {
  7410. source: "./media/characters/gemini/kneeling.svg",
  7411. bottom: 0.02
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(300, "meters"),
  7419. default: true
  7420. },
  7421. {
  7422. name: "Megamacro",
  7423. height: math.unit(6900, "meters")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7429. {
  7430. anthro: {
  7431. height: math.unit(2.35, "meters"),
  7432. weight: math.unit(73, "kg"),
  7433. name: "Anthro",
  7434. image: {
  7435. source: "./media/characters/alicia/anthro.svg",
  7436. extra: 2571 / 2385,
  7437. bottom: 75 / 2648
  7438. }
  7439. },
  7440. paw: {
  7441. height: math.unit(1.32, "feet"),
  7442. name: "Paw",
  7443. image: {
  7444. source: "./media/characters/alicia/paw.svg"
  7445. }
  7446. },
  7447. feral: {
  7448. height: math.unit(1.69, "meters"),
  7449. weight: math.unit(73, "kg"),
  7450. name: "Feral",
  7451. image: {
  7452. source: "./media/characters/alicia/feral.svg",
  7453. extra: 2123 / 1715,
  7454. bottom: 222 / 2349
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(2.35, "meters")
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(60, "meters"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(10000, "kilometers")
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(7, "feet"),
  7479. weight: math.unit(250, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/archy/front.svg"
  7483. }
  7484. }
  7485. },
  7486. [
  7487. {
  7488. name: "Micro",
  7489. height: math.unit(1, "inch")
  7490. },
  7491. {
  7492. name: "Shorty",
  7493. height: math.unit(5, "feet")
  7494. },
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(7, "feet")
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(600, "meters"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Megamacro",
  7506. height: math.unit(1, "mile")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(1.65, "meters"),
  7515. weight: math.unit(74, "kg"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/berri/front.svg",
  7519. extra: 857 / 837,
  7520. bottom: 18 / 877
  7521. }
  7522. },
  7523. bum: {
  7524. height: math.unit(1.46, "feet"),
  7525. name: "Bum",
  7526. image: {
  7527. source: "./media/characters/berri/bum.svg"
  7528. }
  7529. },
  7530. mouth: {
  7531. height: math.unit(0.44, "feet"),
  7532. name: "Mouth",
  7533. image: {
  7534. source: "./media/characters/berri/mouth.svg"
  7535. }
  7536. },
  7537. paw: {
  7538. height: math.unit(0.826, "feet"),
  7539. name: "Paw",
  7540. image: {
  7541. source: "./media/characters/berri/paw.svg"
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(1.65, "meters")
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(60, "m"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Megamacro",
  7557. height: math.unit(9.213, "km")
  7558. },
  7559. {
  7560. name: "Planet Eater",
  7561. height: math.unit(489, "megameters")
  7562. },
  7563. {
  7564. name: "Teramacro",
  7565. height: math.unit(2471635000000, "meters")
  7566. },
  7567. {
  7568. name: "Examacro",
  7569. height: math.unit(8.0624e+26, "meters")
  7570. }
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(1.72, "meters"),
  7578. weight: math.unit(68, "kg"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/lexi/front.svg"
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Very Smol",
  7588. height: math.unit(10, "mm")
  7589. },
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(6.8, "cm"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(1.72, "m")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(1.69, "meters"),
  7606. weight: math.unit(68, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/martin/front.svg",
  7610. extra: 596 / 581
  7611. }
  7612. }
  7613. },
  7614. [
  7615. {
  7616. name: "Micro",
  7617. height: math.unit(6.85, "cm"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Normal",
  7622. height: math.unit(1.69, "m")
  7623. }
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(1.69, "meters"),
  7631. weight: math.unit(68, "kg"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/juno/front.svg"
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(7, "cm")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(1.89, "m")
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(353, "meters"),
  7650. default: true
  7651. }
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(1.93, "meters"),
  7659. weight: math.unit(83, "kg"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/samantha/front.svg"
  7663. }
  7664. },
  7665. frontClothed: {
  7666. height: math.unit(1.93, "meters"),
  7667. weight: math.unit(83, "kg"),
  7668. name: "Front (Clothed)",
  7669. image: {
  7670. source: "./media/characters/samantha/front-clothed.svg"
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(1.93, "meters"),
  7675. weight: math.unit(83, "kg"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/samantha/back.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(1.93, "m")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(74, "meters"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Macro+",
  7694. height: math.unit(223, "meters"),
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(8381, "meters"),
  7699. },
  7700. {
  7701. name: "Megamacro+",
  7702. height: math.unit(12000, "kilometers")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(1.92, "meters"),
  7711. weight: math.unit(80, "kg"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/dr-clay/front.svg"
  7715. }
  7716. },
  7717. frontClothed: {
  7718. height: math.unit(1.92, "meters"),
  7719. weight: math.unit(80, "kg"),
  7720. name: "Front (Clothed)",
  7721. image: {
  7722. source: "./media/characters/dr-clay/front-clothed.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(1.92, "m")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(214, "meters"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro+",
  7738. height: math.unit(12.237, "meters"),
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(557, "megameters"),
  7743. },
  7744. {
  7745. name: "Unimaginable",
  7746. height: math.unit(120e9, "lightyears")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(2, "meters"),
  7755. weight: math.unit(80, "kg"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Teramacro",
  7765. height: math.unit(500000, "lightyears"),
  7766. default: true
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7772. {
  7773. crux: {
  7774. height: math.unit(2, "meters"),
  7775. weight: math.unit(150, "kg"),
  7776. name: "Crux",
  7777. image: {
  7778. source: "./media/characters/vemus/crux.svg",
  7779. extra: 1074/936,
  7780. bottom: 23/1097
  7781. }
  7782. },
  7783. skunkTanuki: {
  7784. height: math.unit(2, "meters"),
  7785. weight: math.unit(150, "kg"),
  7786. name: "Skunk-Tanuki",
  7787. image: {
  7788. source: "./media/characters/vemus/skunk-tanuki.svg",
  7789. extra: 926/893,
  7790. bottom: 20/946
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(4, "meters"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Big",
  7802. height: math.unit(8, "meters")
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(100, "meters")
  7807. },
  7808. {
  7809. name: "Macro+",
  7810. height: math.unit(1500, "meters")
  7811. },
  7812. {
  7813. name: "Stellar",
  7814. height: math.unit(14e8, "meters")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(2, "meters"),
  7823. weight: math.unit(70, "kg"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/beherit/front.svg",
  7827. extra: 1234/1109,
  7828. bottom: 55/1289
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(6, "feet")
  7836. },
  7837. {
  7838. name: "Lorg",
  7839. height: math.unit(25, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Lorger",
  7844. height: math.unit(75, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(200, "meters")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(2, "meters"),
  7857. weight: math.unit(150, "kg"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/everett/front.svg",
  7861. extra: 1017/866,
  7862. bottom: 86/1103
  7863. }
  7864. },
  7865. paw: {
  7866. height: math.unit(2 / 3.6, "meters"),
  7867. name: "Paw",
  7868. image: {
  7869. source: "./media/characters/everett/paw.svg"
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(15, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Lorg",
  7881. height: math.unit(70, "feet"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Lorger",
  7886. height: math.unit(250, "feet")
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(500, "meters")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(2, "meters"),
  7899. weight: math.unit(86, "kg"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/rose/front.svg",
  7903. extra: 1785/1636,
  7904. bottom: 30/1815
  7905. },
  7906. form: "liom",
  7907. default: true
  7908. },
  7909. frontSporty: {
  7910. height: math.unit(2, "meters"),
  7911. weight: math.unit(86, "kg"),
  7912. name: "Front (Sporty)",
  7913. image: {
  7914. source: "./media/characters/rose/front-sporty.svg",
  7915. extra: 350/335,
  7916. bottom: 10/360
  7917. },
  7918. form: "liom"
  7919. },
  7920. frontAlt: {
  7921. height: math.unit(1.6, "meters"),
  7922. weight: math.unit(86, "kg"),
  7923. name: "Front (Alt)",
  7924. image: {
  7925. source: "./media/characters/rose/front-alt.svg",
  7926. extra: 299/283,
  7927. bottom: 3/302
  7928. },
  7929. form: "liom"
  7930. },
  7931. plush: {
  7932. height: math.unit(2, "meters"),
  7933. weight: math.unit(86/3, "kg"),
  7934. name: "Plush",
  7935. image: {
  7936. source: "./media/characters/rose/plush.svg",
  7937. extra: 361/337,
  7938. bottom: 11/372
  7939. },
  7940. form: "plush",
  7941. default: true
  7942. },
  7943. faeStanding: {
  7944. height: math.unit(10, "cm"),
  7945. weight: math.unit(10, "grams"),
  7946. name: "Standing",
  7947. image: {
  7948. source: "./media/characters/rose/fae-standing.svg",
  7949. extra: 1189/1060,
  7950. bottom: 27/1216
  7951. },
  7952. form: "fae",
  7953. default: true
  7954. },
  7955. faeSitting: {
  7956. height: math.unit(5, "cm"),
  7957. weight: math.unit(10, "grams"),
  7958. name: "Sitting",
  7959. image: {
  7960. source: "./media/characters/rose/fae-sitting.svg",
  7961. extra: 737/577,
  7962. bottom: 356/1093
  7963. },
  7964. form: "fae"
  7965. },
  7966. faePaw: {
  7967. height: math.unit(1.35, "cm"),
  7968. name: "Paw",
  7969. image: {
  7970. source: "./media/characters/rose/fae-paw.svg"
  7971. },
  7972. form: "fae"
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "True Micro",
  7978. height: math.unit(9, "cm"),
  7979. form: "liom"
  7980. },
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(16, "cm"),
  7984. form: "liom"
  7985. },
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(1.85, "meters"),
  7989. default: true,
  7990. form: "liom"
  7991. },
  7992. {
  7993. name: "Mini-Macro",
  7994. height: math.unit(5, "meters"),
  7995. form: "liom"
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(15, "meters"),
  8000. form: "liom"
  8001. },
  8002. {
  8003. name: "True Macro",
  8004. height: math.unit(40, "meters"),
  8005. form: "liom"
  8006. },
  8007. {
  8008. name: "City Scale",
  8009. height: math.unit(1, "km"),
  8010. form: "liom"
  8011. },
  8012. {
  8013. name: "Plushie",
  8014. height: math.unit(9, "cm"),
  8015. form: "plush",
  8016. default: true
  8017. },
  8018. {
  8019. name: "Fae",
  8020. height: math.unit(10, "cm"),
  8021. form: "fae",
  8022. default: true
  8023. },
  8024. ],
  8025. {
  8026. "liom": {
  8027. name: "Liom"
  8028. },
  8029. "plush": {
  8030. name: "Plush"
  8031. },
  8032. "fae": {
  8033. name: "Fae Fox",
  8034. default: true
  8035. }
  8036. }
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8040. {
  8041. front: {
  8042. height: math.unit(2, "meters"),
  8043. weight: math.unit(350, "lbs"),
  8044. name: "Front",
  8045. image: {
  8046. source: "./media/characters/regal/front.svg"
  8047. }
  8048. },
  8049. back: {
  8050. height: math.unit(2, "meters"),
  8051. weight: math.unit(350, "lbs"),
  8052. name: "Back",
  8053. image: {
  8054. source: "./media/characters/regal/back.svg"
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Macro",
  8061. height: math.unit(350, "feet"),
  8062. default: true
  8063. }
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(4 + 11 / 12, "feet"),
  8071. weight: math.unit(100, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/opal/front.svg"
  8075. }
  8076. },
  8077. frontAlt: {
  8078. height: math.unit(4 + 11 / 12, "feet"),
  8079. weight: math.unit(100, "lbs"),
  8080. name: "Front (Alt)",
  8081. image: {
  8082. source: "./media/characters/opal/front-alt.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Small",
  8089. height: math.unit(4 + 11 / 12, "feet")
  8090. },
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(20, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(120, "feet")
  8099. },
  8100. {
  8101. name: "Megamacro",
  8102. height: math.unit(80, "miles")
  8103. },
  8104. {
  8105. name: "True Size",
  8106. height: math.unit(100000, "lightyears")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(200, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/vector-wuff/front.svg"
  8119. }
  8120. }
  8121. },
  8122. [
  8123. {
  8124. name: "Normal",
  8125. height: math.unit(2.8, "meters")
  8126. },
  8127. {
  8128. name: "Macro",
  8129. height: math.unit(450, "meters"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Megamacro",
  8134. height: math.unit(15, "kilometers")
  8135. }
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(256, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/dannik/front.svg"
  8147. }
  8148. }
  8149. },
  8150. [
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(69.57, "meters"),
  8154. default: true
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(6, "feet"),
  8163. weight: math.unit(120, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/azura-saharah/front.svg"
  8167. }
  8168. },
  8169. back: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(120, "lbs"),
  8172. name: "Back",
  8173. image: {
  8174. source: "./media/characters/azura-saharah/back.svg"
  8175. }
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(100, "feet"),
  8182. default: true
  8183. },
  8184. ]
  8185. ))
  8186. characterMakers.push(() => makeCharacter(
  8187. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8188. {
  8189. side: {
  8190. height: math.unit(5 + 4 / 12, "feet"),
  8191. weight: math.unit(163, "lbs"),
  8192. name: "Side",
  8193. image: {
  8194. source: "./media/characters/kennedy/side.svg"
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Standard Doggo",
  8201. height: math.unit(5 + 4 / 12, "feet")
  8202. },
  8203. {
  8204. name: "Big Doggo",
  8205. height: math.unit(25 + 3 / 12, "feet"),
  8206. default: true
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(5 + 5/12, "feet"),
  8215. weight: math.unit(100, "lbs"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/odios-de-lunar/front.svg",
  8219. extra: 1468/1323,
  8220. bottom: 22/1490
  8221. }
  8222. }
  8223. },
  8224. [
  8225. {
  8226. name: "Micro",
  8227. height: math.unit(3, "inches")
  8228. },
  8229. {
  8230. name: "Normal",
  8231. height: math.unit(5.5, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(100, "feet")
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8242. {
  8243. back: {
  8244. height: math.unit(6, "feet"),
  8245. weight: math.unit(220, "lbs"),
  8246. name: "Back",
  8247. image: {
  8248. source: "./media/characters/mandake/back.svg"
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(7, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(78, "feet")
  8261. },
  8262. {
  8263. name: "Macro+",
  8264. height: math.unit(300, "meters")
  8265. },
  8266. {
  8267. name: "Macro++",
  8268. height: math.unit(2400, "feet")
  8269. },
  8270. {
  8271. name: "Megamacro",
  8272. height: math.unit(5167, "meters")
  8273. },
  8274. {
  8275. name: "Gigamacro",
  8276. height: math.unit(41769, "miles")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(6, "feet"),
  8285. weight: math.unit(120, "lbs"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/yozey/front.svg"
  8289. }
  8290. },
  8291. frontAlt: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(120, "lbs"),
  8294. name: "Front (Alt)",
  8295. image: {
  8296. source: "./media/characters/yozey/front-alt.svg"
  8297. }
  8298. },
  8299. side: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(120, "lbs"),
  8302. name: "Side",
  8303. image: {
  8304. source: "./media/characters/yozey/side.svg"
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Micro",
  8311. height: math.unit(3, "inches"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(6, "feet")
  8317. }
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(103, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/valeska-voss/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Mini-Sized Sub",
  8335. height: math.unit(3.1, "inches")
  8336. },
  8337. {
  8338. name: "Mid-Sized Sub",
  8339. height: math.unit(6.2, "inches")
  8340. },
  8341. {
  8342. name: "Full-Sized Sub",
  8343. height: math.unit(9.3, "inches")
  8344. },
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(5 + 2 / 12, "foot"),
  8348. default: true
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(160, "lbs"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/gene-zeta/front.svg",
  8361. extra: 3006 / 2826,
  8362. bottom: 182 / 3188
  8363. }
  8364. }
  8365. },
  8366. [
  8367. {
  8368. name: "Micro",
  8369. height: math.unit(6, "inches")
  8370. },
  8371. {
  8372. name: "Normal",
  8373. height: math.unit(5 + 11 / 12, "foot"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Macro",
  8378. height: math.unit(140, "feet")
  8379. },
  8380. {
  8381. name: "Supercharged",
  8382. height: math.unit(2500, "feet")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(350, "lbs"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/razinox/front.svg",
  8395. extra: 1686 / 1548,
  8396. bottom: 28.2 / 1868
  8397. }
  8398. },
  8399. back: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(350, "lbs"),
  8402. name: "Back",
  8403. image: {
  8404. source: "./media/characters/razinox/back.svg",
  8405. extra: 1660 / 1590,
  8406. bottom: 15 / 1665
  8407. }
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "Normal",
  8413. height: math.unit(10 + 8 / 12, "foot")
  8414. },
  8415. {
  8416. name: "Minimacro",
  8417. height: math.unit(15, "foot")
  8418. },
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(60, "foot"),
  8422. default: true
  8423. },
  8424. {
  8425. name: "Megamacro",
  8426. height: math.unit(5, "miles")
  8427. },
  8428. {
  8429. name: "Gigamacro",
  8430. height: math.unit(6000, "miles")
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(6, "feet"),
  8439. weight: math.unit(150, "lbs"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/cobalt/front.svg"
  8443. }
  8444. }
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(8 + 1 / 12, "foot")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(111, "foot"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Supracosmic",
  8458. height: math.unit(1e42, "feet")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(5, "inches"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/amanda/front.svg",
  8470. extra: 926/791,
  8471. bottom: 38/964
  8472. }
  8473. },
  8474. back: {
  8475. height: math.unit(5, "inches"),
  8476. name: "Back",
  8477. image: {
  8478. source: "./media/characters/amanda/back.svg",
  8479. extra: 909/805,
  8480. bottom: 43/952
  8481. }
  8482. },
  8483. },
  8484. [
  8485. {
  8486. name: "Micro",
  8487. height: math.unit(5, "inches"),
  8488. default: true
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(2.75, "meters"),
  8497. weight: math.unit(1200, "lb"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/teal/front.svg",
  8501. extra: 2463 / 2320,
  8502. bottom: 166 / 2629
  8503. }
  8504. },
  8505. back: {
  8506. height: math.unit(2.75, "meters"),
  8507. weight: math.unit(1200, "lb"),
  8508. name: "Back",
  8509. image: {
  8510. source: "./media/characters/teal/back.svg",
  8511. extra: 2580 / 2489,
  8512. bottom: 151 / 2731
  8513. }
  8514. },
  8515. sitting: {
  8516. height: math.unit(1.9, "meters"),
  8517. weight: math.unit(1200, "lb"),
  8518. name: "Sitting",
  8519. image: {
  8520. source: "./media/characters/teal/sitting.svg",
  8521. extra: 623 / 590,
  8522. bottom: 121 / 744
  8523. }
  8524. },
  8525. standing: {
  8526. height: math.unit(2.75, "meters"),
  8527. weight: math.unit(1200, "lb"),
  8528. name: "Standing",
  8529. image: {
  8530. source: "./media/characters/teal/standing.svg",
  8531. extra: 923 / 893,
  8532. bottom: 60 / 983
  8533. }
  8534. },
  8535. stretching: {
  8536. height: math.unit(3.65, "meters"),
  8537. weight: math.unit(1200, "lb"),
  8538. name: "Stretching",
  8539. image: {
  8540. source: "./media/characters/teal/stretching.svg",
  8541. extra: 1276 / 1244,
  8542. bottom: 0 / 1276
  8543. }
  8544. },
  8545. legged: {
  8546. height: math.unit(1.3, "meters"),
  8547. weight: math.unit(100, "lb"),
  8548. name: "Legged",
  8549. image: {
  8550. source: "./media/characters/teal/legged.svg",
  8551. extra: 462 / 437,
  8552. bottom: 24 / 486
  8553. }
  8554. },
  8555. naga: {
  8556. height: math.unit(5.4, "meters"),
  8557. weight: math.unit(4000, "lb"),
  8558. name: "Naga",
  8559. image: {
  8560. source: "./media/characters/teal/naga.svg",
  8561. extra: 1902 / 1858,
  8562. bottom: 0 / 1902
  8563. }
  8564. },
  8565. hand: {
  8566. height: math.unit(0.52, "meters"),
  8567. name: "Hand",
  8568. image: {
  8569. source: "./media/characters/teal/hand.svg"
  8570. }
  8571. },
  8572. maw: {
  8573. height: math.unit(0.43, "meters"),
  8574. name: "Maw",
  8575. image: {
  8576. source: "./media/characters/teal/maw.svg"
  8577. }
  8578. },
  8579. slit: {
  8580. height: math.unit(0.25, "meters"),
  8581. name: "Slit",
  8582. image: {
  8583. source: "./media/characters/teal/slit.svg"
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(2.75, "meters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(300, "feet")
  8596. },
  8597. {
  8598. name: "Macro+",
  8599. height: math.unit(2000, "feet")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8605. {
  8606. frontCat: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(180, "lbs"),
  8609. name: "Front (Cat)",
  8610. image: {
  8611. source: "./media/characters/ravin-amulet/front-cat.svg"
  8612. }
  8613. },
  8614. frontCatAlt: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(180, "lbs"),
  8617. name: "Front (Alt, Cat)",
  8618. image: {
  8619. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8620. }
  8621. },
  8622. frontWerewolf: {
  8623. height: math.unit(6 * 1.2, "feet"),
  8624. weight: math.unit(225, "lbs"),
  8625. name: "Front (Werewolf)",
  8626. image: {
  8627. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8628. }
  8629. },
  8630. backWerewolf: {
  8631. height: math.unit(6 * 1.2, "feet"),
  8632. weight: math.unit(225, "lbs"),
  8633. name: "Back (Werewolf)",
  8634. image: {
  8635. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Nano",
  8642. height: math.unit(1, "micrometer")
  8643. },
  8644. {
  8645. name: "Micro",
  8646. height: math.unit(1, "inch")
  8647. },
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(6, "feet"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(60, "feet")
  8656. }
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(6, "feet"),
  8664. weight: math.unit(165, "lbs"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/fluoresce/front.svg"
  8668. }
  8669. }
  8670. },
  8671. [
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(6, "cm")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(5 + 7 / 12, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(56, "feet")
  8684. },
  8685. {
  8686. name: "Megamacro",
  8687. height: math.unit(1.9, "miles")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(9 + 6 / 12, "feet"),
  8696. weight: math.unit(523, "lbs"),
  8697. name: "Side",
  8698. image: {
  8699. source: "./media/characters/aurora/side.svg",
  8700. extra: 474/393,
  8701. bottom: 5/479
  8702. }
  8703. }
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(9 + 6 / 12, "feet")
  8709. },
  8710. {
  8711. name: "Macro",
  8712. height: math.unit(96, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Macro+",
  8717. height: math.unit(243, "feet")
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(194, "cm"),
  8726. weight: math.unit(90, "kg"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/ranek/front.svg",
  8730. extra: 1862/1791,
  8731. bottom: 80/1942
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(194, "cm"),
  8736. weight: math.unit(90, "kg"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/ranek/back.svg",
  8740. extra: 1853/1787,
  8741. bottom: 74/1927
  8742. }
  8743. },
  8744. feral: {
  8745. height: math.unit(30, "cm"),
  8746. weight: math.unit(1.6, "lbs"),
  8747. name: "Feral",
  8748. image: {
  8749. source: "./media/characters/ranek/feral.svg",
  8750. extra: 990/631,
  8751. bottom: 29/1019
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(194, "cm"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Macro",
  8763. height: math.unit(100, "meters")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(5 + 6 / 12, "feet"),
  8772. weight: math.unit(153, "lbs"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/andrew-cooper/front.svg"
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Nano",
  8782. height: math.unit(1, "mm")
  8783. },
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(2, "inches")
  8787. },
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(5 + 6 / 12, "feet"),
  8791. default: true
  8792. }
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(6, "feet"),
  8800. weight: math.unit(180, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/akane-sato/front.svg",
  8804. extra: 1219 / 1140
  8805. }
  8806. },
  8807. back: {
  8808. height: math.unit(6, "feet"),
  8809. weight: math.unit(180, "lbs"),
  8810. name: "Back",
  8811. image: {
  8812. source: "./media/characters/akane-sato/back.svg",
  8813. extra: 1219 / 1170
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(2.5, "meters")
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(250, "meters"),
  8825. default: true
  8826. },
  8827. {
  8828. name: "Megamacro",
  8829. height: math.unit(25, "km")
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(65, "kg"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/rook/front.svg",
  8842. extra: 960 / 950
  8843. }
  8844. }
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(8.8, "feet")
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(88, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Megamacro",
  8858. height: math.unit(8, "miles")
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(12 + 2 / 12, "feet"),
  8867. weight: math.unit(808, "lbs"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/prodigy/front.svg"
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(12 + 2 / 12, "feet"),
  8878. default: true
  8879. },
  8880. {
  8881. name: "Macro",
  8882. height: math.unit(143, "feet")
  8883. },
  8884. {
  8885. name: "Macro+",
  8886. height: math.unit(400, "feet")
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(225, "lbs"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/daniel/front.svg"
  8899. }
  8900. },
  8901. leaning: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(225, "lbs"),
  8904. name: "Leaning",
  8905. image: {
  8906. source: "./media/characters/daniel/leaning.svg"
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(1000, "feet"),
  8914. default: true
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(88, "lbs"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/chiros/front.svg",
  8927. extra: 306 / 226
  8928. }
  8929. },
  8930. side: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(88, "lbs"),
  8933. name: "Side",
  8934. image: {
  8935. source: "./media/characters/chiros/side.svg",
  8936. extra: 306 / 226
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(6, "cm"),
  8944. default: true
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(100, "lbs"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/selka/front.svg",
  8957. extra: 947 / 887
  8958. }
  8959. }
  8960. },
  8961. [
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(5, "cm"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(8 + 3 / 12, "feet"),
  8974. weight: math.unit(424, "lbs"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/verin/front.svg",
  8978. extra: 1845 / 1550
  8979. }
  8980. },
  8981. frontArmored: {
  8982. height: math.unit(8 + 3 / 12, "feet"),
  8983. weight: math.unit(424, "lbs"),
  8984. name: "Front (Armored)",
  8985. image: {
  8986. source: "./media/characters/verin/front-armor.svg",
  8987. extra: 1845 / 1550,
  8988. bottom: 0.01
  8989. }
  8990. },
  8991. back: {
  8992. height: math.unit(8 + 3 / 12, "feet"),
  8993. weight: math.unit(424, "lbs"),
  8994. name: "Back",
  8995. image: {
  8996. source: "./media/characters/verin/back.svg",
  8997. bottom: 0.1,
  8998. extra: 1
  8999. }
  9000. },
  9001. foot: {
  9002. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9003. name: "Foot",
  9004. image: {
  9005. source: "./media/characters/verin/foot.svg"
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(8 + 3 / 12, "feet")
  9013. },
  9014. {
  9015. name: "Minimacro",
  9016. height: math.unit(21, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(626, "feet")
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(2.718, "meters"),
  9030. weight: math.unit(150, "lbs"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/sovrim-terraquian/front.svg",
  9034. extra: 1752/1689,
  9035. bottom: 36/1788
  9036. }
  9037. },
  9038. back: {
  9039. height: math.unit(2.718, "meters"),
  9040. weight: math.unit(150, "lbs"),
  9041. name: "Back",
  9042. image: {
  9043. source: "./media/characters/sovrim-terraquian/back.svg",
  9044. extra: 1698/1657,
  9045. bottom: 58/1756
  9046. }
  9047. },
  9048. tongue: {
  9049. height: math.unit(2.865, "feet"),
  9050. name: "Tongue",
  9051. image: {
  9052. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9053. }
  9054. },
  9055. hand: {
  9056. height: math.unit(1.61, "feet"),
  9057. name: "Hand",
  9058. image: {
  9059. source: "./media/characters/sovrim-terraquian/hand.svg"
  9060. }
  9061. },
  9062. foot: {
  9063. height: math.unit(1.05, "feet"),
  9064. name: "Foot",
  9065. image: {
  9066. source: "./media/characters/sovrim-terraquian/foot.svg"
  9067. }
  9068. },
  9069. footAlt: {
  9070. height: math.unit(0.88, "feet"),
  9071. name: "Foot (Alt)",
  9072. image: {
  9073. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Micro",
  9080. height: math.unit(2, "inches")
  9081. },
  9082. {
  9083. name: "Small",
  9084. height: math.unit(1, "meter")
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(Math.E, "meters"),
  9089. default: true
  9090. },
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(20, "meters")
  9094. },
  9095. {
  9096. name: "Macro+",
  9097. height: math.unit(400, "meters")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(7, "feet"),
  9106. weight: math.unit(489, "lbs"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/reece-silvermane/front.svg",
  9110. bottom: 0.02,
  9111. extra: 1
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Macro",
  9118. height: math.unit(1.5, "miles"),
  9119. default: true
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(78, "kg"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/kane/front.svg",
  9132. extra: 978 / 899
  9133. }
  9134. },
  9135. back: {
  9136. height: math.unit(6, "feet"),
  9137. weight: math.unit(78, "kg"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/kane/back.svg",
  9141. extra: 1966/1800,
  9142. bottom: 0/1966
  9143. }
  9144. },
  9145. head: {
  9146. height: math.unit(1.4, "feet"),
  9147. name: "Head",
  9148. image: {
  9149. source: "./media/characters/kane/head.svg"
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(2.1, "m"),
  9157. },
  9158. {
  9159. name: "Macro",
  9160. height: math.unit(1, "km"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(200, "kg"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/tegon/front.svg",
  9174. bottom: 0.01,
  9175. extra: 1
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(1, "inch")
  9183. },
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(6 + 3 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(300, "feet")
  9192. },
  9193. {
  9194. name: "Megamacro",
  9195. height: math.unit(69, "miles")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9201. {
  9202. side: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(2304, "lbs"),
  9205. name: "Side",
  9206. image: {
  9207. source: "./media/characters/arcturax/side.svg",
  9208. extra: 790 / 376,
  9209. bottom: 0.01
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Micro",
  9216. height: math.unit(2, "inch")
  9217. },
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(6, "feet")
  9221. },
  9222. {
  9223. name: "Macro",
  9224. height: math.unit(39, "feet"),
  9225. default: true
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(7, "miles")
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(50, "lbs"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/sentri/front.svg",
  9242. extra: 1750 / 1570,
  9243. bottom: 0.025
  9244. }
  9245. },
  9246. frontAlt: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(50, "lbs"),
  9249. name: "Front (Alt)",
  9250. image: {
  9251. source: "./media/characters/sentri/front-alt.svg",
  9252. extra: 1750 / 1570,
  9253. bottom: 0.025
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(15, "feet"),
  9261. default: true
  9262. },
  9263. {
  9264. name: "Macro",
  9265. height: math.unit(2500, "feet")
  9266. }
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(5 + 8 / 12, "feet"),
  9274. weight: math.unit(130, "lbs"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/corvin/front.svg",
  9278. extra: 1803 / 1629
  9279. }
  9280. },
  9281. frontShirt: {
  9282. height: math.unit(5 + 8 / 12, "feet"),
  9283. weight: math.unit(130, "lbs"),
  9284. name: "Front (Shirt)",
  9285. image: {
  9286. source: "./media/characters/corvin/front-shirt.svg",
  9287. extra: 1803 / 1629
  9288. }
  9289. },
  9290. frontPoncho: {
  9291. height: math.unit(5 + 8 / 12, "feet"),
  9292. weight: math.unit(130, "lbs"),
  9293. name: "Front (Poncho)",
  9294. image: {
  9295. source: "./media/characters/corvin/front-poncho.svg",
  9296. extra: 1803 / 1629
  9297. }
  9298. },
  9299. side: {
  9300. height: math.unit(5 + 8 / 12, "feet"),
  9301. weight: math.unit(130, "lbs"),
  9302. name: "Side",
  9303. image: {
  9304. source: "./media/characters/corvin/side.svg",
  9305. extra: 1012 / 945
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(5 + 8 / 12, "feet"),
  9310. weight: math.unit(130, "lbs"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/corvin/back.svg",
  9314. extra: 1803 / 1629
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(3, "inches")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(5 + 8 / 12, "feet")
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(300, "feet"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Megamacro",
  9334. height: math.unit(500, "miles")
  9335. }
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(6, "feet"),
  9343. weight: math.unit(135, "lbs"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/q/front.svg",
  9347. extra: 854 / 752,
  9348. bottom: 0.005
  9349. }
  9350. },
  9351. back: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(130, "lbs"),
  9354. name: "Back",
  9355. image: {
  9356. source: "./media/characters/q/back.svg",
  9357. extra: 854 / 752
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Macro",
  9364. height: math.unit(90, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Extra Macro",
  9369. height: math.unit(300, "feet"),
  9370. },
  9371. {
  9372. name: "BIG WALF",
  9373. height: math.unit(750, "feet"),
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(3, "feet"),
  9382. weight: math.unit(28, "lbs"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/citrine/front.svg"
  9386. }
  9387. }
  9388. },
  9389. [
  9390. {
  9391. name: "Normal",
  9392. height: math.unit(3, "feet"),
  9393. default: true
  9394. }
  9395. ]
  9396. ))
  9397. characterMakers.push(() => makeCharacter(
  9398. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9399. {
  9400. front: {
  9401. height: math.unit(14, "feet"),
  9402. weight: math.unit(1450, "kg"),
  9403. preyCapacity: math.unit(15, "people"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/aura-starwind/front.svg",
  9407. extra: 1440/1327,
  9408. bottom: 11/1451
  9409. }
  9410. },
  9411. side: {
  9412. height: math.unit(14, "feet"),
  9413. weight: math.unit(1450, "kg"),
  9414. preyCapacity: math.unit(15, "people"),
  9415. name: "Side",
  9416. image: {
  9417. source: "./media/characters/aura-starwind/side.svg",
  9418. extra: 1654 / 1497
  9419. }
  9420. },
  9421. taur: {
  9422. height: math.unit(18, "feet"),
  9423. weight: math.unit(5500, "kg"),
  9424. preyCapacity: math.unit(50, "people"),
  9425. name: "Taur",
  9426. image: {
  9427. source: "./media/characters/aura-starwind/taur.svg",
  9428. extra: 1760 / 1650
  9429. }
  9430. },
  9431. feral: {
  9432. height: math.unit(46, "feet"),
  9433. weight: math.unit(25000, "kg"),
  9434. preyCapacity: math.unit(120, "people"),
  9435. name: "Feral",
  9436. image: {
  9437. source: "./media/characters/aura-starwind/feral.svg"
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(14, "feet"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(50, "meters")
  9450. },
  9451. {
  9452. name: "Megamacro",
  9453. height: math.unit(5000, "meters")
  9454. },
  9455. {
  9456. name: "Gigamacro",
  9457. height: math.unit(100000, "kilometers")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(2 + 7 / 12, "feet"),
  9466. weight: math.unit(32, "lbs"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/rivet/front.svg",
  9470. extra: 1716 / 1658,
  9471. bottom: 0.03
  9472. }
  9473. },
  9474. foot: {
  9475. height: math.unit(0.551, "feet"),
  9476. name: "Rivet's Foot",
  9477. image: {
  9478. source: "./media/characters/rivet/foot.svg"
  9479. },
  9480. rename: true
  9481. }
  9482. },
  9483. [
  9484. {
  9485. name: "Micro",
  9486. height: math.unit(1.5, "inches"),
  9487. },
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(2 + 7 / 12, "feet"),
  9491. default: true
  9492. },
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(85, "feet")
  9496. },
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(2.2, "km")
  9500. }
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(5 + 9 / 12, "feet"),
  9508. weight: math.unit(150, "lbs"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/coffee/front.svg",
  9512. extra: 946/880,
  9513. bottom: 66/1012
  9514. }
  9515. },
  9516. foot: {
  9517. height: math.unit(1.29, "feet"),
  9518. name: "Foot",
  9519. image: {
  9520. source: "./media/characters/coffee/foot.svg"
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(2, "inches"),
  9528. },
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(5 + 9 / 12, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(800, "feet")
  9537. },
  9538. {
  9539. name: "Megamacro",
  9540. height: math.unit(25, "miles")
  9541. }
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(200, "lbs"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/chari-gal/front.svg",
  9553. extra: 735/649,
  9554. bottom: 55/790
  9555. },
  9556. form: "normal",
  9557. default: true
  9558. },
  9559. back: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(200, "lb"),
  9562. name: "Back",
  9563. image: {
  9564. source: "./media/characters/chari-gal/back.svg",
  9565. extra: 762/666,
  9566. bottom: 31/793
  9567. },
  9568. form: "normal"
  9569. },
  9570. mouth: {
  9571. height: math.unit(1.35, "feet"),
  9572. name: "Mouth",
  9573. image: {
  9574. source: "./media/characters/chari-gal/mouth.svg"
  9575. },
  9576. form: "normal"
  9577. },
  9578. gigantamax: {
  9579. height: math.unit(6 * 16, "feet"),
  9580. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9581. name: "Gigantamax",
  9582. image: {
  9583. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9584. extra: 1507/1149,
  9585. bottom: 254/1761
  9586. },
  9587. form: "gigantamax",
  9588. default: true
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(5 + 7 / 12, "feet"),
  9595. form: "normal",
  9596. },
  9597. {
  9598. name: "Macro",
  9599. height: math.unit(200, "feet"),
  9600. default: true,
  9601. form: "normal"
  9602. },
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9606. form: "gigantamax",
  9607. },
  9608. {
  9609. name: "Macro",
  9610. height: math.unit(16 * 200, "feet"),
  9611. default: true,
  9612. form: "gigantamax"
  9613. },
  9614. ],
  9615. {
  9616. "normal": {
  9617. name: "Normal",
  9618. default: true
  9619. },
  9620. "gigantamax": {
  9621. name: "Gigantamax",
  9622. },
  9623. }
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(150, "lbs"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/nova/front.svg",
  9634. extra: 5000 / 4722,
  9635. bottom: 0.02
  9636. }
  9637. }
  9638. },
  9639. [
  9640. {
  9641. name: "Micro-",
  9642. height: math.unit(0.8, "inches")
  9643. },
  9644. {
  9645. name: "Micro",
  9646. height: math.unit(2, "inches"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9653. {
  9654. koboldFront: {
  9655. height: math.unit(3 + 1 / 12, "feet"),
  9656. weight: math.unit(21.7, "lbs"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/argent/kobold-front.svg",
  9660. extra: 1471 / 1331,
  9661. bottom: 100.8 / 1575.5
  9662. },
  9663. form: "kobold",
  9664. default: true
  9665. },
  9666. dragonFront: {
  9667. height: math.unit(75, "inches"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/argent/dragon-front.svg",
  9671. extra: 1389/1248,
  9672. bottom: 54/1443
  9673. },
  9674. form: "dragon",
  9675. },
  9676. dragonBack: {
  9677. height: math.unit(75, "inches"),
  9678. name: "Back",
  9679. image: {
  9680. source: "./media/characters/argent/dragon-back.svg",
  9681. extra: 1399/1271,
  9682. bottom: 23/1422
  9683. },
  9684. form: "dragon",
  9685. },
  9686. dragonDressed: {
  9687. height: math.unit(75, "inches"),
  9688. name: "Dressed",
  9689. image: {
  9690. source: "./media/characters/argent/dragon-dressed.svg",
  9691. extra: 1350/1215,
  9692. bottom: 26/1376
  9693. },
  9694. form: "dragon"
  9695. },
  9696. dragonHead: {
  9697. height: math.unit(23.5, "inches"),
  9698. name: "Head",
  9699. image: {
  9700. source: "./media/characters/argent/dragon-head.svg"
  9701. },
  9702. form: "dragon",
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(2, "inches"),
  9709. form: "kobold",
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(3 + 1 / 12, "feet"),
  9714. form: "kobold",
  9715. default: true
  9716. },
  9717. {
  9718. name: "Macro",
  9719. height: math.unit(120, "feet"),
  9720. form: "kobold",
  9721. },
  9722. {
  9723. name: "Speck",
  9724. height: math.unit(1, "mm"),
  9725. form: "dragon",
  9726. },
  9727. {
  9728. name: "Tiny",
  9729. height: math.unit(1, "cm"),
  9730. form: "dragon",
  9731. },
  9732. {
  9733. name: "Micro",
  9734. height: math.unit(5, "cm"),
  9735. form: "dragon",
  9736. },
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(75, "inches"),
  9740. form: "dragon",
  9741. default: true
  9742. },
  9743. {
  9744. name: "Extra Tall",
  9745. height: math.unit(9, "feet"),
  9746. form: "dragon",
  9747. },
  9748. {
  9749. name: "Inconvenient",
  9750. height: math.unit(5, "meters"),
  9751. form: "dragon",
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(70, "meters"),
  9756. form: "dragon",
  9757. },
  9758. {
  9759. name: "Macro+",
  9760. height: math.unit(250, "meters"),
  9761. form: "dragon",
  9762. },
  9763. {
  9764. name: "Megamacro",
  9765. height: math.unit(20, "km"),
  9766. form: "dragon",
  9767. },
  9768. {
  9769. name: "Mountainous",
  9770. height: math.unit(100, "km"),
  9771. form: "dragon",
  9772. },
  9773. {
  9774. name: "Continental",
  9775. height: math.unit(2, "megameters"),
  9776. form: "dragon",
  9777. },
  9778. {
  9779. name: "Too Big",
  9780. height: math.unit(900, "megameters"),
  9781. form: "dragon",
  9782. },
  9783. ],
  9784. {
  9785. "kobold": {
  9786. name: "Kobold",
  9787. default: true
  9788. },
  9789. "dragon": {
  9790. name: "Dragon",
  9791. },
  9792. }
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9796. {
  9797. lamp: {
  9798. height: math.unit(7 * 1559 / 989, "feet"),
  9799. name: "Magic Lamp",
  9800. image: {
  9801. source: "./media/characters/mira-al-cul/lamp.svg",
  9802. extra: 1617 / 1559
  9803. }
  9804. },
  9805. front: {
  9806. height: math.unit(7, "feet"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/mira-al-cul/front.svg",
  9810. extra: 1044 / 990
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Heavily Restricted",
  9817. height: math.unit(7 * 1559 / 989, "feet")
  9818. },
  9819. {
  9820. name: "Freshly Freed",
  9821. height: math.unit(50 * 1559 / 989, "feet")
  9822. },
  9823. {
  9824. name: "World Encompassing",
  9825. height: math.unit(10000 * 1559 / 989, "miles")
  9826. },
  9827. {
  9828. name: "Galactic",
  9829. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9830. },
  9831. {
  9832. name: "Palmed Universe",
  9833. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Multiversal Matriarch",
  9838. height: math.unit(8.87e10, "yottameters")
  9839. },
  9840. {
  9841. name: "Void Mother",
  9842. height: math.unit(3.14e110, "yottaparsecs")
  9843. },
  9844. {
  9845. name: "Toying with Transcendence",
  9846. height: math.unit(1e307, "meters")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9852. {
  9853. front: {
  9854. height: math.unit(17 + 1 / 12, "feet"),
  9855. weight: math.unit(476.2 * 5, "lbs"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/kuro-shi-uchū/front.svg",
  9859. extra: 2329 / 1835,
  9860. bottom: 0.02
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Micro",
  9867. height: math.unit(2, "inches")
  9868. },
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(12, "meters")
  9872. },
  9873. {
  9874. name: "Planetary",
  9875. height: math.unit(0.00929, "AU"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Universal",
  9880. height: math.unit(20, "gigaparsecs")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(5 + 2 / 12, "feet"),
  9889. weight: math.unit(120, "lbs"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/katherine/front.svg",
  9893. extra: 2075 / 1969
  9894. }
  9895. },
  9896. dress: {
  9897. height: math.unit(5 + 2 / 12, "feet"),
  9898. weight: math.unit(120, "lbs"),
  9899. name: "Dress",
  9900. image: {
  9901. source: "./media/characters/katherine/dress.svg",
  9902. extra: 2258 / 2064
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(1, "inches"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(5 + 2 / 12, "feet")
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(100, "meters")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(80, "miles")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(7 + 8 / 12, "feet"),
  9931. weight: math.unit(250, "lbs"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/yevis/front.svg",
  9935. extra: 1938 / 1755
  9936. }
  9937. }
  9938. },
  9939. [
  9940. {
  9941. name: "Mortal",
  9942. height: math.unit(7 + 8 / 12, "feet")
  9943. },
  9944. {
  9945. name: "Battle",
  9946. height: math.unit(25 + 11 / 12, "feet")
  9947. },
  9948. {
  9949. name: "Wrath",
  9950. height: math.unit(1654 + 11 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Planet Destroyer",
  9954. height: math.unit(12000, "miles")
  9955. },
  9956. {
  9957. name: "Galaxy Conqueror",
  9958. height: math.unit(1.45, "zettameters"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Universal War",
  9963. height: math.unit(184, "gigaparsecs")
  9964. },
  9965. {
  9966. name: "Eternity War",
  9967. height: math.unit(1.98e55, "yottaparsecs")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(5 + 8 / 12, "feet"),
  9976. weight: math.unit(63, "kg"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/xavier/front.svg",
  9980. extra: 944 / 883
  9981. }
  9982. },
  9983. frontStretch: {
  9984. height: math.unit(5 + 8 / 12, "feet"),
  9985. weight: math.unit(63, "kg"),
  9986. name: "Stretching",
  9987. image: {
  9988. source: "./media/characters/xavier/front-stretch.svg",
  9989. extra: 962 / 820
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(5 + 8 / 12, "feet")
  9997. },
  9998. {
  9999. name: "Macro",
  10000. height: math.unit(100, "meters"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "McLargeHuge",
  10005. height: math.unit(10, "miles")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(5 + 5 / 12, "feet"),
  10014. weight: math.unit(150, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/joshii/front.svg",
  10018. extra: 765 / 653,
  10019. bottom: 51 / 816
  10020. }
  10021. },
  10022. foot: {
  10023. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10024. name: "Foot",
  10025. image: {
  10026. source: "./media/characters/joshii/foot.svg"
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Micro",
  10033. height: math.unit(2, "inches")
  10034. },
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(5 + 5 / 12, "feet")
  10038. },
  10039. {
  10040. name: "Macro",
  10041. height: math.unit(785, "feet"),
  10042. default: true
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(24.5, "miles")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/goddess-elizabeth/front.svg",
  10059. extra: 1800 / 1525,
  10060. bottom: 0.005
  10061. }
  10062. },
  10063. foot: {
  10064. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10065. name: "Foot",
  10066. image: {
  10067. source: "./media/characters/goddess-elizabeth/foot.svg"
  10068. }
  10069. },
  10070. mouth: {
  10071. height: math.unit(6, "feet"),
  10072. name: "Mouth",
  10073. image: {
  10074. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Micro",
  10081. height: math.unit(12, "feet")
  10082. },
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(80, "miles"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(15000, "parsecs")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(5 + 9 / 12, "feet"),
  10099. weight: math.unit(144, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/kara/front.svg"
  10103. }
  10104. },
  10105. feet: {
  10106. height: math.unit(6 / 6.765, "feet"),
  10107. name: "Kara's Feet",
  10108. rename: true,
  10109. image: {
  10110. source: "./media/characters/kara/feet.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(5 + 9 / 12, "feet")
  10118. },
  10119. {
  10120. name: "Macro",
  10121. height: math.unit(174, "feet"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(18, "feet"),
  10131. weight: math.unit(4050, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/tyrone/front.svg",
  10135. extra: 2405 / 2270,
  10136. bottom: 182 / 2587
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(18, "feet"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(300, "feet")
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(15, "km")
  10153. },
  10154. {
  10155. name: "Gigamacro",
  10156. height: math.unit(500, "km")
  10157. },
  10158. {
  10159. name: "Teramacro",
  10160. height: math.unit(0.5, "gigameters")
  10161. },
  10162. {
  10163. name: "Omnimacro",
  10164. height: math.unit(1e252, "yottauniverse")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(7 + 8 / 12, "feet"),
  10173. weight: math.unit(120, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/danny/front.svg",
  10177. extra: 1490 / 1350
  10178. }
  10179. },
  10180. back: {
  10181. height: math.unit(7 + 8 / 12, "feet"),
  10182. weight: math.unit(120, "lb"),
  10183. name: "Back",
  10184. image: {
  10185. source: "./media/characters/danny/back.svg",
  10186. extra: 1490 / 1350
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(7 + 8 / 12, "feet"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(3.5, "inches"),
  10203. weight: math.unit(19, "grams"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/mallow/front.svg",
  10207. extra: 471 / 431
  10208. }
  10209. },
  10210. back: {
  10211. height: math.unit(3.5, "inches"),
  10212. weight: math.unit(19, "grams"),
  10213. name: "Back",
  10214. image: {
  10215. source: "./media/characters/mallow/back.svg",
  10216. extra: 471 / 431
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(3.5, "inches"),
  10224. default: true
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(9, "feet"),
  10233. weight: math.unit(230, "kg"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/starry-aqua/front.svg"
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(9, "feet"),
  10241. weight: math.unit(230, "kg"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/starry-aqua/back.svg"
  10245. }
  10246. },
  10247. hand: {
  10248. height: math.unit(9 * 0.1168, "feet"),
  10249. name: "Hand",
  10250. image: {
  10251. source: "./media/characters/starry-aqua/hand.svg"
  10252. }
  10253. },
  10254. foot: {
  10255. height: math.unit(9 * 0.18, "feet"),
  10256. name: "Foot",
  10257. image: {
  10258. source: "./media/characters/starry-aqua/foot.svg"
  10259. }
  10260. }
  10261. },
  10262. [
  10263. {
  10264. name: "Micro",
  10265. height: math.unit(3, "inches")
  10266. },
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(9, "feet")
  10270. },
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(300, "feet"),
  10274. default: true
  10275. },
  10276. {
  10277. name: "Megamacro",
  10278. height: math.unit(3200, "feet")
  10279. }
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10284. {
  10285. front: {
  10286. height: math.unit(15, "feet"),
  10287. weight: math.unit(5026, "lb"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/luka-towers/front.svg",
  10291. extra: 1269/1133,
  10292. bottom: 51/1320
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(15, "feet"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Minimacro",
  10304. height: math.unit(25, "feet")
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(320, "feet")
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(35000, "feet")
  10313. },
  10314. {
  10315. name: "Gigamacro",
  10316. height: math.unit(4000, "miles")
  10317. },
  10318. {
  10319. name: "Teramacro",
  10320. height: math.unit(15000, "miles")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/natalie-nightring/front.svg",
  10333. extra: 1,
  10334. bottom: 0.06
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Uh Oh",
  10341. height: math.unit(0.1, "mm")
  10342. },
  10343. {
  10344. name: "Small",
  10345. height: math.unit(3, "inches")
  10346. },
  10347. {
  10348. name: "Human Scale",
  10349. height: math.unit(6, "feet")
  10350. },
  10351. {
  10352. name: "Librarian",
  10353. height: math.unit(50, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Immense",
  10358. height: math.unit(200, "miles")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(180, "lbs"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/danni-rosie/front.svg",
  10371. extra: 1260 / 1128,
  10372. bottom: 0.022
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(2, "inches"),
  10380. default: true
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10386. {
  10387. front: {
  10388. height: math.unit(5 + 9 / 12, "feet"),
  10389. weight: math.unit(220, "lb"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/samantha-kruse/front.svg",
  10393. extra: (985 / 935),
  10394. bottom: 0.03
  10395. }
  10396. },
  10397. frontUndressed: {
  10398. height: math.unit(5 + 9 / 12, "feet"),
  10399. weight: math.unit(220, "lb"),
  10400. name: "Front (Undressed)",
  10401. image: {
  10402. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10403. extra: (973 / 923),
  10404. bottom: 0.025
  10405. }
  10406. },
  10407. fat: {
  10408. height: math.unit(5 + 9 / 12, "feet"),
  10409. weight: math.unit(900, "lb"),
  10410. name: "Front (Fat)",
  10411. image: {
  10412. source: "./media/characters/samantha-kruse/fat.svg",
  10413. extra: 2688 / 2561
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(5 + 9 / 12, "feet"),
  10421. default: true
  10422. }
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10427. {
  10428. back: {
  10429. height: math.unit(5 + 4 / 12, "feet"),
  10430. weight: math.unit(4963, "lb"),
  10431. name: "Back",
  10432. image: {
  10433. source: "./media/characters/amelia-rosie/back.svg",
  10434. extra: 1113 / 963,
  10435. bottom: 0.01
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Level 0",
  10442. height: math.unit(5 + 4 / 12, "feet")
  10443. },
  10444. {
  10445. name: "Level 1",
  10446. height: math.unit(164597, "feet"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Level 2",
  10451. height: math.unit(956243, "miles")
  10452. },
  10453. {
  10454. name: "Level 3",
  10455. height: math.unit(29421709423, "miles")
  10456. },
  10457. {
  10458. name: "Level 4",
  10459. height: math.unit(154, "lightyears")
  10460. },
  10461. {
  10462. name: "Level 5",
  10463. height: math.unit(4738272, "lightyears")
  10464. },
  10465. {
  10466. name: "Level 6",
  10467. height: math.unit(145787152896, "lightyears")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(5 + 11 / 12, "feet"),
  10476. weight: math.unit(65, "kg"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/rook-kitara/front.svg",
  10480. extra: 1347 / 1274,
  10481. bottom: 0.005
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Totally Unfair",
  10488. height: math.unit(1.8, "mm")
  10489. },
  10490. {
  10491. name: "Lap Rookie",
  10492. height: math.unit(1.4, "feet")
  10493. },
  10494. {
  10495. name: "Normal",
  10496. height: math.unit(5 + 11 / 12, "feet"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "How Did This Happen",
  10501. height: math.unit(80, "miles")
  10502. }
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(7, "feet"),
  10510. weight: math.unit(300, "lb"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/pisces/front.svg",
  10514. extra: 2255 / 2115,
  10515. bottom: 0.03
  10516. }
  10517. },
  10518. back: {
  10519. height: math.unit(7, "feet"),
  10520. weight: math.unit(300, "lb"),
  10521. name: "Back",
  10522. image: {
  10523. source: "./media/characters/pisces/back.svg",
  10524. extra: 2146 / 2055,
  10525. bottom: 0.04
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(7, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Swimming Pool",
  10537. height: math.unit(12.2, "meters")
  10538. },
  10539. {
  10540. name: "Olympic Swimming Pool",
  10541. height: math.unit(56.3, "meters")
  10542. },
  10543. {
  10544. name: "Lake Superior",
  10545. height: math.unit(93900, "meters")
  10546. },
  10547. {
  10548. name: "Mediterranean Sea",
  10549. height: math.unit(644457, "meters")
  10550. },
  10551. {
  10552. name: "World's Oceans",
  10553. height: math.unit(4567491, "meters")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(2.3, "meters"),
  10562. weight: math.unit(120, "kg"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/zelas/front.svg"
  10566. }
  10567. },
  10568. side: {
  10569. height: math.unit(2.3, "meters"),
  10570. weight: math.unit(120, "kg"),
  10571. name: "Side",
  10572. image: {
  10573. source: "./media/characters/zelas/side.svg"
  10574. }
  10575. },
  10576. back: {
  10577. height: math.unit(2.3, "meters"),
  10578. weight: math.unit(120, "kg"),
  10579. name: "Back",
  10580. image: {
  10581. source: "./media/characters/zelas/back.svg"
  10582. }
  10583. },
  10584. foot: {
  10585. height: math.unit(1.116, "feet"),
  10586. name: "Foot",
  10587. image: {
  10588. source: "./media/characters/zelas/foot.svg"
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(2.3, "meters")
  10596. },
  10597. {
  10598. name: "Macro",
  10599. height: math.unit(30, "meters"),
  10600. default: true
  10601. },
  10602. ]
  10603. ))
  10604. characterMakers.push(() => makeCharacter(
  10605. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10606. {
  10607. front: {
  10608. height: math.unit(1, "inch"),
  10609. weight: math.unit(0.21, "grams"),
  10610. name: "Front",
  10611. image: {
  10612. source: "./media/characters/talbot/front.svg",
  10613. extra: 594 / 544
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(1, "inch"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10627. {
  10628. front: {
  10629. height: math.unit(3 + 3 / 12, "feet"),
  10630. weight: math.unit(51.8, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/fliss/front.svg",
  10634. extra: 840 / 640
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Teeny Tiny",
  10641. height: math.unit(1, "mm")
  10642. },
  10643. {
  10644. name: "Small",
  10645. height: math.unit(1, "inch"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Standard Sylveon",
  10650. height: math.unit(3 + 3 / 12, "feet")
  10651. },
  10652. {
  10653. name: "Large Nuisance",
  10654. height: math.unit(33, "feet")
  10655. },
  10656. {
  10657. name: "City Filler",
  10658. height: math.unit(3000, "feet")
  10659. },
  10660. {
  10661. name: "New Horizon",
  10662. height: math.unit(6000, "miles")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(5, "cm"),
  10671. weight: math.unit(1.94, "g"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/fleta/front.svg",
  10675. extra: 835 / 803
  10676. }
  10677. },
  10678. back: {
  10679. height: math.unit(5, "cm"),
  10680. weight: math.unit(1.94, "g"),
  10681. name: "Back",
  10682. image: {
  10683. source: "./media/characters/fleta/back.svg",
  10684. extra: 835 / 803
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Micro",
  10691. height: math.unit(5, "cm"),
  10692. default: true
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(225, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/dominic/front.svg",
  10705. extra: 1770 / 1620,
  10706. bottom: 0.025
  10707. }
  10708. },
  10709. back: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(225, "lb"),
  10712. name: "Back",
  10713. image: {
  10714. source: "./media/characters/dominic/back.svg",
  10715. extra: 1745 / 1620,
  10716. bottom: 0.065
  10717. }
  10718. },
  10719. },
  10720. [
  10721. {
  10722. name: "Nano",
  10723. height: math.unit(0.1, "mm")
  10724. },
  10725. {
  10726. name: "Micro-",
  10727. height: math.unit(1, "mm")
  10728. },
  10729. {
  10730. name: "Micro",
  10731. height: math.unit(4, "inches")
  10732. },
  10733. {
  10734. name: "Normal",
  10735. height: math.unit(6 + 4 / 12, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Macro",
  10740. height: math.unit(115, "feet")
  10741. },
  10742. {
  10743. name: "Macro+",
  10744. height: math.unit(955, "feet")
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(8990, "feet")
  10749. },
  10750. {
  10751. name: "Gigmacro",
  10752. height: math.unit(9310, "miles")
  10753. },
  10754. {
  10755. name: "Teramacro",
  10756. height: math.unit(1567005010, "miles")
  10757. },
  10758. {
  10759. name: "Examacro",
  10760. height: math.unit(1425, "parsecs")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(400, "feet"),
  10769. weight: math.unit(44444444, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/major-colonel/front.svg"
  10773. }
  10774. },
  10775. back: {
  10776. height: math.unit(400, "feet"),
  10777. weight: math.unit(44444444, "lb"),
  10778. name: "Back",
  10779. image: {
  10780. source: "./media/characters/major-colonel/back.svg"
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(400, "feet"),
  10788. default: true
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10794. {
  10795. catFront: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(120, "lb"),
  10798. name: "Front (Cat Side)",
  10799. image: {
  10800. source: "./media/characters/axel-lycan/cat-front.svg",
  10801. extra: 430 / 402,
  10802. bottom: 43 / 472.35
  10803. }
  10804. },
  10805. catBack: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(120, "lb"),
  10808. name: "Back (Cat Side)",
  10809. image: {
  10810. source: "./media/characters/axel-lycan/cat-back.svg",
  10811. extra: 447 / 419,
  10812. bottom: 23.3 / 469
  10813. }
  10814. },
  10815. wolfFront: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(120, "lb"),
  10818. name: "Front (Wolf Side)",
  10819. image: {
  10820. source: "./media/characters/axel-lycan/wolf-front.svg",
  10821. extra: 485 / 456,
  10822. bottom: 19 / 504
  10823. }
  10824. },
  10825. wolfBack: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(120, "lb"),
  10828. name: "Back (Wolf Side)",
  10829. image: {
  10830. source: "./media/characters/axel-lycan/wolf-back.svg",
  10831. extra: 475 / 438,
  10832. bottom: 39.2 / 514
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(1, "km"),
  10840. default: true
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(5 + 9 / 12, "feet"),
  10849. weight: math.unit(175, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/vanrel-hyena/front.svg",
  10853. extra: 1086 / 1010,
  10854. bottom: 0.04
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(5 + 9 / 12, "feet"),
  10862. default: true
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(103, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/abbott-absol/front.svg",
  10875. extra: 2010 / 1842
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Megamicro",
  10882. height: math.unit(0.1, "mm")
  10883. },
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(1, "inch")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(6, "feet"),
  10891. default: true
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(6, "feet"),
  10900. weight: math.unit(264, "lb"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/hector/front.svg",
  10904. extra: 2280 / 2130,
  10905. bottom: 0.07
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(12.25, "foot"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(160, "feet")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(150, "lb"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/sal/front.svg",
  10930. extra: 1846 / 1699,
  10931. bottom: 0.04
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(10, "miles"),
  10939. default: true
  10940. },
  10941. ]
  10942. ))
  10943. characterMakers.push(() => makeCharacter(
  10944. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10945. {
  10946. front: {
  10947. height: math.unit(3, "meters"),
  10948. weight: math.unit(450, "kg"),
  10949. name: "front",
  10950. image: {
  10951. source: "./media/characters/ranger/front.svg",
  10952. extra: 2401 / 2243,
  10953. bottom: 0.05
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(3, "meters"),
  10961. default: true
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(14, "feet"),
  10970. weight: math.unit(800, "kg"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/theresa/front.svg",
  10974. extra: 3575 / 3346,
  10975. bottom: 0.03
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(14, "feet"),
  10983. default: true
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10989. {
  10990. front: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(3, "kg"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/ine/front.svg",
  10996. extra: 678 / 539,
  10997. bottom: 0.023
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(2.265, "feet"),
  11005. default: true
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(5, "feet"),
  11014. weight: math.unit(30, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/vial/front.svg",
  11018. extra: 1365 / 1277,
  11019. bottom: 0.04
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(5, "feet"),
  11027. default: true
  11028. },
  11029. ]
  11030. ))
  11031. characterMakers.push(() => makeCharacter(
  11032. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11033. {
  11034. side: {
  11035. height: math.unit(3.4, "meters"),
  11036. weight: math.unit(1000, "lb"),
  11037. name: "Side",
  11038. image: {
  11039. source: "./media/characters/rovoska/side.svg",
  11040. extra: 4403 / 1515
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(3.4, "meters"),
  11048. default: true
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(8, "feet"),
  11057. weight: math.unit(315, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/gunner-rotthbauer/front.svg"
  11061. }
  11062. },
  11063. back: {
  11064. height: math.unit(8, "feet"),
  11065. weight: math.unit(315, "lb"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/gunner-rotthbauer/back.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(3.5, "inches")
  11076. },
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(8, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(250, "feet")
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(1, "AU")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(5 + 5 / 12, "feet"),
  11097. weight: math.unit(140, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/allatia/front.svg",
  11101. extra: 1227 / 1180,
  11102. bottom: 0.027
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(5 + 5 / 12, "feet")
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(250, "feet"),
  11114. default: true
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(8, "miles")
  11119. }
  11120. ]
  11121. ))
  11122. characterMakers.push(() => makeCharacter(
  11123. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11124. {
  11125. front: {
  11126. height: math.unit(6, "feet"),
  11127. weight: math.unit(120, "lb"),
  11128. name: "Front",
  11129. image: {
  11130. source: "./media/characters/tene/front.svg",
  11131. extra: 814/750,
  11132. bottom: 36/850
  11133. }
  11134. },
  11135. stomping: {
  11136. height: math.unit(2.025, "meters"),
  11137. weight: math.unit(120, "lb"),
  11138. name: "Stomping",
  11139. image: {
  11140. source: "./media/characters/tene/stomping.svg",
  11141. extra: 885/821,
  11142. bottom: 15/900
  11143. }
  11144. },
  11145. sitting: {
  11146. height: math.unit(1, "meter"),
  11147. weight: math.unit(120, "lb"),
  11148. name: "Sitting",
  11149. image: {
  11150. source: "./media/characters/tene/sitting.svg",
  11151. extra: 396/366,
  11152. bottom: 79/475
  11153. }
  11154. },
  11155. smiling: {
  11156. height: math.unit(1.2, "feet"),
  11157. name: "Smiling",
  11158. image: {
  11159. source: "./media/characters/tene/smiling.svg",
  11160. extra: 1364/1071,
  11161. bottom: 0/1364
  11162. }
  11163. },
  11164. smug: {
  11165. height: math.unit(1.3, "feet"),
  11166. name: "Smug",
  11167. image: {
  11168. source: "./media/characters/tene/smug.svg",
  11169. extra: 1323/1082,
  11170. bottom: 0/1323
  11171. }
  11172. },
  11173. feral: {
  11174. height: math.unit(3.9, "feet"),
  11175. weight: math.unit(250, "lb"),
  11176. name: "Feral",
  11177. image: {
  11178. source: "./media/characters/tene/feral.svg",
  11179. extra: 717 / 458,
  11180. bottom: 0.179
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(6, "feet")
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(300, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(5, "miles")
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11202. {
  11203. side: {
  11204. height: math.unit(6, "feet"),
  11205. name: "Side",
  11206. image: {
  11207. source: "./media/characters/evander/side.svg",
  11208. extra: 877 / 477
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(0.83, "meters"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(12, "feet"),
  11225. weight: math.unit(1000, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11229. extra: 1762 / 1611
  11230. }
  11231. },
  11232. back: {
  11233. height: math.unit(12, "feet"),
  11234. weight: math.unit(1000, "lb"),
  11235. name: "Back",
  11236. image: {
  11237. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11238. extra: 1762 / 1611
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(12, "feet"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Kaiju",
  11250. height: math.unit(150, "feet")
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11256. {
  11257. front: {
  11258. height: math.unit(6, "feet"),
  11259. weight: math.unit(150, "lb"),
  11260. name: "Front",
  11261. image: {
  11262. source: "./media/characters/zero-alurus/front.svg"
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/zero-alurus/back.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(5 + 10 / 12, "feet")
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(60, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Macro+",
  11286. height: math.unit(450, "feet")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(200, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/mega-shi/front.svg",
  11299. extra: 1279 / 1250,
  11300. bottom: 0.02
  11301. }
  11302. },
  11303. back: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(200, "lb"),
  11306. name: "Back",
  11307. image: {
  11308. source: "./media/characters/mega-shi/back.svg",
  11309. extra: 1279 / 1250,
  11310. bottom: 0.02
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(16 + 6 / 12, "feet")
  11318. },
  11319. {
  11320. name: "Third Dimension",
  11321. height: math.unit(40, "meters")
  11322. },
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(660, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(10, "miles")
  11331. },
  11332. {
  11333. name: "Planetary Launch",
  11334. height: math.unit(500, "miles")
  11335. },
  11336. {
  11337. name: "Interstellar",
  11338. height: math.unit(1e9, "miles")
  11339. },
  11340. {
  11341. name: "Leaving the Universe",
  11342. height: math.unit(1, "gigaparsec")
  11343. },
  11344. {
  11345. name: "Travelling Universes",
  11346. height: math.unit(30e15, "parsecs")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(5 + 4/12, "feet"),
  11355. weight: math.unit(120, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/odyssey/front.svg",
  11359. extra: 1747/1571,
  11360. bottom: 47/1794
  11361. }
  11362. },
  11363. side: {
  11364. height: math.unit(5.1, "feet"),
  11365. weight: math.unit(120, "lb"),
  11366. name: "Side",
  11367. image: {
  11368. source: "./media/characters/odyssey/side.svg",
  11369. extra: 1847/1619,
  11370. bottom: 47/1894
  11371. }
  11372. },
  11373. lounging: {
  11374. height: math.unit(1.464, "feet"),
  11375. weight: math.unit(120, "lb"),
  11376. name: "Lounging",
  11377. image: {
  11378. source: "./media/characters/odyssey/lounging.svg",
  11379. extra: 1235/837,
  11380. bottom: 551/1786
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(5 + 4 / 12, "feet")
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(1, "km")
  11392. },
  11393. {
  11394. name: "Megamacro",
  11395. height: math.unit(3000, "km")
  11396. },
  11397. {
  11398. name: "Gigamacro",
  11399. height: math.unit(1, "AU"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Omniversal",
  11404. height: math.unit(100e14, "lightyears")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(5 + 10/12, "feet"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/mekuto/front.svg",
  11416. extra: 875/835,
  11417. bottom: 46/921
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Minimicro",
  11424. height: math.unit(0.2, "inches")
  11425. },
  11426. {
  11427. name: "Micro",
  11428. height: math.unit(1.5, "inches")
  11429. },
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(5 + 10 / 12, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Minimacro",
  11437. height: math.unit(17 + 9 / 12, "feet")
  11438. },
  11439. {
  11440. name: "Macro",
  11441. height: math.unit(177.5, "feet")
  11442. },
  11443. {
  11444. name: "Megamacro",
  11445. height: math.unit(152, "miles")
  11446. },
  11447. ]
  11448. ))
  11449. characterMakers.push(() => makeCharacter(
  11450. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11451. {
  11452. front: {
  11453. height: math.unit(6.5, "inches"),
  11454. weight: math.unit(13, "oz"),
  11455. name: "Front",
  11456. image: {
  11457. source: "./media/characters/dafydd-tomos/front.svg",
  11458. extra: 2990 / 2603,
  11459. bottom: 0.03
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Micro",
  11466. height: math.unit(6.5, "inches"),
  11467. default: true
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/splinter/front.svg",
  11480. extra: 2990 / 2882,
  11481. bottom: 0.04
  11482. }
  11483. },
  11484. back: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Back",
  11488. image: {
  11489. source: "./media/characters/splinter/back.svg",
  11490. extra: 2990 / 2882,
  11491. bottom: 0.04
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(6, "feet")
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(230, "meters"),
  11503. default: true
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11509. {
  11510. front: {
  11511. height: math.unit(4 + 10 / 12, "feet"),
  11512. weight: math.unit(480, "lb"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/snow-gabumon/front.svg",
  11516. extra: 1140 / 963,
  11517. bottom: 0.058
  11518. }
  11519. },
  11520. back: {
  11521. height: math.unit(4 + 10 / 12, "feet"),
  11522. weight: math.unit(480, "lb"),
  11523. name: "Back",
  11524. image: {
  11525. source: "./media/characters/snow-gabumon/back.svg",
  11526. extra: 1115 / 962,
  11527. bottom: 0.041
  11528. }
  11529. },
  11530. frontUndresed: {
  11531. height: math.unit(4 + 10 / 12, "feet"),
  11532. weight: math.unit(480, "lb"),
  11533. name: "Front (Undressed)",
  11534. image: {
  11535. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11536. extra: 1061 / 960,
  11537. bottom: 0.045
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(1, "inch")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(4 + 10 / 12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(200, "feet")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(120, "miles")
  11558. },
  11559. {
  11560. name: "Gigamacro",
  11561. height: math.unit(9800, "miles")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(1.7, "meters"),
  11570. weight: math.unit(140, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/moody/front.svg",
  11574. extra: 3226 / 3007,
  11575. bottom: 0.087
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Micro",
  11582. height: math.unit(1, "mm")
  11583. },
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(1.7, "meters"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(80, "meters")
  11592. },
  11593. {
  11594. name: "Macro+",
  11595. height: math.unit(500, "meters")
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11601. {
  11602. front: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Front",
  11606. image: {
  11607. source: "./media/characters/zyas/front.svg",
  11608. extra: 1180 / 1120,
  11609. bottom: 0.045
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Normal",
  11616. height: math.unit(10, "feet"),
  11617. default: true
  11618. },
  11619. {
  11620. name: "Macro",
  11621. height: math.unit(500, "feet")
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(5, "miles")
  11626. },
  11627. {
  11628. name: "Teramacro",
  11629. height: math.unit(150000, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/cuon/front.svg",
  11642. extra: 1390 / 1320,
  11643. bottom: 0.008
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Micro",
  11650. height: math.unit(3, "inches")
  11651. },
  11652. {
  11653. name: "Normal",
  11654. height: math.unit(18 + 9 / 12, "feet"),
  11655. default: true
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(360, "feet")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(360, "miles")
  11664. },
  11665. ]
  11666. ))
  11667. characterMakers.push(() => makeCharacter(
  11668. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11669. {
  11670. front: {
  11671. height: math.unit(2.4, "meters"),
  11672. weight: math.unit(70, "kg"),
  11673. name: "Front",
  11674. image: {
  11675. source: "./media/characters/nyanuxk/front.svg",
  11676. extra: 1172 / 1084,
  11677. bottom: 0.065
  11678. }
  11679. },
  11680. side: {
  11681. height: math.unit(2.4, "meters"),
  11682. weight: math.unit(70, "kg"),
  11683. name: "Side",
  11684. image: {
  11685. source: "./media/characters/nyanuxk/side.svg",
  11686. extra: 1190 / 1132,
  11687. bottom: 0.007
  11688. }
  11689. },
  11690. back: {
  11691. height: math.unit(2.4, "meters"),
  11692. weight: math.unit(70, "kg"),
  11693. name: "Back",
  11694. image: {
  11695. source: "./media/characters/nyanuxk/back.svg",
  11696. extra: 1200 / 1141,
  11697. bottom: 0.015
  11698. }
  11699. },
  11700. foot: {
  11701. height: math.unit(0.52, "meters"),
  11702. name: "Foot",
  11703. image: {
  11704. source: "./media/characters/nyanuxk/foot.svg"
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Micro",
  11711. height: math.unit(2, "cm")
  11712. },
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(2.4, "meters"),
  11716. default: true
  11717. },
  11718. {
  11719. name: "Smaller Macro",
  11720. height: math.unit(120, "meters")
  11721. },
  11722. {
  11723. name: "Bigger Macro",
  11724. height: math.unit(1.2, "km")
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(15, "kilometers")
  11729. },
  11730. {
  11731. name: "Gigamacro",
  11732. height: math.unit(2000, "km")
  11733. },
  11734. {
  11735. name: "Teramacro",
  11736. height: math.unit(500000, "km")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11742. {
  11743. side: {
  11744. height: math.unit(6, "feet"),
  11745. name: "Side",
  11746. image: {
  11747. source: "./media/characters/ailbhe/side.svg",
  11748. extra: 757 / 464,
  11749. bottom: 0.041
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(1.07, "meters"),
  11757. default: true
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(120, "kg"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/zevulfius/front.svg",
  11770. extra: 965 / 903
  11771. }
  11772. },
  11773. side: {
  11774. height: math.unit(6, "feet"),
  11775. weight: math.unit(120, "kg"),
  11776. name: "Side",
  11777. image: {
  11778. source: "./media/characters/zevulfius/side.svg",
  11779. extra: 939 / 900
  11780. }
  11781. },
  11782. back: {
  11783. height: math.unit(6, "feet"),
  11784. weight: math.unit(120, "kg"),
  11785. name: "Back",
  11786. image: {
  11787. source: "./media/characters/zevulfius/back.svg",
  11788. extra: 918 / 854,
  11789. bottom: 0.005
  11790. }
  11791. },
  11792. foot: {
  11793. height: math.unit(6 / 3.72, "feet"),
  11794. name: "Foot",
  11795. image: {
  11796. source: "./media/characters/zevulfius/foot.svg"
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Macro",
  11803. height: math.unit(750, "meters")
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(20, "km"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Gigamacro",
  11812. height: math.unit(2000, "km")
  11813. },
  11814. {
  11815. name: "Teramacro",
  11816. height: math.unit(250000, "km")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(100, "feet"),
  11825. weight: math.unit(350, "kg"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/rikes/front.svg",
  11829. extra: 1565 / 1483,
  11830. bottom: 0.017
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(100, "feet"),
  11838. default: true
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(8, "feet"),
  11847. weight: math.unit(356, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/adam-silver-mane/front.svg",
  11851. extra: 1036/937,
  11852. bottom: 63/1099
  11853. }
  11854. },
  11855. side: {
  11856. height: math.unit(8, "feet"),
  11857. weight: math.unit(356, "lb"),
  11858. name: "Side",
  11859. image: {
  11860. source: "./media/characters/adam-silver-mane/side.svg",
  11861. extra: 997/901,
  11862. bottom: 59/1056
  11863. }
  11864. },
  11865. frontNsfw: {
  11866. height: math.unit(8, "feet"),
  11867. weight: math.unit(356, "lb"),
  11868. name: "Front (NSFW)",
  11869. image: {
  11870. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11871. extra: 1036/937,
  11872. bottom: 63/1099
  11873. }
  11874. },
  11875. sideNsfw: {
  11876. height: math.unit(8, "feet"),
  11877. weight: math.unit(356, "lb"),
  11878. name: "Side (NSFW)",
  11879. image: {
  11880. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11881. extra: 997/901,
  11882. bottom: 59/1056
  11883. }
  11884. },
  11885. dick: {
  11886. height: math.unit(2.1, "feet"),
  11887. name: "Dick",
  11888. image: {
  11889. source: "./media/characters/adam-silver-mane/dick.svg"
  11890. }
  11891. },
  11892. taur: {
  11893. height: math.unit(16, "feet"),
  11894. weight: math.unit(1500, "kg"),
  11895. name: "Taur",
  11896. image: {
  11897. source: "./media/characters/adam-silver-mane/taur.svg",
  11898. extra: 1713 / 1571,
  11899. bottom: 0.01
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Normal",
  11906. height: math.unit(8, "feet")
  11907. },
  11908. {
  11909. name: "Minimacro",
  11910. height: math.unit(80, "feet")
  11911. },
  11912. {
  11913. name: "MDA",
  11914. height: math.unit(80, "meters")
  11915. },
  11916. {
  11917. name: "Macro",
  11918. height: math.unit(800, "feet"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Megamacro",
  11923. height: math.unit(8000, "feet")
  11924. },
  11925. {
  11926. name: "Gigamacro",
  11927. height: math.unit(800, "miles")
  11928. },
  11929. {
  11930. name: "Teramacro",
  11931. height: math.unit(80000, "miles")
  11932. },
  11933. {
  11934. name: "Celestial",
  11935. height: math.unit(8e6, "miles")
  11936. },
  11937. {
  11938. name: "Star Dragon",
  11939. height: math.unit(800000, "parsecs")
  11940. },
  11941. {
  11942. name: "Godly",
  11943. height: math.unit(800, "teraparsecs")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/ky'owin/front.svg",
  11956. extra: 3862/3053,
  11957. bottom: 74/3936
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(6 + 8 / 12, "feet")
  11965. },
  11966. {
  11967. name: "Large",
  11968. height: math.unit(68, "feet")
  11969. },
  11970. {
  11971. name: "Macro",
  11972. height: math.unit(132, "feet")
  11973. },
  11974. {
  11975. name: "Macro+",
  11976. height: math.unit(340, "feet")
  11977. },
  11978. {
  11979. name: "Macro++",
  11980. height: math.unit(680, "feet"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(1, "mile")
  11986. },
  11987. {
  11988. name: "Megamacro+",
  11989. height: math.unit(10, "miles")
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11995. {
  11996. front: {
  11997. height: math.unit(4, "feet"),
  11998. weight: math.unit(50, "lb"),
  11999. name: "Front",
  12000. image: {
  12001. source: "./media/characters/mal/front.svg",
  12002. extra: 785 / 724,
  12003. bottom: 0.07
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Micro",
  12010. height: math.unit(4, "inches")
  12011. },
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(4, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Macro",
  12019. height: math.unit(200, "feet")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(150, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/jordan-deware/front.svg",
  12032. extra: 1191 / 1012
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Nano",
  12039. height: math.unit(0.01, "mm")
  12040. },
  12041. {
  12042. name: "Minimicro",
  12043. height: math.unit(1, "mm")
  12044. },
  12045. {
  12046. name: "Micro",
  12047. height: math.unit(0.5, "inches")
  12048. },
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(4, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Minimacro",
  12056. height: math.unit(40, "meters")
  12057. },
  12058. {
  12059. name: "Small Macro",
  12060. height: math.unit(400, "meters")
  12061. },
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(4, "miles")
  12065. },
  12066. {
  12067. name: "Megamacro",
  12068. height: math.unit(40, "miles")
  12069. },
  12070. {
  12071. name: "Megamacro+",
  12072. height: math.unit(400, "miles")
  12073. },
  12074. {
  12075. name: "Gigamacro",
  12076. height: math.unit(400000, "miles")
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12082. {
  12083. side: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Side",
  12087. image: {
  12088. source: "./media/characters/kimiko/side.svg",
  12089. extra: 600 / 358
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(15, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(220, "feet")
  12102. },
  12103. {
  12104. name: "Macro+",
  12105. height: math.unit(1450, "feet")
  12106. },
  12107. {
  12108. name: "Megamacro",
  12109. height: math.unit(11500, "feet")
  12110. },
  12111. {
  12112. name: "Gigamacro",
  12113. height: math.unit(9500, "miles")
  12114. },
  12115. {
  12116. name: "Teramacro",
  12117. height: math.unit(2208005005, "miles")
  12118. },
  12119. {
  12120. name: "Examacro",
  12121. height: math.unit(2750, "parsecs")
  12122. },
  12123. {
  12124. name: "Zettamacro",
  12125. height: math.unit(101500, "parsecs")
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(70, "kg"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/andrew-sleepy/front.svg"
  12138. }
  12139. },
  12140. side: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(70, "kg"),
  12143. name: "Side",
  12144. image: {
  12145. source: "./media/characters/andrew-sleepy/side.svg"
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Micro",
  12152. height: math.unit(1, "mm"),
  12153. default: true
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/judio/front.svg",
  12166. extra: 1258 / 1110
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(5 + 6 / 12, "feet")
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(1000, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(10, "miles")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12188. {
  12189. frontDressed: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(68, "kg"),
  12192. name: "Front (Dressed)",
  12193. image: {
  12194. source: "./media/characters/nomaxice/front-dressed.svg",
  12195. extra: 1137/824,
  12196. bottom: 74/1211
  12197. }
  12198. },
  12199. frontShorts: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(68, "kg"),
  12202. name: "Front (Shorts)",
  12203. image: {
  12204. source: "./media/characters/nomaxice/front-shorts.svg",
  12205. extra: 1137/824,
  12206. bottom: 74/1211
  12207. }
  12208. },
  12209. back: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(68, "kg"),
  12212. name: "Back",
  12213. image: {
  12214. source: "./media/characters/nomaxice/back.svg",
  12215. extra: 822/786,
  12216. bottom: 39/861
  12217. }
  12218. },
  12219. hand: {
  12220. height: math.unit(0.565, "feet"),
  12221. name: "Hand",
  12222. image: {
  12223. source: "./media/characters/nomaxice/hand.svg"
  12224. }
  12225. },
  12226. foot: {
  12227. height: math.unit(1, "feet"),
  12228. name: "Foot",
  12229. image: {
  12230. source: "./media/characters/nomaxice/foot.svg"
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(8, "cm")
  12238. },
  12239. {
  12240. name: "Norm",
  12241. height: math.unit(1.82, "m")
  12242. },
  12243. {
  12244. name: "Norm+",
  12245. height: math.unit(8.8, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Big",
  12250. height: math.unit(8, "meters")
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(18, "meters")
  12255. },
  12256. {
  12257. name: "Macro+",
  12258. height: math.unit(88, "meters")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(12, "feet"),
  12267. weight: math.unit(1.5, "tons"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/dydros/front.svg",
  12271. extra: 863 / 800,
  12272. bottom: 0.015
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(12, "feet"),
  12277. weight: math.unit(1.5, "tons"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/dydros/back.svg",
  12281. extra: 900 / 843,
  12282. bottom: 0.005
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Normal",
  12289. height: math.unit(12, "feet"),
  12290. default: true
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(100, "kg"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/riggi/front.svg",
  12303. extra: 5787 / 5303
  12304. }
  12305. },
  12306. hyper: {
  12307. height: math.unit(6 * 5 / 3, "feet"),
  12308. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12309. name: "Hyper",
  12310. image: {
  12311. source: "./media/characters/riggi/hyper.svg",
  12312. extra: 3595 / 3485
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Small Macro",
  12319. height: math.unit(50, "feet")
  12320. },
  12321. {
  12322. name: "Default",
  12323. height: math.unit(200, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Loom",
  12328. height: math.unit(10000, "feet")
  12329. },
  12330. {
  12331. name: "Cruising Altitude",
  12332. height: math.unit(30000, "feet")
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(100, "miles")
  12337. },
  12338. {
  12339. name: "Continent Sized",
  12340. height: math.unit(2800, "miles")
  12341. },
  12342. {
  12343. name: "Earth Sized",
  12344. height: math.unit(8000, "miles")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(250, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/alexi/front.svg",
  12357. extra: 3483 / 3291,
  12358. bottom: 0.04
  12359. }
  12360. },
  12361. back: {
  12362. height: math.unit(6, "feet"),
  12363. weight: math.unit(250, "lb"),
  12364. name: "Back",
  12365. image: {
  12366. source: "./media/characters/alexi/back.svg",
  12367. extra: 3533 / 3356,
  12368. bottom: 0.021
  12369. }
  12370. },
  12371. frontTransforming: {
  12372. height: math.unit(8.58, "feet"),
  12373. weight: math.unit(1300, "lb"),
  12374. name: "Transforming",
  12375. image: {
  12376. source: "./media/characters/alexi/front-transforming.svg",
  12377. extra: 437 / 409,
  12378. bottom: 19 / 458.66
  12379. }
  12380. },
  12381. frontTransformed: {
  12382. height: math.unit(12.5, "feet"),
  12383. weight: math.unit(4000, "lb"),
  12384. name: "Transformed",
  12385. image: {
  12386. source: "./media/characters/alexi/front-transformed.svg",
  12387. extra: 639 / 614,
  12388. bottom: 30.55 / 671
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Normal",
  12395. height: math.unit(14, "feet"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Minimacro",
  12400. height: math.unit(30, "meters")
  12401. },
  12402. {
  12403. name: "Macro",
  12404. height: math.unit(500, "meters")
  12405. },
  12406. {
  12407. name: "Megamacro",
  12408. height: math.unit(9000, "km")
  12409. },
  12410. {
  12411. name: "Teramacro",
  12412. height: math.unit(384000, "km")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/kayroo/front.svg",
  12425. extra: 1153 / 1038,
  12426. bottom: 0.06
  12427. }
  12428. },
  12429. foot: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Foot",
  12433. image: {
  12434. source: "./media/characters/kayroo/foot.svg"
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(8, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Minimacro",
  12446. height: math.unit(250, "feet")
  12447. },
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(2800, "feet")
  12451. },
  12452. {
  12453. name: "Megamacro",
  12454. height: math.unit(5200, "feet")
  12455. },
  12456. {
  12457. name: "Gigamacro",
  12458. height: math.unit(27000, "feet")
  12459. },
  12460. {
  12461. name: "Omega",
  12462. height: math.unit(45000, "feet")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(18, "feet"),
  12471. weight: math.unit(5800, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/rhys/front.svg",
  12475. extra: 3386 / 3090,
  12476. bottom: 0.07
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(18, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Working Size",
  12488. height: math.unit(200, "feet")
  12489. },
  12490. {
  12491. name: "Demolition Size",
  12492. height: math.unit(2000, "feet")
  12493. },
  12494. {
  12495. name: "Maximum Licensed Size",
  12496. height: math.unit(5, "miles")
  12497. },
  12498. {
  12499. name: "Maximum Observed Size",
  12500. height: math.unit(10, "yottameters")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(250, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/toto/front.svg",
  12513. extra: 527 / 479,
  12514. bottom: 0.05
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Micro",
  12521. height: math.unit(3, "feet")
  12522. },
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(10, "feet")
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(150, "feet"),
  12530. default: true
  12531. },
  12532. {
  12533. name: "Megamacro",
  12534. height: math.unit(1200, "feet")
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "King", species: ["lion"], tags: ["anthro"] },
  12540. {
  12541. back: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(150, "lb"),
  12544. name: "Back",
  12545. image: {
  12546. source: "./media/characters/king/back.svg"
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Micro",
  12553. height: math.unit(2, "inches")
  12554. },
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(8, "feet")
  12558. },
  12559. {
  12560. name: "Macro",
  12561. height: math.unit(200, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(50, "miles")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(11, "feet"),
  12575. weight: math.unit(1400, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/cordite/front.svg",
  12579. extra: 1919/1827,
  12580. bottom: 40/1959
  12581. }
  12582. },
  12583. side: {
  12584. height: math.unit(11, "feet"),
  12585. weight: math.unit(1400, "lb"),
  12586. name: "Side",
  12587. image: {
  12588. source: "./media/characters/cordite/side.svg",
  12589. extra: 1908/1793,
  12590. bottom: 38/1946
  12591. }
  12592. },
  12593. back: {
  12594. height: math.unit(11, "feet"),
  12595. weight: math.unit(1400, "lb"),
  12596. name: "Back",
  12597. image: {
  12598. source: "./media/characters/cordite/back.svg",
  12599. extra: 1938/1837,
  12600. bottom: 10/1948
  12601. }
  12602. },
  12603. feral: {
  12604. height: math.unit(2, "feet"),
  12605. weight: math.unit(90, "lb"),
  12606. name: "Feral",
  12607. image: {
  12608. source: "./media/characters/cordite/feral.svg",
  12609. extra: 1260 / 755,
  12610. bottom: 0.05
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(11, "feet"),
  12618. default: true
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6, "feet"),
  12627. weight: math.unit(150, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/pianostrong/front.svg",
  12631. extra: 6577 / 6254,
  12632. bottom: 0.02
  12633. }
  12634. },
  12635. side: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Side",
  12639. image: {
  12640. source: "./media/characters/pianostrong/side.svg",
  12641. extra: 6106 / 5730
  12642. }
  12643. },
  12644. back: {
  12645. height: math.unit(6, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Back",
  12648. image: {
  12649. source: "./media/characters/pianostrong/back.svg",
  12650. extra: 6085 / 5733,
  12651. bottom: 0.01
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(100, "feet")
  12659. },
  12660. {
  12661. name: "Macro+",
  12662. height: math.unit(300, "feet"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Macro++",
  12667. height: math.unit(1000, "feet")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/kona/front.svg",
  12680. extra: 2960 / 2629,
  12681. bottom: 0.005
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Normal",
  12688. height: math.unit(11 + 8 / 12, "feet")
  12689. },
  12690. {
  12691. name: "Macro",
  12692. height: math.unit(850, "feet"),
  12693. default: true
  12694. },
  12695. {
  12696. name: "Macro+",
  12697. height: math.unit(1.5, "km"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(80, "miles")
  12703. },
  12704. {
  12705. name: "Gigamacro",
  12706. height: math.unit(3500, "miles")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. side: {
  12714. height: math.unit(1.9, "meters"),
  12715. weight: math.unit(326, "kg"),
  12716. name: "Side",
  12717. image: {
  12718. source: "./media/characters/levi/side.svg",
  12719. extra: 1704 / 1334,
  12720. bottom: 0.02
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Normal",
  12727. height: math.unit(1.9, "meters"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(20, "meters")
  12733. },
  12734. {
  12735. name: "Macro+",
  12736. height: math.unit(200, "meters")
  12737. },
  12738. {
  12739. name: "Megamacro",
  12740. height: math.unit(2, "km")
  12741. },
  12742. {
  12743. name: "Megamacro+",
  12744. height: math.unit(20, "km")
  12745. },
  12746. {
  12747. name: "Gigamacro",
  12748. height: math.unit(2500, "km")
  12749. },
  12750. {
  12751. name: "Gigamacro+",
  12752. height: math.unit(120000, "km")
  12753. },
  12754. {
  12755. name: "Teramacro",
  12756. height: math.unit(7.77e6, "km")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6 + 4/12, "feet"),
  12765. weight: math.unit(190, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/bmc/front.svg",
  12769. extra: 1626/1472,
  12770. bottom: 79/1705
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(6 + 4/12, "feet"),
  12775. weight: math.unit(190, "lb"),
  12776. name: "Back",
  12777. image: {
  12778. source: "./media/characters/bmc/back.svg",
  12779. extra: 1640/1479,
  12780. bottom: 45/1685
  12781. }
  12782. },
  12783. frontArmor: {
  12784. height: math.unit(6 + 4/12, "feet"),
  12785. weight: math.unit(190, "lb"),
  12786. name: "Front-armor",
  12787. image: {
  12788. source: "./media/characters/bmc/front-armor.svg",
  12789. extra: 1538/1468,
  12790. bottom: 79/1617
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Human-sized",
  12797. height: math.unit(6 + 4 / 12, "feet")
  12798. },
  12799. {
  12800. name: "Interactive Size",
  12801. height: math.unit(25, "feet")
  12802. },
  12803. {
  12804. name: "Small",
  12805. height: math.unit(250, "feet")
  12806. },
  12807. {
  12808. name: "Normal",
  12809. height: math.unit(1250, "feet"),
  12810. default: true
  12811. },
  12812. {
  12813. name: "Good Day",
  12814. height: math.unit(88, "miles")
  12815. },
  12816. {
  12817. name: "Largest Measured Size",
  12818. height: math.unit(105.960, "galaxies")
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(20, "feet"),
  12827. weight: math.unit(2016, "kg"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/sven-the-kaiju/front.svg",
  12831. extra: 1277/1250,
  12832. bottom: 35/1312
  12833. }
  12834. },
  12835. mouth: {
  12836. height: math.unit(1.85, "feet"),
  12837. name: "Mouth",
  12838. image: {
  12839. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Fairy",
  12846. height: math.unit(6, "inches")
  12847. },
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(20, "feet"),
  12851. default: true
  12852. },
  12853. {
  12854. name: "Rampage",
  12855. height: math.unit(200, "feet")
  12856. },
  12857. {
  12858. name: "Archfey Forest Guardian",
  12859. height: math.unit(1, "mile")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(4, "meters"),
  12868. weight: math.unit(2, "tons"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/marik/front.svg",
  12872. extra: 1057 / 1003,
  12873. bottom: 0.08
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(4, "meters"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Macro",
  12885. height: math.unit(20, "meters")
  12886. },
  12887. {
  12888. name: "Megamacro",
  12889. height: math.unit(50, "km")
  12890. },
  12891. {
  12892. name: "Gigamacro",
  12893. height: math.unit(100, "km")
  12894. },
  12895. {
  12896. name: "Alpha Macro",
  12897. height: math.unit(7.88e7, "yottameters")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(110, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/mel/front.svg",
  12910. extra: 736 / 617,
  12911. bottom: 0.017
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Pico",
  12918. height: math.unit(3, "pm")
  12919. },
  12920. {
  12921. name: "Nano",
  12922. height: math.unit(3, "nm")
  12923. },
  12924. {
  12925. name: "Micro",
  12926. height: math.unit(0.3, "mm"),
  12927. default: true
  12928. },
  12929. {
  12930. name: "Micro+",
  12931. height: math.unit(3, "mm")
  12932. },
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(5 + 10.5 / 12, "feet")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12941. {
  12942. kaiju: {
  12943. height: math.unit(1.75, "meters"),
  12944. weight: math.unit(55, "kg"),
  12945. name: "Kaiju",
  12946. image: {
  12947. source: "./media/characters/lykonous/kaiju.svg",
  12948. extra: 1055 / 946,
  12949. bottom: 0.135
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(2.5, "meters"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Kaiju Dragon",
  12961. height: math.unit(60, "meters")
  12962. },
  12963. {
  12964. name: "Mega Kaiju",
  12965. height: math.unit(120, "km")
  12966. },
  12967. {
  12968. name: "Giga Kaiju",
  12969. height: math.unit(200, "megameters")
  12970. },
  12971. {
  12972. name: "Terra Kaiju",
  12973. height: math.unit(400, "gigameters")
  12974. },
  12975. {
  12976. name: "Kaiju Dragon God",
  12977. height: math.unit(13000, "exaparsecs")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/blü/front.svg",
  12990. extra: 1883 / 1564,
  12991. bottom: 0.031
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(13, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Big Boi",
  13003. height: math.unit(150, "meters")
  13004. },
  13005. {
  13006. name: "Mini Stomper",
  13007. height: math.unit(300, "meters")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(1000, "meters")
  13012. },
  13013. {
  13014. name: "Megamacro",
  13015. height: math.unit(11000, "meters")
  13016. },
  13017. {
  13018. name: "Gigamacro",
  13019. height: math.unit(11000, "km")
  13020. },
  13021. {
  13022. name: "Teramacro",
  13023. height: math.unit(420000, "km")
  13024. },
  13025. {
  13026. name: "Examacro",
  13027. height: math.unit(120, "parsecs")
  13028. },
  13029. {
  13030. name: "God Tho",
  13031. height: math.unit(98000000000, "parsecs")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13037. {
  13038. taurFront: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(200, "lb"),
  13041. name: "Taur (Front)",
  13042. image: {
  13043. source: "./media/characters/scales/taur-front.svg",
  13044. extra: 1,
  13045. bottom: 0.05
  13046. }
  13047. },
  13048. taurBack: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(200, "lb"),
  13051. name: "Taur (Back)",
  13052. image: {
  13053. source: "./media/characters/scales/taur-back.svg",
  13054. extra: 1,
  13055. bottom: 0.08
  13056. }
  13057. },
  13058. anthro: {
  13059. height: math.unit(6 * 7 / 12, "feet"),
  13060. weight: math.unit(100, "lb"),
  13061. name: "Anthro",
  13062. image: {
  13063. source: "./media/characters/scales/anthro.svg",
  13064. extra: 1,
  13065. bottom: 0.06
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(12, "feet"),
  13073. default: true
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/koragos/front.svg",
  13086. extra: 841 / 794,
  13087. bottom: 0.035
  13088. }
  13089. },
  13090. back: {
  13091. height: math.unit(6, "feet"),
  13092. weight: math.unit(150, "lb"),
  13093. name: "Back",
  13094. image: {
  13095. source: "./media/characters/koragos/back.svg",
  13096. extra: 841 / 810,
  13097. bottom: 0.022
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(6 + 11 / 12, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(490, "feet")
  13110. },
  13111. {
  13112. name: "Megamacro",
  13113. height: math.unit(10, "miles")
  13114. },
  13115. {
  13116. name: "Gigamacro",
  13117. height: math.unit(50, "miles")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(250, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/xylrem/front.svg",
  13130. extra: 3323 / 3050,
  13131. bottom: 0.065
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Micro",
  13138. height: math.unit(4, "feet")
  13139. },
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(16, "feet"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Macro",
  13147. height: math.unit(2720, "feet")
  13148. },
  13149. {
  13150. name: "Megamacro",
  13151. height: math.unit(25000, "miles")
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(8, "feet"),
  13160. weight: math.unit(250, "kg"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/ikideru/front.svg",
  13164. extra: 930 / 870,
  13165. bottom: 0.087
  13166. }
  13167. },
  13168. back: {
  13169. height: math.unit(8, "feet"),
  13170. weight: math.unit(250, "kg"),
  13171. name: "Back",
  13172. image: {
  13173. source: "./media/characters/ikideru/back.svg",
  13174. extra: 919 / 852,
  13175. bottom: 0.055
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Rare",
  13182. height: math.unit(8, "feet"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Playful Loom",
  13187. height: math.unit(80, "feet")
  13188. },
  13189. {
  13190. name: "City Leaner",
  13191. height: math.unit(230, "feet")
  13192. },
  13193. {
  13194. name: "Megamacro",
  13195. height: math.unit(2500, "feet")
  13196. },
  13197. {
  13198. name: "Gigamacro",
  13199. height: math.unit(26400, "feet")
  13200. },
  13201. {
  13202. name: "Tectonic Shifter",
  13203. height: math.unit(1.7, "megameters")
  13204. },
  13205. {
  13206. name: "Planet Carer",
  13207. height: math.unit(21, "megameters")
  13208. },
  13209. {
  13210. name: "God",
  13211. height: math.unit(11157.22, "parsecs")
  13212. },
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13217. {
  13218. front: {
  13219. height: math.unit(6, "feet"),
  13220. weight: math.unit(120, "lb"),
  13221. name: "Front",
  13222. image: {
  13223. source: "./media/characters/neo/front.svg"
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Micro",
  13230. height: math.unit(2, "inches"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Human Size",
  13235. height: math.unit(5 + 8 / 12, "feet")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(13 + 10 / 12, "feet"),
  13244. weight: math.unit(5320, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/chauncey-chantz/front.svg",
  13248. extra: 1587 / 1435,
  13249. bottom: 0.02
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(13 + 10 / 12, "feet"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(45, "feet")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(250, "miles")
  13266. },
  13267. {
  13268. name: "Planetary",
  13269. height: math.unit(10000, "miles")
  13270. },
  13271. {
  13272. name: "Galactic",
  13273. height: math.unit(40000, "parsecs")
  13274. },
  13275. {
  13276. name: "Universal",
  13277. height: math.unit(1, "yottameter")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13283. {
  13284. front: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(150, "lb"),
  13287. name: "Front",
  13288. image: {
  13289. source: "./media/characters/epifox/front.svg",
  13290. extra: 1,
  13291. bottom: 0.075
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(6, "inches")
  13299. },
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(12, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(3810, "feet")
  13308. },
  13309. {
  13310. name: "Megamacro",
  13311. height: math.unit(500, "miles")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(1.8796, "m"),
  13320. weight: math.unit(230, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/colin-t/front.svg",
  13324. extra: 1272 / 1193,
  13325. bottom: 0.07
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Micro",
  13332. height: math.unit(0.571, "meters")
  13333. },
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(1.8796, "meters"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Tall",
  13341. height: math.unit(4, "meters")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(67.241, "meters")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(371.856, "meters")
  13350. },
  13351. {
  13352. name: "Planetary",
  13353. height: math.unit(12631.5689, "km")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(1.85, "meters"),
  13362. weight: math.unit(80, "kg"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/matvei/front.svg",
  13366. extra: 456/447,
  13367. bottom: 8/464
  13368. }
  13369. },
  13370. back: {
  13371. height: math.unit(1.85, "meters"),
  13372. weight: math.unit(80, "kg"),
  13373. name: "Back",
  13374. image: {
  13375. source: "./media/characters/matvei/back.svg",
  13376. extra: 434/427,
  13377. bottom: 11/445
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(1.85, "meters"),
  13385. default: true
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(5 + 9 / 12, "feet"),
  13394. weight: math.unit(70, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/quincy/front.svg",
  13398. extra: 3041 / 2751
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(5 + 9 / 12, "feet"),
  13403. weight: math.unit(70, "lb"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/quincy/back.svg",
  13407. extra: 3041 / 2751
  13408. }
  13409. },
  13410. flying: {
  13411. height: math.unit(5 + 4 / 12, "feet"),
  13412. weight: math.unit(70, "lb"),
  13413. name: "Flying",
  13414. image: {
  13415. source: "./media/characters/quincy/flying.svg",
  13416. extra: 1044 / 930
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Micro",
  13423. height: math.unit(3, "cm")
  13424. },
  13425. {
  13426. name: "Normal",
  13427. height: math.unit(5 + 9 / 12, "feet")
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(200, "meters"),
  13432. default: true
  13433. },
  13434. {
  13435. name: "Megamacro",
  13436. height: math.unit(1000, "meters")
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13442. {
  13443. front: {
  13444. height: math.unit(3 + 11/12, "feet"),
  13445. weight: math.unit(50, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/vanrel/front.svg",
  13449. extra: 1104/949,
  13450. bottom: 52/1156
  13451. }
  13452. },
  13453. back: {
  13454. height: math.unit(3 + 11/12, "feet"),
  13455. weight: math.unit(50, "lb"),
  13456. name: "Back",
  13457. image: {
  13458. source: "./media/characters/vanrel/back.svg",
  13459. extra: 1119/976,
  13460. bottom: 37/1156
  13461. }
  13462. },
  13463. tome: {
  13464. height: math.unit(1.35, "feet"),
  13465. weight: math.unit(10, "lb"),
  13466. name: "Vanrel's Tome",
  13467. rename: true,
  13468. image: {
  13469. source: "./media/characters/vanrel/tome.svg"
  13470. }
  13471. },
  13472. beans: {
  13473. height: math.unit(0.89, "feet"),
  13474. name: "Beans",
  13475. image: {
  13476. source: "./media/characters/vanrel/beans.svg"
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(3 + 11/12, "feet"),
  13484. default: true
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(7 + 5 / 12, "feet"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/kuiper-vanrel/front.svg",
  13496. extra: 1219/1169,
  13497. bottom: 69/1288
  13498. }
  13499. },
  13500. back: {
  13501. height: math.unit(7 + 5 / 12, "feet"),
  13502. name: "Back",
  13503. image: {
  13504. source: "./media/characters/kuiper-vanrel/back.svg",
  13505. extra: 1236/1193,
  13506. bottom: 27/1263
  13507. }
  13508. },
  13509. foot: {
  13510. height: math.unit(0.55, "meters"),
  13511. name: "Foot",
  13512. image: {
  13513. source: "./media/characters/kuiper-vanrel/foot.svg",
  13514. }
  13515. },
  13516. battle: {
  13517. height: math.unit(6.824, "feet"),
  13518. name: "Battle",
  13519. image: {
  13520. source: "./media/characters/kuiper-vanrel/battle.svg",
  13521. extra: 1466 / 1327,
  13522. bottom: 29 / 1492.5
  13523. }
  13524. },
  13525. meerkui: {
  13526. height: math.unit(18, "inches"),
  13527. name: "Meerkui",
  13528. image: {
  13529. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13530. extra: 1354/1289,
  13531. bottom: 69/1423
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(7 + 5 / 12, "feet"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(8 + 5 / 12, "feet"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/keset-vanrel/front.svg",
  13551. extra: 1231/1148,
  13552. bottom: 82/1313
  13553. }
  13554. },
  13555. back: {
  13556. height: math.unit(8 + 5 / 12, "feet"),
  13557. name: "Back",
  13558. image: {
  13559. source: "./media/characters/keset-vanrel/back.svg",
  13560. extra: 1240/1174,
  13561. bottom: 33/1273
  13562. }
  13563. },
  13564. hand: {
  13565. height: math.unit(0.6, "meters"),
  13566. name: "Hand",
  13567. image: {
  13568. source: "./media/characters/keset-vanrel/hand.svg"
  13569. }
  13570. },
  13571. foot: {
  13572. height: math.unit(0.94978, "meters"),
  13573. name: "Foot",
  13574. image: {
  13575. source: "./media/characters/keset-vanrel/foot.svg"
  13576. }
  13577. },
  13578. battle: {
  13579. height: math.unit(7.408, "feet"),
  13580. name: "Battle",
  13581. image: {
  13582. source: "./media/characters/keset-vanrel/battle.svg",
  13583. extra: 1890 / 1386,
  13584. bottom: 73.28 / 1970
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(8 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/neos/front.svg",
  13605. extra: 1696 / 992,
  13606. bottom: 0.14
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Normal",
  13613. height: math.unit(54, "cm"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Macro",
  13618. height: math.unit(100, "m")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(10, "km")
  13623. },
  13624. {
  13625. name: "Megamacro+",
  13626. height: math.unit(100, "km")
  13627. },
  13628. {
  13629. name: "Gigamacro",
  13630. height: math.unit(100, "Mm")
  13631. },
  13632. {
  13633. name: "Teramacro",
  13634. height: math.unit(100, "Gm")
  13635. },
  13636. {
  13637. name: "Examacro",
  13638. height: math.unit(100, "Em")
  13639. },
  13640. {
  13641. name: "Godly",
  13642. height: math.unit(10000, "Ym")
  13643. },
  13644. {
  13645. name: "Beyond Godly",
  13646. height: math.unit(25, "multiverses")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13652. {
  13653. feminine: {
  13654. height: math.unit(5, "feet"),
  13655. weight: math.unit(100, "lb"),
  13656. name: "Feminine",
  13657. image: {
  13658. source: "./media/characters/sammy-mouse/feminine.svg",
  13659. extra: 2526 / 2425,
  13660. bottom: 0.123
  13661. }
  13662. },
  13663. masculine: {
  13664. height: math.unit(5, "feet"),
  13665. weight: math.unit(100, "lb"),
  13666. name: "Masculine",
  13667. image: {
  13668. source: "./media/characters/sammy-mouse/masculine.svg",
  13669. extra: 2526 / 2425,
  13670. bottom: 0.123
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(5, "inches")
  13678. },
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(5, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(60, "feet")
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(4, "feet"),
  13695. weight: math.unit(50, "lb"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/kole/front.svg",
  13699. extra: 1423 / 1303,
  13700. bottom: 0.025
  13701. }
  13702. },
  13703. back: {
  13704. height: math.unit(4, "feet"),
  13705. weight: math.unit(50, "lb"),
  13706. name: "Back",
  13707. image: {
  13708. source: "./media/characters/kole/back.svg",
  13709. extra: 1426 / 1280,
  13710. bottom: 0.02
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(4, "feet"),
  13718. default: true
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(2.5, "feet"),
  13727. weight: math.unit(32, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/rufran/front.svg",
  13731. extra: 1313/885,
  13732. bottom: 94/1407
  13733. }
  13734. },
  13735. side: {
  13736. height: math.unit(2.5, "feet"),
  13737. weight: math.unit(32, "lb"),
  13738. name: "Side",
  13739. image: {
  13740. source: "./media/characters/rufran/side.svg",
  13741. extra: 1109/852,
  13742. bottom: 118/1227
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(2.5, "feet"),
  13747. weight: math.unit(32, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/rufran/back.svg",
  13751. extra: 1280/878,
  13752. bottom: 131/1411
  13753. }
  13754. },
  13755. mouth: {
  13756. height: math.unit(1.13, "feet"),
  13757. name: "Mouth",
  13758. image: {
  13759. source: "./media/characters/rufran/mouth.svg"
  13760. }
  13761. },
  13762. foot: {
  13763. height: math.unit(1.33, "feet"),
  13764. name: "Foot",
  13765. image: {
  13766. source: "./media/characters/rufran/foot.svg"
  13767. }
  13768. },
  13769. koboldFront: {
  13770. height: math.unit(2 + 6 / 12, "feet"),
  13771. weight: math.unit(20, "lb"),
  13772. name: "Front (Kobold)",
  13773. image: {
  13774. source: "./media/characters/rufran/kobold-front.svg",
  13775. extra: 2041 / 1839,
  13776. bottom: 0.055
  13777. }
  13778. },
  13779. koboldBack: {
  13780. height: math.unit(2 + 6 / 12, "feet"),
  13781. weight: math.unit(20, "lb"),
  13782. name: "Back (Kobold)",
  13783. image: {
  13784. source: "./media/characters/rufran/kobold-back.svg",
  13785. extra: 2054 / 1839,
  13786. bottom: 0.01
  13787. }
  13788. },
  13789. koboldHand: {
  13790. height: math.unit(0.2166, "meters"),
  13791. name: "Hand (Kobold)",
  13792. image: {
  13793. source: "./media/characters/rufran/kobold-hand.svg"
  13794. }
  13795. },
  13796. koboldFoot: {
  13797. height: math.unit(0.185, "meters"),
  13798. name: "Foot (Kobold)",
  13799. image: {
  13800. source: "./media/characters/rufran/kobold-foot.svg"
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Micro",
  13807. height: math.unit(1, "inch")
  13808. },
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(2 + 6 / 12, "feet"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Big",
  13816. height: math.unit(60, "feet")
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(325, "feet")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(0.3, "meters"),
  13829. weight: math.unit(3.5, "kg"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/chip/front.svg",
  13833. extra: 748 / 674
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Micro",
  13840. height: math.unit(1, "inch"),
  13841. default: true
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13847. {
  13848. side: {
  13849. height: math.unit(2.3, "meters"),
  13850. weight: math.unit(3500, "lb"),
  13851. name: "Side",
  13852. image: {
  13853. source: "./media/characters/torvid/side.svg",
  13854. extra: 1972 / 722,
  13855. bottom: 0.035
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(2.3, "meters"),
  13863. default: true
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(2, "meters"),
  13872. weight: math.unit(150.5, "kg"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/susan/front.svg",
  13876. extra: 693 / 635,
  13877. bottom: 0.05
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Megamacro",
  13884. height: math.unit(505, "miles"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/raindrops/front.svg",
  13898. extra: 2655 / 2461,
  13899. bottom: 49 / 2705
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/raindrops/back.svg",
  13908. extra: 2574 / 2400,
  13909. bottom: 65 / 2634
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Micro",
  13916. height: math.unit(6, "inches")
  13917. },
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(6 + 2 / 12, "feet")
  13921. },
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(131, "feet"),
  13925. default: true
  13926. },
  13927. {
  13928. name: "Megamacro",
  13929. height: math.unit(15, "miles")
  13930. },
  13931. {
  13932. name: "Gigamacro",
  13933. height: math.unit(4000, "miles")
  13934. },
  13935. {
  13936. name: "Teramacro",
  13937. height: math.unit(315000, "miles")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(2.794, "meters"),
  13946. weight: math.unit(325, "kg"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/tezwa/front.svg",
  13950. extra: 2083 / 1906,
  13951. bottom: 0.031
  13952. }
  13953. },
  13954. foot: {
  13955. height: math.unit(0.687, "meters"),
  13956. name: "Foot",
  13957. image: {
  13958. source: "./media/characters/tezwa/foot.svg"
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Normal",
  13965. height: math.unit(9 + 2 / 12, "feet"),
  13966. default: true
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(58, "feet"),
  13975. weight: math.unit(89000, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/typhus/front.svg",
  13979. extra: 816 / 800,
  13980. bottom: 0.065
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(58, "feet"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(12, "feet"),
  13997. weight: math.unit(6, "tonnes"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/lyra-von-wulf/front.svg",
  14001. extra: 1,
  14002. bottom: 0.10
  14003. }
  14004. },
  14005. frontMecha: {
  14006. height: math.unit(12, "feet"),
  14007. weight: math.unit(12, "tonnes"),
  14008. name: "Front (Mecha)",
  14009. image: {
  14010. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14011. extra: 1,
  14012. bottom: 0.042
  14013. }
  14014. },
  14015. maw: {
  14016. height: math.unit(2.2, "feet"),
  14017. name: "Maw",
  14018. image: {
  14019. source: "./media/characters/lyra-von-wulf/maw.svg"
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(12, "feet"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Classic",
  14031. height: math.unit(50, "feet")
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(500, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(1, "mile")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(400, "miles")
  14044. },
  14045. {
  14046. name: "Teramacro",
  14047. height: math.unit(22000, "miles")
  14048. },
  14049. {
  14050. name: "Solarmacro",
  14051. height: math.unit(8600000, "miles")
  14052. },
  14053. {
  14054. name: "Galactic",
  14055. height: math.unit(1057000, "lightyears")
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(6 + 10 / 12, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/dixon/front.svg",
  14068. extra: 3361 / 3209,
  14069. bottom: 0.01
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(6 + 10 / 12, "feet"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Big",
  14081. height: math.unit(12, "meters")
  14082. },
  14083. {
  14084. name: "Macro",
  14085. height: math.unit(500, "meters")
  14086. },
  14087. {
  14088. name: "Megamacro",
  14089. height: math.unit(2, "km")
  14090. },
  14091. ]
  14092. ))
  14093. characterMakers.push(() => makeCharacter(
  14094. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14095. {
  14096. front: {
  14097. height: math.unit(185, "cm"),
  14098. weight: math.unit(68, "kg"),
  14099. name: "Front",
  14100. image: {
  14101. source: "./media/characters/kauko/front.svg",
  14102. extra: 1455 / 1421,
  14103. bottom: 0.03
  14104. }
  14105. },
  14106. back: {
  14107. height: math.unit(185, "cm"),
  14108. weight: math.unit(68, "kg"),
  14109. name: "Back",
  14110. image: {
  14111. source: "./media/characters/kauko/back.svg",
  14112. extra: 1455 / 1421,
  14113. bottom: 0.004
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(185, "cm"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14127. {
  14128. frontSfw: {
  14129. height: math.unit(5, "meters"),
  14130. weight: math.unit(4250, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/varg/front-sfw.svg",
  14134. extra: 1103/1010,
  14135. bottom: 50/1153
  14136. },
  14137. form: "anthro",
  14138. default: true
  14139. },
  14140. backSfw: {
  14141. height: math.unit(5, "meters"),
  14142. weight: math.unit(4250, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/varg/back-sfw.svg",
  14146. extra: 1038/1022,
  14147. bottom: 36/1074
  14148. },
  14149. form: "anthro"
  14150. },
  14151. frontNsfw: {
  14152. height: math.unit(5, "meters"),
  14153. weight: math.unit(4250, "lb"),
  14154. name: "Front (NSFW)",
  14155. image: {
  14156. source: "./media/characters/varg/front-nsfw.svg",
  14157. extra: 1103/1010,
  14158. bottom: 50/1153
  14159. },
  14160. form: "anthro"
  14161. },
  14162. sheath: {
  14163. height: math.unit(3.8, "feet"),
  14164. weight: math.unit(90, "kilograms"),
  14165. name: "Sheath",
  14166. image: {
  14167. source: "./media/characters/varg/sheath.svg"
  14168. },
  14169. form: "anthro"
  14170. },
  14171. dick: {
  14172. height: math.unit(4.6, "feet"),
  14173. weight: math.unit(451, "kilograms"),
  14174. name: "Dick",
  14175. image: {
  14176. source: "./media/characters/varg/dick.svg"
  14177. },
  14178. form: "anthro"
  14179. },
  14180. feralSfw: {
  14181. height: math.unit(5, "meters"),
  14182. weight: math.unit(100000, "lb"),
  14183. name: "Side",
  14184. image: {
  14185. source: "./media/characters/varg/feral-sfw.svg",
  14186. extra: 1065/511,
  14187. bottom: 211/1276
  14188. },
  14189. form: "feral",
  14190. default: true
  14191. },
  14192. feralNsfw: {
  14193. height: math.unit(5, "meters"),
  14194. weight: math.unit(100000, "lb"),
  14195. name: "Side (NSFW)",
  14196. image: {
  14197. source: "./media/characters/varg/feral-nsfw.svg",
  14198. extra: 1065/511,
  14199. bottom: 211/1276
  14200. },
  14201. form: "feral",
  14202. },
  14203. feralSheath: {
  14204. height: math.unit(9.8, "feet"),
  14205. weight: math.unit(2000, "kilograms"),
  14206. name: "Sheath",
  14207. image: {
  14208. source: "./media/characters/varg/sheath.svg"
  14209. },
  14210. form: "feral"
  14211. },
  14212. feralDick: {
  14213. height: math.unit(13.11, "feet"),
  14214. weight: math.unit(10440, "kilograms"),
  14215. name: "Dick",
  14216. image: {
  14217. source: "./media/characters/varg/dick.svg"
  14218. },
  14219. form: "feral"
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(5, "meters"),
  14226. form: "anthro"
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(200, "meters"),
  14231. form: "anthro"
  14232. },
  14233. {
  14234. name: "Megamacro",
  14235. height: math.unit(20, "kilometers"),
  14236. form: "anthro"
  14237. },
  14238. {
  14239. name: "True Size",
  14240. height: math.unit(211, "km"),
  14241. form: "anthro",
  14242. default: true
  14243. },
  14244. {
  14245. name: "Gigamacro",
  14246. height: math.unit(1000, "km"),
  14247. form: "anthro"
  14248. },
  14249. {
  14250. name: "Gigamacro+",
  14251. height: math.unit(8000, "km"),
  14252. form: "anthro"
  14253. },
  14254. {
  14255. name: "Teramacro",
  14256. height: math.unit(1000000, "km"),
  14257. form: "anthro"
  14258. },
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(5, "meters"),
  14262. form: "feral"
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(200, "meters"),
  14267. form: "feral"
  14268. },
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(20, "kilometers"),
  14272. form: "feral"
  14273. },
  14274. {
  14275. name: "True Size",
  14276. height: math.unit(211, "km"),
  14277. form: "feral",
  14278. default: true
  14279. },
  14280. {
  14281. name: "Gigamacro",
  14282. height: math.unit(1000, "km"),
  14283. form: "feral"
  14284. },
  14285. {
  14286. name: "Gigamacro+",
  14287. height: math.unit(8000, "km"),
  14288. form: "feral"
  14289. },
  14290. {
  14291. name: "Teramacro",
  14292. height: math.unit(1000000, "km"),
  14293. form: "feral"
  14294. },
  14295. ],
  14296. {
  14297. "anthro": {
  14298. name: "Anthro",
  14299. default: true
  14300. },
  14301. "feral": {
  14302. name: "Feral",
  14303. },
  14304. }
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(7 + 7 / 12, "feet"),
  14311. weight: math.unit(267, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/dayza/front.svg",
  14315. extra: 1262 / 1200,
  14316. bottom: 0.035
  14317. }
  14318. },
  14319. side: {
  14320. height: math.unit(7 + 7 / 12, "feet"),
  14321. weight: math.unit(267, "lb"),
  14322. name: "Side",
  14323. image: {
  14324. source: "./media/characters/dayza/side.svg",
  14325. extra: 1295 / 1245,
  14326. bottom: 0.05
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(7 + 7 / 12, "feet"),
  14331. weight: math.unit(267, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/dayza/back.svg",
  14335. extra: 1241 / 1170
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(7 + 7 / 12, "feet"),
  14343. default: true
  14344. },
  14345. {
  14346. name: "Macro",
  14347. height: math.unit(155, "feet")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(6 + 5 / 12, "feet"),
  14356. weight: math.unit(160, "lb"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/xanthos/front.svg",
  14360. extra: 1,
  14361. bottom: 0.04
  14362. }
  14363. },
  14364. back: {
  14365. height: math.unit(6 + 5 / 12, "feet"),
  14366. weight: math.unit(160, "lb"),
  14367. name: "Back",
  14368. image: {
  14369. source: "./media/characters/xanthos/back.svg",
  14370. extra: 1,
  14371. bottom: 0.03
  14372. }
  14373. },
  14374. hand: {
  14375. height: math.unit(0.928, "feet"),
  14376. name: "Hand",
  14377. image: {
  14378. source: "./media/characters/xanthos/hand.svg"
  14379. }
  14380. },
  14381. foot: {
  14382. height: math.unit(1.286, "feet"),
  14383. name: "Foot",
  14384. image: {
  14385. source: "./media/characters/xanthos/foot.svg"
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(6 + 5 / 12, "feet"),
  14393. default: true
  14394. },
  14395. {
  14396. name: "Normal+",
  14397. height: math.unit(6, "meters")
  14398. },
  14399. {
  14400. name: "Macro",
  14401. height: math.unit(40, "feet")
  14402. },
  14403. {
  14404. name: "Macro+",
  14405. height: math.unit(200, "meters")
  14406. },
  14407. {
  14408. name: "Megamacro",
  14409. height: math.unit(20, "km")
  14410. },
  14411. {
  14412. name: "Megamacro+",
  14413. height: math.unit(100, "km")
  14414. },
  14415. {
  14416. name: "Gigamacro",
  14417. height: math.unit(200, "megameters")
  14418. },
  14419. {
  14420. name: "Gigamacro+",
  14421. height: math.unit(1.5, "gigameters")
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(6 + 3 / 12, "feet"),
  14430. weight: math.unit(215, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/grynn/front.svg",
  14434. extra: 4627 / 4209,
  14435. bottom: 0.047
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Micro",
  14442. height: math.unit(6, "inches")
  14443. },
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(6 + 3 / 12, "feet"),
  14447. default: true
  14448. },
  14449. {
  14450. name: "Big",
  14451. height: math.unit(104, "feet")
  14452. },
  14453. {
  14454. name: "Macro",
  14455. height: math.unit(944, "feet")
  14456. },
  14457. {
  14458. name: "Macro+",
  14459. height: math.unit(9480, "feet")
  14460. },
  14461. {
  14462. name: "Megamacro",
  14463. height: math.unit(78752, "feet")
  14464. },
  14465. {
  14466. name: "Megamacro+",
  14467. height: math.unit(630128, "feet")
  14468. },
  14469. {
  14470. name: "Megamacro++",
  14471. height: math.unit(3150695, "feet")
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(7 + 5 / 12, "feet"),
  14480. weight: math.unit(450, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/mocha-aura/front.svg",
  14484. extra: 1907 / 1817,
  14485. bottom: 0.04
  14486. }
  14487. },
  14488. back: {
  14489. height: math.unit(7 + 5 / 12, "feet"),
  14490. weight: math.unit(450, "lb"),
  14491. name: "Back",
  14492. image: {
  14493. source: "./media/characters/mocha-aura/back.svg",
  14494. extra: 1900 / 1825,
  14495. bottom: 0.045
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Nano",
  14502. height: math.unit(1, "nm")
  14503. },
  14504. {
  14505. name: "Megamicro",
  14506. height: math.unit(1, "mm")
  14507. },
  14508. {
  14509. name: "Micro",
  14510. height: math.unit(3, "inches")
  14511. },
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(7 + 5 / 12, "feet"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Macro",
  14519. height: math.unit(30, "feet")
  14520. },
  14521. {
  14522. name: "Megamacro",
  14523. height: math.unit(3500, "feet")
  14524. },
  14525. {
  14526. name: "Teramacro",
  14527. height: math.unit(500000, "miles")
  14528. },
  14529. {
  14530. name: "Petamacro",
  14531. height: math.unit(50000000000000000, "parsecs")
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(6, "feet"),
  14540. weight: math.unit(150, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/ilisha-devya/front.svg",
  14544. extra: 1053/1049,
  14545. bottom: 270/1323
  14546. }
  14547. },
  14548. back: {
  14549. height: math.unit(6, "feet"),
  14550. weight: math.unit(150, "lb"),
  14551. name: "Back",
  14552. image: {
  14553. source: "./media/characters/ilisha-devya/back.svg",
  14554. extra: 1131/1128,
  14555. bottom: 39/1170
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Macro",
  14562. height: math.unit(500, "feet"),
  14563. default: true
  14564. },
  14565. {
  14566. name: "Megamacro",
  14567. height: math.unit(10, "miles")
  14568. },
  14569. {
  14570. name: "Gigamacro",
  14571. height: math.unit(100000, "miles")
  14572. },
  14573. {
  14574. name: "Examacro",
  14575. height: math.unit(1e9, "lightyears")
  14576. },
  14577. {
  14578. name: "Omniversal",
  14579. height: math.unit(1e33, "lightyears")
  14580. },
  14581. {
  14582. name: "Beyond Infinite",
  14583. height: math.unit(1e100, "lightyears")
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14589. {
  14590. Side: {
  14591. height: math.unit(6, "feet"),
  14592. weight: math.unit(150, "lb"),
  14593. name: "Side",
  14594. image: {
  14595. source: "./media/characters/mira/side.svg",
  14596. extra: 900 / 799,
  14597. bottom: 0.02
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Human Size",
  14604. height: math.unit(6, "feet")
  14605. },
  14606. {
  14607. name: "Macro",
  14608. height: math.unit(100, "feet"),
  14609. default: true
  14610. },
  14611. {
  14612. name: "Megamacro",
  14613. height: math.unit(10, "miles")
  14614. },
  14615. {
  14616. name: "Gigamacro",
  14617. height: math.unit(25000, "miles")
  14618. },
  14619. {
  14620. name: "Teramacro",
  14621. height: math.unit(300, "AU")
  14622. },
  14623. {
  14624. name: "Full Size",
  14625. height: math.unit(4.5e10, "lightyears")
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/holly/front.svg",
  14638. extra: 639 / 606
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/holly/back.svg",
  14647. extra: 623 / 598
  14648. }
  14649. },
  14650. frontWorking: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Front (Working)",
  14654. image: {
  14655. source: "./media/characters/holly/front-working.svg",
  14656. extra: 607 / 577,
  14657. bottom: 0.048
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(12 + 3 / 12, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/porter/front.svg",
  14678. extra: 1,
  14679. bottom: 0.01
  14680. }
  14681. },
  14682. frontRobes: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Front (Robes)",
  14686. image: {
  14687. source: "./media/characters/porter/front-robes.svg",
  14688. extra: 1.01,
  14689. bottom: 0.01
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(11 + 9 / 12, "feet"),
  14697. default: true
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14703. {
  14704. legendary: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(150, "lb"),
  14707. name: "Legendary",
  14708. image: {
  14709. source: "./media/characters/lucy/legendary.svg",
  14710. extra: 1355 / 1100,
  14711. bottom: 0.045
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Legendary",
  14718. height: math.unit(86882 * 2, "miles"),
  14719. default: true
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14725. {
  14726. front: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(150, "lb"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/drusilla/front.svg",
  14732. extra: 678 / 635,
  14733. bottom: 0.03
  14734. }
  14735. },
  14736. back: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(150, "lb"),
  14739. name: "Back",
  14740. image: {
  14741. source: "./media/characters/drusilla/back.svg",
  14742. extra: 678 / 635,
  14743. bottom: 0.005
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(100, "feet")
  14751. },
  14752. {
  14753. name: "Canon Height",
  14754. height: math.unit(2000, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(180, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/renard-thatch/front.svg",
  14768. extra: 2411 / 2275,
  14769. bottom: 0.01
  14770. }
  14771. },
  14772. frontPosing: {
  14773. height: math.unit(6, "feet"),
  14774. weight: math.unit(180, "lb"),
  14775. name: "Front (Posing)",
  14776. image: {
  14777. source: "./media/characters/renard-thatch/front-posing.svg",
  14778. extra: 2381 / 2261,
  14779. bottom: 0.01
  14780. }
  14781. },
  14782. back: {
  14783. height: math.unit(6, "feet"),
  14784. weight: math.unit(180, "lb"),
  14785. name: "Back",
  14786. image: {
  14787. source: "./media/characters/renard-thatch/back.svg",
  14788. extra: 2428 / 2288
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Micro",
  14795. height: math.unit(3, "inches")
  14796. },
  14797. {
  14798. name: "Default",
  14799. height: math.unit(6, "feet"),
  14800. default: true
  14801. },
  14802. {
  14803. name: "Macro",
  14804. height: math.unit(75, "feet")
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(1450, "feet"),
  14813. weight: math.unit(1.21e6, "tons"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/sekvra/front.svg",
  14817. extra: 1193/1190,
  14818. bottom: 78/1271
  14819. }
  14820. },
  14821. side: {
  14822. height: math.unit(1450, "feet"),
  14823. weight: math.unit(1.21e6, "tons"),
  14824. name: "Side",
  14825. image: {
  14826. source: "./media/characters/sekvra/side.svg",
  14827. extra: 1193/1190,
  14828. bottom: 52/1245
  14829. }
  14830. },
  14831. back: {
  14832. height: math.unit(1450, "feet"),
  14833. weight: math.unit(1.21e6, "tons"),
  14834. name: "Back",
  14835. image: {
  14836. source: "./media/characters/sekvra/back.svg",
  14837. extra: 1219/1216,
  14838. bottom: 21/1240
  14839. }
  14840. },
  14841. frontClothed: {
  14842. height: math.unit(1450, "feet"),
  14843. weight: math.unit(1.21e6, "tons"),
  14844. name: "Front (Clothed)",
  14845. image: {
  14846. source: "./media/characters/sekvra/front-clothed.svg",
  14847. extra: 1192/1189,
  14848. bottom: 79/1271
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(1450, "feet"),
  14856. default: true
  14857. },
  14858. {
  14859. name: "Megamacro",
  14860. height: math.unit(15000, "feet")
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(150, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/carmine/front.svg",
  14873. extra: 1557/1538,
  14874. bottom: 68/1625
  14875. }
  14876. },
  14877. frontArmor: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front (Armor)",
  14881. image: {
  14882. source: "./media/characters/carmine/front-armor.svg",
  14883. extra: 1549/1530,
  14884. bottom: 82/1631
  14885. }
  14886. },
  14887. mouth: {
  14888. height: math.unit(0.55, "feet"),
  14889. name: "Mouth",
  14890. image: {
  14891. source: "./media/characters/carmine/mouth.svg"
  14892. }
  14893. },
  14894. hand: {
  14895. height: math.unit(1.05, "feet"),
  14896. name: "Hand",
  14897. image: {
  14898. source: "./media/characters/carmine/hand.svg"
  14899. }
  14900. },
  14901. foot: {
  14902. height: math.unit(0.6, "feet"),
  14903. name: "Foot",
  14904. image: {
  14905. source: "./media/characters/carmine/foot.svg"
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Large",
  14912. height: math.unit(1, "mile")
  14913. },
  14914. {
  14915. name: "Huge",
  14916. height: math.unit(40, "miles"),
  14917. default: true
  14918. },
  14919. {
  14920. name: "Colossal",
  14921. height: math.unit(2500, "miles")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/elyssia/front.svg",
  14934. extra: 2201 / 2035,
  14935. bottom: 0.05
  14936. }
  14937. },
  14938. frontClothed: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Front (Clothed)",
  14942. image: {
  14943. source: "./media/characters/elyssia/front-clothed.svg",
  14944. extra: 2201 / 2035,
  14945. bottom: 0.05
  14946. }
  14947. },
  14948. back: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Back",
  14952. image: {
  14953. source: "./media/characters/elyssia/back.svg",
  14954. extra: 2201 / 2035,
  14955. bottom: 0.013
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Smaller",
  14962. height: math.unit(150, "feet")
  14963. },
  14964. {
  14965. name: "Standard",
  14966. height: math.unit(1400, "feet"),
  14967. default: true
  14968. },
  14969. {
  14970. name: "Distracted",
  14971. height: math.unit(15000, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(7 + 4/12, "feet"),
  14980. weight: math.unit(690, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/geno-maxwell/front.svg",
  14984. extra: 984/856,
  14985. bottom: 87/1071
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(7 + 4/12, "feet"),
  14990. weight: math.unit(690, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/geno-maxwell/back.svg",
  14994. extra: 981/854,
  14995. bottom: 57/1038
  14996. }
  14997. },
  14998. frontCostume: {
  14999. height: math.unit(7 + 4/12, "feet"),
  15000. weight: math.unit(690, "lb"),
  15001. name: "Front (Costume)",
  15002. image: {
  15003. source: "./media/characters/geno-maxwell/front-costume.svg",
  15004. extra: 984/856,
  15005. bottom: 87/1071
  15006. }
  15007. },
  15008. backcostume: {
  15009. height: math.unit(7 + 4/12, "feet"),
  15010. weight: math.unit(690, "lb"),
  15011. name: "Back (Costume)",
  15012. image: {
  15013. source: "./media/characters/geno-maxwell/back-costume.svg",
  15014. extra: 981/854,
  15015. bottom: 57/1038
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Micro",
  15022. height: math.unit(3, "inches")
  15023. },
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(7 + 4 / 12, "feet"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Macro",
  15031. height: math.unit(220, "feet")
  15032. },
  15033. {
  15034. name: "Megamacro",
  15035. height: math.unit(11, "miles")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(7 + 4/12, "feet"),
  15044. weight: math.unit(750, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/regena-maxwell/front.svg",
  15048. extra: 984/856,
  15049. bottom: 87/1071
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(7 + 4/12, "feet"),
  15054. weight: math.unit(750, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/regena-maxwell/back.svg",
  15058. extra: 981/854,
  15059. bottom: 57/1038
  15060. }
  15061. },
  15062. frontCostume: {
  15063. height: math.unit(7 + 4/12, "feet"),
  15064. weight: math.unit(750, "lb"),
  15065. name: "Front (Costume)",
  15066. image: {
  15067. source: "./media/characters/regena-maxwell/front-costume.svg",
  15068. extra: 984/856,
  15069. bottom: 87/1071
  15070. }
  15071. },
  15072. backcostume: {
  15073. height: math.unit(7 + 4/12, "feet"),
  15074. weight: math.unit(750, "lb"),
  15075. name: "Back (Costume)",
  15076. image: {
  15077. source: "./media/characters/regena-maxwell/back-costume.svg",
  15078. extra: 981/854,
  15079. bottom: 57/1038
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(7 + 4 / 12, "feet"),
  15087. default: true
  15088. },
  15089. {
  15090. name: "Macro",
  15091. height: math.unit(220, "feet")
  15092. },
  15093. {
  15094. name: "Megamacro",
  15095. height: math.unit(11, "miles")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15108. extra: 860 / 690,
  15109. bottom: 0.03
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(1.7, "meters"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/quilly/front.svg",
  15130. extra: 890 / 776
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Gigamacro",
  15137. height: math.unit(404090, "miles"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(7 + 8 / 12, "feet"),
  15147. weight: math.unit(350, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/tempest/front.svg",
  15151. extra: 1175 / 1086,
  15152. bottom: 0.02
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(7 + 8 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15166. {
  15167. side: {
  15168. height: math.unit(4 + 5 / 12, "feet"),
  15169. weight: math.unit(80, "lb"),
  15170. name: "Side",
  15171. image: {
  15172. source: "./media/characters/rodger/side.svg",
  15173. extra: 1235 / 1118
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Micro",
  15180. height: math.unit(1, "inch")
  15181. },
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(4 + 5 / 12, "feet"),
  15185. default: true
  15186. },
  15187. {
  15188. name: "Macro",
  15189. height: math.unit(120, "feet")
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(6, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/danyel/front.svg",
  15202. extra: 1185 / 1123,
  15203. bottom: 0.05
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Shrunken",
  15210. height: math.unit(0.5, "mm")
  15211. },
  15212. {
  15213. name: "Micro",
  15214. height: math.unit(1, "mm"),
  15215. default: true
  15216. },
  15217. {
  15218. name: "Upsized",
  15219. height: math.unit(5 + 5 / 12, "feet")
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(5 + 6 / 12, "feet"),
  15228. weight: math.unit(200, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/vivian-bijoux/front.svg",
  15232. extra: 1217/1209,
  15233. bottom: 76/1293
  15234. }
  15235. },
  15236. back: {
  15237. height: math.unit(5 + 6 / 12, "feet"),
  15238. weight: math.unit(200, "lb"),
  15239. name: "Back",
  15240. image: {
  15241. source: "./media/characters/vivian-bijoux/back.svg",
  15242. extra: 1214/1208,
  15243. bottom: 51/1265
  15244. }
  15245. },
  15246. dressed: {
  15247. height: math.unit(5 + 6 / 12, "feet"),
  15248. weight: math.unit(200, "lb"),
  15249. name: "Dressed",
  15250. image: {
  15251. source: "./media/characters/vivian-bijoux/dressed.svg",
  15252. extra: 1217/1209,
  15253. bottom: 76/1293
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 6 / 12, "feet"),
  15261. default: true
  15262. },
  15263. {
  15264. name: "Bad Dream",
  15265. height: math.unit(500, "feet")
  15266. },
  15267. {
  15268. name: "Nightmare",
  15269. height: math.unit(500, "miles")
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6 + 1 / 12, "feet"),
  15278. weight: math.unit(260, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/zeta/front.svg",
  15282. extra: 1968 / 1889,
  15283. bottom: 0.06
  15284. }
  15285. },
  15286. back: {
  15287. height: math.unit(6 + 1 / 12, "feet"),
  15288. weight: math.unit(260, "lb"),
  15289. name: "Back",
  15290. image: {
  15291. source: "./media/characters/zeta/back.svg",
  15292. extra: 1944 / 1858,
  15293. bottom: 0.03
  15294. }
  15295. },
  15296. hand: {
  15297. height: math.unit(1.112, "feet"),
  15298. name: "Hand",
  15299. image: {
  15300. source: "./media/characters/zeta/hand.svg"
  15301. }
  15302. },
  15303. foot: {
  15304. height: math.unit(1.48, "feet"),
  15305. name: "Foot",
  15306. image: {
  15307. source: "./media/characters/zeta/foot.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Micro",
  15314. height: math.unit(6, "inches")
  15315. },
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(6 + 1 / 12, "feet"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Macro",
  15323. height: math.unit(20, "feet")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(150, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/jamie-larsen/front.svg",
  15336. extra: 962 / 933,
  15337. bottom: 0.02
  15338. }
  15339. },
  15340. back: {
  15341. height: math.unit(6, "feet"),
  15342. weight: math.unit(150, "lb"),
  15343. name: "Back",
  15344. image: {
  15345. source: "./media/characters/jamie-larsen/back.svg",
  15346. extra: 997 / 946
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(28 + 7 / 12, "feet"),
  15354. default: true
  15355. },
  15356. {
  15357. name: "Macro+",
  15358. height: math.unit(180, "feet")
  15359. },
  15360. {
  15361. name: "Megamacro",
  15362. height: math.unit(10, "miles")
  15363. },
  15364. {
  15365. name: "Gigamacro",
  15366. height: math.unit(200000, "miles")
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(120, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/vance/front.svg",
  15379. extra: 1980 / 1890,
  15380. bottom: 0.09
  15381. }
  15382. },
  15383. back: {
  15384. height: math.unit(6, "feet"),
  15385. weight: math.unit(120, "lb"),
  15386. name: "Back",
  15387. image: {
  15388. source: "./media/characters/vance/back.svg",
  15389. extra: 2081 / 1994,
  15390. bottom: 0.014
  15391. }
  15392. },
  15393. hand: {
  15394. height: math.unit(0.88, "feet"),
  15395. name: "Hand",
  15396. image: {
  15397. source: "./media/characters/vance/hand.svg"
  15398. }
  15399. },
  15400. foot: {
  15401. height: math.unit(0.64, "feet"),
  15402. name: "Foot",
  15403. image: {
  15404. source: "./media/characters/vance/foot.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Small",
  15411. height: math.unit(90, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(100, "meters")
  15417. },
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(15, "miles")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(180, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/xochitl/front.svg",
  15433. extra: 2297 / 2261,
  15434. bottom: 0.065
  15435. }
  15436. },
  15437. back: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(180, "lb"),
  15440. name: "Back",
  15441. image: {
  15442. source: "./media/characters/xochitl/back.svg",
  15443. extra: 2386 / 2354,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. foot: {
  15448. height: math.unit(6 / 5 * 1.15, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Foot",
  15451. image: {
  15452. source: "./media/characters/xochitl/foot.svg"
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Macro",
  15459. height: math.unit(80, "feet")
  15460. },
  15461. {
  15462. name: "Macro+",
  15463. height: math.unit(400, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Gigamacro",
  15468. height: math.unit(80000, "miles")
  15469. },
  15470. {
  15471. name: "Gigamacro+",
  15472. height: math.unit(400000, "miles")
  15473. },
  15474. {
  15475. name: "Teramacro",
  15476. height: math.unit(300, "AU")
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(6, "feet"),
  15485. weight: math.unit(150, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/vincent/front.svg",
  15489. extra: 1130 / 1080,
  15490. bottom: 0.055
  15491. }
  15492. },
  15493. beak: {
  15494. height: math.unit(6 * 0.1, "feet"),
  15495. name: "Beak",
  15496. image: {
  15497. source: "./media/characters/vincent/beak.svg"
  15498. }
  15499. },
  15500. hand: {
  15501. height: math.unit(6 * 0.85, "feet"),
  15502. weight: math.unit(150, "lb"),
  15503. name: "Hand",
  15504. image: {
  15505. source: "./media/characters/vincent/hand.svg"
  15506. }
  15507. },
  15508. foot: {
  15509. height: math.unit(6 * 0.19, "feet"),
  15510. weight: math.unit(150, "lb"),
  15511. name: "Foot",
  15512. image: {
  15513. source: "./media/characters/vincent/foot.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Base",
  15520. height: math.unit(6 + 5 / 12, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Macro",
  15525. height: math.unit(300, "feet")
  15526. },
  15527. {
  15528. name: "Megamacro",
  15529. height: math.unit(2, "miles")
  15530. },
  15531. {
  15532. name: "Gigamacro",
  15533. height: math.unit(1000, "miles")
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(2, "meters"),
  15542. weight: math.unit(500, "kg"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/coatl/front.svg",
  15546. extra: 3948 / 3500,
  15547. bottom: 0.082
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(4, "meters")
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(100, "meters"),
  15559. default: true
  15560. },
  15561. {
  15562. name: "Macro+",
  15563. height: math.unit(300, "meters")
  15564. },
  15565. {
  15566. name: "Megamacro",
  15567. height: math.unit(3, "gigameters")
  15568. },
  15569. {
  15570. name: "Megamacro+",
  15571. height: math.unit(300, "terameters")
  15572. },
  15573. {
  15574. name: "Megamacro++",
  15575. height: math.unit(3, "lightyears")
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15581. {
  15582. front: {
  15583. height: math.unit(6, "feet"),
  15584. weight: math.unit(50, "kg"),
  15585. name: "front",
  15586. image: {
  15587. source: "./media/characters/shiroryu/front.svg",
  15588. extra: 1990 / 1935
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Mortal Mingling",
  15595. height: math.unit(3, "meters")
  15596. },
  15597. {
  15598. name: "Kaiju-ish",
  15599. height: math.unit(250, "meters")
  15600. },
  15601. {
  15602. name: "Somewhat Godly",
  15603. height: math.unit(400, "km"),
  15604. default: true
  15605. },
  15606. {
  15607. name: "Planetary",
  15608. height: math.unit(300, "megameters")
  15609. },
  15610. {
  15611. name: "Galaxy-dwarfing",
  15612. height: math.unit(450, "kiloparsecs")
  15613. },
  15614. {
  15615. name: "Universe Eater",
  15616. height: math.unit(150, "gigaparsecs")
  15617. },
  15618. {
  15619. name: "Almost Immeasurable",
  15620. height: math.unit(1.3e266, "yottaparsecs")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/umeko/front.svg",
  15633. extra: 1,
  15634. bottom: 0.019
  15635. }
  15636. },
  15637. frontArmored: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(150, "lb"),
  15640. name: "Front (Armored)",
  15641. image: {
  15642. source: "./media/characters/umeko/front-armored.svg",
  15643. extra: 1,
  15644. bottom: 0.021
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Macro",
  15651. height: math.unit(220, "feet"),
  15652. default: true
  15653. },
  15654. {
  15655. name: "Guardian Dragon",
  15656. height: math.unit(50, "miles")
  15657. },
  15658. {
  15659. name: "Cosmic",
  15660. height: math.unit(800000, "miles")
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6, "feet"),
  15669. weight: math.unit(150, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/cassidy/front.svg",
  15673. extra: 810/808,
  15674. bottom: 41/851
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Canon Height",
  15681. height: math.unit(120, "feet"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro+",
  15686. height: math.unit(400, "feet")
  15687. },
  15688. {
  15689. name: "Macro++",
  15690. height: math.unit(4000, "feet")
  15691. },
  15692. {
  15693. name: "Megamacro",
  15694. height: math.unit(3, "miles")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(150, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/isaac/front.svg",
  15707. extra: 896 / 815,
  15708. bottom: 0.11
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Human Size",
  15715. height: math.unit(8, "feet"),
  15716. default: true
  15717. },
  15718. {
  15719. name: "Macro",
  15720. height: math.unit(400, "feet")
  15721. },
  15722. {
  15723. name: "Megamacro",
  15724. height: math.unit(50, "miles")
  15725. },
  15726. {
  15727. name: "Canon Height",
  15728. height: math.unit(200, "AU")
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(72, "kg"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/sleekit/front.svg",
  15741. extra: 4693 / 4487,
  15742. bottom: 0.012
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Minimum Height",
  15749. height: math.unit(10, "meters")
  15750. },
  15751. {
  15752. name: "Smaller",
  15753. height: math.unit(25, "meters")
  15754. },
  15755. {
  15756. name: "Larger",
  15757. height: math.unit(38, "meters"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Maximum height",
  15762. height: math.unit(100, "meters")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(150, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/nillia/front.svg",
  15775. extra: 719/665,
  15776. bottom: 6/725
  15777. }
  15778. },
  15779. back: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(150, "lb"),
  15782. name: "Back",
  15783. image: {
  15784. source: "./media/characters/nillia/back.svg",
  15785. extra: 705/651,
  15786. bottom: 5/710
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Canon Height",
  15793. height: math.unit(489, "feet"),
  15794. default: true
  15795. }
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/mesmyriza/front.svg",
  15807. extra: 2067 / 1784,
  15808. bottom: 0.035
  15809. }
  15810. },
  15811. foot: {
  15812. height: math.unit(6 / (250 / 35), "feet"),
  15813. name: "Foot",
  15814. image: {
  15815. source: "./media/characters/mesmyriza/foot.svg"
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Macro",
  15822. height: math.unit(457, "meters"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Megamacro",
  15827. height: math.unit(8, "megameters")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(250, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/saudade/front.svg",
  15840. extra: 1172 / 1139,
  15841. bottom: 0.035
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Micro",
  15848. height: math.unit(3, "inches")
  15849. },
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(6, "feet"),
  15853. default: true
  15854. },
  15855. {
  15856. name: "Macro",
  15857. height: math.unit(50, "feet")
  15858. },
  15859. {
  15860. name: "Megamacro",
  15861. height: math.unit(2800, "feet")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(5 + 4 / 12, "feet"),
  15870. weight: math.unit(100, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/keireer/front.svg",
  15874. extra: 716 / 666,
  15875. bottom: 0.05
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(5 + 4 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(5.5, "feet"),
  15892. weight: math.unit(90, "kg"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/mirja/front.svg",
  15896. extra: 1452/1262,
  15897. bottom: 67/1519
  15898. }
  15899. },
  15900. frontDressed: {
  15901. height: math.unit(5.5, "feet"),
  15902. weight: math.unit(90, "lb"),
  15903. name: "Front (Dressed)",
  15904. image: {
  15905. source: "./media/characters/mirja/dressed.svg",
  15906. extra: 1452/1262,
  15907. bottom: 67/1519
  15908. }
  15909. },
  15910. back: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(90, "lb"),
  15913. name: "Back",
  15914. image: {
  15915. source: "./media/characters/mirja/back.svg",
  15916. extra: 1892/1795,
  15917. bottom: 48/1940
  15918. }
  15919. },
  15920. maw: {
  15921. height: math.unit(1.312, "feet"),
  15922. name: "Maw",
  15923. image: {
  15924. source: "./media/characters/mirja/maw.svg"
  15925. }
  15926. },
  15927. paw: {
  15928. height: math.unit(1.15, "feet"),
  15929. name: "Paw",
  15930. image: {
  15931. source: "./media/characters/mirja/paw.svg"
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "\"Incognito\"",
  15938. height: math.unit(3, "meters")
  15939. },
  15940. {
  15941. name: "Strolling Size",
  15942. height: math.unit(15, "km")
  15943. },
  15944. {
  15945. name: "Larger Strolling Size",
  15946. height: math.unit(400, "km")
  15947. },
  15948. {
  15949. name: "Preferred Size",
  15950. height: math.unit(5000, "km"),
  15951. default: true
  15952. },
  15953. {
  15954. name: "True Size",
  15955. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(15, "feet"),
  15964. weight: math.unit(880, "kg"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/nightraver/front.svg",
  15968. extra: 2444 / 2160,
  15969. bottom: 0.027
  15970. }
  15971. },
  15972. back: {
  15973. height: math.unit(15, "feet"),
  15974. weight: math.unit(880, "kg"),
  15975. name: "Back",
  15976. image: {
  15977. source: "./media/characters/nightraver/back.svg",
  15978. extra: 2309 / 2180,
  15979. bottom: 0.005
  15980. }
  15981. },
  15982. sole: {
  15983. height: math.unit(2.878, "feet"),
  15984. name: "Sole",
  15985. image: {
  15986. source: "./media/characters/nightraver/sole.svg"
  15987. }
  15988. },
  15989. foot: {
  15990. height: math.unit(2.285, "feet"),
  15991. name: "Foot",
  15992. image: {
  15993. source: "./media/characters/nightraver/foot.svg"
  15994. }
  15995. },
  15996. maw: {
  15997. height: math.unit(2.67, "feet"),
  15998. name: "Maw",
  15999. image: {
  16000. source: "./media/characters/nightraver/maw.svg"
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Micro",
  16007. height: math.unit(1, "cm")
  16008. },
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(15, "feet"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Macro",
  16016. height: math.unit(300, "feet")
  16017. },
  16018. {
  16019. name: "Megamacro",
  16020. height: math.unit(300, "miles")
  16021. },
  16022. {
  16023. name: "Gigamacro",
  16024. height: math.unit(10000, "miles")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16030. {
  16031. side: {
  16032. height: math.unit(2, "inches"),
  16033. weight: math.unit(5, "grams"),
  16034. name: "Side",
  16035. image: {
  16036. source: "./media/characters/arc/side.svg"
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(2, "inches"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(1.1938, "meters"),
  16053. weight: math.unit(54, "kg"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/nebula-shahar/front.svg",
  16057. extra: 1642 / 1436,
  16058. bottom: 0.06
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Megamicro",
  16065. height: math.unit(0.3, "mm")
  16066. },
  16067. {
  16068. name: "Micro",
  16069. height: math.unit(3, "cm")
  16070. },
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(138, "cm"),
  16074. default: true
  16075. },
  16076. {
  16077. name: "Macro",
  16078. height: math.unit(30, "m")
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(5.24, "feet"),
  16087. weight: math.unit(150, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/shayla/front.svg",
  16091. extra: 1512 / 1414,
  16092. bottom: 0.01
  16093. }
  16094. },
  16095. back: {
  16096. height: math.unit(5.24, "feet"),
  16097. weight: math.unit(150, "lb"),
  16098. name: "Back",
  16099. image: {
  16100. source: "./media/characters/shayla/back.svg",
  16101. extra: 1512 / 1414
  16102. }
  16103. },
  16104. hand: {
  16105. height: math.unit(0.7781496062992126, "feet"),
  16106. name: "Hand",
  16107. image: {
  16108. source: "./media/characters/shayla/hand.svg"
  16109. }
  16110. },
  16111. foot: {
  16112. height: math.unit(1.4206036745406823, "feet"),
  16113. name: "Foot",
  16114. image: {
  16115. source: "./media/characters/shayla/foot.svg"
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Micro",
  16122. height: math.unit(0.32, "feet")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(5.24, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(492.12, "feet")
  16132. },
  16133. {
  16134. name: "Megamacro",
  16135. height: math.unit(186.41, "miles")
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(2.2, "m"),
  16144. weight: math.unit(120, "kg"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/pia-jr/front.svg",
  16148. extra: 1000 / 970,
  16149. bottom: 0.035
  16150. }
  16151. },
  16152. hand: {
  16153. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16154. name: "Hand",
  16155. image: {
  16156. source: "./media/characters/pia-jr/hand.svg"
  16157. }
  16158. },
  16159. paw: {
  16160. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16161. name: "Paw",
  16162. image: {
  16163. source: "./media/characters/pia-jr/paw.svg"
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Micro",
  16170. height: math.unit(1.2, "cm")
  16171. },
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(2.2, "m"),
  16175. default: true
  16176. },
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(180, "m")
  16180. },
  16181. {
  16182. name: "Megamacro",
  16183. height: math.unit(420, "km")
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(2, "m"),
  16192. weight: math.unit(115, "kg"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/pia-sr/front.svg",
  16196. extra: 760 / 730,
  16197. bottom: 0.015
  16198. }
  16199. },
  16200. back: {
  16201. height: math.unit(2, "m"),
  16202. weight: math.unit(115, "kg"),
  16203. name: "Back",
  16204. image: {
  16205. source: "./media/characters/pia-sr/back.svg",
  16206. extra: 760 / 730,
  16207. bottom: 0.01
  16208. }
  16209. },
  16210. hand: {
  16211. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16212. name: "Hand",
  16213. image: {
  16214. source: "./media/characters/pia-sr/hand.svg"
  16215. }
  16216. },
  16217. foot: {
  16218. height: math.unit(1.83, "feet"),
  16219. name: "Foot",
  16220. image: {
  16221. source: "./media/characters/pia-sr/foot.svg"
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Micro",
  16228. height: math.unit(88, "mm")
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(2, "m"),
  16233. default: true
  16234. },
  16235. {
  16236. name: "Macro",
  16237. height: math.unit(200, "m")
  16238. },
  16239. {
  16240. name: "Megamacro",
  16241. height: math.unit(420, "km")
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(8 + 2 / 12, "feet"),
  16250. weight: math.unit(300, "lb"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/kibibyte/front.svg",
  16254. extra: 2221 / 2098,
  16255. bottom: 0.04
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(8 + 2 / 12, "feet"),
  16263. default: true
  16264. },
  16265. {
  16266. name: "Socialable Macro",
  16267. height: math.unit(50, "feet")
  16268. },
  16269. {
  16270. name: "Macro",
  16271. height: math.unit(300, "feet")
  16272. },
  16273. {
  16274. name: "Megamacro",
  16275. height: math.unit(500, "miles")
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. weight: math.unit(150, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/felix/front.svg",
  16288. extra: 762 / 722,
  16289. bottom: 0.02
  16290. }
  16291. },
  16292. frontClothed: {
  16293. height: math.unit(6, "feet"),
  16294. weight: math.unit(150, "lb"),
  16295. name: "Front (Clothed)",
  16296. image: {
  16297. source: "./media/characters/felix/front-clothed.svg",
  16298. extra: 762 / 722,
  16299. bottom: 0.02
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(6 + 8 / 12, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(2600, "feet")
  16312. },
  16313. {
  16314. name: "Megamacro",
  16315. height: math.unit(450, "miles")
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16321. {
  16322. front: {
  16323. height: math.unit(6 + 1 / 12, "feet"),
  16324. weight: math.unit(250, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/tobo/front.svg",
  16328. extra: 608 / 586,
  16329. bottom: 0.023
  16330. }
  16331. },
  16332. back: {
  16333. height: math.unit(6 + 1 / 12, "feet"),
  16334. weight: math.unit(250, "lb"),
  16335. name: "Back",
  16336. image: {
  16337. source: "./media/characters/tobo/back.svg",
  16338. extra: 608 / 586
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Nano",
  16345. height: math.unit(2, "nm")
  16346. },
  16347. {
  16348. name: "Megamicro",
  16349. height: math.unit(0.1, "mm")
  16350. },
  16351. {
  16352. name: "Micro",
  16353. height: math.unit(1, "inch"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Human-sized",
  16358. height: math.unit(6 + 1 / 12, "feet")
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(250, "feet")
  16363. },
  16364. {
  16365. name: "Megamacro",
  16366. height: math.unit(75, "miles")
  16367. },
  16368. {
  16369. name: "Texas-sized",
  16370. height: math.unit(750, "miles")
  16371. },
  16372. {
  16373. name: "Teramacro",
  16374. height: math.unit(50000, "miles")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(6, "feet"),
  16383. weight: math.unit(269, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/danny-kapowsky/front.svg",
  16387. extra: 766 / 736,
  16388. bottom: 0.044
  16389. }
  16390. },
  16391. back: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(269, "lb"),
  16394. name: "Back",
  16395. image: {
  16396. source: "./media/characters/danny-kapowsky/back.svg",
  16397. extra: 797 / 760,
  16398. bottom: 0.025
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Macro",
  16405. height: math.unit(150, "feet"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Macro+",
  16410. height: math.unit(200, "feet")
  16411. },
  16412. {
  16413. name: "Macro++",
  16414. height: math.unit(300, "feet")
  16415. },
  16416. {
  16417. name: "Macro+++",
  16418. height: math.unit(400, "feet")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16424. {
  16425. side: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(170, "lb"),
  16428. name: "Side",
  16429. image: {
  16430. source: "./media/characters/finn/side.svg",
  16431. extra: 1953 / 1807,
  16432. bottom: 0.057
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Megamacro",
  16439. height: math.unit(14445, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(5 + 6 / 12, "feet"),
  16449. weight: math.unit(125, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/roy/front.svg",
  16453. extra: 1,
  16454. bottom: 0.11
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Micro",
  16461. height: math.unit(3, "inches"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(5 + 6 / 12, "feet")
  16467. },
  16468. {
  16469. name: "Lesser Macro",
  16470. height: math.unit(60, "feet")
  16471. },
  16472. {
  16473. name: "Greater Macro",
  16474. height: math.unit(120, "feet")
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(6, "feet"),
  16483. weight: math.unit(100, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/aevsivs/front.svg",
  16487. extra: 1,
  16488. bottom: 0.03
  16489. }
  16490. },
  16491. back: {
  16492. height: math.unit(6, "feet"),
  16493. weight: math.unit(100, "lb"),
  16494. name: "Back",
  16495. image: {
  16496. source: "./media/characters/aevsivs/back.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(2, "inches"),
  16504. default: true
  16505. },
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(5, "feet")
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(5 + 7 / 12, "feet"),
  16517. weight: math.unit(159, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/hildegard/front.svg",
  16521. extra: 289 / 269,
  16522. bottom: 7.63 / 297.8
  16523. }
  16524. },
  16525. back: {
  16526. height: math.unit(5 + 7 / 12, "feet"),
  16527. weight: math.unit(159, "lb"),
  16528. name: "Back",
  16529. image: {
  16530. source: "./media/characters/hildegard/back.svg",
  16531. extra: 280 / 260,
  16532. bottom: 2.3 / 282
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(5 + 7 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16546. {
  16547. bernard: {
  16548. height: math.unit(2 + 7 / 12, "feet"),
  16549. weight: math.unit(66, "lb"),
  16550. name: "Bernard",
  16551. rename: true,
  16552. image: {
  16553. source: "./media/characters/bernard-wilder/bernard.svg",
  16554. extra: 192 / 128,
  16555. bottom: 0.05
  16556. }
  16557. },
  16558. wilder: {
  16559. height: math.unit(5 + 8 / 12, "feet"),
  16560. weight: math.unit(143, "lb"),
  16561. name: "Wilder",
  16562. rename: true,
  16563. image: {
  16564. source: "./media/characters/bernard-wilder/wilder.svg",
  16565. extra: 361 / 312,
  16566. bottom: 0.02
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(2 + 7 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16580. {
  16581. anthro: {
  16582. height: math.unit(6 + 1 / 12, "feet"),
  16583. weight: math.unit(155, "lb"),
  16584. name: "Anthro",
  16585. image: {
  16586. source: "./media/characters/hearth/anthro.svg",
  16587. extra: 1178/1136,
  16588. bottom: 28/1206
  16589. }
  16590. },
  16591. feral: {
  16592. height: math.unit(3.78, "feet"),
  16593. weight: math.unit(35, "kg"),
  16594. name: "Feral",
  16595. image: {
  16596. source: "./media/characters/hearth/feral.svg",
  16597. extra: 153 / 135,
  16598. bottom: 0.03
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(6 + 1 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6, "feet"),
  16615. weight: math.unit(182, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/ingrid/front.svg",
  16619. extra: 294 / 268,
  16620. bottom: 0.027
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(6, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16634. {
  16635. eevee: {
  16636. height: math.unit(2 + 10 / 12, "feet"),
  16637. weight: math.unit(86, "lb"),
  16638. name: "Malgam",
  16639. image: {
  16640. source: "./media/characters/malgam/eevee.svg",
  16641. extra: 952/784,
  16642. bottom: 38/990
  16643. }
  16644. },
  16645. sylveon: {
  16646. height: math.unit(4, "feet"),
  16647. weight: math.unit(101, "lb"),
  16648. name: "Future Malgam",
  16649. rename: true,
  16650. image: {
  16651. source: "./media/characters/malgam/sylveon.svg",
  16652. extra: 371 / 325,
  16653. bottom: 0.015
  16654. }
  16655. },
  16656. gigantamax: {
  16657. height: math.unit(50, "feet"),
  16658. name: "Gigantamax Malgam",
  16659. rename: true,
  16660. image: {
  16661. source: "./media/characters/malgam/gigantamax.svg"
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(2 + 10 / 12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(5 + 11 / 12, "feet"),
  16678. weight: math.unit(188, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/fleur/front.svg",
  16682. extra: 309 / 283,
  16683. bottom: 0.007
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(5 + 11 / 12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(5 + 4 / 12, "feet"),
  16700. weight: math.unit(122, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/jude/front.svg",
  16704. extra: 288 / 273,
  16705. bottom: 0.03
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(5 + 4 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 11 / 12, "feet"),
  16722. weight: math.unit(190, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/seara/front.svg",
  16726. extra: 1,
  16727. bottom: 0.05
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 11 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(16 + 5 / 12, "feet"),
  16744. weight: math.unit(524, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/caspian-lugia/front.svg",
  16748. extra: 1,
  16749. bottom: 0.04
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(16 + 5 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 7 / 12, "feet"),
  16766. weight: math.unit(170, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/mika/front.svg",
  16770. extra: 1,
  16771. bottom: 0.016
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5 + 7 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6 + 2 / 12, "feet"),
  16788. weight: math.unit(268, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/sol/front.svg",
  16792. extra: 247 / 231,
  16793. bottom: 0.05
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(6 + 2 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16807. {
  16808. buizel: {
  16809. height: math.unit(2 + 5 / 12, "feet"),
  16810. weight: math.unit(87, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/umiko/buizel.svg",
  16814. extra: 172 / 157,
  16815. bottom: 0.01
  16816. },
  16817. form: "buizel",
  16818. default: true
  16819. },
  16820. floatzel: {
  16821. height: math.unit(5 + 9 / 12, "feet"),
  16822. weight: math.unit(250, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/umiko/floatzel.svg",
  16826. extra: 1076/1006,
  16827. bottom: 15/1091
  16828. },
  16829. form: "floatzel",
  16830. default: true
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(2 + 5 / 12, "feet"),
  16837. form: "buizel",
  16838. default: true
  16839. },
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(5 + 9 / 12, "feet"),
  16843. form: "floatzel",
  16844. default: true
  16845. },
  16846. ],
  16847. {
  16848. "buizel": {
  16849. name: "Buizel"
  16850. },
  16851. "floatzel": {
  16852. name: "Floatzel",
  16853. default: true
  16854. }
  16855. }
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(6 + 2 / 12, "feet"),
  16862. weight: math.unit(146, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/iliac/front.svg",
  16866. extra: 389 / 365,
  16867. bottom: 0.035
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6 + 2 / 12, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(6, "feet"),
  16884. weight: math.unit(170, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/topaz/front.svg",
  16888. extra: 317 / 303,
  16889. bottom: 0.055
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(6, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(5 + 11 / 12, "feet"),
  16906. weight: math.unit(144, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/gabriel/front.svg",
  16910. extra: 285 / 262,
  16911. bottom: 0.004
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(5 + 11 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16925. {
  16926. side: {
  16927. height: math.unit(6 + 5 / 12, "feet"),
  16928. weight: math.unit(300, "lb"),
  16929. name: "Side",
  16930. image: {
  16931. source: "./media/characters/tempest-suicune/side.svg",
  16932. extra: 195 / 154,
  16933. bottom: 0.04
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(6 + 5 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(7 + 2 / 12, "feet"),
  16950. weight: math.unit(322, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/vulcan/front.svg",
  16954. extra: 154 / 147,
  16955. bottom: 0.04
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(7 + 2 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(5 + 10 / 12, "feet"),
  16972. weight: math.unit(264, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/gault/front.svg",
  16976. extra: 161 / 140,
  16977. bottom: 0.028
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(5 + 10 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(6, "feet"),
  16994. weight: math.unit(150, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/shard/front.svg",
  16998. extra: 273 / 238,
  16999. bottom: 0.02
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(3 + 6 / 12, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(5 + 11 / 12, "feet"),
  17016. weight: math.unit(146, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/ashe/front.svg",
  17020. extra: 400 / 373,
  17021. bottom: 0.01
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(5 + 11 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(5 + 5 / 12, "feet"),
  17038. weight: math.unit(135, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/beatrix/front.svg",
  17042. extra: 392 / 379,
  17043. bottom: 0.01
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(6, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(6 + 2/12, "feet"),
  17060. weight: math.unit(135, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/ignatius/front.svg",
  17064. extra: 1380/1259,
  17065. bottom: 27/1407
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(6 + 2/12, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17079. {
  17080. front: {
  17081. height: math.unit(6 + 2 / 12, "feet"),
  17082. weight: math.unit(138, "lb"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/mei-li/front.svg",
  17086. extra: 237 / 229,
  17087. bottom: 0.03
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(6 + 2 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(2 + 4 / 12, "feet"),
  17104. weight: math.unit(62, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/puru/front.svg",
  17108. extra: 206 / 149,
  17109. bottom: 0.06
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(2 + 4 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17123. {
  17124. anthro: {
  17125. height: math.unit(5 + 8/12, "feet"),
  17126. weight: math.unit(200, "lb"),
  17127. energyNeed: math.unit(2000, "kcal"),
  17128. name: "Anthro",
  17129. image: {
  17130. source: "./media/characters/kee/anthro.svg",
  17131. extra: 3251/3184,
  17132. bottom: 250/3501
  17133. }
  17134. },
  17135. taur: {
  17136. height: math.unit(11, "feet"),
  17137. weight: math.unit(500, "lb"),
  17138. energyNeed: math.unit(5000, "kcal"),
  17139. name: "Taur",
  17140. image: {
  17141. source: "./media/characters/kee/taur.svg",
  17142. extra: 1362/1320,
  17143. bottom: 83/1445
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(5 + 8/12, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "Macro",
  17155. height: math.unit(35, "feet")
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17161. {
  17162. anthro: {
  17163. height: math.unit(7, "feet"),
  17164. weight: math.unit(190, "lb"),
  17165. name: "Anthro",
  17166. image: {
  17167. source: "./media/characters/cobalt-dracha/anthro.svg",
  17168. extra: 231 / 225,
  17169. bottom: 0.04
  17170. }
  17171. },
  17172. feral: {
  17173. height: math.unit(9 + 7 / 12, "feet"),
  17174. weight: math.unit(294, "lb"),
  17175. name: "Feral",
  17176. image: {
  17177. source: "./media/characters/cobalt-dracha/feral.svg",
  17178. extra: 692 / 633,
  17179. bottom: 0.05
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(7, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17193. {
  17194. fallen: {
  17195. height: math.unit(11 + 8 / 12, "feet"),
  17196. weight: math.unit(485, "lb"),
  17197. name: "Java (Fallen)",
  17198. rename: true,
  17199. image: {
  17200. source: "./media/characters/java/fallen.svg",
  17201. extra: 226 / 208,
  17202. bottom: 0.005
  17203. }
  17204. },
  17205. godkin: {
  17206. height: math.unit(10 + 6 / 12, "feet"),
  17207. weight: math.unit(328, "lb"),
  17208. name: "Java (Godkin)",
  17209. rename: true,
  17210. image: {
  17211. source: "./media/characters/java/godkin.svg",
  17212. extra: 1104/1068,
  17213. bottom: 36/1140
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(11 + 8 / 12, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(5 + 9 / 12, "feet"),
  17230. weight: math.unit(170, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/purna/front.svg",
  17234. extra: 239 / 229,
  17235. bottom: 0.01
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(5 + 9 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(5 + 9 / 12, "feet"),
  17252. weight: math.unit(142, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/kuva/front.svg",
  17256. extra: 281 / 271,
  17257. bottom: 0.006
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(5 + 9 / 12, "feet"),
  17265. default: true
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17271. {
  17272. anthro: {
  17273. height: math.unit(9 + 2 / 12, "feet"),
  17274. weight: math.unit(270, "lb"),
  17275. name: "Anthro",
  17276. image: {
  17277. source: "./media/characters/embra/anthro.svg",
  17278. extra: 200 / 187,
  17279. bottom: 0.02
  17280. }
  17281. },
  17282. feral: {
  17283. height: math.unit(18 + 8 / 12, "feet"),
  17284. weight: math.unit(576, "lb"),
  17285. name: "Feral",
  17286. image: {
  17287. source: "./media/characters/embra/feral.svg",
  17288. extra: 152 / 137,
  17289. bottom: 0.037
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(9 + 2 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17303. {
  17304. anthro: {
  17305. height: math.unit(10 + 9 / 12, "feet"),
  17306. weight: math.unit(224, "lb"),
  17307. name: "Anthro",
  17308. image: {
  17309. source: "./media/characters/grottos/anthro.svg",
  17310. extra: 350 / 332,
  17311. bottom: 0.045
  17312. }
  17313. },
  17314. feral: {
  17315. height: math.unit(20 + 7 / 12, "feet"),
  17316. weight: math.unit(629, "lb"),
  17317. name: "Feral",
  17318. image: {
  17319. source: "./media/characters/grottos/feral.svg",
  17320. extra: 207 / 190,
  17321. bottom: 0.05
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(10 + 9 / 12, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17335. {
  17336. anthro: {
  17337. height: math.unit(9 + 6 / 12, "feet"),
  17338. weight: math.unit(298, "lb"),
  17339. name: "Anthro",
  17340. image: {
  17341. source: "./media/characters/frifna/anthro.svg",
  17342. extra: 282 / 269,
  17343. bottom: 0.015
  17344. }
  17345. },
  17346. feral: {
  17347. height: math.unit(16 + 2 / 12, "feet"),
  17348. weight: math.unit(624, "lb"),
  17349. name: "Feral",
  17350. image: {
  17351. source: "./media/characters/frifna/feral.svg"
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(9 + 6 / 12, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6 + 2 / 12, "feet"),
  17368. weight: math.unit(168, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/elise/front.svg",
  17372. extra: 276 / 271
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6 + 2 / 12, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(5 + 10 / 12, "feet"),
  17389. weight: math.unit(210, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/glade/front.svg",
  17393. extra: 258 / 247,
  17394. bottom: 0.008
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(5 + 10 / 12, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(5 + 10 / 12, "feet"),
  17411. weight: math.unit(129, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/rina/front.svg",
  17415. extra: 266 / 255,
  17416. bottom: 0.005
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(5 + 10 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6 + 1 / 12, "feet"),
  17433. weight: math.unit(192, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/veronica/front.svg",
  17437. extra: 319 / 309,
  17438. bottom: 0.005
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(6 + 1 / 12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(9 + 3 / 12, "feet"),
  17455. weight: math.unit(1100, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/braxton/front.svg",
  17459. extra: 1057 / 984,
  17460. bottom: 0.05
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(9 + 3 / 12, "feet")
  17468. },
  17469. {
  17470. name: "Giant",
  17471. height: math.unit(300, "feet"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(700, "feet")
  17477. },
  17478. {
  17479. name: "Megamacro",
  17480. height: math.unit(6000, "feet")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(6 + 7 / 12, "feet"),
  17489. weight: math.unit(150, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/blue-feyonics/front.svg",
  17493. extra: 1403 / 1306,
  17494. bottom: 0.047
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6 + 7 / 12, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(1.8, "meters"),
  17511. weight: math.unit(60, "kg"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/maxwell/front.svg",
  17515. extra: 2060 / 1873
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Micro",
  17522. height: math.unit(1, "mm")
  17523. },
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(1.8, "meter"),
  17527. default: true
  17528. },
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(30, "meters")
  17532. },
  17533. {
  17534. name: "Megamacro",
  17535. height: math.unit(10, "km")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(150, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/jack/front.svg",
  17548. extra: 1754 / 1640,
  17549. bottom: 0.01
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(80000, "feet"),
  17557. default: true
  17558. },
  17559. {
  17560. name: "Max size",
  17561. height: math.unit(10, "lightyears")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17567. {
  17568. urban: {
  17569. height: math.unit(5, "feet"),
  17570. weight: math.unit(240, "lb"),
  17571. name: "Urban",
  17572. image: {
  17573. source: "./media/characters/cafat/urban.svg",
  17574. extra: 1223/1126,
  17575. bottom: 205/1428
  17576. }
  17577. },
  17578. summer: {
  17579. height: math.unit(5, "feet"),
  17580. weight: math.unit(240, "lb"),
  17581. name: "Summer",
  17582. image: {
  17583. source: "./media/characters/cafat/summer.svg",
  17584. extra: 1223/1126,
  17585. bottom: 205/1428
  17586. }
  17587. },
  17588. winter: {
  17589. height: math.unit(5, "feet"),
  17590. weight: math.unit(240, "lb"),
  17591. name: "Winter",
  17592. image: {
  17593. source: "./media/characters/cafat/winter.svg",
  17594. extra: 1223/1126,
  17595. bottom: 205/1428
  17596. }
  17597. },
  17598. lingerie: {
  17599. height: math.unit(5, "feet"),
  17600. weight: math.unit(240, "lb"),
  17601. name: "Lingerie",
  17602. image: {
  17603. source: "./media/characters/cafat/lingerie.svg",
  17604. extra: 1223/1126,
  17605. bottom: 205/1428
  17606. }
  17607. },
  17608. upright: {
  17609. height: math.unit(6.3, "feet"),
  17610. weight: math.unit(240, "lb"),
  17611. name: "Upright",
  17612. image: {
  17613. source: "./media/characters/cafat/upright.svg",
  17614. bottom: 0.01
  17615. }
  17616. },
  17617. uprightFull: {
  17618. height: math.unit(6.3, "feet"),
  17619. weight: math.unit(240, "lb"),
  17620. name: "Upright (Full)",
  17621. image: {
  17622. source: "./media/characters/cafat/upright-full.svg",
  17623. bottom: 0.01
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Small",
  17630. height: math.unit(5, "feet"),
  17631. default: true
  17632. },
  17633. {
  17634. name: "Large",
  17635. height: math.unit(13, "feet")
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(6, "feet"),
  17644. weight: math.unit(150, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/verin-raharra/front.svg",
  17648. extra: 5019 / 4835,
  17649. bottom: 0.023
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(7 + 5 / 12, "feet"),
  17657. default: true
  17658. },
  17659. {
  17660. name: "Upsized",
  17661. height: math.unit(20, "feet")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(7, "feet"),
  17670. weight: math.unit(230, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/nakata/front.svg",
  17674. extra: 1.005,
  17675. bottom: 0.01
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7, "feet"),
  17683. default: true
  17684. },
  17685. {
  17686. name: "Big",
  17687. height: math.unit(14, "feet")
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(400, "feet")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(4.91, "feet"),
  17700. weight: math.unit(100, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/lily/front.svg",
  17704. extra: 1585 / 1415,
  17705. bottom: 0.02
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(4.91, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17719. {
  17720. laying: {
  17721. height: math.unit(4 + 4 / 12, "feet"),
  17722. weight: math.unit(600, "lb"),
  17723. name: "Laying",
  17724. image: {
  17725. source: "./media/characters/sheila/laying.svg",
  17726. extra: 1333 / 1265,
  17727. bottom: 0.16
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(4 + 4 / 12, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(190, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/sax/front.svg",
  17748. extra: 1187 / 973,
  17749. bottom: 0.042
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(4, "inches"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(6, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/pandora/front.svg",
  17770. extra: 2720 / 2556,
  17771. bottom: 0.015
  17772. }
  17773. },
  17774. back: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(150, "lb"),
  17777. name: "Back",
  17778. image: {
  17779. source: "./media/characters/pandora/back.svg",
  17780. extra: 2720 / 2556,
  17781. bottom: 0.01
  17782. }
  17783. },
  17784. beans: {
  17785. height: math.unit(6 / 8, "feet"),
  17786. name: "Beans",
  17787. image: {
  17788. source: "./media/characters/pandora/beans.svg"
  17789. }
  17790. },
  17791. collar: {
  17792. height: math.unit(0.31, "feet"),
  17793. name: "Collar",
  17794. image: {
  17795. source: "./media/characters/pandora/collar.svg"
  17796. }
  17797. },
  17798. skirt: {
  17799. height: math.unit(6, "feet"),
  17800. weight: math.unit(150, "lb"),
  17801. name: "Skirt",
  17802. image: {
  17803. source: "./media/characters/pandora/skirt.svg",
  17804. extra: 1622 / 1525,
  17805. bottom: 0.015
  17806. }
  17807. },
  17808. hoodie: {
  17809. height: math.unit(6, "feet"),
  17810. weight: math.unit(150, "lb"),
  17811. name: "Hoodie",
  17812. image: {
  17813. source: "./media/characters/pandora/hoodie.svg",
  17814. extra: 1622 / 1525,
  17815. bottom: 0.015
  17816. }
  17817. },
  17818. casual: {
  17819. height: math.unit(6, "feet"),
  17820. weight: math.unit(150, "lb"),
  17821. name: "Casual",
  17822. image: {
  17823. source: "./media/characters/pandora/casual.svg",
  17824. extra: 1622 / 1525,
  17825. bottom: 0.015
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(6, "feet")
  17833. },
  17834. {
  17835. name: "Big Steppy",
  17836. height: math.unit(1, "km"),
  17837. default: true
  17838. },
  17839. {
  17840. name: "Galactic Steppy",
  17841. height: math.unit(2, "gigameters")
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17847. {
  17848. side: {
  17849. height: math.unit(10, "feet"),
  17850. weight: math.unit(800, "kg"),
  17851. name: "Side",
  17852. image: {
  17853. source: "./media/characters/venio-darcony/side.svg",
  17854. extra: 1373 / 1003,
  17855. bottom: 0.037
  17856. }
  17857. },
  17858. front: {
  17859. height: math.unit(19, "feet"),
  17860. weight: math.unit(800, "kg"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/venio-darcony/front.svg"
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(19, "feet"),
  17868. weight: math.unit(800, "kg"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/venio-darcony/back.svg"
  17872. }
  17873. },
  17874. sideNsfw: {
  17875. height: math.unit(10, "feet"),
  17876. weight: math.unit(800, "kg"),
  17877. name: "Side (NSFW)",
  17878. image: {
  17879. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17880. extra: 1373 / 1003,
  17881. bottom: 0.037
  17882. }
  17883. },
  17884. frontNsfw: {
  17885. height: math.unit(19, "feet"),
  17886. weight: math.unit(800, "kg"),
  17887. name: "Front (NSFW)",
  17888. image: {
  17889. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17890. }
  17891. },
  17892. backNsfw: {
  17893. height: math.unit(19, "feet"),
  17894. weight: math.unit(800, "kg"),
  17895. name: "Back (NSFW)",
  17896. image: {
  17897. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17898. }
  17899. },
  17900. sideArmored: {
  17901. height: math.unit(10, "feet"),
  17902. weight: math.unit(800, "kg"),
  17903. name: "Side (Armored)",
  17904. image: {
  17905. source: "./media/characters/venio-darcony/side-armored.svg",
  17906. extra: 1373 / 1003,
  17907. bottom: 0.037
  17908. }
  17909. },
  17910. frontArmored: {
  17911. height: math.unit(19, "feet"),
  17912. weight: math.unit(900, "kg"),
  17913. name: "Front (Armored)",
  17914. image: {
  17915. source: "./media/characters/venio-darcony/front-armored.svg"
  17916. }
  17917. },
  17918. backArmored: {
  17919. height: math.unit(19, "feet"),
  17920. weight: math.unit(900, "kg"),
  17921. name: "Back (Armored)",
  17922. image: {
  17923. source: "./media/characters/venio-darcony/back-armored.svg"
  17924. }
  17925. },
  17926. sword: {
  17927. height: math.unit(10, "feet"),
  17928. weight: math.unit(50, "lb"),
  17929. name: "Sword",
  17930. image: {
  17931. source: "./media/characters/venio-darcony/sword.svg"
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(10, "feet")
  17939. },
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(130, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Macro+",
  17947. height: math.unit(240, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(150, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/veski/front.svg",
  17960. extra: 1299 / 1225,
  17961. bottom: 0.04
  17962. }
  17963. },
  17964. back: {
  17965. height: math.unit(6, "feet"),
  17966. weight: math.unit(150, "lb"),
  17967. name: "Back",
  17968. image: {
  17969. source: "./media/characters/veski/back.svg",
  17970. extra: 1299 / 1225,
  17971. bottom: 0.008
  17972. }
  17973. },
  17974. maw: {
  17975. height: math.unit(1.5 * 1.21, "feet"),
  17976. name: "Maw",
  17977. image: {
  17978. source: "./media/characters/veski/maw.svg"
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Macro",
  17985. height: math.unit(2, "km"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(5 + 7 / 12, "feet"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/isabelle/front.svg",
  17998. extra: 2130 / 1976,
  17999. bottom: 0.05
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Supermicro",
  18006. height: math.unit(10, "micrometers")
  18007. },
  18008. {
  18009. name: "Micro",
  18010. height: math.unit(1, "inch")
  18011. },
  18012. {
  18013. name: "Tiny",
  18014. height: math.unit(5, "inches")
  18015. },
  18016. {
  18017. name: "Standard",
  18018. height: math.unit(5 + 7 / 12, "inches")
  18019. },
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(80, "meters"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Megamacro",
  18027. height: math.unit(250, "meters")
  18028. },
  18029. {
  18030. name: "Gigamacro",
  18031. height: math.unit(5, "km")
  18032. },
  18033. {
  18034. name: "Cosmic",
  18035. height: math.unit(2.5e6, "miles")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/hanzo/front.svg",
  18048. extra: 374 / 344,
  18049. bottom: 0.02
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(8, "feet"),
  18057. default: true
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(7, "feet"),
  18066. weight: math.unit(130, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/anna/front.svg",
  18070. extra: 169 / 145,
  18071. bottom: 0.06
  18072. }
  18073. },
  18074. full: {
  18075. height: math.unit(4.96, "feet"),
  18076. weight: math.unit(220, "lb"),
  18077. name: "Full",
  18078. image: {
  18079. source: "./media/characters/anna/full.svg",
  18080. extra: 138 / 114,
  18081. bottom: 0.15
  18082. }
  18083. },
  18084. tongue: {
  18085. height: math.unit(2.53, "feet"),
  18086. name: "Tongue",
  18087. image: {
  18088. source: "./media/characters/anna/tongue.svg"
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(7, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(7, "feet"),
  18105. weight: math.unit(150, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/ian-corvid/front.svg",
  18109. extra: 150 / 142,
  18110. bottom: 0.02
  18111. }
  18112. },
  18113. back: {
  18114. height: math.unit(7, "feet"),
  18115. weight: math.unit(150, "lb"),
  18116. name: "Back",
  18117. image: {
  18118. source: "./media/characters/ian-corvid/back.svg",
  18119. extra: 150 / 143,
  18120. bottom: 0.01
  18121. }
  18122. },
  18123. stomping: {
  18124. height: math.unit(7, "feet"),
  18125. weight: math.unit(150, "lb"),
  18126. name: "Stomping",
  18127. image: {
  18128. source: "./media/characters/ian-corvid/stomping.svg",
  18129. extra: 76 / 72
  18130. }
  18131. },
  18132. sitting: {
  18133. height: math.unit(7 / 1.8, "feet"),
  18134. weight: math.unit(150, "lb"),
  18135. name: "Sitting",
  18136. image: {
  18137. source: "./media/characters/ian-corvid/sitting.svg",
  18138. extra: 1400 / 1269,
  18139. bottom: 0.15
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Tiny Microw",
  18146. height: math.unit(1, "inch")
  18147. },
  18148. {
  18149. name: "Microw",
  18150. height: math.unit(6, "inches")
  18151. },
  18152. {
  18153. name: "Crow",
  18154. height: math.unit(7 + 1 / 12, "feet"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Macrow",
  18159. height: math.unit(176, "feet")
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(5 + 7 / 12, "feet"),
  18168. weight: math.unit(147, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/natalie-kellon/front.svg",
  18172. extra: 1214 / 1141,
  18173. bottom: 0.02
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Micro",
  18180. height: math.unit(1 / 16, "inch")
  18181. },
  18182. {
  18183. name: "Tiny",
  18184. height: math.unit(4, "inches")
  18185. },
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(5 + 7 / 12, "feet"),
  18189. default: true
  18190. },
  18191. {
  18192. name: "Amazon",
  18193. height: math.unit(12, "feet")
  18194. },
  18195. {
  18196. name: "Giantess",
  18197. height: math.unit(160, "meters")
  18198. },
  18199. {
  18200. name: "Titaness",
  18201. height: math.unit(800, "meters")
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(6, "feet"),
  18210. weight: math.unit(150, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/alluria/front.svg",
  18214. extra: 806 / 738,
  18215. bottom: 0.01
  18216. }
  18217. },
  18218. side: {
  18219. height: math.unit(6, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Side",
  18222. image: {
  18223. source: "./media/characters/alluria/side.svg",
  18224. extra: 800 / 750,
  18225. }
  18226. },
  18227. back: {
  18228. height: math.unit(6, "feet"),
  18229. weight: math.unit(150, "lb"),
  18230. name: "Back",
  18231. image: {
  18232. source: "./media/characters/alluria/back.svg",
  18233. extra: 806 / 738,
  18234. }
  18235. },
  18236. frontMaid: {
  18237. height: math.unit(6, "feet"),
  18238. weight: math.unit(150, "lb"),
  18239. name: "Front (Maid)",
  18240. image: {
  18241. source: "./media/characters/alluria/front-maid.svg",
  18242. extra: 806 / 738,
  18243. bottom: 0.01
  18244. }
  18245. },
  18246. sideMaid: {
  18247. height: math.unit(6, "feet"),
  18248. weight: math.unit(150, "lb"),
  18249. name: "Side (Maid)",
  18250. image: {
  18251. source: "./media/characters/alluria/side-maid.svg",
  18252. extra: 800 / 750,
  18253. bottom: 0.005
  18254. }
  18255. },
  18256. backMaid: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Back (Maid)",
  18260. image: {
  18261. source: "./media/characters/alluria/back-maid.svg",
  18262. extra: 806 / 738,
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Micro",
  18269. height: math.unit(6, "inches"),
  18270. default: true
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(6, "feet"),
  18279. weight: math.unit(150, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/kyle/front.svg",
  18283. extra: 1069 / 962,
  18284. bottom: 77.228 / 1727.45
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(150, "feet"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(300, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/duncan/front.svg",
  18305. extra: 1650 / 1482,
  18306. bottom: 0.05
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(100, "feet"),
  18314. default: true
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(5 + 4 / 12, "feet"),
  18323. weight: math.unit(220, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/memory/front.svg",
  18327. extra: 3641 / 3545,
  18328. bottom: 0.03
  18329. }
  18330. },
  18331. back: {
  18332. height: math.unit(5 + 4 / 12, "feet"),
  18333. weight: math.unit(220, "lb"),
  18334. name: "Back",
  18335. image: {
  18336. source: "./media/characters/memory/back.svg",
  18337. extra: 3641 / 3545,
  18338. bottom: 0.025
  18339. }
  18340. },
  18341. frontSkirt: {
  18342. height: math.unit(5 + 4 / 12, "feet"),
  18343. weight: math.unit(220, "lb"),
  18344. name: "Front (Skirt)",
  18345. image: {
  18346. source: "./media/characters/memory/front-skirt.svg",
  18347. extra: 3641 / 3545,
  18348. bottom: 0.03
  18349. }
  18350. },
  18351. frontDress: {
  18352. height: math.unit(5 + 4 / 12, "feet"),
  18353. weight: math.unit(220, "lb"),
  18354. name: "Front (Dress)",
  18355. image: {
  18356. source: "./media/characters/memory/front-dress.svg",
  18357. extra: 3641 / 3545,
  18358. bottom: 0.03
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Micro",
  18365. height: math.unit(6, "inches"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(5 + 4 / 12, "feet")
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(4 + 11 / 12, "feet"),
  18379. weight: math.unit(100, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/luno/front.svg",
  18383. extra: 1535 / 1487,
  18384. bottom: 0.03
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Micro",
  18391. height: math.unit(3, "inches")
  18392. },
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(4 + 11 / 12, "feet"),
  18396. default: true
  18397. },
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(300, "feet")
  18401. },
  18402. {
  18403. name: "Megamacro",
  18404. height: math.unit(700, "miles")
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(6 + 2 / 12, "feet"),
  18413. weight: math.unit(170, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/jamesy/front.svg",
  18417. extra: 440 / 382,
  18418. bottom: 0.005
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Micro",
  18425. height: math.unit(3, "inches")
  18426. },
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(6 + 2 / 12, "feet"),
  18430. default: true
  18431. },
  18432. {
  18433. name: "Macro",
  18434. height: math.unit(300, "feet")
  18435. },
  18436. {
  18437. name: "Megamacro",
  18438. height: math.unit(700, "miles")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6, "feet"),
  18447. weight: math.unit(160, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/mark/front.svg",
  18451. extra: 3300 / 3100,
  18452. bottom: 136.42 / 3440.47
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(120, "meters")
  18460. },
  18461. {
  18462. name: "Bigger Macro",
  18463. height: math.unit(350, "meters")
  18464. },
  18465. {
  18466. name: "Megamacro",
  18467. height: math.unit(8, "km"),
  18468. default: true
  18469. },
  18470. {
  18471. name: "Continental",
  18472. height: math.unit(4550, "km")
  18473. },
  18474. {
  18475. name: "Planetary",
  18476. height: math.unit(65000, "km")
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18482. {
  18483. front: {
  18484. height: math.unit(6, "feet"),
  18485. weight: math.unit(400, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/mac/front.svg",
  18489. extra: 1048 / 987.7,
  18490. bottom: 60 / 1107.6,
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(500, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(5 + 2 / 12, "feet"),
  18507. weight: math.unit(190, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/bari/front.svg",
  18511. extra: 3156 / 2880,
  18512. bottom: 0.03
  18513. }
  18514. },
  18515. back: {
  18516. height: math.unit(5 + 2 / 12, "feet"),
  18517. weight: math.unit(190, "lb"),
  18518. name: "Back",
  18519. image: {
  18520. source: "./media/characters/bari/back.svg",
  18521. extra: 3260 / 2834,
  18522. bottom: 0.025
  18523. }
  18524. },
  18525. frontPlush: {
  18526. height: math.unit(5 + 2 / 12, "feet"),
  18527. weight: math.unit(190, "lb"),
  18528. name: "Front (Plush)",
  18529. image: {
  18530. source: "./media/characters/bari/front-plush.svg",
  18531. extra: 1112 / 1061,
  18532. bottom: 0.002
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Micro",
  18539. height: math.unit(3, "inches")
  18540. },
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(5 + 2 / 12, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(20, "feet")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(6 + 1 / 12, "feet"),
  18557. weight: math.unit(275, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/hunter-misha-raven/front.svg"
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Mortal",
  18567. height: math.unit(6 + 1 / 12, "feet")
  18568. },
  18569. {
  18570. name: "Divine",
  18571. height: math.unit(1.12134e34, "parsecs"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18578. {
  18579. front: {
  18580. height: math.unit(6 + 3 / 12, "feet"),
  18581. weight: math.unit(220, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/max-calore/front.svg",
  18585. extra: 1700 / 1648,
  18586. bottom: 0.01
  18587. }
  18588. },
  18589. back: {
  18590. height: math.unit(6 + 3 / 12, "feet"),
  18591. weight: math.unit(220, "lb"),
  18592. name: "Back",
  18593. image: {
  18594. source: "./media/characters/max-calore/back.svg",
  18595. extra: 1700 / 1648,
  18596. bottom: 0.01
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(6 + 3 / 12, "feet"),
  18604. default: true
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18610. {
  18611. side: {
  18612. height: math.unit(2 + 8 / 12, "feet"),
  18613. weight: math.unit(99, "lb"),
  18614. name: "Side",
  18615. image: {
  18616. source: "./media/characters/aspen/side.svg",
  18617. extra: 152 / 138,
  18618. bottom: 0.032
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(2 + 8 / 12, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18632. {
  18633. side: {
  18634. height: math.unit(3 + 2 / 12, "feet"),
  18635. weight: math.unit(224, "lb"),
  18636. name: "Side",
  18637. image: {
  18638. source: "./media/characters/sheila-feral-wolf/side.svg",
  18639. extra: 179 / 166,
  18640. bottom: 0.03
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(3 + 2 / 12, "feet"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18654. {
  18655. side: {
  18656. height: math.unit(1 + 9 / 12, "feet"),
  18657. weight: math.unit(38, "lb"),
  18658. name: "Side",
  18659. image: {
  18660. source: "./media/characters/michelle/side.svg",
  18661. extra: 147 / 136.7,
  18662. bottom: 0.03
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(1 + 9 / 12, "feet"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(1.54, "feet"),
  18679. weight: math.unit(50, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/nino/front.svg"
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(1.54, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(1.49, "feet"),
  18699. weight: math.unit(45, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/viola/front.svg"
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(1.49, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(6 + 5 / 12, "feet"),
  18719. weight: math.unit(580, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/atlas/front.svg",
  18723. extra: 298.5 / 290,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(6 + 5 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18738. {
  18739. side: {
  18740. height: math.unit(15.6, "inches"),
  18741. weight: math.unit(10, "lb"),
  18742. name: "Side",
  18743. image: {
  18744. source: "./media/characters/davy/side.svg",
  18745. extra: 200 / 170,
  18746. bottom: 0.01
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(15.6, "inches"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18760. {
  18761. side: {
  18762. height: math.unit(4 + 8 / 12, "feet"),
  18763. weight: math.unit(166, "lb"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/fiona/side.svg",
  18767. extra: 232 / 220,
  18768. bottom: 0.03
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(4 + 8 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18782. {
  18783. front: {
  18784. height: math.unit(26, "inches"),
  18785. weight: math.unit(35, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/lyla/front.svg",
  18789. bottom: 0.1
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(3, "feet"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18803. {
  18804. side: {
  18805. height: math.unit(1.8, "feet"),
  18806. weight: math.unit(44, "lb"),
  18807. name: "Side",
  18808. image: {
  18809. source: "./media/characters/perseus/side.svg",
  18810. bottom: 0.21
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(1.8, "feet"),
  18818. default: true
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18824. {
  18825. side: {
  18826. height: math.unit(4 + 2 / 12, "feet"),
  18827. weight: math.unit(20, "lb"),
  18828. name: "Side",
  18829. image: {
  18830. source: "./media/characters/remus/side.svg"
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(4 + 2 / 12, "feet"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(4 + 11 / 12, "feet"),
  18847. weight: math.unit(114, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/raf/front.svg",
  18851. extra: 1504/1339,
  18852. bottom: 26/1530
  18853. }
  18854. },
  18855. side: {
  18856. height: math.unit(4 + 11 / 12, "feet"),
  18857. weight: math.unit(114, "lb"),
  18858. name: "Side",
  18859. image: {
  18860. source: "./media/characters/raf/side.svg",
  18861. extra: 1466/1316,
  18862. bottom: 29/1495
  18863. }
  18864. },
  18865. paw: {
  18866. height: math.unit(1.45, "feet"),
  18867. name: "Paw",
  18868. image: {
  18869. source: "./media/characters/raf/paw.svg"
  18870. },
  18871. extraAttributes: {
  18872. "toeSize": {
  18873. name: "Toe Size",
  18874. power: 2,
  18875. type: "area",
  18876. base: math.unit(0.004, "m^2")
  18877. },
  18878. "padSize": {
  18879. name: "Pad Size",
  18880. power: 2,
  18881. type: "area",
  18882. base: math.unit(0.04, "m^2")
  18883. },
  18884. "footSize": {
  18885. name: "Foot Size",
  18886. power: 2,
  18887. type: "area",
  18888. base: math.unit(0.08, "m^2")
  18889. },
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Micro",
  18896. height: math.unit(2, "inches")
  18897. },
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(4 + 11 / 12, "feet"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(70, "feet")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(1.5, "meters"),
  18914. weight: math.unit(68, "kg"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/liam-einarr/front.svg",
  18918. extra: 2822 / 2666
  18919. }
  18920. },
  18921. back: {
  18922. height: math.unit(1.5, "meters"),
  18923. weight: math.unit(68, "kg"),
  18924. name: "Back",
  18925. image: {
  18926. source: "./media/characters/liam-einarr/back.svg",
  18927. extra: 2822 / 2666,
  18928. bottom: 0.015
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(1.5, "meters"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Macro",
  18940. height: math.unit(150, "meters")
  18941. },
  18942. {
  18943. name: "Megamacro",
  18944. height: math.unit(35, "km")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6, "feet"),
  18953. weight: math.unit(75, "kg"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/linda/front.svg",
  18957. extra: 930 / 874,
  18958. bottom: 0.004
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6 + 8 / 12, "feet"),
  18975. weight: math.unit(220, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/caylex/front.svg",
  18979. extra: 821 / 772,
  18980. bottom: 0.07
  18981. }
  18982. },
  18983. back: {
  18984. height: math.unit(6 + 8 / 12, "feet"),
  18985. weight: math.unit(220, "lb"),
  18986. name: "Back",
  18987. image: {
  18988. source: "./media/characters/caylex/back.svg",
  18989. extra: 821 / 772,
  18990. bottom: 0.022
  18991. }
  18992. },
  18993. hand: {
  18994. height: math.unit(1.25, "feet"),
  18995. name: "Hand",
  18996. image: {
  18997. source: "./media/characters/caylex/hand.svg"
  18998. }
  18999. },
  19000. foot: {
  19001. height: math.unit(1.6, "feet"),
  19002. name: "Foot",
  19003. image: {
  19004. source: "./media/characters/caylex/foot.svg"
  19005. }
  19006. },
  19007. armored: {
  19008. height: math.unit(6 + 8 / 12, "feet"),
  19009. weight: math.unit(250, "lb"),
  19010. name: "Armored",
  19011. image: {
  19012. source: "./media/characters/caylex/armored.svg",
  19013. extra: 1420 / 1310,
  19014. bottom: 0.045
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 8 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Normal+",
  19026. height: math.unit(12, "feet")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(7 + 6 / 12, "feet"),
  19035. weight: math.unit(288, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/alana/front.svg",
  19039. extra: 679 / 653,
  19040. bottom: 22.5 / 701
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(7 + 6 / 12, "feet")
  19048. },
  19049. {
  19050. name: "Large",
  19051. height: math.unit(50, "feet")
  19052. },
  19053. {
  19054. name: "Macro",
  19055. height: math.unit(100, "feet"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Macro+",
  19060. height: math.unit(200, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(6 + 1 / 12, "feet"),
  19069. weight: math.unit(210, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/hasani/front.svg",
  19073. extra: 244 / 232,
  19074. bottom: 0.01
  19075. }
  19076. },
  19077. back: {
  19078. height: math.unit(6 + 1 / 12, "feet"),
  19079. weight: math.unit(210, "lb"),
  19080. name: "Back",
  19081. image: {
  19082. source: "./media/characters/hasani/back.svg",
  19083. extra: 244 / 232,
  19084. bottom: 0.01
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(6 + 1 / 12, "feet")
  19092. },
  19093. {
  19094. name: "Macro",
  19095. height: math.unit(175, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(1.82, "meters"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/nita/front.svg",
  19109. extra: 2473 / 2363,
  19110. bottom: 0.01
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(1.82, "m")
  19118. },
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(300, "m")
  19122. },
  19123. {
  19124. name: "Mistake Canon",
  19125. height: math.unit(0.5, "miles"),
  19126. default: true
  19127. },
  19128. {
  19129. name: "Big Mistake",
  19130. height: math.unit(13, "miles")
  19131. },
  19132. {
  19133. name: "Playing God",
  19134. height: math.unit(2450, "miles")
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(4, "feet"),
  19143. weight: math.unit(120, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/shiriko/front.svg",
  19147. extra: 970/934,
  19148. bottom: 5/975
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(4, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(6, "feet"),
  19165. name: "front",
  19166. image: {
  19167. source: "./media/characters/deja/front.svg",
  19168. extra: 926 / 840,
  19169. bottom: 0.07
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Planck Length",
  19176. height: math.unit(1.6e-35, "meters")
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(30.48, "meters"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Universal",
  19185. height: math.unit(8.8e26, "meters")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19191. {
  19192. side: {
  19193. height: math.unit(8, "feet"),
  19194. weight: math.unit(6300, "lb"),
  19195. name: "Side",
  19196. image: {
  19197. source: "./media/characters/anima/side.svg",
  19198. bottom: 0.035
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(8, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(8, "feet"),
  19215. weight: math.unit(350, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/bianca/front.svg",
  19219. extra: 234 / 225,
  19220. bottom: 0.03
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(8, "feet"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(11 + 5/12, "feet"),
  19237. weight: math.unit(1200, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/adinia/front.svg",
  19241. extra: 1767/1641,
  19242. bottom: 44/1811
  19243. },
  19244. extraAttributes: {
  19245. "energyIntake": {
  19246. name: "Energy Intake",
  19247. power: 3,
  19248. type: "energy",
  19249. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19250. },
  19251. }
  19252. },
  19253. back: {
  19254. height: math.unit(11 + 5/12, "feet"),
  19255. weight: math.unit(1200, "lb"),
  19256. name: "Back",
  19257. image: {
  19258. source: "./media/characters/adinia/back.svg",
  19259. extra: 1834/1684,
  19260. bottom: 14/1848
  19261. },
  19262. extraAttributes: {
  19263. "energyIntake": {
  19264. name: "Energy Intake",
  19265. power: 3,
  19266. type: "energy",
  19267. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19268. },
  19269. }
  19270. },
  19271. maw: {
  19272. height: math.unit(3.79, "feet"),
  19273. name: "Maw",
  19274. image: {
  19275. source: "./media/characters/adinia/maw.svg"
  19276. }
  19277. },
  19278. rump: {
  19279. height: math.unit(4.6, "feet"),
  19280. name: "Rump",
  19281. image: {
  19282. source: "./media/characters/adinia/rump.svg"
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(11 + 5 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(3, "meters"),
  19299. weight: math.unit(200, "kg"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/lykasa/front.svg",
  19303. extra: 1076 / 976,
  19304. bottom: 0.06
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(3, "meters")
  19312. },
  19313. {
  19314. name: "Kaiju",
  19315. height: math.unit(120, "meters"),
  19316. default: true
  19317. },
  19318. {
  19319. name: "Mega Kaiju",
  19320. height: math.unit(240, "km")
  19321. },
  19322. {
  19323. name: "Giga Kaiju",
  19324. height: math.unit(400, "megameters")
  19325. },
  19326. {
  19327. name: "Tera Kaiju",
  19328. height: math.unit(800, "gigameters")
  19329. },
  19330. {
  19331. name: "Kaiju Dragon Goddess",
  19332. height: math.unit(26, "zettaparsecs")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19338. {
  19339. side: {
  19340. height: math.unit(283 / 124 * 6, "feet"),
  19341. weight: math.unit(35000, "lb"),
  19342. name: "Side",
  19343. image: {
  19344. source: "./media/characters/malfaren/side.svg",
  19345. extra: 1310/529,
  19346. bottom: 24/1334
  19347. }
  19348. },
  19349. front: {
  19350. height: math.unit(22.36, "feet"),
  19351. weight: math.unit(35000, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/malfaren/front.svg",
  19355. extra: 1237/1115,
  19356. bottom: 32/1269
  19357. }
  19358. },
  19359. maw: {
  19360. height: math.unit(6.9, "feet"),
  19361. name: "Maw",
  19362. image: {
  19363. source: "./media/characters/malfaren/maw.svg"
  19364. }
  19365. },
  19366. dick: {
  19367. height: math.unit(6.19, "feet"),
  19368. name: "Dick",
  19369. image: {
  19370. source: "./media/characters/malfaren/dick.svg"
  19371. }
  19372. },
  19373. eye: {
  19374. height: math.unit(0.69, "feet"),
  19375. name: "Eye",
  19376. image: {
  19377. source: "./media/characters/malfaren/eye.svg"
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Big",
  19384. height: math.unit(283 / 162 * 6, "feet"),
  19385. },
  19386. {
  19387. name: "Bigger",
  19388. height: math.unit(283 / 124 * 6, "feet")
  19389. },
  19390. {
  19391. name: "Massive",
  19392. height: math.unit(283 / 92 * 6, "feet"),
  19393. default: true
  19394. },
  19395. {
  19396. name: "👀💦",
  19397. height: math.unit(283 / 73 * 6, "feet"),
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(1.7, "m"),
  19406. weight: math.unit(70, "kg"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/kernel/front.svg",
  19410. extra: 222 / 210,
  19411. bottom: 0.007
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Nano",
  19418. height: math.unit(17, "micrometers")
  19419. },
  19420. {
  19421. name: "Micro",
  19422. height: math.unit(1.7, "mm")
  19423. },
  19424. {
  19425. name: "Small",
  19426. height: math.unit(1.7, "cm")
  19427. },
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(1.7, "m"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(1.75, "meters"),
  19440. weight: math.unit(65, "kg"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/jayne-folest/front.svg",
  19444. extra: 2115 / 2007,
  19445. bottom: 0.02
  19446. }
  19447. },
  19448. back: {
  19449. height: math.unit(1.75, "meters"),
  19450. weight: math.unit(65, "kg"),
  19451. name: "Back",
  19452. image: {
  19453. source: "./media/characters/jayne-folest/back.svg",
  19454. extra: 2115 / 2007,
  19455. bottom: 0.005
  19456. }
  19457. },
  19458. frontClothed: {
  19459. height: math.unit(1.75, "meters"),
  19460. weight: math.unit(65, "kg"),
  19461. name: "Front (Clothed)",
  19462. image: {
  19463. source: "./media/characters/jayne-folest/front-clothed.svg",
  19464. extra: 2115 / 2007,
  19465. bottom: 0.035
  19466. }
  19467. },
  19468. hand: {
  19469. height: math.unit(1 / 1.260, "feet"),
  19470. name: "Hand",
  19471. image: {
  19472. source: "./media/characters/jayne-folest/hand.svg"
  19473. }
  19474. },
  19475. foot: {
  19476. height: math.unit(1 / 0.918, "feet"),
  19477. name: "Foot",
  19478. image: {
  19479. source: "./media/characters/jayne-folest/foot.svg"
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Micro",
  19486. height: math.unit(4, "cm")
  19487. },
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(1.75, "meters")
  19491. },
  19492. {
  19493. name: "Macro",
  19494. height: math.unit(47.5, "meters"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(180, "cm"),
  19504. weight: math.unit(70, "kg"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/algier/front.svg",
  19508. extra: 596 / 572,
  19509. bottom: 0.04
  19510. }
  19511. },
  19512. back: {
  19513. height: math.unit(180, "cm"),
  19514. weight: math.unit(70, "kg"),
  19515. name: "Back",
  19516. image: {
  19517. source: "./media/characters/algier/back.svg",
  19518. extra: 596 / 572,
  19519. bottom: 0.025
  19520. }
  19521. },
  19522. frontdressed: {
  19523. height: math.unit(180, "cm"),
  19524. weight: math.unit(150, "kg"),
  19525. name: "Front-dressed",
  19526. image: {
  19527. source: "./media/characters/algier/front-dressed.svg",
  19528. extra: 596 / 572,
  19529. bottom: 0.038
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Micro",
  19536. height: math.unit(5, "cm")
  19537. },
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(180, "cm"),
  19541. default: true
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(64, "m")
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19551. {
  19552. upright: {
  19553. height: math.unit(7, "feet"),
  19554. weight: math.unit(300, "lb"),
  19555. name: "Upright",
  19556. image: {
  19557. source: "./media/characters/pretzel/upright.svg",
  19558. extra: 534 / 522,
  19559. bottom: 0.065
  19560. }
  19561. },
  19562. sprawling: {
  19563. height: math.unit(3.75, "feet"),
  19564. weight: math.unit(300, "lb"),
  19565. name: "Sprawling",
  19566. image: {
  19567. source: "./media/characters/pretzel/sprawling.svg",
  19568. extra: 314 / 281,
  19569. bottom: 0.1
  19570. }
  19571. },
  19572. tongue: {
  19573. height: math.unit(2, "feet"),
  19574. name: "Tongue",
  19575. image: {
  19576. source: "./media/characters/pretzel/tongue.svg"
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(7, "feet"),
  19584. default: true
  19585. },
  19586. {
  19587. name: "Oversized",
  19588. height: math.unit(15, "feet")
  19589. },
  19590. {
  19591. name: "Huge",
  19592. height: math.unit(30, "feet")
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(250, "feet")
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19602. {
  19603. sideFront: {
  19604. height: math.unit(5 + 2 / 12, "feet"),
  19605. weight: math.unit(120, "lb"),
  19606. name: "Front Side",
  19607. image: {
  19608. source: "./media/characters/roxi/side-front.svg",
  19609. extra: 2924 / 2717,
  19610. bottom: 0.08
  19611. }
  19612. },
  19613. sideBack: {
  19614. height: math.unit(5 + 2 / 12, "feet"),
  19615. weight: math.unit(120, "lb"),
  19616. name: "Back Side",
  19617. image: {
  19618. source: "./media/characters/roxi/side-back.svg",
  19619. extra: 2904 / 2693,
  19620. bottom: 0.06
  19621. }
  19622. },
  19623. front: {
  19624. height: math.unit(5 + 2 / 12, "feet"),
  19625. weight: math.unit(120, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/roxi/front.svg",
  19629. extra: 2028 / 1907,
  19630. bottom: 0.01
  19631. }
  19632. },
  19633. frontAlt: {
  19634. height: math.unit(5 + 2 / 12, "feet"),
  19635. weight: math.unit(120, "lb"),
  19636. name: "Front (Alt)",
  19637. image: {
  19638. source: "./media/characters/roxi/front-alt.svg",
  19639. extra: 1828 / 1798,
  19640. bottom: 0.01
  19641. }
  19642. },
  19643. sitting: {
  19644. height: math.unit(2.8, "feet"),
  19645. weight: math.unit(120, "lb"),
  19646. name: "Sitting",
  19647. image: {
  19648. source: "./media/characters/roxi/sitting.svg",
  19649. extra: 2660 / 2462,
  19650. bottom: 0.1
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(5 + 2 / 12, "feet"),
  19658. default: true
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19664. {
  19665. side: {
  19666. height: math.unit(55, "feet"),
  19667. weight: math.unit(153, "tons"),
  19668. name: "Side",
  19669. image: {
  19670. source: "./media/characters/shadow/side.svg",
  19671. extra: 701 / 628,
  19672. bottom: 0.02
  19673. }
  19674. },
  19675. flying: {
  19676. height: math.unit(145, "feet"),
  19677. weight: math.unit(153, "tons"),
  19678. name: "Flying",
  19679. image: {
  19680. source: "./media/characters/shadow/flying.svg"
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(55, "feet"),
  19688. default: true
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(6, "feet"),
  19697. weight: math.unit(200, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/marcie/front.svg",
  19701. extra: 960 / 876,
  19702. bottom: 58 / 1017.87
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Macro",
  19709. height: math.unit(1, "mile"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(7, "feet"),
  19719. weight: math.unit(200, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/kachina/front.svg",
  19723. extra: 1290.68 / 1119,
  19724. bottom: 36.5 / 1327.18
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(7, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19738. {
  19739. looking: {
  19740. height: math.unit(2, "meters"),
  19741. weight: math.unit(300, "kg"),
  19742. name: "Looking",
  19743. image: {
  19744. source: "./media/characters/kash/looking.svg",
  19745. extra: 474 / 344,
  19746. bottom: 0.03
  19747. }
  19748. },
  19749. side: {
  19750. height: math.unit(2, "meters"),
  19751. weight: math.unit(300, "kg"),
  19752. name: "Side",
  19753. image: {
  19754. source: "./media/characters/kash/side.svg",
  19755. extra: 302 / 251,
  19756. bottom: 0.03
  19757. }
  19758. },
  19759. front: {
  19760. height: math.unit(2, "meters"),
  19761. weight: math.unit(300, "kg"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/kash/front.svg",
  19765. extra: 495 / 360,
  19766. bottom: 0.015
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(2, "meters"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Big",
  19778. height: math.unit(3, "meters")
  19779. },
  19780. {
  19781. name: "Large",
  19782. height: math.unit(5, "meters")
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19788. {
  19789. feeding: {
  19790. height: math.unit(6.7, "feet"),
  19791. weight: math.unit(350, "lb"),
  19792. name: "Feeding",
  19793. image: {
  19794. source: "./media/characters/lalim/feeding.svg",
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(6.7, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(9.5, "feet"),
  19811. weight: math.unit(600, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/de'vout/front.svg",
  19815. extra: 1443 / 1328,
  19816. bottom: 0.025
  19817. }
  19818. },
  19819. back: {
  19820. height: math.unit(9.5, "feet"),
  19821. weight: math.unit(600, "lb"),
  19822. name: "Back",
  19823. image: {
  19824. source: "./media/characters/de'vout/back.svg",
  19825. extra: 1443 / 1328
  19826. }
  19827. },
  19828. frontDressed: {
  19829. height: math.unit(9.5, "feet"),
  19830. weight: math.unit(600, "lb"),
  19831. name: "Front (Dressed",
  19832. image: {
  19833. source: "./media/characters/de'vout/front-dressed.svg",
  19834. extra: 1443 / 1328,
  19835. bottom: 0.025
  19836. }
  19837. },
  19838. backDressed: {
  19839. height: math.unit(9.5, "feet"),
  19840. weight: math.unit(600, "lb"),
  19841. name: "Back (Dressed",
  19842. image: {
  19843. source: "./media/characters/de'vout/back-dressed.svg",
  19844. extra: 1443 / 1328
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(9.5, "feet"),
  19852. default: true
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(8, "feet"),
  19861. weight: math.unit(225, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/talana/front.svg",
  19865. extra: 1410 / 1300,
  19866. bottom: 0.015
  19867. }
  19868. },
  19869. frontDressed: {
  19870. height: math.unit(8, "feet"),
  19871. weight: math.unit(225, "lb"),
  19872. name: "Front (Dressed",
  19873. image: {
  19874. source: "./media/characters/talana/front-dressed.svg",
  19875. extra: 1410 / 1300,
  19876. bottom: 0.015
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(8, "feet"),
  19884. default: true
  19885. },
  19886. ]
  19887. ))
  19888. characterMakers.push(() => makeCharacter(
  19889. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19890. {
  19891. side: {
  19892. height: math.unit(7.2, "feet"),
  19893. weight: math.unit(150, "lb"),
  19894. name: "Side",
  19895. image: {
  19896. source: "./media/characters/xeauvok/side.svg",
  19897. extra: 1975 / 1523,
  19898. bottom: 0.07
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(7.2, "feet"),
  19906. default: true
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19912. {
  19913. side: {
  19914. height: math.unit(4, "meters"),
  19915. weight: math.unit(2200, "kg"),
  19916. name: "Side",
  19917. image: {
  19918. source: "./media/characters/zara/side.svg",
  19919. extra: 765/744,
  19920. bottom: 156/921
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(4, "meters"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19934. {
  19935. side: {
  19936. height: math.unit(6, "feet"),
  19937. weight: math.unit(150, "lb"),
  19938. name: "Side",
  19939. image: {
  19940. source: "./media/characters/richard-dragon/side.svg",
  19941. extra: 845 / 340,
  19942. bottom: 0.017
  19943. }
  19944. },
  19945. maw: {
  19946. height: math.unit(2.97, "feet"),
  19947. name: "Maw",
  19948. image: {
  19949. source: "./media/characters/richard-dragon/maw.svg"
  19950. }
  19951. },
  19952. },
  19953. [
  19954. ]
  19955. ))
  19956. characterMakers.push(() => makeCharacter(
  19957. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19958. {
  19959. front: {
  19960. height: math.unit(4, "feet"),
  19961. weight: math.unit(100, "lb"),
  19962. name: "Front",
  19963. image: {
  19964. source: "./media/characters/richard-smeargle/front.svg",
  19965. extra: 2952 / 2820,
  19966. bottom: 0.028
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(4, "feet"),
  19974. default: true
  19975. },
  19976. {
  19977. name: "Dynamax",
  19978. height: math.unit(20, "meters")
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(6, "feet"),
  19987. weight: math.unit(110, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/klay/front.svg",
  19991. extra: 962 / 883,
  19992. bottom: 0.04
  19993. }
  19994. },
  19995. back: {
  19996. height: math.unit(6, "feet"),
  19997. weight: math.unit(110, "lb"),
  19998. name: "Back",
  19999. image: {
  20000. source: "./media/characters/klay/back.svg",
  20001. extra: 962 / 883
  20002. }
  20003. },
  20004. beans: {
  20005. height: math.unit(1.15, "feet"),
  20006. name: "Beans",
  20007. image: {
  20008. source: "./media/characters/klay/beans.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Micro",
  20015. height: math.unit(6, "inches")
  20016. },
  20017. {
  20018. name: "Mini",
  20019. height: math.unit(3, "feet")
  20020. },
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(6, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Big",
  20028. height: math.unit(25, "feet")
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(100, "feet")
  20033. },
  20034. {
  20035. name: "Megamacro",
  20036. height: math.unit(400, "feet")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(6, "feet"),
  20045. weight: math.unit(160, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/marcus/front.svg",
  20049. extra: 734 / 676,
  20050. bottom: 0.03
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Little",
  20057. height: math.unit(6, "feet")
  20058. },
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(110, "feet"),
  20062. default: true
  20063. },
  20064. {
  20065. name: "Macro",
  20066. height: math.unit(250, "feet")
  20067. },
  20068. {
  20069. name: "Megamacro",
  20070. height: math.unit(1000, "feet")
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(7, "feet"),
  20079. weight: math.unit(275, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/claude-delroute/front.svg",
  20083. extra: 902/827,
  20084. bottom: 26/928
  20085. }
  20086. },
  20087. side: {
  20088. height: math.unit(7, "feet"),
  20089. weight: math.unit(275, "lb"),
  20090. name: "Side",
  20091. image: {
  20092. source: "./media/characters/claude-delroute/side.svg",
  20093. extra: 908/853,
  20094. bottom: 16/924
  20095. }
  20096. },
  20097. back: {
  20098. height: math.unit(7, "feet"),
  20099. weight: math.unit(275, "lb"),
  20100. name: "Back",
  20101. image: {
  20102. source: "./media/characters/claude-delroute/back.svg",
  20103. extra: 911/829,
  20104. bottom: 18/929
  20105. }
  20106. },
  20107. maw: {
  20108. height: math.unit(0.6407, "meters"),
  20109. name: "Maw",
  20110. image: {
  20111. source: "./media/characters/claude-delroute/maw.svg"
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(7, "feet"),
  20119. default: true
  20120. },
  20121. {
  20122. name: "Lorge",
  20123. height: math.unit(20, "feet")
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(8 + 4 / 12, "feet"),
  20132. weight: math.unit(600, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/dragonien/front.svg",
  20136. extra: 100 / 94,
  20137. bottom: 3.3 / 103.3445
  20138. }
  20139. },
  20140. back: {
  20141. height: math.unit(8 + 4 / 12, "feet"),
  20142. weight: math.unit(600, "lb"),
  20143. name: "Back",
  20144. image: {
  20145. source: "./media/characters/dragonien/back.svg",
  20146. extra: 776 / 746,
  20147. bottom: 6.4 / 782.0616
  20148. }
  20149. },
  20150. foot: {
  20151. height: math.unit(1.54, "feet"),
  20152. name: "Foot",
  20153. image: {
  20154. source: "./media/characters/dragonien/foot.svg",
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(8 + 4 / 12, "feet"),
  20162. default: true
  20163. },
  20164. {
  20165. name: "Macro",
  20166. height: math.unit(200, "feet")
  20167. },
  20168. {
  20169. name: "Megamacro",
  20170. height: math.unit(1, "mile")
  20171. },
  20172. {
  20173. name: "Gigamacro",
  20174. height: math.unit(1000, "miles")
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(5 + 2 / 12, "feet"),
  20183. weight: math.unit(110, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/desta/front.svg",
  20187. extra: 767 / 726,
  20188. bottom: 11.7 / 779
  20189. }
  20190. },
  20191. back: {
  20192. height: math.unit(5 + 2 / 12, "feet"),
  20193. weight: math.unit(110, "lb"),
  20194. name: "Back",
  20195. image: {
  20196. source: "./media/characters/desta/back.svg",
  20197. extra: 777 / 728,
  20198. bottom: 6 / 784
  20199. }
  20200. },
  20201. frontAlt: {
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. weight: math.unit(110, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/desta/front-alt.svg",
  20207. extra: 1482 / 1417
  20208. }
  20209. },
  20210. side: {
  20211. height: math.unit(5 + 2 / 12, "feet"),
  20212. weight: math.unit(110, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/desta/side.svg",
  20216. extra: 2579 / 2491,
  20217. bottom: 0.053
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Micro",
  20224. height: math.unit(6, "inches")
  20225. },
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(5 + 2 / 12, "feet"),
  20229. default: true
  20230. },
  20231. {
  20232. name: "Macro",
  20233. height: math.unit(62, "feet")
  20234. },
  20235. {
  20236. name: "Megamacro",
  20237. height: math.unit(1800, "feet")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(10, "feet"),
  20246. weight: math.unit(700, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/storm-alystar/front.svg",
  20250. extra: 2112 / 1898,
  20251. bottom: 0.034
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Micro",
  20258. height: math.unit(3.5, "inches")
  20259. },
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(10, "feet"),
  20263. default: true
  20264. },
  20265. {
  20266. name: "Macro",
  20267. height: math.unit(400, "feet")
  20268. },
  20269. {
  20270. name: "Deific",
  20271. height: math.unit(60, "miles")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(2.35, "meters"),
  20280. weight: math.unit(119, "kg"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/ilia/front.svg",
  20284. extra: 1285 / 1255,
  20285. bottom: 0.06
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(2.35, "meters")
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(140, "meters"),
  20297. default: true
  20298. },
  20299. {
  20300. name: "Megamacro",
  20301. height: math.unit(100, "miles")
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20307. {
  20308. front: {
  20309. height: math.unit(6 + 5 / 12, "feet"),
  20310. weight: math.unit(190, "lb"),
  20311. name: "Front",
  20312. image: {
  20313. source: "./media/characters/kingdead/front.svg",
  20314. extra: 1228 / 1177
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Micro",
  20321. height: math.unit(7, "inches")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(6 + 5 / 12, "feet")
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(150, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Megamacro",
  20334. height: math.unit(200, "miles")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(8, "feet"),
  20343. weight: math.unit(600, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/kyrehx/front.svg",
  20347. extra: 1195 / 1095,
  20348. bottom: 0.034
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Micro",
  20355. height: math.unit(2, "inches")
  20356. },
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(8, "feet"),
  20360. default: true
  20361. },
  20362. {
  20363. name: "Macro",
  20364. height: math.unit(255, "feet")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20373. weight: math.unit(184, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/xang/front.svg",
  20377. extra: 845 / 755
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(0.935 * 146, "feet")
  20390. },
  20391. {
  20392. name: "Megamacro",
  20393. height: math.unit(0.935 * 3, "miles")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20399. {
  20400. frontDressed: {
  20401. height: math.unit(5 + 7 / 12, "feet"),
  20402. weight: math.unit(140, "lb"),
  20403. name: "Front (Dressed)",
  20404. image: {
  20405. source: "./media/characters/doc-weardno/front-dressed.svg",
  20406. extra: 263 / 234
  20407. }
  20408. },
  20409. backDressed: {
  20410. height: math.unit(5 + 7 / 12, "feet"),
  20411. weight: math.unit(140, "lb"),
  20412. name: "Back (Dressed)",
  20413. image: {
  20414. source: "./media/characters/doc-weardno/back-dressed.svg",
  20415. extra: 266 / 238
  20416. }
  20417. },
  20418. front: {
  20419. height: math.unit(5 + 7 / 12, "feet"),
  20420. weight: math.unit(140, "lb"),
  20421. name: "Front",
  20422. image: {
  20423. source: "./media/characters/doc-weardno/front.svg",
  20424. extra: 254 / 233
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Micro",
  20431. height: math.unit(3, "inches")
  20432. },
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(5 + 7 / 12, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(25, "feet")
  20441. },
  20442. {
  20443. name: "Megamacro",
  20444. height: math.unit(2, "miles")
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(6 + 2 / 12, "feet"),
  20453. weight: math.unit(153, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/seth-whilst/front.svg",
  20457. bottom: 0.07
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Micro",
  20464. height: math.unit(5, "inches")
  20465. },
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(6 + 2 / 12, "feet"),
  20469. default: true
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(3, "inches"),
  20478. weight: math.unit(8, "grams"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/pocket-jabari/front.svg",
  20482. extra: 1024 / 974,
  20483. bottom: 0.039
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Minimicro",
  20490. height: math.unit(8, "mm")
  20491. },
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(3, "inches"),
  20495. default: true
  20496. },
  20497. {
  20498. name: "Normal",
  20499. height: math.unit(3, "feet")
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20505. {
  20506. frontDressed: {
  20507. height: math.unit(15, "feet"),
  20508. weight: math.unit(3280, "lb"),
  20509. name: "Front (Dressed)",
  20510. image: {
  20511. source: "./media/characters/sapphy/front-dressed.svg",
  20512. extra: 1951/1654,
  20513. bottom: 194/2145
  20514. },
  20515. form: "anthro",
  20516. default: true
  20517. },
  20518. backDressed: {
  20519. height: math.unit(15, "feet"),
  20520. weight: math.unit(3280, "lb"),
  20521. name: "Back (Dressed)",
  20522. image: {
  20523. source: "./media/characters/sapphy/back-dressed.svg",
  20524. extra: 2058/1918,
  20525. bottom: 125/2183
  20526. },
  20527. form: "anthro"
  20528. },
  20529. frontNude: {
  20530. height: math.unit(15, "feet"),
  20531. weight: math.unit(3280, "lb"),
  20532. name: "Front (Nude)",
  20533. image: {
  20534. source: "./media/characters/sapphy/front-nude.svg",
  20535. extra: 1951/1654,
  20536. bottom: 194/2145
  20537. },
  20538. form: "anthro"
  20539. },
  20540. backNude: {
  20541. height: math.unit(15, "feet"),
  20542. weight: math.unit(3280, "lb"),
  20543. name: "Back (Nude)",
  20544. image: {
  20545. source: "./media/characters/sapphy/back-nude.svg",
  20546. extra: 2058/1918,
  20547. bottom: 125/2183
  20548. },
  20549. form: "anthro"
  20550. },
  20551. full: {
  20552. height: math.unit(15, "feet"),
  20553. weight: math.unit(3280, "lb"),
  20554. name: "Full",
  20555. image: {
  20556. source: "./media/characters/sapphy/full.svg",
  20557. extra: 1396/1317,
  20558. bottom: 44/1440
  20559. },
  20560. form: "anthro"
  20561. },
  20562. dick: {
  20563. height: math.unit(3.8, "feet"),
  20564. name: "Dick",
  20565. image: {
  20566. source: "./media/characters/sapphy/dick.svg"
  20567. },
  20568. form: "anthro"
  20569. },
  20570. feral: {
  20571. height: math.unit(35, "feet"),
  20572. weight: math.unit(160, "tons"),
  20573. name: "Feral",
  20574. image: {
  20575. source: "./media/characters/sapphy/feral.svg",
  20576. extra: 1050/573,
  20577. bottom: 60/1110
  20578. },
  20579. form: "feral",
  20580. default: true
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(15, "feet"),
  20587. form: "anthro"
  20588. },
  20589. {
  20590. name: "Casual Macro",
  20591. height: math.unit(120, "feet"),
  20592. form: "anthro"
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(2150, "feet"),
  20597. default: true,
  20598. form: "anthro"
  20599. },
  20600. {
  20601. name: "Megamacro",
  20602. height: math.unit(8, "miles"),
  20603. form: "anthro"
  20604. },
  20605. {
  20606. name: "Galaxy Mom",
  20607. height: math.unit(6, "megalightyears"),
  20608. form: "anthro"
  20609. },
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(35, "feet"),
  20613. form: "feral",
  20614. default: true
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(300, "feet"),
  20619. form: "feral"
  20620. },
  20621. {
  20622. name: "Galaxy Mom",
  20623. height: math.unit(10, "megalightyears"),
  20624. form: "feral"
  20625. },
  20626. ],
  20627. {
  20628. "anthro": {
  20629. name: "Anthro",
  20630. default: true
  20631. },
  20632. "feral": {
  20633. name: "Feral"
  20634. }
  20635. }
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20639. {
  20640. hyenaFront: {
  20641. height: math.unit(6, "feet"),
  20642. weight: math.unit(190, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/kiro/hyena-front.svg",
  20646. extra: 927/839,
  20647. bottom: 91/1018
  20648. },
  20649. form: "hyena",
  20650. default: true
  20651. },
  20652. front: {
  20653. height: math.unit(6, "feet"),
  20654. weight: math.unit(170, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/kiro/front.svg",
  20658. extra: 1064 / 1012,
  20659. bottom: 0.052
  20660. },
  20661. form: "folf",
  20662. default: true
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Micro",
  20668. height: math.unit(6, "inches"),
  20669. form: "folf"
  20670. },
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(6, "feet"),
  20674. form: "folf",
  20675. default: true
  20676. },
  20677. {
  20678. name: "Macro",
  20679. height: math.unit(72, "feet"),
  20680. form: "folf"
  20681. },
  20682. {
  20683. name: "Micro",
  20684. height: math.unit(6, "inches"),
  20685. form: "hyena"
  20686. },
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(6, "feet"),
  20690. form: "hyena",
  20691. default: true
  20692. },
  20693. {
  20694. name: "Macro",
  20695. height: math.unit(72, "feet"),
  20696. form: "hyena"
  20697. },
  20698. ],
  20699. {
  20700. "hyena": {
  20701. name: "Hyena",
  20702. default: true
  20703. },
  20704. "folf": {
  20705. name: "Folf",
  20706. },
  20707. }
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(5 + 9 / 12, "feet"),
  20714. weight: math.unit(175, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/irishfox/front.svg",
  20718. extra: 1912 / 1680,
  20719. bottom: 0.02
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Nano",
  20726. height: math.unit(1, "mm")
  20727. },
  20728. {
  20729. name: "Micro",
  20730. height: math.unit(2, "inches")
  20731. },
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(5 + 9 / 12, "feet"),
  20735. default: true
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(45, "feet")
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(6 + 1 / 12, "feet"),
  20748. weight: math.unit(75, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/aronai-sieyes/front.svg",
  20752. extra: 1532/1450,
  20753. bottom: 42/1574
  20754. }
  20755. },
  20756. side: {
  20757. height: math.unit(6 + 1 / 12, "feet"),
  20758. weight: math.unit(75, "lb"),
  20759. name: "Side",
  20760. image: {
  20761. source: "./media/characters/aronai-sieyes/side.svg",
  20762. extra: 1422/1365,
  20763. bottom: 148/1570
  20764. }
  20765. },
  20766. back: {
  20767. height: math.unit(6 + 1 / 12, "feet"),
  20768. weight: math.unit(75, "lb"),
  20769. name: "Back",
  20770. image: {
  20771. source: "./media/characters/aronai-sieyes/back.svg",
  20772. extra: 1526/1464,
  20773. bottom: 51/1577
  20774. }
  20775. },
  20776. dressed: {
  20777. height: math.unit(6 + 1 / 12, "feet"),
  20778. weight: math.unit(75, "lb"),
  20779. name: "Dressed",
  20780. image: {
  20781. source: "./media/characters/aronai-sieyes/dressed.svg",
  20782. extra: 1559/1483,
  20783. bottom: 39/1598
  20784. }
  20785. },
  20786. slit: {
  20787. height: math.unit(1.3, "feet"),
  20788. name: "Slit",
  20789. image: {
  20790. source: "./media/characters/aronai-sieyes/slit.svg"
  20791. }
  20792. },
  20793. slitSpread: {
  20794. height: math.unit(0.9, "feet"),
  20795. name: "Slit (Spread)",
  20796. image: {
  20797. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20798. }
  20799. },
  20800. rump: {
  20801. height: math.unit(1.3, "feet"),
  20802. name: "Rump",
  20803. image: {
  20804. source: "./media/characters/aronai-sieyes/rump.svg"
  20805. }
  20806. },
  20807. maw: {
  20808. height: math.unit(1.25, "feet"),
  20809. name: "Maw",
  20810. image: {
  20811. source: "./media/characters/aronai-sieyes/maw.svg"
  20812. }
  20813. },
  20814. feral: {
  20815. height: math.unit(18, "feet"),
  20816. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20817. name: "Feral",
  20818. image: {
  20819. source: "./media/characters/aronai-sieyes/feral.svg",
  20820. extra: 1530 / 1240,
  20821. bottom: 0.035
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Micro",
  20828. height: math.unit(2, "inches")
  20829. },
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(6 + 1 / 12, "feet"),
  20833. default: true
  20834. }
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(12, "feet"),
  20842. weight: math.unit(410, "kg"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/xuna/front.svg",
  20846. extra: 2184 / 1980
  20847. }
  20848. },
  20849. side: {
  20850. height: math.unit(12, "feet"),
  20851. weight: math.unit(410, "kg"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/xuna/side.svg",
  20855. extra: 2184 / 1980
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(12, "feet"),
  20860. weight: math.unit(410, "kg"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/xuna/back.svg",
  20864. extra: 2184 / 1980
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Nano glow",
  20871. height: math.unit(10, "nm")
  20872. },
  20873. {
  20874. name: "Micro floof",
  20875. height: math.unit(0.3, "m")
  20876. },
  20877. {
  20878. name: "Huggable softy boi",
  20879. height: math.unit(3.6576, "m"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Admirable floof",
  20884. height: math.unit(80, "meters")
  20885. },
  20886. {
  20887. name: "Gentle macro",
  20888. height: math.unit(300, "meters")
  20889. },
  20890. {
  20891. name: "Very careful floof",
  20892. height: math.unit(3200, "meters")
  20893. },
  20894. {
  20895. name: "The mega floof",
  20896. height: math.unit(36000, "meters")
  20897. },
  20898. {
  20899. name: "Giga-fur-Wicker",
  20900. height: math.unit(4800000, "meters")
  20901. },
  20902. {
  20903. name: "Licky world",
  20904. height: math.unit(20000000, "meters")
  20905. },
  20906. {
  20907. name: "Floofy cyan sun",
  20908. height: math.unit(1500000000, "meters")
  20909. },
  20910. {
  20911. name: "Milky Wicker",
  20912. height: math.unit(1000000000000000000000, "meters")
  20913. },
  20914. {
  20915. name: "The observing Wicker",
  20916. height: math.unit(999999999999999999999999999, "meters")
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(150, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/arokha-sieyes/front.svg",
  20929. extra: 1425 / 1284,
  20930. bottom: 0.05
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 9 / 12, "feet")
  20938. },
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(30, "meters"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6, "feet"),
  20951. weight: math.unit(180, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/arokh-sieyes/front.svg",
  20955. extra: 1830 / 1769,
  20956. bottom: 0.01
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6, "feet")
  20964. },
  20965. {
  20966. name: "Macro",
  20967. height: math.unit(30, "meters"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20974. {
  20975. side: {
  20976. height: math.unit(13 + 1 / 12, "feet"),
  20977. weight: math.unit(8.5, "tonnes"),
  20978. preyCapacity: math.unit(36, "people"),
  20979. name: "Side",
  20980. image: {
  20981. source: "./media/characters/goldeneye/side.svg",
  20982. extra: 1139/741,
  20983. bottom: 98/1237
  20984. }
  20985. },
  20986. front: {
  20987. height: math.unit(5.1, "feet"),
  20988. weight: math.unit(8.5, "tonnes"),
  20989. preyCapacity: math.unit(36, "people"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/goldeneye/front.svg",
  20993. extra: 635/365,
  20994. bottom: 598/1233
  20995. }
  20996. },
  20997. maw: {
  20998. height: math.unit(6.6, "feet"),
  20999. name: "Maw",
  21000. image: {
  21001. source: "./media/characters/goldeneye/maw.svg"
  21002. }
  21003. },
  21004. headFront: {
  21005. height: math.unit(8, "feet"),
  21006. name: "Head (Front)",
  21007. image: {
  21008. source: "./media/characters/goldeneye/head-front.svg"
  21009. }
  21010. },
  21011. headSide: {
  21012. height: math.unit(6, "feet"),
  21013. name: "Head (Side)",
  21014. image: {
  21015. source: "./media/characters/goldeneye/head-side.svg"
  21016. }
  21017. },
  21018. headBack: {
  21019. height: math.unit(8, "feet"),
  21020. name: "Head (Back)",
  21021. image: {
  21022. source: "./media/characters/goldeneye/head-back.svg"
  21023. }
  21024. },
  21025. paw: {
  21026. height: math.unit(3.4, "feet"),
  21027. name: "Paw",
  21028. image: {
  21029. source: "./media/characters/goldeneye/paw.svg"
  21030. }
  21031. },
  21032. toering: {
  21033. height: math.unit(0.45, "feet"),
  21034. name: "Toering",
  21035. image: {
  21036. source: "./media/characters/goldeneye/toering.svg"
  21037. }
  21038. },
  21039. eyes: {
  21040. height: math.unit(0.5, "feet"),
  21041. name: "Eyes",
  21042. image: {
  21043. source: "./media/characters/goldeneye/eyes.svg"
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(13 + 1 / 12, "feet"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21057. {
  21058. front: {
  21059. height: math.unit(6 + 1 / 12, "feet"),
  21060. weight: math.unit(210, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/leonardo-lycheborne/front.svg",
  21064. extra: 776/723,
  21065. bottom: 34/810
  21066. }
  21067. },
  21068. side: {
  21069. height: math.unit(6 + 1 / 12, "feet"),
  21070. weight: math.unit(210, "lb"),
  21071. name: "Side",
  21072. image: {
  21073. source: "./media/characters/leonardo-lycheborne/side.svg",
  21074. extra: 780/728,
  21075. bottom: 12/792
  21076. }
  21077. },
  21078. back: {
  21079. height: math.unit(6 + 1 / 12, "feet"),
  21080. weight: math.unit(210, "lb"),
  21081. name: "Back",
  21082. image: {
  21083. source: "./media/characters/leonardo-lycheborne/back.svg",
  21084. extra: 775/721,
  21085. bottom: 17/792
  21086. }
  21087. },
  21088. hand: {
  21089. height: math.unit(1.08, "feet"),
  21090. name: "Hand",
  21091. image: {
  21092. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21093. }
  21094. },
  21095. foot: {
  21096. height: math.unit(1.32, "feet"),
  21097. name: "Foot",
  21098. image: {
  21099. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21100. }
  21101. },
  21102. maw: {
  21103. height: math.unit(1, "feet"),
  21104. name: "Maw",
  21105. image: {
  21106. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21107. }
  21108. },
  21109. were: {
  21110. height: math.unit(20, "feet"),
  21111. weight: math.unit(7800, "lb"),
  21112. name: "Were",
  21113. image: {
  21114. source: "./media/characters/leonardo-lycheborne/were.svg",
  21115. extra: 1224/1165,
  21116. bottom: 72/1296
  21117. }
  21118. },
  21119. feral: {
  21120. height: math.unit(7.5, "feet"),
  21121. weight: math.unit(600, "lb"),
  21122. name: "Feral",
  21123. image: {
  21124. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21125. extra: 797/702,
  21126. bottom: 139/936
  21127. }
  21128. },
  21129. taur: {
  21130. height: math.unit(11, "feet"),
  21131. weight: math.unit(3300, "lb"),
  21132. name: "Taur",
  21133. image: {
  21134. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21135. extra: 1271/1197,
  21136. bottom: 47/1318
  21137. }
  21138. },
  21139. barghest: {
  21140. height: math.unit(11, "feet"),
  21141. weight: math.unit(1300, "lb"),
  21142. name: "Barghest",
  21143. image: {
  21144. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21145. extra: 1291/1204,
  21146. bottom: 37/1328
  21147. }
  21148. },
  21149. dick: {
  21150. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21151. name: "Dick",
  21152. image: {
  21153. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21154. }
  21155. },
  21156. dickWere: {
  21157. height: math.unit((20) / 3.8, "feet"),
  21158. name: "Dick (Were)",
  21159. image: {
  21160. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(6 + 1 / 12, "feet"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(10, "feet"),
  21177. weight: math.unit(350, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/jet/front.svg",
  21181. extra: 2050 / 1980,
  21182. bottom: 0.013
  21183. }
  21184. },
  21185. back: {
  21186. height: math.unit(10, "feet"),
  21187. weight: math.unit(350, "lb"),
  21188. name: "Back",
  21189. image: {
  21190. source: "./media/characters/jet/back.svg",
  21191. extra: 2050 / 1980,
  21192. bottom: 0.013
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(6, "inches")
  21200. },
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(10, "feet"),
  21204. default: true
  21205. },
  21206. {
  21207. name: "Macro",
  21208. height: math.unit(100, "feet")
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(15, "feet"),
  21217. weight: math.unit(2800, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/tanarath/front.svg",
  21221. extra: 2392 / 2220,
  21222. bottom: 0.03
  21223. }
  21224. },
  21225. back: {
  21226. height: math.unit(15, "feet"),
  21227. weight: math.unit(2800, "lb"),
  21228. name: "Back",
  21229. image: {
  21230. source: "./media/characters/tanarath/back.svg",
  21231. extra: 2392 / 2220,
  21232. bottom: 0.03
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(15, "feet"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(7 + 1 / 12, "feet"),
  21249. weight: math.unit(175, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/patty-cattybatty/front.svg",
  21253. extra: 908 / 874,
  21254. bottom: 0.025
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Micro",
  21261. height: math.unit(1, "inch")
  21262. },
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(7 + 1 / 12, "feet")
  21266. },
  21267. {
  21268. name: "Mini Macro",
  21269. height: math.unit(155, "feet")
  21270. },
  21271. {
  21272. name: "Macro",
  21273. height: math.unit(1077, "feet")
  21274. },
  21275. {
  21276. name: "Mega Macro",
  21277. height: math.unit(47650, "feet"),
  21278. default: true
  21279. },
  21280. {
  21281. name: "Giga Macro",
  21282. height: math.unit(440, "miles")
  21283. },
  21284. {
  21285. name: "Tera Macro",
  21286. height: math.unit(8700, "miles")
  21287. },
  21288. {
  21289. name: "Planetary Macro",
  21290. height: math.unit(32700, "miles")
  21291. },
  21292. {
  21293. name: "Solar Macro",
  21294. height: math.unit(550000, "miles")
  21295. },
  21296. {
  21297. name: "Celestial Macro",
  21298. height: math.unit(2.5, "AU")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(4 + 5 / 12, "feet"),
  21307. weight: math.unit(90, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/cappu/front.svg",
  21311. extra: 1247 / 1152,
  21312. bottom: 0.012
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Normal",
  21319. height: math.unit(4 + 5 / 12, "feet"),
  21320. default: true
  21321. },
  21322. ]
  21323. ))
  21324. characterMakers.push(() => makeCharacter(
  21325. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21326. {
  21327. frontDressed: {
  21328. height: math.unit(70, "cm"),
  21329. weight: math.unit(6, "kg"),
  21330. name: "Front (Dressed)",
  21331. image: {
  21332. source: "./media/characters/sebi/front-dressed.svg",
  21333. extra: 713.5 / 686.5,
  21334. bottom: 0.003
  21335. }
  21336. },
  21337. front: {
  21338. height: math.unit(70, "cm"),
  21339. weight: math.unit(5, "kg"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/sebi/front.svg",
  21343. extra: 713.5 / 686.5,
  21344. bottom: 0.003
  21345. }
  21346. }
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(70, "cm"),
  21352. default: true
  21353. },
  21354. {
  21355. name: "Macro",
  21356. height: math.unit(8, "meters")
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(6, "feet"),
  21365. weight: math.unit(150, "lb"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/typhek/front.svg",
  21369. extra: 1948 / 1929,
  21370. bottom: 0.025
  21371. }
  21372. },
  21373. side: {
  21374. height: math.unit(6, "feet"),
  21375. weight: math.unit(150, "lb"),
  21376. name: "Side",
  21377. image: {
  21378. source: "./media/characters/typhek/side.svg",
  21379. extra: 2034 / 2010,
  21380. bottom: 0.003
  21381. }
  21382. },
  21383. back: {
  21384. height: math.unit(6, "feet"),
  21385. weight: math.unit(150, "lb"),
  21386. name: "Back",
  21387. image: {
  21388. source: "./media/characters/typhek/back.svg",
  21389. extra: 2005 / 1978,
  21390. bottom: 0.004
  21391. }
  21392. },
  21393. palm: {
  21394. height: math.unit(1.2, "feet"),
  21395. name: "Palm",
  21396. image: {
  21397. source: "./media/characters/typhek/palm.svg"
  21398. }
  21399. },
  21400. fist: {
  21401. height: math.unit(1.1, "feet"),
  21402. name: "Fist",
  21403. image: {
  21404. source: "./media/characters/typhek/fist.svg"
  21405. }
  21406. },
  21407. foot: {
  21408. height: math.unit(1.57, "feet"),
  21409. name: "Foot",
  21410. image: {
  21411. source: "./media/characters/typhek/foot.svg"
  21412. }
  21413. },
  21414. sole: {
  21415. height: math.unit(2.05, "feet"),
  21416. name: "Sole",
  21417. image: {
  21418. source: "./media/characters/typhek/sole.svg"
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(40, "stories"),
  21426. default: true
  21427. },
  21428. {
  21429. name: "Megamacro",
  21430. height: math.unit(1, "mile")
  21431. },
  21432. {
  21433. name: "Gigamacro",
  21434. height: math.unit(4000, "solarradii")
  21435. },
  21436. {
  21437. name: "Universal",
  21438. height: math.unit(1.1, "universes")
  21439. }
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21444. {
  21445. side: {
  21446. height: math.unit(5 + 7 / 12, "feet"),
  21447. weight: math.unit(150, "lb"),
  21448. name: "Side",
  21449. image: {
  21450. source: "./media/characters/kassy/side.svg",
  21451. extra: 1280 / 1225,
  21452. bottom: 0.002
  21453. }
  21454. },
  21455. front: {
  21456. height: math.unit(5 + 7 / 12, "feet"),
  21457. weight: math.unit(150, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/kassy/front.svg",
  21461. extra: 1280 / 1225,
  21462. bottom: 0.025
  21463. }
  21464. },
  21465. back: {
  21466. height: math.unit(5 + 7 / 12, "feet"),
  21467. weight: math.unit(150, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/kassy/back.svg",
  21471. extra: 1280 / 1225,
  21472. bottom: 0.002
  21473. }
  21474. },
  21475. foot: {
  21476. height: math.unit(1.266, "feet"),
  21477. name: "Foot",
  21478. image: {
  21479. source: "./media/characters/kassy/foot.svg"
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(5 + 7 / 12, "feet")
  21487. },
  21488. {
  21489. name: "Macro",
  21490. height: math.unit(137, "feet"),
  21491. default: true
  21492. },
  21493. {
  21494. name: "Megamacro",
  21495. height: math.unit(1, "mile")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(6 + 1 / 12, "feet"),
  21504. weight: math.unit(200, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/neil/front.svg",
  21508. extra: 1326 / 1250,
  21509. bottom: 0.023
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(6 + 1 / 12, "feet"),
  21517. default: true
  21518. },
  21519. {
  21520. name: "Macro",
  21521. height: math.unit(200, "feet")
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(5 + 9 / 12, "feet"),
  21530. weight: math.unit(190, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/atticus/front.svg",
  21534. extra: 2934 / 2785,
  21535. bottom: 0.025
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(5 + 9 / 12, "feet"),
  21543. default: true
  21544. },
  21545. {
  21546. name: "Macro",
  21547. height: math.unit(180, "feet")
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21553. {
  21554. side: {
  21555. height: math.unit(9, "feet"),
  21556. weight: math.unit(650, "lb"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/milo/side.svg",
  21560. extra: 2644 / 2310,
  21561. bottom: 0.032
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Normal",
  21568. height: math.unit(9, "feet"),
  21569. default: true
  21570. },
  21571. {
  21572. name: "Macro",
  21573. height: math.unit(300, "feet")
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21579. {
  21580. side: {
  21581. height: math.unit(8, "meters"),
  21582. weight: math.unit(90000, "kg"),
  21583. name: "Side",
  21584. image: {
  21585. source: "./media/characters/ijzer/side.svg",
  21586. extra: 2756 / 1600,
  21587. bottom: 0.01
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Small",
  21594. height: math.unit(3, "meters")
  21595. },
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(8, "meters"),
  21599. default: true
  21600. },
  21601. {
  21602. name: "Normal+",
  21603. height: math.unit(10, "meters")
  21604. },
  21605. {
  21606. name: "Bigger",
  21607. height: math.unit(24, "meters")
  21608. },
  21609. {
  21610. name: "Huge",
  21611. height: math.unit(80, "meters")
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(6 + 2 / 12, "feet"),
  21620. weight: math.unit(153, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/luca-cervicum/front.svg",
  21624. extra: 370 / 327,
  21625. bottom: 0.015
  21626. }
  21627. },
  21628. back: {
  21629. height: math.unit(6 + 2 / 12, "feet"),
  21630. weight: math.unit(153, "lb"),
  21631. name: "Back",
  21632. image: {
  21633. source: "./media/characters/luca-cervicum/back.svg",
  21634. extra: 367 / 333,
  21635. bottom: 0.005
  21636. }
  21637. },
  21638. frontGear: {
  21639. height: math.unit(6 + 2 / 12, "feet"),
  21640. weight: math.unit(173, "lb"),
  21641. name: "Front (Gear)",
  21642. image: {
  21643. source: "./media/characters/luca-cervicum/front-gear.svg",
  21644. extra: 377 / 333,
  21645. bottom: 0.006
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(6 + 2 / 12, "feet"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21659. {
  21660. front: {
  21661. height: math.unit(6 + 1 / 12, "feet"),
  21662. weight: math.unit(304, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/oliver/front.svg",
  21666. extra: 157 / 143,
  21667. bottom: 0.08
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(6 + 1 / 12, "feet"),
  21675. default: true
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(5 + 7 / 12, "feet"),
  21684. weight: math.unit(140, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/shane/front.svg",
  21688. extra: 304 / 289,
  21689. bottom: 0.005
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(5 + 7 / 12, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 9 / 12, "feet"),
  21706. weight: math.unit(178, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/shin/front.svg",
  21710. extra: 159 / 151,
  21711. bottom: 0.015
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5 + 9 / 12, "feet"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 10 / 12, "feet"),
  21728. weight: math.unit(168, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/xerxes/front.svg",
  21732. extra: 282 / 260,
  21733. bottom: 0.045
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 10 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(6 + 7 / 12, "feet"),
  21750. weight: math.unit(208, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/chaska/front.svg",
  21754. extra: 332 / 319,
  21755. bottom: 0.015
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(6 + 7 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5 + 8 / 12, "feet"),
  21772. weight: math.unit(208, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/enuk/front.svg",
  21776. extra: 437 / 406,
  21777. bottom: 0.02
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5 + 8 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(5 + 10 / 12, "feet"),
  21794. weight: math.unit(252, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/bruun/front.svg",
  21798. extra: 197 / 187,
  21799. bottom: 0.012
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(5 + 10 / 12, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(6 + 10 / 12, "feet"),
  21816. weight: math.unit(255, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/alexeev/front.svg",
  21820. extra: 213 / 200,
  21821. bottom: 0.05
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(6 + 10 / 12, "feet"),
  21829. default: true
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21835. {
  21836. front: {
  21837. height: math.unit(2 + 8 / 12, "feet"),
  21838. weight: math.unit(22, "lb"),
  21839. name: "Front",
  21840. image: {
  21841. source: "./media/characters/evelyn/front.svg",
  21842. extra: 208 / 180
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(2 + 8 / 12, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(5 + 9 / 12, "feet"),
  21859. weight: math.unit(139, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/inca/front.svg",
  21863. extra: 294 / 291,
  21864. bottom: 0.03
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(5 + 9 / 12, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(6 + 3 / 12, "feet"),
  21881. weight: math.unit(185, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/mera/front.svg",
  21885. extra: 291 / 277,
  21886. bottom: 0.03
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(6 + 3 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(6 + 7 / 12, "feet"),
  21903. weight: math.unit(160, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/ceres/front.svg",
  21907. extra: 1023 / 950,
  21908. bottom: 0.027
  21909. }
  21910. },
  21911. back: {
  21912. height: math.unit(6 + 7 / 12, "feet"),
  21913. weight: math.unit(160, "lb"),
  21914. name: "Back",
  21915. image: {
  21916. source: "./media/characters/ceres/back.svg",
  21917. extra: 1023 / 950
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(6 + 7 / 12, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(5 + 10 / 12, "feet"),
  21934. weight: math.unit(150, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/kris/front.svg",
  21938. extra: 885 / 803,
  21939. bottom: 0.03
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(5 + 10 / 12, "feet"),
  21947. default: true
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(7, "feet"),
  21956. weight: math.unit(120, "kg"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/taluthus/front.svg",
  21960. extra: 903 / 833,
  21961. bottom: 0.015
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(7, "feet"),
  21969. default: true
  21970. },
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(300, "feet")
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(5 + 9 / 12, "feet"),
  21982. weight: math.unit(145, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/dawn/front.svg",
  21986. extra: 2094 / 2016,
  21987. bottom: 0.025
  21988. }
  21989. },
  21990. back: {
  21991. height: math.unit(5 + 9 / 12, "feet"),
  21992. weight: math.unit(160, "lb"),
  21993. name: "Back",
  21994. image: {
  21995. source: "./media/characters/dawn/back.svg",
  21996. extra: 2112 / 2080,
  21997. bottom: 0.005
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(6 + 7 / 12, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22011. {
  22012. anthro: {
  22013. height: math.unit(8 + 3 / 12, "feet"),
  22014. weight: math.unit(450, "lb"),
  22015. name: "Anthro",
  22016. image: {
  22017. source: "./media/characters/arador/anthro.svg",
  22018. extra: 1835 / 1718,
  22019. bottom: 0.025
  22020. }
  22021. },
  22022. feral: {
  22023. height: math.unit(4, "feet"),
  22024. weight: math.unit(200, "lb"),
  22025. name: "Feral",
  22026. image: {
  22027. source: "./media/characters/arador/feral.svg",
  22028. extra: 1683 / 1514,
  22029. bottom: 0.07
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(8 + 3 / 12, "feet")
  22037. },
  22038. {
  22039. name: "Macro",
  22040. height: math.unit(82.5, "feet"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(5 + 10 / 12, "feet"),
  22050. weight: math.unit(125, "lb"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/dharsi/front.svg",
  22054. extra: 716 / 630,
  22055. bottom: 0.035
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Nano",
  22062. height: math.unit(100, "nm")
  22063. },
  22064. {
  22065. name: "Micro",
  22066. height: math.unit(2, "inches")
  22067. },
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(5 + 10 / 12, "feet"),
  22071. default: true
  22072. },
  22073. {
  22074. name: "Macro",
  22075. height: math.unit(1000, "feet")
  22076. },
  22077. {
  22078. name: "Megamacro",
  22079. height: math.unit(10, "miles")
  22080. },
  22081. {
  22082. name: "Gigamacro",
  22083. height: math.unit(3000, "miles")
  22084. },
  22085. {
  22086. name: "Teramacro",
  22087. height: math.unit(500000, "miles")
  22088. },
  22089. {
  22090. name: "Teramacro+",
  22091. height: math.unit(30, "galaxies")
  22092. },
  22093. ]
  22094. ))
  22095. characterMakers.push(() => makeCharacter(
  22096. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22097. {
  22098. front: {
  22099. height: math.unit(6, "feet"),
  22100. weight: math.unit(150, "lb"),
  22101. name: "Front",
  22102. image: {
  22103. source: "./media/characters/deathy/front.svg",
  22104. extra: 1552 / 1463,
  22105. bottom: 0.025
  22106. }
  22107. },
  22108. side: {
  22109. height: math.unit(6, "feet"),
  22110. weight: math.unit(150, "lb"),
  22111. name: "Side",
  22112. image: {
  22113. source: "./media/characters/deathy/side.svg",
  22114. extra: 1604 / 1455,
  22115. bottom: 0.025
  22116. }
  22117. },
  22118. back: {
  22119. height: math.unit(6, "feet"),
  22120. weight: math.unit(150, "lb"),
  22121. name: "Back",
  22122. image: {
  22123. source: "./media/characters/deathy/back.svg",
  22124. extra: 1580 / 1463,
  22125. bottom: 0.005
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Micro",
  22132. height: math.unit(5, "millimeters")
  22133. },
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(6 + 5 / 12, "feet"),
  22137. default: true
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22143. {
  22144. front: {
  22145. height: math.unit(16, "feet"),
  22146. weight: math.unit(4000, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/juniper/front.svg",
  22150. bottom: 0.04
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(16, "feet"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(6, "feet"),
  22167. weight: math.unit(150, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/hipster/front.svg",
  22171. extra: 1312 / 1209,
  22172. bottom: 0.025
  22173. }
  22174. },
  22175. back: {
  22176. height: math.unit(6, "feet"),
  22177. weight: math.unit(150, "lb"),
  22178. name: "Back",
  22179. image: {
  22180. source: "./media/characters/hipster/back.svg",
  22181. extra: 1281 / 1196,
  22182. bottom: 0.01
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Micro",
  22189. height: math.unit(1, "mm")
  22190. },
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(4, "inches"),
  22194. default: true
  22195. },
  22196. {
  22197. name: "Macro",
  22198. height: math.unit(500, "feet")
  22199. },
  22200. {
  22201. name: "Megamacro",
  22202. height: math.unit(1000, "miles")
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(6, "feet"),
  22211. weight: math.unit(150, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/tendirmuldr/front.svg",
  22215. extra: 1878 / 1772,
  22216. bottom: 0.015
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Megamacro",
  22223. height: math.unit(1500, "miles"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22230. {
  22231. front: {
  22232. height: math.unit(14, "feet"),
  22233. weight: math.unit(12000, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/mort/front.svg",
  22237. extra: 365 / 318,
  22238. bottom: 0.01
  22239. }
  22240. },
  22241. side: {
  22242. height: math.unit(14, "feet"),
  22243. weight: math.unit(12000, "lb"),
  22244. name: "Side",
  22245. image: {
  22246. source: "./media/characters/mort/side.svg",
  22247. extra: 365 / 318,
  22248. bottom: 0.052
  22249. },
  22250. default: true
  22251. },
  22252. back: {
  22253. height: math.unit(14, "feet"),
  22254. weight: math.unit(12000, "lb"),
  22255. name: "Back",
  22256. image: {
  22257. source: "./media/characters/mort/back.svg",
  22258. extra: 371 / 332,
  22259. bottom: 0.18
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(14, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22273. {
  22274. front: {
  22275. height: math.unit(8, "feet"),
  22276. weight: math.unit(1, "ton"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/lycoa/front.svg",
  22280. extra: 1836/1728,
  22281. bottom: 81/1917
  22282. }
  22283. },
  22284. back: {
  22285. height: math.unit(8, "feet"),
  22286. weight: math.unit(1, "ton"),
  22287. name: "Back",
  22288. image: {
  22289. source: "./media/characters/lycoa/back.svg",
  22290. extra: 1785/1720,
  22291. bottom: 91/1876
  22292. }
  22293. },
  22294. head: {
  22295. height: math.unit(1.6243, "feet"),
  22296. name: "Head",
  22297. image: {
  22298. source: "./media/characters/lycoa/head.svg",
  22299. extra: 1011/782,
  22300. bottom: 0/1011
  22301. }
  22302. },
  22303. tailmaw: {
  22304. height: math.unit(1.9, "feet"),
  22305. name: "Tailmaw",
  22306. image: {
  22307. source: "./media/characters/lycoa/tailmaw.svg"
  22308. }
  22309. },
  22310. tentacles: {
  22311. height: math.unit(2.1, "feet"),
  22312. name: "Tentacles",
  22313. image: {
  22314. source: "./media/characters/lycoa/tentacles.svg"
  22315. }
  22316. },
  22317. dick: {
  22318. height: math.unit(1.73, "feet"),
  22319. name: "Dick",
  22320. image: {
  22321. source: "./media/characters/lycoa/dick.svg"
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(8, "feet"),
  22329. default: true
  22330. },
  22331. {
  22332. name: "Macro",
  22333. height: math.unit(30, "feet")
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22339. {
  22340. front: {
  22341. height: math.unit(4 + 2 / 12, "feet"),
  22342. weight: math.unit(70, "lb"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/naldara/front.svg",
  22346. extra: 1664/1387,
  22347. bottom: 81/1745
  22348. },
  22349. form: "anthro",
  22350. default: true
  22351. },
  22352. naga: {
  22353. height: math.unit(20, "feet"),
  22354. weight: math.unit(15000, "kg"),
  22355. name: "Front",
  22356. image: {
  22357. source: "./media/characters/naldara/naga.svg",
  22358. extra: 1590/1396,
  22359. bottom: 285/1875
  22360. },
  22361. form: "naga",
  22362. default: true
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(4 + 2 / 12, "feet"),
  22369. form: "anthro",
  22370. default: true
  22371. },
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(20, "feet"),
  22375. form: "naga",
  22376. default: true
  22377. },
  22378. ],
  22379. {
  22380. "anthro": {
  22381. name: "Anthro",
  22382. default: true
  22383. },
  22384. "naga": {
  22385. name: "Naga"
  22386. }
  22387. }
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(13 + 7 / 12, "feet"),
  22394. weight: math.unit(1500, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/briar/front.svg",
  22398. extra: 1223/1157,
  22399. bottom: 123/1346
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(13 + 7 / 12, "feet"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22413. {
  22414. side: {
  22415. height: math.unit(16, "feet"),
  22416. weight: math.unit(500, "lb"),
  22417. name: "Side",
  22418. image: {
  22419. source: "./media/characters/vanguard/side.svg",
  22420. extra: 1022/914,
  22421. bottom: 30/1052
  22422. }
  22423. },
  22424. sideAlt: {
  22425. height: math.unit(10, "feet"),
  22426. weight: math.unit(500, "lb"),
  22427. name: "Side (Alt)",
  22428. image: {
  22429. source: "./media/characters/vanguard/side-alt.svg",
  22430. extra: 502 / 425,
  22431. bottom: 0.087
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(17.71, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(7.5, "feet"),
  22448. weight: math.unit(2, "lb"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/artemis/work-safe-front.svg",
  22452. extra: 1192 / 1075,
  22453. bottom: 0.07
  22454. },
  22455. form: "work-safe",
  22456. default: true
  22457. },
  22458. frontNsfw: {
  22459. height: math.unit(7.5, "feet"),
  22460. weight: math.unit(2, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/artemis/calibrating-front.svg",
  22464. extra: 1192 / 1075,
  22465. bottom: 0.07
  22466. },
  22467. form: "calibrating",
  22468. default: true
  22469. },
  22470. frontNsfwer: {
  22471. height: math.unit(7.5, "feet"),
  22472. weight: math.unit(2, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/artemis/oversize-load-front.svg",
  22476. extra: 1192 / 1075,
  22477. bottom: 0.07
  22478. },
  22479. form: "oversize-load",
  22480. default: true
  22481. },
  22482. side: {
  22483. height: math.unit(7.5, "feet"),
  22484. weight: math.unit(2, "lb"),
  22485. name: "Side",
  22486. image: {
  22487. source: "./media/characters/artemis/work-safe-side.svg",
  22488. extra: 1192 / 1075,
  22489. bottom: 0.07
  22490. },
  22491. form: "work-safe"
  22492. },
  22493. sideNsfw: {
  22494. height: math.unit(7.5, "feet"),
  22495. weight: math.unit(2, "lb"),
  22496. name: "Side",
  22497. image: {
  22498. source: "./media/characters/artemis/calibrating-side.svg",
  22499. extra: 1192 / 1075,
  22500. bottom: 0.07
  22501. },
  22502. form: "calibrating"
  22503. },
  22504. sideNsfwer: {
  22505. height: math.unit(7.5, "feet"),
  22506. weight: math.unit(2, "lb"),
  22507. name: "Side",
  22508. image: {
  22509. source: "./media/characters/artemis/oversize-load-side.svg",
  22510. extra: 1192 / 1075,
  22511. bottom: 0.07
  22512. },
  22513. form: "oversize-load"
  22514. },
  22515. maw: {
  22516. height: math.unit(1.1, "feet"),
  22517. name: "Maw",
  22518. image: {
  22519. source: "./media/characters/artemis/maw.svg"
  22520. },
  22521. form: "work-safe"
  22522. },
  22523. stomach: {
  22524. height: math.unit(0.95, "feet"),
  22525. name: "Stomach",
  22526. image: {
  22527. source: "./media/characters/artemis/stomach.svg"
  22528. },
  22529. form: "work-safe"
  22530. },
  22531. dickCanine: {
  22532. height: math.unit(1, "feet"),
  22533. name: "Dick (Canine)",
  22534. image: {
  22535. source: "./media/characters/artemis/dick-canine.svg"
  22536. },
  22537. form: "calibrating"
  22538. },
  22539. dickEquine: {
  22540. height: math.unit(0.85, "feet"),
  22541. name: "Dick (Equine)",
  22542. image: {
  22543. source: "./media/characters/artemis/dick-equine.svg"
  22544. },
  22545. form: "calibrating"
  22546. },
  22547. dickExotic: {
  22548. height: math.unit(0.85, "feet"),
  22549. name: "Dick (Exotic)",
  22550. image: {
  22551. source: "./media/characters/artemis/dick-exotic.svg"
  22552. },
  22553. form: "calibrating"
  22554. },
  22555. dickCanineBigger: {
  22556. height: math.unit(1 * 1.33, "feet"),
  22557. name: "Dick (Canine)",
  22558. image: {
  22559. source: "./media/characters/artemis/dick-canine.svg"
  22560. },
  22561. form: "oversize-load"
  22562. },
  22563. dickEquineBigger: {
  22564. height: math.unit(0.85 * 1.33, "feet"),
  22565. name: "Dick (Equine)",
  22566. image: {
  22567. source: "./media/characters/artemis/dick-equine.svg"
  22568. },
  22569. form: "oversize-load"
  22570. },
  22571. dickExoticBigger: {
  22572. height: math.unit(0.85 * 1.33, "feet"),
  22573. name: "Dick (Exotic)",
  22574. image: {
  22575. source: "./media/characters/artemis/dick-exotic.svg"
  22576. },
  22577. form: "oversize-load"
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(7.5, "feet"),
  22584. form: "work-safe",
  22585. default: true
  22586. },
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(7.5, "feet"),
  22590. form: "calibrating",
  22591. default: true
  22592. },
  22593. {
  22594. name: "Normal",
  22595. height: math.unit(7.5, "feet"),
  22596. form: "oversize-load",
  22597. default: true
  22598. },
  22599. {
  22600. name: "Enlarged",
  22601. height: math.unit(12, "feet"),
  22602. form: "work-safe",
  22603. },
  22604. {
  22605. name: "Enlarged",
  22606. height: math.unit(12, "feet"),
  22607. form: "calibrating",
  22608. },
  22609. {
  22610. name: "Enlarged",
  22611. height: math.unit(12, "feet"),
  22612. form: "oversize-load",
  22613. },
  22614. ],
  22615. {
  22616. "work-safe": {
  22617. name: "Work-Safe",
  22618. default: true
  22619. },
  22620. "calibrating": {
  22621. name: "Calibrating"
  22622. },
  22623. "oversize-load": {
  22624. name: "Oversize Load"
  22625. }
  22626. }
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(5 + 3 / 12, "feet"),
  22633. weight: math.unit(160, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/kira/front.svg",
  22637. extra: 906 / 786,
  22638. bottom: 0.01
  22639. }
  22640. },
  22641. back: {
  22642. height: math.unit(5 + 3 / 12, "feet"),
  22643. weight: math.unit(160, "lb"),
  22644. name: "Back",
  22645. image: {
  22646. source: "./media/characters/kira/back.svg",
  22647. extra: 882 / 757,
  22648. bottom: 0.005
  22649. }
  22650. },
  22651. frontDressed: {
  22652. height: math.unit(5 + 3 / 12, "feet"),
  22653. weight: math.unit(160, "lb"),
  22654. name: "Front (Dressed)",
  22655. image: {
  22656. source: "./media/characters/kira/front-dressed.svg",
  22657. extra: 906 / 786,
  22658. bottom: 0.01
  22659. }
  22660. },
  22661. beans: {
  22662. height: math.unit(0.92, "feet"),
  22663. name: "Beans",
  22664. image: {
  22665. source: "./media/characters/kira/beans.svg"
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(5 + 3 / 12, "feet"),
  22673. default: true
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(5 + 4 / 12, "feet"),
  22682. weight: math.unit(145, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/scramble/front.svg",
  22686. extra: 763 / 727,
  22687. bottom: 0.05
  22688. }
  22689. },
  22690. back: {
  22691. height: math.unit(5 + 4 / 12, "feet"),
  22692. weight: math.unit(145, "lb"),
  22693. name: "Back",
  22694. image: {
  22695. source: "./media/characters/scramble/back.svg",
  22696. extra: 826 / 737,
  22697. bottom: 0.002
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(5 + 4 / 12, "feet"),
  22705. default: true
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22711. {
  22712. side: {
  22713. height: math.unit(6 + 2 / 12, "feet"),
  22714. weight: math.unit(190, "lb"),
  22715. name: "Side",
  22716. image: {
  22717. source: "./media/characters/biscuit/side.svg",
  22718. extra: 858 / 791,
  22719. bottom: 0.044
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(6 + 2 / 12, "feet"),
  22727. default: true
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(5 + 2 / 12, "feet"),
  22736. weight: math.unit(120, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/poffin/front.svg",
  22740. extra: 786 / 680,
  22741. bottom: 0.005
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Normal",
  22748. height: math.unit(5 + 2 / 12, "feet"),
  22749. default: true
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22755. {
  22756. front: {
  22757. height: math.unit(6 + 3 / 12, "feet"),
  22758. weight: math.unit(519, "lb"),
  22759. name: "Front",
  22760. image: {
  22761. source: "./media/characters/dhari/front.svg",
  22762. extra: 1048 / 946,
  22763. bottom: 0.015
  22764. }
  22765. },
  22766. back: {
  22767. height: math.unit(6 + 3 / 12, "feet"),
  22768. weight: math.unit(519, "lb"),
  22769. name: "Back",
  22770. image: {
  22771. source: "./media/characters/dhari/back.svg",
  22772. extra: 1048 / 931,
  22773. bottom: 0.005
  22774. }
  22775. },
  22776. frontDressed: {
  22777. height: math.unit(6 + 3 / 12, "feet"),
  22778. weight: math.unit(519, "lb"),
  22779. name: "Front (Dressed)",
  22780. image: {
  22781. source: "./media/characters/dhari/front-dressed.svg",
  22782. extra: 1713 / 1546,
  22783. bottom: 0.02
  22784. }
  22785. },
  22786. backDressed: {
  22787. height: math.unit(6 + 3 / 12, "feet"),
  22788. weight: math.unit(519, "lb"),
  22789. name: "Back (Dressed)",
  22790. image: {
  22791. source: "./media/characters/dhari/back-dressed.svg",
  22792. extra: 1699 / 1537,
  22793. bottom: 0.01
  22794. }
  22795. },
  22796. maw: {
  22797. height: math.unit(0.95, "feet"),
  22798. name: "Maw",
  22799. image: {
  22800. source: "./media/characters/dhari/maw.svg"
  22801. }
  22802. },
  22803. wereFront: {
  22804. height: math.unit(12 + 8 / 12, "feet"),
  22805. weight: math.unit(4000, "lb"),
  22806. name: "Front (Were)",
  22807. image: {
  22808. source: "./media/characters/dhari/were-front.svg",
  22809. extra: 1065 / 969,
  22810. bottom: 0.015
  22811. }
  22812. },
  22813. wereBack: {
  22814. height: math.unit(12 + 8 / 12, "feet"),
  22815. weight: math.unit(4000, "lb"),
  22816. name: "Back (Were)",
  22817. image: {
  22818. source: "./media/characters/dhari/were-back.svg",
  22819. extra: 1065 / 969,
  22820. bottom: 0.012
  22821. }
  22822. },
  22823. wereMaw: {
  22824. height: math.unit(0.625, "meters"),
  22825. name: "Maw (Were)",
  22826. image: {
  22827. source: "./media/characters/dhari/were-maw.svg"
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Normal",
  22834. height: math.unit(6 + 3 / 12, "feet"),
  22835. default: true
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22841. {
  22842. anthro: {
  22843. height: math.unit(5 + 7 / 12, "feet"),
  22844. weight: math.unit(175, "lb"),
  22845. name: "Anthro",
  22846. image: {
  22847. source: "./media/characters/rena-dyne/anthro.svg",
  22848. extra: 1849 / 1785,
  22849. bottom: 0.005
  22850. }
  22851. },
  22852. taur: {
  22853. height: math.unit(15 + 6 / 12, "feet"),
  22854. weight: math.unit(8000, "lb"),
  22855. name: "Taur",
  22856. image: {
  22857. source: "./media/characters/rena-dyne/taur.svg",
  22858. extra: 2315 / 2234,
  22859. bottom: 0.033
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(5 + 7 / 12, "feet"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(8, "feet"),
  22876. weight: math.unit(600, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/weremeep/front.svg",
  22880. extra: 970/849,
  22881. bottom: 7/977
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(8, "feet"),
  22889. default: true
  22890. },
  22891. {
  22892. name: "Lorg",
  22893. height: math.unit(12, "feet")
  22894. },
  22895. {
  22896. name: "Oh Lawd She Comin'",
  22897. height: math.unit(20, "feet")
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22903. {
  22904. front: {
  22905. height: math.unit(4, "feet"),
  22906. weight: math.unit(90, "lb"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/reza/front.svg",
  22910. extra: 1183 / 1111,
  22911. bottom: 0.017
  22912. }
  22913. },
  22914. back: {
  22915. height: math.unit(4, "feet"),
  22916. weight: math.unit(90, "lb"),
  22917. name: "Back",
  22918. image: {
  22919. source: "./media/characters/reza/back.svg",
  22920. extra: 1183 / 1111,
  22921. bottom: 0.01
  22922. }
  22923. },
  22924. drake: {
  22925. height: math.unit(30, "feet"),
  22926. weight: math.unit(246960, "lb"),
  22927. name: "Drake",
  22928. image: {
  22929. source: "./media/characters/reza/drake.svg",
  22930. extra: 2350 / 2024,
  22931. bottom: 60.7 / 2403
  22932. }
  22933. },
  22934. },
  22935. [
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(4, "feet"),
  22939. default: true
  22940. },
  22941. ]
  22942. ))
  22943. characterMakers.push(() => makeCharacter(
  22944. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22945. {
  22946. side: {
  22947. height: math.unit(15, "feet"),
  22948. weight: math.unit(14, "tons"),
  22949. name: "Side",
  22950. image: {
  22951. source: "./media/characters/athea/side.svg",
  22952. extra: 960 / 540,
  22953. bottom: 0.003
  22954. }
  22955. },
  22956. sitting: {
  22957. height: math.unit(6 * 2.85, "feet"),
  22958. weight: math.unit(14, "tons"),
  22959. name: "Sitting",
  22960. image: {
  22961. source: "./media/characters/athea/sitting.svg",
  22962. extra: 621 / 581,
  22963. bottom: 0.075
  22964. }
  22965. },
  22966. maw: {
  22967. height: math.unit(7.59498031496063, "feet"),
  22968. name: "Maw",
  22969. image: {
  22970. source: "./media/characters/athea/maw.svg"
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Lap Cat",
  22977. height: math.unit(2.5, "feet")
  22978. },
  22979. {
  22980. name: "Minimacro",
  22981. height: math.unit(15, "feet"),
  22982. default: true
  22983. },
  22984. {
  22985. name: "Macro",
  22986. height: math.unit(120, "feet")
  22987. },
  22988. {
  22989. name: "Macro+",
  22990. height: math.unit(640, "feet")
  22991. },
  22992. {
  22993. name: "Colossus",
  22994. height: math.unit(2.2, "miles")
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(8 + 8 / 12, "feet"),
  23003. weight: math.unit(130, "kg"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/seroko/front.svg",
  23007. extra: 1385 / 1280,
  23008. bottom: 0.025
  23009. }
  23010. },
  23011. back: {
  23012. height: math.unit(8 + 8 / 12, "feet"),
  23013. weight: math.unit(130, "kg"),
  23014. name: "Back",
  23015. image: {
  23016. source: "./media/characters/seroko/back.svg",
  23017. extra: 1369 / 1238,
  23018. bottom: 0.018
  23019. }
  23020. },
  23021. frontDressed: {
  23022. height: math.unit(8 + 8 / 12, "feet"),
  23023. weight: math.unit(130, "kg"),
  23024. name: "Front (Dressed)",
  23025. image: {
  23026. source: "./media/characters/seroko/front-dressed.svg",
  23027. extra: 1366 / 1275,
  23028. bottom: 0.03
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Normal",
  23035. height: math.unit(8 + 8 / 12, "feet"),
  23036. default: true
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(5.5, "feet"),
  23045. weight: math.unit(160, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/quatzi/front.svg",
  23049. extra: 2346 / 2242,
  23050. bottom: 0.015
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(5.5, "feet"),
  23058. default: true
  23059. },
  23060. {
  23061. name: "Big",
  23062. height: math.unit(7.7, "feet")
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(5 + 11 / 12, "feet"),
  23071. weight: math.unit(180, "lb"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/sen/front.svg",
  23075. extra: 1321 / 1254,
  23076. bottom: 0.015
  23077. }
  23078. },
  23079. side: {
  23080. height: math.unit(5 + 11 / 12, "feet"),
  23081. weight: math.unit(180, "lb"),
  23082. name: "Side",
  23083. image: {
  23084. source: "./media/characters/sen/side.svg",
  23085. extra: 1321 / 1254,
  23086. bottom: 0.007
  23087. }
  23088. },
  23089. back: {
  23090. height: math.unit(5 + 11 / 12, "feet"),
  23091. weight: math.unit(180, "lb"),
  23092. name: "Back",
  23093. image: {
  23094. source: "./media/characters/sen/back.svg",
  23095. extra: 1321 / 1254
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5 + 11 / 12, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(166.6, "cm"),
  23112. weight: math.unit(66.6, "kg"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/fruity/front.svg",
  23116. extra: 1510 / 1386,
  23117. bottom: 0.04
  23118. }
  23119. },
  23120. back: {
  23121. height: math.unit(166.6, "cm"),
  23122. weight: math.unit(66.6, "lb"),
  23123. name: "Back",
  23124. image: {
  23125. source: "./media/characters/fruity/back.svg",
  23126. extra: 1563 / 1435,
  23127. bottom: 0.005
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(166.6, "cm"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Demonic",
  23139. height: math.unit(166.6, "feet")
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23145. {
  23146. side: {
  23147. height: math.unit(10, "feet"),
  23148. weight: math.unit(500, "lb"),
  23149. name: "Side",
  23150. image: {
  23151. source: "./media/characters/zost/side.svg",
  23152. extra: 2870/2533,
  23153. bottom: 252/3122
  23154. }
  23155. },
  23156. mawFront: {
  23157. height: math.unit(1.08, "meters"),
  23158. name: "Maw (Front)",
  23159. image: {
  23160. source: "./media/characters/zost/maw-front.svg"
  23161. }
  23162. },
  23163. mawSide: {
  23164. height: math.unit(2.66, "feet"),
  23165. name: "Maw (Side)",
  23166. image: {
  23167. source: "./media/characters/zost/maw-side.svg"
  23168. }
  23169. },
  23170. wingspan: {
  23171. height: math.unit(7.4, "feet"),
  23172. name: "Wingspan",
  23173. image: {
  23174. source: "./media/characters/zost/wingspan.svg"
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(10, "feet"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(5 + 4 / 12, "feet"),
  23191. weight: math.unit(120, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/luci/front.svg",
  23195. extra: 1985 / 1884,
  23196. bottom: 0.04
  23197. }
  23198. },
  23199. back: {
  23200. height: math.unit(5 + 4 / 12, "feet"),
  23201. weight: math.unit(120, "lb"),
  23202. name: "Back",
  23203. image: {
  23204. source: "./media/characters/luci/back.svg",
  23205. extra: 1892 / 1791,
  23206. bottom: 0.002
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Normal",
  23213. height: math.unit(5 + 4 / 12, "feet"),
  23214. default: true
  23215. },
  23216. ]
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23220. {
  23221. front: {
  23222. height: math.unit(1500, "feet"),
  23223. weight: math.unit(3.8e6, "tons"),
  23224. name: "Front",
  23225. image: {
  23226. source: "./media/characters/2th/front.svg",
  23227. extra: 3489 / 3350,
  23228. bottom: 0.1
  23229. }
  23230. },
  23231. foot: {
  23232. height: math.unit(461, "feet"),
  23233. name: "Foot",
  23234. image: {
  23235. source: "./media/characters/2th/foot.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "\"Micro\"",
  23242. height: math.unit(15 + 7 / 12, "feet")
  23243. },
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(1500, "feet"),
  23247. default: true
  23248. },
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(5000, "feet")
  23252. },
  23253. {
  23254. name: "Megamacro",
  23255. height: math.unit(15, "miles")
  23256. },
  23257. {
  23258. name: "Gigamacro",
  23259. height: math.unit(4000, "miles")
  23260. },
  23261. {
  23262. name: "Galactic",
  23263. height: math.unit(50, "AU")
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(5 + 6 / 12, "feet"),
  23272. weight: math.unit(220, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/amethyst/front.svg",
  23276. extra: 2078 / 2040,
  23277. bottom: 0.045
  23278. }
  23279. },
  23280. back: {
  23281. height: math.unit(5 + 6 / 12, "feet"),
  23282. weight: math.unit(220, "lb"),
  23283. name: "Back",
  23284. image: {
  23285. source: "./media/characters/amethyst/back.svg",
  23286. extra: 2021 / 1989,
  23287. bottom: 0.02
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(5 + 6 / 12, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(4 + 11 / 12, "feet"),
  23304. weight: math.unit(120, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/yumi-akiyama/front.svg",
  23308. extra: 1327 / 1235,
  23309. bottom: 0.02
  23310. }
  23311. },
  23312. back: {
  23313. height: math.unit(4 + 11 / 12, "feet"),
  23314. weight: math.unit(120, "lb"),
  23315. name: "Back",
  23316. image: {
  23317. source: "./media/characters/yumi-akiyama/back.svg",
  23318. extra: 1287 / 1245,
  23319. bottom: 0.002
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Galactic",
  23326. height: math.unit(50, "galaxies"),
  23327. default: true
  23328. },
  23329. {
  23330. name: "Universal",
  23331. height: math.unit(100, "universes")
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(8, "feet"),
  23340. weight: math.unit(500, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/rifter-yrmori/front.svg",
  23344. extra: 1180 / 1125,
  23345. bottom: 0.02
  23346. }
  23347. },
  23348. back: {
  23349. height: math.unit(8, "feet"),
  23350. weight: math.unit(500, "lb"),
  23351. name: "Back",
  23352. image: {
  23353. source: "./media/characters/rifter-yrmori/back.svg",
  23354. extra: 1190 / 1145,
  23355. bottom: 0.001
  23356. }
  23357. },
  23358. wings: {
  23359. height: math.unit(7.75, "feet"),
  23360. weight: math.unit(500, "lb"),
  23361. name: "Wings",
  23362. image: {
  23363. source: "./media/characters/rifter-yrmori/wings.svg",
  23364. extra: 1357 / 1285
  23365. }
  23366. },
  23367. maw: {
  23368. height: math.unit(0.8, "feet"),
  23369. name: "Maw",
  23370. image: {
  23371. source: "./media/characters/rifter-yrmori/maw.svg"
  23372. }
  23373. },
  23374. mawfront: {
  23375. height: math.unit(1.45, "feet"),
  23376. name: "Maw (Front)",
  23377. image: {
  23378. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(8, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Macro",
  23390. height: math.unit(42, "meters")
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23396. {
  23397. were: {
  23398. height: math.unit(25 + 6 / 12, "feet"),
  23399. weight: math.unit(10000, "lb"),
  23400. name: "Were",
  23401. image: {
  23402. source: "./media/characters/tahajin/were.svg",
  23403. extra: 801 / 770,
  23404. bottom: 0.042
  23405. }
  23406. },
  23407. aquatic: {
  23408. height: math.unit(6 + 4 / 12, "feet"),
  23409. weight: math.unit(160, "lb"),
  23410. name: "Aquatic",
  23411. image: {
  23412. source: "./media/characters/tahajin/aquatic.svg",
  23413. extra: 572 / 542,
  23414. bottom: 0.04
  23415. }
  23416. },
  23417. chow: {
  23418. height: math.unit(8 + 11 / 12, "feet"),
  23419. weight: math.unit(450, "lb"),
  23420. name: "Chow",
  23421. image: {
  23422. source: "./media/characters/tahajin/chow.svg",
  23423. extra: 660 / 640,
  23424. bottom: 0.015
  23425. }
  23426. },
  23427. demiNaga: {
  23428. height: math.unit(6 + 8 / 12, "feet"),
  23429. weight: math.unit(300, "lb"),
  23430. name: "Demi Naga",
  23431. image: {
  23432. source: "./media/characters/tahajin/demi-naga.svg",
  23433. extra: 643 / 615,
  23434. bottom: 0.1
  23435. }
  23436. },
  23437. data: {
  23438. height: math.unit(5, "inches"),
  23439. weight: math.unit(0.1, "lb"),
  23440. name: "Data",
  23441. image: {
  23442. source: "./media/characters/tahajin/data.svg"
  23443. }
  23444. },
  23445. fluu: {
  23446. height: math.unit(5 + 7 / 12, "feet"),
  23447. weight: math.unit(140, "lb"),
  23448. name: "Fluu",
  23449. image: {
  23450. source: "./media/characters/tahajin/fluu.svg",
  23451. extra: 628 / 592,
  23452. bottom: 0.02
  23453. }
  23454. },
  23455. starWarrior: {
  23456. height: math.unit(4 + 5 / 12, "feet"),
  23457. weight: math.unit(50, "lb"),
  23458. name: "Star Warrior",
  23459. image: {
  23460. source: "./media/characters/tahajin/star-warrior.svg"
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(25 + 6 / 12, "feet"),
  23468. default: true
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(8, "feet"),
  23477. weight: math.unit(350, "lb"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/gabira/front.svg",
  23481. extra: 1261/1154,
  23482. bottom: 51/1312
  23483. }
  23484. },
  23485. back: {
  23486. height: math.unit(8, "feet"),
  23487. weight: math.unit(350, "lb"),
  23488. name: "Back",
  23489. image: {
  23490. source: "./media/characters/gabira/back.svg",
  23491. extra: 1265/1163,
  23492. bottom: 46/1311
  23493. }
  23494. },
  23495. head: {
  23496. height: math.unit(2.85, "feet"),
  23497. name: "Head",
  23498. image: {
  23499. source: "./media/characters/gabira/head.svg"
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(8, "feet"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(5 + 3 / 12, "feet"),
  23516. weight: math.unit(137, "lb"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/sasha-katraine/front.svg",
  23520. extra: 1745/1694,
  23521. bottom: 37/1782
  23522. }
  23523. },
  23524. back: {
  23525. height: math.unit(5 + 3 / 12, "feet"),
  23526. weight: math.unit(137, "lb"),
  23527. name: "Back",
  23528. image: {
  23529. source: "./media/characters/sasha-katraine/back.svg",
  23530. extra: 1776/1699,
  23531. bottom: 26/1802
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Micro",
  23538. height: math.unit(5, "inches")
  23539. },
  23540. {
  23541. name: "Normal",
  23542. height: math.unit(5 + 3 / 12, "feet"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23549. {
  23550. side: {
  23551. height: math.unit(4, "inches"),
  23552. weight: math.unit(200, "grams"),
  23553. name: "Side",
  23554. image: {
  23555. source: "./media/characters/der/side.svg",
  23556. extra: 719 / 400,
  23557. bottom: 30.6 / 749.9187
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Micro",
  23564. height: math.unit(4, "inches"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23571. {
  23572. side: {
  23573. height: math.unit(30, "meters"),
  23574. weight: math.unit(700, "tonnes"),
  23575. name: "Side",
  23576. image: {
  23577. source: "./media/characters/fixerdragon/side.svg",
  23578. extra: (1293.0514 - 116.03) / 1106.86,
  23579. bottom: 116.03 / 1293.0514
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Planck",
  23586. height: math.unit(1.6e-35, "meters")
  23587. },
  23588. {
  23589. name: "Micro",
  23590. height: math.unit(0.4, "meters")
  23591. },
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(30, "meters"),
  23595. default: true
  23596. },
  23597. {
  23598. name: "Megamacro",
  23599. height: math.unit(1.2, "megameters")
  23600. },
  23601. {
  23602. name: "Teramacro",
  23603. height: math.unit(130, "terameters")
  23604. },
  23605. {
  23606. name: "Yottamacro",
  23607. height: math.unit(6200, "yottameters")
  23608. },
  23609. ]
  23610. ));
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(8, "feet"),
  23616. weight: math.unit(250, "lb"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/kite/front.svg",
  23620. extra: 2796 / 2659,
  23621. bottom: 0.002
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(8, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(360, "feet")
  23634. },
  23635. {
  23636. name: "Megamacro",
  23637. height: math.unit(1500, "feet")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(5 + 11/12, "feet"),
  23646. weight: math.unit(170, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/poojawa-vynar/front.svg",
  23650. extra: 1735/1585,
  23651. bottom: 96/1831
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(5 + 11/12, "feet"),
  23656. weight: math.unit(170, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/poojawa-vynar/back.svg",
  23660. extra: 1749/1607,
  23661. bottom: 28/1777
  23662. }
  23663. },
  23664. male: {
  23665. height: math.unit(5 + 11/12, "feet"),
  23666. weight: math.unit(170, "lb"),
  23667. name: "Male",
  23668. image: {
  23669. source: "./media/characters/poojawa-vynar/male.svg",
  23670. extra: 1855/1713,
  23671. bottom: 63/1918
  23672. }
  23673. },
  23674. taur: {
  23675. height: math.unit(5 + 11/12, "feet"),
  23676. weight: math.unit(170, "lb"),
  23677. name: "Taur",
  23678. image: {
  23679. source: "./media/characters/poojawa-vynar/taur.svg",
  23680. extra: 1151/1059,
  23681. bottom: 356/1507
  23682. }
  23683. },
  23684. frontDressed: {
  23685. height: math.unit(5 + 11/12, "feet"),
  23686. weight: math.unit(170, "lb"),
  23687. name: "Front (Dressed)",
  23688. image: {
  23689. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23690. extra: 1735/1585,
  23691. bottom: 96/1831
  23692. }
  23693. },
  23694. backDressed: {
  23695. height: math.unit(5 + 11/12, "feet"),
  23696. weight: math.unit(170, "lb"),
  23697. name: "Back (Dressed)",
  23698. image: {
  23699. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23700. extra: 1749/1607,
  23701. bottom: 28/1777
  23702. }
  23703. },
  23704. maleDressed: {
  23705. height: math.unit(5 + 11/12, "feet"),
  23706. weight: math.unit(170, "lb"),
  23707. name: "Male (Dressed)",
  23708. image: {
  23709. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23710. extra: 1855/1713,
  23711. bottom: 63/1918
  23712. }
  23713. },
  23714. taurDressed: {
  23715. height: math.unit(5 + 11/12, "feet"),
  23716. weight: math.unit(170, "lb"),
  23717. name: "Taur (Dressed)",
  23718. image: {
  23719. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23720. extra: 1151/1059,
  23721. bottom: 356/1507
  23722. }
  23723. },
  23724. maw: {
  23725. height: math.unit(1.46, "feet"),
  23726. name: "Maw",
  23727. image: {
  23728. source: "./media/characters/poojawa-vynar/maw.svg"
  23729. }
  23730. },
  23731. head: {
  23732. height: math.unit(2.34, "feet"),
  23733. name: "Head",
  23734. image: {
  23735. source: "./media/characters/poojawa-vynar/head.svg"
  23736. }
  23737. },
  23738. paw: {
  23739. height: math.unit(1.61, "feet"),
  23740. name: "Paw",
  23741. image: {
  23742. source: "./media/characters/poojawa-vynar/paw.svg"
  23743. }
  23744. },
  23745. pawToering: {
  23746. height: math.unit(1.72, "feet"),
  23747. name: "Paw (Toering)",
  23748. image: {
  23749. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23750. }
  23751. },
  23752. toering: {
  23753. height: math.unit(2.9, "inches"),
  23754. name: "Toering",
  23755. image: {
  23756. source: "./media/characters/poojawa-vynar/toering.svg"
  23757. }
  23758. },
  23759. shaft: {
  23760. height: math.unit(0.625, "feet"),
  23761. name: "Shaft",
  23762. image: {
  23763. source: "./media/characters/poojawa-vynar/shaft.svg"
  23764. }
  23765. },
  23766. spade: {
  23767. height: math.unit(0.42, "feet"),
  23768. name: "Spade",
  23769. image: {
  23770. source: "./media/characters/poojawa-vynar/spade.svg"
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Shortstack",
  23777. height: math.unit(4, "feet")
  23778. },
  23779. {
  23780. name: "Normal",
  23781. height: math.unit(5 + 11 / 12, "feet"),
  23782. default: true
  23783. },
  23784. {
  23785. name: "Tauric",
  23786. height: math.unit(4, "meters")
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(293, "meters"),
  23795. weight: math.unit(70400, "tons"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/violette/front.svg",
  23799. extra: 1227 / 1180,
  23800. bottom: 0.005
  23801. }
  23802. },
  23803. back: {
  23804. height: math.unit(293, "meters"),
  23805. weight: math.unit(70400, "tons"),
  23806. name: "Back",
  23807. image: {
  23808. source: "./media/characters/violette/back.svg",
  23809. extra: 1227 / 1180,
  23810. bottom: 0.005
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Macro",
  23817. height: math.unit(293, "meters"),
  23818. default: true
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(1050, "feet"),
  23827. weight: math.unit(200000, "tons"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/alessandra/front.svg",
  23831. extra: 960 / 912,
  23832. bottom: 0.06
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(1050, "feet")
  23840. },
  23841. {
  23842. name: "Macro+",
  23843. height: math.unit(900, "meters"),
  23844. default: true
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(5, "feet"),
  23853. weight: math.unit(187, "lb"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/person/front.svg",
  23857. extra: 3087 / 2945,
  23858. bottom: 91 / 3181
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Micro",
  23865. height: math.unit(3, "inches")
  23866. },
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(5, "feet"),
  23870. default: true
  23871. },
  23872. {
  23873. name: "Macro",
  23874. height: math.unit(90, "feet")
  23875. },
  23876. {
  23877. name: "Max Size",
  23878. height: math.unit(280, "feet")
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(4.5, "meters"),
  23887. weight: math.unit(3200, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/ty/front.svg",
  23891. extra: 1038 / 960,
  23892. bottom: 31.156 / 1068
  23893. }
  23894. },
  23895. back: {
  23896. height: math.unit(4.5, "meters"),
  23897. weight: math.unit(3200, "lb"),
  23898. name: "Back",
  23899. image: {
  23900. source: "./media/characters/ty/back.svg",
  23901. extra: 1044 / 966,
  23902. bottom: 7.48 / 1049
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(4.5, "meters"),
  23910. default: true
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23916. {
  23917. front: {
  23918. height: math.unit(5 + 4 / 12, "feet"),
  23919. weight: math.unit(115, "lb"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/rocky/front.svg",
  23923. extra: 1012 / 975,
  23924. bottom: 54 / 1066
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Normal",
  23931. height: math.unit(5 + 4 / 12, "feet"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23938. {
  23939. upright: {
  23940. height: math.unit(6, "meters"),
  23941. weight: math.unit(4000, "kg"),
  23942. name: "Upright",
  23943. image: {
  23944. source: "./media/characters/ruin/upright.svg",
  23945. extra: 668 / 661,
  23946. bottom: 42 / 799.8396
  23947. }
  23948. },
  23949. },
  23950. [
  23951. {
  23952. name: "Normal",
  23953. height: math.unit(6, "meters"),
  23954. default: true
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23960. {
  23961. front: {
  23962. height: math.unit(5, "feet"),
  23963. weight: math.unit(106, "lb"),
  23964. name: "Front",
  23965. image: {
  23966. source: "./media/characters/robin/front.svg",
  23967. extra: 862 / 799,
  23968. bottom: 42.4 / 914.8856
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(5, "feet"),
  23976. default: true
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23982. {
  23983. side: {
  23984. height: math.unit(3, "feet"),
  23985. weight: math.unit(225, "lb"),
  23986. name: "Side",
  23987. image: {
  23988. source: "./media/characters/saian/side.svg",
  23989. extra: 566 / 356,
  23990. bottom: 79.7 / 643
  23991. }
  23992. },
  23993. maw: {
  23994. height: math.unit(2.85, "feet"),
  23995. name: "Maw",
  23996. image: {
  23997. source: "./media/characters/saian/maw.svg"
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Normal",
  24004. height: math.unit(3, "feet"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24011. {
  24012. side: {
  24013. height: math.unit(8, "feet"),
  24014. weight: math.unit(300, "lb"),
  24015. name: "Side",
  24016. image: {
  24017. source: "./media/characters/equus-silvermane/side.svg",
  24018. extra: 2176 / 2050,
  24019. bottom: 65.7 / 2245
  24020. }
  24021. },
  24022. front: {
  24023. height: math.unit(8, "feet"),
  24024. weight: math.unit(300, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/equus-silvermane/front.svg",
  24028. extra: 4633 / 4400,
  24029. bottom: 71.3 / 4706.915
  24030. }
  24031. },
  24032. sideStepping: {
  24033. height: math.unit(8, "feet"),
  24034. weight: math.unit(300, "lb"),
  24035. name: "Side (Stepping)",
  24036. image: {
  24037. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24038. extra: 1968 / 1860,
  24039. bottom: 16.4 / 1989
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(8, "feet")
  24047. },
  24048. {
  24049. name: "Minimacro",
  24050. height: math.unit(75, "feet"),
  24051. default: true
  24052. },
  24053. {
  24054. name: "Macro",
  24055. height: math.unit(150, "feet")
  24056. },
  24057. {
  24058. name: "Macro+",
  24059. height: math.unit(1000, "feet")
  24060. },
  24061. {
  24062. name: "Megamacro",
  24063. height: math.unit(1, "mile")
  24064. },
  24065. ]
  24066. ))
  24067. characterMakers.push(() => makeCharacter(
  24068. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24069. {
  24070. side: {
  24071. height: math.unit(20, "feet"),
  24072. weight: math.unit(30000, "kg"),
  24073. name: "Side",
  24074. image: {
  24075. source: "./media/characters/windar/side.svg",
  24076. extra: 1491 / 1248,
  24077. bottom: 82.56 / 1568
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Normal",
  24084. height: math.unit(20, "feet"),
  24085. default: true
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24091. {
  24092. side: {
  24093. height: math.unit(15.66, "feet"),
  24094. weight: math.unit(150, "lb"),
  24095. name: "Side",
  24096. image: {
  24097. source: "./media/characters/melody/side.svg",
  24098. extra: 1097 / 944,
  24099. bottom: 11.8 / 1109
  24100. }
  24101. },
  24102. sideOutfit: {
  24103. height: math.unit(15.66, "feet"),
  24104. weight: math.unit(150, "lb"),
  24105. name: "Side (Outfit)",
  24106. image: {
  24107. source: "./media/characters/melody/side-outfit.svg",
  24108. extra: 1097 / 944,
  24109. bottom: 11.8 / 1109
  24110. }
  24111. },
  24112. },
  24113. [
  24114. {
  24115. name: "Normal",
  24116. height: math.unit(15.66, "feet"),
  24117. default: true
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24123. {
  24124. armoredFront: {
  24125. height: math.unit(8, "feet"),
  24126. weight: math.unit(325, "lb"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/windera/armored-front.svg",
  24130. extra: 1830/1598,
  24131. bottom: 151/1981
  24132. },
  24133. form: "armored",
  24134. default: true
  24135. },
  24136. macroFront: {
  24137. height: math.unit(70, "feet"),
  24138. weight: math.unit(315453, "lb"),
  24139. name: "Front",
  24140. image: {
  24141. source: "./media/characters/windera/macro-front.svg",
  24142. extra: 963/883,
  24143. bottom: 23/986
  24144. },
  24145. form: "macro",
  24146. default: true
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Normal",
  24152. height: math.unit(8, "feet"),
  24153. default: true,
  24154. form: "armored"
  24155. },
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(70, "feet"),
  24159. default: true,
  24160. form: "macro"
  24161. },
  24162. ],
  24163. {
  24164. "armored": {
  24165. name: "Armored",
  24166. default: true
  24167. },
  24168. "macro": {
  24169. name: "Macro",
  24170. },
  24171. }
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24175. {
  24176. front: {
  24177. height: math.unit(28.75, "feet"),
  24178. weight: math.unit(2000, "kg"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/sonear/front.svg",
  24182. extra: 1041.1 / 964.9,
  24183. bottom: 53.7 / 1096.6
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(28.75, "feet"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24197. {
  24198. side: {
  24199. height: math.unit(25.5, "feet"),
  24200. weight: math.unit(23000, "kg"),
  24201. name: "Side",
  24202. image: {
  24203. source: "./media/characters/kanara/side.svg"
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(25.5, "feet"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24217. {
  24218. side: {
  24219. height: math.unit(10, "feet"),
  24220. weight: math.unit(1000, "kg"),
  24221. name: "Side",
  24222. image: {
  24223. source: "./media/characters/ereus/side.svg",
  24224. extra: 1157 / 959,
  24225. bottom: 153 / 1312.5
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Normal",
  24232. height: math.unit(10, "feet"),
  24233. default: true
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24239. {
  24240. side: {
  24241. height: math.unit(4.5, "feet"),
  24242. weight: math.unit(500, "lb"),
  24243. name: "Side",
  24244. image: {
  24245. source: "./media/characters/e-ter/side.svg",
  24246. extra: 1550 / 1248,
  24247. bottom: 146 / 1694
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(4.5, "feet"),
  24255. default: true
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24261. {
  24262. side: {
  24263. height: math.unit(9.7, "feet"),
  24264. weight: math.unit(4000, "kg"),
  24265. name: "Side",
  24266. image: {
  24267. source: "./media/characters/yamie/side.svg"
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(9.7, "feet"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24281. {
  24282. front: {
  24283. height: math.unit(50, "feet"),
  24284. weight: math.unit(50000, "kg"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/anders/front.svg",
  24288. extra: 570 / 539,
  24289. bottom: 14.7 / 586.7
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Large",
  24296. height: math.unit(50, "feet")
  24297. },
  24298. {
  24299. name: "Macro",
  24300. height: math.unit(2000, "feet"),
  24301. default: true
  24302. },
  24303. {
  24304. name: "Megamacro",
  24305. height: math.unit(12, "miles")
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(7 + 2 / 12, "feet"),
  24314. weight: math.unit(300, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/reban/front.svg",
  24318. extra: 1287/1212,
  24319. bottom: 148/1435
  24320. }
  24321. },
  24322. head: {
  24323. height: math.unit(1.95, "feet"),
  24324. name: "Head",
  24325. image: {
  24326. source: "./media/characters/reban/head.svg"
  24327. }
  24328. },
  24329. maw: {
  24330. height: math.unit(0.95, "feet"),
  24331. name: "Maw",
  24332. image: {
  24333. source: "./media/characters/reban/maw.svg"
  24334. }
  24335. },
  24336. foot: {
  24337. height: math.unit(1.65, "feet"),
  24338. name: "Foot",
  24339. image: {
  24340. source: "./media/characters/reban/foot.svg"
  24341. }
  24342. },
  24343. dick: {
  24344. height: math.unit(7 / 5, "feet"),
  24345. name: "Dick",
  24346. image: {
  24347. source: "./media/characters/reban/dick.svg"
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Natural Height",
  24354. height: math.unit(7 + 2 / 12, "feet")
  24355. },
  24356. {
  24357. name: "Macro",
  24358. height: math.unit(500, "feet"),
  24359. default: true
  24360. },
  24361. {
  24362. name: "Canon Height",
  24363. height: math.unit(50, "AU")
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(6, "feet"),
  24372. weight: math.unit(150, "lb"),
  24373. name: "Front",
  24374. image: {
  24375. source: "./media/characters/terrance-keayes/front.svg",
  24376. extra: 1.005,
  24377. bottom: 151 / 1615
  24378. }
  24379. },
  24380. side: {
  24381. height: math.unit(6, "feet"),
  24382. weight: math.unit(150, "lb"),
  24383. name: "Side",
  24384. image: {
  24385. source: "./media/characters/terrance-keayes/side.svg",
  24386. extra: 1.005,
  24387. bottom: 129.4 / 1544
  24388. }
  24389. },
  24390. back: {
  24391. height: math.unit(6, "feet"),
  24392. weight: math.unit(150, "lb"),
  24393. name: "Back",
  24394. image: {
  24395. source: "./media/characters/terrance-keayes/back.svg",
  24396. extra: 1.005,
  24397. bottom: 58.4 / 1557.3
  24398. }
  24399. },
  24400. dick: {
  24401. height: math.unit(6 * 0.208, "feet"),
  24402. name: "Dick",
  24403. image: {
  24404. source: "./media/characters/terrance-keayes/dick.svg"
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Canon Height",
  24411. height: math.unit(35, "miles"),
  24412. default: true
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24418. {
  24419. front: {
  24420. height: math.unit(6, "feet"),
  24421. weight: math.unit(150, "lb"),
  24422. name: "Front",
  24423. image: {
  24424. source: "./media/characters/ofelia/front.svg",
  24425. extra: 1130/1117,
  24426. bottom: 91/1221
  24427. }
  24428. },
  24429. back: {
  24430. height: math.unit(6, "feet"),
  24431. weight: math.unit(150, "lb"),
  24432. name: "Back",
  24433. image: {
  24434. source: "./media/characters/ofelia/back.svg",
  24435. extra: 1172/1159,
  24436. bottom: 28/1200
  24437. }
  24438. },
  24439. maw: {
  24440. height: math.unit(1, "feet"),
  24441. name: "Maw",
  24442. image: {
  24443. source: "./media/characters/ofelia/maw.svg"
  24444. }
  24445. },
  24446. foot: {
  24447. height: math.unit(1.949, "feet"),
  24448. name: "Foot",
  24449. image: {
  24450. source: "./media/characters/ofelia/foot.svg"
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Canon Height",
  24457. height: math.unit(2000, "miles"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(6, "feet"),
  24467. weight: math.unit(150, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/samuel/front.svg",
  24471. extra: 265 / 258,
  24472. bottom: 2 / 266.1566
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(100, "feet"),
  24480. default: true
  24481. },
  24482. {
  24483. name: "Full Size",
  24484. height: math.unit(1000, "miles")
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(6, "feet"),
  24493. weight: math.unit(300, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/beishir-kiel/front.svg",
  24497. extra: 569 / 547,
  24498. bottom: 41.9 / 609
  24499. }
  24500. },
  24501. maw: {
  24502. height: math.unit(6 * 0.202, "feet"),
  24503. name: "Maw",
  24504. image: {
  24505. source: "./media/characters/beishir-kiel/maw.svg"
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Macro",
  24512. height: math.unit(300, "feet"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 7/12, "feet"),
  24522. weight: math.unit(120, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/logan-grey/front.svg",
  24526. extra: 1836/1738,
  24527. bottom: 108/1944
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(5 + 7/12, "feet"),
  24532. weight: math.unit(120, "lb"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/logan-grey/back.svg",
  24536. extra: 1880/1794,
  24537. bottom: 24/1904
  24538. }
  24539. },
  24540. frontSfw: {
  24541. height: math.unit(5 + 7/12, "feet"),
  24542. weight: math.unit(120, "lb"),
  24543. name: "Front (SFW)",
  24544. image: {
  24545. source: "./media/characters/logan-grey/front-sfw.svg",
  24546. extra: 1836/1738,
  24547. bottom: 108/1944
  24548. }
  24549. },
  24550. backSfw: {
  24551. height: math.unit(5 + 7/12, "feet"),
  24552. weight: math.unit(120, "lb"),
  24553. name: "Back (SFW)",
  24554. image: {
  24555. source: "./media/characters/logan-grey/back-sfw.svg",
  24556. extra: 1880/1794,
  24557. bottom: 24/1904
  24558. }
  24559. },
  24560. hands: {
  24561. height: math.unit(0.84, "feet"),
  24562. name: "Hands",
  24563. image: {
  24564. source: "./media/characters/logan-grey/hands.svg"
  24565. }
  24566. },
  24567. paws: {
  24568. height: math.unit(0.72, "feet"),
  24569. name: "Paws",
  24570. image: {
  24571. source: "./media/characters/logan-grey/paws.svg"
  24572. }
  24573. },
  24574. cock: {
  24575. height: math.unit(1.45, "feet"),
  24576. name: "Cock",
  24577. image: {
  24578. source: "./media/characters/logan-grey/cock.svg"
  24579. }
  24580. },
  24581. cockAlt: {
  24582. height: math.unit(1.437, "feet"),
  24583. name: "Cock (alt)",
  24584. image: {
  24585. source: "./media/characters/logan-grey/cock-alt.svg"
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Normal",
  24592. height: math.unit(5 + 8 / 12, "feet")
  24593. },
  24594. {
  24595. name: "The 500 Foot Femboy",
  24596. height: math.unit(500, "feet"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Megmacro",
  24601. height: math.unit(20, "miles")
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(8 + 2 / 12, "feet"),
  24610. weight: math.unit(275, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/draganta/front.svg",
  24614. extra: 1177 / 1135,
  24615. bottom: 33.46 / 1212.1
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(8 + 6 / 12, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Macro",
  24627. height: math.unit(150, "feet")
  24628. },
  24629. {
  24630. name: "Megamacro",
  24631. height: math.unit(1000, "miles")
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(1.72, "m"),
  24640. weight: math.unit(80, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/voski/front.svg",
  24644. extra: 2076.22 / 2022.4,
  24645. bottom: 102.7 / 2177.3866
  24646. }
  24647. },
  24648. frontFlaccid: {
  24649. height: math.unit(1.72, "m"),
  24650. weight: math.unit(80, "lb"),
  24651. name: "Front (Flaccid)",
  24652. image: {
  24653. source: "./media/characters/voski/front-flaccid.svg",
  24654. extra: 2076.22 / 2022.4,
  24655. bottom: 102.7 / 2177.3866
  24656. }
  24657. },
  24658. frontErect: {
  24659. height: math.unit(1.72, "m"),
  24660. weight: math.unit(80, "lb"),
  24661. name: "Front (Erect)",
  24662. image: {
  24663. source: "./media/characters/voski/front-erect.svg",
  24664. extra: 2076.22 / 2022.4,
  24665. bottom: 102.7 / 2177.3866
  24666. }
  24667. },
  24668. back: {
  24669. height: math.unit(1.72, "m"),
  24670. weight: math.unit(80, "lb"),
  24671. name: "Back",
  24672. image: {
  24673. source: "./media/characters/voski/back.svg",
  24674. extra: 2104 / 2051,
  24675. bottom: 10.45 / 2113.63
  24676. }
  24677. },
  24678. },
  24679. [
  24680. {
  24681. name: "Normal",
  24682. height: math.unit(1.72, "m")
  24683. },
  24684. {
  24685. name: "Macro",
  24686. height: math.unit(55, "m"),
  24687. default: true
  24688. },
  24689. {
  24690. name: "Macro+",
  24691. height: math.unit(300, "m")
  24692. },
  24693. {
  24694. name: "Macro++",
  24695. height: math.unit(700, "m")
  24696. },
  24697. {
  24698. name: "Macro+++",
  24699. height: math.unit(4500, "m")
  24700. },
  24701. {
  24702. name: "Macro++++",
  24703. height: math.unit(45, "km")
  24704. },
  24705. {
  24706. name: "Macro+++++",
  24707. height: math.unit(1220, "km")
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(2.3, "m"),
  24716. weight: math.unit(304, "kg"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/icowom-lee/front.svg",
  24720. extra: 985 / 955,
  24721. bottom: 25.4 / 1012
  24722. }
  24723. },
  24724. fronttentacles: {
  24725. height: math.unit(2.3, "m"),
  24726. weight: math.unit(304, "kg"),
  24727. name: "Front-tentacles",
  24728. image: {
  24729. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24730. extra: 985 / 955,
  24731. bottom: 25.4 / 1012
  24732. }
  24733. },
  24734. back: {
  24735. height: math.unit(2.3, "m"),
  24736. weight: math.unit(304, "kg"),
  24737. name: "Back",
  24738. image: {
  24739. source: "./media/characters/icowom-lee/back.svg",
  24740. extra: 975 / 954,
  24741. bottom: 9.5 / 985
  24742. }
  24743. },
  24744. backtentacles: {
  24745. height: math.unit(2.3, "m"),
  24746. weight: math.unit(304, "kg"),
  24747. name: "Back-tentacles",
  24748. image: {
  24749. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24750. extra: 975 / 954,
  24751. bottom: 9.5 / 985
  24752. }
  24753. },
  24754. frontDressed: {
  24755. height: math.unit(2.3, "m"),
  24756. weight: math.unit(304, "kg"),
  24757. name: "Front (Dressed)",
  24758. image: {
  24759. source: "./media/characters/icowom-lee/front-dressed.svg",
  24760. extra: 3076 / 2933,
  24761. bottom: 51.4 / 3125.1889
  24762. }
  24763. },
  24764. rump: {
  24765. height: math.unit(0.776, "meters"),
  24766. name: "Rump",
  24767. image: {
  24768. source: "./media/characters/icowom-lee/rump.svg"
  24769. }
  24770. },
  24771. genitals: {
  24772. height: math.unit(0.78, "meters"),
  24773. name: "Genitals",
  24774. image: {
  24775. source: "./media/characters/icowom-lee/genitals.svg"
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(2.3, "meters"),
  24783. default: true
  24784. },
  24785. {
  24786. name: "Macro",
  24787. height: math.unit(94, "meters"),
  24788. default: true
  24789. },
  24790. ]
  24791. ))
  24792. characterMakers.push(() => makeCharacter(
  24793. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24794. {
  24795. front: {
  24796. height: math.unit(22, "meters"),
  24797. weight: math.unit(21000, "kg"),
  24798. name: "Front",
  24799. image: {
  24800. source: "./media/characters/shock-diamond/front.svg",
  24801. extra: 2204 / 2053,
  24802. bottom: 65 / 2239.47
  24803. }
  24804. },
  24805. frontNude: {
  24806. height: math.unit(22, "meters"),
  24807. weight: math.unit(21000, "kg"),
  24808. name: "Front (Nude)",
  24809. image: {
  24810. source: "./media/characters/shock-diamond/front-nude.svg",
  24811. extra: 2514 / 2285,
  24812. bottom: 13 / 2527.56
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(3, "meters")
  24820. },
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(22, "meters"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24830. {
  24831. front: {
  24832. height: math.unit(5 + 4/12, "feet"),
  24833. weight: math.unit(125, "lb"),
  24834. name: "Front",
  24835. image: {
  24836. source: "./media/characters/rory/front.svg",
  24837. extra: 1790/1681,
  24838. bottom: 66/1856
  24839. },
  24840. form: "normal",
  24841. default: true
  24842. },
  24843. back: {
  24844. height: math.unit(5 + 4/12, "feet"),
  24845. weight: math.unit(125, "lb"),
  24846. name: "Back",
  24847. image: {
  24848. source: "./media/characters/rory/back.svg",
  24849. extra: 1805/1690,
  24850. bottom: 56/1861
  24851. },
  24852. form: "normal"
  24853. },
  24854. frontDressed: {
  24855. height: math.unit(5 + 4/12, "feet"),
  24856. weight: math.unit(125, "lb"),
  24857. name: "Front (Dressed)",
  24858. image: {
  24859. source: "./media/characters/rory/front-dressed.svg",
  24860. extra: 1790/1681,
  24861. bottom: 66/1856
  24862. },
  24863. form: "normal"
  24864. },
  24865. backDressed: {
  24866. height: math.unit(5 + 4/12, "feet"),
  24867. weight: math.unit(125, "lb"),
  24868. name: "Back (Dressed)",
  24869. image: {
  24870. source: "./media/characters/rory/back-dressed.svg",
  24871. extra: 1805/1690,
  24872. bottom: 56/1861
  24873. },
  24874. form: "normal"
  24875. },
  24876. frontNsfw: {
  24877. height: math.unit(5 + 4/12, "feet"),
  24878. weight: math.unit(125, "lb"),
  24879. name: "Front (NSFW)",
  24880. image: {
  24881. source: "./media/characters/rory/front-nsfw.svg",
  24882. extra: 1790/1681,
  24883. bottom: 66/1856
  24884. },
  24885. form: "normal"
  24886. },
  24887. backNsfw: {
  24888. height: math.unit(5 + 4/12, "feet"),
  24889. weight: math.unit(125, "lb"),
  24890. name: "Back (NSFW)",
  24891. image: {
  24892. source: "./media/characters/rory/back-nsfw.svg",
  24893. extra: 1805/1690,
  24894. bottom: 56/1861
  24895. },
  24896. form: "normal"
  24897. },
  24898. dick: {
  24899. height: math.unit(0.8, "feet"),
  24900. name: "Dick",
  24901. image: {
  24902. source: "./media/characters/rory/dick.svg"
  24903. },
  24904. form: "normal"
  24905. },
  24906. thicc_front: {
  24907. height: math.unit(5 + 4/12, "feet"),
  24908. weight: math.unit(195, "lb"),
  24909. name: "Front",
  24910. image: {
  24911. source: "./media/characters/rory/thicc-front.svg",
  24912. extra: 1220/1100,
  24913. bottom: 103/1323
  24914. },
  24915. form: "thicc",
  24916. default: true
  24917. },
  24918. thicc_back: {
  24919. height: math.unit(5 + 4/12, "feet"),
  24920. weight: math.unit(195, "lb"),
  24921. name: "Back",
  24922. image: {
  24923. source: "./media/characters/rory/thicc-back.svg",
  24924. extra: 1166/1086,
  24925. bottom: 35/1201
  24926. },
  24927. form: "thicc"
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Micro",
  24933. height: math.unit(3, "inches"),
  24934. allForms: true
  24935. },
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(5 + 4/12, "feet"),
  24939. allForms: true,
  24940. default: true
  24941. },
  24942. {
  24943. name: "Macro",
  24944. height: math.unit(90, "feet"),
  24945. allForms: true
  24946. },
  24947. {
  24948. name: "Supercharged",
  24949. height: math.unit(270, "feet"),
  24950. allForms: true
  24951. },
  24952. ],
  24953. {
  24954. "normal": {
  24955. name: "Normal",
  24956. default: true
  24957. },
  24958. "thicc": {
  24959. name: "Thicc",
  24960. },
  24961. }
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(5 + 9 / 12, "feet"),
  24968. weight: math.unit(190, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/sprisk/front.svg",
  24972. extra: 1225 / 1180,
  24973. bottom: 42.7 / 1266.4
  24974. }
  24975. },
  24976. frontNsfw: {
  24977. height: math.unit(5 + 9 / 12, "feet"),
  24978. weight: math.unit(190, "lb"),
  24979. name: "Front (NSFW)",
  24980. image: {
  24981. source: "./media/characters/sprisk/front-nsfw.svg",
  24982. extra: 1225 / 1180,
  24983. bottom: 42.7 / 1266.4
  24984. }
  24985. },
  24986. back: {
  24987. height: math.unit(5 + 9 / 12, "feet"),
  24988. weight: math.unit(190, "lb"),
  24989. name: "Back",
  24990. image: {
  24991. source: "./media/characters/sprisk/back.svg",
  24992. extra: 1247 / 1200,
  24993. bottom: 5.6 / 1253.04
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Tiny",
  25000. height: math.unit(2, "inches")
  25001. },
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(5 + 9 / 12, "feet"),
  25005. default: true
  25006. },
  25007. {
  25008. name: "Mini Macro",
  25009. height: math.unit(18, "feet")
  25010. },
  25011. {
  25012. name: "Macro",
  25013. height: math.unit(100, "feet")
  25014. },
  25015. {
  25016. name: "MACRO",
  25017. height: math.unit(50, "miles")
  25018. },
  25019. {
  25020. name: "M A C R O",
  25021. height: math.unit(300, "miles")
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25027. {
  25028. side: {
  25029. height: math.unit(15.6, "meters"),
  25030. weight: math.unit(700000, "kg"),
  25031. name: "Side",
  25032. image: {
  25033. source: "./media/characters/bunsen/side.svg",
  25034. extra: 1644 / 358
  25035. }
  25036. },
  25037. foot: {
  25038. height: math.unit(1.611 * 1644 / 358, "meter"),
  25039. name: "Foot",
  25040. image: {
  25041. source: "./media/characters/bunsen/foot.svg"
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Small",
  25048. height: math.unit(10, "feet")
  25049. },
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(15.6, "meters"),
  25053. default: true
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(4 + 11 / 12, "feet"),
  25062. weight: math.unit(140, "lb"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/sesh/front.svg",
  25066. extra: 3420 / 3231,
  25067. bottom: 72 / 3949.5
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(4 + 11 / 12, "feet")
  25075. },
  25076. {
  25077. name: "Grown",
  25078. height: math.unit(15, "feet"),
  25079. default: true
  25080. },
  25081. {
  25082. name: "Macro",
  25083. height: math.unit(1500, "feet")
  25084. },
  25085. {
  25086. name: "Megamacro",
  25087. height: math.unit(30, "miles")
  25088. },
  25089. {
  25090. name: "Continental",
  25091. height: math.unit(3000, "miles")
  25092. },
  25093. {
  25094. name: "Gravity Mass",
  25095. height: math.unit(300000, "miles")
  25096. },
  25097. {
  25098. name: "Planet Buster",
  25099. height: math.unit(30000000, "miles")
  25100. },
  25101. {
  25102. name: "Big",
  25103. height: math.unit(3000000000, "miles")
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25109. {
  25110. front: {
  25111. height: math.unit(9, "feet"),
  25112. weight: math.unit(350, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/pepper/front.svg",
  25116. extra: 1448 / 1312,
  25117. bottom: 9.4 / 1457.88
  25118. }
  25119. },
  25120. back: {
  25121. height: math.unit(9, "feet"),
  25122. weight: math.unit(350, "lb"),
  25123. name: "Back",
  25124. image: {
  25125. source: "./media/characters/pepper/back.svg",
  25126. extra: 1423 / 1300,
  25127. bottom: 4.6 / 1429
  25128. }
  25129. },
  25130. maw: {
  25131. height: math.unit(0.932, "feet"),
  25132. name: "Maw",
  25133. image: {
  25134. source: "./media/characters/pepper/maw.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(9, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(6, "feet"),
  25151. weight: math.unit(150, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/maelstrom/front.svg",
  25155. extra: 2100 / 1883,
  25156. bottom: 94 / 2196.7
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Less Kaiju",
  25163. height: math.unit(200, "feet")
  25164. },
  25165. {
  25166. name: "Kaiju",
  25167. height: math.unit(400, "feet"),
  25168. default: true
  25169. },
  25170. {
  25171. name: "Kaiju-er",
  25172. height: math.unit(600, "feet")
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(6 + 5 / 12, "feet"),
  25181. weight: math.unit(180, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/lexir/front.svg",
  25185. extra: 180 / 172,
  25186. bottom: 12 / 192
  25187. }
  25188. },
  25189. back: {
  25190. height: math.unit(6 + 5 / 12, "feet"),
  25191. weight: math.unit(180, "lb"),
  25192. name: "Back",
  25193. image: {
  25194. source: "./media/characters/lexir/back.svg",
  25195. extra: 1273/1201,
  25196. bottom: 39/1312
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Very Smal",
  25203. height: math.unit(1, "nm")
  25204. },
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(6 + 5 / 12, "feet"),
  25208. default: true
  25209. },
  25210. {
  25211. name: "Macro",
  25212. height: math.unit(1, "mile")
  25213. },
  25214. {
  25215. name: "Megamacro",
  25216. height: math.unit(50, "miles")
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(1.5, "meters"),
  25225. weight: math.unit(100, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/maksio/front.svg",
  25229. extra: 1549 / 1531,
  25230. bottom: 123.7 / 1674.5429
  25231. }
  25232. },
  25233. back: {
  25234. height: math.unit(1.5, "meters"),
  25235. weight: math.unit(100, "lb"),
  25236. name: "Back",
  25237. image: {
  25238. source: "./media/characters/maksio/back.svg",
  25239. extra: 1541 / 1509,
  25240. bottom: 97 / 1639
  25241. }
  25242. },
  25243. hand: {
  25244. height: math.unit(0.621, "feet"),
  25245. name: "Hand",
  25246. image: {
  25247. source: "./media/characters/maksio/hand.svg"
  25248. }
  25249. },
  25250. foot: {
  25251. height: math.unit(1.611, "feet"),
  25252. name: "Foot",
  25253. image: {
  25254. source: "./media/characters/maksio/foot.svg"
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Shrunken",
  25261. height: math.unit(10, "cm")
  25262. },
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(150, "cm"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(100, "feet"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/erza-bear/front.svg",
  25278. extra: 2449 / 2390,
  25279. bottom: 46 / 2494
  25280. }
  25281. },
  25282. back: {
  25283. height: math.unit(100, "feet"),
  25284. name: "Back",
  25285. image: {
  25286. source: "./media/characters/erza-bear/back.svg",
  25287. extra: 2489 / 2430,
  25288. bottom: 85.4 / 2480
  25289. }
  25290. },
  25291. tail: {
  25292. height: math.unit(42, "feet"),
  25293. name: "Tail",
  25294. image: {
  25295. source: "./media/characters/erza-bear/tail.svg"
  25296. }
  25297. },
  25298. tongue: {
  25299. height: math.unit(8, "feet"),
  25300. name: "Tongue",
  25301. image: {
  25302. source: "./media/characters/erza-bear/tongue.svg"
  25303. }
  25304. },
  25305. dick: {
  25306. height: math.unit(10.5, "feet"),
  25307. name: "Dick",
  25308. image: {
  25309. source: "./media/characters/erza-bear/dick.svg"
  25310. }
  25311. },
  25312. dickVertical: {
  25313. height: math.unit(16.9, "feet"),
  25314. name: "Dick (Vertical)",
  25315. image: {
  25316. source: "./media/characters/erza-bear/dick-vertical.svg"
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(100, "feet"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(172, "cm"),
  25333. weight: math.unit(73, "kg"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/violet-flor/front.svg",
  25337. extra: 1530 / 1442,
  25338. bottom: 61.9 / 1588.8
  25339. }
  25340. },
  25341. back: {
  25342. height: math.unit(180, "cm"),
  25343. weight: math.unit(73, "kg"),
  25344. name: "Back",
  25345. image: {
  25346. source: "./media/characters/violet-flor/back.svg",
  25347. extra: 1692 / 1630,
  25348. bottom: 20 / 1712
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Normal",
  25355. height: math.unit(172, "cm"),
  25356. default: true
  25357. },
  25358. ]
  25359. ))
  25360. characterMakers.push(() => makeCharacter(
  25361. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25362. {
  25363. front: {
  25364. height: math.unit(6, "feet"),
  25365. weight: math.unit(220, "lb"),
  25366. name: "Front",
  25367. image: {
  25368. source: "./media/characters/lynn-rhea/front.svg",
  25369. extra: 310 / 273
  25370. }
  25371. },
  25372. back: {
  25373. height: math.unit(6, "feet"),
  25374. weight: math.unit(220, "lb"),
  25375. name: "Back",
  25376. image: {
  25377. source: "./media/characters/lynn-rhea/back.svg",
  25378. extra: 310 / 273
  25379. }
  25380. },
  25381. dicks: {
  25382. height: math.unit(0.9, "feet"),
  25383. name: "Dicks",
  25384. image: {
  25385. source: "./media/characters/lynn-rhea/dicks.svg"
  25386. }
  25387. },
  25388. slit: {
  25389. height: math.unit(0.4, "feet"),
  25390. name: "Slit",
  25391. image: {
  25392. source: "./media/characters/lynn-rhea/slit.svg"
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Micro",
  25399. height: math.unit(1, "inch")
  25400. },
  25401. {
  25402. name: "Macro",
  25403. height: math.unit(60, "feet"),
  25404. default: true
  25405. },
  25406. {
  25407. name: "Megamacro",
  25408. height: math.unit(2, "miles")
  25409. },
  25410. {
  25411. name: "Gigamacro",
  25412. height: math.unit(3, "earths")
  25413. },
  25414. {
  25415. name: "Galactic",
  25416. height: math.unit(0.8, "galaxies")
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25422. {
  25423. front: {
  25424. height: math.unit(1600, "feet"),
  25425. weight: math.unit(85758785169, "kg"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/valathos/front.svg",
  25429. extra: 1451 / 1339
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(1600, "feet"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(7 + 5 / 12, "feet"),
  25446. weight: math.unit(300, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/azula/front.svg",
  25450. extra: 3208 / 2880,
  25451. bottom: 80.2 / 3277
  25452. }
  25453. },
  25454. back: {
  25455. height: math.unit(7 + 5 / 12, "feet"),
  25456. weight: math.unit(300, "lb"),
  25457. name: "Back",
  25458. image: {
  25459. source: "./media/characters/azula/back.svg",
  25460. extra: 3169 / 2822,
  25461. bottom: 150.6 / 3321
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Normal",
  25468. height: math.unit(7 + 5 / 12, "feet"),
  25469. default: true
  25470. },
  25471. {
  25472. name: "Big",
  25473. height: math.unit(20, "feet")
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25479. {
  25480. front: {
  25481. height: math.unit(5 + 1 / 12, "feet"),
  25482. weight: math.unit(110, "lb"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/rupert/front.svg",
  25486. extra: 1549 / 1495,
  25487. bottom: 54.2 / 1604.4
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Normal",
  25494. height: math.unit(5 + 1 / 12, "feet"),
  25495. default: true
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25501. {
  25502. front: {
  25503. height: math.unit(8 + 4 / 12, "feet"),
  25504. weight: math.unit(350, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/sheera-castellar/front.svg",
  25508. extra: 1957 / 1894,
  25509. bottom: 26.97 / 1975.017
  25510. }
  25511. },
  25512. side: {
  25513. height: math.unit(8 + 4 / 12, "feet"),
  25514. weight: math.unit(350, "lb"),
  25515. name: "Side",
  25516. image: {
  25517. source: "./media/characters/sheera-castellar/side.svg",
  25518. extra: 1957 / 1894
  25519. }
  25520. },
  25521. back: {
  25522. height: math.unit(8 + 4 / 12, "feet"),
  25523. weight: math.unit(350, "lb"),
  25524. name: "Back",
  25525. image: {
  25526. source: "./media/characters/sheera-castellar/back.svg",
  25527. extra: 1957 / 1894
  25528. }
  25529. },
  25530. angled: {
  25531. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25532. weight: math.unit(350, "lb"),
  25533. name: "Angled",
  25534. image: {
  25535. source: "./media/characters/sheera-castellar/angled.svg",
  25536. extra: 1807 / 1707,
  25537. bottom: 68 / 1875
  25538. }
  25539. },
  25540. genitals: {
  25541. height: math.unit(2.2, "feet"),
  25542. name: "Genitals",
  25543. image: {
  25544. source: "./media/characters/sheera-castellar/genitals.svg"
  25545. }
  25546. },
  25547. taur: {
  25548. height: math.unit(10 + 6/12, "feet"),
  25549. name: "Taur",
  25550. image: {
  25551. source: "./media/characters/sheera-castellar/taur.svg",
  25552. extra: 2017/1909,
  25553. bottom: 185/2202
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(8 + 4 / 12, "feet")
  25561. },
  25562. {
  25563. name: "Macro",
  25564. height: math.unit(150, "feet"),
  25565. default: true
  25566. },
  25567. {
  25568. name: "Macro+",
  25569. height: math.unit(800, "feet")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(6, "feet"),
  25578. weight: math.unit(150, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/jaipur/front.svg",
  25582. extra: 3860 / 3731,
  25583. bottom: 287 / 4140
  25584. }
  25585. },
  25586. back: {
  25587. height: math.unit(6, "feet"),
  25588. weight: math.unit(150, "lb"),
  25589. name: "Back",
  25590. image: {
  25591. source: "./media/characters/jaipur/back.svg",
  25592. extra: 1637/1561,
  25593. bottom: 154/1791
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(1.85, "meters"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(150, "meters")
  25606. },
  25607. {
  25608. name: "Macro+",
  25609. height: math.unit(0.5, "miles")
  25610. },
  25611. {
  25612. name: "Macro++",
  25613. height: math.unit(2.5, "miles")
  25614. },
  25615. {
  25616. name: "Macro+++",
  25617. height: math.unit(12, "miles")
  25618. },
  25619. {
  25620. name: "Macro++++",
  25621. height: math.unit(120, "miles")
  25622. },
  25623. {
  25624. name: "Macro+++++",
  25625. height: math.unit(1200, "miles")
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(6, "feet"),
  25634. weight: math.unit(150, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/sheila-wolf/front.svg",
  25638. extra: 1931 / 1808,
  25639. bottom: 29.5 / 1960
  25640. }
  25641. },
  25642. dick: {
  25643. height: math.unit(1.464, "feet"),
  25644. name: "Dick",
  25645. image: {
  25646. source: "./media/characters/sheila-wolf/dick.svg"
  25647. }
  25648. },
  25649. muzzle: {
  25650. height: math.unit(0.513, "feet"),
  25651. name: "Muzzle",
  25652. image: {
  25653. source: "./media/characters/sheila-wolf/muzzle.svg"
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(70, "feet"),
  25661. default: true
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(32, "meters"),
  25670. weight: math.unit(300000, "kg"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/almor/front.svg",
  25674. extra: 1408 / 1322,
  25675. bottom: 94.6 / 1506.5
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Macro",
  25682. height: math.unit(32, "meters"),
  25683. default: true
  25684. },
  25685. ]
  25686. ))
  25687. characterMakers.push(() => makeCharacter(
  25688. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25689. {
  25690. front: {
  25691. height: math.unit(7, "feet"),
  25692. weight: math.unit(200, "lb"),
  25693. name: "Front",
  25694. image: {
  25695. source: "./media/characters/silver/front.svg",
  25696. extra: 472.1 / 450.5,
  25697. bottom: 26.5 / 499.424
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(7, "feet"),
  25705. default: true
  25706. },
  25707. {
  25708. name: "Macro",
  25709. height: math.unit(800, "feet")
  25710. },
  25711. {
  25712. name: "Megamacro",
  25713. height: math.unit(250, "miles")
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(6, "feet"),
  25722. weight: math.unit(150, "lb"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/pliskin/front.svg",
  25726. extra: 1469 / 1359,
  25727. bottom: 70 / 1540
  25728. }
  25729. },
  25730. },
  25731. [
  25732. {
  25733. name: "Micro",
  25734. height: math.unit(3, "inches")
  25735. },
  25736. {
  25737. name: "Normal",
  25738. height: math.unit(5 + 11 / 12, "feet"),
  25739. default: true
  25740. },
  25741. {
  25742. name: "Macro",
  25743. height: math.unit(120, "feet")
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25749. {
  25750. front: {
  25751. height: math.unit(6, "feet"),
  25752. weight: math.unit(150, "lb"),
  25753. name: "Front",
  25754. image: {
  25755. source: "./media/characters/sammy/front.svg",
  25756. extra: 1193 / 1089,
  25757. bottom: 30.5 / 1226
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Macro",
  25764. height: math.unit(1700, "feet"),
  25765. default: true
  25766. },
  25767. {
  25768. name: "Examacro",
  25769. height: math.unit(2.5e9, "lightyears")
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25775. {
  25776. front: {
  25777. height: math.unit(21, "meters"),
  25778. weight: math.unit(12, "tonnes"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/kuru/front.svg",
  25782. extra: 4301 / 3785,
  25783. bottom: 371.3 / 4691
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(21, "meters"),
  25791. default: true
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(23, "meters"),
  25800. weight: math.unit(12.2, "tonnes"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/rakka/front.svg",
  25804. extra: 4670 / 4169,
  25805. bottom: 301 / 4968.7
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Macro",
  25812. height: math.unit(23, "meters"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(6, "feet"),
  25822. weight: math.unit(150, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/rhys-feline/front.svg",
  25826. extra: 2488 / 2308,
  25827. bottom: 35.67 / 2519.19
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Really Small",
  25834. height: math.unit(1, "nm")
  25835. },
  25836. {
  25837. name: "Micro",
  25838. height: math.unit(4, "inches")
  25839. },
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(4 + 10 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(100, "feet")
  25848. },
  25849. {
  25850. name: "Megamacto",
  25851. height: math.unit(50, "miles")
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25857. {
  25858. side: {
  25859. height: math.unit(30, "feet"),
  25860. weight: math.unit(35000, "kg"),
  25861. name: "Side",
  25862. image: {
  25863. source: "./media/characters/alydar/side.svg",
  25864. extra: 234 / 222,
  25865. bottom: 6.5 / 241
  25866. }
  25867. },
  25868. front: {
  25869. height: math.unit(30, "feet"),
  25870. weight: math.unit(35000, "kg"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/alydar/front.svg",
  25874. extra: 223.37 / 210.2,
  25875. bottom: 22.3 / 246.76
  25876. }
  25877. },
  25878. top: {
  25879. height: math.unit(64.54, "feet"),
  25880. weight: math.unit(35000, "kg"),
  25881. name: "Top",
  25882. image: {
  25883. source: "./media/characters/alydar/top.svg"
  25884. }
  25885. },
  25886. anthro: {
  25887. height: math.unit(30, "feet"),
  25888. weight: math.unit(9000, "kg"),
  25889. name: "Anthro",
  25890. image: {
  25891. source: "./media/characters/alydar/anthro.svg",
  25892. extra: 432 / 421,
  25893. bottom: 7.18 / 440
  25894. }
  25895. },
  25896. maw: {
  25897. height: math.unit(11.693, "feet"),
  25898. name: "Maw",
  25899. image: {
  25900. source: "./media/characters/alydar/maw.svg"
  25901. }
  25902. },
  25903. head: {
  25904. height: math.unit(11.693, "feet"),
  25905. name: "Head",
  25906. image: {
  25907. source: "./media/characters/alydar/head.svg"
  25908. }
  25909. },
  25910. headAlt: {
  25911. height: math.unit(12.861, "feet"),
  25912. name: "Head (Alt)",
  25913. image: {
  25914. source: "./media/characters/alydar/head-alt.svg"
  25915. }
  25916. },
  25917. wing: {
  25918. height: math.unit(20.712, "feet"),
  25919. name: "Wing",
  25920. image: {
  25921. source: "./media/characters/alydar/wing.svg"
  25922. }
  25923. },
  25924. wingFeather: {
  25925. height: math.unit(9.662, "feet"),
  25926. name: "Wing Feather",
  25927. image: {
  25928. source: "./media/characters/alydar/wing-feather.svg"
  25929. }
  25930. },
  25931. countourFeather: {
  25932. height: math.unit(4.154, "feet"),
  25933. name: "Contour Feather",
  25934. image: {
  25935. source: "./media/characters/alydar/contour-feather.svg"
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Diplomatic",
  25942. height: math.unit(13, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Small",
  25947. height: math.unit(30, "feet")
  25948. },
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(95, "feet"),
  25952. default: true
  25953. },
  25954. {
  25955. name: "Large",
  25956. height: math.unit(285, "feet")
  25957. },
  25958. {
  25959. name: "Incomprehensible",
  25960. height: math.unit(450, "megameters")
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25966. {
  25967. side: {
  25968. height: math.unit(11, "feet"),
  25969. weight: math.unit(1750, "kg"),
  25970. name: "Side",
  25971. image: {
  25972. source: "./media/characters/selicia/side.svg",
  25973. extra: 440 / 396,
  25974. bottom: 24.8 / 465.979
  25975. }
  25976. },
  25977. maw: {
  25978. height: math.unit(4.665, "feet"),
  25979. name: "Maw",
  25980. image: {
  25981. source: "./media/characters/selicia/maw.svg"
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(11, "feet"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25995. {
  25996. side: {
  25997. height: math.unit(2 + 6 / 12, "feet"),
  25998. weight: math.unit(30, "lb"),
  25999. name: "Side",
  26000. image: {
  26001. source: "./media/characters/layla/side.svg",
  26002. extra: 244 / 188,
  26003. bottom: 18.2 / 262.1
  26004. }
  26005. },
  26006. back: {
  26007. height: math.unit(2 + 6 / 12, "feet"),
  26008. weight: math.unit(30, "lb"),
  26009. name: "Back",
  26010. image: {
  26011. source: "./media/characters/layla/back.svg",
  26012. extra: 308 / 241.5,
  26013. bottom: 8.9 / 316.8
  26014. }
  26015. },
  26016. cumming: {
  26017. height: math.unit(2 + 6 / 12, "feet"),
  26018. weight: math.unit(30, "lb"),
  26019. name: "Cumming",
  26020. image: {
  26021. source: "./media/characters/layla/cumming.svg",
  26022. extra: 342 / 279,
  26023. bottom: 595 / 938
  26024. }
  26025. },
  26026. dickFlaccid: {
  26027. height: math.unit(2.595, "feet"),
  26028. name: "Flaccid Genitals",
  26029. image: {
  26030. source: "./media/characters/layla/dick-flaccid.svg"
  26031. }
  26032. },
  26033. dickErect: {
  26034. height: math.unit(2.359, "feet"),
  26035. name: "Erect Genitals",
  26036. image: {
  26037. source: "./media/characters/layla/dick-erect.svg"
  26038. }
  26039. },
  26040. dragon: {
  26041. height: math.unit(40, "feet"),
  26042. name: "Dragon",
  26043. image: {
  26044. source: "./media/characters/layla/dragon.svg",
  26045. extra: 610/535,
  26046. bottom: 367/977
  26047. }
  26048. },
  26049. taur: {
  26050. height: math.unit(30, "feet"),
  26051. name: "Taur",
  26052. image: {
  26053. source: "./media/characters/layla/taur.svg",
  26054. extra: 1268/1199,
  26055. bottom: 112/1380
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Micro",
  26062. height: math.unit(1, "inch")
  26063. },
  26064. {
  26065. name: "Small",
  26066. height: math.unit(1, "foot")
  26067. },
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(2 + 6 / 12, "feet"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(200, "feet")
  26076. },
  26077. {
  26078. name: "Megamacro",
  26079. height: math.unit(1000, "miles")
  26080. },
  26081. {
  26082. name: "Planetary",
  26083. height: math.unit(8000, "miles")
  26084. },
  26085. {
  26086. name: "True Layla",
  26087. height: math.unit(200000 * 7, "multiverses")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26093. {
  26094. back: {
  26095. height: math.unit(10.5, "feet"),
  26096. weight: math.unit(800, "lb"),
  26097. name: "Back",
  26098. image: {
  26099. source: "./media/characters/knox/back.svg",
  26100. extra: 1486 / 1089,
  26101. bottom: 107 / 1601.4
  26102. }
  26103. },
  26104. side: {
  26105. height: math.unit(10.5, "feet"),
  26106. weight: math.unit(800, "lb"),
  26107. name: "Side",
  26108. image: {
  26109. source: "./media/characters/knox/side.svg",
  26110. extra: 244 / 218,
  26111. bottom: 14 / 260
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Compact",
  26118. height: math.unit(10.5, "feet"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Dynamax",
  26123. height: math.unit(210, "feet")
  26124. },
  26125. {
  26126. name: "Full Macro",
  26127. height: math.unit(850, "feet")
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(28, "feet"),
  26136. weight: math.unit(10500, "lb"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/kayda/front.svg",
  26140. extra: 1536 / 1428,
  26141. bottom: 68.7 / 1603
  26142. }
  26143. },
  26144. back: {
  26145. height: math.unit(28, "feet"),
  26146. weight: math.unit(10500, "lb"),
  26147. name: "Back",
  26148. image: {
  26149. source: "./media/characters/kayda/back.svg",
  26150. extra: 1557 / 1464,
  26151. bottom: 39.5 / 1597.49
  26152. }
  26153. },
  26154. dick: {
  26155. height: math.unit(3.858, "feet"),
  26156. name: "Dick",
  26157. image: {
  26158. source: "./media/characters/kayda/dick.svg"
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Macro",
  26165. height: math.unit(28, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(10 + 11 / 12, "feet"),
  26175. weight: math.unit(1400, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/brian/front.svg",
  26179. extra: 737 / 692,
  26180. bottom: 55.4 / 785
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(10 + 11 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(5 + 8 / 12, "feet"),
  26197. weight: math.unit(140, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/khemri/front.svg",
  26201. extra: 4780 / 4059,
  26202. bottom: 80.1 / 4859.25
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Micro",
  26209. height: math.unit(6, "inches")
  26210. },
  26211. {
  26212. name: "Normal",
  26213. height: math.unit(5 + 8 / 12, "feet"),
  26214. default: true
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26220. {
  26221. front: {
  26222. height: math.unit(13, "feet"),
  26223. weight: math.unit(1700, "lb"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/felix-braveheart/front.svg",
  26227. extra: 1222 / 1157,
  26228. bottom: 53.2 / 1280
  26229. }
  26230. },
  26231. back: {
  26232. height: math.unit(13, "feet"),
  26233. weight: math.unit(1700, "lb"),
  26234. name: "Back",
  26235. image: {
  26236. source: "./media/characters/felix-braveheart/back.svg",
  26237. extra: 1277 / 1203,
  26238. bottom: 50.2 / 1327
  26239. }
  26240. },
  26241. feral: {
  26242. height: math.unit(6, "feet"),
  26243. weight: math.unit(400, "lb"),
  26244. name: "Feral",
  26245. image: {
  26246. source: "./media/characters/felix-braveheart/feral.svg",
  26247. extra: 682 / 625,
  26248. bottom: 6.9 / 688
  26249. }
  26250. },
  26251. },
  26252. [
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(13, "feet"),
  26256. default: true
  26257. },
  26258. ]
  26259. ))
  26260. characterMakers.push(() => makeCharacter(
  26261. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26262. {
  26263. side: {
  26264. height: math.unit(5 + 11 / 12, "feet"),
  26265. weight: math.unit(1400, "lb"),
  26266. name: "Side",
  26267. image: {
  26268. source: "./media/characters/shadow-blade/side.svg",
  26269. extra: 1726 / 1267,
  26270. bottom: 58.4 / 1785
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(5 + 11 / 12, "feet"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(1 + 6 / 12, "feet"),
  26287. weight: math.unit(25, "lb"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/karla-halldor/front.svg",
  26291. extra: 1459 / 1383,
  26292. bottom: 12 / 1472
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Normal",
  26299. height: math.unit(1 + 6 / 12, "feet"),
  26300. default: true
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(6 + 2 / 12, "feet"),
  26309. weight: math.unit(160, "lb"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/ariam/front.svg",
  26313. extra: 1073/976,
  26314. bottom: 52/1125
  26315. }
  26316. },
  26317. back: {
  26318. height: math.unit(6 + 2/12, "feet"),
  26319. weight: math.unit(160, "lb"),
  26320. name: "Back",
  26321. image: {
  26322. source: "./media/characters/ariam/back.svg",
  26323. extra: 1103/1023,
  26324. bottom: 9/1112
  26325. }
  26326. },
  26327. dressed: {
  26328. height: math.unit(6 + 2/12, "feet"),
  26329. weight: math.unit(160, "lb"),
  26330. name: "Dressed",
  26331. image: {
  26332. source: "./media/characters/ariam/dressed.svg",
  26333. extra: 1099/1009,
  26334. bottom: 25/1124
  26335. }
  26336. },
  26337. squatting: {
  26338. height: math.unit(4.1, "feet"),
  26339. weight: math.unit(160, "lb"),
  26340. name: "Squatting",
  26341. image: {
  26342. source: "./media/characters/ariam/squatting.svg",
  26343. extra: 2617 / 2112,
  26344. bottom: 61.2 / 2681,
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(6 + 2 / 12, "feet"),
  26352. default: true
  26353. },
  26354. {
  26355. name: "Normal+",
  26356. height: math.unit(4, "meters")
  26357. },
  26358. {
  26359. name: "Macro",
  26360. height: math.unit(50, "meters")
  26361. },
  26362. {
  26363. name: "Macro+",
  26364. height: math.unit(100, "meters")
  26365. },
  26366. {
  26367. name: "Megamacro",
  26368. height: math.unit(20, "km")
  26369. },
  26370. {
  26371. name: "Caretaker",
  26372. height: math.unit(444, "megameters")
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(1.67, "meters"),
  26381. weight: math.unit(140, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26385. extra: 438 / 410,
  26386. bottom: 0.75 / 439
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Shrunken",
  26393. height: math.unit(7.6, "cm")
  26394. },
  26395. {
  26396. name: "Human Scale",
  26397. height: math.unit(1.67, "meters")
  26398. },
  26399. {
  26400. name: "Wolxi Scale",
  26401. height: math.unit(36.7, "meters"),
  26402. default: true
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(1.73, "meters"),
  26411. weight: math.unit(240, "lb"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/izue-two-mothers/front.svg",
  26415. extra: 469 / 437,
  26416. bottom: 1.24 / 470.6
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Shrunken",
  26423. height: math.unit(7.86, "cm")
  26424. },
  26425. {
  26426. name: "Human Scale",
  26427. height: math.unit(1.73, "meters")
  26428. },
  26429. {
  26430. name: "Wolxi Scale",
  26431. height: math.unit(38, "meters"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(1.55, "meters"),
  26441. weight: math.unit(120, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/teeku-love-shack/front.svg",
  26445. extra: 387 / 362,
  26446. bottom: 1.51 / 388
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Shrunken",
  26453. height: math.unit(7, "cm")
  26454. },
  26455. {
  26456. name: "Human Scale",
  26457. height: math.unit(1.55, "meters")
  26458. },
  26459. {
  26460. name: "Wolxi Scale",
  26461. height: math.unit(34.1, "meters"),
  26462. default: true
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26468. {
  26469. front: {
  26470. height: math.unit(1.83, "meters"),
  26471. weight: math.unit(135, "lb"),
  26472. name: "Front",
  26473. image: {
  26474. source: "./media/characters/dejma-the-red/front.svg",
  26475. extra: 480 / 458,
  26476. bottom: 1.8 / 482
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Shrunken",
  26483. height: math.unit(8.3, "cm")
  26484. },
  26485. {
  26486. name: "Human Scale",
  26487. height: math.unit(1.83, "meters")
  26488. },
  26489. {
  26490. name: "Wolxi Scale",
  26491. height: math.unit(40, "meters"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(1.78, "meters"),
  26501. weight: math.unit(65, "kg"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/aki/front.svg",
  26505. extra: 452 / 415
  26506. }
  26507. },
  26508. frontNsfw: {
  26509. height: math.unit(1.78, "meters"),
  26510. weight: math.unit(65, "kg"),
  26511. name: "Front (NSFW)",
  26512. image: {
  26513. source: "./media/characters/aki/front-nsfw.svg",
  26514. extra: 452 / 415
  26515. }
  26516. },
  26517. back: {
  26518. height: math.unit(1.78, "meters"),
  26519. weight: math.unit(65, "kg"),
  26520. name: "Back",
  26521. image: {
  26522. source: "./media/characters/aki/back.svg",
  26523. extra: 452 / 415
  26524. }
  26525. },
  26526. rump: {
  26527. height: math.unit(2.05, "feet"),
  26528. name: "Rump",
  26529. image: {
  26530. source: "./media/characters/aki/rump.svg"
  26531. }
  26532. },
  26533. dick: {
  26534. height: math.unit(0.95, "feet"),
  26535. name: "Dick",
  26536. image: {
  26537. source: "./media/characters/aki/dick.svg"
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Micro",
  26544. height: math.unit(15, "cm")
  26545. },
  26546. {
  26547. name: "Normal",
  26548. height: math.unit(178, "cm"),
  26549. default: true
  26550. },
  26551. {
  26552. name: "Macro",
  26553. height: math.unit(214, "m")
  26554. },
  26555. {
  26556. name: "Macro+",
  26557. height: math.unit(534, "m")
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(5 + 5 / 12, "feet"),
  26566. weight: math.unit(120, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/ari/front.svg",
  26570. extra: 1550/1471,
  26571. bottom: 39/1589
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(5 + 5 / 12, "feet")
  26579. },
  26580. {
  26581. name: "Macro",
  26582. height: math.unit(100, "feet"),
  26583. default: true
  26584. },
  26585. {
  26586. name: "Megamacro",
  26587. height: math.unit(100, "miles")
  26588. },
  26589. {
  26590. name: "Gigamacro",
  26591. height: math.unit(80000, "miles")
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26597. {
  26598. side: {
  26599. height: math.unit(9, "feet"),
  26600. weight: math.unit(400, "kg"),
  26601. name: "Side",
  26602. image: {
  26603. source: "./media/characters/bolt/side.svg",
  26604. extra: 1126 / 896,
  26605. bottom: 60 / 1187.3,
  26606. }
  26607. },
  26608. },
  26609. [
  26610. {
  26611. name: "Micro",
  26612. height: math.unit(5, "inches")
  26613. },
  26614. {
  26615. name: "Normal",
  26616. height: math.unit(9, "feet"),
  26617. default: true
  26618. },
  26619. {
  26620. name: "Macro",
  26621. height: math.unit(700, "feet")
  26622. },
  26623. {
  26624. name: "Max Size",
  26625. height: math.unit(1.52e22, "yottameters")
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(4.3, "meters"),
  26634. weight: math.unit(3, "tons"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/draekon-sylviar/front.svg",
  26638. extra: 2072/1512,
  26639. bottom: 74/2146
  26640. }
  26641. },
  26642. back: {
  26643. height: math.unit(4.3, "meters"),
  26644. weight: math.unit(3, "tons"),
  26645. name: "Back",
  26646. image: {
  26647. source: "./media/characters/draekon-sylviar/back.svg",
  26648. extra: 1639/1483,
  26649. bottom: 41/1680
  26650. }
  26651. },
  26652. feral: {
  26653. height: math.unit(1.15, "meters"),
  26654. weight: math.unit(3, "tons"),
  26655. name: "Feral",
  26656. image: {
  26657. source: "./media/characters/draekon-sylviar/feral.svg",
  26658. extra: 1033/395,
  26659. bottom: 130/1163
  26660. }
  26661. },
  26662. maw: {
  26663. height: math.unit(1.3, "meters"),
  26664. name: "Maw",
  26665. image: {
  26666. source: "./media/characters/draekon-sylviar/maw.svg"
  26667. }
  26668. },
  26669. mawSeparated: {
  26670. height: math.unit(1.53, "meters"),
  26671. name: "Separated Maw",
  26672. image: {
  26673. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26674. }
  26675. },
  26676. tail: {
  26677. height: math.unit(1.15, "meters"),
  26678. name: "Tail",
  26679. image: {
  26680. source: "./media/characters/draekon-sylviar/tail.svg"
  26681. }
  26682. },
  26683. tailDick: {
  26684. height: math.unit(1.15, "meters"),
  26685. name: "Tail (Dick)",
  26686. image: {
  26687. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26688. }
  26689. },
  26690. tailDickSeparated: {
  26691. height: math.unit(1.19, "meters"),
  26692. name: "Tail (Separated Dick)",
  26693. image: {
  26694. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26695. }
  26696. },
  26697. slit: {
  26698. height: math.unit(1, "meters"),
  26699. name: "Slit",
  26700. image: {
  26701. source: "./media/characters/draekon-sylviar/slit.svg"
  26702. }
  26703. },
  26704. dick: {
  26705. height: math.unit(1.15, "meters"),
  26706. name: "Dick",
  26707. image: {
  26708. source: "./media/characters/draekon-sylviar/dick.svg"
  26709. }
  26710. },
  26711. dickSeparated: {
  26712. height: math.unit(1.1, "meters"),
  26713. name: "Separated Dick",
  26714. image: {
  26715. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26716. }
  26717. },
  26718. sheath: {
  26719. height: math.unit(1.15, "meters"),
  26720. name: "Sheath",
  26721. image: {
  26722. source: "./media/characters/draekon-sylviar/sheath.svg"
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Small",
  26729. height: math.unit(4.53 / 2, "meters"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(4.53, "meters"),
  26735. default: true
  26736. },
  26737. {
  26738. name: "Large",
  26739. height: math.unit(4.53 * 2, "meters"),
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(6 + 2 / 12, "feet"),
  26748. weight: math.unit(180, "lb"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/brawler/front.svg",
  26752. extra: 3301 / 3027,
  26753. bottom: 138 / 3439
  26754. }
  26755. },
  26756. },
  26757. [
  26758. {
  26759. name: "Normal",
  26760. height: math.unit(6 + 2 / 12, "feet"),
  26761. default: true
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26767. {
  26768. front: {
  26769. height: math.unit(11, "feet"),
  26770. weight: math.unit(1000, "lb"),
  26771. name: "Front",
  26772. image: {
  26773. source: "./media/characters/alex/front.svg",
  26774. bottom: 44.5 / 620
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Micro",
  26781. height: math.unit(5, "inches")
  26782. },
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(11, "feet"),
  26786. default: true
  26787. },
  26788. {
  26789. name: "Macro",
  26790. height: math.unit(9.5e9, "feet")
  26791. },
  26792. {
  26793. name: "Max Size",
  26794. height: math.unit(1.4e283, "yottameters")
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26800. {
  26801. female: {
  26802. height: math.unit(29.9, "m"),
  26803. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26804. name: "Female",
  26805. image: {
  26806. source: "./media/characters/zenari/female.svg",
  26807. extra: 3281.6 / 3217,
  26808. bottom: 72.2 / 3353
  26809. }
  26810. },
  26811. male: {
  26812. height: math.unit(27.7, "m"),
  26813. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26814. name: "Male",
  26815. image: {
  26816. source: "./media/characters/zenari/male.svg",
  26817. extra: 3008 / 2991,
  26818. bottom: 54.6 / 3069
  26819. }
  26820. },
  26821. },
  26822. [
  26823. {
  26824. name: "Macro",
  26825. height: math.unit(29.7, "meters"),
  26826. default: true
  26827. },
  26828. ]
  26829. ))
  26830. characterMakers.push(() => makeCharacter(
  26831. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26832. {
  26833. female: {
  26834. height: math.unit(23.8, "m"),
  26835. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26836. name: "Female",
  26837. image: {
  26838. source: "./media/characters/mactarian/female.svg",
  26839. extra: 2662 / 2569,
  26840. bottom: 73 / 2736
  26841. }
  26842. },
  26843. male: {
  26844. height: math.unit(23.8, "m"),
  26845. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26846. name: "Male",
  26847. image: {
  26848. source: "./media/characters/mactarian/male.svg",
  26849. extra: 2673 / 2600,
  26850. bottom: 76 / 2750
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Macro",
  26857. height: math.unit(23.8, "meters"),
  26858. default: true
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26864. {
  26865. female: {
  26866. height: math.unit(19.3, "m"),
  26867. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26868. name: "Female",
  26869. image: {
  26870. source: "./media/characters/umok/female.svg",
  26871. extra: 2186 / 2078,
  26872. bottom: 87 / 2277
  26873. }
  26874. },
  26875. male: {
  26876. height: math.unit(19.5, "m"),
  26877. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26878. name: "Male",
  26879. image: {
  26880. source: "./media/characters/umok/male.svg",
  26881. extra: 2233 / 2140,
  26882. bottom: 24.4 / 2258
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Macro",
  26889. height: math.unit(19.3, "meters"),
  26890. default: true
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26896. {
  26897. female: {
  26898. height: math.unit(26.15, "m"),
  26899. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26900. name: "Female",
  26901. image: {
  26902. source: "./media/characters/joraxian/female.svg",
  26903. extra: 2912 / 2824,
  26904. bottom: 36 / 2956
  26905. }
  26906. },
  26907. male: {
  26908. height: math.unit(25.4, "m"),
  26909. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26910. name: "Male",
  26911. image: {
  26912. source: "./media/characters/joraxian/male.svg",
  26913. extra: 2877 / 2721,
  26914. bottom: 82 / 2967
  26915. }
  26916. },
  26917. },
  26918. [
  26919. {
  26920. name: "Macro",
  26921. height: math.unit(26.15, "meters"),
  26922. default: true
  26923. },
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26928. {
  26929. female: {
  26930. height: math.unit(21.6, "m"),
  26931. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26932. name: "Female",
  26933. image: {
  26934. source: "./media/characters/sthara/female.svg",
  26935. extra: 2516 / 2347,
  26936. bottom: 21.5 / 2537
  26937. }
  26938. },
  26939. male: {
  26940. height: math.unit(24, "m"),
  26941. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26942. name: "Male",
  26943. image: {
  26944. source: "./media/characters/sthara/male.svg",
  26945. extra: 2732 / 2607,
  26946. bottom: 23 / 2732
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Macro",
  26953. height: math.unit(21.6, "meters"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(6 + 4 / 12, "feet"),
  26963. weight: math.unit(175, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/luka-bryzant/front.svg",
  26967. extra: 311 / 289,
  26968. bottom: 4 / 315
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(6 + 4 / 12, "feet"),
  26973. weight: math.unit(175, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/luka-bryzant/back.svg",
  26977. extra: 311 / 289,
  26978. bottom: 3.8 / 313.7
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Micro",
  26985. height: math.unit(10, "inches")
  26986. },
  26987. {
  26988. name: "Normal",
  26989. height: math.unit(6 + 4 / 12, "feet"),
  26990. default: true
  26991. },
  26992. {
  26993. name: "Large",
  26994. height: math.unit(12, "feet")
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(5 + 7 / 12, "feet"),
  27003. weight: math.unit(185, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/aman-aquila/front.svg",
  27007. extra: 1013 / 976,
  27008. bottom: 45.6 / 1057
  27009. }
  27010. },
  27011. side: {
  27012. height: math.unit(5 + 7 / 12, "feet"),
  27013. weight: math.unit(185, "lb"),
  27014. name: "Side",
  27015. image: {
  27016. source: "./media/characters/aman-aquila/side.svg",
  27017. extra: 1054 / 1011,
  27018. bottom: 15 / 1070
  27019. }
  27020. },
  27021. back: {
  27022. height: math.unit(5 + 7 / 12, "feet"),
  27023. weight: math.unit(185, "lb"),
  27024. name: "Back",
  27025. image: {
  27026. source: "./media/characters/aman-aquila/back.svg",
  27027. extra: 1026 / 970,
  27028. bottom: 12 / 1039
  27029. }
  27030. },
  27031. head: {
  27032. height: math.unit(1.211, "feet"),
  27033. name: "Head",
  27034. image: {
  27035. source: "./media/characters/aman-aquila/head.svg",
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Minimicro",
  27042. height: math.unit(0.057, "inches")
  27043. },
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(7, "inches")
  27047. },
  27048. {
  27049. name: "Mini",
  27050. height: math.unit(3 + 7 / 12, "feet")
  27051. },
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(5 + 7 / 12, "feet"),
  27055. default: true
  27056. },
  27057. {
  27058. name: "Macro",
  27059. height: math.unit(157 + 7 / 12, "feet")
  27060. },
  27061. {
  27062. name: "Megamacro",
  27063. height: math.unit(1557 + 7 / 12, "feet")
  27064. },
  27065. {
  27066. name: "Gigamacro",
  27067. height: math.unit(15557 + 7 / 12, "feet")
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27073. {
  27074. front: {
  27075. height: math.unit(3 + 2 / 12, "inches"),
  27076. weight: math.unit(0.3, "ounces"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/hiphae/front.svg",
  27080. extra: 1931 / 1683,
  27081. bottom: 24 / 1955
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(3 + 1 / 2, "inches"),
  27089. default: true
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27095. {
  27096. front: {
  27097. height: math.unit(5 + 10 / 12, "feet"),
  27098. weight: math.unit(165, "lb"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/nicky/front.svg",
  27102. extra: 3144 / 2886,
  27103. bottom: 45.6 / 3192
  27104. }
  27105. },
  27106. back: {
  27107. height: math.unit(5 + 10 / 12, "feet"),
  27108. weight: math.unit(165, "lb"),
  27109. name: "Back",
  27110. image: {
  27111. source: "./media/characters/nicky/back.svg",
  27112. extra: 3055 / 2804,
  27113. bottom: 28.4 / 3087
  27114. }
  27115. },
  27116. frontclothed: {
  27117. height: math.unit(5 + 10 / 12, "feet"),
  27118. weight: math.unit(165, "lb"),
  27119. name: "Front-clothed",
  27120. image: {
  27121. source: "./media/characters/nicky/front-clothed.svg",
  27122. extra: 3184.9 / 2926.9,
  27123. bottom: 86.5 / 3239.9
  27124. }
  27125. },
  27126. foot: {
  27127. height: math.unit(1.16, "feet"),
  27128. name: "Foot",
  27129. image: {
  27130. source: "./media/characters/nicky/foot.svg"
  27131. }
  27132. },
  27133. feet: {
  27134. height: math.unit(1.34, "feet"),
  27135. name: "Feet",
  27136. image: {
  27137. source: "./media/characters/nicky/feet.svg"
  27138. }
  27139. },
  27140. maw: {
  27141. height: math.unit(0.9, "feet"),
  27142. name: "Maw",
  27143. image: {
  27144. source: "./media/characters/nicky/maw.svg"
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(5 + 10 / 12, "feet"),
  27152. default: true
  27153. },
  27154. {
  27155. name: "Macro",
  27156. height: math.unit(60, "feet")
  27157. },
  27158. {
  27159. name: "Megamacro",
  27160. height: math.unit(1, "mile")
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27166. {
  27167. side: {
  27168. height: math.unit(10, "feet"),
  27169. weight: math.unit(600, "lb"),
  27170. name: "Side",
  27171. image: {
  27172. source: "./media/characters/blair/side.svg",
  27173. bottom: 16.6 / 475,
  27174. extra: 458 / 431
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Micro",
  27181. height: math.unit(8, "inches")
  27182. },
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(10, "feet"),
  27186. default: true
  27187. },
  27188. {
  27189. name: "Macro",
  27190. height: math.unit(180, "feet")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 4 / 12, "feet"),
  27199. weight: math.unit(125, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/fisher/front.svg",
  27203. extra: 444 / 390,
  27204. bottom: 2 / 444.8
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Micro",
  27211. height: math.unit(4, "inches")
  27212. },
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(5 + 4 / 12, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Macro",
  27220. height: math.unit(100, "feet")
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(6.71, "feet"),
  27229. weight: math.unit(200, "lb"),
  27230. preyCapacity: math.unit(1000000, "people"),
  27231. name: "Front",
  27232. image: {
  27233. source: "./media/characters/gliss/front.svg",
  27234. extra: 2347 / 2231,
  27235. bottom: 113 / 2462
  27236. }
  27237. },
  27238. hammerspaceSize: {
  27239. height: math.unit(6.71 * 717, "feet"),
  27240. weight: math.unit(200, "lb"),
  27241. preyCapacity: math.unit(1000000, "people"),
  27242. name: "Hammerspace Size",
  27243. image: {
  27244. source: "./media/characters/gliss/front.svg",
  27245. extra: 2347 / 2231,
  27246. bottom: 113 / 2462
  27247. }
  27248. },
  27249. },
  27250. [
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(6.71, "feet"),
  27254. default: true
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27260. {
  27261. side: {
  27262. height: math.unit(1.44, "m"),
  27263. weight: math.unit(80, "kg"),
  27264. name: "Side",
  27265. image: {
  27266. source: "./media/characters/dune-anderson/side.svg",
  27267. bottom: 49 / 1426
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Wolf-sized",
  27274. height: math.unit(1.44, "meters")
  27275. },
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(5.05, "meters"),
  27279. default: true
  27280. },
  27281. {
  27282. name: "Big",
  27283. height: math.unit(14.4, "meters")
  27284. },
  27285. {
  27286. name: "Huge",
  27287. height: math.unit(144, "meters")
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27293. {
  27294. front: {
  27295. height: math.unit(7, "feet"),
  27296. weight: math.unit(425, "lb"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/hind/front.svg",
  27300. extra: 2091 / 1860,
  27301. bottom: 129 / 2220
  27302. }
  27303. },
  27304. back: {
  27305. height: math.unit(7, "feet"),
  27306. weight: math.unit(425, "lb"),
  27307. name: "Back",
  27308. image: {
  27309. source: "./media/characters/hind/back.svg",
  27310. extra: 2091 / 1860,
  27311. bottom: 24.6 / 2309
  27312. }
  27313. },
  27314. tail: {
  27315. height: math.unit(2.8, "feet"),
  27316. name: "Tail",
  27317. image: {
  27318. source: "./media/characters/hind/tail.svg"
  27319. }
  27320. },
  27321. head: {
  27322. height: math.unit(2.55, "feet"),
  27323. name: "Head",
  27324. image: {
  27325. source: "./media/characters/hind/head.svg"
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "XS",
  27332. height: math.unit(0.7, "feet")
  27333. },
  27334. {
  27335. name: "Normal",
  27336. height: math.unit(7, "feet"),
  27337. default: true
  27338. },
  27339. {
  27340. name: "XL",
  27341. height: math.unit(70, "feet")
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27347. {
  27348. front: {
  27349. height: math.unit(2.1, "meters"),
  27350. weight: math.unit(150, "lb"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/tharquench-sizestealer/front.svg",
  27354. extra: 1605/1470,
  27355. bottom: 36/1641
  27356. }
  27357. },
  27358. frontAlt: {
  27359. height: math.unit(2.1, "meters"),
  27360. weight: math.unit(150, "lb"),
  27361. name: "Front (Alt)",
  27362. image: {
  27363. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27364. extra: 2318 / 2063,
  27365. bottom: 93.4 / 2410
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Nano",
  27372. height: math.unit(1, "mm")
  27373. },
  27374. {
  27375. name: "Micro",
  27376. height: math.unit(1, "cm")
  27377. },
  27378. {
  27379. name: "Normal",
  27380. height: math.unit(2.1, "meters"),
  27381. default: true
  27382. },
  27383. ]
  27384. ))
  27385. characterMakers.push(() => makeCharacter(
  27386. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27387. {
  27388. front: {
  27389. height: math.unit(7 + 5 / 12, "feet"),
  27390. weight: math.unit(357, "lb"),
  27391. name: "Front",
  27392. image: {
  27393. source: "./media/characters/solex-draconov/front.svg",
  27394. extra: 1993 / 1865,
  27395. bottom: 117 / 2111
  27396. }
  27397. },
  27398. },
  27399. [
  27400. {
  27401. name: "Natural Height",
  27402. height: math.unit(7 + 5 / 12, "feet"),
  27403. default: true
  27404. },
  27405. {
  27406. name: "Macro",
  27407. height: math.unit(350, "feet")
  27408. },
  27409. {
  27410. name: "Macro+",
  27411. height: math.unit(1000, "feet")
  27412. },
  27413. {
  27414. name: "Megamacro",
  27415. height: math.unit(20, "km")
  27416. },
  27417. {
  27418. name: "Megamacro+",
  27419. height: math.unit(1000, "km")
  27420. },
  27421. {
  27422. name: "Gigamacro",
  27423. height: math.unit(2.5, "Gm")
  27424. },
  27425. {
  27426. name: "Teramacro",
  27427. height: math.unit(15, "Tm")
  27428. },
  27429. {
  27430. name: "Galactic",
  27431. height: math.unit(30, "Zm")
  27432. },
  27433. {
  27434. name: "Universal",
  27435. height: math.unit(21000, "Ym")
  27436. },
  27437. {
  27438. name: "Omniversal",
  27439. height: math.unit(9.861e50, "Ym")
  27440. },
  27441. {
  27442. name: "Existential",
  27443. height: math.unit(1e300, "meters")
  27444. },
  27445. ]
  27446. ))
  27447. characterMakers.push(() => makeCharacter(
  27448. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27449. {
  27450. side: {
  27451. height: math.unit(25, "feet"),
  27452. weight: math.unit(90000, "lb"),
  27453. name: "Side",
  27454. image: {
  27455. source: "./media/characters/mandarax/side.svg",
  27456. extra: 614 / 332,
  27457. bottom: 55 / 630
  27458. }
  27459. },
  27460. lounging: {
  27461. height: math.unit(15.4, "feet"),
  27462. weight: math.unit(90000, "lb"),
  27463. name: "Lounging",
  27464. image: {
  27465. source: "./media/characters/mandarax/lounging.svg",
  27466. extra: 817/609,
  27467. bottom: 685/1502
  27468. }
  27469. },
  27470. head: {
  27471. height: math.unit(11.4, "feet"),
  27472. name: "Head",
  27473. image: {
  27474. source: "./media/characters/mandarax/head.svg"
  27475. }
  27476. },
  27477. belly: {
  27478. height: math.unit(33, "feet"),
  27479. name: "Belly",
  27480. preyCapacity: math.unit(500, "people"),
  27481. image: {
  27482. source: "./media/characters/mandarax/belly.svg"
  27483. }
  27484. },
  27485. dick: {
  27486. height: math.unit(8.46, "feet"),
  27487. name: "Dick",
  27488. image: {
  27489. source: "./media/characters/mandarax/dick.svg"
  27490. }
  27491. },
  27492. top: {
  27493. height: math.unit(28, "meters"),
  27494. name: "Top",
  27495. image: {
  27496. source: "./media/characters/mandarax/top.svg"
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Normal",
  27503. height: math.unit(25, "feet"),
  27504. default: true
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(5, "feet"),
  27513. weight: math.unit(90, "lb"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/pixil/front.svg",
  27517. extra: 2000 / 1618,
  27518. bottom: 12.3 / 2011
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(5, "feet"),
  27526. default: true
  27527. },
  27528. {
  27529. name: "Megamacro",
  27530. height: math.unit(10, "miles"),
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(7 + 2 / 12, "feet"),
  27539. weight: math.unit(200, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/angel/front.svg",
  27543. extra: 1830 / 1737,
  27544. bottom: 22.6 / 1854,
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(7 + 2 / 12, "feet"),
  27552. default: true
  27553. },
  27554. {
  27555. name: "Macro",
  27556. height: math.unit(1000, "feet")
  27557. },
  27558. {
  27559. name: "Megamacro",
  27560. height: math.unit(2, "miles")
  27561. },
  27562. {
  27563. name: "Gigamacro",
  27564. height: math.unit(20, "earths")
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(5, "feet"),
  27573. weight: math.unit(180, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/mekana/front.svg",
  27577. extra: 1671 / 1605,
  27578. bottom: 3.5 / 1691
  27579. }
  27580. },
  27581. side: {
  27582. height: math.unit(5, "feet"),
  27583. weight: math.unit(180, "lb"),
  27584. name: "Side",
  27585. image: {
  27586. source: "./media/characters/mekana/side.svg",
  27587. extra: 1671 / 1605,
  27588. bottom: 3.5 / 1691
  27589. }
  27590. },
  27591. back: {
  27592. height: math.unit(5, "feet"),
  27593. weight: math.unit(180, "lb"),
  27594. name: "Back",
  27595. image: {
  27596. source: "./media/characters/mekana/back.svg",
  27597. extra: 1671 / 1605,
  27598. bottom: 3.5 / 1691
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Normal",
  27605. height: math.unit(5, "feet"),
  27606. default: true
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27612. {
  27613. front: {
  27614. height: math.unit(4 + 6 / 12, "feet"),
  27615. weight: math.unit(80, "lb"),
  27616. name: "Front",
  27617. image: {
  27618. source: "./media/characters/pixie/front.svg",
  27619. extra: 1924 / 1825,
  27620. bottom: 22.4 / 1946
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(4 + 6 / 12, "feet"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Macro",
  27632. height: math.unit(40, "feet")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(2.1, "meters"),
  27641. weight: math.unit(200, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/the-lascivious/front.svg",
  27645. extra: 1 / 0.893,
  27646. bottom: 3.5 / 573.7
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Human Scale",
  27653. height: math.unit(2.1, "meters")
  27654. },
  27655. {
  27656. name: "Wolxi Scale",
  27657. height: math.unit(46.2, "m"),
  27658. default: true
  27659. },
  27660. {
  27661. name: "Boinker of Buildings",
  27662. height: math.unit(10, "km")
  27663. },
  27664. {
  27665. name: "Shagger of Skyscrapers",
  27666. height: math.unit(40, "km")
  27667. },
  27668. {
  27669. name: "Banger of Boroughs",
  27670. height: math.unit(4000, "km")
  27671. },
  27672. {
  27673. name: "Screwer of States",
  27674. height: math.unit(100000, "km")
  27675. },
  27676. {
  27677. name: "Pounder of Planets",
  27678. height: math.unit(2000000, "km")
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(6, "feet"),
  27687. weight: math.unit(150, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/aj/front.svg",
  27691. extra: 2039 / 1562,
  27692. bottom: 40 / 2079
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(11 + 6 / 12, "feet"),
  27700. default: true
  27701. },
  27702. {
  27703. name: "Megamacro",
  27704. height: math.unit(60, "megameters")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27710. {
  27711. side: {
  27712. height: math.unit(31 + 8 / 12, "feet"),
  27713. weight: math.unit(75000, "kg"),
  27714. name: "Side",
  27715. image: {
  27716. source: "./media/characters/koros/side.svg",
  27717. extra: 1442 / 1297,
  27718. bottom: 122.7 / 1562
  27719. }
  27720. },
  27721. dicksKingsCrown: {
  27722. height: math.unit(6, "feet"),
  27723. name: "Dicks (King's Crown)",
  27724. image: {
  27725. source: "./media/characters/koros/dicks-kings-crown.svg"
  27726. }
  27727. },
  27728. dicksTailSet: {
  27729. height: math.unit(3, "feet"),
  27730. name: "Dicks (Tail Set)",
  27731. image: {
  27732. source: "./media/characters/koros/dicks-tail-set.svg"
  27733. }
  27734. },
  27735. dickCumming: {
  27736. height: math.unit(7.98, "feet"),
  27737. name: "Dick (Cumming)",
  27738. image: {
  27739. source: "./media/characters/koros/dick-cumming.svg"
  27740. }
  27741. },
  27742. dicksBack: {
  27743. height: math.unit(5.9, "feet"),
  27744. name: "Dicks (Back)",
  27745. image: {
  27746. source: "./media/characters/koros/dicks-back.svg"
  27747. }
  27748. },
  27749. dicksFront: {
  27750. height: math.unit(3.72, "feet"),
  27751. name: "Dicks (Front)",
  27752. image: {
  27753. source: "./media/characters/koros/dicks-front.svg"
  27754. }
  27755. },
  27756. dicksPeeking: {
  27757. height: math.unit(3.0, "feet"),
  27758. name: "Dicks (Peeking)",
  27759. image: {
  27760. source: "./media/characters/koros/dicks-peeking.svg"
  27761. }
  27762. },
  27763. eye: {
  27764. height: math.unit(1.7, "feet"),
  27765. name: "Eye",
  27766. image: {
  27767. source: "./media/characters/koros/eye.svg"
  27768. }
  27769. },
  27770. headFront: {
  27771. height: math.unit(11.69, "feet"),
  27772. name: "Head (Front)",
  27773. image: {
  27774. source: "./media/characters/koros/head-front.svg"
  27775. }
  27776. },
  27777. headSide: {
  27778. height: math.unit(14, "feet"),
  27779. name: "Head (Side)",
  27780. image: {
  27781. source: "./media/characters/koros/head-side.svg"
  27782. }
  27783. },
  27784. leg: {
  27785. height: math.unit(17, "feet"),
  27786. name: "Leg",
  27787. image: {
  27788. source: "./media/characters/koros/leg.svg"
  27789. }
  27790. },
  27791. mawSide: {
  27792. height: math.unit(12.8, "feet"),
  27793. name: "Maw (Side)",
  27794. image: {
  27795. source: "./media/characters/koros/maw-side.svg"
  27796. }
  27797. },
  27798. mawSpitting: {
  27799. height: math.unit(17, "feet"),
  27800. name: "Maw (Spitting)",
  27801. image: {
  27802. source: "./media/characters/koros/maw-spitting.svg"
  27803. }
  27804. },
  27805. slit: {
  27806. height: math.unit(2.8, "feet"),
  27807. name: "Slit",
  27808. image: {
  27809. source: "./media/characters/koros/slit.svg"
  27810. }
  27811. },
  27812. stomach: {
  27813. height: math.unit(6.8, "feet"),
  27814. preyCapacity: math.unit(20, "people"),
  27815. name: "Stomach",
  27816. image: {
  27817. source: "./media/characters/koros/stomach.svg"
  27818. }
  27819. },
  27820. wingspanBottom: {
  27821. height: math.unit(114, "feet"),
  27822. name: "Wingspan (Bottom)",
  27823. image: {
  27824. source: "./media/characters/koros/wingspan-bottom.svg"
  27825. }
  27826. },
  27827. wingspanTop: {
  27828. height: math.unit(104, "feet"),
  27829. name: "Wingspan (Top)",
  27830. image: {
  27831. source: "./media/characters/koros/wingspan-top.svg"
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Normal",
  27838. height: math.unit(31 + 8 / 12, "feet"),
  27839. default: true
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27845. {
  27846. front: {
  27847. height: math.unit(18 + 5 / 12, "feet"),
  27848. weight: math.unit(3750, "kg"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/vexx/front.svg",
  27852. extra: 426 / 396,
  27853. bottom: 31.5 / 458
  27854. }
  27855. },
  27856. maw: {
  27857. height: math.unit(6, "feet"),
  27858. name: "Maw",
  27859. image: {
  27860. source: "./media/characters/vexx/maw.svg"
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(18 + 5 / 12, "feet"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(17 + 6 / 12, "feet"),
  27877. weight: math.unit(150, "lb"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/baadra/front.svg",
  27881. extra: 1694/1553,
  27882. bottom: 179/1873
  27883. }
  27884. },
  27885. frontAlt: {
  27886. height: math.unit(17 + 6 / 12, "feet"),
  27887. weight: math.unit(150, "lb"),
  27888. name: "Front (Alt)",
  27889. image: {
  27890. source: "./media/characters/baadra/front-alt.svg",
  27891. extra: 3137 / 2890,
  27892. bottom: 168.4 / 3305
  27893. }
  27894. },
  27895. back: {
  27896. height: math.unit(17 + 6 / 12, "feet"),
  27897. weight: math.unit(150, "lb"),
  27898. name: "Back",
  27899. image: {
  27900. source: "./media/characters/baadra/back.svg",
  27901. extra: 3142 / 2890,
  27902. bottom: 220 / 3371
  27903. }
  27904. },
  27905. head: {
  27906. height: math.unit(5.45, "feet"),
  27907. name: "Head",
  27908. image: {
  27909. source: "./media/characters/baadra/head.svg"
  27910. }
  27911. },
  27912. headAngry: {
  27913. height: math.unit(4.95, "feet"),
  27914. name: "Head (Angry)",
  27915. image: {
  27916. source: "./media/characters/baadra/head-angry.svg"
  27917. }
  27918. },
  27919. headOpen: {
  27920. height: math.unit(6, "feet"),
  27921. name: "Head (Open)",
  27922. image: {
  27923. source: "./media/characters/baadra/head-open.svg"
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(17 + 6 / 12, "feet"),
  27931. default: true
  27932. },
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(7 + 3 / 12, "feet"),
  27940. weight: math.unit(180, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/juri/front.svg",
  27944. extra: 1401 / 1237,
  27945. bottom: 18.5 / 1418
  27946. }
  27947. },
  27948. side: {
  27949. height: math.unit(7 + 3 / 12, "feet"),
  27950. weight: math.unit(180, "lb"),
  27951. name: "Side",
  27952. image: {
  27953. source: "./media/characters/juri/side.svg",
  27954. extra: 1424 / 1242,
  27955. bottom: 18.5 / 1447
  27956. }
  27957. },
  27958. sitting: {
  27959. height: math.unit(6, "feet"),
  27960. weight: math.unit(180, "lb"),
  27961. name: "Sitting",
  27962. image: {
  27963. source: "./media/characters/juri/sitting.svg",
  27964. extra: 1270 / 1143,
  27965. bottom: 100 / 1343
  27966. }
  27967. },
  27968. back: {
  27969. height: math.unit(7 + 3 / 12, "feet"),
  27970. weight: math.unit(180, "lb"),
  27971. name: "Back",
  27972. image: {
  27973. source: "./media/characters/juri/back.svg",
  27974. extra: 1377 / 1240,
  27975. bottom: 23.7 / 1405
  27976. }
  27977. },
  27978. maw: {
  27979. height: math.unit(2.8, "feet"),
  27980. name: "Maw",
  27981. image: {
  27982. source: "./media/characters/juri/maw.svg"
  27983. }
  27984. },
  27985. stomach: {
  27986. height: math.unit(0.89, "feet"),
  27987. preyCapacity: math.unit(4, "liters"),
  27988. name: "Stomach",
  27989. image: {
  27990. source: "./media/characters/juri/stomach.svg"
  27991. }
  27992. },
  27993. },
  27994. [
  27995. {
  27996. name: "Normal",
  27997. height: math.unit(7 + 3 / 12, "feet"),
  27998. default: true
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28004. {
  28005. fox: {
  28006. height: math.unit(5 + 6 / 12, "feet"),
  28007. weight: math.unit(140, "lb"),
  28008. name: "Fox",
  28009. image: {
  28010. source: "./media/characters/maxene-sita/fox.svg",
  28011. extra: 146 / 138,
  28012. bottom: 2.1 / 148.19
  28013. }
  28014. },
  28015. foxLaying: {
  28016. height: math.unit(1.70, "feet"),
  28017. weight: math.unit(140, "lb"),
  28018. name: "Fox (Laying)",
  28019. image: {
  28020. source: "./media/characters/maxene-sita/fox-laying.svg",
  28021. extra: 910 / 572,
  28022. bottom: 71 / 981
  28023. }
  28024. },
  28025. kitsune: {
  28026. height: math.unit(10, "feet"),
  28027. weight: math.unit(800, "lb"),
  28028. name: "Kitsune",
  28029. image: {
  28030. source: "./media/characters/maxene-sita/kitsune.svg",
  28031. extra: 185 / 176,
  28032. bottom: 4.7 / 189.9
  28033. }
  28034. },
  28035. hellhound: {
  28036. height: math.unit(10, "feet"),
  28037. weight: math.unit(700, "lb"),
  28038. name: "Hellhound",
  28039. image: {
  28040. source: "./media/characters/maxene-sita/hellhound.svg",
  28041. extra: 1600 / 1545,
  28042. bottom: 81 / 1681
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(5 + 6 / 12, "feet"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28056. {
  28057. front: {
  28058. height: math.unit(3 + 4 / 12, "feet"),
  28059. weight: math.unit(70, "lb"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/maia/front.svg",
  28063. extra: 227 / 219.5,
  28064. bottom: 40 / 267
  28065. }
  28066. },
  28067. back: {
  28068. height: math.unit(3 + 4 / 12, "feet"),
  28069. weight: math.unit(70, "lb"),
  28070. name: "Back",
  28071. image: {
  28072. source: "./media/characters/maia/back.svg",
  28073. extra: 237 / 225
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(3 + 4 / 12, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(5 + 10 / 12, "feet"),
  28090. weight: math.unit(197, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/jabaro/front.svg",
  28094. extra: 225 / 216,
  28095. bottom: 5.06 / 230
  28096. }
  28097. },
  28098. back: {
  28099. height: math.unit(5 + 10 / 12, "feet"),
  28100. weight: math.unit(197, "lb"),
  28101. name: "Back",
  28102. image: {
  28103. source: "./media/characters/jabaro/back.svg",
  28104. extra: 225 / 219,
  28105. bottom: 1.9 / 227
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(5 + 10 / 12, "feet"),
  28113. default: true
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28119. {
  28120. front: {
  28121. height: math.unit(5 + 8 / 12, "feet"),
  28122. weight: math.unit(139, "lb"),
  28123. name: "Front",
  28124. image: {
  28125. source: "./media/characters/risa/front.svg",
  28126. extra: 270 / 260,
  28127. bottom: 11.2 / 282
  28128. }
  28129. },
  28130. back: {
  28131. height: math.unit(5 + 8 / 12, "feet"),
  28132. weight: math.unit(139, "lb"),
  28133. name: "Back",
  28134. image: {
  28135. source: "./media/characters/risa/back.svg",
  28136. extra: 264 / 255,
  28137. bottom: 4 / 268
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(5 + 8 / 12, "feet"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(2 + 11 / 12, "feet"),
  28154. weight: math.unit(30, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/weatley/front.svg",
  28158. bottom: 10.7 / 414,
  28159. extra: 403.5 / 362
  28160. }
  28161. },
  28162. back: {
  28163. height: math.unit(2 + 11 / 12, "feet"),
  28164. weight: math.unit(30, "lb"),
  28165. name: "Back",
  28166. image: {
  28167. source: "./media/characters/weatley/back.svg",
  28168. bottom: 10.7 / 414,
  28169. extra: 403.5 / 362
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(2 + 11 / 12, "feet"),
  28177. default: true
  28178. },
  28179. ]
  28180. ))
  28181. characterMakers.push(() => makeCharacter(
  28182. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28183. {
  28184. front: {
  28185. height: math.unit(5 + 2 / 12, "feet"),
  28186. weight: math.unit(50, "kg"),
  28187. name: "Front",
  28188. image: {
  28189. source: "./media/characters/mercury-crescent/front.svg",
  28190. extra: 1088 / 1033,
  28191. bottom: 18.9 / 1109
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(5 + 2 / 12, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(2, "feet"),
  28208. weight: math.unit(15, "kg"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/diamond-jones/front.svg",
  28212. extra: 727/723,
  28213. bottom: 46/773
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(2, "feet"),
  28221. default: true
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28227. {
  28228. front: {
  28229. height: math.unit(3, "feet"),
  28230. weight: math.unit(30, "kg"),
  28231. name: "Front",
  28232. image: {
  28233. source: "./media/characters/sweet-bit/front.svg",
  28234. extra: 675 / 567,
  28235. bottom: 27.7 / 703
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Normal",
  28242. height: math.unit(3, "feet"),
  28243. default: true
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28249. {
  28250. side: {
  28251. height: math.unit(9.178, "feet"),
  28252. weight: math.unit(500, "lb"),
  28253. name: "Side",
  28254. image: {
  28255. source: "./media/characters/umbrazen/side.svg",
  28256. extra: 1730 / 1473,
  28257. bottom: 34.6 / 1765
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(9.178, "feet"),
  28265. default: true
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(10, "feet"),
  28274. weight: math.unit(750, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/arlist/front.svg",
  28278. extra: 961 / 778,
  28279. bottom: 6.2 / 986
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(10, "feet"),
  28287. default: true
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(5 + 1 / 12, "feet"),
  28296. weight: math.unit(110, "lb"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/aradel/front.svg",
  28300. extra: 324 / 303,
  28301. bottom: 3.6 / 329.4
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(5 + 1 / 12, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28315. {
  28316. dressed: {
  28317. height: math.unit(3 + 8 / 12, "feet"),
  28318. weight: math.unit(50, "lb"),
  28319. name: "Dressed",
  28320. image: {
  28321. source: "./media/characters/serryn/dressed.svg",
  28322. extra: 1792 / 1656,
  28323. bottom: 43.5 / 1840
  28324. }
  28325. },
  28326. nude: {
  28327. height: math.unit(3 + 8 / 12, "feet"),
  28328. weight: math.unit(50, "lb"),
  28329. name: "Nude",
  28330. image: {
  28331. source: "./media/characters/serryn/nude.svg",
  28332. extra: 1792 / 1656,
  28333. bottom: 43.5 / 1840
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Normal",
  28340. height: math.unit(3 + 8 / 12, "feet"),
  28341. default: true
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(7 + 10 / 12, "feet"),
  28350. weight: math.unit(255, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/xavier-thyme/front.svg",
  28354. extra: 3733 / 3642,
  28355. bottom: 131 / 3869
  28356. }
  28357. },
  28358. frontRaven: {
  28359. height: math.unit(7 + 10 / 12, "feet"),
  28360. weight: math.unit(255, "lb"),
  28361. name: "Front (Raven)",
  28362. image: {
  28363. source: "./media/characters/xavier-thyme/front-raven.svg",
  28364. extra: 4385 / 3642,
  28365. bottom: 131 / 4517
  28366. }
  28367. },
  28368. },
  28369. [
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(7 + 10 / 12, "feet"),
  28373. default: true
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28379. {
  28380. front: {
  28381. height: math.unit(1.6, "m"),
  28382. weight: math.unit(50, "kg"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/kiki/front.svg",
  28386. extra: 4682 / 3610,
  28387. bottom: 115 / 4777
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(1.6, "meters"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(50, "m"),
  28404. weight: math.unit(500, "tonnes"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/ryoko/front.svg",
  28408. extra: 4632 / 3926,
  28409. bottom: 193 / 4823
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Normal",
  28416. height: math.unit(50, "meters"),
  28417. default: true
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(30, "m"),
  28426. weight: math.unit(22, "tonnes"),
  28427. name: "Front",
  28428. image: {
  28429. source: "./media/characters/elio/front.svg",
  28430. extra: 4582 / 3720,
  28431. bottom: 236 / 4828
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(30, "meters"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28445. {
  28446. front: {
  28447. height: math.unit(6 + 3 / 12, "feet"),
  28448. weight: math.unit(120, "lb"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/azura/front.svg",
  28452. extra: 1149 / 1135,
  28453. bottom: 45 / 1194
  28454. }
  28455. },
  28456. frontClothed: {
  28457. height: math.unit(6 + 3 / 12, "feet"),
  28458. weight: math.unit(120, "lb"),
  28459. name: "Front (Clothed)",
  28460. image: {
  28461. source: "./media/characters/azura/front-clothed.svg",
  28462. extra: 1149 / 1135,
  28463. bottom: 45 / 1194
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(6 + 3 / 12, "feet"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Macro",
  28475. height: math.unit(20 + 6 / 12, "feet")
  28476. },
  28477. {
  28478. name: "Megamacro",
  28479. height: math.unit(12, "miles")
  28480. },
  28481. {
  28482. name: "Gigamacro",
  28483. height: math.unit(10000, "miles")
  28484. },
  28485. {
  28486. name: "Teramacro",
  28487. height: math.unit(900000, "miles")
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28493. {
  28494. front: {
  28495. height: math.unit(12, "feet"),
  28496. weight: math.unit(1, "ton"),
  28497. capacity: math.unit(660000, "gallons"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/zeus/front.svg",
  28501. extra: 5005 / 4717,
  28502. bottom: 363 / 5388
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Normal",
  28509. height: math.unit(12, "feet")
  28510. },
  28511. {
  28512. name: "Preferred Size",
  28513. height: math.unit(0.5, "miles"),
  28514. default: true
  28515. },
  28516. {
  28517. name: "Giga Horse",
  28518. height: math.unit(300, "miles")
  28519. },
  28520. {
  28521. name: "Riding Planets",
  28522. height: math.unit(30, "megameters")
  28523. },
  28524. {
  28525. name: "Cosmic Giant",
  28526. height: math.unit(3, "zettameters")
  28527. },
  28528. {
  28529. name: "Breeding God",
  28530. height: math.unit(9.92e22, "yottameters")
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28536. {
  28537. side: {
  28538. height: math.unit(9, "feet"),
  28539. weight: math.unit(1500, "kg"),
  28540. name: "Side",
  28541. image: {
  28542. source: "./media/characters/fang/side.svg",
  28543. extra: 924 / 866,
  28544. bottom: 47.5 / 972.3
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(9, "feet"),
  28552. default: true
  28553. },
  28554. {
  28555. name: "Macro",
  28556. height: math.unit(75 + 6 / 12, "feet")
  28557. },
  28558. {
  28559. name: "Teramacro",
  28560. height: math.unit(50000, "miles")
  28561. },
  28562. ]
  28563. ))
  28564. characterMakers.push(() => makeCharacter(
  28565. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28566. {
  28567. front: {
  28568. height: math.unit(10, "feet"),
  28569. weight: math.unit(2, "tons"),
  28570. name: "Front",
  28571. image: {
  28572. source: "./media/characters/rekhit/front.svg",
  28573. extra: 2796 / 2590,
  28574. bottom: 225 / 3022
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(10, "feet"),
  28582. default: true
  28583. },
  28584. {
  28585. name: "Macro",
  28586. height: math.unit(500, "feet")
  28587. },
  28588. ]
  28589. ))
  28590. characterMakers.push(() => makeCharacter(
  28591. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28592. {
  28593. front: {
  28594. height: math.unit(7 + 6.451 / 12, "feet"),
  28595. weight: math.unit(310, "lb"),
  28596. name: "Front",
  28597. image: {
  28598. source: "./media/characters/dahlia-verrick/front.svg",
  28599. extra: 1488 / 1365,
  28600. bottom: 6.2 / 1495
  28601. }
  28602. },
  28603. back: {
  28604. height: math.unit(7 + 6.451 / 12, "feet"),
  28605. weight: math.unit(310, "lb"),
  28606. name: "Back",
  28607. image: {
  28608. source: "./media/characters/dahlia-verrick/back.svg",
  28609. extra: 1472 / 1351,
  28610. bottom: 5.28 / 1477
  28611. }
  28612. },
  28613. frontBusiness: {
  28614. height: math.unit(7 + 6.451 / 12, "feet"),
  28615. weight: math.unit(200, "lb"),
  28616. name: "Front (Business)",
  28617. image: {
  28618. source: "./media/characters/dahlia-verrick/front-business.svg",
  28619. extra: 1478 / 1381,
  28620. bottom: 5.5 / 1484
  28621. }
  28622. },
  28623. frontCasual: {
  28624. height: math.unit(7 + 6.451 / 12, "feet"),
  28625. weight: math.unit(200, "lb"),
  28626. name: "Front (Casual)",
  28627. image: {
  28628. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28629. extra: 1478 / 1381,
  28630. bottom: 5.5 / 1484
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Travel-Sized",
  28637. height: math.unit(7.45, "inches")
  28638. },
  28639. {
  28640. name: "Normal",
  28641. height: math.unit(7 + 6.451 / 12, "feet"),
  28642. default: true
  28643. },
  28644. {
  28645. name: "Hitting the Town",
  28646. height: math.unit(37 + 8 / 12, "feet")
  28647. },
  28648. {
  28649. name: "Stomp in the Suburbs",
  28650. height: math.unit(964 + 9.728 / 12, "feet")
  28651. },
  28652. {
  28653. name: "Sit on the City",
  28654. height: math.unit(61747 + 10.592 / 12, "feet")
  28655. },
  28656. {
  28657. name: "Glomp the Globe",
  28658. height: math.unit(252919327 + 4.832 / 12, "feet")
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(6 + 4 / 12, "feet"),
  28667. weight: math.unit(320, "lb"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/balina-mahigan/front.svg",
  28671. extra: 447 / 428,
  28672. bottom: 18 / 466
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(6 + 4 / 12, "feet"),
  28677. weight: math.unit(320, "lb"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/balina-mahigan/back.svg",
  28681. extra: 445 / 428,
  28682. bottom: 4.07 / 448
  28683. }
  28684. },
  28685. arm: {
  28686. height: math.unit(1.88, "feet"),
  28687. name: "Arm",
  28688. image: {
  28689. source: "./media/characters/balina-mahigan/arm.svg"
  28690. }
  28691. },
  28692. backPort: {
  28693. height: math.unit(0.685, "feet"),
  28694. name: "Back Port",
  28695. image: {
  28696. source: "./media/characters/balina-mahigan/back-port.svg"
  28697. }
  28698. },
  28699. hoofpaw: {
  28700. height: math.unit(1.41, "feet"),
  28701. name: "Hoofpaw",
  28702. image: {
  28703. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28704. }
  28705. },
  28706. leftHandBack: {
  28707. height: math.unit(0.938, "feet"),
  28708. name: "Left Hand (Back)",
  28709. image: {
  28710. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28711. }
  28712. },
  28713. leftHandFront: {
  28714. height: math.unit(0.938, "feet"),
  28715. name: "Left Hand (Front)",
  28716. image: {
  28717. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28718. }
  28719. },
  28720. rightHandBack: {
  28721. height: math.unit(0.95, "feet"),
  28722. name: "Right Hand (Back)",
  28723. image: {
  28724. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28725. }
  28726. },
  28727. rightHandFront: {
  28728. height: math.unit(0.95, "feet"),
  28729. name: "Right Hand (Front)",
  28730. image: {
  28731. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(6 + 4 / 12, "feet"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(6, "feet"),
  28748. weight: math.unit(320, "lb"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/balina-mejeri/front.svg",
  28752. extra: 517 / 488,
  28753. bottom: 44.2 / 561
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(6 + 4 / 12, "feet")
  28761. },
  28762. {
  28763. name: "Business",
  28764. height: math.unit(155, "feet"),
  28765. default: true
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28771. {
  28772. kneeling: {
  28773. height: math.unit(6 + 4 / 12, "feet"),
  28774. weight: math.unit(300 * 20, "lb"),
  28775. name: "Kneeling",
  28776. image: {
  28777. source: "./media/characters/balbarian/kneeling.svg",
  28778. extra: 922 / 862,
  28779. bottom: 42.4 / 965
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(6 + 4 / 12, "feet")
  28787. },
  28788. {
  28789. name: "Treasured",
  28790. height: math.unit(18 + 9 / 12, "feet"),
  28791. default: true
  28792. },
  28793. {
  28794. name: "Macro",
  28795. height: math.unit(900, "feet")
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28801. {
  28802. front: {
  28803. height: math.unit(6 + 4 / 12, "feet"),
  28804. weight: math.unit(325, "lb"),
  28805. name: "Front",
  28806. image: {
  28807. source: "./media/characters/balina-amarini/front.svg",
  28808. extra: 415 / 403,
  28809. bottom: 19 / 433.4
  28810. }
  28811. },
  28812. back: {
  28813. height: math.unit(6 + 4 / 12, "feet"),
  28814. weight: math.unit(325, "lb"),
  28815. name: "Back",
  28816. image: {
  28817. source: "./media/characters/balina-amarini/back.svg",
  28818. extra: 415 / 403,
  28819. bottom: 13.5 / 432
  28820. }
  28821. },
  28822. overdrive: {
  28823. height: math.unit(6 + 4 / 12, "feet"),
  28824. weight: math.unit(400, "lb"),
  28825. name: "Overdrive",
  28826. image: {
  28827. source: "./media/characters/balina-amarini/overdrive.svg",
  28828. extra: 269 / 259,
  28829. bottom: 12 / 282
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Boom",
  28836. height: math.unit(9 + 10 / 12, "feet"),
  28837. default: true
  28838. },
  28839. {
  28840. name: "Macro",
  28841. height: math.unit(280, "feet")
  28842. },
  28843. ]
  28844. ))
  28845. characterMakers.push(() => makeCharacter(
  28846. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28847. {
  28848. goddess: {
  28849. height: math.unit(600, "feet"),
  28850. weight: math.unit(2000000, "tons"),
  28851. name: "Goddess",
  28852. image: {
  28853. source: "./media/characters/lady-kubwa/goddess.svg",
  28854. extra: 1240.5 / 1223,
  28855. bottom: 22 / 1263
  28856. }
  28857. },
  28858. goddesser: {
  28859. height: math.unit(900, "feet"),
  28860. weight: math.unit(20000000, "lb"),
  28861. name: "Goddess-er",
  28862. image: {
  28863. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28864. extra: 899 / 888,
  28865. bottom: 12.6 / 912
  28866. }
  28867. },
  28868. },
  28869. [
  28870. {
  28871. name: "Macro",
  28872. height: math.unit(600, "feet"),
  28873. default: true
  28874. },
  28875. {
  28876. name: "Megamacro",
  28877. height: math.unit(250, "miles")
  28878. },
  28879. ]
  28880. ))
  28881. characterMakers.push(() => makeCharacter(
  28882. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28883. {
  28884. front: {
  28885. height: math.unit(7 + 7 / 12, "feet"),
  28886. weight: math.unit(250, "lb"),
  28887. name: "Front",
  28888. image: {
  28889. source: "./media/characters/tala-grovehorn/front.svg",
  28890. extra: 2636 / 2525,
  28891. bottom: 147 / 2781
  28892. }
  28893. },
  28894. back: {
  28895. height: math.unit(7 + 7 / 12, "feet"),
  28896. weight: math.unit(250, "lb"),
  28897. name: "Back",
  28898. image: {
  28899. source: "./media/characters/tala-grovehorn/back.svg",
  28900. extra: 2635 / 2539,
  28901. bottom: 100 / 2732.8
  28902. }
  28903. },
  28904. mouth: {
  28905. height: math.unit(1.15, "feet"),
  28906. name: "Mouth",
  28907. image: {
  28908. source: "./media/characters/tala-grovehorn/mouth.svg"
  28909. }
  28910. },
  28911. dick: {
  28912. height: math.unit(2.36, "feet"),
  28913. name: "Dick",
  28914. image: {
  28915. source: "./media/characters/tala-grovehorn/dick.svg"
  28916. }
  28917. },
  28918. slit: {
  28919. height: math.unit(0.61, "feet"),
  28920. name: "Slit",
  28921. image: {
  28922. source: "./media/characters/tala-grovehorn/slit.svg"
  28923. }
  28924. },
  28925. },
  28926. [
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(7 + 7 / 12, "feet"),
  28934. weight: math.unit(225, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/epona/front.svg",
  28938. extra: 2445 / 2290,
  28939. bottom: 251 / 2696
  28940. }
  28941. },
  28942. back: {
  28943. height: math.unit(7 + 7 / 12, "feet"),
  28944. weight: math.unit(225, "lb"),
  28945. name: "Back",
  28946. image: {
  28947. source: "./media/characters/epona/back.svg",
  28948. extra: 2546 / 2408,
  28949. bottom: 44 / 2589
  28950. }
  28951. },
  28952. genitals: {
  28953. height: math.unit(1.5, "feet"),
  28954. name: "Genitals",
  28955. image: {
  28956. source: "./media/characters/epona/genitals.svg"
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Normal",
  28963. height: math.unit(7 + 7 / 12, "feet"),
  28964. default: true
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(7, "feet"),
  28973. weight: math.unit(518, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/avia-bloodbourn/front.svg",
  28977. extra: 1466 / 1350,
  28978. bottom: 65 / 1527
  28979. }
  28980. },
  28981. },
  28982. [
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(9.35, "feet"),
  28990. weight: math.unit(600, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/amera/front.svg",
  28994. extra: 891 / 818,
  28995. bottom: 30 / 922.7
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(9.35, "feet"),
  29000. weight: math.unit(600, "lb"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/amera/back.svg",
  29004. extra: 876 / 824,
  29005. bottom: 6.8 / 884
  29006. }
  29007. },
  29008. dick: {
  29009. height: math.unit(2.14, "feet"),
  29010. name: "Dick",
  29011. image: {
  29012. source: "./media/characters/amera/dick.svg"
  29013. }
  29014. },
  29015. },
  29016. [
  29017. {
  29018. name: "Normal",
  29019. height: math.unit(9.35, "feet"),
  29020. default: true
  29021. },
  29022. ]
  29023. ))
  29024. characterMakers.push(() => makeCharacter(
  29025. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29026. {
  29027. kneeling: {
  29028. height: math.unit(3 + 4 / 12, "feet"),
  29029. weight: math.unit(90, "lb"),
  29030. name: "Kneeling",
  29031. image: {
  29032. source: "./media/characters/rosewen/kneeling.svg",
  29033. extra: 1835 / 1571,
  29034. bottom: 27.7 / 1862
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Normal",
  29041. height: math.unit(3 + 4 / 12, "feet"),
  29042. default: true
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(5 + 10 / 12, "feet"),
  29051. weight: math.unit(200, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/sabah/front.svg",
  29055. extra: 849 / 763,
  29056. bottom: 33.9 / 881
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(5 + 10 / 12, "feet"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29070. {
  29071. front: {
  29072. height: math.unit(3 + 5 / 12, "feet"),
  29073. weight: math.unit(40, "kg"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/purple-flame/front.svg",
  29077. extra: 1577 / 1412,
  29078. bottom: 97 / 1694
  29079. }
  29080. },
  29081. frontDressed: {
  29082. height: math.unit(3 + 5 / 12, "feet"),
  29083. weight: math.unit(40, "kg"),
  29084. name: "Front (Dressed)",
  29085. image: {
  29086. source: "./media/characters/purple-flame/front-dressed.svg",
  29087. extra: 1577 / 1412,
  29088. bottom: 97 / 1694
  29089. }
  29090. },
  29091. headphones: {
  29092. height: math.unit(0.85, "feet"),
  29093. name: "Headphones",
  29094. image: {
  29095. source: "./media/characters/purple-flame/headphones.svg"
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Really Small",
  29102. height: math.unit(5, "cm")
  29103. },
  29104. {
  29105. name: "Micro",
  29106. height: math.unit(1 + 5 / 12, "feet")
  29107. },
  29108. {
  29109. name: "Normal",
  29110. height: math.unit(3 + 5 / 12, "feet"),
  29111. default: true
  29112. },
  29113. {
  29114. name: "Minimacro",
  29115. height: math.unit(125, "feet")
  29116. },
  29117. {
  29118. name: "Macro",
  29119. height: math.unit(0.5, "miles")
  29120. },
  29121. {
  29122. name: "Megamacro",
  29123. height: math.unit(50, "miles")
  29124. },
  29125. {
  29126. name: "Gigantic",
  29127. height: math.unit(750, "miles")
  29128. },
  29129. {
  29130. name: "Planetary",
  29131. height: math.unit(15000, "miles")
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29137. {
  29138. front: {
  29139. height: math.unit(14, "feet"),
  29140. weight: math.unit(959, "lb"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/arsenal/front.svg",
  29144. extra: 2357 / 2157,
  29145. bottom: 93 / 2458
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(14, "feet"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/adira/front.svg",
  29166. extra: 1078 / 1029,
  29167. bottom: 87 / 1166
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Micro",
  29174. height: math.unit(4, "inches"),
  29175. default: true
  29176. },
  29177. {
  29178. name: "Macro",
  29179. height: math.unit(50, "feet")
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(16, "feet"),
  29188. weight: math.unit(1000, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/grim/front.svg",
  29192. extra: 622 / 614,
  29193. bottom: 18.1 / 642
  29194. }
  29195. },
  29196. back: {
  29197. height: math.unit(16, "feet"),
  29198. weight: math.unit(1000, "lb"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/grim/back.svg",
  29202. extra: 610.6 / 602,
  29203. bottom: 40.8 / 652
  29204. }
  29205. },
  29206. hunched: {
  29207. height: math.unit(9.75, "feet"),
  29208. weight: math.unit(1000, "lb"),
  29209. name: "Hunched",
  29210. image: {
  29211. source: "./media/characters/grim/hunched.svg",
  29212. extra: 304 / 297,
  29213. bottom: 35.4 / 394
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Normal",
  29220. height: math.unit(16, "feet"),
  29221. default: true
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29227. {
  29228. front: {
  29229. height: math.unit(2.3, "meters"),
  29230. weight: math.unit(300, "lb"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/sinja/front-sfw.svg",
  29234. extra: 1393 / 1294,
  29235. bottom: 70 / 1463
  29236. }
  29237. },
  29238. frontNsfw: {
  29239. height: math.unit(2.3, "meters"),
  29240. weight: math.unit(300, "lb"),
  29241. name: "Front (NSFW)",
  29242. image: {
  29243. source: "./media/characters/sinja/front-nsfw.svg",
  29244. extra: 1393 / 1294,
  29245. bottom: 70 / 1463
  29246. }
  29247. },
  29248. back: {
  29249. height: math.unit(2.3, "meters"),
  29250. weight: math.unit(300, "lb"),
  29251. name: "Back",
  29252. image: {
  29253. source: "./media/characters/sinja/back.svg",
  29254. extra: 1393 / 1294,
  29255. bottom: 70 / 1463
  29256. }
  29257. },
  29258. head: {
  29259. height: math.unit(1.771, "feet"),
  29260. name: "Head",
  29261. image: {
  29262. source: "./media/characters/sinja/head.svg"
  29263. }
  29264. },
  29265. slit: {
  29266. height: math.unit(0.8, "feet"),
  29267. name: "Slit",
  29268. image: {
  29269. source: "./media/characters/sinja/slit.svg"
  29270. }
  29271. },
  29272. },
  29273. [
  29274. {
  29275. name: "Normal",
  29276. height: math.unit(2.3, "meters")
  29277. },
  29278. {
  29279. name: "Macro",
  29280. height: math.unit(91, "meters"),
  29281. default: true
  29282. },
  29283. {
  29284. name: "Megamacro",
  29285. height: math.unit(91440, "meters")
  29286. },
  29287. {
  29288. name: "Gigamacro",
  29289. height: math.unit(60960000, "meters")
  29290. },
  29291. {
  29292. name: "Teramacro",
  29293. height: math.unit(9144000000, "meters")
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(1.7, "meters"),
  29302. weight: math.unit(130, "lb"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/kyu/front.svg",
  29306. extra: 415 / 395,
  29307. bottom: 5 / 420
  29308. }
  29309. },
  29310. head: {
  29311. height: math.unit(1.75, "feet"),
  29312. name: "Head",
  29313. image: {
  29314. source: "./media/characters/kyu/head.svg"
  29315. }
  29316. },
  29317. foot: {
  29318. height: math.unit(0.81, "feet"),
  29319. name: "Foot",
  29320. image: {
  29321. source: "./media/characters/kyu/foot.svg"
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(1.7, "meters")
  29329. },
  29330. {
  29331. name: "Macro",
  29332. height: math.unit(131, "feet"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Megamacro",
  29337. height: math.unit(91440, "meters")
  29338. },
  29339. {
  29340. name: "Gigamacro",
  29341. height: math.unit(60960000, "meters")
  29342. },
  29343. {
  29344. name: "Teramacro",
  29345. height: math.unit(9144000000, "meters")
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(7 + 1 / 12, "feet"),
  29354. weight: math.unit(250, "lb"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/joey/front.svg",
  29358. extra: 1791 / 1537,
  29359. bottom: 28 / 1816
  29360. }
  29361. },
  29362. },
  29363. [
  29364. {
  29365. name: "Micro",
  29366. height: math.unit(3, "inches")
  29367. },
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(7 + 1 / 12, "feet"),
  29371. default: true
  29372. },
  29373. ]
  29374. ))
  29375. characterMakers.push(() => makeCharacter(
  29376. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29377. {
  29378. front: {
  29379. height: math.unit(165, "cm"),
  29380. weight: math.unit(140, "lb"),
  29381. name: "Front",
  29382. image: {
  29383. source: "./media/characters/sam-evans/front.svg",
  29384. extra: 3417 / 3230,
  29385. bottom: 41.3 / 3417
  29386. }
  29387. },
  29388. frontSixTails: {
  29389. height: math.unit(165, "cm"),
  29390. weight: math.unit(140, "lb"),
  29391. name: "Front-six-tails",
  29392. image: {
  29393. source: "./media/characters/sam-evans/front-six-tails.svg",
  29394. extra: 3417 / 3230,
  29395. bottom: 41.3 / 3417
  29396. }
  29397. },
  29398. back: {
  29399. height: math.unit(165, "cm"),
  29400. weight: math.unit(140, "lb"),
  29401. name: "Back",
  29402. image: {
  29403. source: "./media/characters/sam-evans/back.svg",
  29404. extra: 3227 / 3032,
  29405. bottom: 6.8 / 3234
  29406. }
  29407. },
  29408. face: {
  29409. height: math.unit(0.68, "feet"),
  29410. name: "Face",
  29411. image: {
  29412. source: "./media/characters/sam-evans/face.svg"
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Normal",
  29419. height: math.unit(165, "cm"),
  29420. default: true
  29421. },
  29422. {
  29423. name: "Macro",
  29424. height: math.unit(100, "meters")
  29425. },
  29426. {
  29427. name: "Macro+",
  29428. height: math.unit(800, "meters")
  29429. },
  29430. {
  29431. name: "Macro++",
  29432. height: math.unit(3, "km")
  29433. },
  29434. {
  29435. name: "Macro+++",
  29436. height: math.unit(30, "km")
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(10, "feet"),
  29445. weight: math.unit(750, "lb"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/juliet-a/front.svg",
  29449. extra: 1766 / 1720,
  29450. bottom: 43 / 1809
  29451. }
  29452. },
  29453. back: {
  29454. height: math.unit(10, "feet"),
  29455. weight: math.unit(750, "lb"),
  29456. name: "Back",
  29457. image: {
  29458. source: "./media/characters/juliet-a/back.svg",
  29459. extra: 1781 / 1734,
  29460. bottom: 35 / 1810,
  29461. }
  29462. },
  29463. },
  29464. [
  29465. {
  29466. name: "Normal",
  29467. height: math.unit(10, "feet"),
  29468. default: true
  29469. },
  29470. {
  29471. name: "Dragon Form",
  29472. height: math.unit(250, "feet")
  29473. },
  29474. {
  29475. name: "Macro",
  29476. height: math.unit(1000, "feet")
  29477. },
  29478. {
  29479. name: "Megamacro",
  29480. height: math.unit(10000, "feet")
  29481. }
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29486. {
  29487. regular: {
  29488. height: math.unit(7 + 3 / 12, "feet"),
  29489. weight: math.unit(260, "lb"),
  29490. name: "Regular",
  29491. image: {
  29492. source: "./media/characters/wild/regular.svg",
  29493. extra: 97.45 / 92,
  29494. bottom: 6.8 / 104.3
  29495. }
  29496. },
  29497. biggums: {
  29498. height: math.unit(8 + 6 / 12, "feet"),
  29499. weight: math.unit(425, "lb"),
  29500. name: "Biggums",
  29501. image: {
  29502. source: "./media/characters/wild/biggums.svg",
  29503. extra: 97.45 / 92,
  29504. bottom: 7.5 / 132.34
  29505. }
  29506. },
  29507. mawRegular: {
  29508. height: math.unit(1.24, "feet"),
  29509. name: "Maw (Regular)",
  29510. image: {
  29511. source: "./media/characters/wild/maw.svg"
  29512. }
  29513. },
  29514. mawBiggums: {
  29515. height: math.unit(1.47, "feet"),
  29516. name: "Maw (Biggums)",
  29517. image: {
  29518. source: "./media/characters/wild/maw.svg"
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(7 + 3 / 12, "feet"),
  29526. default: true
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29532. {
  29533. front: {
  29534. height: math.unit(2.5, "meters"),
  29535. weight: math.unit(200, "kg"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/vidar/front.svg",
  29539. extra: 2994 / 2795,
  29540. bottom: 56 / 3061
  29541. }
  29542. },
  29543. back: {
  29544. height: math.unit(2.5, "meters"),
  29545. weight: math.unit(200, "kg"),
  29546. name: "Back",
  29547. image: {
  29548. source: "./media/characters/vidar/back.svg",
  29549. extra: 3131 / 2928,
  29550. bottom: 13.5 / 3141.5
  29551. }
  29552. },
  29553. feral: {
  29554. height: math.unit(2.5, "meters"),
  29555. weight: math.unit(2000, "kg"),
  29556. name: "Feral",
  29557. image: {
  29558. source: "./media/characters/vidar/feral.svg",
  29559. extra: 2790 / 1765,
  29560. bottom: 6 / 2796
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Normal",
  29567. height: math.unit(2.5, "meters"),
  29568. default: true
  29569. },
  29570. {
  29571. name: "Macro",
  29572. height: math.unit(100, "meters")
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(5 + 9 / 12, "feet"),
  29581. weight: math.unit(120, "lb"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/ash/front.svg",
  29585. extra: 2189 / 1961,
  29586. bottom: 5.2 / 2194
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(5 + 9 / 12, "feet"),
  29594. default: true
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(9, "feet"),
  29603. weight: math.unit(10000, "lb"),
  29604. name: "Front",
  29605. image: {
  29606. source: "./media/characters/gygabite/front.svg",
  29607. bottom: 31.7 / 537.8,
  29608. extra: 505 / 370
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(9, "feet"),
  29616. default: true
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(12, "feet"),
  29625. weight: math.unit(4000, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/p0tat0/front.svg",
  29629. extra: 1065 / 921,
  29630. bottom: 55.7 / 1121.25
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Normal",
  29637. height: math.unit(12, "feet"),
  29638. default: true
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29644. {
  29645. side: {
  29646. height: math.unit(6.5, "feet"),
  29647. weight: math.unit(800, "lb"),
  29648. name: "Side",
  29649. image: {
  29650. source: "./media/characters/dusk/side.svg",
  29651. extra: 615 / 373,
  29652. bottom: 53 / 664
  29653. }
  29654. },
  29655. sitting: {
  29656. height: math.unit(7, "feet"),
  29657. weight: math.unit(800, "lb"),
  29658. name: "Sitting",
  29659. image: {
  29660. source: "./media/characters/dusk/sitting.svg",
  29661. extra: 753 / 425,
  29662. bottom: 33 / 774
  29663. }
  29664. },
  29665. head: {
  29666. height: math.unit(6.1, "feet"),
  29667. name: "Head",
  29668. image: {
  29669. source: "./media/characters/dusk/head.svg"
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(7, "feet"),
  29677. default: true
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(15, "feet"),
  29686. weight: math.unit(7000, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/jay-direwolf/front.svg",
  29690. extra: 1810 / 1732,
  29691. bottom: 66 / 1892
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(15, "feet"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(4 + 9 / 12, "feet"),
  29708. weight: math.unit(130, "lb"),
  29709. name: "Front",
  29710. image: {
  29711. source: "./media/characters/anchovie/front.svg",
  29712. extra: 382 / 350,
  29713. bottom: 25 / 409
  29714. }
  29715. },
  29716. back: {
  29717. height: math.unit(4 + 9 / 12, "feet"),
  29718. weight: math.unit(130, "lb"),
  29719. name: "Back",
  29720. image: {
  29721. source: "./media/characters/anchovie/back.svg",
  29722. extra: 385 / 352,
  29723. bottom: 16.6 / 402
  29724. }
  29725. },
  29726. frontDressed: {
  29727. height: math.unit(4 + 9 / 12, "feet"),
  29728. weight: math.unit(130, "lb"),
  29729. name: "Front (Dressed)",
  29730. image: {
  29731. source: "./media/characters/anchovie/front-dressed.svg",
  29732. extra: 382 / 350,
  29733. bottom: 25 / 409
  29734. }
  29735. },
  29736. backDressed: {
  29737. height: math.unit(4 + 9 / 12, "feet"),
  29738. weight: math.unit(130, "lb"),
  29739. name: "Back (Dressed)",
  29740. image: {
  29741. source: "./media/characters/anchovie/back-dressed.svg",
  29742. extra: 385 / 352,
  29743. bottom: 16.6 / 402
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Micro",
  29750. height: math.unit(6.4, "inches")
  29751. },
  29752. {
  29753. name: "Normal",
  29754. height: math.unit(4 + 9 / 12, "feet"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(2, "meters"),
  29764. weight: math.unit(180, "lb"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/acidrenamon/front.svg",
  29768. extra: 987 / 890,
  29769. bottom: 22.8 / 1009
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(2, "meters"),
  29774. weight: math.unit(180, "lb"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/acidrenamon/back.svg",
  29778. extra: 983 / 891,
  29779. bottom: 8.4 / 992
  29780. }
  29781. },
  29782. head: {
  29783. height: math.unit(1.92, "feet"),
  29784. name: "Head",
  29785. image: {
  29786. source: "./media/characters/acidrenamon/head.svg"
  29787. }
  29788. },
  29789. rump: {
  29790. height: math.unit(1.72, "feet"),
  29791. name: "Rump",
  29792. image: {
  29793. source: "./media/characters/acidrenamon/rump.svg"
  29794. }
  29795. },
  29796. tail: {
  29797. height: math.unit(4.2, "feet"),
  29798. name: "Tail",
  29799. image: {
  29800. source: "./media/characters/acidrenamon/tail.svg"
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Normal",
  29807. height: math.unit(2, "meters"),
  29808. default: true
  29809. },
  29810. {
  29811. name: "Minimacro",
  29812. height: math.unit(7, "meters")
  29813. },
  29814. {
  29815. name: "Macro",
  29816. height: math.unit(200, "meters")
  29817. },
  29818. {
  29819. name: "Gigamacro",
  29820. height: math.unit(0.2, "earths")
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(152, "feet"),
  29829. name: "Front",
  29830. image: {
  29831. source: "./media/characters/kenzie-lee/front.svg",
  29832. extra: 1869/1774,
  29833. bottom: 128/1997
  29834. }
  29835. },
  29836. side: {
  29837. height: math.unit(86, "feet"),
  29838. name: "Side",
  29839. image: {
  29840. source: "./media/characters/kenzie-lee/side.svg",
  29841. extra: 930/815,
  29842. bottom: 177/1107
  29843. }
  29844. },
  29845. paw: {
  29846. height: math.unit(15, "feet"),
  29847. name: "Paw",
  29848. image: {
  29849. source: "./media/characters/kenzie-lee/paw.svg"
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Kenzie Flea",
  29856. height: math.unit(2, "mm"),
  29857. default: true
  29858. },
  29859. {
  29860. name: "Micro",
  29861. height: math.unit(2, "inches")
  29862. },
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(152, "feet")
  29866. },
  29867. {
  29868. name: "Megamacro",
  29869. height: math.unit(7, "miles")
  29870. },
  29871. {
  29872. name: "Gigamacro",
  29873. height: math.unit(8000, "miles")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(6, "feet"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/withers/front.svg",
  29885. extra: 1935/1760,
  29886. bottom: 72/2007
  29887. }
  29888. },
  29889. back: {
  29890. height: math.unit(6, "feet"),
  29891. name: "Back",
  29892. image: {
  29893. source: "./media/characters/withers/back.svg",
  29894. extra: 1944/1792,
  29895. bottom: 12/1956
  29896. }
  29897. },
  29898. dressed: {
  29899. height: math.unit(6, "feet"),
  29900. name: "Dressed",
  29901. image: {
  29902. source: "./media/characters/withers/dressed.svg",
  29903. extra: 1937/1765,
  29904. bottom: 73/2010
  29905. }
  29906. },
  29907. phase1: {
  29908. height: math.unit(1.1, "feet"),
  29909. name: "Phase 1",
  29910. image: {
  29911. source: "./media/characters/withers/phase-1.svg",
  29912. extra: 1885/1232,
  29913. bottom: 0/1885
  29914. }
  29915. },
  29916. phase2: {
  29917. height: math.unit(1.05, "feet"),
  29918. name: "Phase 2",
  29919. image: {
  29920. source: "./media/characters/withers/phase-2.svg",
  29921. extra: 1792/1090,
  29922. bottom: 0/1792
  29923. }
  29924. },
  29925. partyWipe: {
  29926. height: math.unit(1.1, "feet"),
  29927. name: "Party Wipe",
  29928. image: {
  29929. source: "./media/characters/withers/party-wipe.svg",
  29930. extra: 1864/1207,
  29931. bottom: 0/1864
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Macro",
  29938. height: math.unit(167, "feet"),
  29939. default: true
  29940. },
  29941. {
  29942. name: "Megamacro",
  29943. height: math.unit(15, "miles")
  29944. }
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(6 + 7 / 12, "feet"),
  29952. weight: math.unit(250, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/nemoskii/front.svg",
  29956. extra: 2270 / 1734,
  29957. bottom: 86 / 2354
  29958. }
  29959. },
  29960. back: {
  29961. height: math.unit(6 + 7 / 12, "feet"),
  29962. weight: math.unit(250, "lb"),
  29963. name: "Back",
  29964. image: {
  29965. source: "./media/characters/nemoskii/back.svg",
  29966. extra: 1845 / 1788,
  29967. bottom: 10.5 / 1852
  29968. }
  29969. },
  29970. head: {
  29971. height: math.unit(1.31, "feet"),
  29972. name: "Head",
  29973. image: {
  29974. source: "./media/characters/nemoskii/head.svg"
  29975. }
  29976. },
  29977. },
  29978. [
  29979. {
  29980. name: "Micro",
  29981. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29982. },
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(6 + 7 / 12, "feet"),
  29986. default: true
  29987. },
  29988. {
  29989. name: "Macro",
  29990. height: math.unit((6 + 7 / 12) * 150, "feet")
  29991. },
  29992. {
  29993. name: "Macro+",
  29994. height: math.unit((6 + 7 / 12) * 500, "feet")
  29995. },
  29996. {
  29997. name: "Megamacro",
  29998. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29999. },
  30000. ]
  30001. ))
  30002. characterMakers.push(() => makeCharacter(
  30003. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30004. {
  30005. front: {
  30006. height: math.unit(1, "mile"),
  30007. weight: math.unit(265261.9, "lb"),
  30008. name: "Front",
  30009. image: {
  30010. source: "./media/characters/shui/front.svg",
  30011. extra: 1633 / 1564,
  30012. bottom: 91.5 / 1726
  30013. }
  30014. },
  30015. },
  30016. [
  30017. {
  30018. name: "Macro",
  30019. height: math.unit(1, "mile"),
  30020. default: true
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30026. {
  30027. front: {
  30028. height: math.unit(12 + 6 / 12, "feet"),
  30029. weight: math.unit(1342, "lb"),
  30030. name: "Front",
  30031. image: {
  30032. source: "./media/characters/arokh-takakura/front.svg",
  30033. extra: 1089 / 1043,
  30034. bottom: 77.4 / 1176.7
  30035. }
  30036. },
  30037. back: {
  30038. height: math.unit(12 + 6 / 12, "feet"),
  30039. weight: math.unit(1342, "lb"),
  30040. name: "Back",
  30041. image: {
  30042. source: "./media/characters/arokh-takakura/back.svg",
  30043. extra: 1046 / 1019,
  30044. bottom: 102 / 1150
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Big",
  30051. height: math.unit(12 + 6 / 12, "feet"),
  30052. default: true
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30058. {
  30059. front: {
  30060. height: math.unit(5 + 6 / 12, "feet"),
  30061. weight: math.unit(150, "lb"),
  30062. name: "Front",
  30063. image: {
  30064. source: "./media/characters/theo/front.svg",
  30065. extra: 1184 / 1131,
  30066. bottom: 7.4 / 1191
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Micro",
  30073. height: math.unit(5, "inches")
  30074. },
  30075. {
  30076. name: "Normal",
  30077. height: math.unit(5 + 6 / 12, "feet"),
  30078. default: true
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30084. {
  30085. front: {
  30086. height: math.unit(5 + 9 / 12, "feet"),
  30087. weight: math.unit(130, "lb"),
  30088. name: "Front",
  30089. image: {
  30090. source: "./media/characters/cecelia-swift/front.svg",
  30091. extra: 502 / 484,
  30092. bottom: 23 / 523
  30093. }
  30094. },
  30095. back: {
  30096. height: math.unit(5 + 9 / 12, "feet"),
  30097. weight: math.unit(130, "lb"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/cecelia-swift/back.svg",
  30101. extra: 499 / 485,
  30102. bottom: 12 / 511
  30103. }
  30104. },
  30105. head: {
  30106. height: math.unit(0.90, "feet"),
  30107. name: "Head",
  30108. image: {
  30109. source: "./media/characters/cecelia-swift/head.svg"
  30110. }
  30111. },
  30112. rump: {
  30113. height: math.unit(1.75, "feet"),
  30114. name: "Rump",
  30115. image: {
  30116. source: "./media/characters/cecelia-swift/rump.svg"
  30117. }
  30118. },
  30119. },
  30120. [
  30121. {
  30122. name: "Normal",
  30123. height: math.unit(5 + 9 / 12, "feet"),
  30124. default: true
  30125. },
  30126. {
  30127. name: "Big",
  30128. height: math.unit(50, "feet")
  30129. },
  30130. {
  30131. name: "Macro",
  30132. height: math.unit(100, "feet")
  30133. },
  30134. {
  30135. name: "Macro+",
  30136. height: math.unit(500, "feet")
  30137. },
  30138. {
  30139. name: "Macro++",
  30140. height: math.unit(1000, "feet")
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30146. {
  30147. front: {
  30148. height: math.unit(6, "feet"),
  30149. weight: math.unit(150, "lb"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/kaunan/front.svg",
  30153. extra: 2890 / 2523,
  30154. bottom: 49 / 2939
  30155. }
  30156. },
  30157. },
  30158. [
  30159. {
  30160. name: "Macro",
  30161. height: math.unit(150, "feet"),
  30162. default: true
  30163. },
  30164. ]
  30165. ))
  30166. characterMakers.push(() => makeCharacter(
  30167. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30168. {
  30169. dressed: {
  30170. height: math.unit(175, "cm"),
  30171. weight: math.unit(60, "kg"),
  30172. name: "Dressed",
  30173. image: {
  30174. source: "./media/characters/fei/dressed.svg",
  30175. extra: 1402/1278,
  30176. bottom: 27/1429
  30177. }
  30178. },
  30179. nude: {
  30180. height: math.unit(175, "cm"),
  30181. weight: math.unit(60, "kg"),
  30182. name: "Nude",
  30183. image: {
  30184. source: "./media/characters/fei/nude.svg",
  30185. extra: 1402/1278,
  30186. bottom: 27/1429
  30187. }
  30188. },
  30189. heels: {
  30190. height: math.unit(0.466, "feet"),
  30191. name: "Heels",
  30192. image: {
  30193. source: "./media/characters/fei/heels.svg",
  30194. extra: 156/152,
  30195. bottom: 28/184
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Mortal",
  30202. height: math.unit(175, "cm")
  30203. },
  30204. {
  30205. name: "Normal",
  30206. height: math.unit(3500, "m")
  30207. },
  30208. {
  30209. name: "Stroll",
  30210. height: math.unit(18.4, "km"),
  30211. default: true
  30212. },
  30213. {
  30214. name: "Showoff",
  30215. height: math.unit(175, "km")
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(7, "feet"),
  30224. weight: math.unit(1000, "kg"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/edrax/front.svg",
  30228. extra: 2838 / 2550,
  30229. bottom: 130 / 2968
  30230. }
  30231. },
  30232. },
  30233. [
  30234. {
  30235. name: "Small",
  30236. height: math.unit(7, "feet")
  30237. },
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(1500, "meters")
  30241. },
  30242. {
  30243. name: "Mega",
  30244. height: math.unit(12000000, "km"),
  30245. default: true
  30246. },
  30247. {
  30248. name: "Megamacro",
  30249. height: math.unit(10600000, "lightyears")
  30250. },
  30251. {
  30252. name: "Hypermacro",
  30253. height: math.unit(256, "yottameters")
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30259. {
  30260. front: {
  30261. height: math.unit(10, "feet"),
  30262. weight: math.unit(750, "lb"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/clove/front.svg",
  30266. extra: 1918/1751,
  30267. bottom: 52/1970
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(10, "feet"),
  30272. weight: math.unit(750, "lb"),
  30273. name: "Back",
  30274. image: {
  30275. source: "./media/characters/clove/back.svg",
  30276. extra: 1912/1747,
  30277. bottom: 50/1962
  30278. }
  30279. },
  30280. },
  30281. [
  30282. {
  30283. name: "Normal",
  30284. height: math.unit(10, "feet"),
  30285. default: true
  30286. },
  30287. ]
  30288. ))
  30289. characterMakers.push(() => makeCharacter(
  30290. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30291. {
  30292. front: {
  30293. height: math.unit(4, "feet"),
  30294. weight: math.unit(50, "lb"),
  30295. name: "Front",
  30296. image: {
  30297. source: "./media/characters/alex-rabbit/front.svg",
  30298. extra: 507 / 458,
  30299. bottom: 18.5 / 527
  30300. }
  30301. },
  30302. back: {
  30303. height: math.unit(4, "feet"),
  30304. weight: math.unit(50, "lb"),
  30305. name: "Back",
  30306. image: {
  30307. source: "./media/characters/alex-rabbit/back.svg",
  30308. extra: 502 / 460,
  30309. bottom: 18.9 / 521
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Normal",
  30316. height: math.unit(4, "feet"),
  30317. default: true
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(1 + 3 / 12, "feet"),
  30326. weight: math.unit(80, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/zander-rose/front.svg",
  30330. extra: 916 / 797,
  30331. bottom: 17 / 933
  30332. }
  30333. },
  30334. back: {
  30335. height: math.unit(1 + 3 / 12, "feet"),
  30336. weight: math.unit(80, "lb"),
  30337. name: "Back",
  30338. image: {
  30339. source: "./media/characters/zander-rose/back.svg",
  30340. extra: 903 / 779,
  30341. bottom: 31 / 934
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Normal",
  30348. height: math.unit(1 + 3 / 12, "feet"),
  30349. default: true
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30355. {
  30356. anthro: {
  30357. height: math.unit(6, "feet"),
  30358. weight: math.unit(150, "lb"),
  30359. name: "Anthro",
  30360. image: {
  30361. source: "./media/characters/razz/anthro.svg",
  30362. extra: 1437 / 1343,
  30363. bottom: 48 / 1485
  30364. }
  30365. },
  30366. feral: {
  30367. height: math.unit(6, "feet"),
  30368. weight: math.unit(150, "lb"),
  30369. name: "Feral",
  30370. image: {
  30371. source: "./media/characters/razz/feral.svg",
  30372. extra: 2569 / 1385,
  30373. bottom: 95 / 2664
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(6, "feet"),
  30381. default: true
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30387. {
  30388. front: {
  30389. height: math.unit(9 + 4 / 12, "feet"),
  30390. weight: math.unit(500, "lb"),
  30391. name: "Front",
  30392. image: {
  30393. source: "./media/characters/morrigan/front.svg",
  30394. extra: 2707 / 2579,
  30395. bottom: 156 / 2863
  30396. }
  30397. },
  30398. },
  30399. [
  30400. {
  30401. name: "Normal",
  30402. height: math.unit(9 + 4 / 12, "feet"),
  30403. default: true
  30404. },
  30405. ]
  30406. ))
  30407. characterMakers.push(() => makeCharacter(
  30408. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30409. {
  30410. front: {
  30411. height: math.unit(5, "stories"),
  30412. weight: math.unit(4000, "lb"),
  30413. name: "Front",
  30414. image: {
  30415. source: "./media/characters/jenene/front.svg",
  30416. extra: 1780 / 1710,
  30417. bottom: 57 / 1837
  30418. }
  30419. },
  30420. },
  30421. [
  30422. {
  30423. name: "Normal",
  30424. height: math.unit(5, "stories"),
  30425. default: true
  30426. },
  30427. ]
  30428. ))
  30429. characterMakers.push(() => makeCharacter(
  30430. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30431. {
  30432. taurSfw: {
  30433. height: math.unit(10, "meters"),
  30434. weight: math.unit(17500, "kg"),
  30435. name: "Taur",
  30436. image: {
  30437. source: "./media/characters/faey/taur-sfw.svg",
  30438. extra: 1200 / 968,
  30439. bottom: 41 / 1241
  30440. }
  30441. },
  30442. chestmaw: {
  30443. height: math.unit(2.01, "meters"),
  30444. name: "Chestmaw",
  30445. image: {
  30446. source: "./media/characters/faey/chestmaw.svg"
  30447. }
  30448. },
  30449. foot: {
  30450. height: math.unit(2.43, "meters"),
  30451. name: "Foot",
  30452. image: {
  30453. source: "./media/characters/faey/foot.svg"
  30454. }
  30455. },
  30456. jaws: {
  30457. height: math.unit(1.66, "meters"),
  30458. name: "Jaws",
  30459. image: {
  30460. source: "./media/characters/faey/jaws.svg"
  30461. }
  30462. },
  30463. tongues: {
  30464. height: math.unit(2.01, "meters"),
  30465. name: "Tongues",
  30466. image: {
  30467. source: "./media/characters/faey/tongues.svg"
  30468. }
  30469. },
  30470. },
  30471. [
  30472. {
  30473. name: "Small",
  30474. height: math.unit(10, "meters"),
  30475. default: true
  30476. },
  30477. {
  30478. name: "Big",
  30479. height: math.unit(500000, "km")
  30480. },
  30481. ]
  30482. ))
  30483. characterMakers.push(() => makeCharacter(
  30484. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30485. {
  30486. front: {
  30487. height: math.unit(7, "feet"),
  30488. weight: math.unit(275, "lb"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/roku/front.svg",
  30492. extra: 903 / 878,
  30493. bottom: 37 / 940
  30494. }
  30495. },
  30496. },
  30497. [
  30498. {
  30499. name: "Normal",
  30500. height: math.unit(7, "feet"),
  30501. default: true
  30502. },
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(500, "feet")
  30506. },
  30507. {
  30508. name: "Megamacro",
  30509. height: math.unit(200, "miles")
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30515. {
  30516. front: {
  30517. height: math.unit(6 + 2 / 12, "feet"),
  30518. weight: math.unit(150, "lb"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/lira/front.svg",
  30522. extra: 1727 / 1605,
  30523. bottom: 26 / 1753
  30524. }
  30525. },
  30526. back: {
  30527. height: math.unit(6 + 2 / 12, "feet"),
  30528. weight: math.unit(150, "lb"),
  30529. name: "Back",
  30530. image: {
  30531. source: "./media/characters/lira/back.svg",
  30532. extra: 1713/1621,
  30533. bottom: 20/1733
  30534. }
  30535. },
  30536. hand: {
  30537. height: math.unit(0.75, "feet"),
  30538. name: "Hand",
  30539. image: {
  30540. source: "./media/characters/lira/hand.svg"
  30541. }
  30542. },
  30543. maw: {
  30544. height: math.unit(0.65, "feet"),
  30545. name: "Maw",
  30546. image: {
  30547. source: "./media/characters/lira/maw.svg"
  30548. }
  30549. },
  30550. pawDigi: {
  30551. height: math.unit(1.6, "feet"),
  30552. name: "Paw Digi",
  30553. image: {
  30554. source: "./media/characters/lira/paw-digi.svg"
  30555. }
  30556. },
  30557. pawPlanti: {
  30558. height: math.unit(1.4, "feet"),
  30559. name: "Paw Planti",
  30560. image: {
  30561. source: "./media/characters/lira/paw-planti.svg"
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(6 + 2 / 12, "feet"),
  30569. default: true
  30570. },
  30571. {
  30572. name: "Macro",
  30573. height: math.unit(100, "feet")
  30574. },
  30575. {
  30576. name: "Macro²",
  30577. height: math.unit(1600, "feet")
  30578. },
  30579. {
  30580. name: "Planetary",
  30581. height: math.unit(20, "earths")
  30582. },
  30583. ]
  30584. ))
  30585. characterMakers.push(() => makeCharacter(
  30586. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30587. {
  30588. front: {
  30589. height: math.unit(6, "feet"),
  30590. weight: math.unit(150, "lb"),
  30591. name: "Front",
  30592. image: {
  30593. source: "./media/characters/hadjet/front.svg",
  30594. extra: 1480 / 1346,
  30595. bottom: 26 / 1506
  30596. }
  30597. },
  30598. frontNsfw: {
  30599. height: math.unit(6, "feet"),
  30600. weight: math.unit(150, "lb"),
  30601. name: "Front (NSFW)",
  30602. image: {
  30603. source: "./media/characters/hadjet/front-nsfw.svg",
  30604. extra: 1440 / 1358,
  30605. bottom: 52 / 1492
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Macro",
  30612. height: math.unit(10, "stories"),
  30613. default: true
  30614. },
  30615. {
  30616. name: "Megamacro",
  30617. height: math.unit(1.5, "miles")
  30618. },
  30619. {
  30620. name: "Megamacro+",
  30621. height: math.unit(5, "miles")
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30627. {
  30628. side: {
  30629. height: math.unit(106, "feet"),
  30630. weight: math.unit(500, "tonnes"),
  30631. name: "Side",
  30632. image: {
  30633. source: "./media/characters/kodran/side.svg",
  30634. extra: 553 / 480,
  30635. bottom: 33 / 586
  30636. }
  30637. },
  30638. front: {
  30639. height: math.unit(132, "feet"),
  30640. weight: math.unit(500, "tonnes"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/kodran/front.svg",
  30644. extra: 667 / 643,
  30645. bottom: 42 / 709
  30646. }
  30647. },
  30648. flying: {
  30649. height: math.unit(350, "feet"),
  30650. weight: math.unit(500, "tonnes"),
  30651. name: "Flying",
  30652. image: {
  30653. source: "./media/characters/kodran/flying.svg"
  30654. }
  30655. },
  30656. foot: {
  30657. height: math.unit(33, "feet"),
  30658. name: "Foot",
  30659. image: {
  30660. source: "./media/characters/kodran/foot.svg"
  30661. }
  30662. },
  30663. footFront: {
  30664. height: math.unit(19, "feet"),
  30665. name: "Foot (Front)",
  30666. image: {
  30667. source: "./media/characters/kodran/foot-front.svg",
  30668. extra: 261 / 261,
  30669. bottom: 91 / 352
  30670. }
  30671. },
  30672. headFront: {
  30673. height: math.unit(53, "feet"),
  30674. name: "Head (Front)",
  30675. image: {
  30676. source: "./media/characters/kodran/head-front.svg"
  30677. }
  30678. },
  30679. headSide: {
  30680. height: math.unit(65, "feet"),
  30681. name: "Head (Side)",
  30682. image: {
  30683. source: "./media/characters/kodran/head-side.svg"
  30684. }
  30685. },
  30686. throat: {
  30687. height: math.unit(79, "feet"),
  30688. name: "Throat",
  30689. image: {
  30690. source: "./media/characters/kodran/throat.svg"
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Large",
  30697. height: math.unit(106, "feet"),
  30698. default: true
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30704. {
  30705. side: {
  30706. height: math.unit(11, "feet"),
  30707. weight: math.unit(150, "lb"),
  30708. name: "Side",
  30709. image: {
  30710. source: "./media/characters/pyxaron/side.svg",
  30711. extra: 305 / 195,
  30712. bottom: 17 / 322
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(11, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(150, "lb"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/meep/front.svg",
  30733. extra: 88 / 80,
  30734. bottom: 6 / 94
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Fun Sized",
  30741. height: math.unit(2, "inches"),
  30742. default: true
  30743. },
  30744. {
  30745. name: "Friend Sized",
  30746. height: math.unit(8, "inches")
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(15, "feet"),
  30755. weight: math.unit(2500, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/holly-rabbit/front.svg",
  30759. extra: 1433 / 1233,
  30760. bottom: 125 / 1558
  30761. }
  30762. },
  30763. dick: {
  30764. height: math.unit(4.6, "feet"),
  30765. name: "Dick",
  30766. image: {
  30767. source: "./media/characters/holly-rabbit/dick.svg"
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Normal",
  30774. height: math.unit(15, "feet"),
  30775. default: true
  30776. },
  30777. {
  30778. name: "Macro",
  30779. height: math.unit(250, "feet")
  30780. },
  30781. {
  30782. name: "Macro+",
  30783. height: math.unit(2500, "feet")
  30784. },
  30785. ]
  30786. ))
  30787. characterMakers.push(() => makeCharacter(
  30788. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30789. {
  30790. front: {
  30791. height: math.unit(3.02, "meters"),
  30792. weight: math.unit(500, "kg"),
  30793. name: "Front",
  30794. image: {
  30795. source: "./media/characters/drena/front.svg",
  30796. extra: 282 / 243,
  30797. bottom: 8 / 290
  30798. }
  30799. },
  30800. side: {
  30801. height: math.unit(3.02, "meters"),
  30802. weight: math.unit(500, "kg"),
  30803. name: "Side",
  30804. image: {
  30805. source: "./media/characters/drena/side.svg",
  30806. extra: 280 / 245,
  30807. bottom: 10 / 290
  30808. }
  30809. },
  30810. back: {
  30811. height: math.unit(3.02, "meters"),
  30812. weight: math.unit(500, "kg"),
  30813. name: "Back",
  30814. image: {
  30815. source: "./media/characters/drena/back.svg",
  30816. extra: 278 / 243,
  30817. bottom: 2 / 280
  30818. }
  30819. },
  30820. foot: {
  30821. height: math.unit(0.75, "meters"),
  30822. name: "Foot",
  30823. image: {
  30824. source: "./media/characters/drena/foot.svg"
  30825. }
  30826. },
  30827. maw: {
  30828. height: math.unit(0.82, "meters"),
  30829. name: "Maw",
  30830. image: {
  30831. source: "./media/characters/drena/maw.svg"
  30832. }
  30833. },
  30834. eating: {
  30835. height: math.unit(0.75, "meters"),
  30836. name: "Eating",
  30837. image: {
  30838. source: "./media/characters/drena/eating.svg"
  30839. }
  30840. },
  30841. rump: {
  30842. height: math.unit(0.93, "meters"),
  30843. name: "Rump",
  30844. image: {
  30845. source: "./media/characters/drena/rump.svg"
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Normal",
  30852. height: math.unit(3.02, "meters"),
  30853. default: true
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30859. {
  30860. front: {
  30861. height: math.unit(6 + 4 / 12, "feet"),
  30862. weight: math.unit(250, "lb"),
  30863. name: "Front",
  30864. image: {
  30865. source: "./media/characters/remmyzilla/front.svg",
  30866. extra: 4033 / 3588,
  30867. bottom: 123 / 4156
  30868. }
  30869. },
  30870. back: {
  30871. height: math.unit(6 + 4 / 12, "feet"),
  30872. weight: math.unit(250, "lb"),
  30873. name: "Back",
  30874. image: {
  30875. source: "./media/characters/remmyzilla/back.svg",
  30876. extra: 2687 / 2555,
  30877. bottom: 48 / 2735
  30878. }
  30879. },
  30880. paw: {
  30881. height: math.unit(1.73, "feet"),
  30882. name: "Paw",
  30883. image: {
  30884. source: "./media/characters/remmyzilla/paw.svg"
  30885. },
  30886. extraAttributes: {
  30887. "toeSize": {
  30888. name: "Toe Size",
  30889. power: 2,
  30890. type: "area",
  30891. base: math.unit(0.0035, "m^2")
  30892. },
  30893. "padSize": {
  30894. name: "Pad Size",
  30895. power: 2,
  30896. type: "area",
  30897. base: math.unit(0.015, "m^2")
  30898. },
  30899. "pawsize": {
  30900. name: "Paw Size",
  30901. power: 2,
  30902. type: "area",
  30903. base: math.unit(0.072, "m^2")
  30904. },
  30905. }
  30906. },
  30907. maw: {
  30908. height: math.unit(1.73, "feet"),
  30909. name: "Maw",
  30910. image: {
  30911. source: "./media/characters/remmyzilla/maw.svg"
  30912. }
  30913. },
  30914. },
  30915. [
  30916. {
  30917. name: "Normal",
  30918. height: math.unit(6 + 4 / 12, "feet")
  30919. },
  30920. {
  30921. name: "Minimacro",
  30922. height: math.unit(12 + 8 / 12, "feet")
  30923. },
  30924. {
  30925. name: "Normal",
  30926. height: math.unit(640, "feet"),
  30927. default: true
  30928. },
  30929. {
  30930. name: "Megamacro",
  30931. height: math.unit(6400, "feet")
  30932. },
  30933. {
  30934. name: "Gigamacro",
  30935. height: math.unit(64000, "miles")
  30936. },
  30937. ]
  30938. ))
  30939. characterMakers.push(() => makeCharacter(
  30940. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30941. {
  30942. front: {
  30943. height: math.unit(2.5, "meters"),
  30944. weight: math.unit(300, "lb"),
  30945. name: "Front",
  30946. image: {
  30947. source: "./media/characters/lawrence/front.svg",
  30948. extra: 357 / 335,
  30949. bottom: 30 / 387
  30950. }
  30951. },
  30952. back: {
  30953. height: math.unit(2.5, "meters"),
  30954. weight: math.unit(300, "lb"),
  30955. name: "Back",
  30956. image: {
  30957. source: "./media/characters/lawrence/back.svg",
  30958. extra: 357 / 338,
  30959. bottom: 16 / 373
  30960. }
  30961. },
  30962. head: {
  30963. height: math.unit(0.9, "meter"),
  30964. name: "Head",
  30965. image: {
  30966. source: "./media/characters/lawrence/head.svg"
  30967. }
  30968. },
  30969. maw: {
  30970. height: math.unit(0.7, "meter"),
  30971. name: "Maw",
  30972. image: {
  30973. source: "./media/characters/lawrence/maw.svg"
  30974. }
  30975. },
  30976. footBottom: {
  30977. height: math.unit(0.5, "meter"),
  30978. name: "Foot (Bottom)",
  30979. image: {
  30980. source: "./media/characters/lawrence/foot-bottom.svg"
  30981. }
  30982. },
  30983. footTop: {
  30984. height: math.unit(0.5, "meter"),
  30985. name: "Foot (Top)",
  30986. image: {
  30987. source: "./media/characters/lawrence/foot-top.svg"
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(2.5, "meters"),
  30995. default: true
  30996. },
  30997. {
  30998. name: "Macro",
  30999. height: math.unit(95, "meters")
  31000. },
  31001. {
  31002. name: "Megamacro",
  31003. height: math.unit(150, "km")
  31004. },
  31005. ]
  31006. ))
  31007. characterMakers.push(() => makeCharacter(
  31008. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31009. {
  31010. front: {
  31011. height: math.unit(4.2, "meters"),
  31012. preyCapacity: math.unit(50, "m^3"),
  31013. weight: math.unit(30, "tonnes"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/sydney/front.svg",
  31017. extra: 1177/1129,
  31018. bottom: 197/1374
  31019. },
  31020. extraAttributes: {
  31021. "length": {
  31022. name: "Length",
  31023. power: 1,
  31024. type: "length",
  31025. base: math.unit(21, "meters")
  31026. },
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(4.2, "meters"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31040. {
  31041. back: {
  31042. height: math.unit(201, "feet"),
  31043. name: "Back",
  31044. image: {
  31045. source: "./media/characters/jessica/back.svg",
  31046. extra: 273 / 259,
  31047. bottom: 7 / 280
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Normal",
  31054. height: math.unit(201, "feet"),
  31055. default: true
  31056. },
  31057. {
  31058. name: "Megamacro",
  31059. height: math.unit(8, "miles")
  31060. },
  31061. ]
  31062. ))
  31063. characterMakers.push(() => makeCharacter(
  31064. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31065. {
  31066. side: {
  31067. height: math.unit(5.6, "m"),
  31068. weight: math.unit(8000, "kg"),
  31069. name: "Side",
  31070. image: {
  31071. source: "./media/characters/victoria/side.svg",
  31072. extra: 1542/1229,
  31073. bottom: 124/1666
  31074. }
  31075. },
  31076. maw: {
  31077. height: math.unit(7.14, "feet"),
  31078. name: "Maw",
  31079. image: {
  31080. source: "./media/characters/victoria/maw.svg"
  31081. }
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Normal",
  31087. height: math.unit(5.6, "m"),
  31088. default: true
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31094. {
  31095. front: {
  31096. height: math.unit(5 + 6 / 12, "feet"),
  31097. name: "Front",
  31098. image: {
  31099. source: "./media/characters/cat/front.svg",
  31100. extra: 1449/1295,
  31101. bottom: 34/1483
  31102. },
  31103. form: "cat",
  31104. default: true
  31105. },
  31106. back: {
  31107. height: math.unit(5 + 6 / 12, "feet"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/cat/back.svg",
  31111. extra: 1466/1301,
  31112. bottom: 19/1485
  31113. },
  31114. form: "cat"
  31115. },
  31116. taur: {
  31117. height: math.unit(7, "feet"),
  31118. name: "Taur",
  31119. image: {
  31120. source: "./media/characters/cat/taur.svg",
  31121. extra: 1389/1233,
  31122. bottom: 83/1472
  31123. },
  31124. form: "taur",
  31125. default: true
  31126. },
  31127. lucarioFront: {
  31128. height: math.unit(4, "feet"),
  31129. name: "Lucario (Front)",
  31130. image: {
  31131. source: "./media/characters/cat/lucario-front.svg",
  31132. extra: 1149/1019,
  31133. bottom: 84/1233
  31134. },
  31135. form: "lucario",
  31136. default: true
  31137. },
  31138. lucarioBack: {
  31139. height: math.unit(4, "feet"),
  31140. name: "Lucario (Back)",
  31141. image: {
  31142. source: "./media/characters/cat/lucario-back.svg",
  31143. extra: 1190/1059,
  31144. bottom: 33/1223
  31145. },
  31146. form: "lucario"
  31147. },
  31148. megaLucario: {
  31149. height: math.unit(4, "feet"),
  31150. name: "Mega Lucario",
  31151. image: {
  31152. source: "./media/characters/cat/mega-lucario.svg",
  31153. extra: 1515 / 1319,
  31154. bottom: 63 / 1578
  31155. },
  31156. form: "lucario"
  31157. },
  31158. nickit: {
  31159. height: math.unit(2, "feet"),
  31160. name: "Nickit",
  31161. image: {
  31162. source: "./media/characters/cat/nickit.svg",
  31163. extra: 1980 / 1585,
  31164. bottom: 102 / 2082
  31165. },
  31166. form: "nickit",
  31167. default: true
  31168. },
  31169. lopunnyFront: {
  31170. height: math.unit(5, "feet"),
  31171. name: "Lopunny (Front)",
  31172. image: {
  31173. source: "./media/characters/cat/lopunny-front.svg",
  31174. extra: 1782 / 1469,
  31175. bottom: 38 / 1820
  31176. },
  31177. form: "lopunny",
  31178. default: true
  31179. },
  31180. lopunnyBack: {
  31181. height: math.unit(5, "feet"),
  31182. name: "Lopunny (Back)",
  31183. image: {
  31184. source: "./media/characters/cat/lopunny-back.svg",
  31185. extra: 1660 / 1490,
  31186. bottom: 25 / 1685
  31187. },
  31188. form: "lopunny"
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Really small",
  31194. height: math.unit(1, "nm")
  31195. },
  31196. {
  31197. name: "Micro",
  31198. height: math.unit(5, "inches")
  31199. },
  31200. {
  31201. name: "Normal",
  31202. height: math.unit(5 + 6 / 12, "feet"),
  31203. default: true
  31204. },
  31205. {
  31206. name: "Macro",
  31207. height: math.unit(50, "feet")
  31208. },
  31209. {
  31210. name: "Macro+",
  31211. height: math.unit(150, "feet")
  31212. },
  31213. {
  31214. name: "Megamacro",
  31215. height: math.unit(100, "miles")
  31216. },
  31217. ]
  31218. ))
  31219. characterMakers.push(() => makeCharacter(
  31220. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31221. {
  31222. front: {
  31223. height: math.unit(63.4, "meters"),
  31224. weight: math.unit(3.28349e+6, "kilograms"),
  31225. name: "Front",
  31226. image: {
  31227. source: "./media/characters/kirina-violet/front.svg",
  31228. extra: 2812 / 2725,
  31229. bottom: 0 / 2812
  31230. }
  31231. },
  31232. back: {
  31233. height: math.unit(63.4, "meters"),
  31234. weight: math.unit(3.28349e+6, "kilograms"),
  31235. name: "Back",
  31236. image: {
  31237. source: "./media/characters/kirina-violet/back.svg",
  31238. extra: 2812 / 2725,
  31239. bottom: 0 / 2812
  31240. }
  31241. },
  31242. mouth: {
  31243. height: math.unit(4.35, "meters"),
  31244. name: "Mouth",
  31245. image: {
  31246. source: "./media/characters/kirina-violet/mouth.svg"
  31247. }
  31248. },
  31249. paw: {
  31250. height: math.unit(5.6, "meters"),
  31251. name: "Paw",
  31252. image: {
  31253. source: "./media/characters/kirina-violet/paw.svg"
  31254. }
  31255. },
  31256. tail: {
  31257. height: math.unit(18, "meters"),
  31258. name: "Tail",
  31259. image: {
  31260. source: "./media/characters/kirina-violet/tail.svg"
  31261. }
  31262. },
  31263. },
  31264. [
  31265. {
  31266. name: "Macro",
  31267. height: math.unit(63.4, "meters"),
  31268. default: true
  31269. },
  31270. ]
  31271. ))
  31272. characterMakers.push(() => makeCharacter(
  31273. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31274. {
  31275. front: {
  31276. height: math.unit(75, "feet"),
  31277. name: "Front",
  31278. image: {
  31279. source: "./media/characters/cat-gigachu/front.svg",
  31280. extra: 1239/1027,
  31281. bottom: 32/1271
  31282. }
  31283. },
  31284. back: {
  31285. height: math.unit(75, "feet"),
  31286. name: "Back",
  31287. image: {
  31288. source: "./media/characters/cat-gigachu/back.svg",
  31289. extra: 1229/1030,
  31290. bottom: 9/1238
  31291. }
  31292. },
  31293. },
  31294. [
  31295. {
  31296. name: "Dynamax",
  31297. height: math.unit(75, "feet"),
  31298. default: true
  31299. },
  31300. ]
  31301. ))
  31302. characterMakers.push(() => makeCharacter(
  31303. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31304. {
  31305. front: {
  31306. height: math.unit(6, "feet"),
  31307. weight: math.unit(150, "lb"),
  31308. name: "Front",
  31309. image: {
  31310. source: "./media/characters/sfaiyan/front.svg",
  31311. extra: 999 / 978,
  31312. bottom: 5 / 1004
  31313. }
  31314. },
  31315. },
  31316. [
  31317. {
  31318. name: "Normal",
  31319. height: math.unit(1.82, "meters")
  31320. },
  31321. {
  31322. name: "Giant",
  31323. height: math.unit(2.27, "km"),
  31324. default: true
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(179, "cm"),
  31333. weight: math.unit(100, "kg"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/raunehkeli/front.svg",
  31337. extra: 1934 / 1926,
  31338. bottom: 0 / 1934
  31339. }
  31340. },
  31341. },
  31342. [
  31343. {
  31344. name: "Normal",
  31345. height: math.unit(179, "cm")
  31346. },
  31347. {
  31348. name: "Maximum",
  31349. height: math.unit(575, "meters"),
  31350. default: true
  31351. },
  31352. ]
  31353. ))
  31354. characterMakers.push(() => makeCharacter(
  31355. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31356. {
  31357. front: {
  31358. height: math.unit(6, "feet"),
  31359. weight: math.unit(150, "lb"),
  31360. name: "Front",
  31361. image: {
  31362. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31363. extra: 2625 / 2518,
  31364. bottom: 60 / 2685
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Normal",
  31371. height: math.unit(6 + 2 / 12, "feet")
  31372. },
  31373. {
  31374. name: "Macro",
  31375. height: math.unit(1180, "feet"),
  31376. default: true
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31382. {
  31383. front: {
  31384. height: math.unit(5 + 6 / 12, "feet"),
  31385. weight: math.unit(108, "lb"),
  31386. name: "Front",
  31387. image: {
  31388. source: "./media/characters/lilith-zott/front.svg",
  31389. extra: 2510 / 2238,
  31390. bottom: 100 / 2610
  31391. }
  31392. },
  31393. frontDressed: {
  31394. height: math.unit(5 + 6 / 12, "feet"),
  31395. weight: math.unit(108, "lb"),
  31396. name: "Front (Dressed)",
  31397. image: {
  31398. source: "./media/characters/lilith-zott/front-dressed.svg",
  31399. extra: 2510 / 2238,
  31400. bottom: 100 / 2610
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Normal",
  31407. height: math.unit(5 + 6 / 12, "feet")
  31408. },
  31409. {
  31410. name: "Macro",
  31411. height: math.unit(1030, "feet"),
  31412. default: true
  31413. },
  31414. ]
  31415. ))
  31416. characterMakers.push(() => makeCharacter(
  31417. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31418. {
  31419. front: {
  31420. height: math.unit(6, "feet"),
  31421. weight: math.unit(150, "lb"),
  31422. name: "Front",
  31423. image: {
  31424. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31425. extra: 2567 / 2435,
  31426. bottom: 39 / 2606
  31427. }
  31428. },
  31429. frontSuper: {
  31430. height: math.unit(6, "feet"),
  31431. name: "Front (Super)",
  31432. image: {
  31433. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31434. extra: 2567 / 2435,
  31435. bottom: 39 / 2606
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(5 + 10 / 12, "feet")
  31443. },
  31444. {
  31445. name: "Macro",
  31446. height: math.unit(1100, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(100, "miles"),
  31456. name: "Front",
  31457. image: {
  31458. source: "./media/characters/sona/front.svg",
  31459. extra: 2433 / 2201,
  31460. bottom: 53 / 2486
  31461. }
  31462. },
  31463. foot: {
  31464. height: math.unit(16.1, "miles"),
  31465. name: "Foot",
  31466. image: {
  31467. source: "./media/characters/sona/foot.svg"
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Macro",
  31474. height: math.unit(100, "miles"),
  31475. default: true
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31481. {
  31482. front: {
  31483. height: math.unit(6, "feet"),
  31484. weight: math.unit(150, "lb"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/bailey/front.svg",
  31488. extra: 1778 / 1724,
  31489. bottom: 30 / 1808
  31490. }
  31491. },
  31492. },
  31493. [
  31494. {
  31495. name: "Micro",
  31496. height: math.unit(4, "inches")
  31497. },
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(5 + 5 / 12, "feet"),
  31501. default: true
  31502. },
  31503. {
  31504. name: "Macro",
  31505. height: math.unit(250, "feet")
  31506. },
  31507. {
  31508. name: "Megamacro",
  31509. height: math.unit(100, "miles")
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(5 + 2 / 12, "feet"),
  31518. weight: math.unit(120, "lb"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/snaps/front.svg",
  31522. extra: 2370 / 2177,
  31523. bottom: 48 / 2418
  31524. }
  31525. },
  31526. back: {
  31527. height: math.unit(5 + 2 / 12, "feet"),
  31528. weight: math.unit(120, "lb"),
  31529. name: "Back",
  31530. image: {
  31531. source: "./media/characters/snaps/back.svg",
  31532. extra: 2408 / 2258,
  31533. bottom: 15 / 2423
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Micro",
  31540. height: math.unit(9, "inches")
  31541. },
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(5 + 2 / 12, "feet"),
  31545. default: true
  31546. },
  31547. {
  31548. name: "Mini Macro",
  31549. height: math.unit(10, "feet")
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(1.8, "meters"),
  31558. weight: math.unit(85, "kg"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/azteck/front.svg",
  31562. extra: 2815 / 2625,
  31563. bottom: 89 / 2904
  31564. }
  31565. },
  31566. back: {
  31567. height: math.unit(1.8, "meters"),
  31568. weight: math.unit(85, "kg"),
  31569. name: "Back",
  31570. image: {
  31571. source: "./media/characters/azteck/back.svg",
  31572. extra: 2856 / 2648,
  31573. bottom: 85 / 2941
  31574. }
  31575. },
  31576. frontDressed: {
  31577. height: math.unit(1.8, "meters"),
  31578. weight: math.unit(85, "kg"),
  31579. name: "Front (Dressed)",
  31580. image: {
  31581. source: "./media/characters/azteck/front-dressed.svg",
  31582. extra: 2147 / 2003,
  31583. bottom: 68 / 2215
  31584. }
  31585. },
  31586. head: {
  31587. height: math.unit(0.47, "meters"),
  31588. weight: math.unit(85, "kg"),
  31589. name: "Head",
  31590. image: {
  31591. source: "./media/characters/azteck/head.svg"
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Bite sized",
  31598. height: math.unit(16, "cm")
  31599. },
  31600. {
  31601. name: "Normal",
  31602. height: math.unit(1.8, "meters"),
  31603. default: true
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(6, "feet"),
  31612. weight: math.unit(150, "lb"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/pidge/front.svg",
  31616. extra: 1936/1820,
  31617. bottom: 0/1936
  31618. }
  31619. },
  31620. back: {
  31621. height: math.unit(6, "feet"),
  31622. weight: math.unit(150, "lb"),
  31623. name: "Back",
  31624. image: {
  31625. source: "./media/characters/pidge/back.svg",
  31626. extra: 1938/1843,
  31627. bottom: 0/1938
  31628. }
  31629. },
  31630. casual: {
  31631. height: math.unit(6, "feet"),
  31632. weight: math.unit(150, "lb"),
  31633. name: "Casual",
  31634. image: {
  31635. source: "./media/characters/pidge/casual.svg",
  31636. extra: 1936/1820,
  31637. bottom: 0/1936
  31638. }
  31639. },
  31640. tech: {
  31641. height: math.unit(6, "feet"),
  31642. weight: math.unit(150, "lb"),
  31643. name: "Tech",
  31644. image: {
  31645. source: "./media/characters/pidge/tech.svg",
  31646. extra: 1802/1682,
  31647. bottom: 0/1802
  31648. }
  31649. },
  31650. head: {
  31651. height: math.unit(1.61, "feet"),
  31652. name: "Head",
  31653. image: {
  31654. source: "./media/characters/pidge/head.svg"
  31655. }
  31656. },
  31657. collar: {
  31658. height: math.unit(0.82, "feet"),
  31659. name: "Collar",
  31660. image: {
  31661. source: "./media/characters/pidge/collar.svg"
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Macro",
  31668. height: math.unit(2, "mile"),
  31669. default: true
  31670. },
  31671. {
  31672. name: "PUPPY",
  31673. height: math.unit(20, "miles")
  31674. },
  31675. ]
  31676. ))
  31677. characterMakers.push(() => makeCharacter(
  31678. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31679. {
  31680. front: {
  31681. height: math.unit(6, "feet"),
  31682. weight: math.unit(150, "lb"),
  31683. name: "Front",
  31684. image: {
  31685. source: "./media/characters/en/front.svg",
  31686. extra: 1697 / 1563,
  31687. bottom: 103 / 1800
  31688. }
  31689. },
  31690. back: {
  31691. height: math.unit(6, "feet"),
  31692. weight: math.unit(150, "lb"),
  31693. name: "Back",
  31694. image: {
  31695. source: "./media/characters/en/back.svg",
  31696. extra: 1700 / 1570,
  31697. bottom: 51 / 1751
  31698. }
  31699. },
  31700. frontDressed: {
  31701. height: math.unit(6, "feet"),
  31702. weight: math.unit(150, "lb"),
  31703. name: "Front (Dressed)",
  31704. image: {
  31705. source: "./media/characters/en/front-dressed.svg",
  31706. extra: 1697 / 1563,
  31707. bottom: 103 / 1800
  31708. }
  31709. },
  31710. backDressed: {
  31711. height: math.unit(6, "feet"),
  31712. weight: math.unit(150, "lb"),
  31713. name: "Back (Dressed)",
  31714. image: {
  31715. source: "./media/characters/en/back-dressed.svg",
  31716. extra: 1700 / 1570,
  31717. bottom: 51 / 1751
  31718. }
  31719. },
  31720. },
  31721. [
  31722. {
  31723. name: "Macro",
  31724. height: math.unit(210, "feet"),
  31725. default: true
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(6, "feet"),
  31734. weight: math.unit(150, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/haze-orris/front.svg",
  31738. extra: 3975 / 3525,
  31739. bottom: 137 / 4112
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Micro",
  31746. height: math.unit(150, "mm"),
  31747. default: true
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(6, "feet"),
  31756. weight: math.unit(150, "lb"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/casselene-yaro/front.svg",
  31760. extra: 4721 / 4541,
  31761. bottom: 82 / 4803
  31762. }
  31763. },
  31764. back: {
  31765. height: math.unit(6, "feet"),
  31766. weight: math.unit(150, "lb"),
  31767. name: "Back",
  31768. image: {
  31769. source: "./media/characters/casselene-yaro/back.svg",
  31770. extra: 4569 / 4377,
  31771. bottom: 69 / 4638
  31772. }
  31773. },
  31774. dressed: {
  31775. height: math.unit(6, "feet"),
  31776. weight: math.unit(150, "lb"),
  31777. name: "Dressed",
  31778. image: {
  31779. source: "./media/characters/casselene-yaro/dressed.svg",
  31780. extra: 4721 / 4541,
  31781. bottom: 82 / 4803
  31782. }
  31783. },
  31784. maw: {
  31785. height: math.unit(1, "feet"),
  31786. name: "Maw",
  31787. image: {
  31788. source: "./media/characters/casselene-yaro/maw.svg"
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Macro",
  31795. height: math.unit(190, "feet"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(10, "feet"),
  31805. weight: math.unit(15015, "lb"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/platine/front.svg",
  31809. extra: 1741/1650,
  31810. bottom: 84/1825
  31811. }
  31812. },
  31813. side: {
  31814. height: math.unit(10, "feet"),
  31815. weight: math.unit(15015, "lb"),
  31816. name: "Side",
  31817. image: {
  31818. source: "./media/characters/platine/side.svg",
  31819. extra: 1790/1705,
  31820. bottom: 29/1819
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Normal",
  31827. height: math.unit(10, "feet"),
  31828. default: true
  31829. },
  31830. {
  31831. name: "Macro",
  31832. height: math.unit(100, "feet")
  31833. },
  31834. {
  31835. name: "Megamacro",
  31836. height: math.unit(1000, "feet")
  31837. },
  31838. ]
  31839. ))
  31840. characterMakers.push(() => makeCharacter(
  31841. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31842. {
  31843. front: {
  31844. height: math.unit(15 + 5 / 12, "feet"),
  31845. weight: math.unit(4600, "lb"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/neapolitan-ananassa/front.svg",
  31849. extra: 2903 / 2736,
  31850. bottom: 0 / 2903
  31851. }
  31852. },
  31853. side: {
  31854. height: math.unit(15 + 5 / 12, "feet"),
  31855. weight: math.unit(4600, "lb"),
  31856. name: "Side",
  31857. image: {
  31858. source: "./media/characters/neapolitan-ananassa/side.svg",
  31859. extra: 2925 / 2719,
  31860. bottom: 0 / 2925
  31861. }
  31862. },
  31863. back: {
  31864. height: math.unit(15 + 5 / 12, "feet"),
  31865. weight: math.unit(4600, "lb"),
  31866. name: "Back",
  31867. image: {
  31868. source: "./media/characters/neapolitan-ananassa/back.svg",
  31869. extra: 2903 / 2736,
  31870. bottom: 0 / 2903
  31871. }
  31872. },
  31873. },
  31874. [
  31875. {
  31876. name: "Normal",
  31877. height: math.unit(15 + 5 / 12, "feet"),
  31878. default: true
  31879. },
  31880. {
  31881. name: "Post-Millenium",
  31882. height: math.unit(35 + 5 / 12, "feet")
  31883. },
  31884. {
  31885. name: "Post-Era",
  31886. height: math.unit(450 + 5 / 12, "feet")
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(300, "meters"),
  31895. weight: math.unit(125000, "tonnes"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/pazuzu/front.svg",
  31899. extra: 877 / 794,
  31900. bottom: 47 / 924
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Macro",
  31907. height: math.unit(300, "meters"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31914. {
  31915. side: {
  31916. height: math.unit(10 + 7 / 12, "feet"),
  31917. weight: math.unit(2.5, "tons"),
  31918. name: "Side",
  31919. image: {
  31920. source: "./media/characters/aasha/side.svg",
  31921. extra: 1345 / 1245,
  31922. bottom: 111 / 1456
  31923. }
  31924. },
  31925. back: {
  31926. height: math.unit(10 + 7 / 12, "feet"),
  31927. weight: math.unit(2.5, "tons"),
  31928. name: "Back",
  31929. image: {
  31930. source: "./media/characters/aasha/back.svg",
  31931. extra: 1133 / 1057,
  31932. bottom: 257 / 1390
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(10 + 7 / 12, "feet"),
  31940. default: true
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(6 + 3 / 12, "feet"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/nevan/front.svg",
  31952. extra: 704 / 704,
  31953. bottom: 28 / 732
  31954. }
  31955. },
  31956. back: {
  31957. height: math.unit(6 + 3 / 12, "feet"),
  31958. name: "Back",
  31959. image: {
  31960. source: "./media/characters/nevan/back.svg",
  31961. extra: 714 / 714,
  31962. bottom: 21 / 735
  31963. }
  31964. },
  31965. frontFlaccid: {
  31966. height: math.unit(6 + 3 / 12, "feet"),
  31967. name: "Front (Flaccid)",
  31968. image: {
  31969. source: "./media/characters/nevan/front-flaccid.svg",
  31970. extra: 704 / 704,
  31971. bottom: 28 / 732
  31972. }
  31973. },
  31974. frontErect: {
  31975. height: math.unit(6 + 3 / 12, "feet"),
  31976. name: "Front (Erect)",
  31977. image: {
  31978. source: "./media/characters/nevan/front-erect.svg",
  31979. extra: 704 / 704,
  31980. bottom: 28 / 732
  31981. }
  31982. },
  31983. backFlaccid: {
  31984. height: math.unit(6 + 3 / 12, "feet"),
  31985. name: "Back (Flaccid)",
  31986. image: {
  31987. source: "./media/characters/nevan/back-flaccid.svg",
  31988. extra: 714 / 714,
  31989. bottom: 21 / 735
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Normal",
  31996. height: math.unit(6 + 3 / 12, "feet"),
  31997. default: true
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32003. {
  32004. front: {
  32005. height: math.unit(4, "feet"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/arhan/front.svg",
  32009. extra: 3368 / 3133,
  32010. bottom: 0 / 3368
  32011. }
  32012. },
  32013. side: {
  32014. height: math.unit(4, "feet"),
  32015. name: "Side",
  32016. image: {
  32017. source: "./media/characters/arhan/side.svg",
  32018. extra: 3347 / 3105,
  32019. bottom: 0 / 3347
  32020. }
  32021. },
  32022. tongue: {
  32023. height: math.unit(1.42, "feet"),
  32024. name: "Tongue",
  32025. image: {
  32026. source: "./media/characters/arhan/tongue.svg"
  32027. }
  32028. },
  32029. head: {
  32030. height: math.unit(0.85, "feet"),
  32031. name: "Head",
  32032. image: {
  32033. source: "./media/characters/arhan/head.svg"
  32034. }
  32035. },
  32036. },
  32037. [
  32038. {
  32039. name: "Normal",
  32040. height: math.unit(4, "feet"),
  32041. default: true
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32047. {
  32048. front: {
  32049. height: math.unit(5 + 7.5 / 12, "feet"),
  32050. weight: math.unit(120, "lb"),
  32051. name: "Front",
  32052. image: {
  32053. source: "./media/characters/digi-duncan/front.svg",
  32054. extra: 330 / 326,
  32055. bottom: 16 / 346
  32056. }
  32057. },
  32058. side: {
  32059. height: math.unit(5 + 7.5 / 12, "feet"),
  32060. weight: math.unit(120, "lb"),
  32061. name: "Side",
  32062. image: {
  32063. source: "./media/characters/digi-duncan/side.svg",
  32064. extra: 341 / 337,
  32065. bottom: 1 / 342
  32066. }
  32067. },
  32068. back: {
  32069. height: math.unit(5 + 7.5 / 12, "feet"),
  32070. weight: math.unit(120, "lb"),
  32071. name: "Back",
  32072. image: {
  32073. source: "./media/characters/digi-duncan/back.svg",
  32074. extra: 330 / 326,
  32075. bottom: 12 / 342
  32076. }
  32077. },
  32078. },
  32079. [
  32080. {
  32081. name: "Speck",
  32082. height: math.unit(0.25, "mm")
  32083. },
  32084. {
  32085. name: "Micro",
  32086. height: math.unit(5, "mm")
  32087. },
  32088. {
  32089. name: "Tiny",
  32090. height: math.unit(0.5, "inches"),
  32091. default: true
  32092. },
  32093. {
  32094. name: "Human",
  32095. height: math.unit(5 + 7.5 / 12, "feet")
  32096. },
  32097. {
  32098. name: "Minigiant",
  32099. height: math.unit(8 + 5.25, "feet")
  32100. },
  32101. {
  32102. name: "Giant",
  32103. height: math.unit(2000, "feet")
  32104. },
  32105. {
  32106. name: "Mega",
  32107. height: math.unit(371.1, "miles")
  32108. },
  32109. ]
  32110. ))
  32111. characterMakers.push(() => makeCharacter(
  32112. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32113. {
  32114. front: {
  32115. height: math.unit(2, "meters"),
  32116. weight: math.unit(350, "kg"),
  32117. name: "Front",
  32118. image: {
  32119. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32120. extra: 898 / 838,
  32121. bottom: 9 / 907
  32122. }
  32123. },
  32124. },
  32125. [
  32126. {
  32127. name: "Micro",
  32128. height: math.unit(8, "meters")
  32129. },
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(50, "meters"),
  32133. default: true
  32134. },
  32135. {
  32136. name: "Macro",
  32137. height: math.unit(500, "meters")
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(6 + 6 / 12, "feet"),
  32146. name: "Front",
  32147. image: {
  32148. source: "./media/characters/khardesh/front.svg",
  32149. extra: 1788/1596,
  32150. bottom: 66/1854
  32151. }
  32152. },
  32153. back: {
  32154. height: math.unit(6 + 6 / 12, "feet"),
  32155. name: "Back",
  32156. image: {
  32157. source: "./media/characters/khardesh/back.svg",
  32158. extra: 1781/1584,
  32159. bottom: 68/1849
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(6 + 6 / 12, "feet"),
  32167. default: true
  32168. },
  32169. {
  32170. name: "Normal+",
  32171. height: math.unit(4, "meters")
  32172. },
  32173. {
  32174. name: "Macro",
  32175. height: math.unit(50, "meters")
  32176. },
  32177. {
  32178. name: "Macro+",
  32179. height: math.unit(100, "meters")
  32180. },
  32181. {
  32182. name: "Megamacro",
  32183. height: math.unit(20, "km")
  32184. },
  32185. ]
  32186. ))
  32187. characterMakers.push(() => makeCharacter(
  32188. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32189. {
  32190. front: {
  32191. height: math.unit(6, "feet"),
  32192. weight: math.unit(150, "lb"),
  32193. name: "Front",
  32194. image: {
  32195. source: "./media/characters/kosho/front.svg",
  32196. extra: 1847 / 1847,
  32197. bottom: 86 / 1933
  32198. }
  32199. },
  32200. },
  32201. [
  32202. {
  32203. name: "Second-stage micro",
  32204. height: math.unit(0.5, "inches")
  32205. },
  32206. {
  32207. name: "First-stage micro",
  32208. height: math.unit(6, "inches")
  32209. },
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(6, "feet"),
  32213. default: true
  32214. },
  32215. {
  32216. name: "First-stage macro",
  32217. height: math.unit(72, "feet")
  32218. },
  32219. {
  32220. name: "Second-stage macro",
  32221. height: math.unit(864, "feet")
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32227. {
  32228. normal: {
  32229. height: math.unit(4 + 6 / 12, "feet"),
  32230. name: "Normal",
  32231. image: {
  32232. source: "./media/characters/hydra/normal.svg",
  32233. extra: 2833 / 2634,
  32234. bottom: 68 / 2901
  32235. }
  32236. },
  32237. smol: {
  32238. height: math.unit(0.705, "inches"),
  32239. name: "Smol",
  32240. image: {
  32241. source: "./media/characters/hydra/smol.svg",
  32242. extra: 2715 / 2540,
  32243. bottom: 0 / 2715
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(4 + 6 / 12, "feet"),
  32251. default: true
  32252. }
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32257. {
  32258. front: {
  32259. height: math.unit(0.6, "cm"),
  32260. name: "Front",
  32261. image: {
  32262. source: "./media/characters/daz/front.svg",
  32263. extra: 1682 / 1164,
  32264. bottom: 42 / 1724
  32265. }
  32266. },
  32267. },
  32268. [
  32269. {
  32270. name: "Normal",
  32271. height: math.unit(0.6, "cm"),
  32272. default: true
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32278. {
  32279. front: {
  32280. height: math.unit(6, "feet"),
  32281. weight: math.unit(235, "lb"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/theo-pangolin/front.svg",
  32285. extra: 1996 / 1969,
  32286. bottom: 115 / 2111
  32287. }
  32288. },
  32289. back: {
  32290. height: math.unit(6, "feet"),
  32291. weight: math.unit(235, "lb"),
  32292. name: "Back",
  32293. image: {
  32294. source: "./media/characters/theo-pangolin/back.svg",
  32295. extra: 1979 / 1979,
  32296. bottom: 40 / 2019
  32297. }
  32298. },
  32299. feral: {
  32300. height: math.unit(2, "feet"),
  32301. weight: math.unit(30, "lb"),
  32302. name: "Feral",
  32303. image: {
  32304. source: "./media/characters/theo-pangolin/feral.svg",
  32305. extra: 803 / 791,
  32306. bottom: 181 / 984
  32307. }
  32308. },
  32309. footFive: {
  32310. height: math.unit(1.43, "feet"),
  32311. name: "Foot (Five Toes)",
  32312. image: {
  32313. source: "./media/characters/theo-pangolin/foot-five.svg"
  32314. }
  32315. },
  32316. footFour: {
  32317. height: math.unit(1.43, "feet"),
  32318. name: "Foot (Four Toes)",
  32319. image: {
  32320. source: "./media/characters/theo-pangolin/foot-four.svg"
  32321. }
  32322. },
  32323. handFour: {
  32324. height: math.unit(0.81, "feet"),
  32325. name: "Hand (Four Fingers)",
  32326. image: {
  32327. source: "./media/characters/theo-pangolin/hand-four.svg"
  32328. }
  32329. },
  32330. handThree: {
  32331. height: math.unit(0.81, "feet"),
  32332. name: "Hand (Three Fingers)",
  32333. image: {
  32334. source: "./media/characters/theo-pangolin/hand-three.svg"
  32335. }
  32336. },
  32337. headFront: {
  32338. height: math.unit(1.37, "feet"),
  32339. name: "Head (Front)",
  32340. image: {
  32341. source: "./media/characters/theo-pangolin/head-front.svg"
  32342. }
  32343. },
  32344. headSide: {
  32345. height: math.unit(1.43, "feet"),
  32346. name: "Head (Side)",
  32347. image: {
  32348. source: "./media/characters/theo-pangolin/head-side.svg"
  32349. }
  32350. },
  32351. tongue: {
  32352. height: math.unit(2.29, "feet"),
  32353. name: "Tongue",
  32354. image: {
  32355. source: "./media/characters/theo-pangolin/tongue.svg"
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(6, "feet")
  32363. },
  32364. {
  32365. name: "Macro",
  32366. height: math.unit(400, "feet"),
  32367. default: true
  32368. },
  32369. ]
  32370. ))
  32371. characterMakers.push(() => makeCharacter(
  32372. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32373. {
  32374. front: {
  32375. height: math.unit(6, "inches"),
  32376. weight: math.unit(0.036, "kg"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/renée/front.svg",
  32380. extra: 900 / 886,
  32381. bottom: 8 / 908
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Nano",
  32388. height: math.unit(1, "nm")
  32389. },
  32390. {
  32391. name: "Micro",
  32392. height: math.unit(1, "mm")
  32393. },
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(6, "inches")
  32397. },
  32398. {
  32399. name: "Macro",
  32400. height: math.unit(2000, "feet"),
  32401. default: true
  32402. },
  32403. {
  32404. name: "Megamacro",
  32405. height: math.unit(2, "km")
  32406. },
  32407. {
  32408. name: "Gigamacro",
  32409. height: math.unit(2000, "km")
  32410. },
  32411. {
  32412. name: "Teramacro",
  32413. height: math.unit(250000, "km")
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(4, "meters"),
  32422. weight: math.unit(150, "kg"),
  32423. name: "Front",
  32424. image: {
  32425. source: "./media/characters/caledvwlch/front.svg",
  32426. extra: 1757/1537,
  32427. bottom: 31/1788
  32428. }
  32429. },
  32430. side: {
  32431. height: math.unit(4, "meters"),
  32432. weight: math.unit(150, "kg"),
  32433. name: "Side",
  32434. image: {
  32435. source: "./media/characters/caledvwlch/side.svg",
  32436. extra: 1605 / 1536,
  32437. bottom: 31 / 1636
  32438. }
  32439. },
  32440. back: {
  32441. height: math.unit(4, "meters"),
  32442. weight: math.unit(150, "kg"),
  32443. name: "Back",
  32444. image: {
  32445. source: "./media/characters/caledvwlch/back.svg",
  32446. extra: 1635 / 1565,
  32447. bottom: 27 / 1662
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "\"Incognito\"",
  32454. height: math.unit(4, "meters")
  32455. },
  32456. {
  32457. name: "Small rampage",
  32458. height: math.unit(600, "meters")
  32459. },
  32460. {
  32461. name: "Mega",
  32462. height: math.unit(30, "km")
  32463. },
  32464. {
  32465. name: "Home-size",
  32466. height: math.unit(50, "km"),
  32467. default: true
  32468. },
  32469. {
  32470. name: "Giga",
  32471. height: math.unit(300, "km")
  32472. },
  32473. {
  32474. name: "Lounging",
  32475. height: math.unit(11000, "km")
  32476. },
  32477. {
  32478. name: "Planet snacking",
  32479. height: math.unit(2000000, "km")
  32480. },
  32481. ]
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32485. {
  32486. front: {
  32487. height: math.unit(6, "feet"),
  32488. weight: math.unit(215, "lb"),
  32489. name: "Front",
  32490. image: {
  32491. source: "./media/characters/sapphire-svell/front.svg",
  32492. extra: 495 / 455,
  32493. bottom: 20 / 515
  32494. }
  32495. },
  32496. back: {
  32497. height: math.unit(6, "feet"),
  32498. weight: math.unit(216, "lb"),
  32499. name: "Back",
  32500. image: {
  32501. source: "./media/characters/sapphire-svell/back.svg",
  32502. extra: 497 / 477,
  32503. bottom: 7 / 504
  32504. }
  32505. },
  32506. maw: {
  32507. height: math.unit(1.57, "feet"),
  32508. name: "Maw",
  32509. image: {
  32510. source: "./media/characters/sapphire-svell/maw.svg"
  32511. }
  32512. },
  32513. foot: {
  32514. height: math.unit(1.07, "feet"),
  32515. name: "Foot",
  32516. image: {
  32517. source: "./media/characters/sapphire-svell/foot.svg"
  32518. }
  32519. },
  32520. toering: {
  32521. height: math.unit(1.7, "inch"),
  32522. name: "Toering",
  32523. image: {
  32524. source: "./media/characters/sapphire-svell/toering.svg"
  32525. }
  32526. },
  32527. },
  32528. [
  32529. {
  32530. name: "Normal",
  32531. height: math.unit(300, "feet"),
  32532. default: true
  32533. },
  32534. {
  32535. name: "Augmented",
  32536. height: math.unit(1250, "feet")
  32537. },
  32538. {
  32539. name: "Unleashed",
  32540. height: math.unit(3000, "feet")
  32541. },
  32542. ]
  32543. ))
  32544. characterMakers.push(() => makeCharacter(
  32545. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32546. {
  32547. side: {
  32548. height: math.unit(2 + 3 / 12, "feet"),
  32549. weight: math.unit(110, "lb"),
  32550. name: "Side",
  32551. image: {
  32552. source: "./media/characters/glitch-flux/side.svg",
  32553. extra: 997 / 805,
  32554. bottom: 20 / 1017
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(2 + 3 / 12, "feet"),
  32562. default: true
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32568. {
  32569. front: {
  32570. height: math.unit(4, "meters"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/mid/front.svg",
  32574. extra: 507 / 476,
  32575. bottom: 17 / 524
  32576. }
  32577. },
  32578. back: {
  32579. height: math.unit(4, "meters"),
  32580. name: "Back",
  32581. image: {
  32582. source: "./media/characters/mid/back.svg",
  32583. extra: 519 / 487,
  32584. bottom: 7 / 526
  32585. }
  32586. },
  32587. stuck: {
  32588. height: math.unit(2.2, "meters"),
  32589. name: "Stuck",
  32590. image: {
  32591. source: "./media/characters/mid/stuck.svg",
  32592. extra: 1951 / 1869,
  32593. bottom: 88 / 2039
  32594. }
  32595. }
  32596. },
  32597. [
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(4, "meters"),
  32601. default: true
  32602. },
  32603. {
  32604. name: "Big",
  32605. height: math.unit(10, "meters")
  32606. },
  32607. {
  32608. name: "Macro",
  32609. height: math.unit(800, "meters")
  32610. },
  32611. {
  32612. name: "Megamacro",
  32613. height: math.unit(100, "km")
  32614. },
  32615. {
  32616. name: "Overgrown",
  32617. height: math.unit(1, "parsec")
  32618. },
  32619. ]
  32620. ))
  32621. characterMakers.push(() => makeCharacter(
  32622. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32623. {
  32624. front: {
  32625. height: math.unit(2.5, "meters"),
  32626. weight: math.unit(225, "kg"),
  32627. name: "Front",
  32628. image: {
  32629. source: "./media/characters/iris/front.svg",
  32630. extra: 3348 / 3251,
  32631. bottom: 205 / 3553
  32632. }
  32633. },
  32634. maw: {
  32635. height: math.unit(0.56, "meter"),
  32636. name: "Maw",
  32637. image: {
  32638. source: "./media/characters/iris/maw.svg"
  32639. }
  32640. },
  32641. },
  32642. [
  32643. {
  32644. name: "Mewter cat",
  32645. height: math.unit(1.2, "meters")
  32646. },
  32647. {
  32648. name: "Normal",
  32649. height: math.unit(2.5, "meters"),
  32650. default: true
  32651. },
  32652. {
  32653. name: "Minimacro",
  32654. height: math.unit(18, "feet")
  32655. },
  32656. {
  32657. name: "Macro",
  32658. height: math.unit(140, "feet")
  32659. },
  32660. {
  32661. name: "Macro+",
  32662. height: math.unit(180, "meters")
  32663. },
  32664. {
  32665. name: "Megamacro",
  32666. height: math.unit(2746, "meters")
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(6, "feet"),
  32675. weight: math.unit(135, "lb"),
  32676. name: "Front",
  32677. image: {
  32678. source: "./media/characters/axel/front.svg",
  32679. extra: 908 / 908,
  32680. bottom: 58 / 966
  32681. }
  32682. },
  32683. side: {
  32684. height: math.unit(6, "feet"),
  32685. weight: math.unit(135, "lb"),
  32686. name: "Side",
  32687. image: {
  32688. source: "./media/characters/axel/side.svg",
  32689. extra: 958 / 958,
  32690. bottom: 11 / 969
  32691. }
  32692. },
  32693. back: {
  32694. height: math.unit(6, "feet"),
  32695. weight: math.unit(135, "lb"),
  32696. name: "Back",
  32697. image: {
  32698. source: "./media/characters/axel/back.svg",
  32699. extra: 887 / 887,
  32700. bottom: 34 / 921
  32701. }
  32702. },
  32703. head: {
  32704. height: math.unit(1.07, "feet"),
  32705. name: "Head",
  32706. image: {
  32707. source: "./media/characters/axel/head.svg"
  32708. }
  32709. },
  32710. beak: {
  32711. height: math.unit(1.4, "feet"),
  32712. name: "Beak",
  32713. image: {
  32714. source: "./media/characters/axel/beak.svg"
  32715. }
  32716. },
  32717. beakSide: {
  32718. height: math.unit(1.4, "feet"),
  32719. name: "Beak Side",
  32720. image: {
  32721. source: "./media/characters/axel/beak-side.svg"
  32722. }
  32723. },
  32724. sheath: {
  32725. height: math.unit(0.5, "feet"),
  32726. name: "Sheath",
  32727. image: {
  32728. source: "./media/characters/axel/sheath.svg"
  32729. }
  32730. },
  32731. dick: {
  32732. height: math.unit(0.98, "feet"),
  32733. name: "Dick",
  32734. image: {
  32735. source: "./media/characters/axel/dick.svg"
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Macro",
  32742. height: math.unit(68, "meters"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(3.5, "meters"),
  32752. weight: math.unit(1200, "kg"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/joanna/front.svg",
  32756. extra: 1596 / 1488,
  32757. bottom: 29 / 1625
  32758. }
  32759. },
  32760. back: {
  32761. height: math.unit(3.5, "meters"),
  32762. weight: math.unit(1200, "kg"),
  32763. name: "Back",
  32764. image: {
  32765. source: "./media/characters/joanna/back.svg",
  32766. extra: 1594 / 1495,
  32767. bottom: 26 / 1620
  32768. }
  32769. },
  32770. frontShorts: {
  32771. height: math.unit(3.5, "meters"),
  32772. weight: math.unit(1200, "kg"),
  32773. name: "Front (Shorts)",
  32774. image: {
  32775. source: "./media/characters/joanna/front-shorts.svg",
  32776. extra: 1596 / 1488,
  32777. bottom: 29 / 1625
  32778. }
  32779. },
  32780. frontBiker: {
  32781. height: math.unit(3.5, "meters"),
  32782. weight: math.unit(1200, "kg"),
  32783. name: "Front (Biker)",
  32784. image: {
  32785. source: "./media/characters/joanna/front-biker.svg",
  32786. extra: 1596 / 1488,
  32787. bottom: 29 / 1625
  32788. }
  32789. },
  32790. backBiker: {
  32791. height: math.unit(3.5, "meters"),
  32792. weight: math.unit(1200, "kg"),
  32793. name: "Back (Biker)",
  32794. image: {
  32795. source: "./media/characters/joanna/back-biker.svg",
  32796. extra: 1594 / 1495,
  32797. bottom: 88 / 1682
  32798. }
  32799. },
  32800. bikeLeft: {
  32801. height: math.unit(2.4, "meters"),
  32802. weight: math.unit(1600, "kg"),
  32803. name: "Bike (Left)",
  32804. image: {
  32805. source: "./media/characters/joanna/bike-left.svg",
  32806. extra: 720 / 720,
  32807. bottom: 8 / 728
  32808. }
  32809. },
  32810. bikeRight: {
  32811. height: math.unit(2.4, "meters"),
  32812. weight: math.unit(1600, "kg"),
  32813. name: "Bike (Right)",
  32814. image: {
  32815. source: "./media/characters/joanna/bike-right.svg",
  32816. extra: 720 / 720,
  32817. bottom: 8 / 728
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Incognito",
  32824. height: math.unit(3.5, "meters")
  32825. },
  32826. {
  32827. name: "Casual Big",
  32828. height: math.unit(200, "meters")
  32829. },
  32830. {
  32831. name: "Macro",
  32832. height: math.unit(600, "meters")
  32833. },
  32834. {
  32835. name: "Original",
  32836. height: math.unit(20, "km"),
  32837. default: true
  32838. },
  32839. {
  32840. name: "Giga",
  32841. height: math.unit(400, "km")
  32842. },
  32843. {
  32844. name: "Lounging",
  32845. height: math.unit(1500, "km")
  32846. },
  32847. {
  32848. name: "Planetary",
  32849. height: math.unit(200000, "km")
  32850. },
  32851. ]
  32852. ))
  32853. characterMakers.push(() => makeCharacter(
  32854. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32855. {
  32856. front: {
  32857. height: math.unit(6, "feet"),
  32858. weight: math.unit(150, "lb"),
  32859. name: "Front",
  32860. image: {
  32861. source: "./media/characters/hugo-sigil/front.svg",
  32862. extra: 522 / 500,
  32863. bottom: 2 / 524
  32864. }
  32865. },
  32866. back: {
  32867. height: math.unit(6, "feet"),
  32868. weight: math.unit(150, "lb"),
  32869. name: "Back",
  32870. image: {
  32871. source: "./media/characters/hugo-sigil/back.svg",
  32872. extra: 519 / 495,
  32873. bottom: 5 / 524
  32874. }
  32875. },
  32876. maw: {
  32877. height: math.unit(1.4, "feet"),
  32878. weight: math.unit(150, "lb"),
  32879. name: "Maw",
  32880. image: {
  32881. source: "./media/characters/hugo-sigil/maw.svg"
  32882. }
  32883. },
  32884. feet: {
  32885. height: math.unit(1.56, "feet"),
  32886. weight: math.unit(150, "lb"),
  32887. name: "Feet",
  32888. image: {
  32889. source: "./media/characters/hugo-sigil/feet.svg",
  32890. extra: 177 / 177,
  32891. bottom: 12 / 189
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(6, "feet")
  32899. },
  32900. {
  32901. name: "Macro",
  32902. height: math.unit(200, "feet"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32909. {
  32910. front: {
  32911. height: math.unit(6, "feet"),
  32912. weight: math.unit(150, "lb"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/peri/front.svg",
  32916. extra: 2354 / 2233,
  32917. bottom: 49 / 2403
  32918. }
  32919. },
  32920. },
  32921. [
  32922. {
  32923. name: "Really Small",
  32924. height: math.unit(1, "nm")
  32925. },
  32926. {
  32927. name: "Micro",
  32928. height: math.unit(4, "inches")
  32929. },
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(7, "inches"),
  32933. default: true
  32934. },
  32935. {
  32936. name: "Macro",
  32937. height: math.unit(400, "feet")
  32938. },
  32939. {
  32940. name: "Megamacro",
  32941. height: math.unit(100, "miles")
  32942. },
  32943. ]
  32944. ))
  32945. characterMakers.push(() => makeCharacter(
  32946. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32947. {
  32948. frontSlim: {
  32949. height: math.unit(7, "feet"),
  32950. name: "Front (Slim)",
  32951. image: {
  32952. source: "./media/characters/issilora/front-slim.svg",
  32953. extra: 529 / 449,
  32954. bottom: 53 / 582
  32955. }
  32956. },
  32957. sideSlim: {
  32958. height: math.unit(7, "feet"),
  32959. name: "Side (Slim)",
  32960. image: {
  32961. source: "./media/characters/issilora/side-slim.svg",
  32962. extra: 570 / 480,
  32963. bottom: 30 / 600
  32964. }
  32965. },
  32966. backSlim: {
  32967. height: math.unit(7, "feet"),
  32968. name: "Back (Slim)",
  32969. image: {
  32970. source: "./media/characters/issilora/back-slim.svg",
  32971. extra: 537 / 455,
  32972. bottom: 46 / 583
  32973. }
  32974. },
  32975. frontBuff: {
  32976. height: math.unit(7, "feet"),
  32977. name: "Front (Buff)",
  32978. image: {
  32979. source: "./media/characters/issilora/front-buff.svg",
  32980. extra: 2310 / 2035,
  32981. bottom: 335 / 2645
  32982. }
  32983. },
  32984. head: {
  32985. height: math.unit(1.94, "feet"),
  32986. name: "Head",
  32987. image: {
  32988. source: "./media/characters/issilora/head.svg"
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Minimum",
  32995. height: math.unit(7, "feet")
  32996. },
  32997. {
  32998. name: "Comfortable",
  32999. height: math.unit(17, "feet")
  33000. },
  33001. {
  33002. name: "Fun Size",
  33003. height: math.unit(47, "feet")
  33004. },
  33005. {
  33006. name: "Natural Macro",
  33007. height: math.unit(137, "feet"),
  33008. default: true
  33009. },
  33010. {
  33011. name: "Maximum Kaiju",
  33012. height: math.unit(397, "feet")
  33013. },
  33014. ]
  33015. ))
  33016. characterMakers.push(() => makeCharacter(
  33017. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33018. {
  33019. front: {
  33020. height: math.unit(50 + 9/12, "feet"),
  33021. weight: math.unit(32.8, "tons"),
  33022. name: "Front",
  33023. image: {
  33024. source: "./media/characters/irb'iiritaahn/front.svg",
  33025. extra: 1878/1826,
  33026. bottom: 326/2204
  33027. }
  33028. },
  33029. back: {
  33030. height: math.unit(50 + 9/12, "feet"),
  33031. weight: math.unit(32.8, "tons"),
  33032. name: "Back",
  33033. image: {
  33034. source: "./media/characters/irb'iiritaahn/back.svg",
  33035. extra: 2052/2018,
  33036. bottom: 152/2204
  33037. }
  33038. },
  33039. head: {
  33040. height: math.unit(12.86, "feet"),
  33041. name: "Head",
  33042. image: {
  33043. source: "./media/characters/irb'iiritaahn/head.svg"
  33044. }
  33045. },
  33046. maw: {
  33047. height: math.unit(9.66, "feet"),
  33048. name: "Maw",
  33049. image: {
  33050. source: "./media/characters/irb'iiritaahn/maw.svg"
  33051. }
  33052. },
  33053. frontDick: {
  33054. height: math.unit(8.78461, "feet"),
  33055. name: "Front Dick",
  33056. image: {
  33057. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33058. }
  33059. },
  33060. rearDick: {
  33061. height: math.unit(8.78461, "feet"),
  33062. name: "Rear Dick",
  33063. image: {
  33064. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33065. }
  33066. },
  33067. rearDickUnfolded: {
  33068. height: math.unit(8.78, "feet"),
  33069. name: "Rear Dick (Unfolded)",
  33070. image: {
  33071. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33072. }
  33073. },
  33074. wings: {
  33075. height: math.unit(43, "feet"),
  33076. name: "Wings",
  33077. image: {
  33078. source: "./media/characters/irb'iiritaahn/wings.svg"
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Macro",
  33085. height: math.unit(50 + 9/12, "feet"),
  33086. default: true
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33092. {
  33093. front: {
  33094. height: math.unit(205, "cm"),
  33095. weight: math.unit(102, "kg"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/irbisgreif/front.svg",
  33099. extra: 785/706,
  33100. bottom: 13/798
  33101. }
  33102. },
  33103. back: {
  33104. height: math.unit(205, "cm"),
  33105. weight: math.unit(102, "kg"),
  33106. name: "Back",
  33107. image: {
  33108. source: "./media/characters/irbisgreif/back.svg",
  33109. extra: 713/701,
  33110. bottom: 26/739
  33111. }
  33112. },
  33113. frontDressed: {
  33114. height: math.unit(216, "cm"),
  33115. weight: math.unit(102, "kg"),
  33116. name: "Front-dressed",
  33117. image: {
  33118. source: "./media/characters/irbisgreif/front-dressed.svg",
  33119. extra: 902/776,
  33120. bottom: 14/916
  33121. }
  33122. },
  33123. sideDressed: {
  33124. height: math.unit(195, "cm"),
  33125. weight: math.unit(102, "kg"),
  33126. name: "Side-dressed",
  33127. image: {
  33128. source: "./media/characters/irbisgreif/side-dressed.svg",
  33129. extra: 788/688,
  33130. bottom: 21/809
  33131. }
  33132. },
  33133. backDressed: {
  33134. height: math.unit(216, "cm"),
  33135. weight: math.unit(102, "kg"),
  33136. name: "Back-dressed",
  33137. image: {
  33138. source: "./media/characters/irbisgreif/back-dressed.svg",
  33139. extra: 901/783,
  33140. bottom: 10/911
  33141. }
  33142. },
  33143. dick: {
  33144. height: math.unit(0.49, "feet"),
  33145. name: "Dick",
  33146. image: {
  33147. source: "./media/characters/irbisgreif/dick.svg"
  33148. }
  33149. },
  33150. wingTop: {
  33151. height: math.unit(1.93 , "feet"),
  33152. name: "Wing-top",
  33153. image: {
  33154. source: "./media/characters/irbisgreif/wing-top.svg"
  33155. }
  33156. },
  33157. wingBottom: {
  33158. height: math.unit(1.93 , "feet"),
  33159. name: "Wing-bottom",
  33160. image: {
  33161. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(216, "cm"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(6, "feet"),
  33178. weight: math.unit(150, "lb"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/pride/front.svg",
  33182. extra: 1299/1230,
  33183. bottom: 18/1317
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Normal",
  33190. height: math.unit(7, "feet")
  33191. },
  33192. {
  33193. name: "Mini-macro",
  33194. height: math.unit(11, "feet")
  33195. },
  33196. {
  33197. name: "Macro",
  33198. height: math.unit(15, "meters"),
  33199. default: true
  33200. },
  33201. {
  33202. name: "Macro+",
  33203. height: math.unit(40, "meters")
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33209. {
  33210. front: {
  33211. height: math.unit(4 + 2 / 12, "feet"),
  33212. weight: math.unit(95, "lb"),
  33213. name: "Front",
  33214. image: {
  33215. source: "./media/characters/vaelophis-nyx/front.svg",
  33216. extra: 2532/2330,
  33217. bottom: 0/2532
  33218. }
  33219. },
  33220. back: {
  33221. height: math.unit(4 + 2 / 12, "feet"),
  33222. weight: math.unit(95, "lb"),
  33223. name: "Back",
  33224. image: {
  33225. source: "./media/characters/vaelophis-nyx/back.svg",
  33226. extra: 2484/2361,
  33227. bottom: 0/2484
  33228. }
  33229. },
  33230. feralSide: {
  33231. height: math.unit(2 + 1/12, "feet"),
  33232. weight: math.unit(20, "lb"),
  33233. name: "Feral (Side)",
  33234. image: {
  33235. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33236. extra: 1721/1581,
  33237. bottom: 70/1791
  33238. }
  33239. },
  33240. feralLazing: {
  33241. height: math.unit(1.08, "feet"),
  33242. weight: math.unit(20, "lb"),
  33243. name: "Feral (Lazing)",
  33244. image: {
  33245. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33246. extra: 822/822,
  33247. bottom: 248/1070
  33248. }
  33249. },
  33250. ear: {
  33251. height: math.unit(0.416, "feet"),
  33252. name: "Ear",
  33253. image: {
  33254. source: "./media/characters/vaelophis-nyx/ear.svg"
  33255. }
  33256. },
  33257. eye: {
  33258. height: math.unit(0.0748, "feet"),
  33259. name: "Eye",
  33260. image: {
  33261. source: "./media/characters/vaelophis-nyx/eye.svg"
  33262. }
  33263. },
  33264. mouth: {
  33265. height: math.unit(0.378, "feet"),
  33266. name: "Mouth",
  33267. image: {
  33268. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33269. }
  33270. },
  33271. spade: {
  33272. height: math.unit(0.55, "feet"),
  33273. name: "Spade",
  33274. image: {
  33275. source: "./media/characters/vaelophis-nyx/spade.svg"
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Normal",
  33282. height: math.unit(4 + 2/12, "feet"),
  33283. default: true
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33289. {
  33290. front: {
  33291. height: math.unit(7, "feet"),
  33292. weight: math.unit(231, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/flux/front.svg",
  33296. extra: 919/871,
  33297. bottom: 0/919
  33298. }
  33299. },
  33300. back: {
  33301. height: math.unit(7, "feet"),
  33302. weight: math.unit(231, "lb"),
  33303. name: "Back",
  33304. image: {
  33305. source: "./media/characters/flux/back.svg",
  33306. extra: 1040/992,
  33307. bottom: 0/1040
  33308. }
  33309. },
  33310. frontDressed: {
  33311. height: math.unit(7, "feet"),
  33312. weight: math.unit(231, "lb"),
  33313. name: "Front (Dressed)",
  33314. image: {
  33315. source: "./media/characters/flux/front-dressed.svg",
  33316. extra: 919/871,
  33317. bottom: 0/919
  33318. }
  33319. },
  33320. feralSide: {
  33321. height: math.unit(5, "feet"),
  33322. weight: math.unit(150, "lb"),
  33323. name: "Feral (Side)",
  33324. image: {
  33325. source: "./media/characters/flux/feral-side.svg",
  33326. extra: 598/528,
  33327. bottom: 28/626
  33328. }
  33329. },
  33330. head: {
  33331. height: math.unit(1.585, "feet"),
  33332. name: "Head",
  33333. image: {
  33334. source: "./media/characters/flux/head.svg"
  33335. }
  33336. },
  33337. headSide: {
  33338. height: math.unit(1.74, "feet"),
  33339. name: "Head (Side)",
  33340. image: {
  33341. source: "./media/characters/flux/head-side.svg"
  33342. }
  33343. },
  33344. headSideFire: {
  33345. height: math.unit(1.76, "feet"),
  33346. name: "Head (Side, Fire)",
  33347. image: {
  33348. source: "./media/characters/flux/head-side-fire.svg"
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Normal",
  33355. height: math.unit(7, "feet"),
  33356. default: true
  33357. },
  33358. ]
  33359. ))
  33360. characterMakers.push(() => makeCharacter(
  33361. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33362. {
  33363. front: {
  33364. height: math.unit(9, "feet"),
  33365. weight: math.unit(1012, "lb"),
  33366. name: "Front",
  33367. image: {
  33368. source: "./media/characters/ulfra-lupae/front.svg",
  33369. extra: 1083/1011,
  33370. bottom: 67/1150
  33371. }
  33372. },
  33373. },
  33374. [
  33375. {
  33376. name: "Micro",
  33377. height: math.unit(6, "inches")
  33378. },
  33379. {
  33380. name: "Socializing",
  33381. height: math.unit(6 + 5/12, "feet")
  33382. },
  33383. {
  33384. name: "Normal",
  33385. height: math.unit(9, "feet"),
  33386. default: true
  33387. },
  33388. {
  33389. name: "Macro",
  33390. height: math.unit(150, "feet")
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(5 + 2/12, "feet"),
  33399. weight: math.unit(120, "lb"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/timber/front.svg",
  33403. extra: 2814/2705,
  33404. bottom: 181/2995
  33405. }
  33406. },
  33407. },
  33408. [
  33409. {
  33410. name: "Normal",
  33411. height: math.unit(5 + 2/12, "feet"),
  33412. default: true
  33413. },
  33414. ]
  33415. ))
  33416. characterMakers.push(() => makeCharacter(
  33417. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33418. {
  33419. front: {
  33420. height: math.unit(9, "feet"),
  33421. name: "Front",
  33422. image: {
  33423. source: "./media/characters/nicki/front.svg",
  33424. extra: 1240/990,
  33425. bottom: 45/1285
  33426. },
  33427. form: "anthro",
  33428. default: true
  33429. },
  33430. side: {
  33431. height: math.unit(9, "feet"),
  33432. name: "Side",
  33433. image: {
  33434. source: "./media/characters/nicki/side.svg",
  33435. extra: 1047/973,
  33436. bottom: 61/1108
  33437. },
  33438. form: "anthro"
  33439. },
  33440. back: {
  33441. height: math.unit(9, "feet"),
  33442. name: "Back",
  33443. image: {
  33444. source: "./media/characters/nicki/back.svg",
  33445. extra: 1006/965,
  33446. bottom: 39/1045
  33447. },
  33448. form: "anthro"
  33449. },
  33450. taur: {
  33451. height: math.unit(15, "feet"),
  33452. name: "Taur",
  33453. image: {
  33454. source: "./media/characters/nicki/taur.svg",
  33455. extra: 1592/1347,
  33456. bottom: 0/1592
  33457. },
  33458. form: "taur",
  33459. default: true
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(9, "feet"),
  33466. form: "anthro",
  33467. default: true
  33468. },
  33469. {
  33470. name: "Normal",
  33471. height: math.unit(15, "feet"),
  33472. form: "taur",
  33473. default: true
  33474. }
  33475. ],
  33476. {
  33477. "anthro": {
  33478. name: "Anthro",
  33479. default: true
  33480. },
  33481. "taur": {
  33482. name: "Taur"
  33483. }
  33484. }
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(7 + 10/12, "feet"),
  33491. weight: math.unit(3.5, "tons"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/lee/front.svg",
  33495. extra: 1773/1615,
  33496. bottom: 86/1859
  33497. }
  33498. },
  33499. hand: {
  33500. height: math.unit(1.78, "feet"),
  33501. name: "Hand",
  33502. image: {
  33503. source: "./media/characters/lee/hand.svg"
  33504. }
  33505. },
  33506. maw: {
  33507. height: math.unit(1.18, "feet"),
  33508. name: "Maw",
  33509. image: {
  33510. source: "./media/characters/lee/maw.svg"
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(7 + 10/12, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33524. {
  33525. front: {
  33526. height: math.unit(9, "feet"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/guti/front.svg",
  33530. extra: 4551/4355,
  33531. bottom: 123/4674
  33532. }
  33533. },
  33534. tongue: {
  33535. height: math.unit(1, "feet"),
  33536. name: "Tongue",
  33537. image: {
  33538. source: "./media/characters/guti/tongue.svg"
  33539. }
  33540. },
  33541. paw: {
  33542. height: math.unit(1.18, "feet"),
  33543. name: "Paw",
  33544. image: {
  33545. source: "./media/characters/guti/paw.svg"
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(9, "feet"),
  33553. default: true
  33554. },
  33555. ]
  33556. ))
  33557. characterMakers.push(() => makeCharacter(
  33558. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33559. {
  33560. side: {
  33561. height: math.unit(5, "meters"),
  33562. name: "Side",
  33563. image: {
  33564. source: "./media/characters/vesper/side.svg",
  33565. extra: 1605/1518,
  33566. bottom: 0/1605
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Small",
  33573. height: math.unit(5, "meters")
  33574. },
  33575. {
  33576. name: "Sage",
  33577. height: math.unit(100, "meters"),
  33578. default: true
  33579. },
  33580. {
  33581. name: "Fun Size",
  33582. height: math.unit(600, "meters")
  33583. },
  33584. {
  33585. name: "Goddess",
  33586. height: math.unit(20000, "km")
  33587. },
  33588. {
  33589. name: "Maximum",
  33590. height: math.unit(5, "galaxies")
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33596. {
  33597. front: {
  33598. height: math.unit(6 + 3/12, "feet"),
  33599. weight: math.unit(190, "lb"),
  33600. name: "Front",
  33601. image: {
  33602. source: "./media/characters/gawain/front.svg",
  33603. extra: 2222/2139,
  33604. bottom: 90/2312
  33605. }
  33606. },
  33607. back: {
  33608. height: math.unit(6 + 3/12, "feet"),
  33609. weight: math.unit(190, "lb"),
  33610. name: "Back",
  33611. image: {
  33612. source: "./media/characters/gawain/back.svg",
  33613. extra: 2199/2111,
  33614. bottom: 73/2272
  33615. }
  33616. },
  33617. },
  33618. [
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(6 + 3/12, "feet"),
  33622. default: true
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33628. {
  33629. side: {
  33630. height: math.unit(3.5, "meters"),
  33631. weight: math.unit(16000, "lb"),
  33632. name: "Side",
  33633. image: {
  33634. source: "./media/characters/dascalti/side.svg",
  33635. extra: 392/273,
  33636. bottom: 47/439
  33637. }
  33638. },
  33639. breath: {
  33640. height: math.unit(7.4, "feet"),
  33641. name: "Breath",
  33642. image: {
  33643. source: "./media/characters/dascalti/breath.svg"
  33644. }
  33645. },
  33646. fed: {
  33647. height: math.unit(3.6, "meters"),
  33648. weight: math.unit(16000, "lb"),
  33649. name: "Fed",
  33650. image: {
  33651. source: "./media/characters/dascalti/fed.svg",
  33652. extra: 1419/820,
  33653. bottom: 95/1514
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Normal",
  33660. height: math.unit(3.5, "meters"),
  33661. default: true
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33667. {
  33668. front: {
  33669. height: math.unit(3 + 5/12, "feet"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/mauve/front.svg",
  33673. extra: 1126/1033,
  33674. bottom: 65/1191
  33675. }
  33676. },
  33677. side: {
  33678. height: math.unit(3 + 5/12, "feet"),
  33679. name: "Side",
  33680. image: {
  33681. source: "./media/characters/mauve/side.svg",
  33682. extra: 1089/1001,
  33683. bottom: 29/1118
  33684. }
  33685. },
  33686. back: {
  33687. height: math.unit(3 + 5/12, "feet"),
  33688. name: "Back",
  33689. image: {
  33690. source: "./media/characters/mauve/back.svg",
  33691. extra: 1173/1053,
  33692. bottom: 109/1282
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(3 + 5/12, "feet"),
  33700. default: true
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(6 + 3/12, "feet"),
  33709. weight: math.unit(430, "lb"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/carlos/front.svg",
  33713. extra: 1964/1913,
  33714. bottom: 70/2034
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(6 + 3/12, "feet"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33728. {
  33729. back: {
  33730. height: math.unit(5 + 10/12, "feet"),
  33731. weight: math.unit(200, "lb"),
  33732. name: "Back",
  33733. image: {
  33734. source: "./media/characters/jax/back.svg",
  33735. extra: 764/739,
  33736. bottom: 25/789
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(5 + 10/12, "feet"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33750. {
  33751. front: {
  33752. height: math.unit(8, "feet"),
  33753. weight: math.unit(250, "lb"),
  33754. name: "Front",
  33755. image: {
  33756. source: "./media/characters/eikthynir/front.svg",
  33757. extra: 1332/1166,
  33758. bottom: 82/1414
  33759. }
  33760. },
  33761. back: {
  33762. height: math.unit(8, "feet"),
  33763. weight: math.unit(250, "lb"),
  33764. name: "Back",
  33765. image: {
  33766. source: "./media/characters/eikthynir/back.svg",
  33767. extra: 1342/1190,
  33768. bottom: 19/1361
  33769. }
  33770. },
  33771. dick: {
  33772. height: math.unit(2.35, "feet"),
  33773. name: "Dick",
  33774. image: {
  33775. source: "./media/characters/eikthynir/dick.svg"
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(8, "feet"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33789. {
  33790. front: {
  33791. height: math.unit(99, "meters"),
  33792. weight: math.unit(13000, "tons"),
  33793. name: "Front",
  33794. image: {
  33795. source: "./media/characters/zlmos/front.svg",
  33796. extra: 2202/1992,
  33797. bottom: 315/2517
  33798. }
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Macro",
  33804. height: math.unit(99, "meters"),
  33805. default: true
  33806. },
  33807. ]
  33808. ))
  33809. characterMakers.push(() => makeCharacter(
  33810. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33811. {
  33812. front: {
  33813. height: math.unit(6 + 5/12, "feet"),
  33814. name: "Front",
  33815. image: {
  33816. source: "./media/characters/purri/front.svg",
  33817. extra: 1698/1610,
  33818. bottom: 32/1730
  33819. }
  33820. },
  33821. frontAlt: {
  33822. height: math.unit(6 + 5/12, "feet"),
  33823. name: "Front (Alt)",
  33824. image: {
  33825. source: "./media/characters/purri/front-alt.svg",
  33826. extra: 450/420,
  33827. bottom: 26/476
  33828. }
  33829. },
  33830. boots: {
  33831. height: math.unit(5.5, "feet"),
  33832. name: "Boots",
  33833. image: {
  33834. source: "./media/characters/purri/boots.svg",
  33835. extra: 905/853,
  33836. bottom: 18/923
  33837. }
  33838. },
  33839. lying: {
  33840. height: math.unit(2, "feet"),
  33841. name: "Lying",
  33842. image: {
  33843. source: "./media/characters/purri/lying.svg",
  33844. extra: 940/843,
  33845. bottom: 146/1086
  33846. }
  33847. },
  33848. devious: {
  33849. height: math.unit(1.77, "feet"),
  33850. name: "Devious",
  33851. image: {
  33852. source: "./media/characters/purri/devious.svg",
  33853. extra: 1440/1155,
  33854. bottom: 147/1587
  33855. }
  33856. },
  33857. bean: {
  33858. height: math.unit(1.94, "feet"),
  33859. name: "Bean",
  33860. image: {
  33861. source: "./media/characters/purri/bean.svg"
  33862. }
  33863. },
  33864. },
  33865. [
  33866. {
  33867. name: "Micro",
  33868. height: math.unit(1, "mm")
  33869. },
  33870. {
  33871. name: "Normal",
  33872. height: math.unit(6 + 5/12, "feet"),
  33873. default: true
  33874. },
  33875. {
  33876. name: "Macro :3c",
  33877. height: math.unit(2, "miles")
  33878. },
  33879. ]
  33880. ))
  33881. characterMakers.push(() => makeCharacter(
  33882. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33883. {
  33884. front: {
  33885. height: math.unit(6 + 2/12, "feet"),
  33886. weight: math.unit(250, "lb"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/moonlight/front.svg",
  33890. extra: 1044/908,
  33891. bottom: 56/1100
  33892. }
  33893. },
  33894. feral: {
  33895. height: math.unit(3 + 1/12, "feet"),
  33896. weight: math.unit(50, "kg"),
  33897. name: "Feral",
  33898. image: {
  33899. source: "./media/characters/moonlight/feral.svg",
  33900. extra: 3705/2791,
  33901. bottom: 145/3850
  33902. }
  33903. },
  33904. paw: {
  33905. height: math.unit(1, "feet"),
  33906. name: "Paw",
  33907. image: {
  33908. source: "./media/characters/moonlight/paw.svg"
  33909. }
  33910. },
  33911. paws: {
  33912. height: math.unit(0.98, "feet"),
  33913. name: "Paws",
  33914. image: {
  33915. source: "./media/characters/moonlight/paws.svg",
  33916. extra: 939/939,
  33917. bottom: 50/989
  33918. }
  33919. },
  33920. mouth: {
  33921. height: math.unit(0.48, "feet"),
  33922. name: "Mouth",
  33923. image: {
  33924. source: "./media/characters/moonlight/mouth.svg"
  33925. }
  33926. },
  33927. dick: {
  33928. height: math.unit(1.46, "feet"),
  33929. name: "Dick",
  33930. image: {
  33931. source: "./media/characters/moonlight/dick.svg"
  33932. }
  33933. },
  33934. },
  33935. [
  33936. {
  33937. name: "Normal",
  33938. height: math.unit(6 + 2/12, "feet"),
  33939. default: true
  33940. },
  33941. {
  33942. name: "Macro",
  33943. height: math.unit(300, "feet")
  33944. },
  33945. {
  33946. name: "Macro+",
  33947. height: math.unit(1, "mile")
  33948. },
  33949. {
  33950. name: "Mt. Moon",
  33951. height: math.unit(5, "miles")
  33952. },
  33953. {
  33954. name: "Megamacro",
  33955. height: math.unit(15, "miles")
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33961. {
  33962. back: {
  33963. height: math.unit(6, "feet"),
  33964. weight: math.unit(150, "lb"),
  33965. name: "Back",
  33966. image: {
  33967. source: "./media/characters/sylen/back.svg",
  33968. extra: 1335/1273,
  33969. bottom: 107/1442
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "Normal",
  33976. height: math.unit(5 + 5/12, "feet")
  33977. },
  33978. {
  33979. name: "Megamacro",
  33980. height: math.unit(3, "miles"),
  33981. default: true
  33982. },
  33983. ]
  33984. ))
  33985. characterMakers.push(() => makeCharacter(
  33986. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33987. {
  33988. front: {
  33989. height: math.unit(6, "feet"),
  33990. weight: math.unit(190, "lb"),
  33991. name: "Front",
  33992. image: {
  33993. source: "./media/characters/huttser/front.svg",
  33994. extra: 1152/1058,
  33995. bottom: 23/1175
  33996. }
  33997. },
  33998. side: {
  33999. height: math.unit(6, "feet"),
  34000. weight: math.unit(190, "lb"),
  34001. name: "Side",
  34002. image: {
  34003. source: "./media/characters/huttser/side.svg",
  34004. extra: 1174/1065,
  34005. bottom: 18/1192
  34006. }
  34007. },
  34008. back: {
  34009. height: math.unit(6, "feet"),
  34010. weight: math.unit(190, "lb"),
  34011. name: "Back",
  34012. image: {
  34013. source: "./media/characters/huttser/back.svg",
  34014. extra: 1158/1056,
  34015. bottom: 12/1170
  34016. }
  34017. },
  34018. },
  34019. [
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34024. {
  34025. side: {
  34026. height: math.unit(12 + 9/12, "feet"),
  34027. weight: math.unit(15000, "lb"),
  34028. name: "Side",
  34029. image: {
  34030. source: "./media/characters/faan/side.svg",
  34031. extra: 2747/2697,
  34032. bottom: 0/2747
  34033. }
  34034. },
  34035. front: {
  34036. height: math.unit(12 + 9/12, "feet"),
  34037. weight: math.unit(15000, "lb"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/faan/front.svg",
  34041. extra: 607/571,
  34042. bottom: 24/631
  34043. }
  34044. },
  34045. head: {
  34046. height: math.unit(2.85, "feet"),
  34047. name: "Head",
  34048. image: {
  34049. source: "./media/characters/faan/head.svg"
  34050. }
  34051. },
  34052. headAlt: {
  34053. height: math.unit(3.13, "feet"),
  34054. name: "Head-alt",
  34055. image: {
  34056. source: "./media/characters/faan/head-alt.svg"
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(12 + 9/12, "feet"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34070. {
  34071. front: {
  34072. height: math.unit(6, "feet"),
  34073. weight: math.unit(300, "lb"),
  34074. name: "Front",
  34075. image: {
  34076. source: "./media/characters/tanio/front.svg",
  34077. extra: 711/673,
  34078. bottom: 25/736
  34079. }
  34080. },
  34081. },
  34082. [
  34083. {
  34084. name: "Normal",
  34085. height: math.unit(6, "feet"),
  34086. default: true
  34087. },
  34088. ]
  34089. ))
  34090. characterMakers.push(() => makeCharacter(
  34091. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34092. {
  34093. front: {
  34094. height: math.unit(3, "inches"),
  34095. name: "Front",
  34096. image: {
  34097. source: "./media/characters/noboru/front.svg",
  34098. extra: 1039/932,
  34099. bottom: 18/1057
  34100. }
  34101. },
  34102. },
  34103. [
  34104. {
  34105. name: "Micro",
  34106. height: math.unit(3, "inches"),
  34107. default: true
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34113. {
  34114. front: {
  34115. height: math.unit(1.85, "meters"),
  34116. weight: math.unit(80, "kg"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/daniel-barrett/front.svg",
  34120. extra: 355/337,
  34121. bottom: 9/364
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Pico",
  34128. height: math.unit(0.0433, "mm")
  34129. },
  34130. {
  34131. name: "Nano",
  34132. height: math.unit(1.5, "mm")
  34133. },
  34134. {
  34135. name: "Micro",
  34136. height: math.unit(5.3, "cm"),
  34137. default: true
  34138. },
  34139. {
  34140. name: "Normal",
  34141. height: math.unit(1.85, "meters")
  34142. },
  34143. {
  34144. name: "Macro",
  34145. height: math.unit(64.7, "meters")
  34146. },
  34147. {
  34148. name: "Megamacro",
  34149. height: math.unit(2.26, "km")
  34150. },
  34151. {
  34152. name: "Gigamacro",
  34153. height: math.unit(79, "km")
  34154. },
  34155. {
  34156. name: "Teramacro",
  34157. height: math.unit(2765, "km")
  34158. },
  34159. {
  34160. name: "Petamacro",
  34161. height: math.unit(96678, "km")
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34167. {
  34168. front: {
  34169. height: math.unit(30, "meters"),
  34170. weight: math.unit(400, "tons"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/zeel/front.svg",
  34174. extra: 2599/2599,
  34175. bottom: 226/2825
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Macro",
  34182. height: math.unit(30, "meters"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(6 + 7/12, "feet"),
  34192. weight: math.unit(210, "lb"),
  34193. name: "Front",
  34194. image: {
  34195. source: "./media/characters/tarn/front.svg",
  34196. extra: 3517/3220,
  34197. bottom: 91/3608
  34198. }
  34199. },
  34200. back: {
  34201. height: math.unit(6 + 7/12, "feet"),
  34202. weight: math.unit(210, "lb"),
  34203. name: "Back",
  34204. image: {
  34205. source: "./media/characters/tarn/back.svg",
  34206. extra: 3566/3241,
  34207. bottom: 34/3600
  34208. }
  34209. },
  34210. dick: {
  34211. height: math.unit(1.65, "feet"),
  34212. name: "Dick",
  34213. image: {
  34214. source: "./media/characters/tarn/dick.svg"
  34215. }
  34216. },
  34217. paw: {
  34218. height: math.unit(1.80, "feet"),
  34219. name: "Paw",
  34220. image: {
  34221. source: "./media/characters/tarn/paw.svg"
  34222. }
  34223. },
  34224. tongue: {
  34225. height: math.unit(0.97, "feet"),
  34226. name: "Tongue",
  34227. image: {
  34228. source: "./media/characters/tarn/tongue.svg"
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Micro",
  34235. height: math.unit(4, "inches")
  34236. },
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(6 + 7/12, "feet"),
  34240. default: true
  34241. },
  34242. {
  34243. name: "Macro",
  34244. height: math.unit(300, "feet")
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34250. {
  34251. front: {
  34252. height: math.unit(5 + 7/12, "feet"),
  34253. weight: math.unit(80, "kg"),
  34254. name: "Front",
  34255. image: {
  34256. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34257. extra: 3023/2865,
  34258. bottom: 33/3056
  34259. }
  34260. },
  34261. back: {
  34262. height: math.unit(5 + 7/12, "feet"),
  34263. weight: math.unit(80, "kg"),
  34264. name: "Back",
  34265. image: {
  34266. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34267. extra: 3020/2886,
  34268. bottom: 30/3050
  34269. }
  34270. },
  34271. dick: {
  34272. height: math.unit(0.98, "feet"),
  34273. name: "Dick",
  34274. image: {
  34275. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34276. }
  34277. },
  34278. anatomy: {
  34279. height: math.unit(2.86, "feet"),
  34280. name: "Anatomy",
  34281. image: {
  34282. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34283. }
  34284. },
  34285. },
  34286. [
  34287. {
  34288. name: "Really Small",
  34289. height: math.unit(2, "inches")
  34290. },
  34291. {
  34292. name: "Micro",
  34293. height: math.unit(5.583, "inches")
  34294. },
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(5 + 7/12, "feet"),
  34298. default: true
  34299. },
  34300. {
  34301. name: "Macro",
  34302. height: math.unit(67, "feet")
  34303. },
  34304. {
  34305. name: "Megamacro",
  34306. height: math.unit(134, "feet")
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(9, "feet"),
  34315. weight: math.unit(120, "lb"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/sally/front.svg",
  34319. extra: 1506/1349,
  34320. bottom: 66/1572
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(9, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(8, "feet"),
  34337. weight: math.unit(900, "lb"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/owen/front.svg",
  34341. extra: 1761/1657,
  34342. bottom: 74/1835
  34343. }
  34344. },
  34345. side: {
  34346. height: math.unit(8, "feet"),
  34347. weight: math.unit(900, "lb"),
  34348. name: "Side",
  34349. image: {
  34350. source: "./media/characters/owen/side.svg",
  34351. extra: 1797/1734,
  34352. bottom: 30/1827
  34353. }
  34354. },
  34355. back: {
  34356. height: math.unit(8, "feet"),
  34357. weight: math.unit(900, "lb"),
  34358. name: "Back",
  34359. image: {
  34360. source: "./media/characters/owen/back.svg",
  34361. extra: 1796/1706,
  34362. bottom: 59/1855
  34363. }
  34364. },
  34365. maw: {
  34366. height: math.unit(1.76, "feet"),
  34367. name: "Maw",
  34368. image: {
  34369. source: "./media/characters/owen/maw.svg"
  34370. }
  34371. },
  34372. },
  34373. [
  34374. {
  34375. name: "Normal",
  34376. height: math.unit(8, "feet"),
  34377. default: true
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34383. {
  34384. front: {
  34385. height: math.unit(4, "feet"),
  34386. weight: math.unit(400, "lb"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/ryth/front.svg",
  34390. extra: 1920/1748,
  34391. bottom: 42/1962
  34392. }
  34393. },
  34394. back: {
  34395. height: math.unit(4, "feet"),
  34396. weight: math.unit(400, "lb"),
  34397. name: "Back",
  34398. image: {
  34399. source: "./media/characters/ryth/back.svg",
  34400. extra: 1897/1690,
  34401. bottom: 89/1986
  34402. }
  34403. },
  34404. mouth: {
  34405. height: math.unit(1.39, "feet"),
  34406. name: "Mouth",
  34407. image: {
  34408. source: "./media/characters/ryth/mouth.svg"
  34409. }
  34410. },
  34411. tailmaw: {
  34412. height: math.unit(1.23, "feet"),
  34413. name: "Tailmaw",
  34414. image: {
  34415. source: "./media/characters/ryth/tailmaw.svg"
  34416. }
  34417. },
  34418. goia: {
  34419. height: math.unit(4, "meters"),
  34420. weight: math.unit(10800, "lb"),
  34421. name: "Goia",
  34422. image: {
  34423. source: "./media/characters/ryth/goia.svg",
  34424. extra: 745/640,
  34425. bottom: 107/852
  34426. }
  34427. },
  34428. goiaFront: {
  34429. height: math.unit(4, "meters"),
  34430. weight: math.unit(10800, "lb"),
  34431. name: "Goia (Front)",
  34432. image: {
  34433. source: "./media/characters/ryth/goia-front.svg",
  34434. extra: 750/586,
  34435. bottom: 114/864
  34436. }
  34437. },
  34438. goiaMaw: {
  34439. height: math.unit(5.55, "feet"),
  34440. name: "Goia Maw",
  34441. image: {
  34442. source: "./media/characters/ryth/goia-maw.svg"
  34443. }
  34444. },
  34445. goiaForepaw: {
  34446. height: math.unit(3.5, "feet"),
  34447. name: "Goia Forepaw",
  34448. image: {
  34449. source: "./media/characters/ryth/goia-forepaw.svg"
  34450. }
  34451. },
  34452. goiaHindpaw: {
  34453. height: math.unit(5.55, "feet"),
  34454. name: "Goia Hindpaw",
  34455. image: {
  34456. source: "./media/characters/ryth/goia-hindpaw.svg"
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Normal",
  34463. height: math.unit(4, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(7, "feet"),
  34473. weight: math.unit(180, "lb"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/necrolance/front.svg",
  34477. extra: 1062/947,
  34478. bottom: 41/1103
  34479. }
  34480. },
  34481. back: {
  34482. height: math.unit(7, "feet"),
  34483. weight: math.unit(180, "lb"),
  34484. name: "Back",
  34485. image: {
  34486. source: "./media/characters/necrolance/back.svg",
  34487. extra: 1045/984,
  34488. bottom: 14/1059
  34489. }
  34490. },
  34491. wing: {
  34492. height: math.unit(2.67, "feet"),
  34493. name: "Wing",
  34494. image: {
  34495. source: "./media/characters/necrolance/wing.svg"
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(7, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34509. {
  34510. front: {
  34511. height: math.unit(76, "meters"),
  34512. weight: math.unit(30000, "tons"),
  34513. name: "Front",
  34514. image: {
  34515. source: "./media/characters/tyler/front.svg",
  34516. extra: 1640/1640,
  34517. bottom: 114/1754
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Macro",
  34524. height: math.unit(76, "meters"),
  34525. default: true
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(4 + 11/12, "feet"),
  34534. weight: math.unit(132, "lb"),
  34535. name: "Front",
  34536. image: {
  34537. source: "./media/characters/icey/front.svg",
  34538. extra: 2750/2550,
  34539. bottom: 33/2783
  34540. }
  34541. },
  34542. back: {
  34543. height: math.unit(4 + 11/12, "feet"),
  34544. weight: math.unit(132, "lb"),
  34545. name: "Back",
  34546. image: {
  34547. source: "./media/characters/icey/back.svg",
  34548. extra: 2624/2481,
  34549. bottom: 35/2659
  34550. }
  34551. },
  34552. },
  34553. [
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(4 + 11/12, "feet"),
  34557. default: true
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34563. {
  34564. front: {
  34565. height: math.unit(100, "feet"),
  34566. weight: math.unit(0, "lb"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/smile/front.svg",
  34570. extra: 2983/2912,
  34571. bottom: 162/3145
  34572. }
  34573. },
  34574. back: {
  34575. height: math.unit(100, "feet"),
  34576. weight: math.unit(0, "lb"),
  34577. name: "Back",
  34578. image: {
  34579. source: "./media/characters/smile/back.svg",
  34580. extra: 3143/3031,
  34581. bottom: 91/3234
  34582. }
  34583. },
  34584. head: {
  34585. height: math.unit(26.3, "feet"),
  34586. weight: math.unit(0, "lb"),
  34587. name: "Head",
  34588. image: {
  34589. source: "./media/characters/smile/head.svg"
  34590. }
  34591. },
  34592. collar: {
  34593. height: math.unit(5.3, "feet"),
  34594. weight: math.unit(0, "lb"),
  34595. name: "Collar",
  34596. image: {
  34597. source: "./media/characters/smile/collar.svg"
  34598. }
  34599. },
  34600. },
  34601. [
  34602. {
  34603. name: "Macro",
  34604. height: math.unit(100, "feet"),
  34605. default: true
  34606. },
  34607. ]
  34608. ))
  34609. characterMakers.push(() => makeCharacter(
  34610. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34611. {
  34612. dragon: {
  34613. height: math.unit(26, "feet"),
  34614. weight: math.unit(36, "tons"),
  34615. name: "Dragon",
  34616. image: {
  34617. source: "./media/characters/arimphae/dragon.svg",
  34618. extra: 1574/983,
  34619. bottom: 357/1931
  34620. }
  34621. },
  34622. drake: {
  34623. height: math.unit(9, "feet"),
  34624. weight: math.unit(1.5, "tons"),
  34625. name: "Drake",
  34626. image: {
  34627. source: "./media/characters/arimphae/drake.svg",
  34628. extra: 1120/925,
  34629. bottom: 435/1555
  34630. }
  34631. },
  34632. },
  34633. [
  34634. {
  34635. name: "Small",
  34636. height: math.unit(26*5/9, "feet")
  34637. },
  34638. {
  34639. name: "Normal",
  34640. height: math.unit(26, "feet"),
  34641. default: true
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(8 + 9/12, "feet"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/xander/front.svg",
  34653. extra: 1237/974,
  34654. bottom: 94/1331
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(8 + 9/12, "feet"),
  34662. default: true
  34663. },
  34664. {
  34665. name: "Gaze Grabber",
  34666. height: math.unit(13 + 8/12, "feet")
  34667. },
  34668. {
  34669. name: "Jaw Dropper",
  34670. height: math.unit(27, "feet")
  34671. },
  34672. {
  34673. name: "Show Stopper",
  34674. height: math.unit(136, "feet")
  34675. },
  34676. {
  34677. name: "Superstar",
  34678. height: math.unit(1.9e6, "miles")
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34684. {
  34685. side: {
  34686. height: math.unit(2100, "feet"),
  34687. name: "Side",
  34688. image: {
  34689. source: "./media/characters/osiris/side.svg",
  34690. extra: 1105/939,
  34691. bottom: 167/1272
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Macro",
  34698. height: math.unit(2100, "feet"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(6 + 8/12, "feet"),
  34708. weight: math.unit(225, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/rhys-londe/front.svg",
  34712. extra: 2258/2141,
  34713. bottom: 188/2446
  34714. }
  34715. },
  34716. back: {
  34717. height: math.unit(6 + 8/12, "feet"),
  34718. weight: math.unit(225, "lb"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/rhys-londe/back.svg",
  34722. extra: 2237/2137,
  34723. bottom: 63/2300
  34724. }
  34725. },
  34726. frontNsfw: {
  34727. height: math.unit(6 + 8/12, "feet"),
  34728. weight: math.unit(225, "lb"),
  34729. name: "Front (NSFW)",
  34730. image: {
  34731. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34732. extra: 2258/2141,
  34733. bottom: 188/2446
  34734. }
  34735. },
  34736. backNsfw: {
  34737. height: math.unit(6 + 8/12, "feet"),
  34738. weight: math.unit(225, "lb"),
  34739. name: "Back (NSFW)",
  34740. image: {
  34741. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34742. extra: 2237/2137,
  34743. bottom: 63/2300
  34744. }
  34745. },
  34746. dick: {
  34747. height: math.unit(30, "inches"),
  34748. name: "Dick",
  34749. image: {
  34750. source: "./media/characters/rhys-londe/dick.svg"
  34751. }
  34752. },
  34753. maw: {
  34754. height: math.unit(1.6, "feet"),
  34755. name: "Maw",
  34756. image: {
  34757. source: "./media/characters/rhys-londe/maw.svg"
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Normal",
  34764. height: math.unit(6 + 8/12, "feet"),
  34765. default: true
  34766. },
  34767. ]
  34768. ))
  34769. characterMakers.push(() => makeCharacter(
  34770. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34771. {
  34772. front: {
  34773. height: math.unit(3 + 10/12, "feet"),
  34774. weight: math.unit(90, "lb"),
  34775. name: "Front",
  34776. image: {
  34777. source: "./media/characters/taivas-ensim/front.svg",
  34778. extra: 1327/1216,
  34779. bottom: 96/1423
  34780. }
  34781. },
  34782. back: {
  34783. height: math.unit(3 + 10/12, "feet"),
  34784. weight: math.unit(90, "lb"),
  34785. name: "Back",
  34786. image: {
  34787. source: "./media/characters/taivas-ensim/back.svg",
  34788. extra: 1355/1247,
  34789. bottom: 11/1366
  34790. }
  34791. },
  34792. frontNsfw: {
  34793. height: math.unit(3 + 10/12, "feet"),
  34794. weight: math.unit(90, "lb"),
  34795. name: "Front (NSFW)",
  34796. image: {
  34797. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34798. extra: 1327/1216,
  34799. bottom: 96/1423
  34800. }
  34801. },
  34802. backNsfw: {
  34803. height: math.unit(3 + 10/12, "feet"),
  34804. weight: math.unit(90, "lb"),
  34805. name: "Back (NSFW)",
  34806. image: {
  34807. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34808. extra: 1355/1247,
  34809. bottom: 11/1366
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Normal",
  34816. height: math.unit(3 + 10/12, "feet"),
  34817. default: true
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(9 + 6/12, "feet"),
  34826. weight: math.unit(940, "lb"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/byliss/front.svg",
  34830. extra: 1327/1290,
  34831. bottom: 82/1409
  34832. }
  34833. },
  34834. back: {
  34835. height: math.unit(9 + 6/12, "feet"),
  34836. weight: math.unit(940, "lb"),
  34837. name: "Back",
  34838. image: {
  34839. source: "./media/characters/byliss/back.svg",
  34840. extra: 1376/1349,
  34841. bottom: 9/1385
  34842. }
  34843. },
  34844. frontNsfw: {
  34845. height: math.unit(9 + 6/12, "feet"),
  34846. weight: math.unit(940, "lb"),
  34847. name: "Front (NSFW)",
  34848. image: {
  34849. source: "./media/characters/byliss/front-nsfw.svg",
  34850. extra: 1327/1290,
  34851. bottom: 82/1409
  34852. }
  34853. },
  34854. backNsfw: {
  34855. height: math.unit(9 + 6/12, "feet"),
  34856. weight: math.unit(940, "lb"),
  34857. name: "Back (NSFW)",
  34858. image: {
  34859. source: "./media/characters/byliss/back-nsfw.svg",
  34860. extra: 1376/1349,
  34861. bottom: 9/1385
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(9 + 6/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(5 + 2/12, "feet"),
  34878. weight: math.unit(200, "lb"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/noraly/front.svg",
  34882. extra: 4985/4773,
  34883. bottom: 150/5135
  34884. }
  34885. },
  34886. full: {
  34887. height: math.unit(5 + 2/12, "feet"),
  34888. weight: math.unit(164, "lb"),
  34889. name: "Full",
  34890. image: {
  34891. source: "./media/characters/noraly/full.svg",
  34892. extra: 1114/1059,
  34893. bottom: 35/1149
  34894. }
  34895. },
  34896. fuller: {
  34897. height: math.unit(5 + 2/12, "feet"),
  34898. weight: math.unit(230, "lb"),
  34899. name: "Fuller",
  34900. image: {
  34901. source: "./media/characters/noraly/fuller.svg",
  34902. extra: 1114/1059,
  34903. bottom: 35/1149
  34904. }
  34905. },
  34906. fullest: {
  34907. height: math.unit(5 + 2/12, "feet"),
  34908. weight: math.unit(300, "lb"),
  34909. name: "Fullest",
  34910. image: {
  34911. source: "./media/characters/noraly/fullest.svg",
  34912. extra: 1114/1059,
  34913. bottom: 35/1149
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(5 + 2/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34927. {
  34928. front: {
  34929. height: math.unit(5 + 2/12, "feet"),
  34930. weight: math.unit(210, "lb"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/pera/front.svg",
  34934. extra: 1560/1531,
  34935. bottom: 165/1725
  34936. }
  34937. },
  34938. back: {
  34939. height: math.unit(5 + 2/12, "feet"),
  34940. weight: math.unit(210, "lb"),
  34941. name: "Back",
  34942. image: {
  34943. source: "./media/characters/pera/back.svg",
  34944. extra: 1523/1493,
  34945. bottom: 152/1675
  34946. }
  34947. },
  34948. dick: {
  34949. height: math.unit(2.4, "feet"),
  34950. name: "Dick",
  34951. image: {
  34952. source: "./media/characters/pera/dick.svg"
  34953. }
  34954. },
  34955. },
  34956. [
  34957. {
  34958. name: "Normal",
  34959. height: math.unit(5 + 2/12, "feet"),
  34960. default: true
  34961. },
  34962. ]
  34963. ))
  34964. characterMakers.push(() => makeCharacter(
  34965. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34966. {
  34967. front: {
  34968. height: math.unit(12, "feet"),
  34969. weight: math.unit(3200, "lb"),
  34970. name: "Front",
  34971. image: {
  34972. source: "./media/characters/julian/front.svg",
  34973. extra: 2962/2701,
  34974. bottom: 184/3146
  34975. }
  34976. },
  34977. maw: {
  34978. height: math.unit(5.35, "feet"),
  34979. name: "Maw",
  34980. image: {
  34981. source: "./media/characters/julian/maw.svg"
  34982. }
  34983. },
  34984. paw: {
  34985. height: math.unit(3.07, "feet"),
  34986. name: "Paw",
  34987. image: {
  34988. source: "./media/characters/julian/paw.svg"
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Default",
  34995. height: math.unit(12, "feet"),
  34996. default: true
  34997. },
  34998. {
  34999. name: "Big",
  35000. height: math.unit(50, "feet")
  35001. },
  35002. {
  35003. name: "Really Big",
  35004. height: math.unit(1, "mile")
  35005. },
  35006. {
  35007. name: "Extremely Big",
  35008. height: math.unit(100, "miles")
  35009. },
  35010. {
  35011. name: "Planet Hugger",
  35012. height: math.unit(200, "megameters")
  35013. },
  35014. {
  35015. name: "Unreasonably Big",
  35016. height: math.unit(1e300, "meters")
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35022. {
  35023. solgooleo: {
  35024. height: math.unit(4, "meters"),
  35025. weight: math.unit(6000*1.5, "kg"),
  35026. volume: math.unit(6000, "liters"),
  35027. name: "Solgooleo",
  35028. image: {
  35029. source: "./media/characters/pi/solgooleo.svg",
  35030. extra: 388/331,
  35031. bottom: 29/417
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(4, "meters"),
  35039. default: true
  35040. },
  35041. ]
  35042. ))
  35043. characterMakers.push(() => makeCharacter(
  35044. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35045. {
  35046. front: {
  35047. height: math.unit(8, "feet"),
  35048. weight: math.unit(4, "tons"),
  35049. name: "Front",
  35050. image: {
  35051. source: "./media/characters/shaun/front.svg",
  35052. extra: 503/495,
  35053. bottom: 20/523
  35054. }
  35055. },
  35056. back: {
  35057. height: math.unit(8, "feet"),
  35058. weight: math.unit(4, "tons"),
  35059. name: "Back",
  35060. image: {
  35061. source: "./media/characters/shaun/back.svg",
  35062. extra: 487/480,
  35063. bottom: 20/507
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Lorg",
  35070. height: math.unit(8, "feet"),
  35071. default: true
  35072. },
  35073. ]
  35074. ))
  35075. characterMakers.push(() => makeCharacter(
  35076. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35077. {
  35078. frontAnthro: {
  35079. height: math.unit(7, "feet"),
  35080. name: "Front",
  35081. image: {
  35082. source: "./media/characters/sini/front-anthro.svg",
  35083. extra: 726/678,
  35084. bottom: 35/761
  35085. },
  35086. form: "anthro",
  35087. default: true
  35088. },
  35089. backAnthro: {
  35090. height: math.unit(7, "feet"),
  35091. name: "Back",
  35092. image: {
  35093. source: "./media/characters/sini/back-anthro.svg",
  35094. extra: 743/701,
  35095. bottom: 12/755
  35096. },
  35097. form: "anthro",
  35098. },
  35099. frontAnthroNsfw: {
  35100. height: math.unit(7, "feet"),
  35101. name: "Front (NSFW)",
  35102. image: {
  35103. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35104. extra: 726/678,
  35105. bottom: 35/761
  35106. },
  35107. form: "anthro"
  35108. },
  35109. backAnthroNsfw: {
  35110. height: math.unit(7, "feet"),
  35111. name: "Back (NSFW)",
  35112. image: {
  35113. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35114. extra: 743/701,
  35115. bottom: 12/755
  35116. },
  35117. form: "anthro",
  35118. },
  35119. mawAnthro: {
  35120. height: math.unit(2.14, "feet"),
  35121. name: "Maw",
  35122. image: {
  35123. source: "./media/characters/sini/maw-anthro.svg"
  35124. },
  35125. form: "anthro"
  35126. },
  35127. dick: {
  35128. height: math.unit(1.45, "feet"),
  35129. name: "Dick",
  35130. image: {
  35131. source: "./media/characters/sini/dick-anthro.svg"
  35132. },
  35133. form: "anthro"
  35134. },
  35135. feral: {
  35136. height: math.unit(16, "feet"),
  35137. name: "Feral",
  35138. image: {
  35139. source: "./media/characters/sini/feral.svg",
  35140. extra: 814/605,
  35141. bottom: 11/825
  35142. },
  35143. form: "feral",
  35144. default: true
  35145. },
  35146. feralNsfw: {
  35147. height: math.unit(16, "feet"),
  35148. name: "Feral (NSFW)",
  35149. image: {
  35150. source: "./media/characters/sini/feral-nsfw.svg",
  35151. extra: 814/605,
  35152. bottom: 11/825
  35153. },
  35154. form: "feral"
  35155. },
  35156. mawFeral: {
  35157. height: math.unit(5.66, "feet"),
  35158. name: "Maw",
  35159. image: {
  35160. source: "./media/characters/sini/maw-feral.svg"
  35161. },
  35162. form: "feral",
  35163. },
  35164. pawFeral: {
  35165. height: math.unit(5.17, "feet"),
  35166. name: "Paw",
  35167. image: {
  35168. source: "./media/characters/sini/paw-feral.svg"
  35169. },
  35170. form: "feral",
  35171. },
  35172. rumpFeral: {
  35173. height: math.unit(13.11, "feet"),
  35174. name: "Rump",
  35175. image: {
  35176. source: "./media/characters/sini/rump-feral.svg"
  35177. },
  35178. form: "feral",
  35179. },
  35180. dickFeral: {
  35181. height: math.unit(1, "feet"),
  35182. name: "Dick",
  35183. image: {
  35184. source: "./media/characters/sini/dick-feral.svg"
  35185. },
  35186. form: "feral",
  35187. },
  35188. eyeFeral: {
  35189. height: math.unit(1.23, "feet"),
  35190. name: "Eye",
  35191. image: {
  35192. source: "./media/characters/sini/eye-feral.svg"
  35193. },
  35194. form: "feral",
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(7, "feet"),
  35201. default: true,
  35202. form: "anthro"
  35203. },
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(16, "feet"),
  35207. default: true,
  35208. form: "feral"
  35209. },
  35210. ],
  35211. {
  35212. "anthro": {
  35213. name: "Anthro",
  35214. default: true
  35215. },
  35216. "feral": {
  35217. name: "Feral",
  35218. }
  35219. }
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35223. {
  35224. side: {
  35225. height: math.unit(47.2, "meters"),
  35226. weight: math.unit(10000, "tons"),
  35227. name: "Side",
  35228. image: {
  35229. source: "./media/characters/raylldo/side.svg",
  35230. extra: 2363/642,
  35231. bottom: 221/2584
  35232. }
  35233. },
  35234. top: {
  35235. height: math.unit(240, "meters"),
  35236. weight: math.unit(10000, "tons"),
  35237. name: "Top",
  35238. image: {
  35239. source: "./media/characters/raylldo/top.svg"
  35240. }
  35241. },
  35242. bottom: {
  35243. height: math.unit(240, "meters"),
  35244. weight: math.unit(10000, "tons"),
  35245. name: "Bottom",
  35246. image: {
  35247. source: "./media/characters/raylldo/bottom.svg"
  35248. }
  35249. },
  35250. head: {
  35251. height: math.unit(38.6, "meters"),
  35252. name: "Head",
  35253. image: {
  35254. source: "./media/characters/raylldo/head.svg",
  35255. extra: 1335/1112,
  35256. bottom: 0/1335
  35257. }
  35258. },
  35259. maw: {
  35260. height: math.unit(16.37, "meters"),
  35261. name: "Maw",
  35262. image: {
  35263. source: "./media/characters/raylldo/maw.svg",
  35264. extra: 883/660,
  35265. bottom: 0/883
  35266. },
  35267. extraAttributes: {
  35268. preyCapacity: {
  35269. name: "Capacity",
  35270. power: 3,
  35271. type: "volume",
  35272. base: math.unit(1000, "people")
  35273. },
  35274. tongueSize: {
  35275. name: "Tongue Size",
  35276. power: 2,
  35277. type: "area",
  35278. base: math.unit(21, "m^2")
  35279. }
  35280. }
  35281. },
  35282. forepaw: {
  35283. height: math.unit(18, "meters"),
  35284. name: "Forepaw",
  35285. image: {
  35286. source: "./media/characters/raylldo/forepaw.svg"
  35287. }
  35288. },
  35289. hindpaw: {
  35290. height: math.unit(23, "meters"),
  35291. name: "Hindpaw",
  35292. image: {
  35293. source: "./media/characters/raylldo/hindpaw.svg"
  35294. }
  35295. },
  35296. genitals: {
  35297. height: math.unit(42, "meters"),
  35298. name: "Genitals",
  35299. image: {
  35300. source: "./media/characters/raylldo/genitals.svg"
  35301. }
  35302. },
  35303. },
  35304. [
  35305. {
  35306. name: "Normal",
  35307. height: math.unit(47.2, "meters"),
  35308. default: true
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35314. {
  35315. anthroFront: {
  35316. height: math.unit(9, "feet"),
  35317. weight: math.unit(600, "lb"),
  35318. name: "Anthro (Front)",
  35319. image: {
  35320. source: "./media/characters/glint/anthro-front.svg",
  35321. extra: 1097/1018,
  35322. bottom: 28/1125
  35323. }
  35324. },
  35325. anthroBack: {
  35326. height: math.unit(9, "feet"),
  35327. weight: math.unit(600, "lb"),
  35328. name: "Anthro (Back)",
  35329. image: {
  35330. source: "./media/characters/glint/anthro-back.svg",
  35331. extra: 1154/997,
  35332. bottom: 36/1190
  35333. }
  35334. },
  35335. feral: {
  35336. height: math.unit(11, "feet"),
  35337. weight: math.unit(50000, "lb"),
  35338. name: "Feral",
  35339. image: {
  35340. source: "./media/characters/glint/feral.svg",
  35341. extra: 3035/1585,
  35342. bottom: 1169/4204
  35343. }
  35344. },
  35345. dickAnthro: {
  35346. height: math.unit(0.7, "meters"),
  35347. name: "Dick (Anthro)",
  35348. image: {
  35349. source: "./media/characters/glint/dick-anthro.svg"
  35350. }
  35351. },
  35352. dickFeral: {
  35353. height: math.unit(2.65, "meters"),
  35354. name: "Dick (Feral)",
  35355. image: {
  35356. source: "./media/characters/glint/dick-feral.svg"
  35357. }
  35358. },
  35359. slitHidden: {
  35360. height: math.unit(5.85, "meters"),
  35361. name: "Slit (Hidden)",
  35362. image: {
  35363. source: "./media/characters/glint/slit-hidden.svg"
  35364. }
  35365. },
  35366. slitErect: {
  35367. height: math.unit(5.85, "meters"),
  35368. name: "Slit (Erect)",
  35369. image: {
  35370. source: "./media/characters/glint/slit-erect.svg"
  35371. }
  35372. },
  35373. mawAnthro: {
  35374. height: math.unit(0.63, "meters"),
  35375. name: "Maw (Anthro)",
  35376. image: {
  35377. source: "./media/characters/glint/maw.svg"
  35378. }
  35379. },
  35380. mawFeral: {
  35381. height: math.unit(2.89, "meters"),
  35382. name: "Maw (Feral)",
  35383. image: {
  35384. source: "./media/characters/glint/maw.svg"
  35385. }
  35386. },
  35387. },
  35388. [
  35389. {
  35390. name: "Normal",
  35391. height: math.unit(9, "feet"),
  35392. default: true
  35393. },
  35394. ]
  35395. ))
  35396. characterMakers.push(() => makeCharacter(
  35397. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35398. {
  35399. side: {
  35400. height: math.unit(15, "feet"),
  35401. weight: math.unit(5000, "kg"),
  35402. name: "Side",
  35403. image: {
  35404. source: "./media/characters/kairne/side.svg",
  35405. extra: 979/811,
  35406. bottom: 13/992
  35407. }
  35408. },
  35409. front: {
  35410. height: math.unit(15, "feet"),
  35411. weight: math.unit(5000, "kg"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/kairne/front.svg",
  35415. extra: 908/814,
  35416. bottom: 26/934
  35417. }
  35418. },
  35419. sideNsfw: {
  35420. height: math.unit(15, "feet"),
  35421. weight: math.unit(5000, "kg"),
  35422. name: "Side (NSFW)",
  35423. image: {
  35424. source: "./media/characters/kairne/side-nsfw.svg",
  35425. extra: 979/811,
  35426. bottom: 13/992
  35427. }
  35428. },
  35429. frontNsfw: {
  35430. height: math.unit(15, "feet"),
  35431. weight: math.unit(5000, "kg"),
  35432. name: "Front (NSFW)",
  35433. image: {
  35434. source: "./media/characters/kairne/front-nsfw.svg",
  35435. extra: 908/814,
  35436. bottom: 26/934
  35437. }
  35438. },
  35439. dickCaged: {
  35440. height: math.unit(0.65, "meters"),
  35441. name: "Dick-caged",
  35442. image: {
  35443. source: "./media/characters/kairne/dick-caged.svg"
  35444. }
  35445. },
  35446. dick: {
  35447. height: math.unit(0.79, "meters"),
  35448. name: "Dick",
  35449. image: {
  35450. source: "./media/characters/kairne/dick.svg"
  35451. }
  35452. },
  35453. genitals: {
  35454. height: math.unit(1.29, "meters"),
  35455. name: "Genitals",
  35456. image: {
  35457. source: "./media/characters/kairne/genitals.svg"
  35458. }
  35459. },
  35460. maw: {
  35461. height: math.unit(1.73, "meters"),
  35462. name: "Maw",
  35463. image: {
  35464. source: "./media/characters/kairne/maw.svg"
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(15, "feet"),
  35472. default: true
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(5 + 8/12, "feet"),
  35481. weight: math.unit(139, "lb"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/biscuit-jackal/front.svg",
  35485. extra: 2106/1961,
  35486. bottom: 58/2164
  35487. }
  35488. },
  35489. back: {
  35490. height: math.unit(5 + 8/12, "feet"),
  35491. weight: math.unit(139, "lb"),
  35492. name: "Back",
  35493. image: {
  35494. source: "./media/characters/biscuit-jackal/back.svg",
  35495. extra: 2132/1976,
  35496. bottom: 57/2189
  35497. }
  35498. },
  35499. werejackal: {
  35500. height: math.unit(6 + 3/12, "feet"),
  35501. weight: math.unit(188, "lb"),
  35502. name: "Werejackal",
  35503. image: {
  35504. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35505. extra: 2373/2178,
  35506. bottom: 53/2426
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(5 + 8/12, "feet"),
  35514. default: true
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(140, "cm"),
  35523. weight: math.unit(45, "kg"),
  35524. name: "Front",
  35525. image: {
  35526. source: "./media/characters/tayra-white/front.svg",
  35527. extra: 2229/2192,
  35528. bottom: 75/2304
  35529. }
  35530. },
  35531. },
  35532. [
  35533. {
  35534. name: "Normal",
  35535. height: math.unit(140, "cm"),
  35536. default: true
  35537. },
  35538. ]
  35539. ))
  35540. characterMakers.push(() => makeCharacter(
  35541. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35542. {
  35543. front: {
  35544. height: math.unit(4 + 5/12, "feet"),
  35545. name: "Front",
  35546. image: {
  35547. source: "./media/characters/scoop/front.svg",
  35548. extra: 1257/1136,
  35549. bottom: 69/1326
  35550. }
  35551. },
  35552. back: {
  35553. height: math.unit(4 + 5/12, "feet"),
  35554. name: "Back",
  35555. image: {
  35556. source: "./media/characters/scoop/back.svg",
  35557. extra: 1321/1152,
  35558. bottom: 32/1353
  35559. }
  35560. },
  35561. maw: {
  35562. height: math.unit(0.68, "feet"),
  35563. name: "Maw",
  35564. image: {
  35565. source: "./media/characters/scoop/maw.svg"
  35566. }
  35567. },
  35568. },
  35569. [
  35570. {
  35571. name: "Really Small",
  35572. height: math.unit(1, "mm")
  35573. },
  35574. {
  35575. name: "Micro",
  35576. height: math.unit(1, "inch")
  35577. },
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(4 + 5/12, "feet"),
  35581. default: true
  35582. },
  35583. {
  35584. name: "Macro",
  35585. height: math.unit(200, "feet")
  35586. },
  35587. {
  35588. name: "Megamacro",
  35589. height: math.unit(3240, "feet")
  35590. },
  35591. {
  35592. name: "Teramacro",
  35593. height: math.unit(2500, "miles")
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(15 + 7/12, "feet"),
  35602. weight: math.unit(1150, "tons"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/saphinara/front.svg",
  35606. extra: 1837/1643,
  35607. bottom: 84/1921
  35608. },
  35609. form: "normal",
  35610. default: true
  35611. },
  35612. side: {
  35613. height: math.unit(15 + 7/12, "feet"),
  35614. weight: math.unit(1150, "tons"),
  35615. name: "Side",
  35616. image: {
  35617. source: "./media/characters/saphinara/side.svg",
  35618. extra: 605/547,
  35619. bottom: 6/611
  35620. },
  35621. form: "normal"
  35622. },
  35623. back: {
  35624. height: math.unit(15 + 7/12, "feet"),
  35625. weight: math.unit(1150, "tons"),
  35626. name: "Back",
  35627. image: {
  35628. source: "./media/characters/saphinara/back.svg",
  35629. extra: 591/531,
  35630. bottom: 13/604
  35631. },
  35632. form: "normal"
  35633. },
  35634. frontTail: {
  35635. height: math.unit(15 + 7/12, "feet"),
  35636. weight: math.unit(1150, "tons"),
  35637. name: "Front (Full Tail)",
  35638. image: {
  35639. source: "./media/characters/saphinara/front-tail.svg",
  35640. extra: 2256/1630,
  35641. bottom: 261/2517
  35642. },
  35643. form: "normal"
  35644. },
  35645. insides: {
  35646. height: math.unit(11.92, "feet"),
  35647. name: "Insides",
  35648. image: {
  35649. source: "./media/characters/saphinara/insides.svg"
  35650. },
  35651. form: "normal"
  35652. },
  35653. head: {
  35654. height: math.unit(4.17, "feet"),
  35655. name: "Head",
  35656. image: {
  35657. source: "./media/characters/saphinara/head.svg"
  35658. },
  35659. form: "normal"
  35660. },
  35661. tongue: {
  35662. height: math.unit(4.60, "feet"),
  35663. name: "Tongue",
  35664. image: {
  35665. source: "./media/characters/saphinara/tongue.svg"
  35666. },
  35667. form: "normal"
  35668. },
  35669. headEnraged: {
  35670. height: math.unit(5.55, "feet"),
  35671. name: "Head (Enraged)",
  35672. image: {
  35673. source: "./media/characters/saphinara/head-enraged.svg"
  35674. },
  35675. form: "normal"
  35676. },
  35677. wings: {
  35678. height: math.unit(11.95, "feet"),
  35679. name: "Wings",
  35680. image: {
  35681. source: "./media/characters/saphinara/wings.svg"
  35682. },
  35683. form: "normal"
  35684. },
  35685. feathers: {
  35686. height: math.unit(8.92, "feet"),
  35687. name: "Feathers",
  35688. image: {
  35689. source: "./media/characters/saphinara/feathers.svg"
  35690. },
  35691. form: "normal"
  35692. },
  35693. shackles: {
  35694. height: math.unit(2, "feet"),
  35695. name: "Shackles",
  35696. image: {
  35697. source: "./media/characters/saphinara/shackles.svg"
  35698. },
  35699. form: "normal"
  35700. },
  35701. eyes: {
  35702. height: math.unit(1.331, "feet"),
  35703. name: "Eyes",
  35704. image: {
  35705. source: "./media/characters/saphinara/eyes.svg"
  35706. },
  35707. form: "normal"
  35708. },
  35709. eyesEnraged: {
  35710. height: math.unit(1.331, "feet"),
  35711. name: "Eyes (Enraged)",
  35712. image: {
  35713. source: "./media/characters/saphinara/eyes-enraged.svg"
  35714. },
  35715. form: "normal"
  35716. },
  35717. trueFormSide: {
  35718. height: math.unit(200, "feet"),
  35719. weight: math.unit(1e7, "tons"),
  35720. name: "Side",
  35721. image: {
  35722. source: "./media/characters/saphinara/true-form-side.svg",
  35723. extra: 1399/770,
  35724. bottom: 97/1496
  35725. },
  35726. form: "true-form",
  35727. default: true
  35728. },
  35729. trueFormMaw: {
  35730. height: math.unit(71.5, "feet"),
  35731. name: "Maw",
  35732. image: {
  35733. source: "./media/characters/saphinara/true-form-maw.svg",
  35734. extra: 2302/1453,
  35735. bottom: 0/2302
  35736. },
  35737. form: "true-form"
  35738. },
  35739. meowberusSide: {
  35740. height: math.unit(75, "feet"),
  35741. weight: math.unit(180000, "kg"),
  35742. preyCapacity: math.unit(50000, "people"),
  35743. name: "Side",
  35744. image: {
  35745. source: "./media/characters/saphinara/meowberus-side.svg",
  35746. extra: 1400/711,
  35747. bottom: 126/1526
  35748. },
  35749. form: "meowberus",
  35750. extraAttributes: {
  35751. "pawArea": {
  35752. name: "Paw Size",
  35753. power: 2,
  35754. type: "area",
  35755. base: math.unit(35, "m^2")
  35756. }
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(15 + 7/12, "feet"),
  35764. default: true,
  35765. form: "normal"
  35766. },
  35767. {
  35768. name: "Angry",
  35769. height: math.unit(30 + 6/12, "feet"),
  35770. form: "normal"
  35771. },
  35772. {
  35773. name: "Enraged",
  35774. height: math.unit(102 + 1/12, "feet"),
  35775. form: "normal"
  35776. },
  35777. {
  35778. name: "True",
  35779. height: math.unit(200, "feet"),
  35780. default: true,
  35781. form: "true-form"
  35782. },
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(75, "feet"),
  35786. default: true,
  35787. form: "meowberus"
  35788. },
  35789. ],
  35790. {
  35791. "normal": {
  35792. name: "Normal",
  35793. default: true
  35794. },
  35795. "true-form": {
  35796. name: "True Form"
  35797. },
  35798. "meowberus": {
  35799. name: "Meowberus",
  35800. },
  35801. }
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35805. {
  35806. front: {
  35807. height: math.unit(6 + 8/12, "feet"),
  35808. weight: math.unit(300, "lb"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/jrain/front.svg",
  35812. extra: 3039/2865,
  35813. bottom: 399/3438
  35814. }
  35815. },
  35816. back: {
  35817. height: math.unit(6 + 8/12, "feet"),
  35818. weight: math.unit(300, "lb"),
  35819. name: "Back",
  35820. image: {
  35821. source: "./media/characters/jrain/back.svg",
  35822. extra: 3089/2938,
  35823. bottom: 172/3261
  35824. }
  35825. },
  35826. head: {
  35827. height: math.unit(2.14, "feet"),
  35828. name: "Head",
  35829. image: {
  35830. source: "./media/characters/jrain/head.svg"
  35831. }
  35832. },
  35833. maw: {
  35834. height: math.unit(1.77, "feet"),
  35835. name: "Maw",
  35836. image: {
  35837. source: "./media/characters/jrain/maw.svg"
  35838. }
  35839. },
  35840. leftHand: {
  35841. height: math.unit(1.1, "feet"),
  35842. name: "Left Hand",
  35843. image: {
  35844. source: "./media/characters/jrain/left-hand.svg"
  35845. }
  35846. },
  35847. rightHand: {
  35848. height: math.unit(1.1, "feet"),
  35849. name: "Right Hand",
  35850. image: {
  35851. source: "./media/characters/jrain/right-hand.svg"
  35852. }
  35853. },
  35854. eye: {
  35855. height: math.unit(0.35, "feet"),
  35856. name: "Eye",
  35857. image: {
  35858. source: "./media/characters/jrain/eye.svg"
  35859. }
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(6 + 8/12, "feet"),
  35866. default: true
  35867. },
  35868. {
  35869. name: "Casually Large",
  35870. height: math.unit(25, "feet")
  35871. },
  35872. {
  35873. name: "Giant",
  35874. height: math.unit(100, "feet")
  35875. },
  35876. {
  35877. name: "Kaiju",
  35878. height: math.unit(300, "feet")
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35884. {
  35885. dragon: {
  35886. height: math.unit(5, "meters"),
  35887. name: "Dragon",
  35888. image: {
  35889. source: "./media/characters/sabrina/dragon.svg",
  35890. extra: 3670 / 2365,
  35891. bottom: 333 / 4003
  35892. }
  35893. },
  35894. gryphon: {
  35895. height: math.unit(3, "meters"),
  35896. name: "Gryphon",
  35897. image: {
  35898. source: "./media/characters/sabrina/gryphon.svg",
  35899. extra: 1576 / 945,
  35900. bottom: 71 / 1647
  35901. }
  35902. },
  35903. snake: {
  35904. height: math.unit(12, "meters"),
  35905. name: "Snake",
  35906. image: {
  35907. source: "./media/characters/sabrina/snake.svg",
  35908. extra: 1758 / 1320,
  35909. bottom: 186 / 1944
  35910. }
  35911. },
  35912. collar: {
  35913. height: math.unit(1.86, "meters"),
  35914. name: "Collar",
  35915. image: {
  35916. source: "./media/characters/sabrina/collar.svg"
  35917. }
  35918. },
  35919. eye: {
  35920. height: math.unit(0.53, "meters"),
  35921. name: "Eye",
  35922. image: {
  35923. source: "./media/characters/sabrina/eye.svg"
  35924. }
  35925. },
  35926. foot: {
  35927. height: math.unit(1.86, "meters"),
  35928. name: "Foot",
  35929. image: {
  35930. source: "./media/characters/sabrina/foot.svg"
  35931. }
  35932. },
  35933. hand: {
  35934. height: math.unit(1.32, "meters"),
  35935. name: "Hand",
  35936. image: {
  35937. source: "./media/characters/sabrina/hand.svg"
  35938. }
  35939. },
  35940. head: {
  35941. height: math.unit(2.44, "meters"),
  35942. name: "Head",
  35943. image: {
  35944. source: "./media/characters/sabrina/head.svg"
  35945. }
  35946. },
  35947. headAngry: {
  35948. height: math.unit(2.44, "meters"),
  35949. name: "Head (Angry))",
  35950. image: {
  35951. source: "./media/characters/sabrina/head-angry.svg"
  35952. }
  35953. },
  35954. maw: {
  35955. height: math.unit(1.65, "meters"),
  35956. name: "Maw",
  35957. image: {
  35958. source: "./media/characters/sabrina/maw.svg"
  35959. }
  35960. },
  35961. spikes: {
  35962. height: math.unit(1.69, "meters"),
  35963. name: "Spikes",
  35964. image: {
  35965. source: "./media/characters/sabrina/spikes.svg"
  35966. }
  35967. },
  35968. stomach: {
  35969. height: math.unit(1.15, "meters"),
  35970. name: "Stomach",
  35971. image: {
  35972. source: "./media/characters/sabrina/stomach.svg"
  35973. }
  35974. },
  35975. tongue: {
  35976. height: math.unit(1.27, "meters"),
  35977. name: "Tongue",
  35978. image: {
  35979. source: "./media/characters/sabrina/tongue.svg"
  35980. }
  35981. },
  35982. wingDorsal: {
  35983. height: math.unit(4.85, "meters"),
  35984. name: "Wing (Dorsal)",
  35985. image: {
  35986. source: "./media/characters/sabrina/wing-dorsal.svg"
  35987. }
  35988. },
  35989. wingVentral: {
  35990. height: math.unit(4.85, "meters"),
  35991. name: "Wing (Ventral)",
  35992. image: {
  35993. source: "./media/characters/sabrina/wing-ventral.svg"
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(5, "meters"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36007. {
  36008. frontMaid: {
  36009. height: math.unit(5 + 5/12, "feet"),
  36010. weight: math.unit(130, "lb"),
  36011. name: "Front (Maid)",
  36012. image: {
  36013. source: "./media/characters/midnight-tales/front-maid.svg",
  36014. extra: 489/454,
  36015. bottom: 61/550
  36016. }
  36017. },
  36018. frontFormal: {
  36019. height: math.unit(5 + 5/12, "feet"),
  36020. weight: math.unit(130, "lb"),
  36021. name: "Front (Formal)",
  36022. image: {
  36023. source: "./media/characters/midnight-tales/front-formal.svg",
  36024. extra: 489/454,
  36025. bottom: 61/550
  36026. }
  36027. },
  36028. back: {
  36029. height: math.unit(5 + 5/12, "feet"),
  36030. weight: math.unit(130, "lb"),
  36031. name: "Back",
  36032. image: {
  36033. source: "./media/characters/midnight-tales/back.svg",
  36034. extra: 498/456,
  36035. bottom: 33/531
  36036. }
  36037. },
  36038. frontBeast: {
  36039. height: math.unit(40, "feet"),
  36040. weight: math.unit(64000, "lb"),
  36041. name: "Front (Beast)",
  36042. image: {
  36043. source: "./media/characters/midnight-tales/front-beast.svg",
  36044. extra: 927/860,
  36045. bottom: 53/980
  36046. }
  36047. },
  36048. backBeast: {
  36049. height: math.unit(40, "feet"),
  36050. weight: math.unit(64000, "lb"),
  36051. name: "Back (Beast)",
  36052. image: {
  36053. source: "./media/characters/midnight-tales/back-beast.svg",
  36054. extra: 929/855,
  36055. bottom: 16/945
  36056. }
  36057. },
  36058. footBeast: {
  36059. height: math.unit(6.7, "feet"),
  36060. name: "Foot (Beast)",
  36061. image: {
  36062. source: "./media/characters/midnight-tales/foot-beast.svg"
  36063. }
  36064. },
  36065. headBeast: {
  36066. height: math.unit(8, "feet"),
  36067. name: "Head (Beast)",
  36068. image: {
  36069. source: "./media/characters/midnight-tales/head-beast.svg"
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(5 + 5 / 12, "feet"),
  36077. default: true
  36078. },
  36079. {
  36080. name: "Macro",
  36081. height: math.unit(25, "feet")
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(5 + 10/12, "feet"),
  36090. name: "Front",
  36091. image: {
  36092. source: "./media/characters/argon/front.svg",
  36093. extra: 2009/1935,
  36094. bottom: 118/2127
  36095. }
  36096. },
  36097. back: {
  36098. height: math.unit(5 + 10/12, "feet"),
  36099. name: "Back",
  36100. image: {
  36101. source: "./media/characters/argon/back.svg",
  36102. extra: 2047/1992,
  36103. bottom: 20/2067
  36104. }
  36105. },
  36106. frontDressed: {
  36107. height: math.unit(5 + 10/12, "feet"),
  36108. name: "Front (Dressed)",
  36109. image: {
  36110. source: "./media/characters/argon/front-dressed.svg",
  36111. extra: 2009/1935,
  36112. bottom: 118/2127
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(5 + 10/12, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(8 + 6/12, "feet"),
  36129. weight: math.unit(1150, "lb"),
  36130. name: "Front",
  36131. image: {
  36132. source: "./media/characters/kichi/front.svg",
  36133. extra: 1267/1164,
  36134. bottom: 61/1328
  36135. }
  36136. },
  36137. back: {
  36138. height: math.unit(8 + 6/12, "feet"),
  36139. weight: math.unit(1150, "lb"),
  36140. name: "Back",
  36141. image: {
  36142. source: "./media/characters/kichi/back.svg",
  36143. extra: 1273/1166,
  36144. bottom: 33/1306
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(8 + 6/12, "feet"),
  36152. default: true
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(6, "feet"),
  36161. weight: math.unit(210, "lb"),
  36162. name: "Front",
  36163. image: {
  36164. source: "./media/characters/manetel-greyscale/front.svg",
  36165. extra: 350/312,
  36166. bottom: 8/358
  36167. }
  36168. },
  36169. },
  36170. [
  36171. {
  36172. name: "Micro",
  36173. height: math.unit(2, "inches")
  36174. },
  36175. {
  36176. name: "Normal",
  36177. height: math.unit(6, "feet"),
  36178. default: true
  36179. },
  36180. {
  36181. name: "Minimacro",
  36182. height: math.unit(17, "feet")
  36183. },
  36184. {
  36185. name: "Macro",
  36186. height: math.unit(117, "feet")
  36187. },
  36188. ]
  36189. ))
  36190. characterMakers.push(() => makeCharacter(
  36191. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36192. {
  36193. side: {
  36194. height: math.unit(5 + 1/12, "feet"),
  36195. weight: math.unit(418, "lb"),
  36196. name: "Side",
  36197. image: {
  36198. source: "./media/characters/softpurr/side.svg",
  36199. extra: 1993/1945,
  36200. bottom: 134/2127
  36201. }
  36202. },
  36203. front: {
  36204. height: math.unit(5 + 1/12, "feet"),
  36205. weight: math.unit(418, "lb"),
  36206. name: "Front",
  36207. image: {
  36208. source: "./media/characters/softpurr/front.svg",
  36209. extra: 1950/1856,
  36210. bottom: 174/2124
  36211. }
  36212. },
  36213. paw: {
  36214. height: math.unit(1, "feet"),
  36215. name: "Paw",
  36216. image: {
  36217. source: "./media/characters/softpurr/paw.svg"
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Normal",
  36224. height: math.unit(5 + 1/12, "feet"),
  36225. default: true
  36226. },
  36227. ]
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36231. {
  36232. front: {
  36233. height: math.unit(260, "meters"),
  36234. name: "Front",
  36235. image: {
  36236. source: "./media/characters/anahita/front.svg",
  36237. extra: 665/635,
  36238. bottom: 89/754
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Macro",
  36245. height: math.unit(260, "meters"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36252. {
  36253. front: {
  36254. height: math.unit(4 + 10/12, "feet"),
  36255. weight: math.unit(160, "lb"),
  36256. name: "Front",
  36257. image: {
  36258. source: "./media/characters/chip-mouse/front.svg",
  36259. extra: 3528/3408,
  36260. bottom: 0/3528
  36261. }
  36262. },
  36263. frontNsfw: {
  36264. height: math.unit(4 + 10/12, "feet"),
  36265. weight: math.unit(160, "lb"),
  36266. name: "Front (NSFW)",
  36267. image: {
  36268. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36269. extra: 3528/3408,
  36270. bottom: 0/3528
  36271. }
  36272. },
  36273. },
  36274. [
  36275. {
  36276. name: "Normal",
  36277. height: math.unit(4 + 10/12, "feet"),
  36278. default: true
  36279. },
  36280. ]
  36281. ))
  36282. characterMakers.push(() => makeCharacter(
  36283. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36284. {
  36285. side: {
  36286. height: math.unit(10, "feet"),
  36287. weight: math.unit(14000, "lb"),
  36288. name: "Side",
  36289. image: {
  36290. source: "./media/characters/kremm/side.svg",
  36291. extra: 1390/1053,
  36292. bottom: 90/1480
  36293. }
  36294. },
  36295. gut: {
  36296. height: math.unit(5.8, "feet"),
  36297. name: "Gut",
  36298. image: {
  36299. source: "./media/characters/kremm/gut.svg"
  36300. }
  36301. },
  36302. ass: {
  36303. height: math.unit(6.1, "feet"),
  36304. name: "Ass",
  36305. image: {
  36306. source: "./media/characters/kremm/ass.svg"
  36307. }
  36308. },
  36309. jaws: {
  36310. height: math.unit(2.2, "feet"),
  36311. name: "Jaws",
  36312. image: {
  36313. source: "./media/characters/kremm/jaws.svg"
  36314. }
  36315. },
  36316. dick: {
  36317. height: math.unit(4.26, "feet"),
  36318. name: "Dick",
  36319. image: {
  36320. source: "./media/characters/kremm/dick.svg"
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(10, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(30, "stories"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/kai/front.svg",
  36340. extra: 1892/1718,
  36341. bottom: 162/2054
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Macro",
  36348. height: math.unit(30, "stories"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(6 + 4/12, "feet"),
  36358. weight: math.unit(145, "lb"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/sykes/front.svg",
  36362. extra: 1321 / 1187,
  36363. bottom: 66 / 1387
  36364. }
  36365. },
  36366. back: {
  36367. height: math.unit(6 + 4/12, "feet"),
  36368. weight: math.unit(145, "lb"),
  36369. name: "Back",
  36370. image: {
  36371. source: "./media/characters/sykes/back.svg",
  36372. extra: 1326/1181,
  36373. bottom: 31/1357
  36374. }
  36375. },
  36376. traditionalOutfit: {
  36377. height: math.unit(6 + 4/12, "feet"),
  36378. weight: math.unit(145, "lb"),
  36379. name: "Traditional Outfit",
  36380. image: {
  36381. source: "./media/characters/sykes/traditional-outfit.svg",
  36382. extra: 1321 / 1187,
  36383. bottom: 66 / 1387
  36384. }
  36385. },
  36386. adventureOutfit: {
  36387. height: math.unit(6 + 4/12, "feet"),
  36388. weight: math.unit(145, "lb"),
  36389. name: "Adventure Outfit",
  36390. image: {
  36391. source: "./media/characters/sykes/adventure-outfit.svg",
  36392. extra: 1321 / 1187,
  36393. bottom: 66 / 1387
  36394. }
  36395. },
  36396. handLeft: {
  36397. height: math.unit(0.9, "feet"),
  36398. name: "Hand (Left)",
  36399. image: {
  36400. source: "./media/characters/sykes/hand-left.svg"
  36401. }
  36402. },
  36403. handRight: {
  36404. height: math.unit(0.839, "feet"),
  36405. name: "Hand (Right)",
  36406. image: {
  36407. source: "./media/characters/sykes/hand-right.svg"
  36408. }
  36409. },
  36410. leftFoot: {
  36411. height: math.unit(1.2, "feet"),
  36412. name: "Foot (Left)",
  36413. image: {
  36414. source: "./media/characters/sykes/foot-left.svg"
  36415. }
  36416. },
  36417. rightFoot: {
  36418. height: math.unit(1.2, "feet"),
  36419. name: "Foot (Right)",
  36420. image: {
  36421. source: "./media/characters/sykes/foot-right.svg"
  36422. }
  36423. },
  36424. maw: {
  36425. height: math.unit(1.93, "feet"),
  36426. name: "Maw",
  36427. image: {
  36428. source: "./media/characters/sykes/maw.svg"
  36429. }
  36430. },
  36431. teeth: {
  36432. height: math.unit(0.51, "feet"),
  36433. name: "Teeth",
  36434. image: {
  36435. source: "./media/characters/sykes/teeth.svg"
  36436. }
  36437. },
  36438. tongue: {
  36439. height: math.unit(2.13, "feet"),
  36440. name: "Tongue",
  36441. image: {
  36442. source: "./media/characters/sykes/tongue.svg"
  36443. }
  36444. },
  36445. uvula: {
  36446. height: math.unit(0.16, "feet"),
  36447. name: "Uvula",
  36448. image: {
  36449. source: "./media/characters/sykes/uvula.svg"
  36450. }
  36451. },
  36452. collar: {
  36453. height: math.unit(0.287, "feet"),
  36454. name: "Collar",
  36455. image: {
  36456. source: "./media/characters/sykes/collar.svg"
  36457. }
  36458. },
  36459. tail: {
  36460. height: math.unit(3.8, "feet"),
  36461. name: "Tail",
  36462. image: {
  36463. source: "./media/characters/sykes/tail.svg"
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Shrunken",
  36470. height: math.unit(5, "inches")
  36471. },
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(6 + 4 / 12, "feet"),
  36475. default: true
  36476. },
  36477. {
  36478. name: "Big",
  36479. height: math.unit(15, "feet")
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36485. {
  36486. front: {
  36487. height: math.unit(5 + 8/12, "feet"),
  36488. weight: math.unit(190, "lb"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/oven-otter/front.svg",
  36492. extra: 1809/1740,
  36493. bottom: 181/1990
  36494. }
  36495. },
  36496. back: {
  36497. height: math.unit(5 + 8/12, "feet"),
  36498. weight: math.unit(190, "lb"),
  36499. name: "Back",
  36500. image: {
  36501. source: "./media/characters/oven-otter/back.svg",
  36502. extra: 1709/1635,
  36503. bottom: 118/1827
  36504. }
  36505. },
  36506. hand: {
  36507. height: math.unit(1.07, "feet"),
  36508. name: "Hand",
  36509. image: {
  36510. source: "./media/characters/oven-otter/hand.svg"
  36511. }
  36512. },
  36513. beans: {
  36514. height: math.unit(1.74, "feet"),
  36515. name: "Beans",
  36516. image: {
  36517. source: "./media/characters/oven-otter/beans.svg"
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Micro",
  36524. height: math.unit(0.5, "inches")
  36525. },
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(5 + 8/12, "feet"),
  36529. default: true
  36530. },
  36531. {
  36532. name: "Macro",
  36533. height: math.unit(250, "feet")
  36534. },
  36535. {
  36536. name: "Really High",
  36537. height: math.unit(420, "feet")
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(5, "meters"),
  36546. weight: math.unit(292000000000000, "kg"),
  36547. name: "Front",
  36548. image: {
  36549. source: "./media/characters/devourer/front.svg",
  36550. extra: 1800/1733,
  36551. bottom: 211/2011
  36552. }
  36553. },
  36554. maw: {
  36555. height: math.unit(1.1, "meter"),
  36556. name: "Maw",
  36557. image: {
  36558. source: "./media/characters/devourer/maw.svg"
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Small",
  36565. height: math.unit(3, "meters")
  36566. },
  36567. {
  36568. name: "Large",
  36569. height: math.unit(5, "meters"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36576. {
  36577. front: {
  36578. height: math.unit(6, "feet"),
  36579. weight: math.unit(400, "lb"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/ellarby/front.svg",
  36583. extra: 1909/1763,
  36584. bottom: 80/1989
  36585. }
  36586. },
  36587. back: {
  36588. height: math.unit(6, "feet"),
  36589. weight: math.unit(400, "lb"),
  36590. name: "Back",
  36591. image: {
  36592. source: "./media/characters/ellarby/back.svg",
  36593. extra: 1914/1784,
  36594. bottom: 172/2086
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Mischief",
  36601. height: math.unit(18, "inches")
  36602. },
  36603. {
  36604. name: "Trouble",
  36605. height: math.unit(12, "feet")
  36606. },
  36607. {
  36608. name: "Havoc",
  36609. height: math.unit(200, "feet"),
  36610. default: true
  36611. },
  36612. {
  36613. name: "Pandemonium",
  36614. height: math.unit(1, "mile")
  36615. },
  36616. {
  36617. name: "Catastrophe",
  36618. height: math.unit(100, "miles")
  36619. },
  36620. ]
  36621. ))
  36622. characterMakers.push(() => makeCharacter(
  36623. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36624. {
  36625. front: {
  36626. height: math.unit(4.7, "meters"),
  36627. weight: math.unit(6500, "kg"),
  36628. name: "Front",
  36629. image: {
  36630. source: "./media/characters/vex/front.svg",
  36631. extra: 1288/1140,
  36632. bottom: 100/1388
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Normal",
  36639. height: math.unit(4.7, "meters"),
  36640. default: true
  36641. },
  36642. ]
  36643. ))
  36644. characterMakers.push(() => makeCharacter(
  36645. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36646. {
  36647. normal: {
  36648. height: math.unit(6, "feet"),
  36649. weight: math.unit(350, "lb"),
  36650. name: "Normal",
  36651. image: {
  36652. source: "./media/characters/teshy/normal.svg",
  36653. extra: 1795/1735,
  36654. bottom: 16/1811
  36655. }
  36656. },
  36657. monsterFront: {
  36658. height: math.unit(12, "feet"),
  36659. weight: math.unit(4700, "lb"),
  36660. name: "Monster (Front)",
  36661. image: {
  36662. source: "./media/characters/teshy/monster-front.svg",
  36663. extra: 2042/2034,
  36664. bottom: 128/2170
  36665. }
  36666. },
  36667. monsterSide: {
  36668. height: math.unit(12, "feet"),
  36669. weight: math.unit(4700, "lb"),
  36670. name: "Monster (Side)",
  36671. image: {
  36672. source: "./media/characters/teshy/monster-side.svg",
  36673. extra: 2067/2056,
  36674. bottom: 70/2137
  36675. }
  36676. },
  36677. monsterBack: {
  36678. height: math.unit(12, "feet"),
  36679. weight: math.unit(4700, "lb"),
  36680. name: "Monster (Back)",
  36681. image: {
  36682. source: "./media/characters/teshy/monster-back.svg",
  36683. extra: 1921/1914,
  36684. bottom: 171/2092
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(6, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36698. {
  36699. front: {
  36700. height: math.unit(6, "feet"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/ramey/front.svg",
  36704. extra: 790/787,
  36705. bottom: 27/817
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(6, "feet"),
  36713. default: true
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(5 + 5/12, "feet"),
  36722. weight: math.unit(120, "lb"),
  36723. name: "Front",
  36724. image: {
  36725. source: "./media/characters/phirae/front.svg",
  36726. extra: 2491/2436,
  36727. bottom: 38/2529
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(5 + 5/12, "feet"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36741. {
  36742. front: {
  36743. height: math.unit(5 + 3/12, "feet"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/stagglas/front.svg",
  36747. extra: 962/882,
  36748. bottom: 53/1015
  36749. }
  36750. },
  36751. feral: {
  36752. height: math.unit(335, "cm"),
  36753. name: "Feral",
  36754. image: {
  36755. source: "./media/characters/stagglas/feral.svg",
  36756. extra: 1732/1090,
  36757. bottom: 48/1780
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(5 + 3/12, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(5 + 4/12, "feet"),
  36774. weight: math.unit(145, "lb"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/starra/front.svg",
  36778. extra: 1790/1691,
  36779. bottom: 91/1881
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(5 + 4/12, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(3.5, "meters"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36799. extra: 1248/972,
  36800. bottom: 38/1286
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(3.5, "meters"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36814. {
  36815. side: {
  36816. height: math.unit(8 + 2/12, "feet"),
  36817. weight: math.unit(1240, "lb"),
  36818. name: "Side",
  36819. image: {
  36820. source: "./media/characters/mika-valentine/side.svg",
  36821. extra: 2670/2501,
  36822. bottom: 250/2920
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Normal",
  36829. height: math.unit(8 + 2/12, "feet"),
  36830. default: true
  36831. },
  36832. ]
  36833. ))
  36834. characterMakers.push(() => makeCharacter(
  36835. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36836. {
  36837. front: {
  36838. height: math.unit(7 + 2/12, "feet"),
  36839. name: "Front",
  36840. image: {
  36841. source: "./media/characters/xoltol/front.svg",
  36842. extra: 2212/2124,
  36843. bottom: 84/2296
  36844. }
  36845. },
  36846. side: {
  36847. height: math.unit(7 + 2/12, "feet"),
  36848. name: "Side",
  36849. image: {
  36850. source: "./media/characters/xoltol/side.svg",
  36851. extra: 2273/2197,
  36852. bottom: 26/2299
  36853. }
  36854. },
  36855. hand: {
  36856. height: math.unit(2.5, "feet"),
  36857. name: "Hand",
  36858. image: {
  36859. source: "./media/characters/xoltol/hand.svg"
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Small-ish",
  36866. height: math.unit(5 + 11/12, "feet")
  36867. },
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(7 + 2/12, "feet")
  36871. },
  36872. {
  36873. name: "\"Macro\"",
  36874. height: math.unit(14 + 9/12, "feet"),
  36875. default: true
  36876. },
  36877. {
  36878. name: "Alternate Height",
  36879. height: math.unit(20, "feet")
  36880. },
  36881. {
  36882. name: "Actually Macro",
  36883. height: math.unit(100, "feet")
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(5 + 2/12, "feet"),
  36892. weight: math.unit(75, "kg"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/kotetsu-redwood/front.svg",
  36896. extra: 1053/942,
  36897. bottom: 60/1113
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(5 + 2/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(2.4, "meters"),
  36914. weight: math.unit(125, "kg"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/lilith/front.svg",
  36918. extra: 1590/1513,
  36919. bottom: 203/1793
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Humanoid",
  36926. height: math.unit(2.4, "meters")
  36927. },
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(6, "meters"),
  36931. default: true
  36932. },
  36933. {
  36934. name: "Largest",
  36935. height: math.unit(55, "meters")
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(8 + 4/12, "feet"),
  36944. weight: math.unit(535, "lb"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/beh'kah-bolger/front.svg",
  36948. extra: 1660/1603,
  36949. bottom: 37/1697
  36950. }
  36951. },
  36952. },
  36953. [
  36954. {
  36955. name: "Normal",
  36956. height: math.unit(8 + 4/12, "feet"),
  36957. default: true
  36958. },
  36959. {
  36960. name: "Kaiju",
  36961. height: math.unit(250, "feet")
  36962. },
  36963. {
  36964. name: "Still Growing",
  36965. height: math.unit(10, "miles")
  36966. },
  36967. {
  36968. name: "Continental",
  36969. height: math.unit(5000, "miles")
  36970. },
  36971. {
  36972. name: "Final Form",
  36973. height: math.unit(2500000, "miles")
  36974. },
  36975. ]
  36976. ))
  36977. characterMakers.push(() => makeCharacter(
  36978. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36979. {
  36980. front: {
  36981. height: math.unit(7 + 2/12, "feet"),
  36982. weight: math.unit(230, "kg"),
  36983. name: "Front",
  36984. image: {
  36985. source: "./media/characters/tatyana-milewska/front.svg",
  36986. extra: 1199/1150,
  36987. bottom: 86/1285
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(7 + 2/12, "feet"),
  36995. default: true
  36996. },
  36997. {
  36998. name: "Big",
  36999. height: math.unit(12, "feet")
  37000. },
  37001. {
  37002. name: "Minimacro",
  37003. height: math.unit(20, "feet")
  37004. },
  37005. {
  37006. name: "Macro",
  37007. height: math.unit(120, "feet")
  37008. },
  37009. ]
  37010. ))
  37011. characterMakers.push(() => makeCharacter(
  37012. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37013. {
  37014. front: {
  37015. height: math.unit(7 + 8/12, "feet"),
  37016. weight: math.unit(152, "kg"),
  37017. name: "Front",
  37018. image: {
  37019. source: "./media/characters/helen-arri/front.svg",
  37020. extra: 440/423,
  37021. bottom: 14/454
  37022. }
  37023. },
  37024. back: {
  37025. height: math.unit(7 + 8/12, "feet"),
  37026. weight: math.unit(152, "kg"),
  37027. name: "Back",
  37028. image: {
  37029. source: "./media/characters/helen-arri/back.svg",
  37030. extra: 443/426,
  37031. bottom: 8/451
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(7 + 8/12, "feet"),
  37039. default: true
  37040. },
  37041. {
  37042. name: "Big",
  37043. height: math.unit(14, "feet")
  37044. },
  37045. {
  37046. name: "Minimacro",
  37047. height: math.unit(24, "feet")
  37048. },
  37049. {
  37050. name: "Macro",
  37051. height: math.unit(140, "feet")
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(6, "meters"),
  37060. name: "Front",
  37061. image: {
  37062. source: "./media/characters/ehanu-rehu/front.svg",
  37063. extra: 1800/1800,
  37064. bottom: 59/1859
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Normal",
  37071. height: math.unit(6, "meters"),
  37072. default: true
  37073. },
  37074. ]
  37075. ))
  37076. characterMakers.push(() => makeCharacter(
  37077. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37078. {
  37079. front: {
  37080. height: math.unit(7 + 3/12, "feet"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/renholder/front.svg",
  37084. extra: 3096/2960,
  37085. bottom: 250/3346
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal Bat",
  37092. height: math.unit(7 + 3/12, "feet"),
  37093. default: true
  37094. },
  37095. {
  37096. name: "Slightly Tall Bat",
  37097. height: math.unit(100, "feet")
  37098. },
  37099. {
  37100. name: "Big Bat",
  37101. height: math.unit(1000, "feet")
  37102. },
  37103. {
  37104. name: "City-Sized Bat",
  37105. height: math.unit(200000, "feet")
  37106. },
  37107. {
  37108. name: "Bigger Bat",
  37109. height: math.unit(10000, "miles")
  37110. },
  37111. {
  37112. name: "Solar Sized Bat",
  37113. height: math.unit(100, "AU")
  37114. },
  37115. {
  37116. name: "Galactic Bat",
  37117. height: math.unit(200000, "lightyears")
  37118. },
  37119. {
  37120. name: "Universally Known Bat",
  37121. height: math.unit(1, "universe")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(6 + 11/12, "feet"),
  37130. weight: math.unit(250, "lb"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/cookiecat/front.svg",
  37134. extra: 893/827,
  37135. bottom: 14/907
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Micro",
  37142. height: math.unit(3, "inches")
  37143. },
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(6 + 11/12, "feet"),
  37147. default: true
  37148. },
  37149. {
  37150. name: "Macro",
  37151. height: math.unit(100, "feet")
  37152. },
  37153. {
  37154. name: "Macro+",
  37155. height: math.unit(404, "feet")
  37156. },
  37157. {
  37158. name: "Megamacro",
  37159. height: math.unit(165, "miles")
  37160. },
  37161. {
  37162. name: "Planetary",
  37163. height: math.unit(4600, "miles")
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37169. {
  37170. front: {
  37171. height: math.unit(10 + 3/12, "feet"),
  37172. weight: math.unit(1500, "lb"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/tux-kusanagi/front.svg",
  37176. extra: 944/840,
  37177. bottom: 39/983
  37178. }
  37179. },
  37180. back: {
  37181. height: math.unit(10 + 3/12, "feet"),
  37182. weight: math.unit(1500, "lb"),
  37183. name: "Back",
  37184. image: {
  37185. source: "./media/characters/tux-kusanagi/back.svg",
  37186. extra: 941/842,
  37187. bottom: 28/969
  37188. }
  37189. },
  37190. rump: {
  37191. height: math.unit(5.25, "feet"),
  37192. name: "Rump",
  37193. image: {
  37194. source: "./media/characters/tux-kusanagi/rump.svg"
  37195. }
  37196. },
  37197. beak: {
  37198. height: math.unit(1.54, "feet"),
  37199. name: "Beak",
  37200. image: {
  37201. source: "./media/characters/tux-kusanagi/beak.svg"
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(10 + 3/12, "feet"),
  37209. default: true
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(58, "feet"),
  37218. weight: math.unit(200, "tons"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/uzarmazari/front.svg",
  37222. extra: 1575/1455,
  37223. bottom: 152/1727
  37224. }
  37225. },
  37226. back: {
  37227. height: math.unit(58, "feet"),
  37228. weight: math.unit(200, "tons"),
  37229. name: "Back",
  37230. image: {
  37231. source: "./media/characters/uzarmazari/back.svg",
  37232. extra: 1585/1510,
  37233. bottom: 157/1742
  37234. }
  37235. },
  37236. head: {
  37237. height: math.unit(26, "feet"),
  37238. name: "Head",
  37239. image: {
  37240. source: "./media/characters/uzarmazari/head.svg"
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Normal",
  37247. height: math.unit(58, "feet"),
  37248. default: true
  37249. },
  37250. ]
  37251. ))
  37252. characterMakers.push(() => makeCharacter(
  37253. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37254. {
  37255. side: {
  37256. height: math.unit(15, "feet"),
  37257. name: "Side",
  37258. image: {
  37259. source: "./media/characters/akitu/side.svg",
  37260. extra: 1421/1321,
  37261. bottom: 157/1578
  37262. }
  37263. },
  37264. front: {
  37265. height: math.unit(15, "feet"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/akitu/front.svg",
  37269. extra: 1435/1326,
  37270. bottom: 232/1667
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Normal",
  37277. height: math.unit(15, "feet"),
  37278. default: true
  37279. },
  37280. ]
  37281. ))
  37282. characterMakers.push(() => makeCharacter(
  37283. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37284. {
  37285. front: {
  37286. height: math.unit(10 + 8/12, "feet"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/azalie-croixland/front.svg",
  37290. extra: 1972/1856,
  37291. bottom: 31/2003
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Original Height",
  37298. height: math.unit(5 + 4/12, "feet")
  37299. },
  37300. {
  37301. name: "Normal Height",
  37302. height: math.unit(10 + 8/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37309. {
  37310. side: {
  37311. height: math.unit(7 + 1/12, "feet"),
  37312. weight: math.unit(245, "lb"),
  37313. name: "Side",
  37314. image: {
  37315. source: "./media/characters/kavus-kazian/side.svg",
  37316. extra: 349/342,
  37317. bottom: 15/364
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(7 + 1/12, "feet"),
  37325. default: true
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37331. {
  37332. normalFront: {
  37333. height: math.unit(5 + 11/12, "feet"),
  37334. name: "Front",
  37335. image: {
  37336. source: "./media/characters/moonlight-rose/normal-front.svg",
  37337. extra: 1980/1825,
  37338. bottom: 18/1998
  37339. },
  37340. form: "normal",
  37341. default: true
  37342. },
  37343. normalBack: {
  37344. height: math.unit(5 + 11/12, "feet"),
  37345. name: "Back",
  37346. image: {
  37347. source: "./media/characters/moonlight-rose/normal-back.svg",
  37348. extra: 2010/1839,
  37349. bottom: 10/2020
  37350. },
  37351. form: "normal"
  37352. },
  37353. demonFront: {
  37354. height: math.unit(1.5, "earths"),
  37355. name: "Front",
  37356. image: {
  37357. source: "./media/characters/moonlight-rose/demon.svg",
  37358. extra: 1400/1294,
  37359. bottom: 45/1445
  37360. },
  37361. form: "demon",
  37362. default: true
  37363. },
  37364. terraFront: {
  37365. height: math.unit(1.5, "earths"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/moonlight-rose/terra.svg"
  37369. },
  37370. form: "terra",
  37371. default: true
  37372. },
  37373. jupiterFront: {
  37374. height: math.unit(69911*2, "km"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37378. extra: 1367/1286,
  37379. bottom: 55/1422
  37380. },
  37381. form: "jupiter",
  37382. default: true
  37383. },
  37384. neptuneFront: {
  37385. height: math.unit(24622*2, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37389. extra: 1851/1712,
  37390. bottom: 0/1851
  37391. },
  37392. form: "neptune",
  37393. default: true
  37394. },
  37395. },
  37396. [
  37397. {
  37398. name: "\"Natural\" Height",
  37399. height: math.unit(5 + 11/12, "feet"),
  37400. form: "normal"
  37401. },
  37402. {
  37403. name: "Smallest comfortable size",
  37404. height: math.unit(40, "meters"),
  37405. form: "normal"
  37406. },
  37407. {
  37408. name: "Common size",
  37409. height: math.unit(50, "km"),
  37410. form: "normal",
  37411. default: true
  37412. },
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(1.5, "earths"),
  37416. form: "demon",
  37417. default: true
  37418. },
  37419. {
  37420. name: "Universal",
  37421. height: math.unit(15, "universes"),
  37422. form: "demon"
  37423. },
  37424. {
  37425. name: "Earth",
  37426. height: math.unit(1.5, "earths"),
  37427. form: "terra",
  37428. default: true
  37429. },
  37430. {
  37431. name: "Super Earth",
  37432. height: math.unit(67.5, "earths"),
  37433. form: "terra"
  37434. },
  37435. {
  37436. name: "Doesn't fit in a solar system...",
  37437. height: math.unit(1, "galaxy"),
  37438. form: "terra"
  37439. },
  37440. {
  37441. name: "Saturn",
  37442. height: math.unit(58232*2, "km"),
  37443. form: "jupiter"
  37444. },
  37445. {
  37446. name: "Jupiter",
  37447. height: math.unit(69911*2, "km"),
  37448. form: "jupiter",
  37449. default: true
  37450. },
  37451. {
  37452. name: "HD 100546 b",
  37453. height: math.unit(482938, "km"),
  37454. form: "jupiter"
  37455. },
  37456. {
  37457. name: "Enceladus",
  37458. height: math.unit(513*2, "km"),
  37459. form: "neptune"
  37460. },
  37461. {
  37462. name: "Europe",
  37463. height: math.unit(1560*2, "km"),
  37464. form: "neptune"
  37465. },
  37466. {
  37467. name: "Neptune",
  37468. height: math.unit(24622*2, "km"),
  37469. form: "neptune",
  37470. default: true
  37471. },
  37472. {
  37473. name: "CoRoT-9b",
  37474. height: math.unit(75067*2, "km"),
  37475. form: "neptune"
  37476. },
  37477. ],
  37478. {
  37479. "normal": {
  37480. name: "Normal",
  37481. default: true
  37482. },
  37483. "demon": {
  37484. name: "Demon"
  37485. },
  37486. "terra": {
  37487. name: "Terra"
  37488. },
  37489. "jupiter": {
  37490. name: "Jupiter"
  37491. },
  37492. "neptune": {
  37493. name: "Neptune"
  37494. }
  37495. }
  37496. ))
  37497. characterMakers.push(() => makeCharacter(
  37498. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37499. {
  37500. front: {
  37501. height: math.unit(16, "feet"),
  37502. weight: math.unit(610, "kg"),
  37503. name: "Front",
  37504. image: {
  37505. source: "./media/characters/huckle/front.svg",
  37506. extra: 1731/1625,
  37507. bottom: 33/1764
  37508. }
  37509. },
  37510. back: {
  37511. height: math.unit(16, "feet"),
  37512. weight: math.unit(610, "kg"),
  37513. name: "Back",
  37514. image: {
  37515. source: "./media/characters/huckle/back.svg",
  37516. extra: 1738/1651,
  37517. bottom: 37/1775
  37518. }
  37519. },
  37520. laughing: {
  37521. height: math.unit(3.75, "feet"),
  37522. name: "Laughing",
  37523. image: {
  37524. source: "./media/characters/huckle/laughing.svg"
  37525. }
  37526. },
  37527. angry: {
  37528. height: math.unit(4.15, "feet"),
  37529. name: "Angry",
  37530. image: {
  37531. source: "./media/characters/huckle/angry.svg"
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(16, "feet"),
  37539. default: true
  37540. },
  37541. {
  37542. name: "Mini Macro",
  37543. height: math.unit(463, "feet")
  37544. },
  37545. {
  37546. name: "Macro",
  37547. height: math.unit(1680, "meters")
  37548. },
  37549. {
  37550. name: "Mega Macro",
  37551. height: math.unit(175, "km")
  37552. },
  37553. {
  37554. name: "Terra Macro",
  37555. height: math.unit(32, "gigameters")
  37556. },
  37557. {
  37558. name: "Multiverse+",
  37559. height: math.unit(2.56e23, "yottameters")
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(6 + 9/12, "feet"),
  37568. weight: math.unit(280, "lb"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/candy/front.svg",
  37572. extra: 234/217,
  37573. bottom: 11/245
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Really Small",
  37580. height: math.unit(0.1, "nm")
  37581. },
  37582. {
  37583. name: "Micro",
  37584. height: math.unit(2, "inches")
  37585. },
  37586. {
  37587. name: "Normal",
  37588. height: math.unit(6 + 9/12, "feet"),
  37589. default: true
  37590. },
  37591. {
  37592. name: "Small Macro",
  37593. height: math.unit(69, "feet")
  37594. },
  37595. {
  37596. name: "Macro",
  37597. height: math.unit(160, "feet")
  37598. },
  37599. {
  37600. name: "Megamacro",
  37601. height: math.unit(22000, "miles")
  37602. },
  37603. {
  37604. name: "Gigamacro",
  37605. height: math.unit(50000, "miles")
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37611. {
  37612. front: {
  37613. height: math.unit(4, "feet"),
  37614. weight: math.unit(90, "lb"),
  37615. name: "Front",
  37616. image: {
  37617. source: "./media/characters/joey-mcdonald/front.svg",
  37618. extra: 1059/852,
  37619. bottom: 33/1092
  37620. }
  37621. },
  37622. back: {
  37623. height: math.unit(4, "feet"),
  37624. weight: math.unit(90, "lb"),
  37625. name: "Back",
  37626. image: {
  37627. source: "./media/characters/joey-mcdonald/back.svg",
  37628. extra: 1077/879,
  37629. bottom: 5/1082
  37630. }
  37631. },
  37632. frontKobold: {
  37633. height: math.unit(4, "feet"),
  37634. weight: math.unit(100, "lb"),
  37635. name: "Front-kobold",
  37636. image: {
  37637. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37638. extra: 1480/1367,
  37639. bottom: 0/1480
  37640. }
  37641. },
  37642. backKobold: {
  37643. height: math.unit(4, "feet"),
  37644. weight: math.unit(100, "lb"),
  37645. name: "Back-kobold",
  37646. image: {
  37647. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37648. extra: 1449/1361,
  37649. bottom: 0/1449
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(4, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(12 + 6/12, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/kass-lockheed/front.svg",
  37669. extra: 354/343,
  37670. bottom: 9/363
  37671. }
  37672. },
  37673. back: {
  37674. height: math.unit(12 + 6/12, "feet"),
  37675. name: "Back",
  37676. image: {
  37677. source: "./media/characters/kass-lockheed/back.svg",
  37678. extra: 364/352,
  37679. bottom: 3/367
  37680. }
  37681. },
  37682. dick: {
  37683. height: math.unit(3.12, "feet"),
  37684. name: "Dick",
  37685. image: {
  37686. source: "./media/characters/kass-lockheed/dick.svg"
  37687. }
  37688. },
  37689. head: {
  37690. height: math.unit(2.6, "feet"),
  37691. name: "Head",
  37692. image: {
  37693. source: "./media/characters/kass-lockheed/head.svg"
  37694. }
  37695. },
  37696. bleh: {
  37697. height: math.unit(2.85, "feet"),
  37698. name: "Bleh",
  37699. image: {
  37700. source: "./media/characters/kass-lockheed/bleh.svg"
  37701. }
  37702. },
  37703. smug: {
  37704. height: math.unit(2.85, "feet"),
  37705. name: "Smug",
  37706. image: {
  37707. source: "./media/characters/kass-lockheed/smug.svg"
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(12 + 6/12, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(6 + 2/12, "feet"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/taylor/front.svg",
  37727. extra: 639/495,
  37728. bottom: 12/651
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(6 + 2/12, "feet"),
  37736. default: true
  37737. },
  37738. {
  37739. name: "Big",
  37740. height: math.unit(15, "feet")
  37741. },
  37742. {
  37743. name: "Lorg",
  37744. height: math.unit(80, "feet")
  37745. },
  37746. {
  37747. name: "Too Lorg",
  37748. height: math.unit(120, "feet")
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(15, "feet"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/kaizer/front.svg",
  37760. extra: 1612/1436,
  37761. bottom: 43/1655
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(15, "feet"),
  37769. default: true
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(2, "feet"),
  37778. weight: math.unit(30, "lb"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/sandy/front.svg",
  37782. extra: 1439/1307,
  37783. bottom: 194/1633
  37784. }
  37785. },
  37786. },
  37787. [
  37788. {
  37789. name: "Normal",
  37790. height: math.unit(2, "feet"),
  37791. default: true
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37797. {
  37798. front: {
  37799. height: math.unit(3, "feet"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/mellvi/front.svg",
  37803. extra: 1831/1630,
  37804. bottom: 58/1889
  37805. }
  37806. },
  37807. },
  37808. [
  37809. {
  37810. name: "Normal",
  37811. height: math.unit(3, "feet"),
  37812. default: true
  37813. },
  37814. ]
  37815. ))
  37816. characterMakers.push(() => makeCharacter(
  37817. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37818. {
  37819. front: {
  37820. height: math.unit(5 + 11/12, "feet"),
  37821. weight: math.unit(200, "lb"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/shirou/front.svg",
  37825. extra: 2491/2383,
  37826. bottom: 189/2680
  37827. }
  37828. },
  37829. back: {
  37830. height: math.unit(5 + 11/12, "feet"),
  37831. weight: math.unit(200, "lb"),
  37832. name: "Back",
  37833. image: {
  37834. source: "./media/characters/shirou/back.svg",
  37835. extra: 2554/2450,
  37836. bottom: 76/2630
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(5 + 11/12, "feet"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37850. {
  37851. front: {
  37852. height: math.unit(6 + 3/12, "feet"),
  37853. weight: math.unit(177, "lb"),
  37854. name: "Front",
  37855. image: {
  37856. source: "./media/characters/noryu/front.svg",
  37857. extra: 973/885,
  37858. bottom: 10/983
  37859. }
  37860. },
  37861. },
  37862. [
  37863. {
  37864. name: "Normal",
  37865. height: math.unit(6 + 3/12, "feet"),
  37866. default: true
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(5 + 6/12, "feet"),
  37875. weight: math.unit(170, "lb"),
  37876. name: "Front",
  37877. image: {
  37878. source: "./media/characters/mevolas-rubenido/front.svg",
  37879. extra: 2109/1901,
  37880. bottom: 96/2205
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(5 + 6/12, "feet"),
  37888. default: true
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(100, "feet"),
  37897. name: "Front",
  37898. image: {
  37899. source: "./media/characters/dee/front.svg",
  37900. extra: 2153/2036,
  37901. bottom: 59/2212
  37902. }
  37903. },
  37904. back: {
  37905. height: math.unit(100, "feet"),
  37906. name: "Back",
  37907. image: {
  37908. source: "./media/characters/dee/back.svg",
  37909. extra: 2183/2058,
  37910. bottom: 75/2258
  37911. }
  37912. },
  37913. foot: {
  37914. height: math.unit(19.43, "feet"),
  37915. name: "Foot",
  37916. image: {
  37917. source: "./media/characters/dee/foot.svg"
  37918. }
  37919. },
  37920. hoof: {
  37921. height: math.unit(20.6, "feet"),
  37922. name: "Hoof",
  37923. image: {
  37924. source: "./media/characters/dee/hoof.svg"
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Macro",
  37931. height: math.unit(100, "feet"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(5 + 6/12, "feet"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/teh/front.svg",
  37944. extra: 1002/847,
  37945. bottom: 62/1064
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(5 + 6/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37959. {
  37960. side: {
  37961. height: math.unit(6 + 1/12, "feet"),
  37962. weight: math.unit(204, "lb"),
  37963. name: "Side",
  37964. image: {
  37965. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37966. extra: 974/775,
  37967. bottom: 169/1143
  37968. }
  37969. },
  37970. sitting: {
  37971. height: math.unit(6 + 2/12, "feet"),
  37972. weight: math.unit(204, "lb"),
  37973. name: "Sitting",
  37974. image: {
  37975. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37976. extra: 1175/964,
  37977. bottom: 378/1553
  37978. }
  37979. },
  37980. },
  37981. [
  37982. {
  37983. name: "Normal",
  37984. height: math.unit(6 + 1/12, "feet"),
  37985. default: true
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(6, "inches"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/tululi/front.svg",
  37997. extra: 1997/1876,
  37998. bottom: 20/2017
  37999. }
  38000. },
  38001. },
  38002. [
  38003. {
  38004. name: "Normal",
  38005. height: math.unit(6, "inches"),
  38006. default: true
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(4 + 1/12, "feet"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/star/front.svg",
  38018. extra: 1493/1189,
  38019. bottom: 48/1541
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Normal",
  38026. height: math.unit(4 + 1/12, "feet"),
  38027. default: true
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38033. {
  38034. front: {
  38035. height: math.unit(6 + 3/12, "feet"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/comet/front.svg",
  38039. extra: 1681/1462,
  38040. bottom: 26/1707
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Normal",
  38047. height: math.unit(6 + 3/12, "feet"),
  38048. default: true
  38049. },
  38050. ]
  38051. ))
  38052. characterMakers.push(() => makeCharacter(
  38053. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38054. {
  38055. front: {
  38056. height: math.unit(950, "feet"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/vortex/front.svg",
  38060. extra: 1497/1434,
  38061. bottom: 56/1553
  38062. }
  38063. },
  38064. maw: {
  38065. height: math.unit(285, "feet"),
  38066. name: "Maw",
  38067. image: {
  38068. source: "./media/characters/vortex/maw.svg"
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Macro",
  38075. height: math.unit(950, "feet"),
  38076. default: true
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(600, "feet"),
  38085. weight: math.unit(0.02, "grams"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/doodle/front.svg",
  38089. extra: 1578/1413,
  38090. bottom: 37/1615
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Macro",
  38097. height: math.unit(600, "feet"),
  38098. default: true
  38099. },
  38100. ]
  38101. ))
  38102. characterMakers.push(() => makeCharacter(
  38103. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38104. {
  38105. front: {
  38106. height: math.unit(6 + 6/12, "feet"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/jai/front.svg",
  38110. extra: 1645/1534,
  38111. bottom: 115/1760
  38112. }
  38113. },
  38114. },
  38115. [
  38116. {
  38117. name: "Normal",
  38118. height: math.unit(6 + 6/12, "feet"),
  38119. default: true
  38120. },
  38121. ]
  38122. ))
  38123. characterMakers.push(() => makeCharacter(
  38124. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38125. {
  38126. front: {
  38127. height: math.unit(6 + 8/12, "feet"),
  38128. name: "Front",
  38129. image: {
  38130. source: "./media/characters/pixel/front.svg",
  38131. extra: 1900/1735,
  38132. bottom: 63/1963
  38133. }
  38134. },
  38135. },
  38136. [
  38137. {
  38138. name: "Normal",
  38139. height: math.unit(6 + 8/12, "feet"),
  38140. default: true
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38146. {
  38147. back: {
  38148. height: math.unit(4 + 1/12, "feet"),
  38149. weight: math.unit(75, "lb"),
  38150. name: "Back",
  38151. image: {
  38152. source: "./media/characters/rhett/back.svg",
  38153. extra: 930/878,
  38154. bottom: 25/955
  38155. }
  38156. },
  38157. front: {
  38158. height: math.unit(4 + 1/12, "feet"),
  38159. weight: math.unit(75, "lb"),
  38160. name: "Front",
  38161. image: {
  38162. source: "./media/characters/rhett/front.svg",
  38163. extra: 1682/1586,
  38164. bottom: 92/1774
  38165. }
  38166. },
  38167. },
  38168. [
  38169. {
  38170. name: "Micro",
  38171. height: math.unit(8, "inches")
  38172. },
  38173. {
  38174. name: "Tiny",
  38175. height: math.unit(2, "feet")
  38176. },
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(4 + 1/12, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(3 + 3/12, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/penny/front.svg",
  38192. extra: 1406/1311,
  38193. bottom: 26/1432
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(3 + 3/12, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(4 + 11/12, "feet"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/monty/front.svg",
  38213. extra: 1479/1209,
  38214. bottom: 0/1479
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Normal",
  38221. height: math.unit(4 + 11/12, "feet"),
  38222. default: true
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38228. {
  38229. front: {
  38230. height: math.unit(8 + 4/12, "feet"),
  38231. name: "Front",
  38232. image: {
  38233. source: "./media/characters/sterling/front.svg",
  38234. extra: 1420/1236,
  38235. bottom: 27/1447
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(8 + 4/12, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(15, "feet"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/marble/front.svg",
  38255. extra: 973/937,
  38256. bottom: 32/1005
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(15, "feet"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38270. {
  38271. front: {
  38272. height: math.unit(3, "inches"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/powder/front.svg",
  38276. extra: 1504/1334,
  38277. bottom: 518/2022
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(3, "inches"),
  38285. default: true
  38286. },
  38287. ]
  38288. ))
  38289. characterMakers.push(() => makeCharacter(
  38290. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38291. {
  38292. front: {
  38293. height: math.unit(4 + 5/12, "feet"),
  38294. name: "Front",
  38295. image: {
  38296. source: "./media/characters/joey-raccoon/front.svg",
  38297. extra: 1273/1197,
  38298. bottom: 0/1273
  38299. }
  38300. },
  38301. },
  38302. [
  38303. {
  38304. name: "Normal",
  38305. height: math.unit(4 + 5/12, "feet"),
  38306. default: true
  38307. },
  38308. ]
  38309. ))
  38310. characterMakers.push(() => makeCharacter(
  38311. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38312. {
  38313. front: {
  38314. height: math.unit(8 + 4/12, "feet"),
  38315. name: "Front",
  38316. image: {
  38317. source: "./media/characters/vick/front.svg",
  38318. extra: 2187/2118,
  38319. bottom: 47/2234
  38320. }
  38321. },
  38322. },
  38323. [
  38324. {
  38325. name: "Normal",
  38326. height: math.unit(8 + 4/12, "feet"),
  38327. default: true
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38333. {
  38334. front: {
  38335. height: math.unit(5 + 5/12, "feet"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/mitsy/front.svg",
  38339. extra: 1842/1695,
  38340. bottom: 0/1842
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Normal",
  38347. height: math.unit(5 + 5/12, "feet"),
  38348. default: true
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38354. {
  38355. front: {
  38356. height: math.unit(6 + 3/12, "feet"),
  38357. name: "Front",
  38358. image: {
  38359. source: "./media/characters/silvy/front.svg",
  38360. extra: 1995/1836,
  38361. bottom: 225/2220
  38362. }
  38363. },
  38364. },
  38365. [
  38366. {
  38367. name: "Normal",
  38368. height: math.unit(6 + 3/12, "feet"),
  38369. default: true
  38370. },
  38371. ]
  38372. ))
  38373. characterMakers.push(() => makeCharacter(
  38374. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38375. {
  38376. front: {
  38377. height: math.unit(3 + 8/12, "feet"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/rodney/front.svg",
  38381. extra: 1956/1747,
  38382. bottom: 31/1987
  38383. }
  38384. },
  38385. frontDressed: {
  38386. height: math.unit(2.9, "feet"),
  38387. name: "Front (Dressed)",
  38388. image: {
  38389. source: "./media/characters/rodney/front-dressed.svg",
  38390. extra: 1382/1241,
  38391. bottom: 385/1767
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(3 + 8/12, "feet"),
  38399. default: true
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(5 + 9/12, "feet"),
  38408. weight: math.unit(194, "lbs"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/zakail-sudekai/front.svg",
  38412. extra: 2696/2533,
  38413. bottom: 248/2944
  38414. }
  38415. },
  38416. maw: {
  38417. height: math.unit(1.35, "feet"),
  38418. name: "Maw",
  38419. image: {
  38420. source: "./media/characters/zakail-sudekai/maw.svg"
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(5 + 9/12, "feet"),
  38428. default: true
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38434. {
  38435. front: {
  38436. height: math.unit(8 + 4/12, "feet"),
  38437. weight: math.unit(1200, "lb"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/eleanor/front.svg",
  38441. extra: 1226/1192,
  38442. bottom: 52/1278
  38443. }
  38444. },
  38445. back: {
  38446. height: math.unit(8 + 4/12, "feet"),
  38447. weight: math.unit(1200, "lb"),
  38448. name: "Back",
  38449. image: {
  38450. source: "./media/characters/eleanor/back.svg",
  38451. extra: 1242/1184,
  38452. bottom: 60/1302
  38453. }
  38454. },
  38455. head: {
  38456. height: math.unit(2.62, "feet"),
  38457. name: "Head",
  38458. image: {
  38459. source: "./media/characters/eleanor/head.svg"
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(8 + 4/12, "feet"),
  38467. default: true
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(8 + 4/12, "feet"),
  38476. weight: math.unit(750, "lb"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/tanya/front.svg",
  38480. extra: 1749/1615,
  38481. bottom: 33/1782
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(8 + 4/12, "feet"),
  38489. default: true
  38490. },
  38491. ]
  38492. ))
  38493. characterMakers.push(() => makeCharacter(
  38494. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38495. {
  38496. front: {
  38497. height: math.unit(5, "feet"),
  38498. weight: math.unit(225, "lb"),
  38499. name: "Front",
  38500. image: {
  38501. source: "./media/characters/cindy/front.svg",
  38502. extra: 1320/1250,
  38503. bottom: 42/1362
  38504. }
  38505. },
  38506. frontDressed: {
  38507. height: math.unit(5, "feet"),
  38508. weight: math.unit(225, "lb"),
  38509. name: "Front (Dressed)",
  38510. image: {
  38511. source: "./media/characters/cindy/front-dressed.svg",
  38512. extra: 1320/1250,
  38513. bottom: 42/1362
  38514. }
  38515. },
  38516. back: {
  38517. height: math.unit(5, "feet"),
  38518. weight: math.unit(225, "lb"),
  38519. name: "Back",
  38520. image: {
  38521. source: "./media/characters/cindy/back.svg",
  38522. extra: 1384/1346,
  38523. bottom: 14/1398
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(5, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(6 + 9/12, "feet"),
  38540. weight: math.unit(440, "lb"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/wilbur-owen/front.svg",
  38544. extra: 1575/1448,
  38545. bottom: 72/1647
  38546. }
  38547. },
  38548. back: {
  38549. height: math.unit(6 + 9/12, "feet"),
  38550. weight: math.unit(440, "lb"),
  38551. name: "Back",
  38552. image: {
  38553. source: "./media/characters/wilbur-owen/back.svg",
  38554. extra: 1578/1445,
  38555. bottom: 36/1614
  38556. }
  38557. },
  38558. },
  38559. [
  38560. {
  38561. name: "Normal",
  38562. height: math.unit(6 + 9/12, "feet"),
  38563. default: true
  38564. },
  38565. ]
  38566. ))
  38567. characterMakers.push(() => makeCharacter(
  38568. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38569. {
  38570. front: {
  38571. height: math.unit(6 + 5/12, "feet"),
  38572. weight: math.unit(650, "lb"),
  38573. name: "Front",
  38574. image: {
  38575. source: "./media/characters/keegan/front.svg",
  38576. extra: 2387/2198,
  38577. bottom: 33/2420
  38578. }
  38579. },
  38580. side: {
  38581. height: math.unit(6 + 5/12, "feet"),
  38582. weight: math.unit(650, "lb"),
  38583. name: "Side",
  38584. image: {
  38585. source: "./media/characters/keegan/side.svg",
  38586. extra: 2390/2202,
  38587. bottom: 47/2437
  38588. }
  38589. },
  38590. back: {
  38591. height: math.unit(6 + 5/12, "feet"),
  38592. weight: math.unit(650, "lb"),
  38593. name: "Back",
  38594. image: {
  38595. source: "./media/characters/keegan/back.svg",
  38596. extra: 2418/2268,
  38597. bottom: 15/2433
  38598. }
  38599. },
  38600. frontSfw: {
  38601. height: math.unit(6 + 5/12, "feet"),
  38602. weight: math.unit(650, "lb"),
  38603. name: "Front (SFW)",
  38604. image: {
  38605. source: "./media/characters/keegan/front-sfw.svg",
  38606. extra: 2387/2198,
  38607. bottom: 33/2420
  38608. }
  38609. },
  38610. beans: {
  38611. height: math.unit(1.85, "feet"),
  38612. name: "Beans",
  38613. image: {
  38614. source: "./media/characters/keegan/beans.svg"
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(6 + 5/12, "feet"),
  38622. default: true
  38623. },
  38624. ]
  38625. ))
  38626. characterMakers.push(() => makeCharacter(
  38627. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38628. {
  38629. front: {
  38630. height: math.unit(9, "feet"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/colton/front.svg",
  38634. extra: 1589/1326,
  38635. bottom: 139/1728
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(9, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(2 + 9/12, "feet"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/bora/front.svg",
  38655. extra: 1265/1250,
  38656. bottom: 24/1289
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(2 + 9/12, "feet"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(8, "feet"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/myu-myu/front.svg",
  38676. extra: 1949/1857,
  38677. bottom: 90/2039
  38678. }
  38679. },
  38680. },
  38681. [
  38682. {
  38683. name: "Normal",
  38684. height: math.unit(8, "feet"),
  38685. default: true
  38686. },
  38687. {
  38688. name: "Big",
  38689. height: math.unit(15, "feet")
  38690. },
  38691. {
  38692. name: "BIG",
  38693. height: math.unit(25, "feet")
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38699. {
  38700. side: {
  38701. height: math.unit(7 + 5/12, "feet"),
  38702. weight: math.unit(2800, "lb"),
  38703. name: "Side",
  38704. image: {
  38705. source: "./media/characters/haloren/side.svg",
  38706. extra: 1793/409,
  38707. bottom: 59/1852
  38708. }
  38709. },
  38710. frontPaw: {
  38711. height: math.unit(2.36, "feet"),
  38712. name: "Front paw",
  38713. image: {
  38714. source: "./media/characters/haloren/front-paw.svg"
  38715. }
  38716. },
  38717. hindPaw: {
  38718. height: math.unit(3.18, "feet"),
  38719. name: "Hind paw",
  38720. image: {
  38721. source: "./media/characters/haloren/hind-paw.svg"
  38722. }
  38723. },
  38724. maw: {
  38725. height: math.unit(5.05, "feet"),
  38726. name: "Maw",
  38727. image: {
  38728. source: "./media/characters/haloren/maw.svg"
  38729. }
  38730. },
  38731. dick: {
  38732. height: math.unit(2.90, "feet"),
  38733. name: "Dick",
  38734. image: {
  38735. source: "./media/characters/haloren/dick.svg"
  38736. }
  38737. },
  38738. },
  38739. [
  38740. {
  38741. name: "Normal",
  38742. height: math.unit(7 + 5/12, "feet"),
  38743. default: true
  38744. },
  38745. {
  38746. name: "Enhanced",
  38747. height: math.unit(14 + 3/12, "feet")
  38748. },
  38749. ]
  38750. ))
  38751. characterMakers.push(() => makeCharacter(
  38752. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38753. {
  38754. front: {
  38755. height: math.unit(171, "cm"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/kimmy/front.svg",
  38759. extra: 1491/1435,
  38760. bottom: 53/1544
  38761. }
  38762. },
  38763. },
  38764. [
  38765. {
  38766. name: "Small",
  38767. height: math.unit(9, "cm")
  38768. },
  38769. {
  38770. name: "Normal",
  38771. height: math.unit(171, "cm"),
  38772. default: true
  38773. },
  38774. ]
  38775. ))
  38776. characterMakers.push(() => makeCharacter(
  38777. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38778. {
  38779. front: {
  38780. height: math.unit(8, "feet"),
  38781. weight: math.unit(300, "lb"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/galeboomer/front.svg",
  38785. extra: 4651/4415,
  38786. bottom: 162/4813
  38787. }
  38788. },
  38789. back: {
  38790. height: math.unit(8, "feet"),
  38791. weight: math.unit(300, "lb"),
  38792. name: "Back",
  38793. image: {
  38794. source: "./media/characters/galeboomer/back.svg",
  38795. extra: 4544/4314,
  38796. bottom: 16/4560
  38797. }
  38798. },
  38799. frontAlt: {
  38800. height: math.unit(8, "feet"),
  38801. weight: math.unit(300, "lb"),
  38802. name: "Front (Alt)",
  38803. image: {
  38804. source: "./media/characters/galeboomer/front-alt.svg",
  38805. extra: 4458/4228,
  38806. bottom: 68/4526
  38807. }
  38808. },
  38809. maw: {
  38810. height: math.unit(1.2, "feet"),
  38811. name: "Maw",
  38812. image: {
  38813. source: "./media/characters/galeboomer/maw.svg"
  38814. }
  38815. },
  38816. },
  38817. [
  38818. {
  38819. name: "Normal",
  38820. height: math.unit(8, "feet"),
  38821. default: true
  38822. },
  38823. ]
  38824. ))
  38825. characterMakers.push(() => makeCharacter(
  38826. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38827. {
  38828. front: {
  38829. height: math.unit(5 + 9/12, "feet"),
  38830. weight: math.unit(120, "lb"),
  38831. name: "Front",
  38832. image: {
  38833. source: "./media/characters/chyr/front.svg",
  38834. extra: 1323/1254,
  38835. bottom: 63/1386
  38836. }
  38837. },
  38838. back: {
  38839. height: math.unit(5 + 9/12, "feet"),
  38840. weight: math.unit(120, "lb"),
  38841. name: "Back",
  38842. image: {
  38843. source: "./media/characters/chyr/back.svg",
  38844. extra: 1323/1252,
  38845. bottom: 48/1371
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(5 + 9/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(7, "feet"),
  38862. weight: math.unit(310, "lb"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/solarus/front.svg",
  38866. extra: 2415/2021,
  38867. bottom: 103/2518
  38868. }
  38869. },
  38870. back: {
  38871. height: math.unit(7, "feet"),
  38872. weight: math.unit(310, "lb"),
  38873. name: "Back",
  38874. image: {
  38875. source: "./media/characters/solarus/back.svg",
  38876. extra: 2463/2089,
  38877. bottom: 79/2542
  38878. }
  38879. },
  38880. },
  38881. [
  38882. {
  38883. name: "Normal",
  38884. height: math.unit(7, "feet"),
  38885. default: true
  38886. },
  38887. ]
  38888. ))
  38889. characterMakers.push(() => makeCharacter(
  38890. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38891. {
  38892. front: {
  38893. height: math.unit(16, "feet"),
  38894. name: "Front",
  38895. image: {
  38896. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38897. extra: 1844/1780,
  38898. bottom: 58/1902
  38899. }
  38900. },
  38901. winterCoat: {
  38902. height: math.unit(16, "feet"),
  38903. name: "Winter Coat",
  38904. image: {
  38905. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38906. extra: 1807/1775,
  38907. bottom: 69/1876
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "Normal",
  38914. height: math.unit(16, "feet"),
  38915. default: true
  38916. },
  38917. {
  38918. name: "Chicago Size",
  38919. height: math.unit(560, "feet")
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(11 + 6/12, "feet"),
  38928. weight: math.unit(1366, "lb"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/lexor/front.svg",
  38932. extra: 1560/1481,
  38933. bottom: 211/1771
  38934. }
  38935. },
  38936. back: {
  38937. height: math.unit(11 + 6/12, "feet"),
  38938. weight: math.unit(1366, "lb"),
  38939. name: "Back",
  38940. image: {
  38941. source: "./media/characters/lexor/back.svg",
  38942. extra: 1614/1533,
  38943. bottom: 76/1690
  38944. }
  38945. },
  38946. maw: {
  38947. height: math.unit(3, "feet"),
  38948. name: "Maw",
  38949. image: {
  38950. source: "./media/characters/lexor/maw.svg"
  38951. }
  38952. },
  38953. dick: {
  38954. height: math.unit(2.59, "feet"),
  38955. name: "Dick",
  38956. image: {
  38957. source: "./media/characters/lexor/dick.svg"
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(11 + 6/12, "feet"),
  38965. default: true
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(5 + 8/12, "feet"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/magnum/front.svg",
  38977. extra: 942/855,
  38978. bottom: 26/968
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(5 + 8/12, "feet"),
  38986. default: true
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(18 + 4/12, "feet"),
  38995. weight: math.unit(1500, "kg"),
  38996. name: "Front",
  38997. image: {
  38998. source: "./media/characters/solas-sharpsman/front.svg",
  38999. extra: 1698/1589,
  39000. bottom: 0/1698
  39001. }
  39002. },
  39003. },
  39004. [
  39005. {
  39006. name: "Normal",
  39007. height: math.unit(18 + 4/12, "feet"),
  39008. default: true
  39009. },
  39010. ]
  39011. ))
  39012. characterMakers.push(() => makeCharacter(
  39013. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39014. {
  39015. front: {
  39016. height: math.unit(5 + 5/12, "feet"),
  39017. weight: math.unit(180, "lb"),
  39018. name: "Front",
  39019. image: {
  39020. source: "./media/characters/october/front.svg",
  39021. extra: 1800/1650,
  39022. bottom: 0/1800
  39023. }
  39024. },
  39025. frontNsfw: {
  39026. height: math.unit(5 + 5/12, "feet"),
  39027. weight: math.unit(180, "lb"),
  39028. name: "Front (NSFW)",
  39029. image: {
  39030. source: "./media/characters/october/front-nsfw.svg",
  39031. extra: 1392/1307,
  39032. bottom: 42/1434
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(5 + 5/12, "feet"),
  39040. default: true
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(8 + 6/12, "feet"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/essynkardi/front.svg",
  39052. extra: 1914/1846,
  39053. bottom: 22/1936
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(8 + 6/12, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(6 + 6/12, "feet"),
  39070. weight: math.unit(7, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/icky/front.svg",
  39074. extra: 813/782,
  39075. bottom: 66/879
  39076. }
  39077. },
  39078. back: {
  39079. height: math.unit(6 + 6/12, "feet"),
  39080. weight: math.unit(7, "lb"),
  39081. name: "Back",
  39082. image: {
  39083. source: "./media/characters/icky/back.svg",
  39084. extra: 754/735,
  39085. bottom: 56/810
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(6 + 6/12, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(15, "feet"),
  39102. name: "Front",
  39103. image: {
  39104. source: "./media/characters/rojas/front.svg",
  39105. extra: 1462/1408,
  39106. bottom: 95/1557
  39107. }
  39108. },
  39109. back: {
  39110. height: math.unit(15, "feet"),
  39111. name: "Back",
  39112. image: {
  39113. source: "./media/characters/rojas/back.svg",
  39114. extra: 1023/954,
  39115. bottom: 28/1051
  39116. }
  39117. },
  39118. },
  39119. [
  39120. {
  39121. name: "Normal",
  39122. height: math.unit(15, "feet"),
  39123. default: true
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39129. {
  39130. frontHuman: {
  39131. height: math.unit(5 + 7/12, "feet"),
  39132. name: "Front (Human)",
  39133. image: {
  39134. source: "./media/characters/alek-dryagan/front-human.svg",
  39135. extra: 1687/1667,
  39136. bottom: 69/1756
  39137. }
  39138. },
  39139. backHuman: {
  39140. height: math.unit(5 + 7/12, "feet"),
  39141. name: "Back (Human)",
  39142. image: {
  39143. source: "./media/characters/alek-dryagan/back-human.svg",
  39144. extra: 1670/1649,
  39145. bottom: 65/1735
  39146. }
  39147. },
  39148. frontDemi: {
  39149. height: math.unit(65, "feet"),
  39150. name: "Front (Demi)",
  39151. image: {
  39152. source: "./media/characters/alek-dryagan/front-demi.svg",
  39153. extra: 1669/1642,
  39154. bottom: 49/1718
  39155. }
  39156. },
  39157. backDemi: {
  39158. height: math.unit(65, "feet"),
  39159. name: "Back (Demi)",
  39160. image: {
  39161. source: "./media/characters/alek-dryagan/back-demi.svg",
  39162. extra: 1658/1637,
  39163. bottom: 40/1698
  39164. }
  39165. },
  39166. mawHuman: {
  39167. height: math.unit(0.3, "feet"),
  39168. name: "Maw (Human)",
  39169. image: {
  39170. source: "./media/characters/alek-dryagan/maw-human.svg"
  39171. }
  39172. },
  39173. mawDemi: {
  39174. height: math.unit(3.8, "feet"),
  39175. name: "Maw (Demi)",
  39176. image: {
  39177. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39178. }
  39179. },
  39180. },
  39181. [
  39182. {
  39183. name: "Normal",
  39184. height: math.unit(5 + 7/12, "feet"),
  39185. default: true
  39186. },
  39187. ]
  39188. ))
  39189. characterMakers.push(() => makeCharacter(
  39190. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39191. {
  39192. frontHuman: {
  39193. height: math.unit(5 + 2/12, "feet"),
  39194. name: "Front (Human)",
  39195. image: {
  39196. source: "./media/characters/gen/front-human.svg",
  39197. extra: 1627/1538,
  39198. bottom: 71/1698
  39199. }
  39200. },
  39201. backHuman: {
  39202. height: math.unit(5 + 2/12, "feet"),
  39203. name: "Back (Human)",
  39204. image: {
  39205. source: "./media/characters/gen/back-human.svg",
  39206. extra: 1638/1548,
  39207. bottom: 69/1707
  39208. }
  39209. },
  39210. frontDemi: {
  39211. height: math.unit(5 + 2/12, "feet"),
  39212. name: "Front (Demi)",
  39213. image: {
  39214. source: "./media/characters/gen/front-demi.svg",
  39215. extra: 1627/1538,
  39216. bottom: 71/1698
  39217. }
  39218. },
  39219. backDemi: {
  39220. height: math.unit(5 + 2/12, "feet"),
  39221. name: "Back (Demi)",
  39222. image: {
  39223. source: "./media/characters/gen/back-demi.svg",
  39224. extra: 1638/1548,
  39225. bottom: 69/1707
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(5 + 2/12, "feet"),
  39233. default: true
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39239. {
  39240. frontImp: {
  39241. height: math.unit(1 + 11/12, "feet"),
  39242. name: "Front (Imp)",
  39243. image: {
  39244. source: "./media/characters/max-kobold/front-imp.svg",
  39245. extra: 1238/1134,
  39246. bottom: 81/1319
  39247. }
  39248. },
  39249. backImp: {
  39250. height: math.unit(1 + 11/12, "feet"),
  39251. name: "Back (Imp)",
  39252. image: {
  39253. source: "./media/characters/max-kobold/back-imp.svg",
  39254. extra: 1334/1175,
  39255. bottom: 34/1368
  39256. }
  39257. },
  39258. frontDemi: {
  39259. height: math.unit(5 + 9/12, "feet"),
  39260. name: "Front (Demi)",
  39261. image: {
  39262. source: "./media/characters/max-kobold/front-demi.svg",
  39263. extra: 1715/1685,
  39264. bottom: 54/1769
  39265. }
  39266. },
  39267. backDemi: {
  39268. height: math.unit(5 + 9/12, "feet"),
  39269. name: "Back (Demi)",
  39270. image: {
  39271. source: "./media/characters/max-kobold/back-demi.svg",
  39272. extra: 1752/1729,
  39273. bottom: 41/1793
  39274. }
  39275. },
  39276. handImp: {
  39277. height: math.unit(0.45, "feet"),
  39278. name: "Hand (Imp)",
  39279. image: {
  39280. source: "./media/characters/max-kobold/hand.svg"
  39281. }
  39282. },
  39283. pawImp: {
  39284. height: math.unit(0.46, "feet"),
  39285. name: "Paw (Imp)",
  39286. image: {
  39287. source: "./media/characters/max-kobold/paw.svg"
  39288. }
  39289. },
  39290. handDemi: {
  39291. height: math.unit(0.80, "feet"),
  39292. name: "Hand (Demi)",
  39293. image: {
  39294. source: "./media/characters/max-kobold/hand.svg"
  39295. }
  39296. },
  39297. pawDemi: {
  39298. height: math.unit(1.1, "feet"),
  39299. name: "Paw (Demi)",
  39300. image: {
  39301. source: "./media/characters/max-kobold/paw.svg"
  39302. }
  39303. },
  39304. headImp: {
  39305. height: math.unit(1.33, "feet"),
  39306. name: "Head (Imp)",
  39307. image: {
  39308. source: "./media/characters/max-kobold/head-imp.svg"
  39309. }
  39310. },
  39311. mawImp: {
  39312. height: math.unit(0.75, "feet"),
  39313. name: "Maw (Imp)",
  39314. image: {
  39315. source: "./media/characters/max-kobold/maw-imp.svg"
  39316. }
  39317. },
  39318. mawDemi: {
  39319. height: math.unit(0.42, "feet"),
  39320. name: "Maw (Demi)",
  39321. image: {
  39322. source: "./media/characters/max-kobold/maw-demi.svg"
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(1 + 11/12, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(7 + 5/12, "feet"),
  39339. name: "Front",
  39340. image: {
  39341. source: "./media/characters/carbon/front.svg",
  39342. extra: 1754/1689,
  39343. bottom: 65/1819
  39344. }
  39345. },
  39346. back: {
  39347. height: math.unit(7 + 5/12, "feet"),
  39348. name: "Back",
  39349. image: {
  39350. source: "./media/characters/carbon/back.svg",
  39351. extra: 1762/1695,
  39352. bottom: 24/1786
  39353. }
  39354. },
  39355. frontGigantamax: {
  39356. height: math.unit(150, "feet"),
  39357. name: "Front (Gigantamax)",
  39358. image: {
  39359. source: "./media/characters/carbon/front-gigantamax.svg",
  39360. extra: 1826/1669,
  39361. bottom: 59/1885
  39362. }
  39363. },
  39364. backGigantamax: {
  39365. height: math.unit(150, "feet"),
  39366. name: "Back (Gigantamax)",
  39367. image: {
  39368. source: "./media/characters/carbon/back-gigantamax.svg",
  39369. extra: 1796/1653,
  39370. bottom: 53/1849
  39371. }
  39372. },
  39373. maw: {
  39374. height: math.unit(0.48, "feet"),
  39375. name: "Maw",
  39376. image: {
  39377. source: "./media/characters/carbon/maw.svg"
  39378. }
  39379. },
  39380. mawGigantamax: {
  39381. height: math.unit(7.5, "feet"),
  39382. name: "Maw (Gigantamax)",
  39383. image: {
  39384. source: "./media/characters/carbon/maw-gigantamax.svg"
  39385. }
  39386. },
  39387. },
  39388. [
  39389. {
  39390. name: "Normal",
  39391. height: math.unit(7 + 5/12, "feet"),
  39392. default: true
  39393. },
  39394. ]
  39395. ))
  39396. characterMakers.push(() => makeCharacter(
  39397. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39398. {
  39399. front: {
  39400. height: math.unit(6, "feet"),
  39401. name: "Front",
  39402. image: {
  39403. source: "./media/characters/maverick/front.svg",
  39404. extra: 1672/1661,
  39405. bottom: 85/1757
  39406. }
  39407. },
  39408. back: {
  39409. height: math.unit(6, "feet"),
  39410. name: "Back",
  39411. image: {
  39412. source: "./media/characters/maverick/back.svg",
  39413. extra: 1642/1631,
  39414. bottom: 38/1680
  39415. }
  39416. },
  39417. },
  39418. [
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(6, "feet"),
  39422. default: true
  39423. },
  39424. ]
  39425. ))
  39426. characterMakers.push(() => makeCharacter(
  39427. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39428. {
  39429. front: {
  39430. height: math.unit(15, "feet"),
  39431. weight: math.unit(615, "lb"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/grockle/front.svg",
  39435. extra: 1535/1427,
  39436. bottom: 56/1591
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Normal",
  39443. height: math.unit(15, "feet"),
  39444. default: true
  39445. },
  39446. {
  39447. name: "Large",
  39448. height: math.unit(150, "feet")
  39449. },
  39450. {
  39451. name: "Macro",
  39452. height: math.unit(1876, "feet")
  39453. },
  39454. {
  39455. name: "Mega Macro",
  39456. height: math.unit(121940, "feet")
  39457. },
  39458. {
  39459. name: "Giga Macro",
  39460. height: math.unit(750, "km")
  39461. },
  39462. {
  39463. name: "Tera Macro",
  39464. height: math.unit(750000, "km")
  39465. },
  39466. {
  39467. name: "Galactic",
  39468. height: math.unit(1.4e5, "km")
  39469. },
  39470. {
  39471. name: "Godlike",
  39472. height: math.unit(9.8e280, "galaxies")
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(11, "meters"),
  39481. weight: math.unit(20, "tonnes"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/alistair/front.svg",
  39485. extra: 1265/1009,
  39486. bottom: 93/1358
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(11, "meters"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(5 + 8/12, "feet"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/haruka/front.svg",
  39506. extra: 2012/1952,
  39507. bottom: 0/2012
  39508. }
  39509. },
  39510. },
  39511. [
  39512. {
  39513. name: "Normal",
  39514. height: math.unit(5 + 8/12, "feet"),
  39515. default: true
  39516. },
  39517. ]
  39518. ))
  39519. characterMakers.push(() => makeCharacter(
  39520. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39521. {
  39522. back: {
  39523. height: math.unit(9, "feet"),
  39524. name: "Back",
  39525. image: {
  39526. source: "./media/characters/vivian-sylveon/back.svg",
  39527. extra: 1853/1714,
  39528. bottom: 0/1853
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Normal",
  39535. height: math.unit(9, "feet"),
  39536. default: true
  39537. },
  39538. {
  39539. name: "Macro",
  39540. height: math.unit(500, "feet")
  39541. },
  39542. {
  39543. name: "Megamacro",
  39544. height: math.unit(600, "miles")
  39545. },
  39546. {
  39547. name: "Gigamacro",
  39548. height: math.unit(30000, "miles")
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39554. {
  39555. anthro: {
  39556. height: math.unit(5 + 10/12, "feet"),
  39557. weight: math.unit(100, "lb"),
  39558. name: "Anthro",
  39559. image: {
  39560. source: "./media/characters/daiki/anthro.svg",
  39561. extra: 1115/1027,
  39562. bottom: 69/1184
  39563. }
  39564. },
  39565. feral: {
  39566. height: math.unit(200, "feet"),
  39567. name: "Feral",
  39568. image: {
  39569. source: "./media/characters/daiki/feral.svg",
  39570. extra: 1256/313,
  39571. bottom: 39/1295
  39572. }
  39573. },
  39574. feralHead: {
  39575. height: math.unit(171, "feet"),
  39576. name: "Feral Head",
  39577. image: {
  39578. source: "./media/characters/daiki/feral-head.svg"
  39579. }
  39580. },
  39581. manaDragon: {
  39582. height: math.unit(170, "meters"),
  39583. name: "Mana-dragon",
  39584. image: {
  39585. source: "./media/characters/daiki/mana-dragon.svg",
  39586. extra: 763/420,
  39587. bottom: 97/860
  39588. }
  39589. },
  39590. },
  39591. [
  39592. {
  39593. name: "Normal",
  39594. height: math.unit(5 + 10/12, "feet"),
  39595. default: true
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39601. {
  39602. fullyEquippedFront: {
  39603. height: math.unit(3 + 1/12, "feet"),
  39604. weight: math.unit(24, "lb"),
  39605. name: "Fully Equipped (Front)",
  39606. image: {
  39607. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39608. extra: 687/605,
  39609. bottom: 18/705
  39610. }
  39611. },
  39612. fullyEquippedBack: {
  39613. height: math.unit(3 + 1/12, "feet"),
  39614. weight: math.unit(24, "lb"),
  39615. name: "Fully Equipped (Back)",
  39616. image: {
  39617. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39618. extra: 689/590,
  39619. bottom: 18/707
  39620. }
  39621. },
  39622. dailyWear: {
  39623. height: math.unit(3 + 1/12, "feet"),
  39624. weight: math.unit(24, "lb"),
  39625. name: "Daily Wear",
  39626. image: {
  39627. source: "./media/characters/tea-spot/daily-wear.svg",
  39628. extra: 701/620,
  39629. bottom: 21/722
  39630. }
  39631. },
  39632. maidWork: {
  39633. height: math.unit(3 + 1/12, "feet"),
  39634. weight: math.unit(24, "lb"),
  39635. name: "Maid Work",
  39636. image: {
  39637. source: "./media/characters/tea-spot/maid-work.svg",
  39638. extra: 693/609,
  39639. bottom: 15/708
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(3 + 1/12, "feet"),
  39647. default: true
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39653. {
  39654. front: {
  39655. height: math.unit(175, "cm"),
  39656. weight: math.unit(75, "kg"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/chee/front.svg",
  39660. extra: 1796/1740,
  39661. bottom: 40/1836
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Micro-Micro",
  39668. height: math.unit(1, "nm")
  39669. },
  39670. {
  39671. name: "Micro-erst",
  39672. height: math.unit(1, "micrometer")
  39673. },
  39674. {
  39675. name: "Micro-er",
  39676. height: math.unit(1, "cm")
  39677. },
  39678. {
  39679. name: "Normal",
  39680. height: math.unit(175, "cm"),
  39681. default: true
  39682. },
  39683. {
  39684. name: "Macro",
  39685. height: math.unit(100, "m")
  39686. },
  39687. {
  39688. name: "Macro-er",
  39689. height: math.unit(1, "km")
  39690. },
  39691. {
  39692. name: "Macro-erst",
  39693. height: math.unit(10, "km")
  39694. },
  39695. {
  39696. name: "Macro-Macro",
  39697. height: math.unit(100, "km")
  39698. },
  39699. ]
  39700. ))
  39701. characterMakers.push(() => makeCharacter(
  39702. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39703. {
  39704. front: {
  39705. height: math.unit(11 + 9/12, "feet"),
  39706. weight: math.unit(935, "lb"),
  39707. name: "Front",
  39708. image: {
  39709. source: "./media/characters/kingsley/front.svg",
  39710. extra: 1803/1674,
  39711. bottom: 127/1930
  39712. }
  39713. },
  39714. frontNude: {
  39715. height: math.unit(11 + 9/12, "feet"),
  39716. weight: math.unit(935, "lb"),
  39717. name: "Front (Nude)",
  39718. image: {
  39719. source: "./media/characters/kingsley/front-nude.svg",
  39720. extra: 1803/1674,
  39721. bottom: 127/1930
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Normal",
  39728. height: math.unit(11 + 9/12, "feet"),
  39729. default: true
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39735. {
  39736. side: {
  39737. height: math.unit(9, "feet"),
  39738. name: "Side",
  39739. image: {
  39740. source: "./media/characters/rymel/side.svg",
  39741. extra: 792/469,
  39742. bottom: 121/913
  39743. }
  39744. },
  39745. maw: {
  39746. height: math.unit(2.4, "meters"),
  39747. name: "Maw",
  39748. image: {
  39749. source: "./media/characters/rymel/maw.svg"
  39750. }
  39751. },
  39752. },
  39753. [
  39754. {
  39755. name: "House Drake",
  39756. height: math.unit(2, "feet")
  39757. },
  39758. {
  39759. name: "Reduced",
  39760. height: math.unit(4.5, "feet")
  39761. },
  39762. {
  39763. name: "Normal",
  39764. height: math.unit(9, "feet"),
  39765. default: true
  39766. },
  39767. ]
  39768. ))
  39769. characterMakers.push(() => makeCharacter(
  39770. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39771. {
  39772. front: {
  39773. height: math.unit(1.74, "meters"),
  39774. weight: math.unit(55, "kg"),
  39775. name: "Front",
  39776. image: {
  39777. source: "./media/characters/rubus/front.svg",
  39778. extra: 1894/1742,
  39779. bottom: 44/1938
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(1.74, "meters"),
  39787. default: true
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(5 + 2/12, "feet"),
  39796. weight: math.unit(112, "lb"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/cassie-kingston/front.svg",
  39800. extra: 1438/1390,
  39801. bottom: 47/1485
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Normal",
  39808. height: math.unit(5 + 2/12, "feet"),
  39809. default: true
  39810. },
  39811. {
  39812. name: "Macro",
  39813. height: math.unit(128, "feet")
  39814. },
  39815. {
  39816. name: "Megamacro",
  39817. height: math.unit(2.56, "miles")
  39818. },
  39819. ]
  39820. ))
  39821. characterMakers.push(() => makeCharacter(
  39822. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39823. {
  39824. front: {
  39825. height: math.unit(7, "feet"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/fox/front.svg",
  39829. extra: 1798/1703,
  39830. bottom: 55/1853
  39831. }
  39832. },
  39833. back: {
  39834. height: math.unit(7, "feet"),
  39835. name: "Back",
  39836. image: {
  39837. source: "./media/characters/fox/back.svg",
  39838. extra: 1748/1649,
  39839. bottom: 32/1780
  39840. }
  39841. },
  39842. head: {
  39843. height: math.unit(1.95, "feet"),
  39844. name: "Head",
  39845. image: {
  39846. source: "./media/characters/fox/head.svg"
  39847. }
  39848. },
  39849. dick: {
  39850. height: math.unit(1.33, "feet"),
  39851. name: "Dick",
  39852. image: {
  39853. source: "./media/characters/fox/dick.svg"
  39854. }
  39855. },
  39856. foot: {
  39857. height: math.unit(1, "feet"),
  39858. name: "Foot",
  39859. image: {
  39860. source: "./media/characters/fox/foot.svg"
  39861. }
  39862. },
  39863. paw: {
  39864. height: math.unit(0.92, "feet"),
  39865. name: "Paw",
  39866. image: {
  39867. source: "./media/characters/fox/paw.svg"
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Small",
  39874. height: math.unit(3, "inches")
  39875. },
  39876. {
  39877. name: "\"Realistic\"",
  39878. height: math.unit(7, "feet")
  39879. },
  39880. {
  39881. name: "Normal",
  39882. height: math.unit(150, "feet"),
  39883. default: true
  39884. },
  39885. {
  39886. name: "BIG",
  39887. height: math.unit(1200, "feet")
  39888. },
  39889. {
  39890. name: "👀",
  39891. height: math.unit(5, "miles")
  39892. },
  39893. {
  39894. name: "👀👀👀",
  39895. height: math.unit(64, "miles")
  39896. },
  39897. ]
  39898. ))
  39899. characterMakers.push(() => makeCharacter(
  39900. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39901. {
  39902. front: {
  39903. height: math.unit(625, "feet"),
  39904. name: "Front",
  39905. image: {
  39906. source: "./media/characters/asonja-rossa/front.svg",
  39907. extra: 1833/1686,
  39908. bottom: 24/1857
  39909. }
  39910. },
  39911. back: {
  39912. height: math.unit(625, "feet"),
  39913. name: "Back",
  39914. image: {
  39915. source: "./media/characters/asonja-rossa/back.svg",
  39916. extra: 1852/1753,
  39917. bottom: 26/1878
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "Macro",
  39924. height: math.unit(625, "feet"),
  39925. default: true
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39931. {
  39932. side: {
  39933. height: math.unit(8, "feet"),
  39934. name: "Side",
  39935. image: {
  39936. source: "./media/characters/rezukii/side.svg",
  39937. extra: 979/542,
  39938. bottom: 87/1066
  39939. }
  39940. },
  39941. sitting: {
  39942. height: math.unit(14.6, "feet"),
  39943. name: "Sitting",
  39944. image: {
  39945. source: "./media/characters/rezukii/sitting.svg",
  39946. extra: 1023/813,
  39947. bottom: 45/1068
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Tiny",
  39954. height: math.unit(2, "feet")
  39955. },
  39956. {
  39957. name: "Smol",
  39958. height: math.unit(4, "feet")
  39959. },
  39960. {
  39961. name: "Normal",
  39962. height: math.unit(8, "feet"),
  39963. default: true
  39964. },
  39965. {
  39966. name: "Big",
  39967. height: math.unit(12, "feet")
  39968. },
  39969. {
  39970. name: "Macro",
  39971. height: math.unit(30, "feet")
  39972. },
  39973. ]
  39974. ))
  39975. characterMakers.push(() => makeCharacter(
  39976. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39977. {
  39978. front: {
  39979. height: math.unit(14, "feet"),
  39980. weight: math.unit(9.5, "tonnes"),
  39981. name: "Front",
  39982. image: {
  39983. source: "./media/characters/dawnheart/front.svg",
  39984. extra: 2792/2675,
  39985. bottom: 64/2856
  39986. }
  39987. },
  39988. },
  39989. [
  39990. {
  39991. name: "Normal",
  39992. height: math.unit(14, "feet"),
  39993. default: true
  39994. },
  39995. ]
  39996. ))
  39997. characterMakers.push(() => makeCharacter(
  39998. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39999. {
  40000. front: {
  40001. height: math.unit(1.7, "m"),
  40002. name: "Front",
  40003. image: {
  40004. source: "./media/characters/gladi/front.svg",
  40005. extra: 1460/1362,
  40006. bottom: 19/1479
  40007. }
  40008. },
  40009. back: {
  40010. height: math.unit(1.7, "m"),
  40011. name: "Back",
  40012. image: {
  40013. source: "./media/characters/gladi/back.svg",
  40014. extra: 1459/1357,
  40015. bottom: 12/1471
  40016. }
  40017. },
  40018. feral: {
  40019. height: math.unit(2.05, "m"),
  40020. name: "Feral",
  40021. image: {
  40022. source: "./media/characters/gladi/feral.svg",
  40023. extra: 821/557,
  40024. bottom: 91/912
  40025. }
  40026. },
  40027. },
  40028. [
  40029. {
  40030. name: "Shortest",
  40031. height: math.unit(70, "cm")
  40032. },
  40033. {
  40034. name: "Normal",
  40035. height: math.unit(1.7, "m")
  40036. },
  40037. {
  40038. name: "Macro",
  40039. height: math.unit(10, "m"),
  40040. default: true
  40041. },
  40042. {
  40043. name: "Tallest",
  40044. height: math.unit(200, "m")
  40045. },
  40046. ]
  40047. ))
  40048. characterMakers.push(() => makeCharacter(
  40049. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40050. {
  40051. front: {
  40052. height: math.unit(5 + 7/12, "feet"),
  40053. weight: math.unit(2, "tons"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/erdno/front.svg",
  40057. extra: 1234/1129,
  40058. bottom: 35/1269
  40059. }
  40060. },
  40061. angled: {
  40062. height: math.unit(5 + 7/12, "feet"),
  40063. weight: math.unit(2, "tons"),
  40064. name: "Angled",
  40065. image: {
  40066. source: "./media/characters/erdno/angled.svg",
  40067. extra: 1185/1139,
  40068. bottom: 36/1221
  40069. }
  40070. },
  40071. side: {
  40072. height: math.unit(5 + 7/12, "feet"),
  40073. weight: math.unit(2, "tons"),
  40074. name: "Side",
  40075. image: {
  40076. source: "./media/characters/erdno/side.svg",
  40077. extra: 1191/1144,
  40078. bottom: 40/1231
  40079. }
  40080. },
  40081. back: {
  40082. height: math.unit(5 + 7/12, "feet"),
  40083. weight: math.unit(2, "tons"),
  40084. name: "Back",
  40085. image: {
  40086. source: "./media/characters/erdno/back.svg",
  40087. extra: 1202/1146,
  40088. bottom: 17/1219
  40089. }
  40090. },
  40091. frontNsfw: {
  40092. height: math.unit(5 + 7/12, "feet"),
  40093. weight: math.unit(2, "tons"),
  40094. name: "Front (NSFW)",
  40095. image: {
  40096. source: "./media/characters/erdno/front-nsfw.svg",
  40097. extra: 1234/1129,
  40098. bottom: 35/1269
  40099. }
  40100. },
  40101. angledNsfw: {
  40102. height: math.unit(5 + 7/12, "feet"),
  40103. weight: math.unit(2, "tons"),
  40104. name: "Angled (NSFW)",
  40105. image: {
  40106. source: "./media/characters/erdno/angled-nsfw.svg",
  40107. extra: 1185/1139,
  40108. bottom: 36/1221
  40109. }
  40110. },
  40111. sideNsfw: {
  40112. height: math.unit(5 + 7/12, "feet"),
  40113. weight: math.unit(2, "tons"),
  40114. name: "Side (NSFW)",
  40115. image: {
  40116. source: "./media/characters/erdno/side-nsfw.svg",
  40117. extra: 1191/1144,
  40118. bottom: 40/1231
  40119. }
  40120. },
  40121. backNsfw: {
  40122. height: math.unit(5 + 7/12, "feet"),
  40123. weight: math.unit(2, "tons"),
  40124. name: "Back (NSFW)",
  40125. image: {
  40126. source: "./media/characters/erdno/back-nsfw.svg",
  40127. extra: 1202/1146,
  40128. bottom: 17/1219
  40129. }
  40130. },
  40131. frontHyper: {
  40132. height: math.unit(5 + 7/12, "feet"),
  40133. weight: math.unit(2, "tons"),
  40134. name: "Front (Hyper)",
  40135. image: {
  40136. source: "./media/characters/erdno/front-hyper.svg",
  40137. extra: 1298/1136,
  40138. bottom: 35/1333
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Normal",
  40145. height: math.unit(5 + 7/12, "feet"),
  40146. default: true
  40147. },
  40148. {
  40149. name: "Big",
  40150. height: math.unit(5.7, "meters")
  40151. },
  40152. {
  40153. name: "Macro",
  40154. height: math.unit(5.7, "kilometers")
  40155. },
  40156. {
  40157. name: "Megamacro",
  40158. height: math.unit(5.7, "earths")
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(5 + 10/12, "feet"),
  40167. weight: math.unit(150, "lb"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/jamie/front.svg",
  40171. extra: 1908/1768,
  40172. bottom: 19/1927
  40173. }
  40174. },
  40175. },
  40176. [
  40177. {
  40178. name: "Minimum",
  40179. height: math.unit(2, "cm")
  40180. },
  40181. {
  40182. name: "Micro",
  40183. height: math.unit(3, "inches")
  40184. },
  40185. {
  40186. name: "Normal",
  40187. height: math.unit(5 + 10/12, "feet"),
  40188. default: true
  40189. },
  40190. {
  40191. name: "Macro",
  40192. height: math.unit(150, "feet")
  40193. },
  40194. {
  40195. name: "Megamacro",
  40196. height: math.unit(10000, "m")
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(2, "meters"),
  40205. weight: math.unit(100, "kg"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/shiron/front.svg",
  40209. extra: 2103/1985,
  40210. bottom: 98/2201
  40211. }
  40212. },
  40213. back: {
  40214. height: math.unit(2, "meters"),
  40215. weight: math.unit(100, "kg"),
  40216. name: "Back",
  40217. image: {
  40218. source: "./media/characters/shiron/back.svg",
  40219. extra: 2110/2015,
  40220. bottom: 89/2199
  40221. }
  40222. },
  40223. hand: {
  40224. height: math.unit(0.96, "feet"),
  40225. name: "Hand",
  40226. image: {
  40227. source: "./media/characters/shiron/hand.svg"
  40228. }
  40229. },
  40230. foot: {
  40231. height: math.unit(1.464, "feet"),
  40232. name: "Foot",
  40233. image: {
  40234. source: "./media/characters/shiron/foot.svg"
  40235. }
  40236. },
  40237. },
  40238. [
  40239. {
  40240. name: "Normal",
  40241. height: math.unit(2, "meters")
  40242. },
  40243. {
  40244. name: "Macro",
  40245. height: math.unit(500, "meters"),
  40246. default: true
  40247. },
  40248. {
  40249. name: "Megamacro",
  40250. height: math.unit(20, "km")
  40251. },
  40252. ]
  40253. ))
  40254. characterMakers.push(() => makeCharacter(
  40255. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40256. {
  40257. front: {
  40258. height: math.unit(6, "feet"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/sam/front.svg",
  40262. extra: 849/826,
  40263. bottom: 19/868
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Normal",
  40270. height: math.unit(6, "feet"),
  40271. default: true
  40272. },
  40273. ]
  40274. ))
  40275. characterMakers.push(() => makeCharacter(
  40276. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40277. {
  40278. front: {
  40279. height: math.unit(8 + 4/12, "feet"),
  40280. weight: math.unit(122, "kg"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/namori-kurogawa/front.svg",
  40284. extra: 1894/1576,
  40285. bottom: 34/1928
  40286. }
  40287. },
  40288. },
  40289. [
  40290. {
  40291. name: "Normal",
  40292. height: math.unit(8 + 4/12, "feet"),
  40293. default: true
  40294. },
  40295. ]
  40296. ))
  40297. characterMakers.push(() => makeCharacter(
  40298. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40299. {
  40300. front: {
  40301. height: math.unit(9, "feet"),
  40302. weight: math.unit(621, "lb"),
  40303. name: "Front",
  40304. image: {
  40305. source: "./media/characters/unmru/front.svg",
  40306. extra: 1853/1747,
  40307. bottom: 73/1926
  40308. }
  40309. },
  40310. side: {
  40311. height: math.unit(9, "feet"),
  40312. weight: math.unit(621, "lb"),
  40313. name: "Side",
  40314. image: {
  40315. source: "./media/characters/unmru/side.svg",
  40316. extra: 1781/1671,
  40317. bottom: 127/1908
  40318. }
  40319. },
  40320. back: {
  40321. height: math.unit(9, "feet"),
  40322. weight: math.unit(621, "lb"),
  40323. name: "Back",
  40324. image: {
  40325. source: "./media/characters/unmru/back.svg",
  40326. extra: 1894/1765,
  40327. bottom: 75/1969
  40328. }
  40329. },
  40330. dick: {
  40331. height: math.unit(3, "feet"),
  40332. weight: math.unit(35, "lb"),
  40333. name: "Dick",
  40334. image: {
  40335. source: "./media/characters/unmru/dick.svg"
  40336. }
  40337. },
  40338. },
  40339. [
  40340. {
  40341. name: "Normal",
  40342. height: math.unit(9, "feet")
  40343. },
  40344. {
  40345. name: "Natural",
  40346. height: math.unit(27, "feet"),
  40347. default: true
  40348. },
  40349. {
  40350. name: "Giant",
  40351. height: math.unit(90, "feet")
  40352. },
  40353. {
  40354. name: "Kaiju",
  40355. height: math.unit(270, "feet")
  40356. },
  40357. {
  40358. name: "Macro",
  40359. height: math.unit(900, "feet")
  40360. },
  40361. {
  40362. name: "Macro+",
  40363. height: math.unit(2700, "feet")
  40364. },
  40365. {
  40366. name: "Megamacro",
  40367. height: math.unit(9000, "feet")
  40368. },
  40369. {
  40370. name: "City-Crushing",
  40371. height: math.unit(27000, "feet")
  40372. },
  40373. {
  40374. name: "Mountain-Mashing",
  40375. height: math.unit(90000, "feet")
  40376. },
  40377. {
  40378. name: "Earth-Eclipsing",
  40379. height: math.unit(2.7e8, "feet")
  40380. },
  40381. {
  40382. name: "Sol-Swallowing",
  40383. height: math.unit(9e10, "feet")
  40384. },
  40385. {
  40386. name: "Majoris-Munching",
  40387. height: math.unit(2.7e13, "feet")
  40388. },
  40389. ]
  40390. ))
  40391. characterMakers.push(() => makeCharacter(
  40392. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40393. {
  40394. front: {
  40395. height: math.unit(1, "inch"),
  40396. name: "Front",
  40397. image: {
  40398. source: "./media/characters/squeaks-mouse/front.svg",
  40399. extra: 352/308,
  40400. bottom: 25/377
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Micro",
  40407. height: math.unit(1, "inch"),
  40408. default: true
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40414. {
  40415. side: {
  40416. height: math.unit(35, "feet"),
  40417. name: "Side",
  40418. image: {
  40419. source: "./media/characters/sayko/side.svg",
  40420. extra: 1697/1021,
  40421. bottom: 82/1779
  40422. }
  40423. },
  40424. head: {
  40425. height: math.unit(16, "feet"),
  40426. name: "Head",
  40427. image: {
  40428. source: "./media/characters/sayko/head.svg"
  40429. }
  40430. },
  40431. forepaw: {
  40432. height: math.unit(7.85, "feet"),
  40433. name: "Forepaw",
  40434. image: {
  40435. source: "./media/characters/sayko/forepaw.svg"
  40436. }
  40437. },
  40438. hindpaw: {
  40439. height: math.unit(8.8, "feet"),
  40440. name: "Hindpaw",
  40441. image: {
  40442. source: "./media/characters/sayko/hindpaw.svg"
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(35, "feet"),
  40450. default: true
  40451. },
  40452. {
  40453. name: "Colossus",
  40454. height: math.unit(100, "meters")
  40455. },
  40456. {
  40457. name: "\"Small\" Deity",
  40458. height: math.unit(1, "km")
  40459. },
  40460. {
  40461. name: "\"Large\" Deity",
  40462. height: math.unit(15, "km")
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(6, "feet"),
  40471. weight: math.unit(250, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/mukiro/front.svg",
  40475. extra: 1368/1310,
  40476. bottom: 34/1402
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(6, "feet"),
  40484. default: true
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40490. {
  40491. front: {
  40492. height: math.unit(12 + 4/12, "feet"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40496. extra: 1346/1311,
  40497. bottom: 65/1411
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Base",
  40504. height: math.unit(12 + 4/12, "feet"),
  40505. default: true
  40506. },
  40507. {
  40508. name: "Macro",
  40509. height: math.unit(150, "feet")
  40510. },
  40511. {
  40512. name: "Mega",
  40513. height: math.unit(2, "miles")
  40514. },
  40515. {
  40516. name: "Demi God",
  40517. height: math.unit(4, "AU")
  40518. },
  40519. {
  40520. name: "God Size",
  40521. height: math.unit(1, "universe")
  40522. },
  40523. ]
  40524. ))
  40525. characterMakers.push(() => makeCharacter(
  40526. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40527. {
  40528. front: {
  40529. height: math.unit(3 + 3/12, "feet"),
  40530. weight: math.unit(88, "lb"),
  40531. name: "Front",
  40532. image: {
  40533. source: "./media/characters/trey/front.svg",
  40534. extra: 1815/1509,
  40535. bottom: 60/1875
  40536. }
  40537. },
  40538. },
  40539. [
  40540. {
  40541. name: "Normal",
  40542. height: math.unit(3 + 3/12, "feet"),
  40543. default: true
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40549. {
  40550. front: {
  40551. height: math.unit(4, "meters"),
  40552. name: "Front",
  40553. image: {
  40554. source: "./media/characters/adelonda/front.svg",
  40555. extra: 1077/982,
  40556. bottom: 39/1116
  40557. }
  40558. },
  40559. back: {
  40560. height: math.unit(4, "meters"),
  40561. name: "Back",
  40562. image: {
  40563. source: "./media/characters/adelonda/back.svg",
  40564. extra: 1105/1003,
  40565. bottom: 25/1130
  40566. }
  40567. },
  40568. feral: {
  40569. height: math.unit(40/1.5, "meters"),
  40570. name: "Feral",
  40571. image: {
  40572. source: "./media/characters/adelonda/feral.svg",
  40573. extra: 597/271,
  40574. bottom: 387/984
  40575. }
  40576. },
  40577. },
  40578. [
  40579. {
  40580. name: "Normal",
  40581. height: math.unit(4, "meters"),
  40582. default: true
  40583. },
  40584. ]
  40585. ))
  40586. characterMakers.push(() => makeCharacter(
  40587. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40588. {
  40589. front: {
  40590. height: math.unit(8 + 4/12, "feet"),
  40591. weight: math.unit(670, "lb"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/acadiel/front.svg",
  40595. extra: 1901/1595,
  40596. bottom: 142/2043
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Normal",
  40603. height: math.unit(8 + 4/12, "feet"),
  40604. default: true
  40605. },
  40606. {
  40607. name: "Macro",
  40608. height: math.unit(200, "feet")
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40614. {
  40615. front: {
  40616. height: math.unit(6 + 2/12, "feet"),
  40617. weight: math.unit(185, "lb"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/kayne-ein/front.svg",
  40621. extra: 1780/1560,
  40622. bottom: 81/1861
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Normal",
  40629. height: math.unit(6 + 2/12, "feet"),
  40630. default: true
  40631. },
  40632. {
  40633. name: "Transformation Stage",
  40634. height: math.unit(15, "feet")
  40635. },
  40636. {
  40637. name: "Macro",
  40638. height: math.unit(150, "feet")
  40639. },
  40640. {
  40641. name: "Earth's Shadow",
  40642. height: math.unit(6200, "miles")
  40643. },
  40644. {
  40645. name: "Universal Demon",
  40646. height: math.unit(28e9, "parsecs")
  40647. },
  40648. {
  40649. name: "Multiverse God",
  40650. height: math.unit(3, "multiverses")
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(5 + 5/12, "feet"),
  40659. name: "Front",
  40660. image: {
  40661. source: "./media/characters/fawn/front.svg",
  40662. extra: 1873/1731,
  40663. bottom: 95/1968
  40664. }
  40665. },
  40666. back: {
  40667. height: math.unit(5 + 5/12, "feet"),
  40668. name: "Back",
  40669. image: {
  40670. source: "./media/characters/fawn/back.svg",
  40671. extra: 1813/1700,
  40672. bottom: 14/1827
  40673. }
  40674. },
  40675. hoof: {
  40676. height: math.unit(1.45, "feet"),
  40677. name: "Hoof",
  40678. image: {
  40679. source: "./media/characters/fawn/hoof.svg"
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Normal",
  40686. height: math.unit(5 + 5/12, "feet"),
  40687. default: true
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(2 + 5/12, "feet"),
  40696. name: "Front",
  40697. image: {
  40698. source: "./media/characters/orion/front.svg",
  40699. extra: 1366/1304,
  40700. bottom: 43/1409
  40701. }
  40702. },
  40703. paw: {
  40704. height: math.unit(0.52, "feet"),
  40705. name: "Paw",
  40706. image: {
  40707. source: "./media/characters/orion/paw.svg"
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(2 + 5/12, "feet"),
  40715. default: true
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(5 + 10/12, "feet"),
  40724. name: "Front",
  40725. image: {
  40726. source: "./media/characters/vera/front.svg",
  40727. extra: 1680/1575,
  40728. bottom: 49/1729
  40729. }
  40730. },
  40731. back: {
  40732. height: math.unit(5 + 10/12, "feet"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/vera/back.svg",
  40736. extra: 1700/1588,
  40737. bottom: 18/1718
  40738. }
  40739. },
  40740. arcanine: {
  40741. height: math.unit(6 + 8/12, "feet"),
  40742. name: "Arcanine",
  40743. image: {
  40744. source: "./media/characters/vera/arcanine.svg",
  40745. extra: 1590/1511,
  40746. bottom: 71/1661
  40747. }
  40748. },
  40749. maw: {
  40750. height: math.unit(0.82, "feet"),
  40751. name: "Maw",
  40752. image: {
  40753. source: "./media/characters/vera/maw.svg"
  40754. }
  40755. },
  40756. mawArcanine: {
  40757. height: math.unit(0.97, "feet"),
  40758. name: "Maw (Arcanine)",
  40759. image: {
  40760. source: "./media/characters/vera/maw-arcanine.svg"
  40761. }
  40762. },
  40763. paw: {
  40764. height: math.unit(0.75, "feet"),
  40765. name: "Paw",
  40766. image: {
  40767. source: "./media/characters/vera/paw.svg"
  40768. }
  40769. },
  40770. pawprint: {
  40771. height: math.unit(0.52, "feet"),
  40772. name: "Pawprint",
  40773. image: {
  40774. source: "./media/characters/vera/pawprint.svg"
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(5 + 10/12, "feet"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Macro",
  40786. height: math.unit(75, "feet")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(4, "feet"),
  40795. weight: math.unit(40, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/orvan-rabbit/front.svg",
  40799. extra: 1896/1642,
  40800. bottom: 29/1925
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(4, "feet"),
  40808. default: true
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(6, "feet"),
  40817. weight: math.unit(168, "lb"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/lisa/front.svg",
  40821. extra: 2065/1867,
  40822. bottom: 46/2111
  40823. }
  40824. },
  40825. back: {
  40826. height: math.unit(6, "feet"),
  40827. weight: math.unit(168, "lb"),
  40828. name: "Back",
  40829. image: {
  40830. source: "./media/characters/lisa/back.svg",
  40831. extra: 1982/1838,
  40832. bottom: 29/2011
  40833. }
  40834. },
  40835. maw: {
  40836. height: math.unit(0.81, "feet"),
  40837. name: "Maw",
  40838. image: {
  40839. source: "./media/characters/lisa/maw.svg"
  40840. }
  40841. },
  40842. paw: {
  40843. height: math.unit(0.9, "feet"),
  40844. name: "Paw",
  40845. image: {
  40846. source: "./media/characters/lisa/paw.svg"
  40847. }
  40848. },
  40849. caribousune: {
  40850. height: math.unit(7 + 2/12, "feet"),
  40851. weight: math.unit(268, "lb"),
  40852. name: "Caribousune",
  40853. image: {
  40854. source: "./media/characters/lisa/caribousune.svg",
  40855. extra: 1843/1633,
  40856. bottom: 29/1872
  40857. }
  40858. },
  40859. frontCaribousune: {
  40860. height: math.unit(7 + 2/12, "feet"),
  40861. weight: math.unit(268, "lb"),
  40862. name: "Front (Caribousune)",
  40863. image: {
  40864. source: "./media/characters/lisa/front-caribousune.svg",
  40865. extra: 1818/1638,
  40866. bottom: 52/1870
  40867. }
  40868. },
  40869. sideCaribousune: {
  40870. height: math.unit(7 + 2/12, "feet"),
  40871. weight: math.unit(268, "lb"),
  40872. name: "Side (Caribousune)",
  40873. image: {
  40874. source: "./media/characters/lisa/side-caribousune.svg",
  40875. extra: 1851/1635,
  40876. bottom: 16/1867
  40877. }
  40878. },
  40879. backCaribousune: {
  40880. height: math.unit(7 + 2/12, "feet"),
  40881. weight: math.unit(268, "lb"),
  40882. name: "Back (Caribousune)",
  40883. image: {
  40884. source: "./media/characters/lisa/back-caribousune.svg",
  40885. extra: 1801/1604,
  40886. bottom: 44/1845
  40887. }
  40888. },
  40889. caribou: {
  40890. height: math.unit(7 + 2/12, "feet"),
  40891. weight: math.unit(268, "lb"),
  40892. name: "Caribou",
  40893. image: {
  40894. source: "./media/characters/lisa/caribou.svg",
  40895. extra: 1843/1633,
  40896. bottom: 29/1872
  40897. }
  40898. },
  40899. frontCaribou: {
  40900. height: math.unit(7 + 2/12, "feet"),
  40901. weight: math.unit(268, "lb"),
  40902. name: "Front (Caribou)",
  40903. image: {
  40904. source: "./media/characters/lisa/front-caribou.svg",
  40905. extra: 1818/1638,
  40906. bottom: 52/1870
  40907. }
  40908. },
  40909. sideCaribou: {
  40910. height: math.unit(7 + 2/12, "feet"),
  40911. weight: math.unit(268, "lb"),
  40912. name: "Side (Caribou)",
  40913. image: {
  40914. source: "./media/characters/lisa/side-caribou.svg",
  40915. extra: 1851/1635,
  40916. bottom: 16/1867
  40917. }
  40918. },
  40919. backCaribou: {
  40920. height: math.unit(7 + 2/12, "feet"),
  40921. weight: math.unit(268, "lb"),
  40922. name: "Back (Caribou)",
  40923. image: {
  40924. source: "./media/characters/lisa/back-caribou.svg",
  40925. extra: 1801/1604,
  40926. bottom: 44/1845
  40927. }
  40928. },
  40929. mawCaribou: {
  40930. height: math.unit(1.45, "feet"),
  40931. name: "Maw (Caribou)",
  40932. image: {
  40933. source: "./media/characters/lisa/maw-caribou.svg"
  40934. }
  40935. },
  40936. mawCaribousune: {
  40937. height: math.unit(1.45, "feet"),
  40938. name: "Maw (Caribousune)",
  40939. image: {
  40940. source: "./media/characters/lisa/maw-caribousune.svg"
  40941. }
  40942. },
  40943. pawCaribousune: {
  40944. height: math.unit(1.61, "feet"),
  40945. name: "Paw (Caribou)",
  40946. image: {
  40947. source: "./media/characters/lisa/paw-caribousune.svg"
  40948. }
  40949. },
  40950. },
  40951. [
  40952. {
  40953. name: "Normal",
  40954. height: math.unit(6, "feet")
  40955. },
  40956. {
  40957. name: "God Size",
  40958. height: math.unit(72, "feet"),
  40959. default: true
  40960. },
  40961. {
  40962. name: "Towering",
  40963. height: math.unit(288, "feet")
  40964. },
  40965. {
  40966. name: "City Size",
  40967. height: math.unit(48384, "feet")
  40968. },
  40969. {
  40970. name: "Continental",
  40971. height: math.unit(4200, "miles")
  40972. },
  40973. {
  40974. name: "Planet Eater",
  40975. height: math.unit(42, "earths")
  40976. },
  40977. {
  40978. name: "Star Swallower",
  40979. height: math.unit(42, "solarradii")
  40980. },
  40981. {
  40982. name: "System Swallower",
  40983. height: math.unit(84000, "AU")
  40984. },
  40985. {
  40986. name: "Galaxy Gobbler",
  40987. height: math.unit(42, "galaxies")
  40988. },
  40989. {
  40990. name: "Universe Devourer",
  40991. height: math.unit(42, "universes")
  40992. },
  40993. {
  40994. name: "Multiverse Muncher",
  40995. height: math.unit(42, "multiverses")
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(36, "feet"),
  41004. name: "Front",
  41005. image: {
  41006. source: "./media/characters/shadow-rat/front.svg",
  41007. extra: 1845/1758,
  41008. bottom: 83/1928
  41009. }
  41010. },
  41011. },
  41012. [
  41013. {
  41014. name: "Macro",
  41015. height: math.unit(36, "feet"),
  41016. default: true
  41017. },
  41018. ]
  41019. ))
  41020. characterMakers.push(() => makeCharacter(
  41021. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41022. {
  41023. side: {
  41024. height: math.unit(8, "feet"),
  41025. weight: math.unit(2630, "lb"),
  41026. name: "Side",
  41027. image: {
  41028. source: "./media/characters/torallia/side.svg",
  41029. extra: 2164/2021,
  41030. bottom: 371/2535
  41031. }
  41032. },
  41033. },
  41034. [
  41035. {
  41036. name: "Mortal Interaction",
  41037. height: math.unit(8, "feet")
  41038. },
  41039. {
  41040. name: "Natural",
  41041. height: math.unit(24, "feet"),
  41042. default: true
  41043. },
  41044. {
  41045. name: "Giant",
  41046. height: math.unit(80, "feet")
  41047. },
  41048. {
  41049. name: "Kaiju",
  41050. height: math.unit(240, "feet")
  41051. },
  41052. {
  41053. name: "Macro",
  41054. height: math.unit(800, "feet")
  41055. },
  41056. {
  41057. name: "Macro+",
  41058. height: math.unit(2400, "feet")
  41059. },
  41060. {
  41061. name: "Macro++",
  41062. height: math.unit(8000, "feet")
  41063. },
  41064. {
  41065. name: "City-Crushing",
  41066. height: math.unit(24000, "feet")
  41067. },
  41068. {
  41069. name: "Mountain-Mashing",
  41070. height: math.unit(80000, "feet")
  41071. },
  41072. {
  41073. name: "District Demolisher",
  41074. height: math.unit(240000, "feet")
  41075. },
  41076. {
  41077. name: "Tri-County Terror",
  41078. height: math.unit(800000, "feet")
  41079. },
  41080. {
  41081. name: "State Smasher",
  41082. height: math.unit(2.4e6, "feet")
  41083. },
  41084. {
  41085. name: "Nation Nemesis",
  41086. height: math.unit(8e6, "feet")
  41087. },
  41088. {
  41089. name: "Continent Cracker",
  41090. height: math.unit(2.4e7, "feet")
  41091. },
  41092. {
  41093. name: "Planet-Pillaging",
  41094. height: math.unit(8e7, "feet")
  41095. },
  41096. {
  41097. name: "Earth-Eclipsing",
  41098. height: math.unit(2.4e8, "feet")
  41099. },
  41100. {
  41101. name: "Jovian-Jostling",
  41102. height: math.unit(8e8, "feet")
  41103. },
  41104. {
  41105. name: "Gas Giant Gulper",
  41106. height: math.unit(2.4e9, "feet")
  41107. },
  41108. {
  41109. name: "Astral Annihilator",
  41110. height: math.unit(8e9, "feet")
  41111. },
  41112. {
  41113. name: "Celestial Conqueror",
  41114. height: math.unit(2.4e10, "feet")
  41115. },
  41116. {
  41117. name: "Sol-Swallowing",
  41118. height: math.unit(8e10, "feet")
  41119. },
  41120. {
  41121. name: "Hunter of the Heavens",
  41122. height: math.unit(2.4e13, "feet")
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41128. {
  41129. front: {
  41130. height: math.unit(6 + 8/12, "feet"),
  41131. weight: math.unit(250, "kilograms"),
  41132. volume: math.unit(28, "liters"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/rebecca-pawlson/front.svg",
  41136. extra: 1737/1596,
  41137. bottom: 107/1844
  41138. }
  41139. },
  41140. back: {
  41141. height: math.unit(6 + 8/12, "feet"),
  41142. weight: math.unit(250, "kilograms"),
  41143. volume: math.unit(28, "liters"),
  41144. name: "Back",
  41145. image: {
  41146. source: "./media/characters/rebecca-pawlson/back.svg",
  41147. extra: 1702/1523,
  41148. bottom: 86/1788
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Normal",
  41155. height: math.unit(6 + 8/12, "feet")
  41156. },
  41157. {
  41158. name: "Mini Macro",
  41159. height: math.unit(10, "feet"),
  41160. default: true
  41161. },
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(100, "feet")
  41165. },
  41166. {
  41167. name: "Mega Macro",
  41168. height: math.unit(2500, "feet")
  41169. },
  41170. {
  41171. name: "Giga Macro",
  41172. height: math.unit(50, "miles")
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(7 + 6/12, "feet"),
  41181. weight: math.unit(600, "lb"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/moxie-nova/front.svg",
  41185. extra: 1734/1652,
  41186. bottom: 41/1775
  41187. }
  41188. },
  41189. },
  41190. [
  41191. {
  41192. name: "Normal",
  41193. height: math.unit(7 + 6/12, "feet"),
  41194. default: true
  41195. },
  41196. ]
  41197. ))
  41198. characterMakers.push(() => makeCharacter(
  41199. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41200. {
  41201. goat: {
  41202. height: math.unit(4, "feet"),
  41203. weight: math.unit(180, "lb"),
  41204. name: "Goat",
  41205. image: {
  41206. source: "./media/characters/tiffany/goat.svg",
  41207. extra: 1845/1595,
  41208. bottom: 106/1951
  41209. }
  41210. },
  41211. front: {
  41212. height: math.unit(5, "feet"),
  41213. weight: math.unit(150, "lb"),
  41214. name: "Foxcoon",
  41215. image: {
  41216. source: "./media/characters/tiffany/foxcoon.svg",
  41217. extra: 1941/1845,
  41218. bottom: 58/1999
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Normal",
  41225. height: math.unit(5, "feet"),
  41226. default: true
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(8, "feet"),
  41235. weight: math.unit(300, "lb"),
  41236. name: "Front",
  41237. image: {
  41238. source: "./media/characters/raxinath/front.svg",
  41239. extra: 1407/1309,
  41240. bottom: 39/1446
  41241. }
  41242. },
  41243. back: {
  41244. height: math.unit(8, "feet"),
  41245. weight: math.unit(300, "lb"),
  41246. name: "Back",
  41247. image: {
  41248. source: "./media/characters/raxinath/back.svg",
  41249. extra: 1405/1315,
  41250. bottom: 9/1414
  41251. }
  41252. },
  41253. },
  41254. [
  41255. {
  41256. name: "Speck",
  41257. height: math.unit(0.5, "nm")
  41258. },
  41259. {
  41260. name: "Micro",
  41261. height: math.unit(3, "inches")
  41262. },
  41263. {
  41264. name: "Kobold",
  41265. height: math.unit(3, "feet")
  41266. },
  41267. {
  41268. name: "Normal",
  41269. height: math.unit(8, "feet"),
  41270. default: true
  41271. },
  41272. {
  41273. name: "Giant",
  41274. height: math.unit(50, "feet")
  41275. },
  41276. {
  41277. name: "Macro",
  41278. height: math.unit(1000, "feet")
  41279. },
  41280. {
  41281. name: "Megamacro",
  41282. height: math.unit(1, "mile")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(10, "feet"),
  41291. weight: math.unit(1442, "lb"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/mal-dragon/front.svg",
  41295. extra: 1515/1444,
  41296. bottom: 113/1628
  41297. }
  41298. },
  41299. back: {
  41300. height: math.unit(10, "feet"),
  41301. weight: math.unit(1442, "lb"),
  41302. name: "Back",
  41303. image: {
  41304. source: "./media/characters/mal-dragon/back.svg",
  41305. extra: 1527/1434,
  41306. bottom: 25/1552
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Mortal Interaction",
  41313. height: math.unit(10, "feet"),
  41314. default: true
  41315. },
  41316. {
  41317. name: "Large",
  41318. height: math.unit(30, "feet")
  41319. },
  41320. {
  41321. name: "Kaiju",
  41322. height: math.unit(300, "feet")
  41323. },
  41324. {
  41325. name: "Megamacro",
  41326. height: math.unit(10000, "feet")
  41327. },
  41328. {
  41329. name: "Continent Cracker",
  41330. height: math.unit(30000000, "feet")
  41331. },
  41332. {
  41333. name: "Sol-Swallowing",
  41334. height: math.unit(1e11, "feet")
  41335. },
  41336. {
  41337. name: "Light Universal",
  41338. height: math.unit(5, "universes")
  41339. },
  41340. {
  41341. name: "Universe Atoms",
  41342. height: math.unit(1.829e9, "universes")
  41343. },
  41344. {
  41345. name: "Light Multiversal",
  41346. height: math.unit(5, "multiverses")
  41347. },
  41348. {
  41349. name: "Multiverse Atoms",
  41350. height: math.unit(1.829e9, "multiverses")
  41351. },
  41352. {
  41353. name: "Fabric of Time",
  41354. height: math.unit(1e262, "multiverses")
  41355. },
  41356. ]
  41357. ))
  41358. characterMakers.push(() => makeCharacter(
  41359. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41360. {
  41361. front: {
  41362. height: math.unit(9, "feet"),
  41363. weight: math.unit(1050, "lb"),
  41364. name: "Front",
  41365. image: {
  41366. source: "./media/characters/tabitha/front.svg",
  41367. extra: 2083/1994,
  41368. bottom: 68/2151
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Baseline",
  41375. height: math.unit(9, "feet"),
  41376. default: true
  41377. },
  41378. {
  41379. name: "Giant",
  41380. height: math.unit(90, "feet")
  41381. },
  41382. {
  41383. name: "Macro",
  41384. height: math.unit(900, "feet")
  41385. },
  41386. {
  41387. name: "Megamacro",
  41388. height: math.unit(9000, "feet")
  41389. },
  41390. {
  41391. name: "City-Crushing",
  41392. height: math.unit(27000, "feet")
  41393. },
  41394. {
  41395. name: "Mountain-Mashing",
  41396. height: math.unit(90000, "feet")
  41397. },
  41398. {
  41399. name: "Nation Nemesis",
  41400. height: math.unit(9e6, "feet")
  41401. },
  41402. {
  41403. name: "Continent Cracker",
  41404. height: math.unit(27e6, "feet")
  41405. },
  41406. {
  41407. name: "Earth-Eclipsing",
  41408. height: math.unit(2.7e8, "feet")
  41409. },
  41410. {
  41411. name: "Gas Giant Gulper",
  41412. height: math.unit(2.7e9, "feet")
  41413. },
  41414. {
  41415. name: "Sol-Swallowing",
  41416. height: math.unit(9e10, "feet")
  41417. },
  41418. {
  41419. name: "Galaxy Gulper",
  41420. height: math.unit(9, "galaxies")
  41421. },
  41422. {
  41423. name: "Cosmos Churner",
  41424. height: math.unit(9, "universes")
  41425. },
  41426. ]
  41427. ))
  41428. characterMakers.push(() => makeCharacter(
  41429. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41430. {
  41431. front: {
  41432. height: math.unit(160, "cm"),
  41433. weight: math.unit(55, "kg"),
  41434. name: "Front",
  41435. image: {
  41436. source: "./media/characters/tow/front.svg",
  41437. extra: 1751/1722,
  41438. bottom: 74/1825
  41439. }
  41440. },
  41441. },
  41442. [
  41443. {
  41444. name: "Norm",
  41445. height: math.unit(160, "cm")
  41446. },
  41447. {
  41448. name: "Casual",
  41449. height: math.unit(3200, "m"),
  41450. default: true
  41451. },
  41452. {
  41453. name: "Show-Off",
  41454. height: math.unit(160, "km")
  41455. },
  41456. ]
  41457. ))
  41458. characterMakers.push(() => makeCharacter(
  41459. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41460. {
  41461. front: {
  41462. height: math.unit(7 + 11/12, "feet"),
  41463. weight: math.unit(342.8, "lb"),
  41464. name: "Front",
  41465. image: {
  41466. source: "./media/characters/vivian-orca-dragon/front.svg",
  41467. extra: 1890/1865,
  41468. bottom: 28/1918
  41469. }
  41470. },
  41471. },
  41472. [
  41473. {
  41474. name: "Micro",
  41475. height: math.unit(5, "inches")
  41476. },
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(7 + 11/12, "feet"),
  41480. default: true
  41481. },
  41482. {
  41483. name: "Macro",
  41484. height: math.unit(395 + 7/12, "feet")
  41485. },
  41486. ]
  41487. ))
  41488. characterMakers.push(() => makeCharacter(
  41489. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41490. {
  41491. side: {
  41492. height: math.unit(10, "feet"),
  41493. weight: math.unit(1442, "lb"),
  41494. name: "Side",
  41495. image: {
  41496. source: "./media/characters/lotherakon/side.svg",
  41497. extra: 1604/1497,
  41498. bottom: 89/1693
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Mortal Interaction",
  41505. height: math.unit(10, "feet")
  41506. },
  41507. {
  41508. name: "Large",
  41509. height: math.unit(30, "feet"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Giant",
  41514. height: math.unit(100, "feet")
  41515. },
  41516. {
  41517. name: "Kaiju",
  41518. height: math.unit(300, "feet")
  41519. },
  41520. {
  41521. name: "Macro",
  41522. height: math.unit(1000, "feet")
  41523. },
  41524. {
  41525. name: "Macro+",
  41526. height: math.unit(3000, "feet")
  41527. },
  41528. {
  41529. name: "Megamacro",
  41530. height: math.unit(10000, "feet")
  41531. },
  41532. {
  41533. name: "City-Crushing",
  41534. height: math.unit(30000, "feet")
  41535. },
  41536. {
  41537. name: "Continent Cracker",
  41538. height: math.unit(30e6, "feet")
  41539. },
  41540. {
  41541. name: "Earth Eclipsing",
  41542. height: math.unit(3e8, "feet")
  41543. },
  41544. {
  41545. name: "Gas Giant Gulper",
  41546. height: math.unit(3e9, "feet")
  41547. },
  41548. {
  41549. name: "Sol-Swallowing",
  41550. height: math.unit(1e11, "feet")
  41551. },
  41552. {
  41553. name: "System Swallower",
  41554. height: math.unit(3e14, "feet")
  41555. },
  41556. {
  41557. name: "Galaxy Gulper",
  41558. height: math.unit(10, "galaxies")
  41559. },
  41560. {
  41561. name: "Light Universal",
  41562. height: math.unit(5, "universes")
  41563. },
  41564. {
  41565. name: "Universe Palm",
  41566. height: math.unit(20, "universes")
  41567. },
  41568. {
  41569. name: "Light Multiversal",
  41570. height: math.unit(5, "multiverses")
  41571. },
  41572. {
  41573. name: "Multiverse Palm",
  41574. height: math.unit(20, "multiverses")
  41575. },
  41576. {
  41577. name: "Inferno Incarnate",
  41578. height: math.unit(1e7, "multiverses")
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(8, "feet"),
  41587. weight: math.unit(1200, "lb"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/malithee/front.svg",
  41591. extra: 1675/1640,
  41592. bottom: 162/1837
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Mortal Interaction",
  41599. height: math.unit(8, "feet"),
  41600. default: true
  41601. },
  41602. {
  41603. name: "Large",
  41604. height: math.unit(24, "feet")
  41605. },
  41606. {
  41607. name: "Kaiju",
  41608. height: math.unit(240, "feet")
  41609. },
  41610. {
  41611. name: "Megamacro",
  41612. height: math.unit(8000, "feet")
  41613. },
  41614. {
  41615. name: "Continent Cracker",
  41616. height: math.unit(24e6, "feet")
  41617. },
  41618. {
  41619. name: "Earth-Eclipsing",
  41620. height: math.unit(2.4e8, "feet")
  41621. },
  41622. {
  41623. name: "Sol-Swallowing",
  41624. height: math.unit(8e10, "feet")
  41625. },
  41626. {
  41627. name: "Galaxy Gulper",
  41628. height: math.unit(8, "galaxies")
  41629. },
  41630. {
  41631. name: "Light Universal",
  41632. height: math.unit(4, "universes")
  41633. },
  41634. {
  41635. name: "Universe Atoms",
  41636. height: math.unit(1.829e9, "universes")
  41637. },
  41638. {
  41639. name: "Light Multiversal",
  41640. height: math.unit(4, "multiverses")
  41641. },
  41642. {
  41643. name: "Multiverse Atoms",
  41644. height: math.unit(1.829e9, "multiverses")
  41645. },
  41646. {
  41647. name: "Nigh-Omnipresence",
  41648. height: math.unit(8e261, "multiverses")
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(10, "feet"),
  41657. weight: math.unit(1500, "lb"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/miles-thestia/front.svg",
  41661. extra: 1812/1727,
  41662. bottom: 86/1898
  41663. }
  41664. },
  41665. back: {
  41666. height: math.unit(10, "feet"),
  41667. weight: math.unit(1500, "lb"),
  41668. name: "Back",
  41669. image: {
  41670. source: "./media/characters/miles-thestia/back.svg",
  41671. extra: 1799/1690,
  41672. bottom: 47/1846
  41673. }
  41674. },
  41675. frontNsfw: {
  41676. height: math.unit(10, "feet"),
  41677. weight: math.unit(1500, "lb"),
  41678. name: "Front (NSFW)",
  41679. image: {
  41680. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41681. extra: 1812/1727,
  41682. bottom: 86/1898
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Mini-Macro",
  41689. height: math.unit(10, "feet"),
  41690. default: true
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(25, "feet"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/titan-s-wulf/front.svg",
  41702. extra: 1560/1484,
  41703. bottom: 76/1636
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Smallest",
  41710. height: math.unit(25, "feet"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Normal",
  41715. height: math.unit(200, "feet")
  41716. },
  41717. {
  41718. name: "Macro",
  41719. height: math.unit(200000, "feet")
  41720. },
  41721. {
  41722. name: "Multiversal Original",
  41723. height: math.unit(10000, "multiverses")
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(8, "feet"),
  41732. weight: math.unit(553, "lb"),
  41733. name: "Front",
  41734. image: {
  41735. source: "./media/characters/tawendeh/front.svg",
  41736. extra: 2365/2268,
  41737. bottom: 83/2448
  41738. }
  41739. },
  41740. frontClothed: {
  41741. height: math.unit(8, "feet"),
  41742. weight: math.unit(553, "lb"),
  41743. name: "Front (Clothed)",
  41744. image: {
  41745. source: "./media/characters/tawendeh/front-clothed.svg",
  41746. extra: 2365/2268,
  41747. bottom: 83/2448
  41748. }
  41749. },
  41750. back: {
  41751. height: math.unit(8, "feet"),
  41752. weight: math.unit(553, "lb"),
  41753. name: "Back",
  41754. image: {
  41755. source: "./media/characters/tawendeh/back.svg",
  41756. extra: 2397/2294,
  41757. bottom: 42/2439
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Mortal Interaction",
  41764. height: math.unit(8, "feet"),
  41765. default: true
  41766. },
  41767. {
  41768. name: "Giant",
  41769. height: math.unit(80, "feet")
  41770. },
  41771. {
  41772. name: "Macro",
  41773. height: math.unit(800, "feet")
  41774. },
  41775. {
  41776. name: "Megamacro",
  41777. height: math.unit(8000, "feet")
  41778. },
  41779. {
  41780. name: "City-Crushing",
  41781. height: math.unit(24000, "feet")
  41782. },
  41783. {
  41784. name: "Mountain-Mashing",
  41785. height: math.unit(80000, "feet")
  41786. },
  41787. {
  41788. name: "Nation Nemesis",
  41789. height: math.unit(8e6, "feet")
  41790. },
  41791. {
  41792. name: "Continent Cracker",
  41793. height: math.unit(24e6, "feet")
  41794. },
  41795. {
  41796. name: "Earth-Eclipsing",
  41797. height: math.unit(2.4e8, "feet")
  41798. },
  41799. {
  41800. name: "Gas Giant Gulper",
  41801. height: math.unit(2.4e9, "feet")
  41802. },
  41803. {
  41804. name: "Sol-Swallowing",
  41805. height: math.unit(8e10, "feet")
  41806. },
  41807. {
  41808. name: "Galaxy Gulper",
  41809. height: math.unit(8, "galaxies")
  41810. },
  41811. {
  41812. name: "Cosmos Churner",
  41813. height: math.unit(8, "universes")
  41814. },
  41815. {
  41816. name: "Omnipotent Otter",
  41817. height: math.unit(80, "universes")
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41823. {
  41824. front: {
  41825. height: math.unit(2.6, "meters"),
  41826. weight: math.unit(900, "kg"),
  41827. name: "Front",
  41828. image: {
  41829. source: "./media/characters/neesha/front.svg",
  41830. extra: 1803/1653,
  41831. bottom: 128/1931
  41832. }
  41833. },
  41834. },
  41835. [
  41836. {
  41837. name: "Normal",
  41838. height: math.unit(2.6, "meters"),
  41839. default: true
  41840. },
  41841. {
  41842. name: "Macro",
  41843. height: math.unit(50, "meters")
  41844. },
  41845. ]
  41846. ))
  41847. characterMakers.push(() => makeCharacter(
  41848. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41849. {
  41850. front: {
  41851. height: math.unit(5, "feet"),
  41852. weight: math.unit(185, "lb"),
  41853. name: "Front",
  41854. image: {
  41855. source: "./media/characters/kyera/front.svg",
  41856. extra: 1875/1790,
  41857. bottom: 96/1971
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Normal",
  41864. height: math.unit(5, "feet"),
  41865. default: true
  41866. },
  41867. ]
  41868. ))
  41869. characterMakers.push(() => makeCharacter(
  41870. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41871. {
  41872. front: {
  41873. height: math.unit(7 + 6/12, "feet"),
  41874. weight: math.unit(540, "lb"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/yuko/front.svg",
  41878. extra: 1282/1222,
  41879. bottom: 101/1383
  41880. }
  41881. },
  41882. frontClothed: {
  41883. height: math.unit(7 + 6/12, "feet"),
  41884. weight: math.unit(540, "lb"),
  41885. name: "Front (Clothed)",
  41886. image: {
  41887. source: "./media/characters/yuko/front-clothed.svg",
  41888. extra: 1282/1222,
  41889. bottom: 101/1383
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Normal",
  41896. height: math.unit(7 + 6/12, "feet"),
  41897. default: true
  41898. },
  41899. {
  41900. name: "Macro",
  41901. height: math.unit(26 + 9/12, "feet")
  41902. },
  41903. {
  41904. name: "Megamacro",
  41905. height: math.unit(300, "feet")
  41906. },
  41907. {
  41908. name: "Gigamacro",
  41909. height: math.unit(5000, "feet")
  41910. },
  41911. {
  41912. name: "Planetary",
  41913. height: math.unit(10000, "miles")
  41914. },
  41915. ]
  41916. ))
  41917. characterMakers.push(() => makeCharacter(
  41918. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41919. {
  41920. front: {
  41921. height: math.unit(8 + 2/12, "feet"),
  41922. weight: math.unit(600, "lb"),
  41923. name: "Front",
  41924. image: {
  41925. source: "./media/characters/deam-nitrel/front.svg",
  41926. extra: 1308/1234,
  41927. bottom: 125/1433
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Normal",
  41934. height: math.unit(8 + 2/12, "feet"),
  41935. default: true
  41936. },
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41941. {
  41942. front: {
  41943. height: math.unit(6.1, "feet"),
  41944. weight: math.unit(180, "lb"),
  41945. name: "Front",
  41946. image: {
  41947. source: "./media/characters/skyress/front.svg",
  41948. extra: 1045/915,
  41949. bottom: 28/1073
  41950. }
  41951. },
  41952. maw: {
  41953. height: math.unit(1, "feet"),
  41954. name: "Maw",
  41955. image: {
  41956. source: "./media/characters/skyress/maw.svg"
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(6.1, "feet"),
  41964. default: true
  41965. },
  41966. {
  41967. name: "Macro",
  41968. height: math.unit(200, "feet")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(4 + 2/12, "feet"),
  41977. weight: math.unit(40, "kg"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/amethyst-jones/front.svg",
  41981. extra: 1220/1150,
  41982. bottom: 101/1321
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Normal",
  41989. height: math.unit(4 + 2/12, "feet"),
  41990. default: true
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41996. {
  41997. front: {
  41998. height: math.unit(1.7, "m"),
  41999. weight: math.unit(135, "lb"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/jade/front.svg",
  42003. extra: 1818/1767,
  42004. bottom: 32/1850
  42005. }
  42006. },
  42007. back: {
  42008. height: math.unit(1.7, "m"),
  42009. weight: math.unit(135, "lb"),
  42010. name: "Back",
  42011. image: {
  42012. source: "./media/characters/jade/back.svg",
  42013. extra: 1869/1809,
  42014. bottom: 35/1904
  42015. }
  42016. },
  42017. hand: {
  42018. height: math.unit(0.24, "m"),
  42019. name: "Hand",
  42020. image: {
  42021. source: "./media/characters/jade/hand.svg"
  42022. }
  42023. },
  42024. foot: {
  42025. height: math.unit(0.263, "m"),
  42026. name: "Foot",
  42027. image: {
  42028. source: "./media/characters/jade/foot.svg"
  42029. }
  42030. },
  42031. dick: {
  42032. height: math.unit(0.47, "m"),
  42033. name: "Dick",
  42034. image: {
  42035. source: "./media/characters/jade/dick.svg"
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Micro",
  42042. height: math.unit(22, "cm")
  42043. },
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(1.7, "m"),
  42047. default: true
  42048. },
  42049. {
  42050. name: "Macro",
  42051. height: math.unit(152, "m")
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(100, "miles"),
  42060. weight: math.unit(20000, "tons"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/cookie/front.svg",
  42064. extra: 1125/1070,
  42065. bottom: 30/1155
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Big",
  42072. height: math.unit(50, "feet")
  42073. },
  42074. {
  42075. name: "Macro",
  42076. height: math.unit(100, "miles"),
  42077. default: true
  42078. },
  42079. {
  42080. name: "Megamacro",
  42081. height: math.unit(90000, "miles")
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(6, "feet"),
  42090. weight: math.unit(145, "lb"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/farzian/front.svg",
  42094. extra: 1902/1693,
  42095. bottom: 108/2010
  42096. }
  42097. },
  42098. },
  42099. [
  42100. {
  42101. name: "Macro",
  42102. height: math.unit(500, "feet"),
  42103. default: true
  42104. },
  42105. ]
  42106. ))
  42107. characterMakers.push(() => makeCharacter(
  42108. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42109. {
  42110. front: {
  42111. height: math.unit(3 + 6/12, "feet"),
  42112. weight: math.unit(50, "lb"),
  42113. name: "Front",
  42114. image: {
  42115. source: "./media/characters/kimberly-tilson/front.svg",
  42116. extra: 1400/1322,
  42117. bottom: 36/1436
  42118. }
  42119. },
  42120. back: {
  42121. height: math.unit(3 + 6/12, "feet"),
  42122. weight: math.unit(50, "lb"),
  42123. name: "Back",
  42124. image: {
  42125. source: "./media/characters/kimberly-tilson/back.svg",
  42126. extra: 1370/1307,
  42127. bottom: 20/1390
  42128. }
  42129. },
  42130. },
  42131. [
  42132. {
  42133. name: "Normal",
  42134. height: math.unit(3 + 6/12, "feet"),
  42135. default: true
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(1148, "feet"),
  42144. weight: math.unit(34057, "lb"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/harthos/front.svg",
  42148. extra: 1391/1339,
  42149. bottom: 13/1404
  42150. }
  42151. },
  42152. },
  42153. [
  42154. {
  42155. name: "Macro",
  42156. height: math.unit(1148, "feet"),
  42157. default: true
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(15, "feet"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/hypatia/front.svg",
  42169. extra: 1653/1591,
  42170. bottom: 79/1732
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Normal",
  42177. height: math.unit(15, "feet")
  42178. },
  42179. {
  42180. name: "Small",
  42181. height: math.unit(300, "feet")
  42182. },
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(2500, "feet"),
  42186. default: true
  42187. },
  42188. {
  42189. name: "Mega Macro",
  42190. height: math.unit(1500, "miles")
  42191. },
  42192. {
  42193. name: "Giga Macro",
  42194. height: math.unit(1.5e6, "miles")
  42195. },
  42196. ]
  42197. ))
  42198. characterMakers.push(() => makeCharacter(
  42199. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42200. {
  42201. front: {
  42202. height: math.unit(6, "feet"),
  42203. weight: math.unit(200, "lb"),
  42204. name: "Front",
  42205. image: {
  42206. source: "./media/characters/wulver/front.svg",
  42207. extra: 1724/1632,
  42208. bottom: 130/1854
  42209. }
  42210. },
  42211. frontNsfw: {
  42212. height: math.unit(6, "feet"),
  42213. weight: math.unit(200, "lb"),
  42214. name: "Front (NSFW)",
  42215. image: {
  42216. source: "./media/characters/wulver/front-nsfw.svg",
  42217. extra: 1724/1632,
  42218. bottom: 130/1854
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Human-Sized",
  42225. height: math.unit(6, "feet")
  42226. },
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(4, "meters"),
  42230. default: true
  42231. },
  42232. {
  42233. name: "Large",
  42234. height: math.unit(6, "m")
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(7, "feet"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/maru/front.svg",
  42246. extra: 1595/1570,
  42247. bottom: 0/1595
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(7, "feet"),
  42255. default: true
  42256. },
  42257. {
  42258. name: "Macro",
  42259. height: math.unit(700, "feet")
  42260. },
  42261. {
  42262. name: "Mega Macro",
  42263. height: math.unit(25, "miles")
  42264. },
  42265. ]
  42266. ))
  42267. characterMakers.push(() => makeCharacter(
  42268. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42269. {
  42270. front: {
  42271. height: math.unit(6, "feet"),
  42272. weight: math.unit(170, "lb"),
  42273. name: "Front",
  42274. image: {
  42275. source: "./media/characters/xenon/front.svg",
  42276. extra: 1376/1305,
  42277. bottom: 56/1432
  42278. }
  42279. },
  42280. back: {
  42281. height: math.unit(6, "feet"),
  42282. weight: math.unit(170, "lb"),
  42283. name: "Back",
  42284. image: {
  42285. source: "./media/characters/xenon/back.svg",
  42286. extra: 1328/1259,
  42287. bottom: 95/1423
  42288. }
  42289. },
  42290. maw: {
  42291. height: math.unit(0.52, "feet"),
  42292. name: "Maw",
  42293. image: {
  42294. source: "./media/characters/xenon/maw.svg"
  42295. }
  42296. },
  42297. handLeft: {
  42298. height: math.unit(0.82 * 169 / 153, "feet"),
  42299. name: "Hand (Left)",
  42300. image: {
  42301. source: "./media/characters/xenon/hand-left.svg"
  42302. }
  42303. },
  42304. handRight: {
  42305. height: math.unit(0.82, "feet"),
  42306. name: "Hand (Right)",
  42307. image: {
  42308. source: "./media/characters/xenon/hand-right.svg"
  42309. }
  42310. },
  42311. footLeft: {
  42312. height: math.unit(1.13, "feet"),
  42313. name: "Foot (Left)",
  42314. image: {
  42315. source: "./media/characters/xenon/foot-left.svg"
  42316. }
  42317. },
  42318. footRight: {
  42319. height: math.unit(1.13 * 194 / 196, "feet"),
  42320. name: "Foot (Right)",
  42321. image: {
  42322. source: "./media/characters/xenon/foot-right.svg"
  42323. }
  42324. },
  42325. },
  42326. [
  42327. {
  42328. name: "Micro",
  42329. height: math.unit(0.8, "inches")
  42330. },
  42331. {
  42332. name: "Normal",
  42333. height: math.unit(6, "feet")
  42334. },
  42335. {
  42336. name: "Macro",
  42337. height: math.unit(50, "feet"),
  42338. default: true
  42339. },
  42340. {
  42341. name: "Macro+",
  42342. height: math.unit(250, "feet")
  42343. },
  42344. {
  42345. name: "Megamacro",
  42346. height: math.unit(1500, "feet")
  42347. },
  42348. ]
  42349. ))
  42350. characterMakers.push(() => makeCharacter(
  42351. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42352. {
  42353. front: {
  42354. height: math.unit(7 + 5/12, "feet"),
  42355. name: "Front",
  42356. image: {
  42357. source: "./media/characters/zane/front.svg",
  42358. extra: 1260/1203,
  42359. bottom: 94/1354
  42360. }
  42361. },
  42362. back: {
  42363. height: math.unit(5.05, "feet"),
  42364. name: "Back",
  42365. image: {
  42366. source: "./media/characters/zane/back.svg",
  42367. extra: 893/829,
  42368. bottom: 30/923
  42369. }
  42370. },
  42371. werewolf: {
  42372. height: math.unit(11, "feet"),
  42373. name: "Werewolf",
  42374. image: {
  42375. source: "./media/characters/zane/werewolf.svg",
  42376. extra: 1383/1323,
  42377. bottom: 89/1472
  42378. }
  42379. },
  42380. foot: {
  42381. height: math.unit(1.46, "feet"),
  42382. name: "Foot",
  42383. image: {
  42384. source: "./media/characters/zane/foot.svg"
  42385. }
  42386. },
  42387. footFront: {
  42388. height: math.unit(0.784, "feet"),
  42389. name: "Foot (Front)",
  42390. image: {
  42391. source: "./media/characters/zane/foot-front.svg"
  42392. }
  42393. },
  42394. dick: {
  42395. height: math.unit(1.95, "feet"),
  42396. name: "Dick",
  42397. image: {
  42398. source: "./media/characters/zane/dick.svg"
  42399. }
  42400. },
  42401. dickWerewolf: {
  42402. height: math.unit(3.77, "feet"),
  42403. name: "Dick (Werewolf)",
  42404. image: {
  42405. source: "./media/characters/zane/dick.svg"
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(7 + 5/12, "feet"),
  42413. default: true
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(6 + 2/12, "feet"),
  42422. weight: math.unit(284, "lb"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/benni-desparque/front.svg",
  42426. extra: 1353/1126,
  42427. bottom: 69/1422
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Civilian",
  42434. height: math.unit(6 + 2/12, "feet")
  42435. },
  42436. {
  42437. name: "Normal",
  42438. height: math.unit(98, "feet"),
  42439. default: true
  42440. },
  42441. {
  42442. name: "Kaiju Fighter",
  42443. height: math.unit(268, "feet")
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(5, "feet"),
  42452. weight: math.unit(105, "lb"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/maxine/front.svg",
  42456. extra: 1386/1250,
  42457. bottom: 71/1457
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Normal",
  42464. height: math.unit(5, "feet"),
  42465. default: true
  42466. },
  42467. ]
  42468. ))
  42469. characterMakers.push(() => makeCharacter(
  42470. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42471. {
  42472. front: {
  42473. height: math.unit(11 + 7/12, "feet"),
  42474. weight: math.unit(9576, "lb"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/scaly/front.svg",
  42478. extra: 888/867,
  42479. bottom: 36/924
  42480. }
  42481. },
  42482. },
  42483. [
  42484. {
  42485. name: "Normal",
  42486. height: math.unit(11 + 7/12, "feet"),
  42487. default: true
  42488. },
  42489. ]
  42490. ))
  42491. characterMakers.push(() => makeCharacter(
  42492. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42493. {
  42494. front: {
  42495. height: math.unit(6 + 3/12, "feet"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/saelria/front.svg",
  42499. extra: 1243/1138,
  42500. bottom: 46/1289
  42501. }
  42502. },
  42503. },
  42504. [
  42505. {
  42506. name: "Micro",
  42507. height: math.unit(6, "inches"),
  42508. },
  42509. {
  42510. name: "Normal",
  42511. height: math.unit(6 + 3/12, "feet"),
  42512. default: true
  42513. },
  42514. {
  42515. name: "Macro",
  42516. height: math.unit(25, "feet")
  42517. },
  42518. ]
  42519. ))
  42520. characterMakers.push(() => makeCharacter(
  42521. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42522. {
  42523. front: {
  42524. height: math.unit(80, "meters"),
  42525. weight: math.unit(7000, "tonnes"),
  42526. name: "Front",
  42527. image: {
  42528. source: "./media/characters/tef/front.svg",
  42529. extra: 2036/1991,
  42530. bottom: 54/2090
  42531. }
  42532. },
  42533. back: {
  42534. height: math.unit(80, "meters"),
  42535. weight: math.unit(7000, "tonnes"),
  42536. name: "Back",
  42537. image: {
  42538. source: "./media/characters/tef/back.svg",
  42539. extra: 2036/1991,
  42540. bottom: 54/2090
  42541. }
  42542. },
  42543. },
  42544. [
  42545. {
  42546. name: "Macro",
  42547. height: math.unit(80, "meters"),
  42548. default: true
  42549. },
  42550. ]
  42551. ))
  42552. characterMakers.push(() => makeCharacter(
  42553. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42554. {
  42555. front: {
  42556. height: math.unit(13, "feet"),
  42557. weight: math.unit(6, "tons"),
  42558. name: "Front",
  42559. image: {
  42560. source: "./media/characters/rover/front.svg",
  42561. extra: 1233/1156,
  42562. bottom: 50/1283
  42563. }
  42564. },
  42565. back: {
  42566. height: math.unit(13, "feet"),
  42567. weight: math.unit(6, "tons"),
  42568. name: "Back",
  42569. image: {
  42570. source: "./media/characters/rover/back.svg",
  42571. extra: 1327/1258,
  42572. bottom: 39/1366
  42573. }
  42574. },
  42575. },
  42576. [
  42577. {
  42578. name: "Normal",
  42579. height: math.unit(13, "feet"),
  42580. default: true
  42581. },
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(1300, "feet")
  42585. },
  42586. {
  42587. name: "Megamacro",
  42588. height: math.unit(1300, "miles")
  42589. },
  42590. {
  42591. name: "Gigamacro",
  42592. height: math.unit(1300000, "miles")
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(6, "feet"),
  42601. weight: math.unit(150, "lb"),
  42602. name: "Front",
  42603. image: {
  42604. source: "./media/characters/ariz/front.svg",
  42605. extra: 1401/1346,
  42606. bottom: 5/1406
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(10, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(6, "feet"),
  42623. weight: math.unit(140, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/sigrun/front.svg",
  42627. extra: 1418/1359,
  42628. bottom: 27/1445
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Macro",
  42635. height: math.unit(35, "feet"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(6, "feet"),
  42645. weight: math.unit(150, "lb"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/numin/front.svg",
  42649. extra: 1433/1388,
  42650. bottom: 12/1445
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Macro",
  42657. height: math.unit(21.5, "km"),
  42658. default: true
  42659. },
  42660. ]
  42661. ))
  42662. characterMakers.push(() => makeCharacter(
  42663. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42664. {
  42665. front: {
  42666. height: math.unit(6, "feet"),
  42667. weight: math.unit(463, "lb"),
  42668. name: "Front",
  42669. image: {
  42670. source: "./media/characters/melwa/front.svg",
  42671. extra: 1307/1248,
  42672. bottom: 93/1400
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Macro",
  42679. height: math.unit(50, "meters"),
  42680. default: true
  42681. },
  42682. ]
  42683. ))
  42684. characterMakers.push(() => makeCharacter(
  42685. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42686. {
  42687. front: {
  42688. height: math.unit(325, "feet"),
  42689. name: "Front",
  42690. image: {
  42691. source: "./media/characters/zorkaiju/front.svg",
  42692. extra: 1955/1814,
  42693. bottom: 40/1995
  42694. }
  42695. },
  42696. frontExtended: {
  42697. height: math.unit(325, "feet"),
  42698. name: "Front (Extended)",
  42699. image: {
  42700. source: "./media/characters/zorkaiju/front-extended.svg",
  42701. extra: 1955/1814,
  42702. bottom: 40/1995
  42703. }
  42704. },
  42705. side: {
  42706. height: math.unit(325, "feet"),
  42707. name: "Side",
  42708. image: {
  42709. source: "./media/characters/zorkaiju/side.svg",
  42710. extra: 1495/1396,
  42711. bottom: 17/1512
  42712. }
  42713. },
  42714. sideExtended: {
  42715. height: math.unit(325, "feet"),
  42716. name: "Side (Extended)",
  42717. image: {
  42718. source: "./media/characters/zorkaiju/side-extended.svg",
  42719. extra: 1495/1396,
  42720. bottom: 17/1512
  42721. }
  42722. },
  42723. back: {
  42724. height: math.unit(325, "feet"),
  42725. name: "Back",
  42726. image: {
  42727. source: "./media/characters/zorkaiju/back.svg",
  42728. extra: 1959/1821,
  42729. bottom: 31/1990
  42730. }
  42731. },
  42732. backExtended: {
  42733. height: math.unit(325, "feet"),
  42734. name: "Back (Extended)",
  42735. image: {
  42736. source: "./media/characters/zorkaiju/back-extended.svg",
  42737. extra: 1959/1821,
  42738. bottom: 31/1990
  42739. }
  42740. },
  42741. hand: {
  42742. height: math.unit(58.4, "feet"),
  42743. name: "Hand",
  42744. image: {
  42745. source: "./media/characters/zorkaiju/hand.svg"
  42746. }
  42747. },
  42748. handExtended: {
  42749. height: math.unit(61.4, "feet"),
  42750. name: "Hand (Extended)",
  42751. image: {
  42752. source: "./media/characters/zorkaiju/hand-extended.svg"
  42753. }
  42754. },
  42755. foot: {
  42756. height: math.unit(95, "feet"),
  42757. name: "Foot",
  42758. image: {
  42759. source: "./media/characters/zorkaiju/foot.svg"
  42760. }
  42761. },
  42762. leftArm: {
  42763. height: math.unit(59, "feet"),
  42764. name: "Left Arm",
  42765. image: {
  42766. source: "./media/characters/zorkaiju/left-arm.svg"
  42767. }
  42768. },
  42769. rightArm: {
  42770. height: math.unit(59, "feet"),
  42771. name: "Right Arm",
  42772. image: {
  42773. source: "./media/characters/zorkaiju/right-arm.svg"
  42774. }
  42775. },
  42776. leftArmExtended: {
  42777. height: math.unit(59 * 1.033546, "feet"),
  42778. name: "Left Arm (Extended)",
  42779. image: {
  42780. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42781. }
  42782. },
  42783. rightArmExtended: {
  42784. height: math.unit(59 * 1.0496, "feet"),
  42785. name: "Right Arm (Extended)",
  42786. image: {
  42787. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42788. }
  42789. },
  42790. tail: {
  42791. height: math.unit(104, "feet"),
  42792. name: "Tail",
  42793. image: {
  42794. source: "./media/characters/zorkaiju/tail.svg"
  42795. }
  42796. },
  42797. tailExtended: {
  42798. height: math.unit(104, "feet"),
  42799. name: "Tail (Extended)",
  42800. image: {
  42801. source: "./media/characters/zorkaiju/tail-extended.svg"
  42802. }
  42803. },
  42804. tailBottom: {
  42805. height: math.unit(104, "feet"),
  42806. name: "Tail Bottom",
  42807. image: {
  42808. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42809. }
  42810. },
  42811. crystal: {
  42812. height: math.unit(27.54, "feet"),
  42813. name: "Crystal",
  42814. image: {
  42815. source: "./media/characters/zorkaiju/crystal.svg"
  42816. }
  42817. },
  42818. },
  42819. [
  42820. {
  42821. name: "Kaiju",
  42822. height: math.unit(325, "feet"),
  42823. default: true
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42829. {
  42830. front: {
  42831. height: math.unit(6 + 1/12, "feet"),
  42832. weight: math.unit(115, "lb"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/bailey-belfry/front.svg",
  42836. extra: 1240/1121,
  42837. bottom: 101/1341
  42838. }
  42839. },
  42840. },
  42841. [
  42842. {
  42843. name: "Normal",
  42844. height: math.unit(6 + 1/12, "feet"),
  42845. default: true
  42846. },
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42851. {
  42852. side: {
  42853. height: math.unit(4, "meters"),
  42854. weight: math.unit(250, "kg"),
  42855. name: "Side",
  42856. image: {
  42857. source: "./media/characters/blacky/side.svg",
  42858. extra: 1027/919,
  42859. bottom: 43/1070
  42860. }
  42861. },
  42862. maw: {
  42863. height: math.unit(1, "meters"),
  42864. name: "Maw",
  42865. image: {
  42866. source: "./media/characters/blacky/maw.svg"
  42867. }
  42868. },
  42869. paw: {
  42870. height: math.unit(1, "meters"),
  42871. name: "Paw",
  42872. image: {
  42873. source: "./media/characters/blacky/paw.svg"
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(4, "meters"),
  42881. default: true
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(170, "cm"),
  42890. weight: math.unit(66, "kg"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/thux-ei/front.svg",
  42894. extra: 1109/1011,
  42895. bottom: 8/1117
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Normal",
  42902. height: math.unit(170, "cm"),
  42903. default: true
  42904. },
  42905. ]
  42906. ))
  42907. characterMakers.push(() => makeCharacter(
  42908. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42909. {
  42910. front: {
  42911. height: math.unit(5, "feet"),
  42912. weight: math.unit(120, "lb"),
  42913. name: "Front",
  42914. image: {
  42915. source: "./media/characters/roxanne-voltaire/front.svg",
  42916. extra: 1901/1779,
  42917. bottom: 53/1954
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(5, "feet"),
  42925. default: true
  42926. },
  42927. {
  42928. name: "Giant",
  42929. height: math.unit(50, "feet")
  42930. },
  42931. {
  42932. name: "Titan",
  42933. height: math.unit(500, "feet")
  42934. },
  42935. {
  42936. name: "Macro",
  42937. height: math.unit(5000, "feet")
  42938. },
  42939. {
  42940. name: "Megamacro",
  42941. height: math.unit(50000, "feet")
  42942. },
  42943. {
  42944. name: "Gigamacro",
  42945. height: math.unit(500000, "feet")
  42946. },
  42947. {
  42948. name: "Teramacro",
  42949. height: math.unit(5e6, "feet")
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(6 + 2/12, "feet"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/squeaks/front.svg",
  42961. extra: 1823/1768,
  42962. bottom: 138/1961
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Micro",
  42969. height: math.unit(0.5, "inches")
  42970. },
  42971. {
  42972. name: "Normal",
  42973. height: math.unit(6 + 2/12, "feet"),
  42974. default: true
  42975. },
  42976. {
  42977. name: "Macro",
  42978. height: math.unit(600, "feet")
  42979. },
  42980. ]
  42981. ))
  42982. characterMakers.push(() => makeCharacter(
  42983. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42984. {
  42985. front: {
  42986. height: math.unit(1.72, "meters"),
  42987. name: "Front",
  42988. image: {
  42989. source: "./media/characters/archinger/front.svg",
  42990. extra: 1861/1675,
  42991. bottom: 125/1986
  42992. }
  42993. },
  42994. back: {
  42995. height: math.unit(1.72, "meters"),
  42996. name: "Back",
  42997. image: {
  42998. source: "./media/characters/archinger/back.svg",
  42999. extra: 1844/1701,
  43000. bottom: 104/1948
  43001. }
  43002. },
  43003. cock: {
  43004. height: math.unit(0.59, "feet"),
  43005. name: "Cock",
  43006. image: {
  43007. source: "./media/characters/archinger/cock.svg"
  43008. }
  43009. },
  43010. },
  43011. [
  43012. {
  43013. name: "Normal",
  43014. height: math.unit(1.72, "meters"),
  43015. default: true
  43016. },
  43017. {
  43018. name: "Macro",
  43019. height: math.unit(84, "meters")
  43020. },
  43021. {
  43022. name: "Macro+",
  43023. height: math.unit(112, "meters")
  43024. },
  43025. {
  43026. name: "Macro++",
  43027. height: math.unit(960, "meters")
  43028. },
  43029. {
  43030. name: "Macro+++",
  43031. height: math.unit(4, "km")
  43032. },
  43033. {
  43034. name: "Macro++++",
  43035. height: math.unit(48, "km")
  43036. },
  43037. {
  43038. name: "Macro+++++",
  43039. height: math.unit(4500, "km")
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43045. {
  43046. front: {
  43047. height: math.unit(5 + 5/12, "feet"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/alsnapz/front.svg",
  43051. extra: 1157/1065,
  43052. bottom: 42/1199
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(5 + 5/12, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43066. {
  43067. side: {
  43068. height: math.unit(3.2, "earths"),
  43069. name: "Side",
  43070. image: {
  43071. source: "./media/characters/mag/side.svg",
  43072. extra: 1331/1008,
  43073. bottom: 52/1383
  43074. }
  43075. },
  43076. wing: {
  43077. height: math.unit(1.94, "earths"),
  43078. name: "Wing",
  43079. image: {
  43080. source: "./media/characters/mag/wing.svg"
  43081. }
  43082. },
  43083. dick: {
  43084. height: math.unit(1.8, "earths"),
  43085. name: "Dick",
  43086. image: {
  43087. source: "./media/characters/mag/dick.svg"
  43088. }
  43089. },
  43090. ass: {
  43091. height: math.unit(1.33, "earths"),
  43092. name: "Ass",
  43093. image: {
  43094. source: "./media/characters/mag/ass.svg"
  43095. }
  43096. },
  43097. head: {
  43098. height: math.unit(1.1, "earths"),
  43099. name: "Head",
  43100. image: {
  43101. source: "./media/characters/mag/head.svg"
  43102. }
  43103. },
  43104. maw: {
  43105. height: math.unit(1.62, "earths"),
  43106. name: "Maw",
  43107. image: {
  43108. source: "./media/characters/mag/maw.svg"
  43109. }
  43110. },
  43111. },
  43112. [
  43113. {
  43114. name: "Small",
  43115. height: math.unit(162, "feet")
  43116. },
  43117. {
  43118. name: "Normal",
  43119. height: math.unit(3.2, "earths"),
  43120. default: true
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43126. {
  43127. front: {
  43128. height: math.unit(512, "feet"),
  43129. weight: math.unit(63509, "tonnes"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/vorrel-harroc/front.svg",
  43133. extra: 1075/1063,
  43134. bottom: 62/1137
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(10, "feet")
  43142. },
  43143. {
  43144. name: "Macro",
  43145. height: math.unit(512, "feet"),
  43146. default: true
  43147. },
  43148. {
  43149. name: "Megamacro",
  43150. height: math.unit(256, "miles")
  43151. },
  43152. {
  43153. name: "Gigamacro",
  43154. height: math.unit(4096, "miles")
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43160. {
  43161. side: {
  43162. height: math.unit(50, "feet"),
  43163. name: "Side",
  43164. image: {
  43165. source: "./media/characters/froimar/side.svg",
  43166. extra: 855/638,
  43167. bottom: 99/954
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Macro",
  43174. height: math.unit(50, "feet"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43181. {
  43182. front: {
  43183. height: math.unit(210, "miles"),
  43184. name: "Front",
  43185. image: {
  43186. source: "./media/characters/timothy/front.svg",
  43187. extra: 1007/943,
  43188. bottom: 62/1069
  43189. }
  43190. },
  43191. frontSkirt: {
  43192. height: math.unit(210, "miles"),
  43193. name: "Front (Skirt)",
  43194. image: {
  43195. source: "./media/characters/timothy/front-skirt.svg",
  43196. extra: 1007/943,
  43197. bottom: 62/1069
  43198. }
  43199. },
  43200. frontCoat: {
  43201. height: math.unit(210, "miles"),
  43202. name: "Front (Coat)",
  43203. image: {
  43204. source: "./media/characters/timothy/front-coat.svg",
  43205. extra: 1007/943,
  43206. bottom: 62/1069
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Macro",
  43213. height: math.unit(210, "miles"),
  43214. default: true
  43215. },
  43216. {
  43217. name: "Megamacro",
  43218. height: math.unit(210000, "miles")
  43219. },
  43220. ]
  43221. ))
  43222. characterMakers.push(() => makeCharacter(
  43223. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43224. {
  43225. front: {
  43226. height: math.unit(188, "feet"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/pyotr/front.svg",
  43230. extra: 1912/1826,
  43231. bottom: 18/1930
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Macro",
  43238. height: math.unit(188, "feet"),
  43239. default: true
  43240. },
  43241. {
  43242. name: "Megamacro",
  43243. height: math.unit(8, "miles")
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43249. {
  43250. side: {
  43251. height: math.unit(10, "feet"),
  43252. weight: math.unit(4500, "lb"),
  43253. name: "Side",
  43254. image: {
  43255. source: "./media/characters/ackart/side.svg",
  43256. extra: 1776/1668,
  43257. bottom: 116/1892
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(10, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43271. {
  43272. side: {
  43273. height: math.unit(21, "feet"),
  43274. name: "Side",
  43275. image: {
  43276. source: "./media/characters/nolow/side.svg",
  43277. extra: 1484/1434,
  43278. bottom: 85/1569
  43279. }
  43280. },
  43281. sideErect: {
  43282. height: math.unit(21, "feet"),
  43283. name: "Side-erect",
  43284. image: {
  43285. source: "./media/characters/nolow/side-erect.svg",
  43286. extra: 1484/1434,
  43287. bottom: 85/1569
  43288. }
  43289. },
  43290. },
  43291. [
  43292. {
  43293. name: "Regular",
  43294. height: math.unit(12, "feet")
  43295. },
  43296. {
  43297. name: "Big Chee",
  43298. height: math.unit(21, "feet"),
  43299. default: true
  43300. },
  43301. ]
  43302. ))
  43303. characterMakers.push(() => makeCharacter(
  43304. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43305. {
  43306. front: {
  43307. height: math.unit(7, "feet"),
  43308. weight: math.unit(250, "lb"),
  43309. name: "Front",
  43310. image: {
  43311. source: "./media/characters/nines/front.svg",
  43312. extra: 1741/1607,
  43313. bottom: 41/1782
  43314. }
  43315. },
  43316. side: {
  43317. height: math.unit(7, "feet"),
  43318. weight: math.unit(250, "lb"),
  43319. name: "Side",
  43320. image: {
  43321. source: "./media/characters/nines/side.svg",
  43322. extra: 1854/1735,
  43323. bottom: 93/1947
  43324. }
  43325. },
  43326. back: {
  43327. height: math.unit(7, "feet"),
  43328. weight: math.unit(250, "lb"),
  43329. name: "Back",
  43330. image: {
  43331. source: "./media/characters/nines/back.svg",
  43332. extra: 1748/1615,
  43333. bottom: 20/1768
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Megamacro",
  43340. height: math.unit(99, "km"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(5 + 10/12, "feet"),
  43350. weight: math.unit(210, "lb"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/zenith/front.svg",
  43354. extra: 1531/1452,
  43355. bottom: 198/1729
  43356. }
  43357. },
  43358. back: {
  43359. height: math.unit(5 + 10/12, "feet"),
  43360. weight: math.unit(210, "lb"),
  43361. name: "Back",
  43362. image: {
  43363. source: "./media/characters/zenith/back.svg",
  43364. extra: 1571/1487,
  43365. bottom: 75/1646
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Normal",
  43372. height: math.unit(5 + 10/12, "feet"),
  43373. default: true
  43374. }
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(4, "feet"),
  43382. weight: math.unit(60, "lb"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/jasper/front.svg",
  43386. extra: 1450/1379,
  43387. bottom: 19/1469
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(4, "feet"),
  43395. default: true
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43401. {
  43402. front: {
  43403. height: math.unit(6 + 5/12, "feet"),
  43404. weight: math.unit(290, "lb"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/tiberius-thyben/front.svg",
  43408. extra: 757/739,
  43409. bottom: 39/796
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Micro",
  43416. height: math.unit(1.5, "inches")
  43417. },
  43418. {
  43419. name: "Normal",
  43420. height: math.unit(6 + 5/12, "feet"),
  43421. default: true
  43422. },
  43423. {
  43424. name: "Macro",
  43425. height: math.unit(300, "feet")
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(5 + 6/12, "feet"),
  43434. weight: math.unit(60, "kg"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/sabre/front.svg",
  43438. extra: 738/671,
  43439. bottom: 27/765
  43440. }
  43441. },
  43442. },
  43443. [
  43444. {
  43445. name: "Teeny",
  43446. height: math.unit(2, "inches")
  43447. },
  43448. {
  43449. name: "Smol",
  43450. height: math.unit(8, "inches")
  43451. },
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(5 + 6/12, "feet"),
  43455. default: true
  43456. },
  43457. {
  43458. name: "Mini-Macro",
  43459. height: math.unit(15, "feet")
  43460. },
  43461. {
  43462. name: "Macro",
  43463. height: math.unit(50, "feet")
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43469. {
  43470. front: {
  43471. height: math.unit(6 + 4/12, "feet"),
  43472. weight: math.unit(170, "lb"),
  43473. name: "Front",
  43474. image: {
  43475. source: "./media/characters/charlie/front.svg",
  43476. extra: 1348/1228,
  43477. bottom: 15/1363
  43478. }
  43479. },
  43480. },
  43481. [
  43482. {
  43483. name: "Macro",
  43484. height: math.unit(1700, "meters"),
  43485. default: true
  43486. },
  43487. {
  43488. name: "MegaMacro",
  43489. height: math.unit(20400, "meters")
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43495. {
  43496. front: {
  43497. height: math.unit(6 + 3/12, "feet"),
  43498. weight: math.unit(185, "lb"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/susan-grant/front.svg",
  43502. extra: 1351/1327,
  43503. bottom: 26/1377
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Normal",
  43510. height: math.unit(6 + 3/12, "feet"),
  43511. default: true
  43512. },
  43513. {
  43514. name: "Macro",
  43515. height: math.unit(225, "feet")
  43516. },
  43517. {
  43518. name: "Macro+",
  43519. height: math.unit(900, "feet")
  43520. },
  43521. {
  43522. name: "MegaMacro",
  43523. height: math.unit(14400, "feet")
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(5 + 4/12, "feet"),
  43532. weight: math.unit(110, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/axel-isanov/front.svg",
  43536. extra: 1096/1065,
  43537. bottom: 13/1109
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Normal",
  43544. height: math.unit(5 + 4/12, "feet"),
  43545. default: true
  43546. },
  43547. ]
  43548. ))
  43549. characterMakers.push(() => makeCharacter(
  43550. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43551. {
  43552. front: {
  43553. height: math.unit(9, "feet"),
  43554. weight: math.unit(467, "lb"),
  43555. name: "Front",
  43556. image: {
  43557. source: "./media/characters/necahual/front.svg",
  43558. extra: 920/873,
  43559. bottom: 26/946
  43560. }
  43561. },
  43562. back: {
  43563. height: math.unit(9, "feet"),
  43564. weight: math.unit(467, "lb"),
  43565. name: "Back",
  43566. image: {
  43567. source: "./media/characters/necahual/back.svg",
  43568. extra: 930/884,
  43569. bottom: 16/946
  43570. }
  43571. },
  43572. frontUnderwear: {
  43573. height: math.unit(9, "feet"),
  43574. weight: math.unit(467, "lb"),
  43575. name: "Front (Underwear)",
  43576. image: {
  43577. source: "./media/characters/necahual/front-underwear.svg",
  43578. extra: 920/873,
  43579. bottom: 26/946
  43580. }
  43581. },
  43582. frontDressed: {
  43583. height: math.unit(9, "feet"),
  43584. weight: math.unit(467, "lb"),
  43585. name: "Front (Dressed)",
  43586. image: {
  43587. source: "./media/characters/necahual/front-dressed.svg",
  43588. extra: 920/873,
  43589. bottom: 26/946
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Comprsesed",
  43596. height: math.unit(9, "feet")
  43597. },
  43598. {
  43599. name: "Natural",
  43600. height: math.unit(15, "feet"),
  43601. default: true
  43602. },
  43603. {
  43604. name: "Boosted",
  43605. height: math.unit(50, "feet")
  43606. },
  43607. {
  43608. name: "Boosted+",
  43609. height: math.unit(150, "feet")
  43610. },
  43611. {
  43612. name: "Max",
  43613. height: math.unit(500, "feet")
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43619. {
  43620. front: {
  43621. height: math.unit(22 + 1/12, "feet"),
  43622. weight: math.unit(3200, "lb"),
  43623. name: "Front",
  43624. image: {
  43625. source: "./media/characters/theo-acacia/front.svg",
  43626. extra: 1796/1741,
  43627. bottom: 83/1879
  43628. }
  43629. },
  43630. frontUnderwear: {
  43631. height: math.unit(22 + 1/12, "feet"),
  43632. weight: math.unit(3200, "lb"),
  43633. name: "Front (Underwear)",
  43634. image: {
  43635. source: "./media/characters/theo-acacia/front-underwear.svg",
  43636. extra: 1796/1741,
  43637. bottom: 83/1879
  43638. }
  43639. },
  43640. frontNude: {
  43641. height: math.unit(22 + 1/12, "feet"),
  43642. weight: math.unit(3200, "lb"),
  43643. name: "Front (Nude)",
  43644. image: {
  43645. source: "./media/characters/theo-acacia/front-nude.svg",
  43646. extra: 1796/1741,
  43647. bottom: 83/1879
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(22 + 1/12, "feet"),
  43655. default: true
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43661. {
  43662. front: {
  43663. height: math.unit(20, "feet"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/astra/front.svg",
  43667. extra: 1850/1714,
  43668. bottom: 106/1956
  43669. }
  43670. },
  43671. frontUndressed: {
  43672. height: math.unit(20, "feet"),
  43673. name: "Front (Undressed)",
  43674. image: {
  43675. source: "./media/characters/astra/front-undressed.svg",
  43676. extra: 1926/1749,
  43677. bottom: 0/1926
  43678. }
  43679. },
  43680. hand: {
  43681. height: math.unit(1.53, "feet"),
  43682. name: "Hand",
  43683. image: {
  43684. source: "./media/characters/astra/hand.svg"
  43685. }
  43686. },
  43687. paw: {
  43688. height: math.unit(1.53, "feet"),
  43689. name: "Paw",
  43690. image: {
  43691. source: "./media/characters/astra/paw.svg"
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Smallest",
  43698. height: math.unit(20, "feet")
  43699. },
  43700. {
  43701. name: "Normal",
  43702. height: math.unit(1e9, "miles"),
  43703. default: true
  43704. },
  43705. {
  43706. name: "Larger",
  43707. height: math.unit(5, "multiverses")
  43708. },
  43709. {
  43710. name: "Largest",
  43711. height: math.unit(1e9, "multiverses")
  43712. },
  43713. ]
  43714. ))
  43715. characterMakers.push(() => makeCharacter(
  43716. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43717. {
  43718. front: {
  43719. height: math.unit(8, "feet"),
  43720. name: "Front",
  43721. image: {
  43722. source: "./media/characters/breanna/front.svg",
  43723. extra: 1912/1632,
  43724. bottom: 33/1945
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Smallest",
  43731. height: math.unit(8, "feet")
  43732. },
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(1, "mile"),
  43736. default: true
  43737. },
  43738. {
  43739. name: "Maximum",
  43740. height: math.unit(1500000000000, "lightyears")
  43741. },
  43742. ]
  43743. ))
  43744. characterMakers.push(() => makeCharacter(
  43745. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43746. {
  43747. front: {
  43748. height: math.unit(5 + 11/12, "feet"),
  43749. weight: math.unit(155, "lb"),
  43750. name: "Front",
  43751. image: {
  43752. source: "./media/characters/cai/front.svg",
  43753. extra: 1823/1702,
  43754. bottom: 32/1855
  43755. }
  43756. },
  43757. back: {
  43758. height: math.unit(5 + 11/12, "feet"),
  43759. weight: math.unit(155, "lb"),
  43760. name: "Back",
  43761. image: {
  43762. source: "./media/characters/cai/back.svg",
  43763. extra: 1809/1708,
  43764. bottom: 31/1840
  43765. }
  43766. },
  43767. },
  43768. [
  43769. {
  43770. name: "Normal",
  43771. height: math.unit(5 + 11/12, "feet"),
  43772. default: true
  43773. },
  43774. {
  43775. name: "Big",
  43776. height: math.unit(15, "feet")
  43777. },
  43778. {
  43779. name: "Macro",
  43780. height: math.unit(200, "feet")
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43786. {
  43787. front: {
  43788. height: math.unit(5 + 6/12, "feet"),
  43789. weight: math.unit(160, "lb"),
  43790. name: "Front",
  43791. image: {
  43792. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43793. extra: 1227/1174,
  43794. bottom: 37/1264
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Macro",
  43801. height: math.unit(444, "meters"),
  43802. default: true
  43803. },
  43804. ]
  43805. ))
  43806. characterMakers.push(() => makeCharacter(
  43807. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43808. {
  43809. front: {
  43810. height: math.unit(18 + 7/12, "feet"),
  43811. name: "Front",
  43812. image: {
  43813. source: "./media/characters/rex/front.svg",
  43814. extra: 1941/1807,
  43815. bottom: 66/2007
  43816. }
  43817. },
  43818. back: {
  43819. height: math.unit(18 + 7/12, "feet"),
  43820. name: "Back",
  43821. image: {
  43822. source: "./media/characters/rex/back.svg",
  43823. extra: 1937/1822,
  43824. bottom: 42/1979
  43825. }
  43826. },
  43827. boot: {
  43828. height: math.unit(3.45, "feet"),
  43829. name: "Boot",
  43830. image: {
  43831. source: "./media/characters/rex/boot.svg"
  43832. }
  43833. },
  43834. paw: {
  43835. height: math.unit(4.17, "feet"),
  43836. name: "Paw",
  43837. image: {
  43838. source: "./media/characters/rex/paw.svg"
  43839. }
  43840. },
  43841. head: {
  43842. height: math.unit(6.728, "feet"),
  43843. name: "Head",
  43844. image: {
  43845. source: "./media/characters/rex/head.svg"
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Nano",
  43852. height: math.unit(18 + 7/12, "feet")
  43853. },
  43854. {
  43855. name: "Micro",
  43856. height: math.unit(1.5, "megameters")
  43857. },
  43858. {
  43859. name: "Normal",
  43860. height: math.unit(440, "megameters"),
  43861. default: true
  43862. },
  43863. {
  43864. name: "Macro",
  43865. height: math.unit(2.5, "gigameters")
  43866. },
  43867. {
  43868. name: "Gigamacro",
  43869. height: math.unit(2, "galaxies")
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43875. {
  43876. side: {
  43877. height: math.unit(32, "feet"),
  43878. weight: math.unit(250000, "lb"),
  43879. name: "Side",
  43880. image: {
  43881. source: "./media/characters/silverwing/side.svg",
  43882. extra: 1100/1019,
  43883. bottom: 204/1304
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(32, "feet"),
  43891. default: true
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(6 + 6/12, "feet"),
  43900. weight: math.unit(350, "lb"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/tristan-hawthorne/front.svg",
  43904. extra: 1159/1124,
  43905. bottom: 37/1196
  43906. },
  43907. form: "labrador",
  43908. default: true
  43909. },
  43910. skunkFront: {
  43911. height: math.unit(4 + 6/12, "feet"),
  43912. weight: math.unit(120, "lb"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43916. extra: 1609/1551,
  43917. bottom: 169/1778
  43918. },
  43919. form: "skunk",
  43920. default: true
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Normal",
  43926. height: math.unit(6 + 6/12, "feet"),
  43927. form: "labrador",
  43928. default: true
  43929. },
  43930. {
  43931. name: "Normal",
  43932. height: math.unit(4 + 6/12, "feet"),
  43933. form: "skunk",
  43934. default: true
  43935. },
  43936. ],
  43937. {
  43938. "labrador": {
  43939. name: "Labrador",
  43940. default: true
  43941. },
  43942. "skunk": {
  43943. name: "Skunk"
  43944. }
  43945. }
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43949. {
  43950. front: {
  43951. height: math.unit(5 + 11/12, "feet"),
  43952. weight: math.unit(190, "lb"),
  43953. name: "Front",
  43954. image: {
  43955. source: "./media/characters/mizu/front.svg",
  43956. extra: 1988/1788,
  43957. bottom: 14/2002
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(5 + 11/12, "feet"),
  43965. default: true
  43966. },
  43967. ]
  43968. ))
  43969. characterMakers.push(() => makeCharacter(
  43970. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43971. {
  43972. front: {
  43973. height: math.unit(1.7, "feet"),
  43974. weight: math.unit(50, "lb"),
  43975. name: "Front",
  43976. image: {
  43977. source: "./media/characters/dechroma/front.svg",
  43978. extra: 1095/859,
  43979. bottom: 64/1159
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Normal",
  43986. height: math.unit(1.7, "feet"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43993. {
  43994. side: {
  43995. height: math.unit(30, "feet"),
  43996. name: "Side",
  43997. image: {
  43998. source: "./media/characters/veluren-thanazel/side.svg",
  43999. extra: 1611/633,
  44000. bottom: 118/1729
  44001. }
  44002. },
  44003. front: {
  44004. height: math.unit(30, "feet"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/veluren-thanazel/front.svg",
  44008. extra: 1486/636,
  44009. bottom: 238/1724
  44010. }
  44011. },
  44012. head: {
  44013. height: math.unit(21.4, "feet"),
  44014. name: "Head",
  44015. image: {
  44016. source: "./media/characters/veluren-thanazel/head.svg"
  44017. }
  44018. },
  44019. genitals: {
  44020. height: math.unit(19.4, "feet"),
  44021. name: "Genitals",
  44022. image: {
  44023. source: "./media/characters/veluren-thanazel/genitals.svg"
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Social",
  44030. height: math.unit(6, "feet")
  44031. },
  44032. {
  44033. name: "Play",
  44034. height: math.unit(12, "feet")
  44035. },
  44036. {
  44037. name: "True",
  44038. height: math.unit(30, "feet"),
  44039. default: true
  44040. },
  44041. ]
  44042. ))
  44043. characterMakers.push(() => makeCharacter(
  44044. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44045. {
  44046. front: {
  44047. height: math.unit(7 + 6/12, "feet"),
  44048. weight: math.unit(500, "kg"),
  44049. name: "Front",
  44050. image: {
  44051. source: "./media/characters/arcturas/front.svg",
  44052. extra: 1700/1500,
  44053. bottom: 145/1845
  44054. }
  44055. },
  44056. },
  44057. [
  44058. {
  44059. name: "Normal",
  44060. height: math.unit(7 + 6/12, "feet"),
  44061. default: true
  44062. },
  44063. ]
  44064. ))
  44065. characterMakers.push(() => makeCharacter(
  44066. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44067. {
  44068. side: {
  44069. height: math.unit(6, "feet"),
  44070. weight: math.unit(2, "tons"),
  44071. name: "Side",
  44072. image: {
  44073. source: "./media/characters/vitaen/side.svg",
  44074. extra: 1157/617,
  44075. bottom: 122/1279
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Normal",
  44082. height: math.unit(6, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(19, "feet"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/fia-dreamweaver/front.svg",
  44095. extra: 1630/1504,
  44096. bottom: 25/1655
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(19, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(5 + 4/12, "feet"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/artan/front.svg",
  44116. extra: 1618/1535,
  44117. bottom: 46/1664
  44118. }
  44119. },
  44120. back: {
  44121. height: math.unit(5 + 4/12, "feet"),
  44122. name: "Back",
  44123. image: {
  44124. source: "./media/characters/artan/back.svg",
  44125. extra: 1618/1543,
  44126. bottom: 31/1649
  44127. }
  44128. },
  44129. },
  44130. [
  44131. {
  44132. name: "Normal",
  44133. height: math.unit(5 + 4/12, "feet"),
  44134. default: true
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44140. {
  44141. side: {
  44142. height: math.unit(182, "cm"),
  44143. weight: math.unit(1000, "lb"),
  44144. name: "Side",
  44145. image: {
  44146. source: "./media/characters/silver-dragon/side.svg",
  44147. extra: 710/287,
  44148. bottom: 88/798
  44149. }
  44150. },
  44151. },
  44152. [
  44153. {
  44154. name: "Normal",
  44155. height: math.unit(182, "cm"),
  44156. default: true
  44157. },
  44158. ]
  44159. ))
  44160. characterMakers.push(() => makeCharacter(
  44161. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44162. {
  44163. side: {
  44164. height: math.unit(6 + 6/12, "feet"),
  44165. weight: math.unit(1.5, "tons"),
  44166. name: "Side",
  44167. image: {
  44168. source: "./media/characters/zephyr/side.svg",
  44169. extra: 1433/586,
  44170. bottom: 109/1542
  44171. }
  44172. },
  44173. },
  44174. [
  44175. {
  44176. name: "Normal",
  44177. height: math.unit(6 + 6/12, "feet"),
  44178. default: true
  44179. },
  44180. ]
  44181. ))
  44182. characterMakers.push(() => makeCharacter(
  44183. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44184. {
  44185. side: {
  44186. height: math.unit(1, "feet"),
  44187. name: "Side",
  44188. image: {
  44189. source: "./media/characters/vixye/side.svg",
  44190. extra: 632/541,
  44191. bottom: 0/632
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Normal",
  44198. height: math.unit(1, "feet"),
  44199. default: true
  44200. },
  44201. {
  44202. name: "True",
  44203. height: math.unit(1e15, "multiverses")
  44204. },
  44205. ]
  44206. ))
  44207. characterMakers.push(() => makeCharacter(
  44208. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44209. {
  44210. front: {
  44211. height: math.unit(8 + 2/12, "feet"),
  44212. weight: math.unit(650, "lb"),
  44213. name: "Front",
  44214. image: {
  44215. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44216. extra: 1174/1137,
  44217. bottom: 82/1256
  44218. }
  44219. },
  44220. back: {
  44221. height: math.unit(8 + 2/12, "feet"),
  44222. weight: math.unit(650, "lb"),
  44223. name: "Back",
  44224. image: {
  44225. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44226. extra: 1204/1157,
  44227. bottom: 46/1250
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Wildform",
  44234. height: math.unit(8 + 2/12, "feet"),
  44235. default: true
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44241. {
  44242. front: {
  44243. height: math.unit(18, "feet"),
  44244. name: "Front",
  44245. image: {
  44246. source: "./media/characters/cyphin/front.svg",
  44247. extra: 970/886,
  44248. bottom: 42/1012
  44249. }
  44250. },
  44251. back: {
  44252. height: math.unit(18, "feet"),
  44253. name: "Back",
  44254. image: {
  44255. source: "./media/characters/cyphin/back.svg",
  44256. extra: 1009/894,
  44257. bottom: 24/1033
  44258. }
  44259. },
  44260. head: {
  44261. height: math.unit(5.05, "feet"),
  44262. name: "Head",
  44263. image: {
  44264. source: "./media/characters/cyphin/head.svg"
  44265. }
  44266. },
  44267. tailbud: {
  44268. height: math.unit(5, "feet"),
  44269. name: "Tailbud",
  44270. image: {
  44271. source: "./media/characters/cyphin/tailbud.svg"
  44272. }
  44273. },
  44274. },
  44275. [
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44280. {
  44281. side: {
  44282. height: math.unit(10, "feet"),
  44283. weight: math.unit(6, "tons"),
  44284. name: "Side",
  44285. image: {
  44286. source: "./media/characters/raijin/side.svg",
  44287. extra: 1529/613,
  44288. bottom: 337/1866
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(10, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44302. {
  44303. side: {
  44304. height: math.unit(9, "feet"),
  44305. name: "Side",
  44306. image: {
  44307. source: "./media/characters/nilghais/side.svg",
  44308. extra: 1047/744,
  44309. bottom: 91/1138
  44310. }
  44311. },
  44312. head: {
  44313. height: math.unit(3.14, "feet"),
  44314. name: "Head",
  44315. image: {
  44316. source: "./media/characters/nilghais/head.svg"
  44317. }
  44318. },
  44319. mouth: {
  44320. height: math.unit(4.6, "feet"),
  44321. name: "Mouth",
  44322. image: {
  44323. source: "./media/characters/nilghais/mouth.svg"
  44324. }
  44325. },
  44326. wings: {
  44327. height: math.unit(24, "feet"),
  44328. name: "Wings",
  44329. image: {
  44330. source: "./media/characters/nilghais/wings.svg"
  44331. }
  44332. },
  44333. ass: {
  44334. height: math.unit(6.12, "feet"),
  44335. name: "Ass",
  44336. image: {
  44337. source: "./media/characters/nilghais/ass.svg"
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Normal",
  44344. height: math.unit(9, "feet"),
  44345. default: true
  44346. },
  44347. ]
  44348. ))
  44349. characterMakers.push(() => makeCharacter(
  44350. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44351. {
  44352. regular: {
  44353. height: math.unit(16 + 2/12, "feet"),
  44354. weight: math.unit(2300, "lb"),
  44355. name: "Regular",
  44356. image: {
  44357. source: "./media/characters/zolgar/regular.svg",
  44358. extra: 1246/1004,
  44359. bottom: 124/1370
  44360. }
  44361. },
  44362. boxers: {
  44363. height: math.unit(16 + 2/12, "feet"),
  44364. weight: math.unit(2300, "lb"),
  44365. name: "Boxers",
  44366. image: {
  44367. source: "./media/characters/zolgar/boxers.svg",
  44368. extra: 1246/1004,
  44369. bottom: 124/1370
  44370. }
  44371. },
  44372. armored: {
  44373. height: math.unit(16 + 2/12, "feet"),
  44374. weight: math.unit(2300, "lb"),
  44375. name: "Armored",
  44376. image: {
  44377. source: "./media/characters/zolgar/armored.svg",
  44378. extra: 1246/1004,
  44379. bottom: 124/1370
  44380. }
  44381. },
  44382. goth: {
  44383. height: math.unit(16 + 2/12, "feet"),
  44384. weight: math.unit(2300, "lb"),
  44385. name: "Goth",
  44386. image: {
  44387. source: "./media/characters/zolgar/goth.svg",
  44388. extra: 1246/1004,
  44389. bottom: 124/1370
  44390. }
  44391. },
  44392. },
  44393. [
  44394. {
  44395. name: "Shrunken Down",
  44396. height: math.unit(9 + 2/12, "feet")
  44397. },
  44398. {
  44399. name: "Normal",
  44400. height: math.unit(16 + 2/12, "feet"),
  44401. default: true
  44402. },
  44403. ]
  44404. ))
  44405. characterMakers.push(() => makeCharacter(
  44406. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44407. {
  44408. front: {
  44409. height: math.unit(6, "feet"),
  44410. weight: math.unit(168, "lb"),
  44411. name: "Front",
  44412. image: {
  44413. source: "./media/characters/luca/front.svg",
  44414. extra: 841/667,
  44415. bottom: 102/943
  44416. }
  44417. },
  44418. },
  44419. [
  44420. {
  44421. name: "Normal",
  44422. height: math.unit(6, "feet"),
  44423. default: true
  44424. },
  44425. ]
  44426. ))
  44427. characterMakers.push(() => makeCharacter(
  44428. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44429. {
  44430. side: {
  44431. height: math.unit(7 + 3/12, "feet"),
  44432. weight: math.unit(312, "lb"),
  44433. name: "Side",
  44434. image: {
  44435. source: "./media/characters/zezo/side.svg",
  44436. extra: 1192/1067,
  44437. bottom: 63/1255
  44438. }
  44439. },
  44440. },
  44441. [
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(7 + 3/12, "feet"),
  44445. default: true
  44446. },
  44447. ]
  44448. ))
  44449. characterMakers.push(() => makeCharacter(
  44450. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44451. {
  44452. front: {
  44453. height: math.unit(5 + 5/12, "feet"),
  44454. weight: math.unit(170, "lb"),
  44455. name: "Front",
  44456. image: {
  44457. source: "./media/characters/mayso/front.svg",
  44458. extra: 1215/1108,
  44459. bottom: 16/1231
  44460. }
  44461. },
  44462. },
  44463. [
  44464. {
  44465. name: "Normal",
  44466. height: math.unit(5 + 5/12, "feet"),
  44467. default: true
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(4 + 3/12, "feet"),
  44476. weight: math.unit(80, "lb"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/hess/front.svg",
  44480. extra: 1200/1123,
  44481. bottom: 16/1216
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(4 + 3/12, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44495. {
  44496. front: {
  44497. height: math.unit(1.9, "meters"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/ashgar/front.svg",
  44501. extra: 1177/1146,
  44502. bottom: 99/1276
  44503. }
  44504. },
  44505. back: {
  44506. height: math.unit(1.9, "meters"),
  44507. name: "Back",
  44508. image: {
  44509. source: "./media/characters/ashgar/back.svg",
  44510. extra: 1201/1183,
  44511. bottom: 53/1254
  44512. }
  44513. },
  44514. feral: {
  44515. height: math.unit(1.4, "meters"),
  44516. name: "Feral",
  44517. image: {
  44518. source: "./media/characters/ashgar/feral.svg",
  44519. extra: 370/345,
  44520. bottom: 45/415
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(1.9, "meters"),
  44528. default: true
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44534. {
  44535. regular: {
  44536. height: math.unit(6, "feet"),
  44537. weight: math.unit(220, "lb"),
  44538. name: "Regular",
  44539. image: {
  44540. source: "./media/characters/phillip/regular.svg",
  44541. extra: 1373/1277,
  44542. bottom: 75/1448
  44543. }
  44544. },
  44545. dressed: {
  44546. height: math.unit(6, "feet"),
  44547. weight: math.unit(220, "lb"),
  44548. name: "Dressed",
  44549. image: {
  44550. source: "./media/characters/phillip/dressed.svg",
  44551. extra: 1373/1277,
  44552. bottom: 75/1448
  44553. }
  44554. },
  44555. paw: {
  44556. height: math.unit(1.44, "feet"),
  44557. name: "Paw",
  44558. image: {
  44559. source: "./media/characters/phillip/paw.svg"
  44560. }
  44561. },
  44562. },
  44563. [
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(6, "feet"),
  44567. default: true
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44573. {
  44574. side: {
  44575. height: math.unit(42, "feet"),
  44576. name: "Side",
  44577. image: {
  44578. source: "./media/characters/uvula/side.svg",
  44579. extra: 683/586,
  44580. bottom: 60/743
  44581. }
  44582. },
  44583. front: {
  44584. height: math.unit(42, "feet"),
  44585. name: "Front",
  44586. image: {
  44587. source: "./media/characters/uvula/front.svg",
  44588. extra: 705/613,
  44589. bottom: 54/759
  44590. }
  44591. },
  44592. maw: {
  44593. height: math.unit(23.5, "feet"),
  44594. name: "Maw",
  44595. image: {
  44596. source: "./media/characters/uvula/maw.svg"
  44597. }
  44598. },
  44599. },
  44600. [
  44601. {
  44602. name: "Original Size",
  44603. height: math.unit(14, "inches")
  44604. },
  44605. {
  44606. name: "Human Size",
  44607. height: math.unit(6, "feet")
  44608. },
  44609. {
  44610. name: "Big",
  44611. height: math.unit(42, "feet"),
  44612. default: true
  44613. },
  44614. {
  44615. name: "Bigger",
  44616. height: math.unit(100, "feet")
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(5 + 11/12, "feet"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/lannah/front.svg",
  44628. extra: 1208/1113,
  44629. bottom: 97/1305
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(5 + 11/12, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44643. {
  44644. front: {
  44645. height: math.unit(6 + 3/12, "feet"),
  44646. weight: math.unit(3.5, "tons"),
  44647. name: "Front",
  44648. image: {
  44649. source: "./media/characters/emberflame/front.svg",
  44650. extra: 1198/672,
  44651. bottom: 82/1280
  44652. }
  44653. },
  44654. side: {
  44655. height: math.unit(6 + 3/12, "feet"),
  44656. weight: math.unit(3.5, "tons"),
  44657. name: "Side",
  44658. image: {
  44659. source: "./media/characters/emberflame/side.svg",
  44660. extra: 938/527,
  44661. bottom: 56/994
  44662. }
  44663. },
  44664. },
  44665. [
  44666. {
  44667. name: "Normal",
  44668. height: math.unit(6 + 3/12, "feet"),
  44669. default: true
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44675. {
  44676. side: {
  44677. height: math.unit(17.5, "feet"),
  44678. weight: math.unit(35, "tons"),
  44679. name: "Side",
  44680. image: {
  44681. source: "./media/characters/sophie-ambrose/side.svg",
  44682. extra: 1573/1242,
  44683. bottom: 71/1644
  44684. }
  44685. },
  44686. maw: {
  44687. height: math.unit(7.4, "feet"),
  44688. name: "Maw",
  44689. image: {
  44690. source: "./media/characters/sophie-ambrose/maw.svg"
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Normal",
  44697. height: math.unit(17.5, "feet"),
  44698. default: true
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(280, "feet"),
  44707. weight: math.unit(550, "tons"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/king-mugi/front.svg",
  44711. extra: 1102/947,
  44712. bottom: 104/1206
  44713. }
  44714. },
  44715. },
  44716. [
  44717. {
  44718. name: "King Mugi",
  44719. height: math.unit(280, "feet"),
  44720. default: true
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(64, "meters"),
  44729. name: "Front",
  44730. image: {
  44731. source: "./media/characters/nova-fox/front.svg",
  44732. extra: 1310/1246,
  44733. bottom: 65/1375
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Macro",
  44740. height: math.unit(64, "meters"),
  44741. default: true
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44747. {
  44748. front: {
  44749. height: math.unit(6 + 3/12, "feet"),
  44750. weight: math.unit(170, "lb"),
  44751. name: "Front",
  44752. image: {
  44753. source: "./media/characters/sam-bat/front.svg",
  44754. extra: 1601/1411,
  44755. bottom: 125/1726
  44756. }
  44757. },
  44758. back: {
  44759. height: math.unit(6 + 3/12, "feet"),
  44760. weight: math.unit(170, "lb"),
  44761. name: "Back",
  44762. image: {
  44763. source: "./media/characters/sam-bat/back.svg",
  44764. extra: 1577/1405,
  44765. bottom: 58/1635
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "Normal",
  44772. height: math.unit(6 + 3/12, "feet"),
  44773. default: true
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44779. {
  44780. front: {
  44781. height: math.unit(59, "feet"),
  44782. weight: math.unit(40000, "lb"),
  44783. name: "Front",
  44784. image: {
  44785. source: "./media/characters/inari/front.svg",
  44786. extra: 1884/1350,
  44787. bottom: 95/1979
  44788. }
  44789. },
  44790. },
  44791. [
  44792. {
  44793. name: "Gigantamax",
  44794. height: math.unit(59, "feet"),
  44795. default: true
  44796. },
  44797. ]
  44798. ))
  44799. characterMakers.push(() => makeCharacter(
  44800. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44801. {
  44802. front: {
  44803. height: math.unit(5 + 8/12, "feet"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/elizabeth/front.svg",
  44807. extra: 1395/1298,
  44808. bottom: 54/1449
  44809. }
  44810. },
  44811. mouth: {
  44812. height: math.unit(1.97, "feet"),
  44813. name: "Mouth",
  44814. image: {
  44815. source: "./media/characters/elizabeth/mouth.svg"
  44816. }
  44817. },
  44818. foot: {
  44819. height: math.unit(1.17, "feet"),
  44820. name: "Foot",
  44821. image: {
  44822. source: "./media/characters/elizabeth/foot.svg"
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(5 + 8/12, "feet"),
  44830. default: true
  44831. },
  44832. {
  44833. name: "Minimacro",
  44834. height: math.unit(18, "feet")
  44835. },
  44836. {
  44837. name: "Macro",
  44838. height: math.unit(180, "feet")
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44844. {
  44845. front: {
  44846. height: math.unit(5 + 2/12, "feet"),
  44847. name: "Front",
  44848. image: {
  44849. source: "./media/characters/october-gossamer/front.svg",
  44850. extra: 505/454,
  44851. bottom: 7/512
  44852. }
  44853. },
  44854. back: {
  44855. height: math.unit(5 + 2/12, "feet"),
  44856. name: "Back",
  44857. image: {
  44858. source: "./media/characters/october-gossamer/back.svg",
  44859. extra: 501/454,
  44860. bottom: 11/512
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(5 + 2/12, "feet"),
  44868. default: true
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44874. {
  44875. front: {
  44876. height: math.unit(5, "feet"),
  44877. name: "Front",
  44878. image: {
  44879. source: "./media/characters/epiglottis/front.svg",
  44880. extra: 923/849,
  44881. bottom: 17/940
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Original Size",
  44888. height: math.unit(10, "inches")
  44889. },
  44890. {
  44891. name: "Human Size",
  44892. height: math.unit(5, "feet"),
  44893. default: true
  44894. },
  44895. {
  44896. name: "Big",
  44897. height: math.unit(25, "feet")
  44898. },
  44899. {
  44900. name: "Bigger",
  44901. height: math.unit(50, "feet")
  44902. },
  44903. {
  44904. name: "oh lawd",
  44905. height: math.unit(75, "feet")
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44911. {
  44912. front: {
  44913. height: math.unit(2 + 4/12, "feet"),
  44914. weight: math.unit(60, "lb"),
  44915. name: "Front",
  44916. image: {
  44917. source: "./media/characters/lerm/front.svg",
  44918. extra: 796/790,
  44919. bottom: 79/875
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Normal",
  44926. height: math.unit(2 + 4/12, "feet"),
  44927. default: true
  44928. },
  44929. ]
  44930. ))
  44931. characterMakers.push(() => makeCharacter(
  44932. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44933. {
  44934. front: {
  44935. height: math.unit(5.5, "feet"),
  44936. weight: math.unit(130, "lb"),
  44937. name: "Front",
  44938. image: {
  44939. source: "./media/characters/xena-nebadon/front.svg",
  44940. extra: 1828/1730,
  44941. bottom: 79/1907
  44942. }
  44943. },
  44944. },
  44945. [
  44946. {
  44947. name: "Tiny Puppy",
  44948. height: math.unit(3, "inches")
  44949. },
  44950. {
  44951. name: "Normal",
  44952. height: math.unit(5.5, "feet"),
  44953. default: true
  44954. },
  44955. {
  44956. name: "Lotta Lady",
  44957. height: math.unit(12, "feet")
  44958. },
  44959. {
  44960. name: "Pretty Big",
  44961. height: math.unit(100, "feet")
  44962. },
  44963. {
  44964. name: "Big",
  44965. height: math.unit(500, "feet")
  44966. },
  44967. {
  44968. name: "Skyscraper Toys",
  44969. height: math.unit(2500, "feet")
  44970. },
  44971. {
  44972. name: "Plane Catcher",
  44973. height: math.unit(8, "miles")
  44974. },
  44975. {
  44976. name: "Planet Toys",
  44977. height: math.unit(15, "earths")
  44978. },
  44979. {
  44980. name: "Stardust",
  44981. height: math.unit(0.25, "galaxies")
  44982. },
  44983. {
  44984. name: "Snacks",
  44985. height: math.unit(70, "universes")
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44991. {
  44992. front: {
  44993. height: math.unit(1.6, "meters"),
  44994. weight: math.unit(60, "kg"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/bounty/front.svg",
  44998. extra: 1426/1308,
  44999. bottom: 15/1441
  45000. }
  45001. },
  45002. back: {
  45003. height: math.unit(1.6, "meters"),
  45004. weight: math.unit(60, "kg"),
  45005. name: "Back",
  45006. image: {
  45007. source: "./media/characters/bounty/back.svg",
  45008. extra: 1417/1307,
  45009. bottom: 8/1425
  45010. }
  45011. },
  45012. },
  45013. [
  45014. {
  45015. name: "Normal",
  45016. height: math.unit(1.6, "meters"),
  45017. default: true
  45018. },
  45019. {
  45020. name: "Macro",
  45021. height: math.unit(300, "meters")
  45022. },
  45023. ]
  45024. ))
  45025. characterMakers.push(() => makeCharacter(
  45026. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45027. {
  45028. front: {
  45029. height: math.unit(2 + 8/12, "feet"),
  45030. weight: math.unit(15, "lb"),
  45031. name: "Front",
  45032. image: {
  45033. source: "./media/characters/mochi/front.svg",
  45034. extra: 1022/852,
  45035. bottom: 435/1457
  45036. }
  45037. },
  45038. back: {
  45039. height: math.unit(2 + 8/12, "feet"),
  45040. weight: math.unit(15, "lb"),
  45041. name: "Back",
  45042. image: {
  45043. source: "./media/characters/mochi/back.svg",
  45044. extra: 1335/1119,
  45045. bottom: 39/1374
  45046. }
  45047. },
  45048. bird: {
  45049. height: math.unit(2 + 8/12, "feet"),
  45050. weight: math.unit(15, "lb"),
  45051. name: "Bird",
  45052. image: {
  45053. source: "./media/characters/mochi/bird.svg",
  45054. extra: 1251/1113,
  45055. bottom: 178/1429
  45056. }
  45057. },
  45058. kaiju: {
  45059. height: math.unit(154, "feet"),
  45060. weight: math.unit(1e7, "lb"),
  45061. name: "Kaiju",
  45062. image: {
  45063. source: "./media/characters/mochi/kaiju.svg",
  45064. extra: 460/324,
  45065. bottom: 40/500
  45066. }
  45067. },
  45068. head: {
  45069. height: math.unit(1.21, "feet"),
  45070. name: "Head",
  45071. image: {
  45072. source: "./media/characters/mochi/head.svg"
  45073. }
  45074. },
  45075. alternateTail: {
  45076. height: math.unit(2 + 8/12, "feet"),
  45077. weight: math.unit(45, "lb"),
  45078. name: "Alternate Tail",
  45079. image: {
  45080. source: "./media/characters/mochi/alternate-tail.svg",
  45081. extra: 139/76,
  45082. bottom: 45/184
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Micro",
  45089. height: math.unit(2, "inches")
  45090. },
  45091. {
  45092. name: "Normal",
  45093. height: math.unit(2 + 8/12, "feet"),
  45094. default: true
  45095. },
  45096. {
  45097. name: "Macro",
  45098. height: math.unit(106, "feet")
  45099. },
  45100. ]
  45101. ))
  45102. characterMakers.push(() => makeCharacter(
  45103. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45104. {
  45105. front: {
  45106. height: math.unit(5.67, "feet"),
  45107. weight: math.unit(135, "lb"),
  45108. name: "Front",
  45109. image: {
  45110. source: "./media/characters/sarel/front.svg",
  45111. extra: 865/788,
  45112. bottom: 97/962
  45113. }
  45114. },
  45115. back: {
  45116. height: math.unit(5.67, "feet"),
  45117. weight: math.unit(135, "lb"),
  45118. name: "Back",
  45119. image: {
  45120. source: "./media/characters/sarel/back.svg",
  45121. extra: 857/777,
  45122. bottom: 32/889
  45123. }
  45124. },
  45125. chozoan: {
  45126. height: math.unit(5.67, "feet"),
  45127. weight: math.unit(135, "lb"),
  45128. name: "Chozoan",
  45129. image: {
  45130. source: "./media/characters/sarel/chozoan.svg",
  45131. extra: 865/788,
  45132. bottom: 97/962
  45133. }
  45134. },
  45135. current: {
  45136. height: math.unit(5.67, "feet"),
  45137. weight: math.unit(135, "lb"),
  45138. name: "Current",
  45139. image: {
  45140. source: "./media/characters/sarel/current.svg",
  45141. extra: 865/788,
  45142. bottom: 97/962
  45143. }
  45144. },
  45145. head: {
  45146. height: math.unit(1.77, "feet"),
  45147. name: "Head",
  45148. image: {
  45149. source: "./media/characters/sarel/head.svg"
  45150. }
  45151. },
  45152. claws: {
  45153. height: math.unit(1.8, "feet"),
  45154. name: "Claws",
  45155. image: {
  45156. source: "./media/characters/sarel/claws.svg"
  45157. }
  45158. },
  45159. clawsAlt: {
  45160. height: math.unit(1.8, "feet"),
  45161. name: "Claws-alt",
  45162. image: {
  45163. source: "./media/characters/sarel/claws-alt.svg"
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(5.67, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(5500, "feet"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/alyonia/front.svg",
  45183. extra: 1200/1135,
  45184. bottom: 29/1229
  45185. }
  45186. },
  45187. back: {
  45188. height: math.unit(5500, "feet"),
  45189. name: "Back",
  45190. image: {
  45191. source: "./media/characters/alyonia/back.svg",
  45192. extra: 1205/1138,
  45193. bottom: 10/1215
  45194. }
  45195. },
  45196. },
  45197. [
  45198. {
  45199. name: "Small",
  45200. height: math.unit(10, "feet")
  45201. },
  45202. {
  45203. name: "Macro",
  45204. height: math.unit(500, "feet")
  45205. },
  45206. {
  45207. name: "Mega Macro",
  45208. height: math.unit(5500, "feet"),
  45209. default: true
  45210. },
  45211. {
  45212. name: "Mega Macro+",
  45213. height: math.unit(500000, "feet")
  45214. },
  45215. {
  45216. name: "Giga Macro",
  45217. height: math.unit(3000, "miles")
  45218. },
  45219. {
  45220. name: "Tera Macro",
  45221. height: math.unit(2.8e6, "miles")
  45222. },
  45223. {
  45224. name: "Galactic",
  45225. height: math.unit(120000, "lightyears")
  45226. },
  45227. ]
  45228. ))
  45229. characterMakers.push(() => makeCharacter(
  45230. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45231. {
  45232. werewolf: {
  45233. height: math.unit(8, "feet"),
  45234. weight: math.unit(425, "lb"),
  45235. name: "Werewolf",
  45236. image: {
  45237. source: "./media/characters/autumn/werewolf.svg",
  45238. extra: 2154/2031,
  45239. bottom: 160/2314
  45240. }
  45241. },
  45242. human: {
  45243. height: math.unit(5 + 8/12, "feet"),
  45244. weight: math.unit(150, "lb"),
  45245. name: "Human",
  45246. image: {
  45247. source: "./media/characters/autumn/human.svg",
  45248. extra: 1200/1149,
  45249. bottom: 30/1230
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(8, "feet"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45263. {
  45264. front: {
  45265. height: math.unit(8 + 5/12, "feet"),
  45266. weight: math.unit(825, "lb"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/cobalt-charizard/front.svg",
  45270. extra: 1268/1155,
  45271. bottom: 122/1390
  45272. }
  45273. },
  45274. side: {
  45275. height: math.unit(8 + 5/12, "feet"),
  45276. weight: math.unit(825, "lb"),
  45277. name: "Side",
  45278. image: {
  45279. source: "./media/characters/cobalt-charizard/side.svg",
  45280. extra: 1348/1257,
  45281. bottom: 58/1406
  45282. }
  45283. },
  45284. gMax: {
  45285. height: math.unit(134 + 11/12, "feet"),
  45286. name: "G-Max",
  45287. image: {
  45288. source: "./media/characters/cobalt-charizard/g-max.svg",
  45289. extra: 1835/1541,
  45290. bottom: 151/1986
  45291. }
  45292. },
  45293. },
  45294. [
  45295. {
  45296. name: "Normal",
  45297. height: math.unit(8 + 5/12, "feet"),
  45298. default: true
  45299. },
  45300. ]
  45301. ))
  45302. characterMakers.push(() => makeCharacter(
  45303. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45304. {
  45305. front: {
  45306. height: math.unit(6 + 3/12, "feet"),
  45307. weight: math.unit(210, "lb"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/stella/front.svg",
  45311. extra: 3549/3335,
  45312. bottom: 51/3600
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(6 + 3/12, "feet"),
  45320. default: true
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45326. {
  45327. front: {
  45328. height: math.unit(5, "feet"),
  45329. weight: math.unit(90, "lb"),
  45330. name: "Front",
  45331. image: {
  45332. source: "./media/characters/riley-bishop/front.svg",
  45333. extra: 1450/1428,
  45334. bottom: 152/1602
  45335. }
  45336. },
  45337. },
  45338. [
  45339. {
  45340. name: "Normal",
  45341. height: math.unit(5, "feet"),
  45342. default: true
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45348. {
  45349. side: {
  45350. height: math.unit(8 + 2/12, "feet"),
  45351. weight: math.unit(500, "kg"),
  45352. name: "Side",
  45353. image: {
  45354. source: "./media/characters/theo-arcanine/side.svg",
  45355. extra: 1342/1074,
  45356. bottom: 111/1453
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(8 + 2/12, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(4, "feet"),
  45373. name: "Front",
  45374. image: {
  45375. source: "./media/characters/kali/front.svg",
  45376. extra: 1921/1357,
  45377. bottom: 70/1991
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Normal",
  45384. height: math.unit(4, "feet"),
  45385. default: true
  45386. },
  45387. {
  45388. name: "Macro",
  45389. height: math.unit(32, "meters")
  45390. },
  45391. {
  45392. name: "Macro+",
  45393. height: math.unit(150, "meters")
  45394. },
  45395. {
  45396. name: "Megamacro",
  45397. height: math.unit(7500, "meters")
  45398. },
  45399. {
  45400. name: "Megamacro+",
  45401. height: math.unit(80, "kilometers")
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45407. {
  45408. side: {
  45409. height: math.unit(5 + 11/12, "feet"),
  45410. weight: math.unit(236, "lb"),
  45411. name: "Side",
  45412. image: {
  45413. source: "./media/characters/gapp/side.svg",
  45414. extra: 775/340,
  45415. bottom: 58/833
  45416. }
  45417. },
  45418. mouth: {
  45419. height: math.unit(2.98, "feet"),
  45420. name: "Mouth",
  45421. image: {
  45422. source: "./media/characters/gapp/mouth.svg"
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(5 + 1/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(6, "feet"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/persephone/front.svg",
  45442. extra: 1895/1717,
  45443. bottom: 96/1991
  45444. }
  45445. },
  45446. back: {
  45447. height: math.unit(6, "feet"),
  45448. name: "Back",
  45449. image: {
  45450. source: "./media/characters/persephone/back.svg",
  45451. extra: 1868/1679,
  45452. bottom: 26/1894
  45453. }
  45454. },
  45455. casual: {
  45456. height: math.unit(6, "feet"),
  45457. name: "Casual",
  45458. image: {
  45459. source: "./media/characters/persephone/casual.svg",
  45460. extra: 1713/1541,
  45461. bottom: 76/1789
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Human Size",
  45468. height: math.unit(6, "feet")
  45469. },
  45470. {
  45471. name: "Big Steppy",
  45472. height: math.unit(600, "meters"),
  45473. default: true
  45474. },
  45475. {
  45476. name: "Galaxy Brain",
  45477. height: math.unit(1, "zettameter")
  45478. },
  45479. ]
  45480. ))
  45481. characterMakers.push(() => makeCharacter(
  45482. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45483. {
  45484. front: {
  45485. height: math.unit(1.85, "meters"),
  45486. name: "Front",
  45487. image: {
  45488. source: "./media/characters/riley-foxthing/front.svg",
  45489. extra: 1495/1354,
  45490. bottom: 122/1617
  45491. }
  45492. },
  45493. frontAlt: {
  45494. height: math.unit(1.85, "meters"),
  45495. name: "Front (Alt)",
  45496. image: {
  45497. source: "./media/characters/riley-foxthing/front-alt.svg",
  45498. extra: 1572/1389,
  45499. bottom: 116/1688
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal Sized",
  45506. height: math.unit(1.85, "meters"),
  45507. default: true
  45508. },
  45509. {
  45510. name: "Quite Sizable",
  45511. height: math.unit(5, "meters")
  45512. },
  45513. {
  45514. name: "Rather Large",
  45515. height: math.unit(20, "meters")
  45516. },
  45517. {
  45518. name: "Macro",
  45519. height: math.unit(450, "meters")
  45520. },
  45521. {
  45522. name: "Giga",
  45523. height: math.unit(5, "km")
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(6, "feet"),
  45532. weight: math.unit(200, "lb"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/blizzard/front.svg",
  45536. extra: 1136/990,
  45537. bottom: 136/1272
  45538. }
  45539. },
  45540. back: {
  45541. height: math.unit(6, "feet"),
  45542. weight: math.unit(200, "lb"),
  45543. name: "Back",
  45544. image: {
  45545. source: "./media/characters/blizzard/back.svg",
  45546. extra: 1175/1034,
  45547. bottom: 97/1272
  45548. }
  45549. },
  45550. sitting: {
  45551. height: math.unit(3.725, "feet"),
  45552. weight: math.unit(200, "lb"),
  45553. name: "Sitting",
  45554. image: {
  45555. source: "./media/characters/blizzard/sitting.svg",
  45556. extra: 581/485,
  45557. bottom: 90/671
  45558. }
  45559. },
  45560. frontWizard: {
  45561. height: math.unit(7.9, "feet"),
  45562. weight: math.unit(200, "lb"),
  45563. name: "Front (Wizard)",
  45564. image: {
  45565. source: "./media/characters/blizzard/front-wizard.svg"
  45566. }
  45567. },
  45568. backWizard: {
  45569. height: math.unit(7.9, "feet"),
  45570. weight: math.unit(200, "lb"),
  45571. name: "Back (Wizard)",
  45572. image: {
  45573. source: "./media/characters/blizzard/back-wizard.svg"
  45574. }
  45575. },
  45576. frontNsfw: {
  45577. height: math.unit(6, "feet"),
  45578. weight: math.unit(200, "lb"),
  45579. name: "Front (NSFW)",
  45580. image: {
  45581. source: "./media/characters/blizzard/front-nsfw.svg",
  45582. extra: 1136/990,
  45583. bottom: 136/1272
  45584. }
  45585. },
  45586. backNsfw: {
  45587. height: math.unit(6, "feet"),
  45588. weight: math.unit(200, "lb"),
  45589. name: "Back (NSFW)",
  45590. image: {
  45591. source: "./media/characters/blizzard/back-nsfw.svg",
  45592. extra: 1175/1034,
  45593. bottom: 97/1272
  45594. }
  45595. },
  45596. sittingNsfw: {
  45597. height: math.unit(3.725, "feet"),
  45598. weight: math.unit(200, "lb"),
  45599. name: "Sitting (NSFW)",
  45600. image: {
  45601. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45602. extra: 581/485,
  45603. bottom: 90/671
  45604. }
  45605. },
  45606. wizardFrontNsfw: {
  45607. height: math.unit(7.9, "feet"),
  45608. weight: math.unit(200, "lb"),
  45609. name: "Wizard (Front, NSFW)",
  45610. image: {
  45611. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Normal",
  45618. height: math.unit(6, "feet"),
  45619. default: true
  45620. },
  45621. ]
  45622. ))
  45623. characterMakers.push(() => makeCharacter(
  45624. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45625. {
  45626. front: {
  45627. height: math.unit(5 + 2/12, "feet"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/lumi/front.svg",
  45631. extra: 1328/1268,
  45632. bottom: 103/1431
  45633. }
  45634. },
  45635. back: {
  45636. height: math.unit(5 + 2/12, "feet"),
  45637. name: "Back",
  45638. image: {
  45639. source: "./media/characters/lumi/back.svg",
  45640. extra: 1381/1327,
  45641. bottom: 43/1424
  45642. }
  45643. },
  45644. },
  45645. [
  45646. {
  45647. name: "Normal",
  45648. height: math.unit(5 + 2/12, "feet"),
  45649. default: true
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45655. {
  45656. front: {
  45657. height: math.unit(5 + 9/12, "feet"),
  45658. name: "Front",
  45659. image: {
  45660. source: "./media/characters/aliya-cotton/front.svg",
  45661. extra: 577/564,
  45662. bottom: 29/606
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(5 + 9/12, "feet"),
  45670. default: true
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(2.7, "meters"),
  45679. weight: math.unit(25000, "lb"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/noah-luxray/front.svg",
  45683. extra: 1644/825,
  45684. bottom: 339/1983
  45685. }
  45686. },
  45687. side: {
  45688. height: math.unit(2.97, "meters"),
  45689. weight: math.unit(25000, "lb"),
  45690. name: "Side",
  45691. image: {
  45692. source: "./media/characters/noah-luxray/side.svg",
  45693. extra: 1319/650,
  45694. bottom: 163/1482
  45695. }
  45696. },
  45697. dick: {
  45698. height: math.unit(7.4, "feet"),
  45699. weight: math.unit(2500, "lb"),
  45700. name: "Dick",
  45701. image: {
  45702. source: "./media/characters/noah-luxray/dick.svg"
  45703. }
  45704. },
  45705. dickAlt: {
  45706. height: math.unit(10.83, "feet"),
  45707. weight: math.unit(2500, "lb"),
  45708. name: "Dick-alt",
  45709. image: {
  45710. source: "./media/characters/noah-luxray/dick-alt.svg"
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "BIG",
  45717. height: math.unit(2.7, "meters"),
  45718. default: true
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45724. {
  45725. standing: {
  45726. height: math.unit(183, "cm"),
  45727. weight: math.unit(68, "kg"),
  45728. name: "Standing",
  45729. image: {
  45730. source: "./media/characters/arion/standing.svg",
  45731. extra: 1869/1807,
  45732. bottom: 93/1962
  45733. }
  45734. },
  45735. reclining: {
  45736. height: math.unit(70.5, "cm"),
  45737. weight: math.unit(68, "lb"),
  45738. name: "Reclining",
  45739. image: {
  45740. source: "./media/characters/arion/reclining.svg",
  45741. extra: 937/870,
  45742. bottom: 63/1000
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Colossus Size, Low",
  45749. height: math.unit(33, "meters"),
  45750. default: true
  45751. },
  45752. {
  45753. name: "Colossus Size, Mid",
  45754. height: math.unit(52, "meters")
  45755. },
  45756. {
  45757. name: "Colossus Size, High",
  45758. height: math.unit(60, "meters")
  45759. },
  45760. {
  45761. name: "Titan Size, Low",
  45762. height: math.unit(91, "meters"),
  45763. },
  45764. {
  45765. name: "Titan Size, Mid",
  45766. height: math.unit(122, "meters")
  45767. },
  45768. {
  45769. name: "Titan Size, High",
  45770. height: math.unit(162, "meters")
  45771. },
  45772. ]
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45776. {
  45777. front: {
  45778. height: math.unit(53, "meters"),
  45779. name: "Front",
  45780. image: {
  45781. source: "./media/characters/stellar-marbey/front.svg",
  45782. extra: 1913/1805,
  45783. bottom: 92/2005
  45784. }
  45785. },
  45786. back: {
  45787. height: math.unit(53, "meters"),
  45788. name: "Back",
  45789. image: {
  45790. source: "./media/characters/stellar-marbey/back.svg",
  45791. extra: 1960/1851,
  45792. bottom: 28/1988
  45793. }
  45794. },
  45795. mouth: {
  45796. height: math.unit(3.5, "meters"),
  45797. name: "Mouth",
  45798. image: {
  45799. source: "./media/characters/stellar-marbey/mouth.svg"
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Macro",
  45806. height: math.unit(53, "meters"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45813. {
  45814. front: {
  45815. height: math.unit(8 + 1/12, "feet"),
  45816. weight: math.unit(233, "lb"),
  45817. name: "Front",
  45818. image: {
  45819. source: "./media/characters/matsu/front.svg",
  45820. extra: 832/772,
  45821. bottom: 40/872
  45822. }
  45823. },
  45824. back: {
  45825. height: math.unit(8 + 1/12, "feet"),
  45826. weight: math.unit(233, "lb"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/matsu/back.svg",
  45830. extra: 839/780,
  45831. bottom: 47/886
  45832. }
  45833. },
  45834. },
  45835. [
  45836. {
  45837. name: "Normal",
  45838. height: math.unit(8 + 1/12, "feet"),
  45839. default: true
  45840. },
  45841. ]
  45842. ))
  45843. characterMakers.push(() => makeCharacter(
  45844. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45845. {
  45846. front: {
  45847. height: math.unit(4, "feet"),
  45848. weight: math.unit(148, "lb"),
  45849. name: "Front",
  45850. image: {
  45851. source: "./media/characters/thiz/front.svg",
  45852. extra: 1913/1748,
  45853. bottom: 62/1975
  45854. }
  45855. },
  45856. },
  45857. [
  45858. {
  45859. name: "Normal",
  45860. height: math.unit(4, "feet"),
  45861. default: true
  45862. },
  45863. ]
  45864. ))
  45865. characterMakers.push(() => makeCharacter(
  45866. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45867. {
  45868. front: {
  45869. height: math.unit(7 + 6/12, "feet"),
  45870. weight: math.unit(267, "lb"),
  45871. name: "Front",
  45872. image: {
  45873. source: "./media/characters/marcel/front.svg",
  45874. extra: 1221/1096,
  45875. bottom: 76/1297
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Normal",
  45882. height: math.unit(7 + 6/12, "feet"),
  45883. default: true
  45884. },
  45885. ]
  45886. ))
  45887. characterMakers.push(() => makeCharacter(
  45888. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45889. {
  45890. side: {
  45891. height: math.unit(42, "meters"),
  45892. name: "Side",
  45893. image: {
  45894. source: "./media/characters/flake/side.svg",
  45895. extra: 1525/1306,
  45896. bottom: 209/1734
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Normal",
  45903. height: math.unit(42, "meters"),
  45904. default: true
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45910. {
  45911. dressed: {
  45912. height: math.unit(6 + 4/12, "feet"),
  45913. weight: math.unit(520, "lb"),
  45914. name: "Dressed",
  45915. image: {
  45916. source: "./media/characters/someonne/dressed.svg",
  45917. extra: 1020/1010,
  45918. bottom: 178/1198
  45919. }
  45920. },
  45921. undressed: {
  45922. height: math.unit(6 + 4/12, "feet"),
  45923. weight: math.unit(520, "lb"),
  45924. name: "Undressed",
  45925. image: {
  45926. source: "./media/characters/someonne/undressed.svg",
  45927. extra: 1019/1014,
  45928. bottom: 169/1188
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Normal",
  45935. height: math.unit(6 + 4/12, "feet"),
  45936. default: true
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45942. {
  45943. front: {
  45944. height: math.unit(3, "feet"),
  45945. weight: math.unit(30, "lb"),
  45946. name: "Front",
  45947. image: {
  45948. source: "./media/characters/till/front.svg",
  45949. extra: 892/823,
  45950. bottom: 55/947
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Normal",
  45957. height: math.unit(3, "feet"),
  45958. default: true
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45964. {
  45965. front: {
  45966. height: math.unit(9 + 8/12, "feet"),
  45967. weight: math.unit(800, "lb"),
  45968. name: "Front",
  45969. image: {
  45970. source: "./media/characters/sydney-heki/front.svg",
  45971. extra: 1360/1300,
  45972. bottom: 22/1382
  45973. }
  45974. },
  45975. back: {
  45976. height: math.unit(9 + 8/12, "feet"),
  45977. weight: math.unit(800, "lb"),
  45978. name: "Back",
  45979. image: {
  45980. source: "./media/characters/sydney-heki/back.svg",
  45981. extra: 1356/1293,
  45982. bottom: 12/1368
  45983. }
  45984. },
  45985. frontDressed: {
  45986. height: math.unit(9 + 8/12, "feet"),
  45987. weight: math.unit(800, "lb"),
  45988. name: "Front-dressed",
  45989. image: {
  45990. source: "./media/characters/sydney-heki/front-dressed.svg",
  45991. extra: 1360/1300,
  45992. bottom: 22/1382
  45993. }
  45994. },
  45995. },
  45996. [
  45997. {
  45998. name: "Normal",
  45999. height: math.unit(9 + 8/12, "feet"),
  46000. default: true
  46001. },
  46002. {
  46003. name: "Macro",
  46004. height: math.unit(500, "feet")
  46005. },
  46006. {
  46007. name: "Megamacro",
  46008. height: math.unit(3.6, "miles")
  46009. },
  46010. ]
  46011. ))
  46012. characterMakers.push(() => makeCharacter(
  46013. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46014. {
  46015. front: {
  46016. height: math.unit(200, "cm"),
  46017. weight: math.unit(250, "lb"),
  46018. name: "Front",
  46019. image: {
  46020. source: "./media/characters/fowler-karlsson/front.svg",
  46021. extra: 897/845,
  46022. bottom: 123/1020
  46023. }
  46024. },
  46025. back: {
  46026. height: math.unit(200, "cm"),
  46027. weight: math.unit(250, "lb"),
  46028. name: "Back",
  46029. image: {
  46030. source: "./media/characters/fowler-karlsson/back.svg",
  46031. extra: 999/944,
  46032. bottom: 26/1025
  46033. }
  46034. },
  46035. dick: {
  46036. height: math.unit(1.92, "feet"),
  46037. weight: math.unit(150, "lb"),
  46038. name: "Dick",
  46039. image: {
  46040. source: "./media/characters/fowler-karlsson/dick.svg"
  46041. }
  46042. },
  46043. },
  46044. [
  46045. {
  46046. name: "Normal",
  46047. height: math.unit(200, "cm"),
  46048. default: true
  46049. },
  46050. {
  46051. name: "Smaller Macro",
  46052. height: math.unit(90, "m")
  46053. },
  46054. {
  46055. name: "Macro",
  46056. height: math.unit(150, "m")
  46057. },
  46058. {
  46059. name: "Bigger Macro",
  46060. height: math.unit(300, "m")
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46066. {
  46067. side: {
  46068. height: math.unit(8 + 2/12, "feet"),
  46069. weight: math.unit(1, "tonne"),
  46070. name: "Side",
  46071. image: {
  46072. source: "./media/characters/rylide/side.svg",
  46073. extra: 1318/1034,
  46074. bottom: 106/1424
  46075. }
  46076. },
  46077. sitting: {
  46078. height: math.unit(303, "cm"),
  46079. weight: math.unit(1, "tonne"),
  46080. name: "Sitting",
  46081. image: {
  46082. source: "./media/characters/rylide/sitting.svg",
  46083. extra: 1303/1103,
  46084. bottom: 36/1339
  46085. }
  46086. },
  46087. },
  46088. [
  46089. {
  46090. name: "Normal",
  46091. height: math.unit(8 + 2/12, "feet"),
  46092. default: true
  46093. },
  46094. ]
  46095. ))
  46096. characterMakers.push(() => makeCharacter(
  46097. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46098. {
  46099. front: {
  46100. height: math.unit(5 + 10/12, "feet"),
  46101. weight: math.unit(160, "lb"),
  46102. name: "Front",
  46103. image: {
  46104. source: "./media/characters/pudask/front.svg",
  46105. extra: 1616/1590,
  46106. bottom: 161/1777
  46107. }
  46108. },
  46109. },
  46110. [
  46111. {
  46112. name: "Ferret Height",
  46113. height: math.unit(2 + 5/12, "feet")
  46114. },
  46115. {
  46116. name: "Canon Height",
  46117. height: math.unit(5 + 10/12, "feet"),
  46118. default: true
  46119. },
  46120. ]
  46121. ))
  46122. characterMakers.push(() => makeCharacter(
  46123. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46124. {
  46125. front: {
  46126. height: math.unit(3 + 6/12, "feet"),
  46127. weight: math.unit(60, "lb"),
  46128. name: "Front",
  46129. image: {
  46130. source: "./media/characters/ramita/front.svg",
  46131. extra: 1402/1232,
  46132. bottom: 62/1464
  46133. }
  46134. },
  46135. dressed: {
  46136. height: math.unit(3 + 6/12, "feet"),
  46137. weight: math.unit(60, "lb"),
  46138. name: "Dressed",
  46139. image: {
  46140. source: "./media/characters/ramita/dressed.svg",
  46141. extra: 1534/1249,
  46142. bottom: 50/1584
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(3 + 6/12, "feet"),
  46150. default: true
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46156. {
  46157. front: {
  46158. height: math.unit(8, "feet"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/ark/front.svg",
  46162. extra: 772/693,
  46163. bottom: 45/817
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(8, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(6, "feet"),
  46180. weight: math.unit(250, "lb"),
  46181. volume: math.unit(5/8, "gallons"),
  46182. name: "Front",
  46183. image: {
  46184. source: "./media/characters/ludwig-horn/front.svg",
  46185. extra: 1782/1635,
  46186. bottom: 96/1878
  46187. }
  46188. },
  46189. back: {
  46190. height: math.unit(6, "feet"),
  46191. weight: math.unit(250, "lb"),
  46192. volume: math.unit(5/8, "gallons"),
  46193. name: "Back",
  46194. image: {
  46195. source: "./media/characters/ludwig-horn/back.svg",
  46196. extra: 1874/1729,
  46197. bottom: 27/1901
  46198. }
  46199. },
  46200. dick: {
  46201. height: math.unit(1.05, "feet"),
  46202. weight: math.unit(15, "lb"),
  46203. volume: math.unit(5/8, "gallons"),
  46204. name: "Dick",
  46205. image: {
  46206. source: "./media/characters/ludwig-horn/dick.svg"
  46207. }
  46208. },
  46209. },
  46210. [
  46211. {
  46212. name: "Small",
  46213. height: math.unit(6, "feet")
  46214. },
  46215. {
  46216. name: "Typical",
  46217. height: math.unit(12, "feet"),
  46218. default: true
  46219. },
  46220. {
  46221. name: "Building",
  46222. height: math.unit(80, "feet")
  46223. },
  46224. {
  46225. name: "Town",
  46226. height: math.unit(800, "feet")
  46227. },
  46228. {
  46229. name: "Kingdom",
  46230. height: math.unit(80000, "feet")
  46231. },
  46232. {
  46233. name: "Planet",
  46234. height: math.unit(8000000, "feet")
  46235. },
  46236. {
  46237. name: "Universe",
  46238. height: math.unit(8000000000, "feet")
  46239. },
  46240. {
  46241. name: "Transcended",
  46242. height: math.unit(8e27, "feet")
  46243. },
  46244. ]
  46245. ))
  46246. characterMakers.push(() => makeCharacter(
  46247. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46248. {
  46249. front: {
  46250. height: math.unit(5, "feet"),
  46251. weight: math.unit(50, "kg"),
  46252. name: "Front",
  46253. image: {
  46254. source: "./media/characters/biot-avery/front.svg",
  46255. extra: 1295/1232,
  46256. bottom: 86/1381
  46257. }
  46258. },
  46259. },
  46260. [
  46261. {
  46262. name: "Normal",
  46263. height: math.unit(5, "feet"),
  46264. default: true
  46265. },
  46266. ]
  46267. ))
  46268. characterMakers.push(() => makeCharacter(
  46269. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46270. {
  46271. front: {
  46272. height: math.unit(6, "feet"),
  46273. name: "Front",
  46274. image: {
  46275. source: "./media/characters/kitsune-kiro/front.svg",
  46276. extra: 1270/1158,
  46277. bottom: 42/1312
  46278. }
  46279. },
  46280. frontAlt: {
  46281. height: math.unit(6, "feet"),
  46282. name: "Front-alt",
  46283. image: {
  46284. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46285. extra: 1130/1081,
  46286. bottom: 36/1166
  46287. }
  46288. },
  46289. },
  46290. [
  46291. {
  46292. name: "Smol",
  46293. height: math.unit(3, "feet")
  46294. },
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(6, "feet"),
  46298. default: true
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46304. {
  46305. front: {
  46306. height: math.unit(6, "feet"),
  46307. weight: math.unit(125, "lb"),
  46308. name: "Front",
  46309. image: {
  46310. source: "./media/characters/jack-thatcher/front.svg",
  46311. extra: 1474/1370,
  46312. bottom: 26/1500
  46313. }
  46314. },
  46315. back: {
  46316. height: math.unit(6, "feet"),
  46317. weight: math.unit(125, "lb"),
  46318. name: "Back",
  46319. image: {
  46320. source: "./media/characters/jack-thatcher/back.svg",
  46321. extra: 1489/1384,
  46322. bottom: 18/1507
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(6, "feet"),
  46330. default: true
  46331. },
  46332. {
  46333. name: "Macro",
  46334. height: math.unit(75, "feet")
  46335. },
  46336. {
  46337. name: "Macro-er",
  46338. height: math.unit(250, "feet")
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46344. {
  46345. front: {
  46346. height: math.unit(7, "feet"),
  46347. weight: math.unit(110, "kg"),
  46348. name: "Front",
  46349. image: {
  46350. source: "./media/characters/max-hyper/front.svg",
  46351. extra: 1969/1881,
  46352. bottom: 49/2018
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(7, "feet"),
  46360. default: true
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(5 + 5/12, "feet"),
  46369. weight: math.unit(160, "lb"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/spook/front.svg",
  46373. extra: 794/791,
  46374. bottom: 54/848
  46375. }
  46376. },
  46377. back: {
  46378. height: math.unit(5 + 5/12, "feet"),
  46379. weight: math.unit(160, "lb"),
  46380. name: "Back",
  46381. image: {
  46382. source: "./media/characters/spook/back.svg",
  46383. extra: 812/798,
  46384. bottom: 32/844
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Normal",
  46391. height: math.unit(5 + 5/12, "feet"),
  46392. default: true
  46393. },
  46394. ]
  46395. ))
  46396. characterMakers.push(() => makeCharacter(
  46397. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46398. {
  46399. front: {
  46400. height: math.unit(18, "feet"),
  46401. name: "Front",
  46402. image: {
  46403. source: "./media/characters/xeaduulix/front.svg",
  46404. extra: 1380/1166,
  46405. bottom: 110/1490
  46406. }
  46407. },
  46408. back: {
  46409. height: math.unit(18, "feet"),
  46410. name: "Back",
  46411. image: {
  46412. source: "./media/characters/xeaduulix/back.svg",
  46413. extra: 1592/1170,
  46414. bottom: 128/1720
  46415. }
  46416. },
  46417. frontNsfw: {
  46418. height: math.unit(18, "feet"),
  46419. name: "Front (NSFW)",
  46420. image: {
  46421. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46422. extra: 1380/1166,
  46423. bottom: 110/1490
  46424. }
  46425. },
  46426. backNsfw: {
  46427. height: math.unit(18, "feet"),
  46428. name: "Back (NSFW)",
  46429. image: {
  46430. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46431. extra: 1592/1170,
  46432. bottom: 128/1720
  46433. }
  46434. },
  46435. },
  46436. [
  46437. {
  46438. name: "Normal",
  46439. height: math.unit(18, "feet"),
  46440. default: true
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46446. {
  46447. spreadWings: {
  46448. height: math.unit(20, "feet"),
  46449. name: "Spread Wings",
  46450. image: {
  46451. source: "./media/characters/fledge/spread-wings.svg",
  46452. extra: 693/635,
  46453. bottom: 26/719
  46454. }
  46455. },
  46456. front: {
  46457. height: math.unit(20, "feet"),
  46458. name: "Front",
  46459. image: {
  46460. source: "./media/characters/fledge/front.svg",
  46461. extra: 684/637,
  46462. bottom: 18/702
  46463. }
  46464. },
  46465. frontAlt: {
  46466. height: math.unit(20, "feet"),
  46467. name: "Front (Alt)",
  46468. image: {
  46469. source: "./media/characters/fledge/front-alt.svg",
  46470. extra: 708/664,
  46471. bottom: 13/721
  46472. }
  46473. },
  46474. back: {
  46475. height: math.unit(20, "feet"),
  46476. name: "Back",
  46477. image: {
  46478. source: "./media/characters/fledge/back.svg",
  46479. extra: 718/634,
  46480. bottom: 22/740
  46481. }
  46482. },
  46483. head: {
  46484. height: math.unit(5.55, "feet"),
  46485. name: "Head",
  46486. image: {
  46487. source: "./media/characters/fledge/head.svg"
  46488. }
  46489. },
  46490. headAlt: {
  46491. height: math.unit(5.1, "feet"),
  46492. name: "Head (Alt)",
  46493. image: {
  46494. source: "./media/characters/fledge/head-alt.svg"
  46495. }
  46496. },
  46497. },
  46498. [
  46499. {
  46500. name: "Small",
  46501. height: math.unit(6 + 2/12, "feet")
  46502. },
  46503. {
  46504. name: "Big",
  46505. height: math.unit(20, "feet"),
  46506. default: true
  46507. },
  46508. {
  46509. name: "Giant",
  46510. height: math.unit(100, "feet")
  46511. },
  46512. {
  46513. name: "Macro",
  46514. height: math.unit(200, "feet")
  46515. },
  46516. ]
  46517. ))
  46518. characterMakers.push(() => makeCharacter(
  46519. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46520. {
  46521. front: {
  46522. height: math.unit(1, "meter"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/atlas-morenai/front.svg",
  46526. extra: 1275/1043,
  46527. bottom: 19/1294
  46528. }
  46529. },
  46530. back: {
  46531. height: math.unit(1, "meter"),
  46532. name: "Back",
  46533. image: {
  46534. source: "./media/characters/atlas-morenai/back.svg",
  46535. extra: 1141/1001,
  46536. bottom: 25/1166
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(1, "meter"),
  46544. default: true
  46545. },
  46546. {
  46547. name: "Magic-Infused",
  46548. height: math.unit(5, "meters")
  46549. },
  46550. ]
  46551. ))
  46552. characterMakers.push(() => makeCharacter(
  46553. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46554. {
  46555. front: {
  46556. height: math.unit(5, "meters"),
  46557. name: "Front",
  46558. image: {
  46559. source: "./media/characters/cintia/front.svg",
  46560. extra: 1312/1228,
  46561. bottom: 38/1350
  46562. }
  46563. },
  46564. back: {
  46565. height: math.unit(5, "meters"),
  46566. name: "Back",
  46567. image: {
  46568. source: "./media/characters/cintia/back.svg",
  46569. extra: 1260/1166,
  46570. bottom: 98/1358
  46571. }
  46572. },
  46573. frontDick: {
  46574. height: math.unit(5, "meters"),
  46575. name: "Front (Dick)",
  46576. image: {
  46577. source: "./media/characters/cintia/front-dick.svg",
  46578. extra: 1312/1228,
  46579. bottom: 38/1350
  46580. }
  46581. },
  46582. backDick: {
  46583. height: math.unit(5, "meters"),
  46584. name: "Back (Dick)",
  46585. image: {
  46586. source: "./media/characters/cintia/back-dick.svg",
  46587. extra: 1260/1166,
  46588. bottom: 98/1358
  46589. }
  46590. },
  46591. bust: {
  46592. height: math.unit(1.97, "meters"),
  46593. name: "Bust",
  46594. image: {
  46595. source: "./media/characters/cintia/bust.svg",
  46596. extra: 617/565,
  46597. bottom: 0/617
  46598. }
  46599. },
  46600. },
  46601. [
  46602. {
  46603. name: "Normal",
  46604. height: math.unit(5, "meters"),
  46605. default: true
  46606. },
  46607. ]
  46608. ))
  46609. characterMakers.push(() => makeCharacter(
  46610. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46611. {
  46612. side: {
  46613. height: math.unit(100, "feet"),
  46614. name: "Side",
  46615. image: {
  46616. source: "./media/characters/denora/side.svg",
  46617. extra: 875/803,
  46618. bottom: 9/884
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Standard",
  46625. height: math.unit(100, "feet"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Grand",
  46630. height: math.unit(1000, "feet")
  46631. },
  46632. {
  46633. name: "Conquering",
  46634. height: math.unit(10000, "feet")
  46635. },
  46636. ]
  46637. ))
  46638. characterMakers.push(() => makeCharacter(
  46639. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46640. {
  46641. dressed: {
  46642. height: math.unit(8 + 5/12, "feet"),
  46643. weight: math.unit(700, "lb"),
  46644. name: "Dressed",
  46645. image: {
  46646. source: "./media/characters/kiva/dressed.svg",
  46647. extra: 1102/1055,
  46648. bottom: 60/1162
  46649. }
  46650. },
  46651. nude: {
  46652. height: math.unit(8 + 5/12, "feet"),
  46653. weight: math.unit(700, "lb"),
  46654. name: "Nude",
  46655. image: {
  46656. source: "./media/characters/kiva/nude.svg",
  46657. extra: 1102/1055,
  46658. bottom: 60/1162
  46659. }
  46660. },
  46661. },
  46662. [
  46663. {
  46664. name: "Base Height",
  46665. height: math.unit(8 + 5/12, "feet"),
  46666. default: true
  46667. },
  46668. {
  46669. name: "Macro",
  46670. height: math.unit(100, "feet")
  46671. },
  46672. {
  46673. name: "Max",
  46674. height: math.unit(3280, "feet")
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46680. {
  46681. front: {
  46682. height: math.unit(6 + 8/12, "feet"),
  46683. weight: math.unit(250, "lb"),
  46684. name: "Front",
  46685. image: {
  46686. source: "./media/characters/ztragon/front.svg",
  46687. extra: 1825/1684,
  46688. bottom: 98/1923
  46689. }
  46690. },
  46691. },
  46692. [
  46693. {
  46694. name: "Normal",
  46695. height: math.unit(6 + 8/12, "feet"),
  46696. default: true
  46697. },
  46698. {
  46699. name: "Macro",
  46700. height: math.unit(80, "feet")
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46706. {
  46707. front: {
  46708. height: math.unit(10.4, "feet"),
  46709. weight: math.unit(2, "tons"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/yesenia/front.svg",
  46713. extra: 1479/1474,
  46714. bottom: 233/1712
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Normal",
  46721. height: math.unit(10.4, "feet"),
  46722. default: true
  46723. },
  46724. ]
  46725. ))
  46726. characterMakers.push(() => makeCharacter(
  46727. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46728. {
  46729. normal: {
  46730. height: math.unit(6 + 1/12, "feet"),
  46731. weight: math.unit(180, "lb"),
  46732. name: "Normal",
  46733. image: {
  46734. source: "./media/characters/leanne-lycheborne/normal.svg",
  46735. extra: 1748/1660,
  46736. bottom: 98/1846
  46737. }
  46738. },
  46739. were: {
  46740. height: math.unit(12, "feet"),
  46741. weight: math.unit(1600, "lb"),
  46742. name: "Were",
  46743. image: {
  46744. source: "./media/characters/leanne-lycheborne/were.svg",
  46745. extra: 1485/1432,
  46746. bottom: 66/1551
  46747. }
  46748. },
  46749. },
  46750. [
  46751. {
  46752. name: "Normal",
  46753. height: math.unit(6 + 1/12, "feet"),
  46754. default: true
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46760. {
  46761. side: {
  46762. height: math.unit(13, "feet"),
  46763. name: "Side",
  46764. image: {
  46765. source: "./media/characters/kira-tyler/side.svg",
  46766. extra: 693/393,
  46767. bottom: 58/751
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(13, "feet"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46781. {
  46782. front: {
  46783. height: math.unit(10.3, "feet"),
  46784. weight: math.unit(150, "lb"),
  46785. name: "Front",
  46786. image: {
  46787. source: "./media/characters/blaze/front.svg",
  46788. extra: 1378/1286,
  46789. bottom: 172/1550
  46790. }
  46791. },
  46792. },
  46793. [
  46794. {
  46795. name: "Normal",
  46796. height: math.unit(10.3, "feet"),
  46797. default: true
  46798. },
  46799. ]
  46800. ))
  46801. characterMakers.push(() => makeCharacter(
  46802. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46803. {
  46804. side: {
  46805. height: math.unit(2, "meters"),
  46806. weight: math.unit(400, "kg"),
  46807. name: "Side",
  46808. image: {
  46809. source: "./media/characters/anu/side.svg",
  46810. extra: 506/394,
  46811. bottom: 18/524
  46812. }
  46813. },
  46814. },
  46815. [
  46816. {
  46817. name: "Humanoid",
  46818. height: math.unit(2, "meters")
  46819. },
  46820. {
  46821. name: "Normal",
  46822. height: math.unit(5, "meters"),
  46823. default: true
  46824. },
  46825. ]
  46826. ))
  46827. characterMakers.push(() => makeCharacter(
  46828. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46829. {
  46830. front: {
  46831. height: math.unit(5 + 5/12, "feet"),
  46832. weight: math.unit(170, "lb"),
  46833. name: "Front",
  46834. image: {
  46835. source: "./media/characters/synx-the-lynx/front.svg",
  46836. extra: 1893/1745,
  46837. bottom: 17/1910
  46838. }
  46839. },
  46840. side: {
  46841. height: math.unit(5 + 5/12, "feet"),
  46842. weight: math.unit(170, "lb"),
  46843. name: "Side",
  46844. image: {
  46845. source: "./media/characters/synx-the-lynx/side.svg",
  46846. extra: 1884/1740,
  46847. bottom: 39/1923
  46848. }
  46849. },
  46850. back: {
  46851. height: math.unit(5 + 5/12, "feet"),
  46852. weight: math.unit(170, "lb"),
  46853. name: "Back",
  46854. image: {
  46855. source: "./media/characters/synx-the-lynx/back.svg",
  46856. extra: 1903/1755,
  46857. bottom: 14/1917
  46858. }
  46859. },
  46860. },
  46861. [
  46862. {
  46863. name: "Normal",
  46864. height: math.unit(5 + 5/12, "feet"),
  46865. default: true
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46871. {
  46872. back: {
  46873. height: math.unit(15, "feet"),
  46874. name: "Back",
  46875. image: {
  46876. source: "./media/characters/nadezda-fex/back.svg",
  46877. extra: 1695/1481,
  46878. bottom: 25/1720
  46879. }
  46880. },
  46881. },
  46882. [
  46883. {
  46884. name: "Normal",
  46885. height: math.unit(15, "feet"),
  46886. default: true
  46887. },
  46888. {
  46889. name: "Macro",
  46890. height: math.unit(2.5, "miles")
  46891. },
  46892. {
  46893. name: "Goddess",
  46894. height: math.unit(2, "multiverses")
  46895. },
  46896. ]
  46897. ))
  46898. characterMakers.push(() => makeCharacter(
  46899. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46900. {
  46901. front: {
  46902. height: math.unit(216, "cm"),
  46903. name: "Front",
  46904. image: {
  46905. source: "./media/characters/lev/front.svg",
  46906. extra: 1728/1670,
  46907. bottom: 82/1810
  46908. }
  46909. },
  46910. back: {
  46911. height: math.unit(216, "cm"),
  46912. name: "Back",
  46913. image: {
  46914. source: "./media/characters/lev/back.svg",
  46915. extra: 1738/1675,
  46916. bottom: 24/1762
  46917. }
  46918. },
  46919. dressed: {
  46920. height: math.unit(216, "cm"),
  46921. name: "Dressed",
  46922. image: {
  46923. source: "./media/characters/lev/dressed.svg",
  46924. extra: 1397/1351,
  46925. bottom: 73/1470
  46926. }
  46927. },
  46928. head: {
  46929. height: math.unit(0.51, "meter"),
  46930. name: "Head",
  46931. image: {
  46932. source: "./media/characters/lev/head.svg"
  46933. }
  46934. },
  46935. },
  46936. [
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(216, "cm"),
  46940. default: true
  46941. },
  46942. {
  46943. name: "Relatively Macro",
  46944. height: math.unit(80, "meters")
  46945. },
  46946. {
  46947. name: "Megamacro",
  46948. height: math.unit(21600, "meters")
  46949. },
  46950. {
  46951. name: "Megamacro+",
  46952. height: math.unit(64800, "meters")
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46958. {
  46959. front: {
  46960. height: math.unit(2, "meters"),
  46961. weight: math.unit(80, "kg"),
  46962. name: "Front",
  46963. image: {
  46964. source: "./media/characters/moka/front.svg",
  46965. extra: 1337/1255,
  46966. bottom: 58/1395
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Micro",
  46973. height: math.unit(15, "cm")
  46974. },
  46975. {
  46976. name: "Normal",
  46977. height: math.unit(2, "meters"),
  46978. default: true
  46979. },
  46980. {
  46981. name: "Macro",
  46982. height: math.unit(20, "meters"),
  46983. },
  46984. ]
  46985. ))
  46986. characterMakers.push(() => makeCharacter(
  46987. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46988. {
  46989. front: {
  46990. height: math.unit(9, "feet"),
  46991. weight: math.unit(240, "lb"),
  46992. name: "Front",
  46993. image: {
  46994. source: "./media/characters/kuzco/front.svg",
  46995. extra: 1593/1487,
  46996. bottom: 32/1625
  46997. }
  46998. },
  46999. side: {
  47000. height: math.unit(9, "feet"),
  47001. weight: math.unit(240, "lb"),
  47002. name: "Side",
  47003. image: {
  47004. source: "./media/characters/kuzco/side.svg",
  47005. extra: 1575/1485,
  47006. bottom: 30/1605
  47007. }
  47008. },
  47009. back: {
  47010. height: math.unit(9, "feet"),
  47011. weight: math.unit(240, "lb"),
  47012. name: "Back",
  47013. image: {
  47014. source: "./media/characters/kuzco/back.svg",
  47015. extra: 1603/1514,
  47016. bottom: 14/1617
  47017. }
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(9, "feet"),
  47024. default: true
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47030. {
  47031. side: {
  47032. height: math.unit(2, "meters"),
  47033. weight: math.unit(300, "kg"),
  47034. name: "Side",
  47035. image: {
  47036. source: "./media/characters/ceruleus/side.svg",
  47037. extra: 1068/974,
  47038. bottom: 126/1194
  47039. }
  47040. },
  47041. maw: {
  47042. height: math.unit(0.8125, "meter"),
  47043. name: "Maw",
  47044. image: {
  47045. source: "./media/characters/ceruleus/maw.svg"
  47046. }
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(16, "meters"),
  47053. default: true
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47059. {
  47060. front: {
  47061. height: math.unit(9, "feet"),
  47062. weight: math.unit(500, "kg"),
  47063. name: "Front",
  47064. image: {
  47065. source: "./media/characters/acouya/front.svg",
  47066. extra: 1660/1473,
  47067. bottom: 28/1688
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Normal",
  47074. height: math.unit(9, "feet"),
  47075. default: true
  47076. },
  47077. ]
  47078. ))
  47079. characterMakers.push(() => makeCharacter(
  47080. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47081. {
  47082. front: {
  47083. height: math.unit(5 + 6/12, "feet"),
  47084. weight: math.unit(195, "lb"),
  47085. name: "Front",
  47086. image: {
  47087. source: "./media/characters/vant/front.svg",
  47088. extra: 1396/1320,
  47089. bottom: 20/1416
  47090. }
  47091. },
  47092. back: {
  47093. height: math.unit(5 + 6/12, "feet"),
  47094. weight: math.unit(195, "lb"),
  47095. name: "Back",
  47096. image: {
  47097. source: "./media/characters/vant/back.svg",
  47098. extra: 1396/1320,
  47099. bottom: 20/1416
  47100. }
  47101. },
  47102. maw: {
  47103. height: math.unit(0.75, "feet"),
  47104. name: "Maw",
  47105. image: {
  47106. source: "./media/characters/vant/maw.svg"
  47107. }
  47108. },
  47109. paw: {
  47110. height: math.unit(1.07, "feet"),
  47111. name: "Paw",
  47112. image: {
  47113. source: "./media/characters/vant/paw.svg"
  47114. }
  47115. },
  47116. },
  47117. [
  47118. {
  47119. name: "Micro",
  47120. height: math.unit(0.25, "inches")
  47121. },
  47122. {
  47123. name: "Normal",
  47124. height: math.unit(5 + 6/12, "feet"),
  47125. default: true
  47126. },
  47127. {
  47128. name: "Macro",
  47129. height: math.unit(75, "feet")
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47135. {
  47136. front: {
  47137. height: math.unit(30, "meters"),
  47138. weight: math.unit(363, "tons"),
  47139. name: "Front",
  47140. image: {
  47141. source: "./media/characters/ahra/front.svg",
  47142. extra: 1914/1814,
  47143. bottom: 46/1960
  47144. }
  47145. },
  47146. },
  47147. [
  47148. {
  47149. name: "Macro",
  47150. height: math.unit(30, "meters"),
  47151. default: true
  47152. },
  47153. ]
  47154. ))
  47155. characterMakers.push(() => makeCharacter(
  47156. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47157. {
  47158. undressed: {
  47159. height: math.unit(2, "m"),
  47160. weight: math.unit(250, "kg"),
  47161. name: "Undressed",
  47162. image: {
  47163. source: "./media/characters/coriander/undressed.svg",
  47164. extra: 1757/1606,
  47165. bottom: 107/1864
  47166. }
  47167. },
  47168. dressed: {
  47169. height: math.unit(2, "m"),
  47170. weight: math.unit(250, "kg"),
  47171. name: "Dressed",
  47172. image: {
  47173. source: "./media/characters/coriander/dressed.svg",
  47174. extra: 1757/1606,
  47175. bottom: 107/1864
  47176. }
  47177. },
  47178. },
  47179. [
  47180. {
  47181. name: "Normal",
  47182. height: math.unit(4, "meters"),
  47183. default: true
  47184. },
  47185. {
  47186. name: "XL",
  47187. height: math.unit(6, "meters")
  47188. },
  47189. {
  47190. name: "XXL",
  47191. height: math.unit(8, "meters")
  47192. },
  47193. ]
  47194. ))
  47195. characterMakers.push(() => makeCharacter(
  47196. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47197. {
  47198. front: {
  47199. height: math.unit(6, "feet"),
  47200. name: "Front",
  47201. image: {
  47202. source: "./media/characters/syrinx/front.svg",
  47203. extra: 1557/1259,
  47204. bottom: 171/1728
  47205. }
  47206. },
  47207. },
  47208. [
  47209. {
  47210. name: "Normal",
  47211. height: math.unit(6 + 3/12, "feet"),
  47212. default: true
  47213. },
  47214. ]
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47218. {
  47219. front: {
  47220. height: math.unit(11 + 6/12, "feet"),
  47221. weight: math.unit(1.5, "tons"),
  47222. name: "Front",
  47223. image: {
  47224. source: "./media/characters/bor/front.svg",
  47225. extra: 1189/1109,
  47226. bottom: 170/1359
  47227. }
  47228. },
  47229. },
  47230. [
  47231. {
  47232. name: "Normal",
  47233. height: math.unit(11 + 6/12, "feet"),
  47234. default: true
  47235. },
  47236. {
  47237. name: "Macro",
  47238. height: math.unit(32 + 9/12, "feet")
  47239. },
  47240. ]
  47241. ))
  47242. characterMakers.push(() => makeCharacter(
  47243. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47244. {
  47245. anthro: {
  47246. height: math.unit(9, "feet"),
  47247. weight: math.unit(2076, "lb"),
  47248. name: "Anthro",
  47249. image: {
  47250. source: "./media/characters/abacus/anthro.svg",
  47251. extra: 1540/1494,
  47252. bottom: 233/1773
  47253. }
  47254. },
  47255. pigeon: {
  47256. height: math.unit(1, "feet"),
  47257. name: "Pigeon",
  47258. image: {
  47259. source: "./media/characters/abacus/pigeon.svg",
  47260. extra: 528/525,
  47261. bottom: 46/574
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Normal",
  47268. height: math.unit(9, "feet"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47275. {
  47276. side: {
  47277. height: math.unit(6, "feet"),
  47278. name: "Side",
  47279. image: {
  47280. source: "./media/characters/delkhan/side.svg",
  47281. extra: 1884/1786,
  47282. bottom: 308/2192
  47283. }
  47284. },
  47285. head: {
  47286. height: math.unit(3.38, "feet"),
  47287. name: "Head",
  47288. image: {
  47289. source: "./media/characters/delkhan/head.svg"
  47290. }
  47291. },
  47292. },
  47293. [
  47294. {
  47295. name: "Normal",
  47296. height: math.unit(72, "feet"),
  47297. default: true
  47298. },
  47299. {
  47300. name: "Giant",
  47301. height: math.unit(172, "feet")
  47302. },
  47303. ]
  47304. ))
  47305. characterMakers.push(() => makeCharacter(
  47306. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47307. {
  47308. standing: {
  47309. height: math.unit(6, "feet"),
  47310. name: "Standing",
  47311. image: {
  47312. source: "./media/characters/euchidat/standing.svg",
  47313. extra: 1612/1553,
  47314. bottom: 116/1728
  47315. }
  47316. },
  47317. leaning: {
  47318. height: math.unit(6, "feet"),
  47319. name: "Leaning",
  47320. image: {
  47321. source: "./media/characters/euchidat/leaning.svg",
  47322. extra: 1719/1674,
  47323. bottom: 27/1746
  47324. }
  47325. },
  47326. },
  47327. [
  47328. {
  47329. name: "Normal",
  47330. height: math.unit(175, "feet"),
  47331. default: true
  47332. },
  47333. {
  47334. name: "Megamacro",
  47335. height: math.unit(190, "miles")
  47336. },
  47337. {
  47338. name: "Gigamacro",
  47339. height: math.unit(190000, "miles")
  47340. },
  47341. ]
  47342. ))
  47343. characterMakers.push(() => makeCharacter(
  47344. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47345. {
  47346. front: {
  47347. height: math.unit(6, "feet"),
  47348. weight: math.unit(150, "lb"),
  47349. name: "Front",
  47350. image: {
  47351. source: "./media/characters/rebecca-stack/front.svg",
  47352. extra: 1256/1201,
  47353. bottom: 18/1274
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(5 + 8/12, "feet"),
  47361. default: true
  47362. },
  47363. {
  47364. name: "Demolitionist",
  47365. height: math.unit(200, "feet")
  47366. },
  47367. {
  47368. name: "Out of Control",
  47369. height: math.unit(2, "miles")
  47370. },
  47371. {
  47372. name: "Giga",
  47373. height: math.unit(7200, "miles")
  47374. },
  47375. ]
  47376. ))
  47377. characterMakers.push(() => makeCharacter(
  47378. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47379. {
  47380. front: {
  47381. height: math.unit(6, "feet"),
  47382. weight: math.unit(150, "lb"),
  47383. name: "Front",
  47384. image: {
  47385. source: "./media/characters/jenny-cartwright/front.svg",
  47386. extra: 1384/1376,
  47387. bottom: 58/1442
  47388. }
  47389. },
  47390. },
  47391. [
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(6 + 7/12, "feet"),
  47395. default: true
  47396. },
  47397. {
  47398. name: "Librarian",
  47399. height: math.unit(55, "feet")
  47400. },
  47401. {
  47402. name: "Sightseer",
  47403. height: math.unit(50, "miles")
  47404. },
  47405. {
  47406. name: "Giga",
  47407. height: math.unit(30000, "miles")
  47408. },
  47409. ]
  47410. ))
  47411. characterMakers.push(() => makeCharacter(
  47412. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47413. {
  47414. nude: {
  47415. height: math.unit(8, "feet"),
  47416. weight: math.unit(225, "lb"),
  47417. name: "Nude",
  47418. image: {
  47419. source: "./media/characters/marvy/nude.svg",
  47420. extra: 1900/1683,
  47421. bottom: 89/1989
  47422. }
  47423. },
  47424. dressed: {
  47425. height: math.unit(8, "feet"),
  47426. weight: math.unit(225, "lb"),
  47427. name: "Dressed",
  47428. image: {
  47429. source: "./media/characters/marvy/dressed.svg",
  47430. extra: 1900/1683,
  47431. bottom: 89/1989
  47432. }
  47433. },
  47434. head: {
  47435. height: math.unit(2.85, "feet"),
  47436. name: "Head",
  47437. image: {
  47438. source: "./media/characters/marvy/head.svg"
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(8, "feet"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(8, "feet"),
  47455. weight: math.unit(250, "lb"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/leah/front.svg",
  47459. extra: 1257/1149,
  47460. bottom: 109/1366
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Normal",
  47467. height: math.unit(8, "feet"),
  47468. default: true
  47469. },
  47470. {
  47471. name: "Minimacro",
  47472. height: math.unit(40, "feet")
  47473. },
  47474. {
  47475. name: "Macro",
  47476. height: math.unit(124, "feet")
  47477. },
  47478. {
  47479. name: "Megamacro",
  47480. height: math.unit(850, "feet")
  47481. },
  47482. ]
  47483. ))
  47484. characterMakers.push(() => makeCharacter(
  47485. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47486. {
  47487. side: {
  47488. height: math.unit(13 + 6/12, "feet"),
  47489. weight: math.unit(3200, "lb"),
  47490. name: "Side",
  47491. image: {
  47492. source: "./media/characters/alvir/side.svg",
  47493. extra: 896/589,
  47494. bottom: 26/922
  47495. }
  47496. },
  47497. },
  47498. [
  47499. {
  47500. name: "Normal",
  47501. height: math.unit(13 + 6/12, "feet"),
  47502. default: true
  47503. },
  47504. ]
  47505. ))
  47506. characterMakers.push(() => makeCharacter(
  47507. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47508. {
  47509. front: {
  47510. height: math.unit(5 + 4/12, "feet"),
  47511. weight: math.unit(236, "lb"),
  47512. name: "Front",
  47513. image: {
  47514. source: "./media/characters/zaina-khalil/front.svg",
  47515. extra: 1533/1485,
  47516. bottom: 94/1627
  47517. }
  47518. },
  47519. side: {
  47520. height: math.unit(5 + 4/12, "feet"),
  47521. weight: math.unit(236, "lb"),
  47522. name: "Side",
  47523. image: {
  47524. source: "./media/characters/zaina-khalil/side.svg",
  47525. extra: 1537/1498,
  47526. bottom: 66/1603
  47527. }
  47528. },
  47529. back: {
  47530. height: math.unit(5 + 4/12, "feet"),
  47531. weight: math.unit(236, "lb"),
  47532. name: "Back",
  47533. image: {
  47534. source: "./media/characters/zaina-khalil/back.svg",
  47535. extra: 1546/1494,
  47536. bottom: 89/1635
  47537. }
  47538. },
  47539. },
  47540. [
  47541. {
  47542. name: "Normal",
  47543. height: math.unit(5 + 4/12, "feet"),
  47544. default: true
  47545. },
  47546. ]
  47547. ))
  47548. characterMakers.push(() => makeCharacter(
  47549. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47550. {
  47551. side: {
  47552. height: math.unit(12, "feet"),
  47553. weight: math.unit(4000, "lb"),
  47554. name: "Side",
  47555. image: {
  47556. source: "./media/characters/terry/side.svg",
  47557. extra: 1518/1439,
  47558. bottom: 149/1667
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(12, "feet"),
  47566. default: true
  47567. },
  47568. ]
  47569. ))
  47570. characterMakers.push(() => makeCharacter(
  47571. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47572. {
  47573. front: {
  47574. height: math.unit(12, "feet"),
  47575. weight: math.unit(1500, "lb"),
  47576. name: "Front",
  47577. image: {
  47578. source: "./media/characters/kahea/front.svg",
  47579. extra: 1722/1617,
  47580. bottom: 179/1901
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Normal",
  47587. height: math.unit(12, "feet"),
  47588. default: true
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47594. {
  47595. demonFront: {
  47596. height: math.unit(36, "feet"),
  47597. name: "Front",
  47598. image: {
  47599. source: "./media/characters/alex-xuria/demon-front.svg",
  47600. extra: 1705/1673,
  47601. bottom: 198/1903
  47602. },
  47603. form: "demon",
  47604. default: true
  47605. },
  47606. demonBack: {
  47607. height: math.unit(36, "feet"),
  47608. name: "Back",
  47609. image: {
  47610. source: "./media/characters/alex-xuria/demon-back.svg",
  47611. extra: 1725/1693,
  47612. bottom: 70/1795
  47613. },
  47614. form: "demon"
  47615. },
  47616. demonHead: {
  47617. height: math.unit(2.14, "meters"),
  47618. name: "Head",
  47619. image: {
  47620. source: "./media/characters/alex-xuria/demon-head.svg"
  47621. },
  47622. form: "demon"
  47623. },
  47624. demonHand: {
  47625. height: math.unit(1.61, "meters"),
  47626. name: "Hand",
  47627. image: {
  47628. source: "./media/characters/alex-xuria/demon-hand.svg"
  47629. },
  47630. form: "demon"
  47631. },
  47632. demonPaw: {
  47633. height: math.unit(1.35, "meters"),
  47634. name: "Paw",
  47635. image: {
  47636. source: "./media/characters/alex-xuria/demon-paw.svg"
  47637. },
  47638. form: "demon"
  47639. },
  47640. demonFoot: {
  47641. height: math.unit(2.2, "meters"),
  47642. name: "Foot",
  47643. image: {
  47644. source: "./media/characters/alex-xuria/demon-foot.svg"
  47645. },
  47646. form: "demon"
  47647. },
  47648. demonCock: {
  47649. height: math.unit(1.74, "meters"),
  47650. name: "Cock",
  47651. image: {
  47652. source: "./media/characters/alex-xuria/demon-cock.svg"
  47653. },
  47654. form: "demon"
  47655. },
  47656. demonTailClosed: {
  47657. height: math.unit(1.47, "meters"),
  47658. name: "Tail (Closed)",
  47659. image: {
  47660. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47661. },
  47662. form: "demon"
  47663. },
  47664. demonTailOpen: {
  47665. height: math.unit(2.85, "meters"),
  47666. name: "Tail (Open)",
  47667. image: {
  47668. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47669. },
  47670. form: "demon"
  47671. },
  47672. incubusFront: {
  47673. height: math.unit(12, "feet"),
  47674. name: "Front",
  47675. image: {
  47676. source: "./media/characters/alex-xuria/incubus-front.svg",
  47677. extra: 1754/1677,
  47678. bottom: 125/1879
  47679. },
  47680. form: "incubus",
  47681. default: true
  47682. },
  47683. incubusBack: {
  47684. height: math.unit(12, "feet"),
  47685. name: "Back",
  47686. image: {
  47687. source: "./media/characters/alex-xuria/incubus-back.svg",
  47688. extra: 1702/1647,
  47689. bottom: 30/1732
  47690. },
  47691. form: "incubus"
  47692. },
  47693. incubusHead: {
  47694. height: math.unit(3.45, "feet"),
  47695. name: "Head",
  47696. image: {
  47697. source: "./media/characters/alex-xuria/incubus-head.svg"
  47698. },
  47699. form: "incubus"
  47700. },
  47701. rabbitFront: {
  47702. height: math.unit(6, "feet"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47706. extra: 1369/1349,
  47707. bottom: 45/1414
  47708. },
  47709. form: "rabbit",
  47710. default: true
  47711. },
  47712. rabbitSide: {
  47713. height: math.unit(6, "feet"),
  47714. name: "Side",
  47715. image: {
  47716. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47717. extra: 1370/1356,
  47718. bottom: 37/1407
  47719. },
  47720. form: "rabbit"
  47721. },
  47722. rabbitBack: {
  47723. height: math.unit(6, "feet"),
  47724. name: "Back",
  47725. image: {
  47726. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47727. extra: 1375/1358,
  47728. bottom: 43/1418
  47729. },
  47730. form: "rabbit"
  47731. },
  47732. },
  47733. [
  47734. {
  47735. name: "Normal",
  47736. height: math.unit(6, "feet"),
  47737. default: true,
  47738. form: "rabbit"
  47739. },
  47740. {
  47741. name: "Incubus",
  47742. height: math.unit(12, "feet"),
  47743. default: true,
  47744. form: "incubus"
  47745. },
  47746. {
  47747. name: "Demon",
  47748. height: math.unit(36, "feet"),
  47749. default: true,
  47750. form: "demon"
  47751. }
  47752. ],
  47753. {
  47754. "demon": {
  47755. name: "Demon",
  47756. default: true
  47757. },
  47758. "incubus": {
  47759. name: "Incubus",
  47760. },
  47761. "rabbit": {
  47762. name: "Rabbit"
  47763. }
  47764. }
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47768. {
  47769. front: {
  47770. height: math.unit(7 + 5/12, "feet"),
  47771. weight: math.unit(510, "lb"),
  47772. name: "Front",
  47773. image: {
  47774. source: "./media/characters/syrup/front.svg",
  47775. extra: 932/916,
  47776. bottom: 26/958
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(7 + 5/12, "feet"),
  47784. default: true
  47785. },
  47786. {
  47787. name: "Big",
  47788. height: math.unit(50, "feet")
  47789. },
  47790. {
  47791. name: "Macro",
  47792. height: math.unit(300, "feet")
  47793. },
  47794. {
  47795. name: "Megamacro",
  47796. height: math.unit(1, "mile")
  47797. },
  47798. ]
  47799. ))
  47800. characterMakers.push(() => makeCharacter(
  47801. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47802. {
  47803. front: {
  47804. height: math.unit(6 + 9/12, "feet"),
  47805. name: "Front",
  47806. image: {
  47807. source: "./media/characters/zeimne/front.svg",
  47808. extra: 1969/1806,
  47809. bottom: 53/2022
  47810. }
  47811. },
  47812. },
  47813. [
  47814. {
  47815. name: "Normal",
  47816. height: math.unit(6 + 9/12, "feet"),
  47817. default: true
  47818. },
  47819. {
  47820. name: "Giant",
  47821. height: math.unit(550, "feet")
  47822. },
  47823. {
  47824. name: "Mega",
  47825. height: math.unit(3, "miles")
  47826. },
  47827. {
  47828. name: "Giga",
  47829. height: math.unit(250, "miles")
  47830. },
  47831. {
  47832. name: "Tera",
  47833. height: math.unit(1, "AU")
  47834. },
  47835. ]
  47836. ))
  47837. characterMakers.push(() => makeCharacter(
  47838. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47839. {
  47840. front: {
  47841. height: math.unit(5 + 2/12, "feet"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/grar/front.svg",
  47845. extra: 1331/1119,
  47846. bottom: 60/1391
  47847. }
  47848. },
  47849. back: {
  47850. height: math.unit(5 + 2/12, "feet"),
  47851. name: "Back",
  47852. image: {
  47853. source: "./media/characters/grar/back.svg",
  47854. extra: 1385/1169,
  47855. bottom: 23/1408
  47856. }
  47857. },
  47858. },
  47859. [
  47860. {
  47861. name: "Normal",
  47862. height: math.unit(5 + 2/12, "feet"),
  47863. default: true
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47869. {
  47870. front: {
  47871. height: math.unit(13 + 7/12, "feet"),
  47872. weight: math.unit(2200, "lb"),
  47873. name: "Front",
  47874. image: {
  47875. source: "./media/characters/endraya/front.svg",
  47876. extra: 1289/1215,
  47877. bottom: 50/1339
  47878. }
  47879. },
  47880. nude: {
  47881. height: math.unit(13 + 7/12, "feet"),
  47882. weight: math.unit(2200, "lb"),
  47883. name: "Nude",
  47884. image: {
  47885. source: "./media/characters/endraya/nude.svg",
  47886. extra: 1247/1171,
  47887. bottom: 40/1287
  47888. }
  47889. },
  47890. head: {
  47891. height: math.unit(2.6, "feet"),
  47892. name: "Head",
  47893. image: {
  47894. source: "./media/characters/endraya/head.svg"
  47895. }
  47896. },
  47897. slit: {
  47898. height: math.unit(3.4, "feet"),
  47899. name: "Slit",
  47900. image: {
  47901. source: "./media/characters/endraya/slit.svg"
  47902. }
  47903. },
  47904. },
  47905. [
  47906. {
  47907. name: "Normal",
  47908. height: math.unit(13 + 7/12, "feet"),
  47909. default: true
  47910. },
  47911. {
  47912. name: "Macro",
  47913. height: math.unit(200, "feet")
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(1.81, "meters"),
  47922. weight: math.unit(69, "kg"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/rodryana/front.svg",
  47926. extra: 2002/1921,
  47927. bottom: 53/2055
  47928. }
  47929. },
  47930. back: {
  47931. height: math.unit(1.81, "meters"),
  47932. weight: math.unit(69, "kg"),
  47933. name: "Back",
  47934. image: {
  47935. source: "./media/characters/rodryana/back.svg",
  47936. extra: 1993/1926,
  47937. bottom: 48/2041
  47938. }
  47939. },
  47940. maw: {
  47941. height: math.unit(0.19769417475, "meters"),
  47942. name: "Maw",
  47943. image: {
  47944. source: "./media/characters/rodryana/maw.svg"
  47945. }
  47946. },
  47947. slit: {
  47948. height: math.unit(0.31631067961, "meters"),
  47949. name: "Slit",
  47950. image: {
  47951. source: "./media/characters/rodryana/slit.svg"
  47952. }
  47953. },
  47954. },
  47955. [
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(1.81, "meters")
  47959. },
  47960. {
  47961. name: "Mini Macro",
  47962. height: math.unit(181, "meters")
  47963. },
  47964. {
  47965. name: "Macro",
  47966. height: math.unit(452, "meters"),
  47967. default: true
  47968. },
  47969. {
  47970. name: "Mega Macro",
  47971. height: math.unit(1.375, "km")
  47972. },
  47973. {
  47974. name: "Giga Macro",
  47975. height: math.unit(13.575, "km")
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47981. {
  47982. front: {
  47983. height: math.unit(6, "feet"),
  47984. weight: math.unit(1000, "lb"),
  47985. name: "Front",
  47986. image: {
  47987. source: "./media/characters/asaya/front.svg",
  47988. extra: 1460/1200,
  47989. bottom: 71/1531
  47990. }
  47991. },
  47992. },
  47993. [
  47994. {
  47995. name: "Normal",
  47996. height: math.unit(8, "km"),
  47997. default: true
  47998. },
  47999. ]
  48000. ))
  48001. characterMakers.push(() => makeCharacter(
  48002. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48003. {
  48004. front: {
  48005. height: math.unit(3.5, "meters"),
  48006. name: "Front",
  48007. image: {
  48008. source: "./media/characters/sarzu-and-israz/front.svg",
  48009. extra: 1570/1558,
  48010. bottom: 150/1720
  48011. },
  48012. },
  48013. back: {
  48014. height: math.unit(3.5, "meters"),
  48015. name: "Back",
  48016. image: {
  48017. source: "./media/characters/sarzu-and-israz/back.svg",
  48018. extra: 1523/1509,
  48019. bottom: 132/1655
  48020. },
  48021. },
  48022. frontFemale: {
  48023. height: math.unit(3.5, "meters"),
  48024. name: "Front (Female)",
  48025. image: {
  48026. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48027. extra: 1570/1558,
  48028. bottom: 150/1720
  48029. },
  48030. },
  48031. frontHerm: {
  48032. height: math.unit(3.5, "meters"),
  48033. name: "Front (Herm)",
  48034. image: {
  48035. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48036. extra: 1570/1558,
  48037. bottom: 150/1720
  48038. },
  48039. },
  48040. },
  48041. [
  48042. {
  48043. name: "Normal",
  48044. height: math.unit(3.5, "meters"),
  48045. default: true,
  48046. },
  48047. {
  48048. name: "Macro",
  48049. height: math.unit(65.5, "meters"),
  48050. },
  48051. ],
  48052. ))
  48053. characterMakers.push(() => makeCharacter(
  48054. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48055. {
  48056. front: {
  48057. height: math.unit(6, "feet"),
  48058. weight: math.unit(250, "lb"),
  48059. name: "Front",
  48060. image: {
  48061. source: "./media/characters/zenimma/front.svg",
  48062. extra: 1346/1320,
  48063. bottom: 58/1404
  48064. }
  48065. },
  48066. back: {
  48067. height: math.unit(6, "feet"),
  48068. weight: math.unit(250, "lb"),
  48069. name: "Back",
  48070. image: {
  48071. source: "./media/characters/zenimma/back.svg",
  48072. extra: 1324/1308,
  48073. bottom: 44/1368
  48074. }
  48075. },
  48076. dick: {
  48077. height: math.unit(1.44, "feet"),
  48078. name: "Dick",
  48079. image: {
  48080. source: "./media/characters/zenimma/dick.svg"
  48081. }
  48082. },
  48083. },
  48084. [
  48085. {
  48086. name: "Canon Height",
  48087. height: math.unit(66, "miles"),
  48088. default: true
  48089. },
  48090. ]
  48091. ))
  48092. characterMakers.push(() => makeCharacter(
  48093. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48094. {
  48095. nude: {
  48096. height: math.unit(6, "feet"),
  48097. weight: math.unit(150, "lb"),
  48098. name: "Nude",
  48099. image: {
  48100. source: "./media/characters/shavon/nude.svg",
  48101. extra: 1242/1096,
  48102. bottom: 98/1340
  48103. }
  48104. },
  48105. dressed: {
  48106. height: math.unit(6, "feet"),
  48107. weight: math.unit(150, "lb"),
  48108. name: "Dressed",
  48109. image: {
  48110. source: "./media/characters/shavon/dressed.svg",
  48111. extra: 1242/1096,
  48112. bottom: 98/1340
  48113. }
  48114. },
  48115. },
  48116. [
  48117. {
  48118. name: "Macro",
  48119. height: math.unit(255, "feet"),
  48120. default: true
  48121. },
  48122. ]
  48123. ))
  48124. characterMakers.push(() => makeCharacter(
  48125. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48126. {
  48127. front: {
  48128. height: math.unit(6, "feet"),
  48129. name: "Front",
  48130. image: {
  48131. source: "./media/characters/steph/front.svg",
  48132. extra: 1430/1330,
  48133. bottom: 54/1484
  48134. }
  48135. },
  48136. },
  48137. [
  48138. {
  48139. name: "Normal",
  48140. height: math.unit(6, "feet"),
  48141. default: true
  48142. },
  48143. ]
  48144. ))
  48145. characterMakers.push(() => makeCharacter(
  48146. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48147. {
  48148. front: {
  48149. height: math.unit(9, "feet"),
  48150. weight: math.unit(400, "lb"),
  48151. name: "Front",
  48152. image: {
  48153. source: "./media/characters/kil'aman/front.svg",
  48154. extra: 1210/1159,
  48155. bottom: 109/1319
  48156. }
  48157. },
  48158. head: {
  48159. height: math.unit(2.14, "feet"),
  48160. name: "Head",
  48161. image: {
  48162. source: "./media/characters/kil'aman/head.svg"
  48163. }
  48164. },
  48165. maw: {
  48166. height: math.unit(1.21, "feet"),
  48167. name: "Maw",
  48168. image: {
  48169. source: "./media/characters/kil'aman/maw.svg"
  48170. }
  48171. },
  48172. foot: {
  48173. height: math.unit(1.7, "feet"),
  48174. name: "Foot",
  48175. image: {
  48176. source: "./media/characters/kil'aman/foot.svg"
  48177. }
  48178. },
  48179. dick: {
  48180. height: math.unit(2.1, "feet"),
  48181. name: "Dick",
  48182. image: {
  48183. source: "./media/characters/kil'aman/dick.svg"
  48184. }
  48185. },
  48186. },
  48187. [
  48188. {
  48189. name: "Normal",
  48190. height: math.unit(9, "feet")
  48191. },
  48192. {
  48193. name: "Canon Height",
  48194. height: math.unit(10, "miles"),
  48195. default: true
  48196. },
  48197. {
  48198. name: "Maximum",
  48199. height: math.unit(6e9, "miles")
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48205. {
  48206. front: {
  48207. height: math.unit(90, "feet"),
  48208. weight: math.unit(675000, "lb"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/qadan/front.svg",
  48212. extra: 1012/1004,
  48213. bottom: 78/1090
  48214. }
  48215. },
  48216. back: {
  48217. height: math.unit(90, "feet"),
  48218. weight: math.unit(675000, "lb"),
  48219. name: "Back",
  48220. image: {
  48221. source: "./media/characters/qadan/back.svg",
  48222. extra: 1042/1031,
  48223. bottom: 55/1097
  48224. }
  48225. },
  48226. armored: {
  48227. height: math.unit(90, "feet"),
  48228. weight: math.unit(675000, "lb"),
  48229. name: "Armored",
  48230. image: {
  48231. source: "./media/characters/qadan/armored.svg",
  48232. extra: 1047/1037,
  48233. bottom: 48/1095
  48234. }
  48235. },
  48236. },
  48237. [
  48238. {
  48239. name: "Normal",
  48240. height: math.unit(90, "feet"),
  48241. default: true
  48242. },
  48243. ]
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48247. {
  48248. front: {
  48249. height: math.unit(6, "feet"),
  48250. weight: math.unit(225, "lb"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/brooke/front.svg",
  48254. extra: 1050/1010,
  48255. bottom: 66/1116
  48256. }
  48257. },
  48258. back: {
  48259. height: math.unit(6, "feet"),
  48260. weight: math.unit(225, "lb"),
  48261. name: "Back",
  48262. image: {
  48263. source: "./media/characters/brooke/back.svg",
  48264. extra: 1053/1013,
  48265. bottom: 41/1094
  48266. }
  48267. },
  48268. dressed: {
  48269. height: math.unit(6, "feet"),
  48270. weight: math.unit(225, "lb"),
  48271. name: "Dressed",
  48272. image: {
  48273. source: "./media/characters/brooke/dressed.svg",
  48274. extra: 1050/1010,
  48275. bottom: 66/1116
  48276. }
  48277. },
  48278. },
  48279. [
  48280. {
  48281. name: "Canon Height",
  48282. height: math.unit(500, "miles"),
  48283. default: true
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48289. {
  48290. front: {
  48291. height: math.unit(6 + 2/12, "feet"),
  48292. weight: math.unit(210, "lb"),
  48293. name: "Front",
  48294. image: {
  48295. source: "./media/characters/wubs/front.svg",
  48296. extra: 1345/1325,
  48297. bottom: 70/1415
  48298. }
  48299. },
  48300. back: {
  48301. height: math.unit(6 + 2/12, "feet"),
  48302. weight: math.unit(210, "lb"),
  48303. name: "Back",
  48304. image: {
  48305. source: "./media/characters/wubs/back.svg",
  48306. extra: 1296/1275,
  48307. bottom: 58/1354
  48308. }
  48309. },
  48310. },
  48311. [
  48312. {
  48313. name: "Normal",
  48314. height: math.unit(6 + 2/12, "feet"),
  48315. default: true
  48316. },
  48317. {
  48318. name: "Macro",
  48319. height: math.unit(1000, "feet")
  48320. },
  48321. {
  48322. name: "Megamacro",
  48323. height: math.unit(1, "mile")
  48324. },
  48325. ]
  48326. ))
  48327. characterMakers.push(() => makeCharacter(
  48328. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48329. {
  48330. front: {
  48331. height: math.unit(4, "feet"),
  48332. weight: math.unit(120, "lb"),
  48333. name: "Front",
  48334. image: {
  48335. source: "./media/characters/blue/front.svg",
  48336. extra: 1636/1525,
  48337. bottom: 43/1679
  48338. }
  48339. },
  48340. back: {
  48341. height: math.unit(4, "feet"),
  48342. weight: math.unit(120, "lb"),
  48343. name: "Back",
  48344. image: {
  48345. source: "./media/characters/blue/back.svg",
  48346. extra: 1660/1560,
  48347. bottom: 57/1717
  48348. }
  48349. },
  48350. paws: {
  48351. height: math.unit(0.826, "feet"),
  48352. name: "Paws",
  48353. image: {
  48354. source: "./media/characters/blue/paws.svg"
  48355. }
  48356. },
  48357. },
  48358. [
  48359. {
  48360. name: "Micro",
  48361. height: math.unit(3, "inches")
  48362. },
  48363. {
  48364. name: "Normal",
  48365. height: math.unit(4, "feet"),
  48366. default: true
  48367. },
  48368. {
  48369. name: "Femenine Form",
  48370. height: math.unit(14, "feet")
  48371. },
  48372. {
  48373. name: "Werebat Form",
  48374. height: math.unit(18, "feet")
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48380. {
  48381. female: {
  48382. height: math.unit(7 + 4/12, "feet"),
  48383. weight: math.unit(243, "lb"),
  48384. name: "Female",
  48385. image: {
  48386. source: "./media/characters/kaya/female.svg",
  48387. extra: 975/898,
  48388. bottom: 34/1009
  48389. }
  48390. },
  48391. herm: {
  48392. height: math.unit(7 + 4/12, "feet"),
  48393. weight: math.unit(243, "lb"),
  48394. name: "Herm",
  48395. image: {
  48396. source: "./media/characters/kaya/herm.svg",
  48397. extra: 975/898,
  48398. bottom: 34/1009
  48399. }
  48400. },
  48401. },
  48402. [
  48403. {
  48404. name: "Normal",
  48405. height: math.unit(7 + 4/12, "feet"),
  48406. default: true
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48412. {
  48413. female: {
  48414. height: math.unit(9 + 4/12, "feet"),
  48415. weight: math.unit(398, "lb"),
  48416. name: "Female",
  48417. image: {
  48418. source: "./media/characters/kassandra/female.svg",
  48419. extra: 908/839,
  48420. bottom: 61/969
  48421. }
  48422. },
  48423. intersex: {
  48424. height: math.unit(9 + 4/12, "feet"),
  48425. weight: math.unit(398, "lb"),
  48426. name: "Intersex",
  48427. image: {
  48428. source: "./media/characters/kassandra/intersex.svg",
  48429. extra: 908/839,
  48430. bottom: 61/969
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(9 + 4/12, "feet"),
  48438. default: true
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48444. {
  48445. front: {
  48446. height: math.unit(3, "meters"),
  48447. name: "Front",
  48448. image: {
  48449. source: "./media/characters/amy/front.svg",
  48450. extra: 1380/1343,
  48451. bottom: 70/1450
  48452. }
  48453. },
  48454. back: {
  48455. height: math.unit(3, "meters"),
  48456. name: "Back",
  48457. image: {
  48458. source: "./media/characters/amy/back.svg",
  48459. extra: 1380/1347,
  48460. bottom: 66/1446
  48461. }
  48462. },
  48463. },
  48464. [
  48465. {
  48466. name: "Normal",
  48467. height: math.unit(3, "meters"),
  48468. default: true
  48469. },
  48470. ]
  48471. ))
  48472. characterMakers.push(() => makeCharacter(
  48473. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48474. {
  48475. side: {
  48476. height: math.unit(47, "cm"),
  48477. weight: math.unit(10.8, "kg"),
  48478. name: "Side",
  48479. image: {
  48480. source: "./media/characters/alphaschakal/side.svg",
  48481. extra: 1058/568,
  48482. bottom: 62/1120
  48483. }
  48484. },
  48485. back: {
  48486. height: math.unit(78, "cm"),
  48487. weight: math.unit(10.8, "kg"),
  48488. name: "Back",
  48489. image: {
  48490. source: "./media/characters/alphaschakal/back.svg",
  48491. extra: 1102/942,
  48492. bottom: 185/1287
  48493. }
  48494. },
  48495. head: {
  48496. height: math.unit(28, "cm"),
  48497. name: "Head",
  48498. image: {
  48499. source: "./media/characters/alphaschakal/head.svg",
  48500. extra: 696/508,
  48501. bottom: 0/696
  48502. }
  48503. },
  48504. paw: {
  48505. height: math.unit(16, "cm"),
  48506. name: "Paw",
  48507. image: {
  48508. source: "./media/characters/alphaschakal/paw.svg"
  48509. }
  48510. },
  48511. },
  48512. [
  48513. {
  48514. name: "Normal",
  48515. height: math.unit(47, "cm"),
  48516. default: true
  48517. },
  48518. {
  48519. name: "Macro",
  48520. height: math.unit(340, "cm")
  48521. },
  48522. ]
  48523. ))
  48524. characterMakers.push(() => makeCharacter(
  48525. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48526. {
  48527. front: {
  48528. height: math.unit(36, "earths"),
  48529. name: "Front",
  48530. image: {
  48531. source: "./media/characters/ecobyss/front.svg",
  48532. extra: 1282/1215,
  48533. bottom: 11/1293
  48534. }
  48535. },
  48536. back: {
  48537. height: math.unit(36, "earths"),
  48538. name: "Back",
  48539. image: {
  48540. source: "./media/characters/ecobyss/back.svg",
  48541. extra: 1291/1222,
  48542. bottom: 8/1299
  48543. }
  48544. },
  48545. },
  48546. [
  48547. {
  48548. name: "Normal",
  48549. height: math.unit(36, "earths"),
  48550. default: true
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48556. {
  48557. front: {
  48558. height: math.unit(12, "feet"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/vasuk/front.svg",
  48562. extra: 1326/1207,
  48563. bottom: 64/1390
  48564. }
  48565. },
  48566. },
  48567. [
  48568. {
  48569. name: "Normal",
  48570. height: math.unit(12, "feet"),
  48571. default: true
  48572. },
  48573. ]
  48574. ))
  48575. characterMakers.push(() => makeCharacter(
  48576. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48577. {
  48578. side: {
  48579. height: math.unit(100, "feet"),
  48580. name: "Side",
  48581. image: {
  48582. source: "./media/characters/linneaus/side.svg",
  48583. extra: 987/807,
  48584. bottom: 47/1034
  48585. }
  48586. },
  48587. },
  48588. [
  48589. {
  48590. name: "Macro",
  48591. height: math.unit(100, "feet"),
  48592. default: true
  48593. },
  48594. ]
  48595. ))
  48596. characterMakers.push(() => makeCharacter(
  48597. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48598. {
  48599. front: {
  48600. height: math.unit(8, "feet"),
  48601. weight: math.unit(1200, "lb"),
  48602. name: "Front",
  48603. image: {
  48604. source: "./media/characters/nyterious-daligdig/front.svg",
  48605. extra: 1284/1094,
  48606. bottom: 84/1368
  48607. }
  48608. },
  48609. back: {
  48610. height: math.unit(8, "feet"),
  48611. weight: math.unit(1200, "lb"),
  48612. name: "Back",
  48613. image: {
  48614. source: "./media/characters/nyterious-daligdig/back.svg",
  48615. extra: 1301/1121,
  48616. bottom: 129/1430
  48617. }
  48618. },
  48619. mouth: {
  48620. height: math.unit(1.464, "feet"),
  48621. name: "Mouth",
  48622. image: {
  48623. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48624. }
  48625. },
  48626. },
  48627. [
  48628. {
  48629. name: "Small",
  48630. height: math.unit(8, "feet"),
  48631. default: true
  48632. },
  48633. {
  48634. name: "Normal",
  48635. height: math.unit(15, "feet")
  48636. },
  48637. {
  48638. name: "Macro",
  48639. height: math.unit(90, "feet")
  48640. },
  48641. ]
  48642. ))
  48643. characterMakers.push(() => makeCharacter(
  48644. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48645. {
  48646. front: {
  48647. height: math.unit(7 + 4/12, "feet"),
  48648. weight: math.unit(252, "lb"),
  48649. name: "Front",
  48650. image: {
  48651. source: "./media/characters/bandel/front.svg",
  48652. extra: 1946/1775,
  48653. bottom: 26/1972
  48654. }
  48655. },
  48656. back: {
  48657. height: math.unit(7 + 4/12, "feet"),
  48658. weight: math.unit(252, "lb"),
  48659. name: "Back",
  48660. image: {
  48661. source: "./media/characters/bandel/back.svg",
  48662. extra: 1940/1770,
  48663. bottom: 25/1965
  48664. }
  48665. },
  48666. maw: {
  48667. height: math.unit(2.15, "feet"),
  48668. name: "Maw",
  48669. image: {
  48670. source: "./media/characters/bandel/maw.svg"
  48671. }
  48672. },
  48673. stomach: {
  48674. height: math.unit(1.95, "feet"),
  48675. name: "Stomach",
  48676. image: {
  48677. source: "./media/characters/bandel/stomach.svg"
  48678. }
  48679. },
  48680. },
  48681. [
  48682. {
  48683. name: "Normal",
  48684. height: math.unit(7 + 4/12, "feet"),
  48685. default: true
  48686. },
  48687. ]
  48688. ))
  48689. characterMakers.push(() => makeCharacter(
  48690. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48691. {
  48692. front: {
  48693. height: math.unit(10 + 5/12, "feet"),
  48694. weight: math.unit(773.5, "kg"),
  48695. name: "Front",
  48696. image: {
  48697. source: "./media/characters/zed/front.svg",
  48698. extra: 987/941,
  48699. bottom: 52/1039
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Short",
  48706. height: math.unit(5 + 4/12, "feet")
  48707. },
  48708. {
  48709. name: "Average",
  48710. height: math.unit(10 + 5/12, "feet"),
  48711. default: true
  48712. },
  48713. {
  48714. name: "Mini-Macro",
  48715. height: math.unit(24 + 9/12, "feet")
  48716. },
  48717. {
  48718. name: "Macro",
  48719. height: math.unit(249, "feet")
  48720. },
  48721. {
  48722. name: "Mega-Macro",
  48723. height: math.unit(12490, "feet")
  48724. },
  48725. {
  48726. name: "Giga-Macro",
  48727. height: math.unit(24.9, "miles")
  48728. },
  48729. {
  48730. name: "Tera-Macro",
  48731. height: math.unit(24900, "miles")
  48732. },
  48733. {
  48734. name: "Cosmic Scale",
  48735. height: math.unit(38.9, "lightyears")
  48736. },
  48737. {
  48738. name: "Universal Scale",
  48739. height: math.unit(138e12, "lightyears")
  48740. },
  48741. ]
  48742. ))
  48743. characterMakers.push(() => makeCharacter(
  48744. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48745. {
  48746. front: {
  48747. height: math.unit(1561, "inches"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/ivan/front.svg",
  48751. extra: 1126/1071,
  48752. bottom: 26/1152
  48753. }
  48754. },
  48755. back: {
  48756. height: math.unit(1561, "inches"),
  48757. name: "Back",
  48758. image: {
  48759. source: "./media/characters/ivan/back.svg",
  48760. extra: 1134/1079,
  48761. bottom: 30/1164
  48762. }
  48763. },
  48764. },
  48765. [
  48766. {
  48767. name: "Normal",
  48768. height: math.unit(1561, "inches"),
  48769. default: true
  48770. },
  48771. ]
  48772. ))
  48773. characterMakers.push(() => makeCharacter(
  48774. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48775. {
  48776. front: {
  48777. height: math.unit(5 + 7/12, "feet"),
  48778. weight: math.unit(150, "lb"),
  48779. name: "Front",
  48780. image: {
  48781. source: "./media/characters/robin-arctic-hare/front.svg",
  48782. extra: 1148/974,
  48783. bottom: 20/1168
  48784. }
  48785. },
  48786. },
  48787. [
  48788. {
  48789. name: "Normal",
  48790. height: math.unit(5 + 7/12, "feet"),
  48791. default: true
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48797. {
  48798. side: {
  48799. height: math.unit(5, "feet"),
  48800. name: "Side",
  48801. image: {
  48802. source: "./media/characters/birch/side.svg",
  48803. extra: 985/796,
  48804. bottom: 111/1096
  48805. }
  48806. },
  48807. },
  48808. [
  48809. {
  48810. name: "Normal",
  48811. height: math.unit(5, "feet"),
  48812. default: true
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48818. {
  48819. front: {
  48820. height: math.unit(4, "feet"),
  48821. name: "Front",
  48822. image: {
  48823. source: "./media/characters/rasp/front.svg",
  48824. extra: 561/478,
  48825. bottom: 74/635
  48826. }
  48827. },
  48828. },
  48829. [
  48830. {
  48831. name: "Normal",
  48832. height: math.unit(4, "feet"),
  48833. default: true
  48834. },
  48835. ]
  48836. ))
  48837. characterMakers.push(() => makeCharacter(
  48838. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48839. {
  48840. front: {
  48841. height: math.unit(4 + 6/12, "feet"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/agatha/front.svg",
  48845. extra: 947/933,
  48846. bottom: 42/989
  48847. }
  48848. },
  48849. back: {
  48850. height: math.unit(4 + 6/12, "feet"),
  48851. name: "Back",
  48852. image: {
  48853. source: "./media/characters/agatha/back.svg",
  48854. extra: 935/922,
  48855. bottom: 48/983
  48856. }
  48857. },
  48858. },
  48859. [
  48860. {
  48861. name: "Normal",
  48862. height: math.unit(4 + 6 /12, "feet"),
  48863. default: true
  48864. },
  48865. {
  48866. name: "Max Size",
  48867. height: math.unit(500, "feet")
  48868. },
  48869. ]
  48870. ))
  48871. characterMakers.push(() => makeCharacter(
  48872. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48873. {
  48874. side: {
  48875. height: math.unit(30, "feet"),
  48876. name: "Side",
  48877. image: {
  48878. source: "./media/characters/roggy/side.svg",
  48879. extra: 909/643,
  48880. bottom: 63/972
  48881. }
  48882. },
  48883. lounging: {
  48884. height: math.unit(20, "feet"),
  48885. name: "Lounging",
  48886. image: {
  48887. source: "./media/characters/roggy/lounging.svg",
  48888. extra: 643/479,
  48889. bottom: 145/788
  48890. }
  48891. },
  48892. handpaw: {
  48893. height: math.unit(13.1, "feet"),
  48894. name: "Handpaw",
  48895. image: {
  48896. source: "./media/characters/roggy/handpaw.svg"
  48897. }
  48898. },
  48899. footpaw: {
  48900. height: math.unit(15.8, "feet"),
  48901. name: "Footpaw",
  48902. image: {
  48903. source: "./media/characters/roggy/footpaw.svg"
  48904. }
  48905. },
  48906. },
  48907. [
  48908. {
  48909. name: "Menacing",
  48910. height: math.unit(30, "feet"),
  48911. default: true
  48912. },
  48913. ]
  48914. ))
  48915. characterMakers.push(() => makeCharacter(
  48916. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48917. {
  48918. front: {
  48919. height: math.unit(5 + 7/12, "feet"),
  48920. weight: math.unit(135, "lb"),
  48921. name: "Front",
  48922. image: {
  48923. source: "./media/characters/naomi/front.svg",
  48924. extra: 1209/1154,
  48925. bottom: 129/1338
  48926. }
  48927. },
  48928. back: {
  48929. height: math.unit(5 + 7/12, "feet"),
  48930. weight: math.unit(135, "lb"),
  48931. name: "Back",
  48932. image: {
  48933. source: "./media/characters/naomi/back.svg",
  48934. extra: 1252/1190,
  48935. bottom: 23/1275
  48936. }
  48937. },
  48938. },
  48939. [
  48940. {
  48941. name: "Normal",
  48942. height: math.unit(5 + 7 /12, "feet"),
  48943. default: true
  48944. },
  48945. ]
  48946. ))
  48947. characterMakers.push(() => makeCharacter(
  48948. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48949. {
  48950. side: {
  48951. height: math.unit(35, "meters"),
  48952. name: "Side",
  48953. image: {
  48954. source: "./media/characters/kimpi/side.svg",
  48955. extra: 419/382,
  48956. bottom: 63/482
  48957. }
  48958. },
  48959. hand: {
  48960. height: math.unit(8.96, "meters"),
  48961. name: "Hand",
  48962. image: {
  48963. source: "./media/characters/kimpi/hand.svg"
  48964. }
  48965. },
  48966. },
  48967. [
  48968. {
  48969. name: "Normal",
  48970. height: math.unit(35, "meters"),
  48971. default: true
  48972. },
  48973. ]
  48974. ))
  48975. characterMakers.push(() => makeCharacter(
  48976. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48977. {
  48978. front: {
  48979. height: math.unit(4 + 4/12, "feet"),
  48980. name: "Front",
  48981. image: {
  48982. source: "./media/characters/pepper-purrloin/front.svg",
  48983. extra: 1141/1024,
  48984. bottom: 21/1162
  48985. }
  48986. },
  48987. },
  48988. [
  48989. {
  48990. name: "Normal",
  48991. height: math.unit(4 + 4/12, "feet"),
  48992. default: true
  48993. },
  48994. ]
  48995. ))
  48996. characterMakers.push(() => makeCharacter(
  48997. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48998. {
  48999. front: {
  49000. height: math.unit(6 + 2/12, "feet"),
  49001. name: "Front",
  49002. image: {
  49003. source: "./media/characters/raphael/front.svg",
  49004. extra: 1101/962,
  49005. bottom: 59/1160
  49006. }
  49007. },
  49008. },
  49009. [
  49010. {
  49011. name: "Normal",
  49012. height: math.unit(6 + 2/12, "feet"),
  49013. default: true
  49014. },
  49015. ]
  49016. ))
  49017. characterMakers.push(() => makeCharacter(
  49018. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49019. {
  49020. front: {
  49021. height: math.unit(6, "feet"),
  49022. weight: math.unit(150, "lb"),
  49023. name: "Front",
  49024. image: {
  49025. source: "./media/characters/victor-williams/front.svg",
  49026. extra: 1894/1825,
  49027. bottom: 67/1961
  49028. }
  49029. },
  49030. },
  49031. [
  49032. {
  49033. name: "Normal",
  49034. height: math.unit(6, "feet"),
  49035. default: true
  49036. },
  49037. ]
  49038. ))
  49039. characterMakers.push(() => makeCharacter(
  49040. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49041. {
  49042. front: {
  49043. height: math.unit(5 + 8/12, "feet"),
  49044. weight: math.unit(150, "lb"),
  49045. name: "Front",
  49046. image: {
  49047. source: "./media/characters/rachel/front.svg",
  49048. extra: 1902/1787,
  49049. bottom: 46/1948
  49050. }
  49051. },
  49052. },
  49053. [
  49054. {
  49055. name: "Base Height",
  49056. height: math.unit(5 + 8/12, "feet"),
  49057. default: true
  49058. },
  49059. {
  49060. name: "Macro",
  49061. height: math.unit(200, "feet")
  49062. },
  49063. {
  49064. name: "Mega Macro",
  49065. height: math.unit(1, "mile")
  49066. },
  49067. {
  49068. name: "Giga Macro",
  49069. height: math.unit(1500, "miles")
  49070. },
  49071. {
  49072. name: "Tera Macro",
  49073. height: math.unit(8000, "miles")
  49074. },
  49075. {
  49076. name: "Tera Macro+",
  49077. height: math.unit(2e5, "miles")
  49078. },
  49079. ]
  49080. ))
  49081. characterMakers.push(() => makeCharacter(
  49082. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49083. {
  49084. front: {
  49085. height: math.unit(6.5, "feet"),
  49086. name: "Front",
  49087. image: {
  49088. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49089. extra: 860/819,
  49090. bottom: 307/1167
  49091. }
  49092. },
  49093. back: {
  49094. height: math.unit(6.5, "feet"),
  49095. name: "Back",
  49096. image: {
  49097. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49098. extra: 880/837,
  49099. bottom: 395/1275
  49100. }
  49101. },
  49102. sleeping: {
  49103. height: math.unit(2.79, "feet"),
  49104. name: "Sleeping",
  49105. image: {
  49106. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49107. extra: 465/383,
  49108. bottom: 263/728
  49109. }
  49110. },
  49111. maw: {
  49112. height: math.unit(2.52, "feet"),
  49113. name: "Maw",
  49114. image: {
  49115. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49116. }
  49117. },
  49118. },
  49119. [
  49120. {
  49121. name: "Normal",
  49122. height: math.unit(6.5, "feet"),
  49123. default: true
  49124. },
  49125. ]
  49126. ))
  49127. characterMakers.push(() => makeCharacter(
  49128. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49129. {
  49130. front: {
  49131. height: math.unit(5, "feet"),
  49132. name: "Front",
  49133. image: {
  49134. source: "./media/characters/nova-nerium/front.svg",
  49135. extra: 1548/1392,
  49136. bottom: 374/1922
  49137. }
  49138. },
  49139. back: {
  49140. height: math.unit(5, "feet"),
  49141. name: "Back",
  49142. image: {
  49143. source: "./media/characters/nova-nerium/back.svg",
  49144. extra: 1658/1468,
  49145. bottom: 257/1915
  49146. }
  49147. },
  49148. },
  49149. [
  49150. {
  49151. name: "Normal",
  49152. height: math.unit(5, "feet"),
  49153. default: true
  49154. },
  49155. ]
  49156. ))
  49157. characterMakers.push(() => makeCharacter(
  49158. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49159. {
  49160. front: {
  49161. height: math.unit(5 + 4/12, "feet"),
  49162. name: "Front",
  49163. image: {
  49164. source: "./media/characters/ashe-pyriph/front.svg",
  49165. extra: 1935/1747,
  49166. bottom: 60/1995
  49167. }
  49168. },
  49169. },
  49170. [
  49171. {
  49172. name: "Normal",
  49173. height: math.unit(5 + 4/12, "feet"),
  49174. default: true
  49175. },
  49176. ]
  49177. ))
  49178. characterMakers.push(() => makeCharacter(
  49179. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49180. {
  49181. front: {
  49182. height: math.unit(8.7, "feet"),
  49183. name: "Front",
  49184. image: {
  49185. source: "./media/characters/flicker-wisp/front.svg",
  49186. extra: 1835/1613,
  49187. bottom: 449/2284
  49188. }
  49189. },
  49190. side: {
  49191. height: math.unit(8.7, "feet"),
  49192. name: "Side",
  49193. image: {
  49194. source: "./media/characters/flicker-wisp/side.svg",
  49195. extra: 1841/1642,
  49196. bottom: 336/2177
  49197. },
  49198. default: true
  49199. },
  49200. maw: {
  49201. height: math.unit(3.35, "feet"),
  49202. name: "Maw",
  49203. image: {
  49204. source: "./media/characters/flicker-wisp/maw.svg",
  49205. extra: 2338/1506,
  49206. bottom: 0/2338
  49207. }
  49208. },
  49209. ovipositor: {
  49210. height: math.unit(4.95, "feet"),
  49211. name: "Ovipositor",
  49212. image: {
  49213. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49214. }
  49215. },
  49216. egg: {
  49217. height: math.unit(0.385, "feet"),
  49218. weight: math.unit(2, "lb"),
  49219. name: "Egg",
  49220. image: {
  49221. source: "./media/characters/flicker-wisp/egg.svg"
  49222. }
  49223. },
  49224. },
  49225. [
  49226. {
  49227. name: "Normal",
  49228. height: math.unit(8.7, "feet"),
  49229. default: true
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49235. {
  49236. side: {
  49237. height: math.unit(11, "feet"),
  49238. name: "Side",
  49239. image: {
  49240. source: "./media/characters/faefnul/side.svg",
  49241. extra: 1100/1007,
  49242. bottom: 0/1100
  49243. }
  49244. },
  49245. },
  49246. [
  49247. {
  49248. name: "Normal",
  49249. height: math.unit(11, "feet"),
  49250. default: true
  49251. },
  49252. ]
  49253. ))
  49254. characterMakers.push(() => makeCharacter(
  49255. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49256. {
  49257. front: {
  49258. height: math.unit(6 + 2/12, "feet"),
  49259. name: "Front",
  49260. image: {
  49261. source: "./media/characters/shady/front.svg",
  49262. extra: 502/461,
  49263. bottom: 9/511
  49264. }
  49265. },
  49266. kneeling: {
  49267. height: math.unit(4.6, "feet"),
  49268. name: "Kneeling",
  49269. image: {
  49270. source: "./media/characters/shady/kneeling.svg",
  49271. extra: 1328/1219,
  49272. bottom: 117/1445
  49273. }
  49274. },
  49275. maw: {
  49276. height: math.unit(2, "feet"),
  49277. name: "Maw",
  49278. image: {
  49279. source: "./media/characters/shady/maw.svg"
  49280. }
  49281. },
  49282. },
  49283. [
  49284. {
  49285. name: "Nano",
  49286. height: math.unit(1, "mm")
  49287. },
  49288. {
  49289. name: "Micro",
  49290. height: math.unit(12, "mm")
  49291. },
  49292. {
  49293. name: "Tiny",
  49294. height: math.unit(3, "inches")
  49295. },
  49296. {
  49297. name: "Normal",
  49298. height: math.unit(6 + 2/12, "feet"),
  49299. default: true
  49300. },
  49301. {
  49302. name: "Big",
  49303. height: math.unit(15, "feet")
  49304. },
  49305. {
  49306. name: "Macro",
  49307. height: math.unit(150, "feet")
  49308. },
  49309. {
  49310. name: "Titanic",
  49311. height: math.unit(500, "feet")
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(12, "feet"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/fenrir/front.svg",
  49323. extra: 968/875,
  49324. bottom: 22/990
  49325. }
  49326. },
  49327. },
  49328. [
  49329. {
  49330. name: "Big",
  49331. height: math.unit(12, "feet"),
  49332. default: true
  49333. },
  49334. ]
  49335. ))
  49336. characterMakers.push(() => makeCharacter(
  49337. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49338. {
  49339. front: {
  49340. height: math.unit(5 + 4/12, "feet"),
  49341. name: "Front",
  49342. image: {
  49343. source: "./media/characters/makar/front.svg",
  49344. extra: 1181/1112,
  49345. bottom: 78/1259
  49346. }
  49347. },
  49348. },
  49349. [
  49350. {
  49351. name: "Normal",
  49352. height: math.unit(5 + 4/12, "feet"),
  49353. default: true
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49359. {
  49360. front: {
  49361. height: math.unit(5 + 7/12, "feet"),
  49362. name: "Front",
  49363. image: {
  49364. source: "./media/characters/callow/front.svg",
  49365. extra: 1482/1304,
  49366. bottom: 23/1505
  49367. }
  49368. },
  49369. back: {
  49370. height: math.unit(5 + 7/12, "feet"),
  49371. name: "Back",
  49372. image: {
  49373. source: "./media/characters/callow/back.svg",
  49374. extra: 1484/1296,
  49375. bottom: 25/1509
  49376. }
  49377. },
  49378. },
  49379. [
  49380. {
  49381. name: "Micro",
  49382. height: math.unit(3, "inches"),
  49383. default: true
  49384. },
  49385. {
  49386. name: "Normal",
  49387. height: math.unit(5 + 7/12, "feet")
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49393. {
  49394. front: {
  49395. height: math.unit(6 + 2/12, "feet"),
  49396. name: "Front",
  49397. image: {
  49398. source: "./media/characters/natel/front.svg",
  49399. extra: 1833/1692,
  49400. bottom: 166/1999
  49401. }
  49402. },
  49403. },
  49404. [
  49405. {
  49406. name: "Normal",
  49407. height: math.unit(6 + 2/12, "feet"),
  49408. default: true
  49409. },
  49410. ]
  49411. ))
  49412. characterMakers.push(() => makeCharacter(
  49413. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49414. {
  49415. front: {
  49416. height: math.unit(1.75, "meters"),
  49417. name: "Front",
  49418. image: {
  49419. source: "./media/characters/misu/front.svg",
  49420. extra: 1690/1558,
  49421. bottom: 234/1924
  49422. }
  49423. },
  49424. back: {
  49425. height: math.unit(1.75, "meters"),
  49426. name: "Back",
  49427. image: {
  49428. source: "./media/characters/misu/back.svg",
  49429. extra: 1762/1618,
  49430. bottom: 146/1908
  49431. }
  49432. },
  49433. frontNude: {
  49434. height: math.unit(1.75, "meters"),
  49435. name: "Front (Nude)",
  49436. image: {
  49437. source: "./media/characters/misu/front-nude.svg",
  49438. extra: 1690/1558,
  49439. bottom: 234/1924
  49440. }
  49441. },
  49442. backNude: {
  49443. height: math.unit(1.75, "meters"),
  49444. name: "Back (Nude)",
  49445. image: {
  49446. source: "./media/characters/misu/back-nude.svg",
  49447. extra: 1762/1618,
  49448. bottom: 146/1908
  49449. }
  49450. },
  49451. frontErect: {
  49452. height: math.unit(1.75, "meters"),
  49453. name: "Front (Erect)",
  49454. image: {
  49455. source: "./media/characters/misu/front-erect.svg",
  49456. extra: 1690/1558,
  49457. bottom: 234/1924
  49458. }
  49459. },
  49460. maw: {
  49461. height: math.unit(0.47, "meters"),
  49462. name: "Maw",
  49463. image: {
  49464. source: "./media/characters/misu/maw.svg"
  49465. }
  49466. },
  49467. head: {
  49468. height: math.unit(0.35, "meters"),
  49469. name: "Head",
  49470. image: {
  49471. source: "./media/characters/misu/head.svg"
  49472. }
  49473. },
  49474. rear: {
  49475. height: math.unit(0.47, "meters"),
  49476. name: "Rear",
  49477. image: {
  49478. source: "./media/characters/misu/rear.svg"
  49479. }
  49480. },
  49481. },
  49482. [
  49483. {
  49484. name: "Normal",
  49485. height: math.unit(1.75, "meters")
  49486. },
  49487. {
  49488. name: "Not good for the people",
  49489. height: math.unit(42, "meters")
  49490. },
  49491. {
  49492. name: "Not good for the neighborhood",
  49493. height: math.unit(135, "meters")
  49494. },
  49495. {
  49496. name: "Bit bigger problem",
  49497. height: math.unit(380, "meters"),
  49498. default: true
  49499. },
  49500. {
  49501. name: "Not good for the city",
  49502. height: math.unit(1.5, "km")
  49503. },
  49504. {
  49505. name: "Not good for the county",
  49506. height: math.unit(5.5, "km")
  49507. },
  49508. {
  49509. name: "Not good for the state",
  49510. height: math.unit(25, "km")
  49511. },
  49512. {
  49513. name: "Not good for the country",
  49514. height: math.unit(125, "km")
  49515. },
  49516. {
  49517. name: "Not good for the continent",
  49518. height: math.unit(2100, "km")
  49519. },
  49520. {
  49521. name: "Not good for the planet",
  49522. height: math.unit(35000, "km")
  49523. },
  49524. {
  49525. name: "Just no",
  49526. height: math.unit(8.5e18, "km")
  49527. },
  49528. ]
  49529. ))
  49530. characterMakers.push(() => makeCharacter(
  49531. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49532. {
  49533. front: {
  49534. height: math.unit(6.5, "feet"),
  49535. name: "Front",
  49536. image: {
  49537. source: "./media/characters/poppy/front.svg",
  49538. extra: 1878/1812,
  49539. bottom: 43/1921
  49540. }
  49541. },
  49542. feet: {
  49543. height: math.unit(1.06, "feet"),
  49544. name: "Feet",
  49545. image: {
  49546. source: "./media/characters/poppy/feet.svg",
  49547. extra: 1083/1083,
  49548. bottom: 87/1170
  49549. }
  49550. },
  49551. },
  49552. [
  49553. {
  49554. name: "Human",
  49555. height: math.unit(6.5, "feet")
  49556. },
  49557. {
  49558. name: "Default",
  49559. height: math.unit(300, "feet"),
  49560. default: true
  49561. },
  49562. {
  49563. name: "Huge",
  49564. height: math.unit(850, "feet")
  49565. },
  49566. {
  49567. name: "Mega",
  49568. height: math.unit(8000, "feet")
  49569. },
  49570. {
  49571. name: "Giga",
  49572. height: math.unit(300, "miles")
  49573. },
  49574. ]
  49575. ))
  49576. characterMakers.push(() => makeCharacter(
  49577. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49578. {
  49579. bipedal: {
  49580. height: math.unit(7, "feet"),
  49581. name: "Bipedal",
  49582. image: {
  49583. source: "./media/characters/zener/bipedal.svg",
  49584. extra: 874/805,
  49585. bottom: 109/983
  49586. }
  49587. },
  49588. quadrupedal: {
  49589. height: math.unit(4.64, "feet"),
  49590. name: "Quadrupedal",
  49591. image: {
  49592. source: "./media/characters/zener/quadrupedal.svg",
  49593. extra: 638/507,
  49594. bottom: 190/828
  49595. }
  49596. },
  49597. cock: {
  49598. height: math.unit(18, "inches"),
  49599. name: "Cock",
  49600. image: {
  49601. source: "./media/characters/zener/cock.svg"
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(7, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49615. {
  49616. nude: {
  49617. height: math.unit(5 + 6/12, "feet"),
  49618. name: "Nude",
  49619. image: {
  49620. source: "./media/characters/charlie-dog/nude.svg",
  49621. extra: 768/734,
  49622. bottom: 26/794
  49623. }
  49624. },
  49625. dressed: {
  49626. height: math.unit(5 + 6/12, "feet"),
  49627. name: "Dressed",
  49628. image: {
  49629. source: "./media/characters/charlie-dog/dressed.svg",
  49630. extra: 768/734,
  49631. bottom: 26/794
  49632. }
  49633. },
  49634. },
  49635. [
  49636. {
  49637. name: "Normal",
  49638. height: math.unit(5 + 6/12, "feet"),
  49639. default: true
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(6 + 4/12, "feet"),
  49648. name: "Front",
  49649. image: {
  49650. source: "./media/characters/ir'istrasz/front.svg",
  49651. extra: 1014/977,
  49652. bottom: 65/1079
  49653. }
  49654. },
  49655. back: {
  49656. height: math.unit(6 + 4/12, "feet"),
  49657. name: "Back",
  49658. image: {
  49659. source: "./media/characters/ir'istrasz/back.svg",
  49660. extra: 1024/992,
  49661. bottom: 34/1058
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(6 + 4/12, "feet"),
  49669. default: true
  49670. },
  49671. ]
  49672. ))
  49673. characterMakers.push(() => makeCharacter(
  49674. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49675. {
  49676. front: {
  49677. height: math.unit(5 + 8/12, "feet"),
  49678. name: "Front",
  49679. image: {
  49680. source: "./media/characters/dee-ditto/front.svg",
  49681. extra: 1874/1785,
  49682. bottom: 68/1942
  49683. }
  49684. },
  49685. back: {
  49686. height: math.unit(5 + 8/12, "feet"),
  49687. name: "Back",
  49688. image: {
  49689. source: "./media/characters/dee-ditto/back.svg",
  49690. extra: 1870/1783,
  49691. bottom: 77/1947
  49692. }
  49693. },
  49694. },
  49695. [
  49696. {
  49697. name: "Normal",
  49698. height: math.unit(5 + 8/12, "feet"),
  49699. default: true
  49700. },
  49701. ]
  49702. ))
  49703. characterMakers.push(() => makeCharacter(
  49704. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49705. {
  49706. front: {
  49707. height: math.unit(7 + 6/12, "feet"),
  49708. name: "Front",
  49709. image: {
  49710. source: "./media/characters/fey/front.svg",
  49711. extra: 995/979,
  49712. bottom: 30/1025
  49713. }
  49714. },
  49715. back: {
  49716. height: math.unit(7 + 6/12, "feet"),
  49717. name: "Back",
  49718. image: {
  49719. source: "./media/characters/fey/back.svg",
  49720. extra: 1079/1008,
  49721. bottom: 5/1084
  49722. }
  49723. },
  49724. dressed: {
  49725. height: math.unit(7 + 6/12, "feet"),
  49726. name: "Dressed",
  49727. image: {
  49728. source: "./media/characters/fey/dressed.svg",
  49729. extra: 995/979,
  49730. bottom: 30/1025
  49731. }
  49732. },
  49733. },
  49734. [
  49735. {
  49736. name: "Normal",
  49737. height: math.unit(7 + 6/12, "feet"),
  49738. default: true
  49739. },
  49740. ]
  49741. ))
  49742. characterMakers.push(() => makeCharacter(
  49743. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49744. {
  49745. standing: {
  49746. height: math.unit(17, "feet"),
  49747. name: "Standing",
  49748. image: {
  49749. source: "./media/characters/aster/standing.svg",
  49750. extra: 1798/1598,
  49751. bottom: 117/1915
  49752. }
  49753. },
  49754. },
  49755. [
  49756. {
  49757. name: "Normal",
  49758. height: math.unit(17, "feet"),
  49759. default: true
  49760. },
  49761. {
  49762. name: "Homewrecker",
  49763. height: math.unit(95, "feet")
  49764. },
  49765. {
  49766. name: "Planet Devourer",
  49767. height: math.unit(1008000, "miles")
  49768. },
  49769. ]
  49770. ))
  49771. characterMakers.push(() => makeCharacter(
  49772. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49773. {
  49774. front: {
  49775. height: math.unit(6 + 5/12, "feet"),
  49776. weight: math.unit(265, "lb"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/devon-childs/front.svg",
  49780. extra: 1795/1721,
  49781. bottom: 41/1836
  49782. }
  49783. },
  49784. side: {
  49785. height: math.unit(6 + 5/12, "feet"),
  49786. weight: math.unit(265, "lb"),
  49787. name: "Side",
  49788. image: {
  49789. source: "./media/characters/devon-childs/side.svg",
  49790. extra: 1812/1738,
  49791. bottom: 30/1842
  49792. }
  49793. },
  49794. back: {
  49795. height: math.unit(6 + 5/12, "feet"),
  49796. weight: math.unit(265, "lb"),
  49797. name: "Back",
  49798. image: {
  49799. source: "./media/characters/devon-childs/back.svg",
  49800. extra: 1808/1735,
  49801. bottom: 23/1831
  49802. }
  49803. },
  49804. hand: {
  49805. height: math.unit(1.464, "feet"),
  49806. name: "Hand",
  49807. image: {
  49808. source: "./media/characters/devon-childs/hand.svg"
  49809. }
  49810. },
  49811. foot: {
  49812. height: math.unit(1.6, "feet"),
  49813. name: "Foot",
  49814. image: {
  49815. source: "./media/characters/devon-childs/foot.svg"
  49816. }
  49817. },
  49818. },
  49819. [
  49820. {
  49821. name: "Micro",
  49822. height: math.unit(7, "cm")
  49823. },
  49824. {
  49825. name: "Normal",
  49826. height: math.unit(6 + 5/12, "feet"),
  49827. default: true
  49828. },
  49829. {
  49830. name: "Macro",
  49831. height: math.unit(154, "feet")
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49837. {
  49838. front: {
  49839. height: math.unit(6, "feet"),
  49840. weight: math.unit(180, "lb"),
  49841. name: "Front",
  49842. image: {
  49843. source: "./media/characters/lydemox-vir/front.svg",
  49844. extra: 1632/1435,
  49845. bottom: 58/1690
  49846. }
  49847. },
  49848. frontSFW: {
  49849. height: math.unit(6, "feet"),
  49850. weight: math.unit(180, "lb"),
  49851. name: "Front (SFW)",
  49852. image: {
  49853. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49854. extra: 1632/1435,
  49855. bottom: 58/1690
  49856. }
  49857. },
  49858. back: {
  49859. height: math.unit(6, "feet"),
  49860. weight: math.unit(180, "lb"),
  49861. name: "Back",
  49862. image: {
  49863. source: "./media/characters/lydemox-vir/back.svg",
  49864. extra: 1593/1408,
  49865. bottom: 31/1624
  49866. }
  49867. },
  49868. paw: {
  49869. height: math.unit(1.85, "feet"),
  49870. name: "Paw",
  49871. image: {
  49872. source: "./media/characters/lydemox-vir/paw.svg"
  49873. }
  49874. },
  49875. dick: {
  49876. height: math.unit(1.8, "feet"),
  49877. name: "Dick",
  49878. image: {
  49879. source: "./media/characters/lydemox-vir/dick.svg"
  49880. }
  49881. },
  49882. },
  49883. [
  49884. {
  49885. name: "Macro",
  49886. height: math.unit(100, "feet"),
  49887. default: true
  49888. },
  49889. {
  49890. name: "Teramacro",
  49891. height: math.unit(1, "earth")
  49892. },
  49893. {
  49894. name: "Planetary",
  49895. height: math.unit(20, "earths")
  49896. },
  49897. ]
  49898. ))
  49899. characterMakers.push(() => makeCharacter(
  49900. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49901. {
  49902. front: {
  49903. height: math.unit(15 + 8/12, "feet"),
  49904. weight: math.unit(1237, "kg"),
  49905. name: "Front",
  49906. image: {
  49907. source: "./media/characters/mia/front.svg",
  49908. extra: 1573/1446,
  49909. bottom: 58/1631
  49910. }
  49911. },
  49912. },
  49913. [
  49914. {
  49915. name: "Small",
  49916. height: math.unit(9 + 5/12, "feet")
  49917. },
  49918. {
  49919. name: "Normal",
  49920. height: math.unit(15 + 8/12, "feet"),
  49921. default: true
  49922. },
  49923. ]
  49924. ))
  49925. characterMakers.push(() => makeCharacter(
  49926. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49927. {
  49928. front: {
  49929. height: math.unit(10 + 6/12, "feet"),
  49930. weight: math.unit(1.3, "tons"),
  49931. name: "Front",
  49932. image: {
  49933. source: "./media/characters/mr-graves/front.svg",
  49934. extra: 1779/1695,
  49935. bottom: 198/1977
  49936. }
  49937. },
  49938. },
  49939. [
  49940. {
  49941. name: "Normal",
  49942. height: math.unit(10 + 6 /12, "feet"),
  49943. default: true
  49944. },
  49945. ]
  49946. ))
  49947. characterMakers.push(() => makeCharacter(
  49948. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49949. {
  49950. dressedFront: {
  49951. height: math.unit(5 + 8/12, "feet"),
  49952. weight: math.unit(125, "lb"),
  49953. name: "Dressed (Front)",
  49954. image: {
  49955. source: "./media/characters/jess/dressed-front.svg",
  49956. extra: 1176/1152,
  49957. bottom: 42/1218
  49958. }
  49959. },
  49960. dressedSide: {
  49961. height: math.unit(5 + 8/12, "feet"),
  49962. weight: math.unit(125, "lb"),
  49963. name: "Dressed (Side)",
  49964. image: {
  49965. source: "./media/characters/jess/dressed-side.svg",
  49966. extra: 1204/1190,
  49967. bottom: 6/1210
  49968. }
  49969. },
  49970. nudeFront: {
  49971. height: math.unit(5 + 8/12, "feet"),
  49972. weight: math.unit(125, "lb"),
  49973. name: "Nude (Front)",
  49974. image: {
  49975. source: "./media/characters/jess/nude-front.svg",
  49976. extra: 1176/1152,
  49977. bottom: 42/1218
  49978. }
  49979. },
  49980. nudeSide: {
  49981. height: math.unit(5 + 8/12, "feet"),
  49982. weight: math.unit(125, "lb"),
  49983. name: "Nude (Side)",
  49984. image: {
  49985. source: "./media/characters/jess/nude-side.svg",
  49986. extra: 1204/1190,
  49987. bottom: 6/1210
  49988. }
  49989. },
  49990. organsFront: {
  49991. height: math.unit(2.83799342105, "feet"),
  49992. name: "Organs (Front)",
  49993. image: {
  49994. source: "./media/characters/jess/organs-front.svg"
  49995. }
  49996. },
  49997. organsSide: {
  49998. height: math.unit(2.64225290474, "feet"),
  49999. name: "Organs (Side)",
  50000. image: {
  50001. source: "./media/characters/jess/organs-side.svg"
  50002. }
  50003. },
  50004. digestiveTractFront: {
  50005. height: math.unit(2.8106580871, "feet"),
  50006. name: "Digestive Tract (Front)",
  50007. image: {
  50008. source: "./media/characters/jess/digestive-tract-front.svg"
  50009. }
  50010. },
  50011. digestiveTractSide: {
  50012. height: math.unit(2.54365045014, "feet"),
  50013. name: "Digestive Tract (Side)",
  50014. image: {
  50015. source: "./media/characters/jess/digestive-tract-side.svg"
  50016. }
  50017. },
  50018. respiratorySystemFront: {
  50019. height: math.unit(1.11196233456, "feet"),
  50020. name: "Respiratory System (Front)",
  50021. image: {
  50022. source: "./media/characters/jess/respiratory-system-front.svg"
  50023. }
  50024. },
  50025. respiratorySystemSide: {
  50026. height: math.unit(0.89327966297, "feet"),
  50027. name: "Respiratory System (Side)",
  50028. image: {
  50029. source: "./media/characters/jess/respiratory-system-side.svg"
  50030. }
  50031. },
  50032. urinaryTractFront: {
  50033. height: math.unit(1.16126356186, "feet"),
  50034. name: "Urinary Tract (Front)",
  50035. image: {
  50036. source: "./media/characters/jess/urinary-tract-front.svg"
  50037. }
  50038. },
  50039. urinaryTractSide: {
  50040. height: math.unit(1.20910039627, "feet"),
  50041. name: "Urinary Tract (Side)",
  50042. image: {
  50043. source: "./media/characters/jess/urinary-tract-side.svg"
  50044. }
  50045. },
  50046. reproductiveOrgansFront: {
  50047. height: math.unit(0.48422591566, "feet"),
  50048. name: "Reproductive Organs (Front)",
  50049. image: {
  50050. source: "./media/characters/jess/reproductive-organs-front.svg"
  50051. }
  50052. },
  50053. reproductiveOrgansSide: {
  50054. height: math.unit(0.61553314481, "feet"),
  50055. name: "Reproductive Organs (Side)",
  50056. image: {
  50057. source: "./media/characters/jess/reproductive-organs-side.svg"
  50058. }
  50059. },
  50060. breastsFront: {
  50061. height: math.unit(0.47690395121, "feet"),
  50062. name: "Breasts (Front)",
  50063. image: {
  50064. source: "./media/characters/jess/breasts-front.svg"
  50065. }
  50066. },
  50067. breastsSide: {
  50068. height: math.unit(0.30556998307, "feet"),
  50069. name: "Breasts (Side)",
  50070. image: {
  50071. source: "./media/characters/jess/breasts-side.svg"
  50072. }
  50073. },
  50074. heartFront: {
  50075. height: math.unit(0.53011022622, "feet"),
  50076. name: "Heart (Front)",
  50077. image: {
  50078. source: "./media/characters/jess/heart-front.svg"
  50079. }
  50080. },
  50081. heartSide: {
  50082. height: math.unit(0.51790695213, "feet"),
  50083. name: "Heart (Side)",
  50084. image: {
  50085. source: "./media/characters/jess/heart-side.svg"
  50086. }
  50087. },
  50088. earsAndNoseFront: {
  50089. height: math.unit(0.29385483995, "feet"),
  50090. name: "Ears and Nose (Front)",
  50091. image: {
  50092. source: "./media/characters/jess/ears-and-nose-front.svg"
  50093. }
  50094. },
  50095. earsAndNoseSide: {
  50096. height: math.unit(0.18109658741, "feet"),
  50097. name: "Ears and Nose (Side)",
  50098. image: {
  50099. source: "./media/characters/jess/ears-and-nose-side.svg"
  50100. }
  50101. },
  50102. },
  50103. [
  50104. {
  50105. name: "Normal",
  50106. height: math.unit(5 + 8/12, "feet"),
  50107. default: true
  50108. },
  50109. ]
  50110. ))
  50111. characterMakers.push(() => makeCharacter(
  50112. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50113. {
  50114. front: {
  50115. height: math.unit(6, "feet"),
  50116. weight: math.unit(6.64467e-7, "grams"),
  50117. name: "Front",
  50118. image: {
  50119. source: "./media/characters/wimpering/front.svg",
  50120. extra: 597/587,
  50121. bottom: 34/631
  50122. }
  50123. },
  50124. },
  50125. [
  50126. {
  50127. name: "Micro",
  50128. height: math.unit(0.4, "mm"),
  50129. default: true
  50130. },
  50131. ]
  50132. ))
  50133. characterMakers.push(() => makeCharacter(
  50134. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50135. {
  50136. front: {
  50137. height: math.unit(5 + 2/12, "feet"),
  50138. weight: math.unit(110, "lb"),
  50139. name: "Front",
  50140. image: {
  50141. source: "./media/characters/keltre/front.svg",
  50142. extra: 1099/1057,
  50143. bottom: 22/1121
  50144. }
  50145. },
  50146. back: {
  50147. height: math.unit(5 + 2/12, "feet"),
  50148. weight: math.unit(110, "lb"),
  50149. name: "Back",
  50150. image: {
  50151. source: "./media/characters/keltre/back.svg",
  50152. extra: 1095/1053,
  50153. bottom: 17/1112
  50154. }
  50155. },
  50156. dressed: {
  50157. height: math.unit(5 + 2/12, "feet"),
  50158. weight: math.unit(110, "lb"),
  50159. name: "Dressed",
  50160. image: {
  50161. source: "./media/characters/keltre/dressed.svg",
  50162. extra: 1099/1057,
  50163. bottom: 22/1121
  50164. }
  50165. },
  50166. winter: {
  50167. height: math.unit(5 + 2/12, "feet"),
  50168. weight: math.unit(110, "lb"),
  50169. name: "Winter",
  50170. image: {
  50171. source: "./media/characters/keltre/winter.svg",
  50172. extra: 1099/1057,
  50173. bottom: 22/1121
  50174. }
  50175. },
  50176. head: {
  50177. height: math.unit(1.61 * 0.86, "feet"),
  50178. name: "Head",
  50179. image: {
  50180. source: "./media/characters/keltre/head.svg",
  50181. extra: 534/421,
  50182. bottom: 0/534
  50183. }
  50184. },
  50185. hand: {
  50186. height: math.unit(1.3 * 0.86, "feet"),
  50187. name: "Hand",
  50188. image: {
  50189. source: "./media/characters/keltre/hand.svg"
  50190. }
  50191. },
  50192. foot: {
  50193. height: math.unit(1.8 * 0.86, "feet"),
  50194. name: "Foot",
  50195. image: {
  50196. source: "./media/characters/keltre/foot.svg"
  50197. }
  50198. },
  50199. },
  50200. [
  50201. {
  50202. name: "Fine",
  50203. height: math.unit(1, "inch")
  50204. },
  50205. {
  50206. name: "Dimnutive",
  50207. height: math.unit(4, "inches")
  50208. },
  50209. {
  50210. name: "Tiny",
  50211. height: math.unit(1, "foot")
  50212. },
  50213. {
  50214. name: "Small",
  50215. height: math.unit(3, "feet")
  50216. },
  50217. {
  50218. name: "Normal",
  50219. height: math.unit(5 + 2/12, "feet"),
  50220. default: true
  50221. },
  50222. ]
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50226. {
  50227. front: {
  50228. height: math.unit(6 + 2/12, "feet"),
  50229. name: "Front",
  50230. image: {
  50231. source: "./media/characters/nox/front.svg",
  50232. extra: 1917/1830,
  50233. bottom: 74/1991
  50234. }
  50235. },
  50236. back: {
  50237. height: math.unit(6 + 2/12, "feet"),
  50238. name: "Back",
  50239. image: {
  50240. source: "./media/characters/nox/back.svg",
  50241. extra: 1896/1815,
  50242. bottom: 21/1917
  50243. }
  50244. },
  50245. head: {
  50246. height: math.unit(1.1, "feet"),
  50247. name: "Head",
  50248. image: {
  50249. source: "./media/characters/nox/head.svg",
  50250. extra: 874/704,
  50251. bottom: 0/874
  50252. }
  50253. },
  50254. tattoo: {
  50255. height: math.unit(0.729, "feet"),
  50256. name: "Tattoo",
  50257. image: {
  50258. source: "./media/characters/nox/tattoo.svg"
  50259. }
  50260. },
  50261. },
  50262. [
  50263. {
  50264. name: "Normal",
  50265. height: math.unit(6 + 2/12, "feet")
  50266. },
  50267. {
  50268. name: "Gigamacro",
  50269. height: math.unit(2, "earths"),
  50270. default: true
  50271. },
  50272. {
  50273. name: "Cosmic",
  50274. height: math.unit(867, "yottameters")
  50275. },
  50276. ]
  50277. ))
  50278. characterMakers.push(() => makeCharacter(
  50279. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50280. {
  50281. front: {
  50282. height: math.unit(6, "feet"),
  50283. weight: math.unit(150, "lb"),
  50284. name: "Front",
  50285. image: {
  50286. source: "./media/characters/caspian/front.svg",
  50287. extra: 1443/1359,
  50288. bottom: 0/1443
  50289. }
  50290. },
  50291. back: {
  50292. height: math.unit(6, "feet"),
  50293. weight: math.unit(150, "lb"),
  50294. name: "Back",
  50295. image: {
  50296. source: "./media/characters/caspian/back.svg",
  50297. extra: 1379/1309,
  50298. bottom: 0/1379
  50299. }
  50300. },
  50301. head: {
  50302. height: math.unit(0.9, "feet"),
  50303. name: "Head",
  50304. image: {
  50305. source: "./media/characters/caspian/head.svg",
  50306. extra: 692/492,
  50307. bottom: 0/692
  50308. }
  50309. },
  50310. headAlt: {
  50311. height: math.unit(0.95, "feet"),
  50312. name: "Head (Alt)",
  50313. image: {
  50314. source: "./media/characters/caspian/head-alt.svg",
  50315. extra: 668/508,
  50316. bottom: 0/668
  50317. }
  50318. },
  50319. hand: {
  50320. height: math.unit(0.8, "feet"),
  50321. name: "Hand",
  50322. image: {
  50323. source: "./media/characters/caspian/hand.svg"
  50324. }
  50325. },
  50326. paw: {
  50327. height: math.unit(0.95, "feet"),
  50328. name: "Paw",
  50329. image: {
  50330. source: "./media/characters/caspian/paw.svg"
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Normal",
  50337. height: math.unit(162, "feet"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50344. {
  50345. front: {
  50346. height: math.unit(6, "feet"),
  50347. name: "Front",
  50348. image: {
  50349. source: "./media/characters/myra-aisling/front.svg",
  50350. extra: 1268/1166,
  50351. bottom: 73/1341
  50352. }
  50353. },
  50354. back: {
  50355. height: math.unit(6, "feet"),
  50356. name: "Back",
  50357. image: {
  50358. source: "./media/characters/myra-aisling/back.svg",
  50359. extra: 1249/1149,
  50360. bottom: 79/1328
  50361. }
  50362. },
  50363. dressed: {
  50364. height: math.unit(6, "feet"),
  50365. name: "Dressed",
  50366. image: {
  50367. source: "./media/characters/myra-aisling/dressed.svg",
  50368. extra: 1290/1189,
  50369. bottom: 47/1337
  50370. }
  50371. },
  50372. hand: {
  50373. height: math.unit(1.1, "feet"),
  50374. name: "Hand",
  50375. image: {
  50376. source: "./media/characters/myra-aisling/hand.svg"
  50377. }
  50378. },
  50379. paw: {
  50380. height: math.unit(1.23, "feet"),
  50381. name: "Paw",
  50382. image: {
  50383. source: "./media/characters/myra-aisling/paw.svg"
  50384. }
  50385. },
  50386. },
  50387. [
  50388. {
  50389. name: "Normal",
  50390. height: math.unit(160, "feet"),
  50391. default: true
  50392. },
  50393. ]
  50394. ))
  50395. characterMakers.push(() => makeCharacter(
  50396. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50397. {
  50398. front: {
  50399. height: math.unit(6, "feet"),
  50400. name: "Front",
  50401. image: {
  50402. source: "./media/characters/tenley-sidero/front.svg",
  50403. extra: 1365/1276,
  50404. bottom: 47/1412
  50405. }
  50406. },
  50407. back: {
  50408. height: math.unit(6, "feet"),
  50409. name: "Back",
  50410. image: {
  50411. source: "./media/characters/tenley-sidero/back.svg",
  50412. extra: 1383/1283,
  50413. bottom: 35/1418
  50414. }
  50415. },
  50416. dressed: {
  50417. height: math.unit(6, "feet"),
  50418. name: "Dressed",
  50419. image: {
  50420. source: "./media/characters/tenley-sidero/dressed.svg",
  50421. extra: 1364/1275,
  50422. bottom: 42/1406
  50423. }
  50424. },
  50425. head: {
  50426. height: math.unit(1.47, "feet"),
  50427. name: "Head",
  50428. image: {
  50429. source: "./media/characters/tenley-sidero/head.svg",
  50430. extra: 610/490,
  50431. bottom: 0/610
  50432. }
  50433. },
  50434. },
  50435. [
  50436. {
  50437. name: "Normal",
  50438. height: math.unit(154, "feet"),
  50439. default: true
  50440. },
  50441. ]
  50442. ))
  50443. characterMakers.push(() => makeCharacter(
  50444. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50445. {
  50446. front: {
  50447. height: math.unit(5, "inches"),
  50448. name: "Front",
  50449. image: {
  50450. source: "./media/characters/mallory/front.svg",
  50451. extra: 1919/1678,
  50452. bottom: 29/1948
  50453. }
  50454. },
  50455. hand: {
  50456. height: math.unit(0.73, "inches"),
  50457. name: "Hand",
  50458. image: {
  50459. source: "./media/characters/mallory/hand.svg"
  50460. }
  50461. },
  50462. paw: {
  50463. height: math.unit(0.68, "inches"),
  50464. name: "Paw",
  50465. image: {
  50466. source: "./media/characters/mallory/paw.svg"
  50467. }
  50468. },
  50469. },
  50470. [
  50471. {
  50472. name: "Small",
  50473. height: math.unit(5, "inches"),
  50474. default: true
  50475. },
  50476. ]
  50477. ))
  50478. characterMakers.push(() => makeCharacter(
  50479. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50480. {
  50481. naked: {
  50482. height: math.unit(6, "feet"),
  50483. name: "Naked",
  50484. image: {
  50485. source: "./media/characters/mab/naked.svg",
  50486. extra: 1855/1757,
  50487. bottom: 208/2063
  50488. }
  50489. },
  50490. outside: {
  50491. height: math.unit(6, "feet"),
  50492. name: "Outside",
  50493. image: {
  50494. source: "./media/characters/mab/outside.svg",
  50495. extra: 1855/1757,
  50496. bottom: 208/2063
  50497. }
  50498. },
  50499. party: {
  50500. height: math.unit(6, "feet"),
  50501. name: "Party",
  50502. image: {
  50503. source: "./media/characters/mab/party.svg",
  50504. extra: 1855/1757,
  50505. bottom: 208/2063
  50506. }
  50507. },
  50508. },
  50509. [
  50510. {
  50511. name: "Normal",
  50512. height: math.unit(165, "feet"),
  50513. default: true
  50514. },
  50515. ]
  50516. ))
  50517. characterMakers.push(() => makeCharacter(
  50518. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50519. {
  50520. feral: {
  50521. height: math.unit(12, "feet"),
  50522. weight: math.unit(20000, "lb"),
  50523. name: "Side",
  50524. image: {
  50525. source: "./media/characters/winter/feral.svg",
  50526. extra: 1286/943,
  50527. bottom: 112/1398
  50528. },
  50529. form: "feral",
  50530. default: true
  50531. },
  50532. feralNsfw: {
  50533. height: math.unit(12, "feet"),
  50534. weight: math.unit(20000, "lb"),
  50535. name: "Side (NSFW)",
  50536. image: {
  50537. source: "./media/characters/winter/feral-nsfw.svg",
  50538. extra: 1286/943,
  50539. bottom: 112/1398
  50540. },
  50541. form: "feral"
  50542. },
  50543. dick: {
  50544. height: math.unit(3.79, "feet"),
  50545. name: "Dick",
  50546. image: {
  50547. source: "./media/characters/winter/dick.svg"
  50548. },
  50549. form: "feral"
  50550. },
  50551. anthro: {
  50552. height: math.unit(12, "feet"),
  50553. weight: math.unit(10, "tons"),
  50554. name: "Anthro",
  50555. image: {
  50556. source: "./media/characters/winter/anthro.svg",
  50557. extra: 1701/1553,
  50558. bottom: 64/1765
  50559. },
  50560. form: "anthro",
  50561. default: true
  50562. },
  50563. },
  50564. [
  50565. {
  50566. name: "Big",
  50567. height: math.unit(12, "feet"),
  50568. default: true,
  50569. form: "feral"
  50570. },
  50571. {
  50572. name: "Big",
  50573. height: math.unit(12, "feet"),
  50574. default: true,
  50575. form: "anthro"
  50576. },
  50577. ],
  50578. {
  50579. "feral": {
  50580. name: "Feral",
  50581. default: true
  50582. },
  50583. "anthro": {
  50584. name: "Anthro"
  50585. }
  50586. }
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50590. {
  50591. front: {
  50592. height: math.unit(4.1, "inches"),
  50593. name: "Front",
  50594. image: {
  50595. source: "./media/characters/alto/front.svg",
  50596. extra: 736/627,
  50597. bottom: 90/826
  50598. }
  50599. },
  50600. },
  50601. [
  50602. {
  50603. name: "Normal",
  50604. height: math.unit(4.1, "inches"),
  50605. default: true
  50606. },
  50607. ]
  50608. ))
  50609. characterMakers.push(() => makeCharacter(
  50610. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50611. {
  50612. sitting: {
  50613. height: math.unit(3, "feet"),
  50614. name: "Sitting",
  50615. image: {
  50616. source: "./media/characters/ratstrid-v/sitting.svg",
  50617. extra: 355/310,
  50618. bottom: 136/491
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Normal",
  50625. height: math.unit(3, "feet"),
  50626. default: true
  50627. },
  50628. ]
  50629. ))
  50630. characterMakers.push(() => makeCharacter(
  50631. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50632. {
  50633. back: {
  50634. height: math.unit(6, "feet"),
  50635. weight: math.unit(450, "lb"),
  50636. name: "Back",
  50637. image: {
  50638. source: "./media/characters/siz/back.svg",
  50639. extra: 1449/1274,
  50640. bottom: 13/1462
  50641. }
  50642. },
  50643. },
  50644. [
  50645. {
  50646. name: "Smallest",
  50647. height: math.unit(18 + 3/12, "feet")
  50648. },
  50649. {
  50650. name: "Modest",
  50651. height: math.unit(56 + 8/12, "feet"),
  50652. default: true
  50653. },
  50654. {
  50655. name: "Largest",
  50656. height: math.unit(3590, "feet")
  50657. },
  50658. ]
  50659. ))
  50660. characterMakers.push(() => makeCharacter(
  50661. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50662. {
  50663. front: {
  50664. height: math.unit(5 + 9/12, "feet"),
  50665. weight: math.unit(150, "lb"),
  50666. name: "Front",
  50667. image: {
  50668. source: "./media/characters/ven/front.svg",
  50669. extra: 1372/1320,
  50670. bottom: 73/1445
  50671. }
  50672. },
  50673. side: {
  50674. height: math.unit(5 + 9/12, "feet"),
  50675. weight: math.unit(1150, "lb"),
  50676. name: "Side",
  50677. image: {
  50678. source: "./media/characters/ven/side.svg",
  50679. extra: 1119/1070,
  50680. bottom: 42/1161
  50681. },
  50682. default: true
  50683. },
  50684. },
  50685. [
  50686. {
  50687. name: "Normal",
  50688. height: math.unit(5 + 9/12, "feet"),
  50689. default: true
  50690. },
  50691. ]
  50692. ))
  50693. characterMakers.push(() => makeCharacter(
  50694. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50695. {
  50696. front: {
  50697. height: math.unit(12, "feet"),
  50698. weight: math.unit(1000, "kg"),
  50699. name: "Front",
  50700. image: {
  50701. source: "./media/characters/maple/front.svg",
  50702. extra: 1193/1081,
  50703. bottom: 22/1215
  50704. }
  50705. },
  50706. },
  50707. [
  50708. {
  50709. name: "Compressed",
  50710. height: math.unit(7, "feet")
  50711. },
  50712. {
  50713. name: "Normal",
  50714. height: math.unit(12, "feet"),
  50715. default: true
  50716. },
  50717. ]
  50718. ))
  50719. characterMakers.push(() => makeCharacter(
  50720. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50721. {
  50722. front: {
  50723. height: math.unit(9, "feet"),
  50724. weight: math.unit(1500, "lb"),
  50725. name: "Front",
  50726. image: {
  50727. source: "./media/characters/nora/front.svg",
  50728. extra: 1348/1286,
  50729. bottom: 218/1566
  50730. }
  50731. },
  50732. erect: {
  50733. height: math.unit(9, "feet"),
  50734. weight: math.unit(11500, "lb"),
  50735. name: "Erect",
  50736. image: {
  50737. source: "./media/characters/nora/erect.svg",
  50738. extra: 1488/1433,
  50739. bottom: 133/1621
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(9, "feet"),
  50747. default: true
  50748. },
  50749. ]
  50750. ))
  50751. characterMakers.push(() => makeCharacter(
  50752. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50753. {
  50754. front: {
  50755. height: math.unit(25, "feet"),
  50756. weight: math.unit(27500, "lb"),
  50757. name: "Front",
  50758. image: {
  50759. source: "./media/characters/north-caudin/front.svg",
  50760. extra: 1184/1082,
  50761. bottom: 23/1207
  50762. }
  50763. },
  50764. },
  50765. [
  50766. {
  50767. name: "Compressed",
  50768. height: math.unit(10, "feet")
  50769. },
  50770. {
  50771. name: "Normal",
  50772. height: math.unit(25, "feet"),
  50773. default: true
  50774. },
  50775. ]
  50776. ))
  50777. characterMakers.push(() => makeCharacter(
  50778. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50779. {
  50780. front: {
  50781. height: math.unit(9, "feet"),
  50782. weight: math.unit(1250, "lb"),
  50783. name: "Front",
  50784. image: {
  50785. source: "./media/characters/merrian/front.svg",
  50786. extra: 2393/2304,
  50787. bottom: 40/2433
  50788. }
  50789. },
  50790. },
  50791. [
  50792. {
  50793. name: "Normal",
  50794. height: math.unit(9, "feet"),
  50795. default: true
  50796. },
  50797. ]
  50798. ))
  50799. characterMakers.push(() => makeCharacter(
  50800. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50801. {
  50802. front: {
  50803. height: math.unit(9, "feet"),
  50804. weight: math.unit(1000, "lb"),
  50805. name: "Front",
  50806. image: {
  50807. source: "./media/characters/hazel/front.svg",
  50808. extra: 2351/2298,
  50809. bottom: 38/2389
  50810. }
  50811. },
  50812. },
  50813. [
  50814. {
  50815. name: "Normal",
  50816. height: math.unit(9, "feet"),
  50817. default: true
  50818. },
  50819. ]
  50820. ))
  50821. characterMakers.push(() => makeCharacter(
  50822. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50823. {
  50824. front: {
  50825. height: math.unit(13, "feet"),
  50826. weight: math.unit(3200, "lb"),
  50827. name: "Front",
  50828. image: {
  50829. source: "./media/characters/emma/front.svg",
  50830. extra: 2263/2029,
  50831. bottom: 68/2331
  50832. }
  50833. },
  50834. },
  50835. [
  50836. {
  50837. name: "Normal",
  50838. height: math.unit(13, "feet"),
  50839. default: true
  50840. },
  50841. ]
  50842. ))
  50843. characterMakers.push(() => makeCharacter(
  50844. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50845. {
  50846. front: {
  50847. height: math.unit(11 + 9/12, "feet"),
  50848. weight: math.unit(2500, "lb"),
  50849. name: "Front",
  50850. image: {
  50851. source: "./media/characters/ilumina/front.svg",
  50852. extra: 2248/2209,
  50853. bottom: 164/2412
  50854. }
  50855. },
  50856. },
  50857. [
  50858. {
  50859. name: "Normal",
  50860. height: math.unit(11 + 9/12, "feet"),
  50861. default: true
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50867. {
  50868. front: {
  50869. height: math.unit(8 + 10/12, "feet"),
  50870. weight: math.unit(1350, "lb"),
  50871. name: "Front",
  50872. image: {
  50873. source: "./media/characters/moonshine/front.svg",
  50874. extra: 2395/2288,
  50875. bottom: 40/2435
  50876. }
  50877. },
  50878. },
  50879. [
  50880. {
  50881. name: "Normal",
  50882. height: math.unit(8 + 10/12, "feet"),
  50883. default: true
  50884. },
  50885. ]
  50886. ))
  50887. characterMakers.push(() => makeCharacter(
  50888. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50889. {
  50890. front: {
  50891. height: math.unit(14, "feet"),
  50892. weight: math.unit(3400, "lb"),
  50893. name: "Front",
  50894. image: {
  50895. source: "./media/characters/aletia/front.svg",
  50896. extra: 1185/1052,
  50897. bottom: 21/1206
  50898. }
  50899. },
  50900. },
  50901. [
  50902. {
  50903. name: "Compressed",
  50904. height: math.unit(8, "feet")
  50905. },
  50906. {
  50907. name: "Normal",
  50908. height: math.unit(14, "feet"),
  50909. default: true
  50910. },
  50911. ]
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50915. {
  50916. front: {
  50917. height: math.unit(17, "feet"),
  50918. weight: math.unit(6500, "lb"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/deidra/front.svg",
  50922. extra: 1201/1081,
  50923. bottom: 16/1217
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Compressed",
  50930. height: math.unit(9 + 6/12, "feet")
  50931. },
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(17, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(7 + 4/12, "feet"),
  50944. weight: math.unit(280, "lb"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/freki-yrmori/front.svg",
  50948. extra: 1286/1182,
  50949. bottom: 29/1315
  50950. }
  50951. },
  50952. maw: {
  50953. height: math.unit(0.9, "feet"),
  50954. name: "Maw",
  50955. image: {
  50956. source: "./media/characters/freki-yrmori/maw.svg"
  50957. }
  50958. },
  50959. },
  50960. [
  50961. {
  50962. name: "Normal",
  50963. height: math.unit(7 + 4/12, "feet"),
  50964. default: true
  50965. },
  50966. {
  50967. name: "Macro",
  50968. height: math.unit(38.5, "meters")
  50969. },
  50970. ]
  50971. ))
  50972. characterMakers.push(() => makeCharacter(
  50973. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50974. {
  50975. side: {
  50976. height: math.unit(47.2, "meters"),
  50977. weight: math.unit(10000, "tons"),
  50978. name: "Side",
  50979. image: {
  50980. source: "./media/characters/aetherios/side.svg",
  50981. extra: 2363/642,
  50982. bottom: 221/2584
  50983. }
  50984. },
  50985. top: {
  50986. height: math.unit(240, "meters"),
  50987. weight: math.unit(10000, "tons"),
  50988. name: "Top",
  50989. image: {
  50990. source: "./media/characters/aetherios/top.svg"
  50991. }
  50992. },
  50993. bottom: {
  50994. height: math.unit(240, "meters"),
  50995. weight: math.unit(10000, "tons"),
  50996. name: "Bottom",
  50997. image: {
  50998. source: "./media/characters/aetherios/bottom.svg"
  50999. }
  51000. },
  51001. head: {
  51002. height: math.unit(38.6, "meters"),
  51003. name: "Head",
  51004. image: {
  51005. source: "./media/characters/aetherios/head.svg",
  51006. extra: 1335/1112,
  51007. bottom: 0/1335
  51008. }
  51009. },
  51010. front: {
  51011. height: math.unit(29, "meters"),
  51012. name: "Front",
  51013. image: {
  51014. source: "./media/characters/aetherios/front.svg",
  51015. extra: 1266/953,
  51016. bottom: 158/1424
  51017. }
  51018. },
  51019. maw: {
  51020. height: math.unit(16.37, "meters"),
  51021. name: "Maw",
  51022. image: {
  51023. source: "./media/characters/aetherios/maw.svg",
  51024. extra: 748/637,
  51025. bottom: 0/748
  51026. },
  51027. extraAttributes: {
  51028. preyCapacity: {
  51029. name: "Capacity",
  51030. power: 3,
  51031. type: "volume",
  51032. base: math.unit(1000, "people")
  51033. },
  51034. tongueSize: {
  51035. name: "Tongue Size",
  51036. power: 2,
  51037. type: "area",
  51038. base: math.unit(21, "m^2")
  51039. }
  51040. }
  51041. },
  51042. forepaw: {
  51043. height: math.unit(18, "meters"),
  51044. name: "Forepaw",
  51045. image: {
  51046. source: "./media/characters/aetherios/forepaw.svg"
  51047. }
  51048. },
  51049. hindpaw: {
  51050. height: math.unit(23, "meters"),
  51051. name: "Hindpaw",
  51052. image: {
  51053. source: "./media/characters/aetherios/hindpaw.svg"
  51054. }
  51055. },
  51056. genitals: {
  51057. height: math.unit(42, "meters"),
  51058. name: "Genitals",
  51059. image: {
  51060. source: "./media/characters/aetherios/genitals.svg"
  51061. }
  51062. },
  51063. },
  51064. [
  51065. {
  51066. name: "Normal",
  51067. height: math.unit(47.2, "meters"),
  51068. default: true
  51069. },
  51070. {
  51071. name: "Macro",
  51072. height: math.unit(160, "meters")
  51073. },
  51074. {
  51075. name: "Mega",
  51076. height: math.unit(1.87, "km")
  51077. },
  51078. {
  51079. name: "Giga",
  51080. height: math.unit(40000, "km")
  51081. },
  51082. {
  51083. name: "Stellar",
  51084. height: math.unit(158000000, "km")
  51085. },
  51086. {
  51087. name: "Cosmic",
  51088. height: math.unit(9.46e12, "km")
  51089. },
  51090. ]
  51091. ))
  51092. characterMakers.push(() => makeCharacter(
  51093. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51094. {
  51095. front: {
  51096. height: math.unit(5 + 4/12, "feet"),
  51097. weight: math.unit(80, "lb"),
  51098. name: "Front",
  51099. image: {
  51100. source: "./media/characters/mizu-gieeg/front.svg",
  51101. extra: 850/709,
  51102. bottom: 52/902
  51103. }
  51104. },
  51105. back: {
  51106. height: math.unit(5 + 4/12, "feet"),
  51107. weight: math.unit(80, "lb"),
  51108. name: "Back",
  51109. image: {
  51110. source: "./media/characters/mizu-gieeg/back.svg",
  51111. extra: 882/745,
  51112. bottom: 25/907
  51113. }
  51114. },
  51115. },
  51116. [
  51117. {
  51118. name: "Normal",
  51119. height: math.unit(5 + 4/12, "feet"),
  51120. default: true
  51121. },
  51122. ]
  51123. ))
  51124. characterMakers.push(() => makeCharacter(
  51125. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51126. {
  51127. front: {
  51128. height: math.unit(6, "feet"),
  51129. name: "Front",
  51130. image: {
  51131. source: "./media/characters/roselle-st-papier/front.svg",
  51132. extra: 1430/1280,
  51133. bottom: 37/1467
  51134. }
  51135. },
  51136. back: {
  51137. height: math.unit(6, "feet"),
  51138. name: "Back",
  51139. image: {
  51140. source: "./media/characters/roselle-st-papier/back.svg",
  51141. extra: 1491/1296,
  51142. bottom: 23/1514
  51143. }
  51144. },
  51145. ear: {
  51146. height: math.unit(1.26, "feet"),
  51147. name: "Ear",
  51148. image: {
  51149. source: "./media/characters/roselle-st-papier/ear.svg"
  51150. }
  51151. },
  51152. },
  51153. [
  51154. {
  51155. name: "Normal",
  51156. height: math.unit(150, "feet"),
  51157. default: true
  51158. },
  51159. ]
  51160. ))
  51161. characterMakers.push(() => makeCharacter(
  51162. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51163. {
  51164. front: {
  51165. height: math.unit(1, "inches"),
  51166. name: "Front",
  51167. image: {
  51168. source: "./media/characters/valargent/front.svg",
  51169. extra: 1825/1694,
  51170. bottom: 62/1887
  51171. }
  51172. },
  51173. back: {
  51174. height: math.unit(1, "inches"),
  51175. name: "Back",
  51176. image: {
  51177. source: "./media/characters/valargent/back.svg",
  51178. extra: 1775/1682,
  51179. bottom: 88/1863
  51180. }
  51181. },
  51182. },
  51183. [
  51184. {
  51185. name: "Micro",
  51186. height: math.unit(1, "inch"),
  51187. default: true
  51188. },
  51189. ]
  51190. ))
  51191. characterMakers.push(() => makeCharacter(
  51192. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51193. {
  51194. front: {
  51195. height: math.unit(3.4, "meters"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/zarina/front.svg",
  51199. extra: 1733/1425,
  51200. bottom: 93/1826
  51201. }
  51202. },
  51203. squatting: {
  51204. height: math.unit(2.14, "meters"),
  51205. name: "Squatting",
  51206. image: {
  51207. source: "./media/characters/zarina/squatting.svg",
  51208. extra: 1073/788,
  51209. bottom: 63/1136
  51210. }
  51211. },
  51212. back: {
  51213. height: math.unit(2.14, "meters"),
  51214. name: "Back",
  51215. image: {
  51216. source: "./media/characters/zarina/back.svg",
  51217. extra: 1128/885,
  51218. bottom: 0/1128
  51219. }
  51220. },
  51221. },
  51222. [
  51223. {
  51224. name: "Normal",
  51225. height: math.unit(3.4, "meters"),
  51226. default: true
  51227. },
  51228. {
  51229. name: "Big",
  51230. height: math.unit(5, "meters")
  51231. },
  51232. {
  51233. name: "Macro",
  51234. height: math.unit(110, "meters")
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51240. {
  51241. front: {
  51242. height: math.unit(7, "feet"),
  51243. name: "Front",
  51244. image: {
  51245. source: "./media/characters/ventus-astro-fox/front.svg",
  51246. extra: 1792/1623,
  51247. bottom: 28/1820
  51248. }
  51249. },
  51250. back: {
  51251. height: math.unit(7, "feet"),
  51252. name: "Back",
  51253. image: {
  51254. source: "./media/characters/ventus-astro-fox/back.svg",
  51255. extra: 1789/1620,
  51256. bottom: 31/1820
  51257. }
  51258. },
  51259. outfit: {
  51260. height: math.unit(7, "feet"),
  51261. name: "Outfit",
  51262. image: {
  51263. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51264. extra: 1054/925,
  51265. bottom: 15/1069
  51266. }
  51267. },
  51268. head: {
  51269. height: math.unit(1.12, "feet"),
  51270. name: "Head",
  51271. image: {
  51272. source: "./media/characters/ventus-astro-fox/head.svg",
  51273. extra: 866/504,
  51274. bottom: 0/866
  51275. }
  51276. },
  51277. hand: {
  51278. height: math.unit(1, "feet"),
  51279. name: "Hand",
  51280. image: {
  51281. source: "./media/characters/ventus-astro-fox/hand.svg"
  51282. }
  51283. },
  51284. paw: {
  51285. height: math.unit(1.5, "feet"),
  51286. name: "Paw",
  51287. image: {
  51288. source: "./media/characters/ventus-astro-fox/paw.svg"
  51289. }
  51290. },
  51291. },
  51292. [
  51293. {
  51294. name: "Normal",
  51295. height: math.unit(7, "feet"),
  51296. default: true
  51297. },
  51298. {
  51299. name: "Macro",
  51300. height: math.unit(200, "feet")
  51301. },
  51302. {
  51303. name: "Cosmic",
  51304. height: math.unit(3, "universes")
  51305. },
  51306. ]
  51307. ))
  51308. characterMakers.push(() => makeCharacter(
  51309. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51310. {
  51311. front: {
  51312. height: math.unit(3, "meters"),
  51313. weight: math.unit(7000, "lb"),
  51314. name: "Front",
  51315. image: {
  51316. source: "./media/characters/core-t/front.svg",
  51317. extra: 5729/4941,
  51318. bottom: 1129/6858
  51319. }
  51320. },
  51321. },
  51322. [
  51323. {
  51324. name: "Big",
  51325. height: math.unit(3, "meters"),
  51326. default: true
  51327. },
  51328. ]
  51329. ))
  51330. characterMakers.push(() => makeCharacter(
  51331. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51332. {
  51333. normal: {
  51334. height: math.unit(6 + 6/12, "feet"),
  51335. weight: math.unit(275, "lb"),
  51336. name: "Front",
  51337. image: {
  51338. source: "./media/characters/cadbunny/normal.svg",
  51339. extra: 1129/947,
  51340. bottom: 93/1222
  51341. },
  51342. default: true,
  51343. form: "normal"
  51344. },
  51345. gigantamax: {
  51346. height: math.unit(26, "feet"),
  51347. weight: math.unit(16000, "lb"),
  51348. name: "Front",
  51349. image: {
  51350. source: "./media/characters/cadbunny/gigantamax.svg",
  51351. extra: 1133/944,
  51352. bottom: 90/1223
  51353. },
  51354. default: true,
  51355. form: "gigantamax"
  51356. },
  51357. },
  51358. [
  51359. {
  51360. name: "Normal",
  51361. height: math.unit(6 + 6/12, "feet"),
  51362. default: true,
  51363. form: "normal"
  51364. },
  51365. {
  51366. name: "Small",
  51367. height: math.unit(26, "feet"),
  51368. default: true,
  51369. form: "gigantamax"
  51370. },
  51371. {
  51372. name: "Large",
  51373. height: math.unit(78, "feet"),
  51374. form: "gigantamax"
  51375. },
  51376. ],
  51377. {
  51378. "normal": {
  51379. name: "Normal",
  51380. default: true
  51381. },
  51382. "gigantamax": {
  51383. name: "Gigantamax"
  51384. }
  51385. }
  51386. ))
  51387. characterMakers.push(() => makeCharacter(
  51388. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51389. {
  51390. anthroFront: {
  51391. height: math.unit(8, "feet"),
  51392. weight: math.unit(300, "lb"),
  51393. name: "Front",
  51394. image: {
  51395. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51396. extra: 1272/1176,
  51397. bottom: 53/1325
  51398. },
  51399. form: "anthro",
  51400. default: true
  51401. },
  51402. feralSide: {
  51403. height: math.unit(4, "feet"),
  51404. weight: math.unit(250, "lb"),
  51405. name: "Side",
  51406. image: {
  51407. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51408. extra: 731/621,
  51409. bottom: 0/731
  51410. },
  51411. form: "feral",
  51412. default: true
  51413. },
  51414. },
  51415. [
  51416. {
  51417. name: "Regular",
  51418. height: math.unit(8, "feet"),
  51419. form: "anthro"
  51420. },
  51421. {
  51422. name: "Macro",
  51423. height: math.unit(250, "feet"),
  51424. form: "anthro",
  51425. default: true
  51426. },
  51427. {
  51428. name: "Regular",
  51429. height: math.unit(4, "feet"),
  51430. form: "feral"
  51431. },
  51432. {
  51433. name: "Macro",
  51434. height: math.unit(125, "feet"),
  51435. form: "feral",
  51436. default: true
  51437. },
  51438. ],
  51439. {
  51440. "anthro": {
  51441. name: "Anthro",
  51442. default: true
  51443. },
  51444. "feral": {
  51445. name: "Feral",
  51446. },
  51447. }
  51448. ))
  51449. characterMakers.push(() => makeCharacter(
  51450. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51451. {
  51452. front: {
  51453. height: math.unit(11 + 10/12, "feet"),
  51454. weight: math.unit(1587, "kg"),
  51455. name: "Front",
  51456. image: {
  51457. source: "./media/characters/maple-javira-dragon/front.svg",
  51458. extra: 1136/744,
  51459. bottom: 73/1209
  51460. }
  51461. },
  51462. side: {
  51463. height: math.unit(11 + 10/12, "feet"),
  51464. weight: math.unit(1587, "kg"),
  51465. name: "Side",
  51466. image: {
  51467. source: "./media/characters/maple-javira-dragon/side.svg",
  51468. extra: 712/505,
  51469. bottom: 17/729
  51470. }
  51471. },
  51472. head: {
  51473. height: math.unit(8.05, "feet"),
  51474. name: "Head",
  51475. image: {
  51476. source: "./media/characters/maple-javira-dragon/head.svg",
  51477. extra: 1420/1344,
  51478. bottom: 0/1420
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Normal",
  51485. height: math.unit(11 + 10/12, "feet"),
  51486. default: true
  51487. },
  51488. ]
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51492. {
  51493. front: {
  51494. height: math.unit(117, "cm"),
  51495. weight: math.unit(50, "kg"),
  51496. name: "Front",
  51497. image: {
  51498. source: "./media/characters/sonia-wyverntail/front.svg",
  51499. extra: 708/592,
  51500. bottom: 25/733
  51501. }
  51502. },
  51503. },
  51504. [
  51505. {
  51506. name: "Normal",
  51507. height: math.unit(117, "cm"),
  51508. default: true
  51509. },
  51510. ]
  51511. ))
  51512. characterMakers.push(() => makeCharacter(
  51513. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51514. {
  51515. front: {
  51516. height: math.unit(6 + 5/12, "feet"),
  51517. name: "Front",
  51518. image: {
  51519. source: "./media/characters/micah/front.svg",
  51520. extra: 1758/1546,
  51521. bottom: 214/1972
  51522. }
  51523. },
  51524. },
  51525. [
  51526. {
  51527. name: "Normal",
  51528. height: math.unit(6 + 5/12, "feet"),
  51529. default: true
  51530. },
  51531. ]
  51532. ))
  51533. characterMakers.push(() => makeCharacter(
  51534. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51535. {
  51536. front: {
  51537. height: math.unit(1.75, "meters"),
  51538. weight: math.unit(100, "kg"),
  51539. name: "Front",
  51540. image: {
  51541. source: "./media/characters/zarya/front.svg",
  51542. extra: 741/735,
  51543. bottom: 44/785
  51544. },
  51545. extraAttributes: {
  51546. "tailLength": {
  51547. name: "Tail Length",
  51548. power: 1,
  51549. type: "length",
  51550. base: math.unit(180, "cm")
  51551. },
  51552. "pawLength": {
  51553. name: "Paw Length",
  51554. power: 1,
  51555. type: "length",
  51556. base: math.unit(31, "cm")
  51557. },
  51558. }
  51559. },
  51560. side: {
  51561. height: math.unit(1.75, "meters"),
  51562. weight: math.unit(100, "kg"),
  51563. name: "Side",
  51564. image: {
  51565. source: "./media/characters/zarya/side.svg",
  51566. extra: 776/770,
  51567. bottom: 17/793
  51568. },
  51569. extraAttributes: {
  51570. "tailLength": {
  51571. name: "Tail Length",
  51572. power: 1,
  51573. type: "length",
  51574. base: math.unit(180, "cm")
  51575. },
  51576. "pawLength": {
  51577. name: "Paw Length",
  51578. power: 1,
  51579. type: "length",
  51580. base: math.unit(31, "cm")
  51581. },
  51582. }
  51583. },
  51584. back: {
  51585. height: math.unit(1.75, "meters"),
  51586. weight: math.unit(100, "kg"),
  51587. name: "Back",
  51588. image: {
  51589. source: "./media/characters/zarya/back.svg",
  51590. extra: 741/735,
  51591. bottom: 44/785
  51592. },
  51593. extraAttributes: {
  51594. "tailLength": {
  51595. name: "Tail Length",
  51596. power: 1,
  51597. type: "length",
  51598. base: math.unit(180, "cm")
  51599. },
  51600. "pawLength": {
  51601. name: "Paw Length",
  51602. power: 1,
  51603. type: "length",
  51604. base: math.unit(31, "cm")
  51605. },
  51606. }
  51607. },
  51608. frontNoTail: {
  51609. height: math.unit(1.75, "meters"),
  51610. weight: math.unit(100, "kg"),
  51611. name: "Front (No Tail)",
  51612. image: {
  51613. source: "./media/characters/zarya/front-no-tail.svg",
  51614. extra: 741/735,
  51615. bottom: 44/785
  51616. },
  51617. extraAttributes: {
  51618. "tailLength": {
  51619. name: "Tail Length",
  51620. power: 1,
  51621. type: "length",
  51622. base: math.unit(180, "cm")
  51623. },
  51624. "pawLength": {
  51625. name: "Paw Length",
  51626. power: 1,
  51627. type: "length",
  51628. base: math.unit(31, "cm")
  51629. },
  51630. }
  51631. },
  51632. dressed: {
  51633. height: math.unit(1.75, "meters"),
  51634. weight: math.unit(100, "kg"),
  51635. name: "Dressed",
  51636. image: {
  51637. source: "./media/characters/zarya/dressed.svg",
  51638. extra: 683/672,
  51639. bottom: 79/762
  51640. },
  51641. extraAttributes: {
  51642. "tailLength": {
  51643. name: "Tail Length",
  51644. power: 1,
  51645. type: "length",
  51646. base: math.unit(180, "cm")
  51647. },
  51648. "pawLength": {
  51649. name: "Paw Length",
  51650. power: 1,
  51651. type: "length",
  51652. base: math.unit(31, "cm")
  51653. },
  51654. }
  51655. },
  51656. },
  51657. [
  51658. {
  51659. name: "Micro",
  51660. height: math.unit(5, "cm")
  51661. },
  51662. {
  51663. name: "Normal",
  51664. height: math.unit(1.75, "meters"),
  51665. default: true
  51666. },
  51667. {
  51668. name: "Macro",
  51669. height: math.unit(122, "meters")
  51670. },
  51671. ]
  51672. ))
  51673. characterMakers.push(() => makeCharacter(
  51674. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51675. {
  51676. front: {
  51677. height: math.unit(7.5, "feet"),
  51678. name: "Front",
  51679. image: {
  51680. source: "./media/characters/sven-hatisson/front.svg",
  51681. extra: 917/857,
  51682. bottom: 42/959
  51683. }
  51684. },
  51685. back: {
  51686. height: math.unit(7.5, "feet"),
  51687. name: "Back",
  51688. image: {
  51689. source: "./media/characters/sven-hatisson/back.svg",
  51690. extra: 903/856,
  51691. bottom: 15/918
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Base Height",
  51698. height: math.unit(7.5, "feet")
  51699. },
  51700. {
  51701. name: "Usual Height",
  51702. height: math.unit(13.5, "feet"),
  51703. default: true
  51704. },
  51705. {
  51706. name: "Smaller Macro",
  51707. height: math.unit(85, "feet")
  51708. },
  51709. {
  51710. name: "Moderate Macro",
  51711. height: math.unit(320, "feet")
  51712. },
  51713. {
  51714. name: "Large Macro",
  51715. height: math.unit(1000, "feet")
  51716. },
  51717. {
  51718. name: "Largest Size",
  51719. height: math.unit(2, "miles")
  51720. },
  51721. ]
  51722. ))
  51723. characterMakers.push(() => makeCharacter(
  51724. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51725. {
  51726. side: {
  51727. height: math.unit(1.8, "meters"),
  51728. weight: math.unit(275, "kg"),
  51729. name: "Side",
  51730. image: {
  51731. source: "./media/characters/terra/side.svg",
  51732. extra: 1273/1147,
  51733. bottom: 0/1273
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Normal",
  51740. height: math.unit(16.2, "meters"),
  51741. default: true
  51742. },
  51743. ]
  51744. ))
  51745. characterMakers.push(() => makeCharacter(
  51746. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51747. {
  51748. borzoiFront: {
  51749. height: math.unit(6 + 9/12, "feet"),
  51750. name: "Front",
  51751. image: {
  51752. source: "./media/characters/rae/borzoi-front.svg",
  51753. extra: 1161/1098,
  51754. bottom: 31/1192
  51755. },
  51756. form: "borzoi",
  51757. default: true
  51758. },
  51759. werewolfFront: {
  51760. height: math.unit(8 + 7/12, "feet"),
  51761. name: "Front",
  51762. image: {
  51763. source: "./media/characters/rae/werewolf-front.svg",
  51764. extra: 1411/1334,
  51765. bottom: 127/1538
  51766. },
  51767. form: "werewolf",
  51768. default: true
  51769. },
  51770. },
  51771. [
  51772. {
  51773. name: "Normal",
  51774. height: math.unit(6 + 9/12, "feet"),
  51775. default: true,
  51776. form: "borzoi"
  51777. },
  51778. {
  51779. name: "Normal",
  51780. height: math.unit(8 + 7/12, "feet"),
  51781. default: true,
  51782. form: "werewolf"
  51783. },
  51784. ],
  51785. {
  51786. "borzoi": {
  51787. name: "Borzoi",
  51788. default: true
  51789. },
  51790. "werewolf": {
  51791. name: "Werewolf",
  51792. },
  51793. }
  51794. ))
  51795. characterMakers.push(() => makeCharacter(
  51796. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51797. {
  51798. front: {
  51799. height: math.unit(8 + 7/12, "feet"),
  51800. weight: math.unit(482, "lb"),
  51801. name: "Front",
  51802. image: {
  51803. source: "./media/characters/kit/front.svg",
  51804. extra: 1247/1103,
  51805. bottom: 41/1288
  51806. }
  51807. },
  51808. back: {
  51809. height: math.unit(8 + 7/12, "feet"),
  51810. weight: math.unit(482, "lb"),
  51811. name: "Back",
  51812. image: {
  51813. source: "./media/characters/kit/back.svg",
  51814. extra: 1252/1123,
  51815. bottom: 21/1273
  51816. }
  51817. },
  51818. paw: {
  51819. height: math.unit(1.46, "feet"),
  51820. name: "Paw",
  51821. image: {
  51822. source: "./media/characters/kit/paw.svg"
  51823. }
  51824. },
  51825. },
  51826. [
  51827. {
  51828. name: "Normal",
  51829. height: math.unit(2.61, "meters"),
  51830. default: true
  51831. },
  51832. {
  51833. name: "\"Tall\"",
  51834. height: math.unit(8.21, "meters")
  51835. },
  51836. {
  51837. name: "Tall",
  51838. height: math.unit(19.6, "meters")
  51839. },
  51840. {
  51841. name: "Very Tall",
  51842. height: math.unit(57.91, "meters")
  51843. },
  51844. {
  51845. name: "Semi-Macro",
  51846. height: math.unit(138.64, "meters")
  51847. },
  51848. {
  51849. name: "Macro",
  51850. height: math.unit(831.99, "meters")
  51851. },
  51852. {
  51853. name: "EX-Macro",
  51854. height: math.unit(96451121, "meters")
  51855. },
  51856. {
  51857. name: "S1-Omnipotent",
  51858. height: math.unit(4.42074e+9, "meters")
  51859. },
  51860. {
  51861. name: "S2-Omnipotent",
  51862. height: math.unit(9.42074e+17, "meters")
  51863. },
  51864. {
  51865. name: "Omnipotent",
  51866. height: math.unit(4.23112e+24, "meters")
  51867. },
  51868. {
  51869. name: "Hypergod",
  51870. height: math.unit(5.05176e+27, "meters")
  51871. },
  51872. {
  51873. name: "Hypergod-EX",
  51874. height: math.unit(9.45532e+49, "meters")
  51875. },
  51876. {
  51877. name: "Hypergod-SP",
  51878. height: math.unit(9.45532e+195, "meters")
  51879. },
  51880. ]
  51881. ))
  51882. characterMakers.push(() => makeCharacter(
  51883. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51884. {
  51885. side: {
  51886. height: math.unit(0.6, "meters"),
  51887. weight: math.unit(24, "kg"),
  51888. name: "Side",
  51889. image: {
  51890. source: "./media/characters/celeste/side.svg",
  51891. extra: 810/517,
  51892. bottom: 53/863
  51893. }
  51894. },
  51895. },
  51896. [
  51897. {
  51898. name: "Velociraptor",
  51899. height: math.unit(0.6, "meters"),
  51900. default: true
  51901. },
  51902. {
  51903. name: "Utahraptor",
  51904. height: math.unit(1.8, "meters")
  51905. },
  51906. {
  51907. name: "Gallimimus",
  51908. height: math.unit(4.0, "meters")
  51909. },
  51910. {
  51911. name: "Large",
  51912. height: math.unit(20, "meters")
  51913. },
  51914. {
  51915. name: "Planetary",
  51916. height: math.unit(50, "megameters")
  51917. },
  51918. {
  51919. name: "Stellar",
  51920. height: math.unit(1.5, "gigameters")
  51921. },
  51922. {
  51923. name: "Galactic",
  51924. height: math.unit(100, "exameters")
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(6, "feet"),
  51933. weight: math.unit(210, "lb"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/glacia/front.svg",
  51937. extra: 958/901,
  51938. bottom: 45/1003
  51939. }
  51940. },
  51941. },
  51942. [
  51943. {
  51944. name: "Macro",
  51945. height: math.unit(1000, "meters"),
  51946. default: true
  51947. },
  51948. ]
  51949. ))
  51950. characterMakers.push(() => makeCharacter(
  51951. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51952. {
  51953. front: {
  51954. height: math.unit(4, "meters"),
  51955. name: "Front",
  51956. image: {
  51957. source: "./media/characters/giri/front.svg",
  51958. extra: 966/894,
  51959. bottom: 21/987
  51960. }
  51961. },
  51962. },
  51963. [
  51964. {
  51965. name: "Normal",
  51966. height: math.unit(4, "meters"),
  51967. default: true
  51968. },
  51969. ]
  51970. ))
  51971. characterMakers.push(() => makeCharacter(
  51972. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51973. {
  51974. back: {
  51975. height: math.unit(4, "feet"),
  51976. weight: math.unit(37, "lb"),
  51977. name: "Back",
  51978. image: {
  51979. source: "./media/characters/tin/back.svg",
  51980. extra: 845/780,
  51981. bottom: 28/873
  51982. }
  51983. },
  51984. },
  51985. [
  51986. {
  51987. name: "Normal",
  51988. height: math.unit(4, "feet"),
  51989. default: true
  51990. },
  51991. ]
  51992. ))
  51993. characterMakers.push(() => makeCharacter(
  51994. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51995. {
  51996. front: {
  51997. height: math.unit(25, "feet"),
  51998. name: "Front",
  51999. image: {
  52000. source: "./media/characters/cadenza-vivace/front.svg",
  52001. extra: 1842/1578,
  52002. bottom: 30/1872
  52003. }
  52004. },
  52005. },
  52006. [
  52007. {
  52008. name: "Macro",
  52009. height: math.unit(25, "feet"),
  52010. default: true
  52011. },
  52012. ]
  52013. ))
  52014. characterMakers.push(() => makeCharacter(
  52015. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52016. {
  52017. front: {
  52018. height: math.unit(10, "feet"),
  52019. weight: math.unit(625, "kg"),
  52020. name: "Front",
  52021. image: {
  52022. source: "./media/characters/zain/front.svg",
  52023. extra: 1682/1498,
  52024. bottom: 223/1905
  52025. }
  52026. },
  52027. back: {
  52028. height: math.unit(10, "feet"),
  52029. weight: math.unit(625, "kg"),
  52030. name: "Back",
  52031. image: {
  52032. source: "./media/characters/zain/back.svg",
  52033. extra: 1814/1657,
  52034. bottom: 152/1966
  52035. }
  52036. },
  52037. head: {
  52038. height: math.unit(10, "feet"),
  52039. weight: math.unit(625, "kg"),
  52040. name: "Head",
  52041. image: {
  52042. source: "./media/characters/zain/head.svg",
  52043. extra: 1059/762,
  52044. bottom: 0/1059
  52045. }
  52046. },
  52047. },
  52048. [
  52049. {
  52050. name: "Normal",
  52051. height: math.unit(10, "feet"),
  52052. default: true
  52053. },
  52054. ]
  52055. ))
  52056. characterMakers.push(() => makeCharacter(
  52057. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52058. {
  52059. front: {
  52060. height: math.unit(6 + 5/12, "feet"),
  52061. weight: math.unit(750, "lb"),
  52062. name: "Front",
  52063. image: {
  52064. source: "./media/characters/ruchex/front.svg",
  52065. extra: 877/820,
  52066. bottom: 17/894
  52067. },
  52068. extraAttributes: {
  52069. "width": {
  52070. name: "Width",
  52071. power: 1,
  52072. type: "length",
  52073. base: math.unit(4.757, "feet")
  52074. },
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(6 + 5/12, "feet"),
  52082. default: true
  52083. },
  52084. ]
  52085. ))
  52086. characterMakers.push(() => makeCharacter(
  52087. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52088. {
  52089. dressedFront: {
  52090. height: math.unit(191, "cm"),
  52091. weight: math.unit(80, "kg"),
  52092. name: "Front",
  52093. image: {
  52094. source: "./media/characters/buster/dressed-front.svg",
  52095. extra: 1022/973,
  52096. bottom: 69/1091
  52097. }
  52098. },
  52099. dressedBack: {
  52100. height: math.unit(191, "cm"),
  52101. weight: math.unit(80, "kg"),
  52102. name: "Back",
  52103. image: {
  52104. source: "./media/characters/buster/dressed-back.svg",
  52105. extra: 1018/970,
  52106. bottom: 55/1073
  52107. }
  52108. },
  52109. nudeFront: {
  52110. height: math.unit(191, "cm"),
  52111. weight: math.unit(80, "kg"),
  52112. name: "Front (Nude)",
  52113. image: {
  52114. source: "./media/characters/buster/nude-front.svg",
  52115. extra: 1022/973,
  52116. bottom: 69/1091
  52117. }
  52118. },
  52119. nudeBack: {
  52120. height: math.unit(191, "cm"),
  52121. weight: math.unit(80, "kg"),
  52122. name: "Back (Nude)",
  52123. image: {
  52124. source: "./media/characters/buster/nude-back.svg",
  52125. extra: 1018/970,
  52126. bottom: 55/1073
  52127. }
  52128. },
  52129. dick: {
  52130. height: math.unit(2.59, "feet"),
  52131. name: "Dick",
  52132. image: {
  52133. source: "./media/characters/buster/dick.svg"
  52134. }
  52135. },
  52136. ass: {
  52137. height: math.unit(1.2, "feet"),
  52138. name: "Ass",
  52139. image: {
  52140. source: "./media/characters/buster/ass.svg"
  52141. }
  52142. },
  52143. },
  52144. [
  52145. {
  52146. name: "Normal",
  52147. height: math.unit(191, "cm"),
  52148. default: true
  52149. },
  52150. ]
  52151. ))
  52152. characterMakers.push(() => makeCharacter(
  52153. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52154. {
  52155. side: {
  52156. height: math.unit(8.1, "feet"),
  52157. weight: math.unit(3500, "lb"),
  52158. name: "Side",
  52159. image: {
  52160. source: "./media/characters/sonya/side.svg",
  52161. extra: 1730/1317,
  52162. bottom: 86/1816
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(8.1, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(6, "feet"),
  52179. weight: math.unit(150, "lb"),
  52180. name: "Front",
  52181. image: {
  52182. source: "./media/characters/cadence-andrysiak/front.svg",
  52183. extra: 1164/1121,
  52184. bottom: 60/1224
  52185. }
  52186. },
  52187. back: {
  52188. height: math.unit(6, "feet"),
  52189. weight: math.unit(150, "lb"),
  52190. name: "Back",
  52191. image: {
  52192. source: "./media/characters/cadence-andrysiak/back.svg",
  52193. extra: 1200/1165,
  52194. bottom: 9/1209
  52195. }
  52196. },
  52197. dressed: {
  52198. height: math.unit(6, "feet"),
  52199. weight: math.unit(150, "lb"),
  52200. name: "Dressed",
  52201. image: {
  52202. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52203. extra: 1164/1121,
  52204. bottom: 60/1224
  52205. }
  52206. },
  52207. },
  52208. [
  52209. {
  52210. name: "Micro",
  52211. height: math.unit(1, "mm")
  52212. },
  52213. {
  52214. name: "Normal",
  52215. height: math.unit(6, "feet"),
  52216. default: true
  52217. },
  52218. ]
  52219. ))
  52220. characterMakers.push(() => makeCharacter(
  52221. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52222. {
  52223. front: {
  52224. height: math.unit(60, "inches"),
  52225. weight: math.unit(16, "lb"),
  52226. preyCapacity: math.unit(80, "liters"),
  52227. name: "Front",
  52228. image: {
  52229. source: "./media/characters/penny-lynx/front.svg",
  52230. extra: 1959/1769,
  52231. bottom: 49/2008
  52232. }
  52233. },
  52234. },
  52235. [
  52236. {
  52237. name: "Nokia",
  52238. height: math.unit(2, "inches")
  52239. },
  52240. {
  52241. name: "Desktop",
  52242. height: math.unit(24, "inches")
  52243. },
  52244. {
  52245. name: "TV",
  52246. height: math.unit(60, "inches")
  52247. },
  52248. {
  52249. name: "Jumbotron",
  52250. height: math.unit(12, "feet")
  52251. },
  52252. {
  52253. name: "Billboard",
  52254. height: math.unit(48, "feet"),
  52255. default: true
  52256. },
  52257. {
  52258. name: "IMAX",
  52259. height: math.unit(96, "feet")
  52260. },
  52261. {
  52262. name: "SINGULARITY",
  52263. height: math.unit(864938, "miles")
  52264. },
  52265. ]
  52266. ))
  52267. characterMakers.push(() => makeCharacter(
  52268. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52269. {
  52270. front: {
  52271. height: math.unit(5 + 4/12, "feet"),
  52272. weight: math.unit(230, "lb"),
  52273. name: "Front",
  52274. image: {
  52275. source: "./media/characters/sukebe/front.svg",
  52276. extra: 2130/2038,
  52277. bottom: 90/2220
  52278. }
  52279. },
  52280. back: {
  52281. height: math.unit(3.48, "feet"),
  52282. weight: math.unit(230, "lb"),
  52283. name: "Back",
  52284. image: {
  52285. source: "./media/characters/sukebe/back.svg",
  52286. extra: 1670/1604,
  52287. bottom: 0/1670
  52288. }
  52289. },
  52290. },
  52291. [
  52292. {
  52293. name: "Normal",
  52294. height: math.unit(5 + 4/12, "feet"),
  52295. default: true
  52296. },
  52297. ]
  52298. ))
  52299. characterMakers.push(() => makeCharacter(
  52300. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52301. {
  52302. front: {
  52303. height: math.unit(6, "feet"),
  52304. name: "Front",
  52305. image: {
  52306. source: "./media/characters/nylla/front.svg",
  52307. extra: 1868/1699,
  52308. bottom: 97/1965
  52309. }
  52310. },
  52311. back: {
  52312. height: math.unit(6, "feet"),
  52313. name: "Back",
  52314. image: {
  52315. source: "./media/characters/nylla/back.svg",
  52316. extra: 1889/1712,
  52317. bottom: 93/1982
  52318. }
  52319. },
  52320. frontNsfw: {
  52321. height: math.unit(6, "feet"),
  52322. name: "Front (NSFW)",
  52323. image: {
  52324. source: "./media/characters/nylla/front-nsfw.svg",
  52325. extra: 1868/1699,
  52326. bottom: 97/1965
  52327. },
  52328. extraAttributes: {
  52329. "dickLength": {
  52330. name: "Dick Length",
  52331. power: 1,
  52332. type: "length",
  52333. base: math.unit(1.4, "feet")
  52334. },
  52335. "cumVolume": {
  52336. name: "Cum Volume",
  52337. power: 3,
  52338. type: "volume",
  52339. base: math.unit(100, "mL")
  52340. },
  52341. }
  52342. },
  52343. backNsfw: {
  52344. height: math.unit(6, "feet"),
  52345. name: "Back (NSFW)",
  52346. image: {
  52347. source: "./media/characters/nylla/back-nsfw.svg",
  52348. extra: 1889/1712,
  52349. bottom: 93/1982
  52350. }
  52351. },
  52352. maw: {
  52353. height: math.unit(2.10, "feet"),
  52354. name: "Maw",
  52355. image: {
  52356. source: "./media/characters/nylla/maw.svg"
  52357. }
  52358. },
  52359. paws: {
  52360. height: math.unit(2.06, "feet"),
  52361. name: "Paws",
  52362. image: {
  52363. source: "./media/characters/nylla/paws.svg"
  52364. }
  52365. },
  52366. muzzle: {
  52367. height: math.unit(0.61, "feet"),
  52368. name: "Muzzle",
  52369. image: {
  52370. source: "./media/characters/nylla/muzzle.svg"
  52371. }
  52372. },
  52373. sheath: {
  52374. height: math.unit(1.305, "feet"),
  52375. name: "Sheath",
  52376. image: {
  52377. source: "./media/characters/nylla/sheath.svg"
  52378. }
  52379. },
  52380. },
  52381. [
  52382. {
  52383. name: "Micro",
  52384. height: math.unit(7.5, "inches")
  52385. },
  52386. {
  52387. name: "Normal",
  52388. height: math.unit(7, "feet"),
  52389. default: true
  52390. },
  52391. {
  52392. name: "Macro",
  52393. height: math.unit(60, "feet")
  52394. },
  52395. {
  52396. name: "Mega",
  52397. height: math.unit(200, "feet")
  52398. },
  52399. ]
  52400. ))
  52401. characterMakers.push(() => makeCharacter(
  52402. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52403. {
  52404. front: {
  52405. height: math.unit(10, "feet"),
  52406. weight: math.unit(2300, "lb"),
  52407. name: "Front",
  52408. image: {
  52409. source: "./media/characters/hunt3r/front.svg",
  52410. extra: 1909/1742,
  52411. bottom: 46/1955
  52412. }
  52413. },
  52414. },
  52415. [
  52416. {
  52417. name: "Normal",
  52418. height: math.unit(10, "feet"),
  52419. default: true
  52420. },
  52421. ]
  52422. ))
  52423. characterMakers.push(() => makeCharacter(
  52424. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52425. {
  52426. dressed: {
  52427. height: math.unit(11, "feet"),
  52428. weight: math.unit(18500, "lb"),
  52429. preyCapacity: math.unit(9, "people"),
  52430. name: "Dressed",
  52431. image: {
  52432. source: "./media/characters/cylphis/dressed.svg",
  52433. extra: 1028/1003,
  52434. bottom: 75/1103
  52435. },
  52436. },
  52437. undressed: {
  52438. height: math.unit(11, "feet"),
  52439. weight: math.unit(18500, "lb"),
  52440. preyCapacity: math.unit(9, "people"),
  52441. name: "Undressed",
  52442. image: {
  52443. source: "./media/characters/cylphis/undressed.svg",
  52444. extra: 1028/1003,
  52445. bottom: 75/1103
  52446. }
  52447. },
  52448. full: {
  52449. height: math.unit(11, "feet"),
  52450. weight: math.unit(18500 + 150*9, "lb"),
  52451. preyCapacity: math.unit(9, "people"),
  52452. name: "Full",
  52453. image: {
  52454. source: "./media/characters/cylphis/full.svg",
  52455. extra: 1028/1003,
  52456. bottom: 75/1103
  52457. }
  52458. },
  52459. },
  52460. [
  52461. {
  52462. name: "Small",
  52463. height: math.unit(8, "feet")
  52464. },
  52465. {
  52466. name: "Normal",
  52467. height: math.unit(11, "feet"),
  52468. default: true
  52469. },
  52470. ]
  52471. ))
  52472. characterMakers.push(() => makeCharacter(
  52473. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52474. {
  52475. front: {
  52476. height: math.unit(2 + 7/12, "feet"),
  52477. name: "Front",
  52478. image: {
  52479. source: "./media/characters/orishan/front.svg",
  52480. extra: 1058/1023,
  52481. bottom: 23/1081
  52482. }
  52483. },
  52484. back: {
  52485. height: math.unit(2 + 7/12, "feet"),
  52486. name: "Back",
  52487. image: {
  52488. source: "./media/characters/orishan/back.svg",
  52489. extra: 1058/1023,
  52490. bottom: 23/1081
  52491. }
  52492. },
  52493. },
  52494. [
  52495. {
  52496. name: "Micro",
  52497. height: math.unit(2, "cm")
  52498. },
  52499. {
  52500. name: "Normal",
  52501. height: math.unit(2 + 7/12, "feet"),
  52502. default: true
  52503. },
  52504. ]
  52505. ))
  52506. characterMakers.push(() => makeCharacter(
  52507. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52508. {
  52509. front: {
  52510. height: math.unit(3, "meters"),
  52511. weight: math.unit(508, "kg"),
  52512. name: "Front",
  52513. image: {
  52514. source: "./media/characters/seranis/front.svg",
  52515. extra: 1478/1454,
  52516. bottom: 41/1519
  52517. }
  52518. },
  52519. },
  52520. [
  52521. {
  52522. name: "Normal",
  52523. height: math.unit(3, "meters"),
  52524. default: true
  52525. },
  52526. {
  52527. name: "Macro",
  52528. height: math.unit(108, "meters")
  52529. },
  52530. {
  52531. name: "Megamacro",
  52532. height: math.unit(1250, "meters")
  52533. },
  52534. ]
  52535. ))
  52536. characterMakers.push(() => makeCharacter(
  52537. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52538. {
  52539. undressed: {
  52540. height: math.unit(5 + 3/12, "feet"),
  52541. name: "Undressed",
  52542. image: {
  52543. source: "./media/characters/ankou/undressed.svg",
  52544. extra: 1301/1213,
  52545. bottom: 87/1388
  52546. }
  52547. },
  52548. dressed: {
  52549. height: math.unit(5 + 3/12, "feet"),
  52550. name: "Dressed",
  52551. image: {
  52552. source: "./media/characters/ankou/dressed.svg",
  52553. extra: 1301/1213,
  52554. bottom: 87/1388
  52555. }
  52556. },
  52557. head: {
  52558. height: math.unit(1.61, "feet"),
  52559. name: "Head",
  52560. image: {
  52561. source: "./media/characters/ankou/head.svg"
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Normal",
  52568. height: math.unit(5 + 3/12, "feet"),
  52569. default: true
  52570. },
  52571. ]
  52572. ))
  52573. characterMakers.push(() => makeCharacter(
  52574. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52575. {
  52576. side: {
  52577. height: math.unit(6 + 3/12, "feet"),
  52578. weight: math.unit(200, "kg"),
  52579. name: "Side",
  52580. image: {
  52581. source: "./media/characters/juniper-skunktaur/side.svg",
  52582. extra: 1574/1229,
  52583. bottom: 38/1612
  52584. }
  52585. },
  52586. front: {
  52587. height: math.unit(6 + 3/12, "feet"),
  52588. weight: math.unit(200, "kg"),
  52589. name: "Front",
  52590. image: {
  52591. source: "./media/characters/juniper-skunktaur/front.svg",
  52592. extra: 1337/1278,
  52593. bottom: 22/1359
  52594. }
  52595. },
  52596. back: {
  52597. height: math.unit(6 + 3/12, "feet"),
  52598. weight: math.unit(200, "kg"),
  52599. name: "Back",
  52600. image: {
  52601. source: "./media/characters/juniper-skunktaur/back.svg",
  52602. extra: 1618/1273,
  52603. bottom: 13/1631
  52604. }
  52605. },
  52606. top: {
  52607. height: math.unit(2.62, "feet"),
  52608. weight: math.unit(200, "kg"),
  52609. name: "Top",
  52610. image: {
  52611. source: "./media/characters/juniper-skunktaur/top.svg"
  52612. }
  52613. },
  52614. },
  52615. [
  52616. {
  52617. name: "Normal",
  52618. height: math.unit(6 + 3/12, "feet"),
  52619. default: true
  52620. },
  52621. ]
  52622. ))
  52623. characterMakers.push(() => makeCharacter(
  52624. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52625. {
  52626. front: {
  52627. height: math.unit(20.5, "feet"),
  52628. name: "Front",
  52629. image: {
  52630. source: "./media/characters/rei/front.svg",
  52631. extra: 1349/1195,
  52632. bottom: 31/1380
  52633. }
  52634. },
  52635. back: {
  52636. height: math.unit(20.5, "feet"),
  52637. name: "Back",
  52638. image: {
  52639. source: "./media/characters/rei/back.svg",
  52640. extra: 1358/1204,
  52641. bottom: 22/1380
  52642. }
  52643. },
  52644. pawsDigi: {
  52645. height: math.unit(3.45, "feet"),
  52646. name: "Paws (Digi)",
  52647. image: {
  52648. source: "./media/characters/rei/paws-digi.svg"
  52649. }
  52650. },
  52651. pawsPlanti: {
  52652. height: math.unit(3.45, "feet"),
  52653. name: "Paws (Planti)",
  52654. image: {
  52655. source: "./media/characters/rei/paws-planti.svg"
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(20.5, "feet"),
  52663. default: true
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(5 + 11/12, "feet"),
  52672. name: "Front",
  52673. image: {
  52674. source: "./media/characters/carina/front.svg",
  52675. extra: 1720/1449,
  52676. bottom: 14/1734
  52677. }
  52678. },
  52679. back: {
  52680. height: math.unit(5 + 11/12, "feet"),
  52681. name: "Back",
  52682. image: {
  52683. source: "./media/characters/carina/back.svg",
  52684. extra: 1493/1445,
  52685. bottom: 17/1510
  52686. }
  52687. },
  52688. paw: {
  52689. height: math.unit(0.92, "feet"),
  52690. name: "Paw",
  52691. image: {
  52692. source: "./media/characters/carina/paw.svg"
  52693. }
  52694. },
  52695. },
  52696. [
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(5 + 11/12, "feet"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52706. {
  52707. normal_front: {
  52708. height: math.unit(4.88, "meters"),
  52709. name: "Front",
  52710. image: {
  52711. source: "./media/characters/maya/normal-front.svg",
  52712. extra: 1222/1145,
  52713. bottom: 57/1279
  52714. },
  52715. form: "normal",
  52716. default: true
  52717. },
  52718. monstrous_front: {
  52719. height: math.unit(10, "meters"),
  52720. name: "Front",
  52721. image: {
  52722. source: "./media/characters/maya/monstrous-front.svg",
  52723. extra: 1523/1109,
  52724. bottom: 113/1636
  52725. },
  52726. form: "monstrous",
  52727. extraAttributes: {
  52728. "swallowSize": {
  52729. name: "Tailmaw Bite Size",
  52730. power: 3,
  52731. type: "volume",
  52732. base: math.unit(43000, "liters")
  52733. },
  52734. }
  52735. },
  52736. taur_front: {
  52737. height: math.unit(10, "meters"),
  52738. name: "Front",
  52739. image: {
  52740. source: "./media/characters/maya/taur-front.svg",
  52741. extra: 743/506,
  52742. bottom: 101/844
  52743. },
  52744. form: "taur",
  52745. },
  52746. },
  52747. [
  52748. {
  52749. name: "Normal",
  52750. height: math.unit(4.88, "meters"),
  52751. default: true,
  52752. form: "normal"
  52753. },
  52754. {
  52755. name: "Macro",
  52756. height: math.unit(38.1, "meters"),
  52757. form: "normal"
  52758. },
  52759. {
  52760. name: "Macro+",
  52761. height: math.unit(152.4, "meters"),
  52762. form: "normal"
  52763. },
  52764. {
  52765. name: "Macro++",
  52766. height: math.unit(16.09, "km"),
  52767. form: "normal"
  52768. },
  52769. {
  52770. name: "Mega-macro",
  52771. height: math.unit(700, "megameters"),
  52772. form: "normal"
  52773. },
  52774. {
  52775. name: "Satiated",
  52776. height: math.unit(10, "meters"),
  52777. default: true,
  52778. form: "monstrous"
  52779. },
  52780. {
  52781. name: "Hungry",
  52782. height: math.unit(75, "meters"),
  52783. form: "monstrous"
  52784. },
  52785. {
  52786. name: "Ravenous",
  52787. height: math.unit(500, "meters"),
  52788. form: "monstrous"
  52789. },
  52790. {
  52791. name: "\"Normal\"",
  52792. height: math.unit(10, "meters"),
  52793. form: "taur"
  52794. },
  52795. {
  52796. name: "Macro",
  52797. height: math.unit(50, "meters"),
  52798. form: "taur"
  52799. },
  52800. ],
  52801. {
  52802. "normal": {
  52803. name: "Normal",
  52804. default: true
  52805. },
  52806. "monstrous": {
  52807. name: "Monstrous",
  52808. },
  52809. "taur": {
  52810. name: "Taur",
  52811. },
  52812. }
  52813. ))
  52814. characterMakers.push(() => makeCharacter(
  52815. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52816. {
  52817. front: {
  52818. height: math.unit(6 + 2/12, "feet"),
  52819. weight: math.unit(500, "lb"),
  52820. preyCapacity: math.unit(4, "people"),
  52821. name: "Front",
  52822. image: {
  52823. source: "./media/characters/yepir/front.svg"
  52824. }
  52825. },
  52826. side: {
  52827. height: math.unit(6 + 2/12, "feet"),
  52828. weight: math.unit(500, "lb"),
  52829. preyCapacity: math.unit(4, "people"),
  52830. name: "Side",
  52831. image: {
  52832. source: "./media/characters/yepir/side.svg"
  52833. }
  52834. },
  52835. paw: {
  52836. height: math.unit(1.05, "feet"),
  52837. name: "Paw",
  52838. image: {
  52839. source: "./media/characters/yepir/paw.svg"
  52840. }
  52841. },
  52842. },
  52843. [
  52844. {
  52845. name: "Normal",
  52846. height: math.unit(6 + 2/12, "feet"),
  52847. default: true
  52848. },
  52849. ]
  52850. ))
  52851. characterMakers.push(() => makeCharacter(
  52852. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52853. {
  52854. front: {
  52855. height: math.unit(5 + 4/12, "feet"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/russec/front.svg",
  52859. extra: 1926/1626,
  52860. bottom: 72/1998
  52861. }
  52862. },
  52863. back: {
  52864. height: math.unit(5 + 4/12, "feet"),
  52865. name: "Back",
  52866. image: {
  52867. source: "./media/characters/russec/back.svg",
  52868. extra: 1910/1591,
  52869. bottom: 48/1958
  52870. }
  52871. },
  52872. },
  52873. [
  52874. {
  52875. name: "Small",
  52876. height: math.unit(5 + 4/12, "feet")
  52877. },
  52878. {
  52879. name: "Normal",
  52880. height: math.unit(72, "feet"),
  52881. default: true
  52882. },
  52883. ]
  52884. ))
  52885. characterMakers.push(() => makeCharacter(
  52886. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52887. {
  52888. side: {
  52889. height: math.unit(12, "feet"),
  52890. name: "Side",
  52891. image: {
  52892. source: "./media/characters/cianus/side.svg",
  52893. extra: 808/526,
  52894. bottom: 61/869
  52895. }
  52896. },
  52897. },
  52898. [
  52899. {
  52900. name: "Normal",
  52901. height: math.unit(12, "feet"),
  52902. default: true
  52903. },
  52904. ]
  52905. ))
  52906. characterMakers.push(() => makeCharacter(
  52907. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52908. {
  52909. front: {
  52910. height: math.unit(9 + 6/12, "feet"),
  52911. weight: math.unit(300, "lb"),
  52912. name: "Front",
  52913. image: {
  52914. source: "./media/characters/ahab/front.svg",
  52915. extra: 1897/1868,
  52916. bottom: 121/2018
  52917. }
  52918. },
  52919. frontNsfw: {
  52920. height: math.unit(9 + 6/12, "feet"),
  52921. weight: math.unit(300, "lb"),
  52922. name: "Front-nsfw",
  52923. image: {
  52924. source: "./media/characters/ahab/front-nsfw.svg",
  52925. extra: 1897/1868,
  52926. bottom: 121/2018
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(9 + 6/12, "feet")
  52934. },
  52935. {
  52936. name: "Macro",
  52937. height: math.unit(657, "feet"),
  52938. default: true
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52944. {
  52945. front: {
  52946. height: math.unit(2.69, "meters"),
  52947. weight: math.unit(132, "kg"),
  52948. name: "Front",
  52949. image: {
  52950. source: "./media/characters/aarkus/front.svg",
  52951. extra: 1400/1231,
  52952. bottom: 34/1434
  52953. }
  52954. },
  52955. back: {
  52956. height: math.unit(2.69, "meters"),
  52957. weight: math.unit(132, "kg"),
  52958. name: "Back",
  52959. image: {
  52960. source: "./media/characters/aarkus/back.svg",
  52961. extra: 1381/1218,
  52962. bottom: 30/1411
  52963. }
  52964. },
  52965. frontNsfw: {
  52966. height: math.unit(2.69, "meters"),
  52967. weight: math.unit(132, "kg"),
  52968. name: "Front (NSFW)",
  52969. image: {
  52970. source: "./media/characters/aarkus/front-nsfw.svg",
  52971. extra: 1400/1231,
  52972. bottom: 34/1434
  52973. }
  52974. },
  52975. foot: {
  52976. height: math.unit(1.45, "feet"),
  52977. name: "Foot",
  52978. image: {
  52979. source: "./media/characters/aarkus/foot.svg"
  52980. }
  52981. },
  52982. head: {
  52983. height: math.unit(2.85, "feet"),
  52984. name: "Head",
  52985. image: {
  52986. source: "./media/characters/aarkus/head.svg"
  52987. }
  52988. },
  52989. headAlt: {
  52990. height: math.unit(3.07, "feet"),
  52991. name: "Head (Alt)",
  52992. image: {
  52993. source: "./media/characters/aarkus/head-alt.svg"
  52994. }
  52995. },
  52996. mouth: {
  52997. height: math.unit(1.25, "feet"),
  52998. name: "Mouth",
  52999. image: {
  53000. source: "./media/characters/aarkus/mouth.svg"
  53001. }
  53002. },
  53003. dick: {
  53004. height: math.unit(1.77, "feet"),
  53005. name: "Dick",
  53006. image: {
  53007. source: "./media/characters/aarkus/dick.svg"
  53008. }
  53009. },
  53010. },
  53011. [
  53012. {
  53013. name: "Normal",
  53014. height: math.unit(2.69, "meters"),
  53015. default: true
  53016. },
  53017. {
  53018. name: "Macro",
  53019. height: math.unit(269, "meters")
  53020. },
  53021. {
  53022. name: "Macro+",
  53023. height: math.unit(672.5, "meters")
  53024. },
  53025. {
  53026. name: "Megamacro",
  53027. height: math.unit(2.017, "km")
  53028. },
  53029. ]
  53030. ))
  53031. characterMakers.push(() => makeCharacter(
  53032. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53033. {
  53034. front: {
  53035. height: math.unit(23.47, "cm"),
  53036. weight: math.unit(600, "grams"),
  53037. name: "Front",
  53038. image: {
  53039. source: "./media/characters/diode/front.svg",
  53040. extra: 1778/1396,
  53041. bottom: 95/1873
  53042. }
  53043. },
  53044. side: {
  53045. height: math.unit(23.47, "cm"),
  53046. weight: math.unit(600, "grams"),
  53047. name: "Side",
  53048. image: {
  53049. source: "./media/characters/diode/side.svg",
  53050. extra: 1831/1404,
  53051. bottom: 86/1917
  53052. }
  53053. },
  53054. wings: {
  53055. height: math.unit(0.683, "feet"),
  53056. name: "Wings",
  53057. image: {
  53058. source: "./media/characters/diode/wings.svg"
  53059. }
  53060. },
  53061. },
  53062. [
  53063. {
  53064. name: "Normal",
  53065. height: math.unit(23.47, "cm"),
  53066. default: true
  53067. },
  53068. ]
  53069. ))
  53070. characterMakers.push(() => makeCharacter(
  53071. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53072. {
  53073. front: {
  53074. height: math.unit(6 + 3/12, "feet"),
  53075. weight: math.unit(250, "lb"),
  53076. name: "Front",
  53077. image: {
  53078. source: "./media/characters/reika/front.svg",
  53079. extra: 1120/1078,
  53080. bottom: 86/1206
  53081. }
  53082. },
  53083. },
  53084. [
  53085. {
  53086. name: "Normal",
  53087. height: math.unit(6 + 3/12, "feet"),
  53088. default: true
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(16 + 8/12, "feet"),
  53097. weight: math.unit(9000, "lb"),
  53098. name: "Front",
  53099. image: {
  53100. source: "./media/characters/lokuto-takama/front.svg",
  53101. extra: 1774/1632,
  53102. bottom: 147/1921
  53103. },
  53104. extraAttributes: {
  53105. "bustWidth": {
  53106. name: "Bust Width",
  53107. power: 1,
  53108. type: "length",
  53109. base: math.unit(2.4, "meters")
  53110. },
  53111. "breastWeight": {
  53112. name: "Breast Weight",
  53113. power: 3,
  53114. type: "mass",
  53115. base: math.unit(1000, "kg")
  53116. },
  53117. }
  53118. },
  53119. },
  53120. [
  53121. {
  53122. name: "Normal",
  53123. height: math.unit(16 + 8/12, "feet"),
  53124. default: true
  53125. },
  53126. ]
  53127. ))
  53128. characterMakers.push(() => makeCharacter(
  53129. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53130. {
  53131. front: {
  53132. height: math.unit(10, "cm"),
  53133. weight: math.unit(850, "grams"),
  53134. name: "Front",
  53135. image: {
  53136. source: "./media/characters/owak-bone/front.svg",
  53137. extra: 1965/1801,
  53138. bottom: 31/1996
  53139. }
  53140. },
  53141. },
  53142. [
  53143. {
  53144. name: "Normal",
  53145. height: math.unit(10, "cm"),
  53146. default: true
  53147. },
  53148. ]
  53149. ))
  53150. characterMakers.push(() => makeCharacter(
  53151. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53152. {
  53153. front: {
  53154. height: math.unit(2 + 6/12, "feet"),
  53155. weight: math.unit(9, "lb"),
  53156. name: "Front",
  53157. image: {
  53158. source: "./media/characters/muffin/front.svg",
  53159. extra: 1220/1195,
  53160. bottom: 84/1304
  53161. }
  53162. },
  53163. },
  53164. [
  53165. {
  53166. name: "Normal",
  53167. height: math.unit(2 + 6/12, "feet"),
  53168. default: true
  53169. },
  53170. ]
  53171. ))
  53172. characterMakers.push(() => makeCharacter(
  53173. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53174. {
  53175. front: {
  53176. height: math.unit(7, "feet"),
  53177. name: "Front",
  53178. image: {
  53179. source: "./media/characters/chimera/front.svg",
  53180. extra: 1752/1614,
  53181. bottom: 68/1820
  53182. }
  53183. },
  53184. },
  53185. [
  53186. {
  53187. name: "Normal",
  53188. height: math.unit(7, "feet")
  53189. },
  53190. {
  53191. name: "Gigamacro",
  53192. height: math.unit(2.9, "gigameters"),
  53193. default: true
  53194. },
  53195. {
  53196. name: "Universal",
  53197. height: math.unit(1.56e26, "yottameters")
  53198. },
  53199. ]
  53200. ))
  53201. characterMakers.push(() => makeCharacter(
  53202. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53203. {
  53204. front: {
  53205. height: math.unit(3, "feet"),
  53206. weight: math.unit(20, "lb"),
  53207. name: "Front",
  53208. image: {
  53209. source: "./media/characters/kit-fennec-fox/front.svg",
  53210. extra: 1027/932,
  53211. bottom: 16/1043
  53212. }
  53213. },
  53214. back: {
  53215. height: math.unit(3, "feet"),
  53216. weight: math.unit(20, "lb"),
  53217. name: "Back",
  53218. image: {
  53219. source: "./media/characters/kit-fennec-fox/back.svg",
  53220. extra: 1027/932,
  53221. bottom: 16/1043
  53222. }
  53223. },
  53224. },
  53225. [
  53226. {
  53227. name: "Normal",
  53228. height: math.unit(3, "feet"),
  53229. default: true
  53230. },
  53231. ]
  53232. ))
  53233. characterMakers.push(() => makeCharacter(
  53234. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53235. {
  53236. front: {
  53237. height: math.unit(167, "cm"),
  53238. name: "Front",
  53239. image: {
  53240. source: "./media/characters/blue-otter/front.svg",
  53241. extra: 1951/1920,
  53242. bottom: 31/1982
  53243. }
  53244. },
  53245. },
  53246. [
  53247. {
  53248. name: "Otter-Sized",
  53249. height: math.unit(100, "cm")
  53250. },
  53251. {
  53252. name: "Normal",
  53253. height: math.unit(167, "cm"),
  53254. default: true
  53255. },
  53256. ]
  53257. ))
  53258. characterMakers.push(() => makeCharacter(
  53259. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53260. {
  53261. front: {
  53262. height: math.unit(4 + 4/12, "feet"),
  53263. name: "Front",
  53264. image: {
  53265. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53266. extra: 1072/1067,
  53267. bottom: 117/1189
  53268. }
  53269. },
  53270. back: {
  53271. height: math.unit(4 + 4/12, "feet"),
  53272. name: "Back",
  53273. image: {
  53274. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53275. extra: 1135/1129,
  53276. bottom: 57/1192
  53277. }
  53278. },
  53279. head: {
  53280. height: math.unit(1.77, "feet"),
  53281. name: "Head",
  53282. image: {
  53283. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53284. }
  53285. },
  53286. },
  53287. [
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(4 + 4/12, "feet"),
  53291. default: true
  53292. },
  53293. ]
  53294. ))
  53295. characterMakers.push(() => makeCharacter(
  53296. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53297. {
  53298. front: {
  53299. height: math.unit(2, "inches"),
  53300. name: "Front",
  53301. image: {
  53302. source: "./media/characters/carley-hartford/front.svg",
  53303. extra: 1035/988,
  53304. bottom: 23/1058
  53305. }
  53306. },
  53307. back: {
  53308. height: math.unit(2, "inches"),
  53309. name: "Back",
  53310. image: {
  53311. source: "./media/characters/carley-hartford/back.svg",
  53312. extra: 1035/988,
  53313. bottom: 23/1058
  53314. }
  53315. },
  53316. dressed: {
  53317. height: math.unit(2, "inches"),
  53318. name: "Dressed",
  53319. image: {
  53320. source: "./media/characters/carley-hartford/dressed.svg",
  53321. extra: 651/620,
  53322. bottom: 0/651
  53323. }
  53324. },
  53325. },
  53326. [
  53327. {
  53328. name: "Micro",
  53329. height: math.unit(2, "inches"),
  53330. default: true
  53331. },
  53332. {
  53333. name: "Macro",
  53334. height: math.unit(6 + 3/12, "feet")
  53335. },
  53336. ]
  53337. ))
  53338. characterMakers.push(() => makeCharacter(
  53339. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53340. {
  53341. front: {
  53342. height: math.unit(2 + 3/12, "feet"),
  53343. weight: math.unit(15 + 7/16, "lb"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/duke/front.svg",
  53347. extra: 910/815,
  53348. bottom: 30/940
  53349. }
  53350. },
  53351. },
  53352. [
  53353. {
  53354. name: "Normal",
  53355. height: math.unit(2 + 3/12, "feet"),
  53356. default: true
  53357. },
  53358. ]
  53359. ))
  53360. characterMakers.push(() => makeCharacter(
  53361. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53362. {
  53363. front: {
  53364. height: math.unit(5 + 4/12, "feet"),
  53365. weight: math.unit(156, "lb"),
  53366. name: "Front",
  53367. image: {
  53368. source: "./media/characters/dein/front.svg",
  53369. extra: 855/815,
  53370. bottom: 48/903
  53371. }
  53372. },
  53373. side: {
  53374. height: math.unit(5 + 4/12, "feet"),
  53375. weight: math.unit(156, "lb"),
  53376. name: "side",
  53377. image: {
  53378. source: "./media/characters/dein/side.svg",
  53379. extra: 846/803,
  53380. bottom: 25/871
  53381. }
  53382. },
  53383. maw: {
  53384. height: math.unit(1.45, "feet"),
  53385. name: "Maw",
  53386. image: {
  53387. source: "./media/characters/dein/maw.svg"
  53388. }
  53389. },
  53390. },
  53391. [
  53392. {
  53393. name: "Ferret Sized",
  53394. height: math.unit(2 + 5/12, "feet")
  53395. },
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(5 + 4/12, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53405. {
  53406. front: {
  53407. height: math.unit(84 + 8/12, "feet"),
  53408. weight: math.unit(942180, "lb"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/daurine-arima/front.svg",
  53412. extra: 1989/1782,
  53413. bottom: 37/2026
  53414. }
  53415. },
  53416. side: {
  53417. height: math.unit(84 + 8/12, "feet"),
  53418. weight: math.unit(942180, "lb"),
  53419. name: "Side",
  53420. image: {
  53421. source: "./media/characters/daurine-arima/side.svg",
  53422. extra: 1997/1790,
  53423. bottom: 21/2018
  53424. }
  53425. },
  53426. back: {
  53427. height: math.unit(84 + 8/12, "feet"),
  53428. weight: math.unit(942180, "lb"),
  53429. name: "Back",
  53430. image: {
  53431. source: "./media/characters/daurine-arima/back.svg",
  53432. extra: 1992/1800,
  53433. bottom: 12/2004
  53434. }
  53435. },
  53436. head: {
  53437. height: math.unit(15.5, "feet"),
  53438. name: "Head",
  53439. image: {
  53440. source: "./media/characters/daurine-arima/head.svg"
  53441. }
  53442. },
  53443. headAlt: {
  53444. height: math.unit(19.19, "feet"),
  53445. name: "Head (Alt)",
  53446. image: {
  53447. source: "./media/characters/daurine-arima/head-alt.svg"
  53448. }
  53449. },
  53450. },
  53451. [
  53452. {
  53453. name: "Minimum height",
  53454. height: math.unit(8 + 10/12, "feet")
  53455. },
  53456. {
  53457. name: "Comfort height",
  53458. height: math.unit(19 + 6 /12, "feet")
  53459. },
  53460. {
  53461. name: "\"Normal\" height",
  53462. height: math.unit(28 + 10/12, "feet")
  53463. },
  53464. {
  53465. name: "Base height",
  53466. height: math.unit(84 + 8/12, "feet"),
  53467. default: true
  53468. },
  53469. {
  53470. name: "Mini-macro",
  53471. height: math.unit(2360, "feet")
  53472. },
  53473. {
  53474. name: "Macro",
  53475. height: math.unit(10, "miles")
  53476. },
  53477. {
  53478. name: "Goddess",
  53479. height: math.unit(9.99e40, "yottameters")
  53480. },
  53481. ]
  53482. ))
  53483. characterMakers.push(() => makeCharacter(
  53484. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53485. {
  53486. front: {
  53487. height: math.unit(2.3, "meters"),
  53488. name: "Front",
  53489. image: {
  53490. source: "./media/characters/cilenomon/front.svg",
  53491. extra: 1963/1778,
  53492. bottom: 54/2017
  53493. }
  53494. },
  53495. },
  53496. [
  53497. {
  53498. name: "Normal",
  53499. height: math.unit(2.3, "meters"),
  53500. default: true
  53501. },
  53502. {
  53503. name: "Big",
  53504. height: math.unit(5, "meters")
  53505. },
  53506. {
  53507. name: "Macro",
  53508. height: math.unit(30, "meters")
  53509. },
  53510. {
  53511. name: "True",
  53512. height: math.unit(1, "universe")
  53513. },
  53514. ]
  53515. ))
  53516. characterMakers.push(() => makeCharacter(
  53517. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53518. {
  53519. front: {
  53520. height: math.unit(5, "feet"),
  53521. name: "Front",
  53522. image: {
  53523. source: "./media/characters/sen-mink/front.svg",
  53524. extra: 1727/1675,
  53525. bottom: 35/1762
  53526. }
  53527. },
  53528. },
  53529. [
  53530. {
  53531. name: "Normal",
  53532. height: math.unit(5, "feet"),
  53533. default: true
  53534. },
  53535. ]
  53536. ))
  53537. characterMakers.push(() => makeCharacter(
  53538. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53539. {
  53540. front: {
  53541. height: math.unit(5.42999, "feet"),
  53542. weight: math.unit(100, "lb"),
  53543. name: "Front",
  53544. image: {
  53545. source: "./media/characters/ophois/front.svg",
  53546. extra: 1429/1286,
  53547. bottom: 60/1489
  53548. }
  53549. },
  53550. },
  53551. [
  53552. {
  53553. name: "Normal",
  53554. height: math.unit(5.42999, "feet"),
  53555. default: true
  53556. },
  53557. ]
  53558. ))
  53559. characterMakers.push(() => makeCharacter(
  53560. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53561. {
  53562. front: {
  53563. height: math.unit(2, "meters"),
  53564. name: "Front",
  53565. image: {
  53566. source: "./media/characters/riley/front.svg",
  53567. extra: 1779/1754,
  53568. bottom: 139/1918
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(2, "meters"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53582. {
  53583. front: {
  53584. height: math.unit(6 + 2/12, "feet"),
  53585. weight: math.unit(195, "lb"),
  53586. preyCapacity: math.unit(6, "people"),
  53587. name: "Front",
  53588. image: {
  53589. source: "./media/characters/shuken-flash/front.svg",
  53590. extra: 1905/1739,
  53591. bottom: 65/1970
  53592. }
  53593. },
  53594. back: {
  53595. height: math.unit(6 + 2/12, "feet"),
  53596. weight: math.unit(195, "lb"),
  53597. preyCapacity: math.unit(6, "people"),
  53598. name: "Back",
  53599. image: {
  53600. source: "./media/characters/shuken-flash/back.svg",
  53601. extra: 1912/1751,
  53602. bottom: 13/1925
  53603. }
  53604. },
  53605. },
  53606. [
  53607. {
  53608. name: "Normal",
  53609. height: math.unit(6 + 2/12, "feet"),
  53610. default: true
  53611. },
  53612. ]
  53613. ))
  53614. characterMakers.push(() => makeCharacter(
  53615. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53616. {
  53617. front: {
  53618. height: math.unit(5 + 9/12, "feet"),
  53619. weight: math.unit(150, "lb"),
  53620. name: "Front",
  53621. image: {
  53622. source: "./media/characters/plat/front.svg",
  53623. extra: 1816/1703,
  53624. bottom: 43/1859
  53625. }
  53626. },
  53627. side: {
  53628. height: math.unit(5 + 9/12, "feet"),
  53629. weight: math.unit(300, "lb"),
  53630. name: "Side",
  53631. image: {
  53632. source: "./media/characters/plat/side.svg",
  53633. extra: 1824/1699,
  53634. bottom: 18/1842
  53635. }
  53636. },
  53637. },
  53638. [
  53639. {
  53640. name: "Normal",
  53641. height: math.unit(5 + 9/12, "feet"),
  53642. default: true
  53643. },
  53644. ]
  53645. ))
  53646. characterMakers.push(() => makeCharacter(
  53647. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53648. {
  53649. front: {
  53650. height: math.unit(9, "feet"),
  53651. weight: math.unit(1800, "lb"),
  53652. name: "Front",
  53653. image: {
  53654. source: "./media/characters/elaine/front.svg",
  53655. extra: 1833/1354,
  53656. bottom: 25/1858
  53657. }
  53658. },
  53659. back: {
  53660. height: math.unit(8.8, "feet"),
  53661. weight: math.unit(1800, "lb"),
  53662. name: "Back",
  53663. image: {
  53664. source: "./media/characters/elaine/back.svg",
  53665. extra: 1641/1233,
  53666. bottom: 53/1694
  53667. }
  53668. },
  53669. },
  53670. [
  53671. {
  53672. name: "Normal",
  53673. height: math.unit(9, "feet"),
  53674. default: true
  53675. },
  53676. ]
  53677. ))
  53678. characterMakers.push(() => makeCharacter(
  53679. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53680. {
  53681. front: {
  53682. height: math.unit(17 + 9/12, "feet"),
  53683. weight: math.unit(8000, "lb"),
  53684. name: "Front",
  53685. image: {
  53686. source: "./media/characters/vera-raven/front.svg",
  53687. extra: 1457/1412,
  53688. bottom: 121/1578
  53689. }
  53690. },
  53691. side: {
  53692. height: math.unit(17 + 9/12, "feet"),
  53693. weight: math.unit(8000, "lb"),
  53694. name: "Side",
  53695. image: {
  53696. source: "./media/characters/vera-raven/side.svg",
  53697. extra: 1510/1464,
  53698. bottom: 54/1564
  53699. }
  53700. },
  53701. },
  53702. [
  53703. {
  53704. name: "Normal",
  53705. height: math.unit(17 + 9/12, "feet"),
  53706. default: true
  53707. },
  53708. ]
  53709. ))
  53710. characterMakers.push(() => makeCharacter(
  53711. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53712. {
  53713. dressed: {
  53714. height: math.unit(6 + 9/12, "feet"),
  53715. name: "Dressed",
  53716. image: {
  53717. source: "./media/characters/nakisha/dressed.svg",
  53718. extra: 1909/1757,
  53719. bottom: 48/1957
  53720. }
  53721. },
  53722. nude: {
  53723. height: math.unit(6 + 9/12, "feet"),
  53724. name: "Nude",
  53725. image: {
  53726. source: "./media/characters/nakisha/nude.svg",
  53727. extra: 1917/1765,
  53728. bottom: 34/1951
  53729. }
  53730. },
  53731. },
  53732. [
  53733. {
  53734. name: "Normal",
  53735. height: math.unit(6 + 9/12, "feet"),
  53736. default: true
  53737. },
  53738. ]
  53739. ))
  53740. characterMakers.push(() => makeCharacter(
  53741. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53742. {
  53743. front: {
  53744. height: math.unit(87, "meters"),
  53745. name: "Front",
  53746. image: {
  53747. source: "./media/characters/serafin/front.svg",
  53748. extra: 1919/1776,
  53749. bottom: 65/1984
  53750. }
  53751. },
  53752. },
  53753. [
  53754. {
  53755. name: "Normal",
  53756. height: math.unit(87, "meters"),
  53757. default: true
  53758. },
  53759. ]
  53760. ))
  53761. characterMakers.push(() => makeCharacter(
  53762. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53763. {
  53764. front: {
  53765. height: math.unit(6, "feet"),
  53766. weight: math.unit(200, "lb"),
  53767. name: "Front",
  53768. image: {
  53769. source: "./media/characters/poptart/front.svg",
  53770. extra: 615/583,
  53771. bottom: 23/638
  53772. }
  53773. },
  53774. back: {
  53775. height: math.unit(6, "feet"),
  53776. weight: math.unit(200, "lb"),
  53777. name: "Back",
  53778. image: {
  53779. source: "./media/characters/poptart/back.svg",
  53780. extra: 617/584,
  53781. bottom: 22/639
  53782. }
  53783. },
  53784. frontNsfw: {
  53785. height: math.unit(6, "feet"),
  53786. weight: math.unit(200, "lb"),
  53787. name: "Front (NSFW)",
  53788. image: {
  53789. source: "./media/characters/poptart/front-nsfw.svg",
  53790. extra: 615/583,
  53791. bottom: 23/638
  53792. }
  53793. },
  53794. backNsfw: {
  53795. height: math.unit(6, "feet"),
  53796. weight: math.unit(200, "lb"),
  53797. name: "Back (NSFW)",
  53798. image: {
  53799. source: "./media/characters/poptart/back-nsfw.svg",
  53800. extra: 617/584,
  53801. bottom: 22/639
  53802. }
  53803. },
  53804. hand: {
  53805. height: math.unit(1.14, "feet"),
  53806. name: "Hand",
  53807. image: {
  53808. source: "./media/characters/poptart/hand.svg"
  53809. }
  53810. },
  53811. foot: {
  53812. height: math.unit(1.5, "feet"),
  53813. name: "Foot",
  53814. image: {
  53815. source: "./media/characters/poptart/foot.svg"
  53816. }
  53817. },
  53818. },
  53819. [
  53820. {
  53821. name: "Normal",
  53822. height: math.unit(6, "feet"),
  53823. default: true
  53824. },
  53825. {
  53826. name: "Grande",
  53827. height: math.unit(350, "feet")
  53828. },
  53829. {
  53830. name: "Massif",
  53831. height: math.unit(967, "feet")
  53832. },
  53833. ]
  53834. ))
  53835. characterMakers.push(() => makeCharacter(
  53836. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53837. {
  53838. hyenaSide: {
  53839. height: math.unit(120, "cm"),
  53840. weight: math.unit(120, "lb"),
  53841. name: "Side",
  53842. image: {
  53843. source: "./media/characters/trance/hyena-side.svg",
  53844. extra: 998/904,
  53845. bottom: 76/1074
  53846. }
  53847. },
  53848. },
  53849. [
  53850. {
  53851. name: "Normal",
  53852. height: math.unit(120, "cm"),
  53853. default: true
  53854. },
  53855. {
  53856. name: "Dire",
  53857. height: math.unit(230, "cm")
  53858. },
  53859. {
  53860. name: "Macro",
  53861. height: math.unit(37, "feet")
  53862. },
  53863. ]
  53864. ))
  53865. characterMakers.push(() => makeCharacter(
  53866. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53867. {
  53868. front: {
  53869. height: math.unit(6 + 3/12, "feet"),
  53870. name: "Front",
  53871. image: {
  53872. source: "./media/characters/michael-berretta/front.svg",
  53873. extra: 515/494,
  53874. bottom: 20/535
  53875. }
  53876. },
  53877. back: {
  53878. height: math.unit(6 + 3/12, "feet"),
  53879. name: "Back",
  53880. image: {
  53881. source: "./media/characters/michael-berretta/back.svg",
  53882. extra: 520/497,
  53883. bottom: 21/541
  53884. }
  53885. },
  53886. frontNsfw: {
  53887. height: math.unit(6 + 3/12, "feet"),
  53888. name: "Front (NSFW)",
  53889. image: {
  53890. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53891. extra: 515/494,
  53892. bottom: 20/535
  53893. }
  53894. },
  53895. dick: {
  53896. height: math.unit(1, "feet"),
  53897. name: "Dick",
  53898. image: {
  53899. source: "./media/characters/michael-berretta/dick.svg"
  53900. }
  53901. },
  53902. },
  53903. [
  53904. {
  53905. name: "Normal",
  53906. height: math.unit(6 + 3/12, "feet"),
  53907. default: true
  53908. },
  53909. {
  53910. name: "Big",
  53911. height: math.unit(12, "feet")
  53912. },
  53913. {
  53914. name: "Macro",
  53915. height: math.unit(187.5, "feet")
  53916. },
  53917. ]
  53918. ))
  53919. characterMakers.push(() => makeCharacter(
  53920. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53921. {
  53922. front: {
  53923. height: math.unit(9 + 9/12, "feet"),
  53924. weight: math.unit(1244, "lb"),
  53925. name: "Front",
  53926. image: {
  53927. source: "./media/characters/stella-edgecomb/front.svg",
  53928. extra: 1835/1706,
  53929. bottom: 49/1884
  53930. }
  53931. },
  53932. pen: {
  53933. height: math.unit(0.95, "feet"),
  53934. name: "Pen",
  53935. image: {
  53936. source: "./media/characters/stella-edgecomb/pen.svg"
  53937. }
  53938. },
  53939. },
  53940. [
  53941. {
  53942. name: "Cozy Bear",
  53943. height: math.unit(0.5, "inches")
  53944. },
  53945. {
  53946. name: "Normal",
  53947. height: math.unit(9 + 9/12, "feet"),
  53948. default: true
  53949. },
  53950. {
  53951. name: "Giga Bear",
  53952. height: math.unit(1, "mile")
  53953. },
  53954. {
  53955. name: "Great Bear",
  53956. height: math.unit(53, "miles")
  53957. },
  53958. {
  53959. name: "Goddess Bear",
  53960. height: math.unit(40000, "miles")
  53961. },
  53962. {
  53963. name: "Sun Bear",
  53964. height: math.unit(900000, "miles")
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53970. {
  53971. anthroFront: {
  53972. height: math.unit(556, "cm"),
  53973. weight: math.unit(2650, "kg"),
  53974. preyCapacity: math.unit(3, "people"),
  53975. name: "Front",
  53976. image: {
  53977. source: "./media/characters/ash´iika/front.svg",
  53978. extra: 710/673,
  53979. bottom: 15/725
  53980. },
  53981. form: "anthro",
  53982. default: true
  53983. },
  53984. anthroSide: {
  53985. height: math.unit(556, "cm"),
  53986. weight: math.unit(2650, "kg"),
  53987. preyCapacity: math.unit(3, "people"),
  53988. name: "Side",
  53989. image: {
  53990. source: "./media/characters/ash´iika/side.svg",
  53991. extra: 696/676,
  53992. bottom: 13/709
  53993. },
  53994. form: "anthro"
  53995. },
  53996. anthroDressed: {
  53997. height: math.unit(556, "cm"),
  53998. weight: math.unit(2650, "kg"),
  53999. preyCapacity: math.unit(3, "people"),
  54000. name: "Dressed",
  54001. image: {
  54002. source: "./media/characters/ash´iika/dressed.svg",
  54003. extra: 710/673,
  54004. bottom: 15/725
  54005. },
  54006. form: "anthro"
  54007. },
  54008. anthroHead: {
  54009. height: math.unit(3.5, "feet"),
  54010. name: "Head",
  54011. image: {
  54012. source: "./media/characters/ash´iika/head.svg",
  54013. extra: 348/291,
  54014. bottom: 45/393
  54015. },
  54016. form: "anthro"
  54017. },
  54018. feralSide: {
  54019. height: math.unit(870, "cm"),
  54020. weight: math.unit(17500, "kg"),
  54021. preyCapacity: math.unit(15, "people"),
  54022. name: "Side",
  54023. image: {
  54024. source: "./media/characters/ash´iika/feral.svg",
  54025. extra: 595/199,
  54026. bottom: 7/602
  54027. },
  54028. form: "feral",
  54029. default: true,
  54030. },
  54031. },
  54032. [
  54033. {
  54034. name: "Normal",
  54035. height: math.unit(556, "cm"),
  54036. default: true,
  54037. form: "anthro"
  54038. },
  54039. {
  54040. name: "Macro",
  54041. height: math.unit(88, "meters"),
  54042. form: "anthro"
  54043. },
  54044. {
  54045. name: "Normal",
  54046. height: math.unit(870, "cm"),
  54047. default: true,
  54048. form: "feral"
  54049. },
  54050. {
  54051. name: "Large",
  54052. height: math.unit(25, "meters"),
  54053. form: "feral"
  54054. },
  54055. ],
  54056. {
  54057. "anthro": {
  54058. name: "Anthro",
  54059. default: true
  54060. },
  54061. "feral": {
  54062. name: "Feral",
  54063. },
  54064. }
  54065. ))
  54066. characterMakers.push(() => makeCharacter(
  54067. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54068. {
  54069. front: {
  54070. height: math.unit(10, "feet"),
  54071. weight: math.unit(800, "lb"),
  54072. name: "Front",
  54073. image: {
  54074. source: "./media/characters/yen/front.svg",
  54075. extra: 443/411,
  54076. bottom: 6/449
  54077. }
  54078. },
  54079. sleeping: {
  54080. height: math.unit(10, "feet"),
  54081. weight: math.unit(800, "lb"),
  54082. name: "Sleeping",
  54083. image: {
  54084. source: "./media/characters/yen/sleeping.svg",
  54085. extra: 470/422,
  54086. bottom: 0/470
  54087. }
  54088. },
  54089. head: {
  54090. height: math.unit(2.2, "feet"),
  54091. name: "Head",
  54092. image: {
  54093. source: "./media/characters/yen/head.svg"
  54094. }
  54095. },
  54096. headAlt: {
  54097. height: math.unit(2.1, "feet"),
  54098. name: "Head (Alt)",
  54099. image: {
  54100. source: "./media/characters/yen/head-alt.svg"
  54101. }
  54102. },
  54103. },
  54104. [
  54105. {
  54106. name: "Normal",
  54107. height: math.unit(10, "feet"),
  54108. default: true
  54109. },
  54110. ]
  54111. ))
  54112. characterMakers.push(() => makeCharacter(
  54113. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54114. {
  54115. front: {
  54116. height: math.unit(12, "feet"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/citra/front.svg",
  54120. extra: 1950/1710,
  54121. bottom: 47/1997
  54122. }
  54123. },
  54124. },
  54125. [
  54126. {
  54127. name: "Normal",
  54128. height: math.unit(12, "feet"),
  54129. default: true
  54130. },
  54131. ]
  54132. ))
  54133. characterMakers.push(() => makeCharacter(
  54134. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54135. {
  54136. side: {
  54137. height: math.unit(7 + 10/12, "feet"),
  54138. name: "Side",
  54139. image: {
  54140. source: "./media/characters/sholstim/side.svg",
  54141. extra: 786/682,
  54142. bottom: 40/826
  54143. }
  54144. },
  54145. },
  54146. [
  54147. {
  54148. name: "Normal",
  54149. height: math.unit(7 + 10/12, "feet"),
  54150. default: true
  54151. },
  54152. ]
  54153. ))
  54154. characterMakers.push(() => makeCharacter(
  54155. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54156. {
  54157. front: {
  54158. height: math.unit(3.10, "meters"),
  54159. name: "Front",
  54160. image: {
  54161. source: "./media/characters/aggyn/front.svg",
  54162. extra: 1188/963,
  54163. bottom: 24/1212
  54164. }
  54165. },
  54166. },
  54167. [
  54168. {
  54169. name: "Normal",
  54170. height: math.unit(3.10, "meters"),
  54171. default: true
  54172. },
  54173. ]
  54174. ))
  54175. characterMakers.push(() => makeCharacter(
  54176. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54177. {
  54178. front: {
  54179. height: math.unit(7 + 5/12, "feet"),
  54180. weight: math.unit(687, "lb"),
  54181. name: "Front",
  54182. image: {
  54183. source: "./media/characters/alsandair-hergenroether/front.svg",
  54184. extra: 1251/1186,
  54185. bottom: 75/1326
  54186. }
  54187. },
  54188. back: {
  54189. height: math.unit(7 + 5/12, "feet"),
  54190. weight: math.unit(687, "lb"),
  54191. name: "Back",
  54192. image: {
  54193. source: "./media/characters/alsandair-hergenroether/back.svg",
  54194. extra: 1290/1229,
  54195. bottom: 17/1307
  54196. }
  54197. },
  54198. },
  54199. [
  54200. {
  54201. name: "Max Compression",
  54202. height: math.unit(7 + 5/12, "feet"),
  54203. default: true
  54204. },
  54205. {
  54206. name: "\"Normal\"",
  54207. height: math.unit(2, "universes")
  54208. },
  54209. ]
  54210. ))
  54211. characterMakers.push(() => makeCharacter(
  54212. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54213. {
  54214. front: {
  54215. height: math.unit(4 + 1/12, "feet"),
  54216. weight: math.unit(92, "lb"),
  54217. name: "Front",
  54218. image: {
  54219. source: "./media/characters/ie/front.svg",
  54220. extra: 1585/1352,
  54221. bottom: 91/1676
  54222. }
  54223. },
  54224. },
  54225. [
  54226. {
  54227. name: "Normal",
  54228. height: math.unit(4 + 1/12, "feet"),
  54229. default: true
  54230. },
  54231. ]
  54232. ))
  54233. characterMakers.push(() => makeCharacter(
  54234. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54235. {
  54236. anthro: {
  54237. height: math.unit(6, "feet"),
  54238. weight: math.unit(150, "lb"),
  54239. name: "Front",
  54240. image: {
  54241. source: "./media/characters/willow/anthro.svg",
  54242. extra: 1073/986,
  54243. bottom: 34/1107
  54244. },
  54245. form: "anthro",
  54246. default: true
  54247. },
  54248. taur: {
  54249. height: math.unit(6, "feet"),
  54250. weight: math.unit(150, "lb"),
  54251. name: "Side",
  54252. image: {
  54253. source: "./media/characters/willow/taur.svg",
  54254. extra: 647/512,
  54255. bottom: 136/783
  54256. },
  54257. form: "taur",
  54258. default: true
  54259. },
  54260. },
  54261. [
  54262. {
  54263. name: "Humanoid",
  54264. height: math.unit(2.7, "meters"),
  54265. form: "anthro"
  54266. },
  54267. {
  54268. name: "Normal",
  54269. height: math.unit(9, "meters"),
  54270. form: "anthro",
  54271. default: true
  54272. },
  54273. {
  54274. name: "Humanoid",
  54275. height: math.unit(2.1, "meters"),
  54276. form: "taur"
  54277. },
  54278. {
  54279. name: "Normal",
  54280. height: math.unit(7, "meters"),
  54281. form: "taur",
  54282. default: true
  54283. },
  54284. ],
  54285. {
  54286. "anthro": {
  54287. name: "Anthro",
  54288. default: true
  54289. },
  54290. "taur": {
  54291. name: "Taur",
  54292. },
  54293. }
  54294. ))
  54295. characterMakers.push(() => makeCharacter(
  54296. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54297. {
  54298. front: {
  54299. height: math.unit(2 + 5/12, "feet"),
  54300. name: "Front",
  54301. image: {
  54302. source: "./media/characters/kyan/front.svg",
  54303. extra: 460/334,
  54304. bottom: 23/483
  54305. },
  54306. extraAttributes: {
  54307. "toeLength": {
  54308. name: "Toe Length",
  54309. power: 1,
  54310. type: "length",
  54311. base: math.unit(7, "cm")
  54312. },
  54313. "toeclawLength": {
  54314. name: "Toeclaw Length",
  54315. power: 1,
  54316. type: "length",
  54317. base: math.unit(4.7, "cm")
  54318. },
  54319. "earHeight": {
  54320. name: "Ear Height",
  54321. power: 1,
  54322. type: "length",
  54323. base: math.unit(14.1, "cm")
  54324. },
  54325. }
  54326. },
  54327. paws: {
  54328. height: math.unit(0.45, "feet"),
  54329. name: "Paws",
  54330. image: {
  54331. source: "./media/characters/kyan/paws.svg",
  54332. extra: 581/581,
  54333. bottom: 114/695
  54334. }
  54335. },
  54336. },
  54337. [
  54338. {
  54339. name: "Normal",
  54340. height: math.unit(2 + 5/12, "feet"),
  54341. default: true
  54342. },
  54343. ]
  54344. ))
  54345. characterMakers.push(() => makeCharacter(
  54346. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54347. {
  54348. front: {
  54349. height: math.unit(2 + 2/3, "feet"),
  54350. name: "Front",
  54351. image: {
  54352. source: "./media/characters/xazzon/front.svg",
  54353. extra: 1109/984,
  54354. bottom: 42/1151
  54355. }
  54356. },
  54357. back: {
  54358. height: math.unit(2 + 2/3, "feet"),
  54359. name: "Back",
  54360. image: {
  54361. source: "./media/characters/xazzon/back.svg",
  54362. extra: 1095/971,
  54363. bottom: 23/1118
  54364. }
  54365. },
  54366. },
  54367. [
  54368. {
  54369. name: "Normal",
  54370. height: math.unit(2 + 2/3, "feet"),
  54371. default: true
  54372. },
  54373. ]
  54374. ))
  54375. characterMakers.push(() => makeCharacter(
  54376. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54377. {
  54378. dressed: {
  54379. height: math.unit(5 + 7/12, "feet"),
  54380. weight: math.unit(173, "lb"),
  54381. name: "Dressed",
  54382. image: {
  54383. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54384. extra: 3262/2862,
  54385. bottom: 188/3450
  54386. }
  54387. },
  54388. undressed: {
  54389. height: math.unit(5 + 7/12, "feet"),
  54390. weight: math.unit(173, "lb"),
  54391. name: "Undressed",
  54392. image: {
  54393. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54394. extra: 3262/2862,
  54395. bottom: 188/3450
  54396. }
  54397. },
  54398. },
  54399. [
  54400. {
  54401. name: "The void",
  54402. height: math.unit(7.29193e-34, "angstroms")
  54403. },
  54404. {
  54405. name: "Uh-Oh.",
  54406. height: math.unit(5.734e-7, "angstroms")
  54407. },
  54408. {
  54409. name: "Pico",
  54410. height: math.unit(0.876, "angstroms")
  54411. },
  54412. {
  54413. name: "Nano",
  54414. height: math.unit(0.000134200, "mm")
  54415. },
  54416. {
  54417. name: "Micro",
  54418. height: math.unit(0.0673020, "mm")
  54419. },
  54420. {
  54421. name: "Tiny",
  54422. height: math.unit(2.4, "mm")
  54423. },
  54424. {
  54425. name: "Actual Normal",
  54426. height: math.unit(3, "inches"),
  54427. default: true
  54428. },
  54429. {
  54430. name: "Normal",
  54431. height: math.unit(5 + 8/12, "feet")
  54432. },
  54433. {
  54434. name: "Giant",
  54435. height: math.unit(12, "feet")
  54436. },
  54437. {
  54438. name: "City Ruler",
  54439. height: math.unit(270, "meters")
  54440. },
  54441. {
  54442. name: "Giga",
  54443. height: math.unit(1117.6, "km")
  54444. },
  54445. {
  54446. name: "All-Powerful Queen",
  54447. height: math.unit(70.8, "gigameters")
  54448. },
  54449. {
  54450. name: "'Goddess'",
  54451. height: math.unit(600, "yottameters")
  54452. },
  54453. {
  54454. name: "Biggest!",
  54455. height: math.unit(4.23e5, "yottameters")
  54456. },
  54457. ]
  54458. ))
  54459. characterMakers.push(() => makeCharacter(
  54460. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54461. {
  54462. front: {
  54463. height: math.unit(8, "feet"),
  54464. weight: math.unit(300, "lb"),
  54465. name: "Front",
  54466. image: {
  54467. source: "./media/characters/khyla-shadowsong/front.svg",
  54468. extra: 861/798,
  54469. bottom: 32/893
  54470. }
  54471. },
  54472. side: {
  54473. height: math.unit(8, "feet"),
  54474. weight: math.unit(300, "lb"),
  54475. name: "Side",
  54476. image: {
  54477. source: "./media/characters/khyla-shadowsong/side.svg",
  54478. extra: 790/750,
  54479. bottom: 87/877
  54480. }
  54481. },
  54482. back: {
  54483. height: math.unit(8, "feet"),
  54484. weight: math.unit(300, "lb"),
  54485. name: "Back",
  54486. image: {
  54487. source: "./media/characters/khyla-shadowsong/back.svg",
  54488. extra: 855/808,
  54489. bottom: 14/869
  54490. }
  54491. },
  54492. head: {
  54493. height: math.unit(2.7, "feet"),
  54494. name: "Head",
  54495. image: {
  54496. source: "./media/characters/khyla-shadowsong/head.svg"
  54497. }
  54498. },
  54499. },
  54500. [
  54501. {
  54502. name: "Micro",
  54503. height: math.unit(6, "inches")
  54504. },
  54505. {
  54506. name: "Normal",
  54507. height: math.unit(8, "feet"),
  54508. default: true
  54509. },
  54510. ]
  54511. ))
  54512. characterMakers.push(() => makeCharacter(
  54513. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54514. {
  54515. hyperFront: {
  54516. height: math.unit(9 + 4/12, "feet"),
  54517. weight: math.unit(2000, "lb"),
  54518. name: "Front",
  54519. image: {
  54520. source: "./media/characters/tiden/hyper-front.svg",
  54521. extra: 400/382,
  54522. bottom: 6/406
  54523. },
  54524. form: "hyper",
  54525. },
  54526. regularFront: {
  54527. height: math.unit(7 + 10/12, "feet"),
  54528. weight: math.unit(470, "lb"),
  54529. name: "Front",
  54530. image: {
  54531. source: "./media/characters/tiden/regular-front.svg",
  54532. extra: 468/442,
  54533. bottom: 6/474
  54534. },
  54535. form: "regular",
  54536. },
  54537. },
  54538. [
  54539. {
  54540. name: "Normal",
  54541. height: math.unit(9 + 4/12, "feet"),
  54542. default: true,
  54543. form: "hyper"
  54544. },
  54545. {
  54546. name: "Normal",
  54547. height: math.unit(7 + 10/12, "feet"),
  54548. default: true,
  54549. form: "regular"
  54550. },
  54551. ],
  54552. {
  54553. "hyper": {
  54554. name: "Hyper",
  54555. default: true
  54556. },
  54557. "regular": {
  54558. name: "Regular",
  54559. },
  54560. }
  54561. ))
  54562. characterMakers.push(() => makeCharacter(
  54563. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54564. {
  54565. side: {
  54566. height: math.unit(6, "feet"),
  54567. weight: math.unit(150, "lb"),
  54568. name: "Side",
  54569. image: {
  54570. source: "./media/characters/jason-crowe/side.svg",
  54571. extra: 1771/766,
  54572. bottom: 219/1990
  54573. }
  54574. },
  54575. },
  54576. [
  54577. {
  54578. name: "Pocket Gryphon",
  54579. height: math.unit(6, "cm")
  54580. },
  54581. {
  54582. name: "Raven",
  54583. height: math.unit(60, "cm")
  54584. },
  54585. {
  54586. name: "Normal",
  54587. height: math.unit(1, "meter"),
  54588. default: true
  54589. },
  54590. ]
  54591. ))
  54592. characterMakers.push(() => makeCharacter(
  54593. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54594. {
  54595. front: {
  54596. height: math.unit(9 + 6/12, "feet"),
  54597. weight: math.unit(1100, "lb"),
  54598. name: "Front",
  54599. image: {
  54600. source: "./media/characters/django/front.svg",
  54601. extra: 1231/1136,
  54602. bottom: 34/1265
  54603. }
  54604. },
  54605. side: {
  54606. height: math.unit(9 + 6/12, "feet"),
  54607. weight: math.unit(1100, "lb"),
  54608. name: "Side",
  54609. image: {
  54610. source: "./media/characters/django/side.svg",
  54611. extra: 1267/1174,
  54612. bottom: 9/1276
  54613. }
  54614. },
  54615. },
  54616. [
  54617. {
  54618. name: "Normal",
  54619. height: math.unit(9 + 6/12, "feet"),
  54620. default: true
  54621. },
  54622. {
  54623. name: "Macro 1",
  54624. height: math.unit(50, "feet")
  54625. },
  54626. {
  54627. name: "Macro 2",
  54628. height: math.unit(500, "feet")
  54629. },
  54630. {
  54631. name: "Mega Macro",
  54632. height: math.unit(5300, "feet")
  54633. },
  54634. ]
  54635. ))
  54636. characterMakers.push(() => makeCharacter(
  54637. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54638. {
  54639. frontSfw: {
  54640. height: math.unit(120, "cm"),
  54641. weight: math.unit(15, "kg"),
  54642. name: "Front (SFW)",
  54643. image: {
  54644. source: "./media/characters/eri/front-sfw.svg",
  54645. extra: 1014/939,
  54646. bottom: 37/1051
  54647. },
  54648. form: "moth",
  54649. },
  54650. frontNsfw: {
  54651. height: math.unit(120, "cm"),
  54652. weight: math.unit(15, "kg"),
  54653. name: "Front (NSFW)",
  54654. image: {
  54655. source: "./media/characters/eri/front-nsfw.svg",
  54656. extra: 1014/939,
  54657. bottom: 37/1051
  54658. },
  54659. form: "moth",
  54660. default: true
  54661. },
  54662. egg: {
  54663. height: math.unit(10, "cm"),
  54664. name: "Egg",
  54665. image: {
  54666. source: "./media/characters/eri/egg.svg"
  54667. },
  54668. form: "egg",
  54669. default: true
  54670. },
  54671. },
  54672. [
  54673. {
  54674. name: "Normal",
  54675. height: math.unit(120, "cm"),
  54676. default: true,
  54677. form: "moth"
  54678. },
  54679. {
  54680. name: "Normal",
  54681. height: math.unit(10, "cm"),
  54682. default: true,
  54683. form: "egg"
  54684. },
  54685. ],
  54686. {
  54687. "moth": {
  54688. name: "Moth",
  54689. default: true
  54690. },
  54691. "egg": {
  54692. name: "Egg",
  54693. },
  54694. }
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54698. {
  54699. front: {
  54700. height: math.unit(200, "feet"),
  54701. name: "Front",
  54702. image: {
  54703. source: "./media/characters/bishop-dowser/front.svg",
  54704. extra: 933/868,
  54705. bottom: 106/1039
  54706. }
  54707. },
  54708. },
  54709. [
  54710. {
  54711. name: "Giant",
  54712. height: math.unit(200, "feet"),
  54713. default: true
  54714. },
  54715. ]
  54716. ))
  54717. characterMakers.push(() => makeCharacter(
  54718. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54719. {
  54720. front: {
  54721. height: math.unit(2, "meters"),
  54722. preyCapacity: math.unit(3, "people"),
  54723. name: "Front",
  54724. image: {
  54725. source: "./media/characters/fryra/front.svg",
  54726. extra: 1025/948,
  54727. bottom: 30/1055
  54728. },
  54729. extraAttributes: {
  54730. "breastVolume": {
  54731. name: "Breast Volume",
  54732. power: 3,
  54733. type: "volume",
  54734. base: math.unit(8, "liters")
  54735. },
  54736. }
  54737. },
  54738. back: {
  54739. height: math.unit(2, "meters"),
  54740. preyCapacity: math.unit(3, "people"),
  54741. name: "Back",
  54742. image: {
  54743. source: "./media/characters/fryra/back.svg",
  54744. extra: 993/938,
  54745. bottom: 38/1031
  54746. },
  54747. extraAttributes: {
  54748. "breastVolume": {
  54749. name: "Breast Volume",
  54750. power: 3,
  54751. type: "volume",
  54752. base: math.unit(8, "liters")
  54753. },
  54754. }
  54755. },
  54756. head: {
  54757. height: math.unit(1.33, "feet"),
  54758. name: "Head",
  54759. image: {
  54760. source: "./media/characters/fryra/head.svg"
  54761. }
  54762. },
  54763. maw: {
  54764. height: math.unit(0.56, "feet"),
  54765. name: "Maw",
  54766. image: {
  54767. source: "./media/characters/fryra/maw.svg"
  54768. }
  54769. },
  54770. },
  54771. [
  54772. {
  54773. name: "Micro",
  54774. height: math.unit(5, "cm")
  54775. },
  54776. {
  54777. name: "Normal",
  54778. height: math.unit(2, "meters"),
  54779. default: true
  54780. },
  54781. {
  54782. name: "Small Macro",
  54783. height: math.unit(8, "meters")
  54784. },
  54785. {
  54786. name: "Macro",
  54787. height: math.unit(50, "meters")
  54788. },
  54789. {
  54790. name: "Megamacro",
  54791. height: math.unit(1, "km")
  54792. },
  54793. {
  54794. name: "Planetary",
  54795. height: math.unit(300000, "km")
  54796. },
  54797. {
  54798. name: "Universal",
  54799. height: math.unit(250, "lightyears")
  54800. },
  54801. {
  54802. name: "Fabric of Reality",
  54803. height: math.unit(1000, "multiverses")
  54804. },
  54805. ]
  54806. ))
  54807. characterMakers.push(() => makeCharacter(
  54808. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54809. {
  54810. frontDressed: {
  54811. height: math.unit(6 + 2/12, "feet"),
  54812. name: "Front (Dressed)",
  54813. image: {
  54814. source: "./media/characters/fiera/front-dressed.svg",
  54815. extra: 1883/1793,
  54816. bottom: 70/1953
  54817. }
  54818. },
  54819. backDressed: {
  54820. height: math.unit(6 + 2/12, "feet"),
  54821. name: "Back (Dressed)",
  54822. image: {
  54823. source: "./media/characters/fiera/back-dressed.svg",
  54824. extra: 1847/1780,
  54825. bottom: 70/1917
  54826. }
  54827. },
  54828. frontNude: {
  54829. height: math.unit(6 + 2/12, "feet"),
  54830. name: "Front (Nude)",
  54831. image: {
  54832. source: "./media/characters/fiera/front-nude.svg",
  54833. extra: 1875/1785,
  54834. bottom: 66/1941
  54835. }
  54836. },
  54837. backNude: {
  54838. height: math.unit(6 + 2/12, "feet"),
  54839. name: "Back (Nude)",
  54840. image: {
  54841. source: "./media/characters/fiera/back-nude.svg",
  54842. extra: 1855/1788,
  54843. bottom: 44/1899
  54844. }
  54845. },
  54846. maw: {
  54847. height: math.unit(1.3, "feet"),
  54848. name: "Maw",
  54849. image: {
  54850. source: "./media/characters/fiera/maw.svg"
  54851. }
  54852. },
  54853. paw: {
  54854. height: math.unit(1, "feet"),
  54855. name: "Paw",
  54856. image: {
  54857. source: "./media/characters/fiera/paw.svg"
  54858. }
  54859. },
  54860. shoe: {
  54861. height: math.unit(1.05, "feet"),
  54862. name: "Shoe",
  54863. image: {
  54864. source: "./media/characters/fiera/shoe.svg"
  54865. }
  54866. },
  54867. },
  54868. [
  54869. {
  54870. name: "Normal",
  54871. height: math.unit(6 + 2/12, "feet"),
  54872. default: true
  54873. },
  54874. {
  54875. name: "Size Difference",
  54876. height: math.unit(13, "feet")
  54877. },
  54878. {
  54879. name: "Macro",
  54880. height: math.unit(60, "feet")
  54881. },
  54882. {
  54883. name: "Mega Macro",
  54884. height: math.unit(200, "feet")
  54885. },
  54886. ]
  54887. ))
  54888. characterMakers.push(() => makeCharacter(
  54889. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54890. {
  54891. back: {
  54892. height: math.unit(6, "feet"),
  54893. name: "Back",
  54894. image: {
  54895. source: "./media/characters/flare/back.svg",
  54896. extra: 1883/1765,
  54897. bottom: 32/1915
  54898. }
  54899. },
  54900. },
  54901. [
  54902. {
  54903. name: "Normal",
  54904. height: math.unit(6 + 2/12, "feet"),
  54905. default: true
  54906. },
  54907. {
  54908. name: "Size Difference",
  54909. height: math.unit(13, "feet")
  54910. },
  54911. {
  54912. name: "Macro",
  54913. height: math.unit(60, "feet")
  54914. },
  54915. {
  54916. name: "Macro 2",
  54917. height: math.unit(100, "feet")
  54918. },
  54919. {
  54920. name: "Mega Macro",
  54921. height: math.unit(200, "feet")
  54922. },
  54923. ]
  54924. ))
  54925. characterMakers.push(() => makeCharacter(
  54926. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54927. {
  54928. front: {
  54929. height: math.unit(2.2, "m"),
  54930. weight: math.unit(300, "kg"),
  54931. name: "Front",
  54932. image: {
  54933. source: "./media/characters/hanna/front.svg",
  54934. extra: 1696/1502,
  54935. bottom: 206/1902
  54936. }
  54937. },
  54938. },
  54939. [
  54940. {
  54941. name: "Humanoid",
  54942. height: math.unit(2.2, "meters")
  54943. },
  54944. {
  54945. name: "Normal",
  54946. height: math.unit(4.8, "meters"),
  54947. default: true
  54948. },
  54949. ]
  54950. ))
  54951. characterMakers.push(() => makeCharacter(
  54952. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54953. {
  54954. front: {
  54955. height: math.unit(2.8, "meters"),
  54956. name: "Front",
  54957. image: {
  54958. source: "./media/characters/argo/front.svg",
  54959. extra: 731/518,
  54960. bottom: 84/815
  54961. }
  54962. },
  54963. },
  54964. [
  54965. {
  54966. name: "Normal",
  54967. height: math.unit(3, "meters"),
  54968. default: true
  54969. },
  54970. ]
  54971. ))
  54972. characterMakers.push(() => makeCharacter(
  54973. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54974. {
  54975. side: {
  54976. height: math.unit(3.8, "meters"),
  54977. name: "Side",
  54978. image: {
  54979. source: "./media/characters/sybil/side.svg",
  54980. extra: 382/361,
  54981. bottom: 25/407
  54982. }
  54983. },
  54984. },
  54985. [
  54986. {
  54987. name: "Normal",
  54988. height: math.unit(3.8, "meters"),
  54989. default: true
  54990. },
  54991. ]
  54992. ))
  54993. characterMakers.push(() => makeCharacter(
  54994. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54995. {
  54996. side: {
  54997. height: math.unit(6, "meters"),
  54998. name: "Side",
  54999. image: {
  55000. source: "./media/characters/plum/side.svg",
  55001. extra: 858/755,
  55002. bottom: 45/903
  55003. },
  55004. form: "taur",
  55005. default: true
  55006. },
  55007. back: {
  55008. height: math.unit(6.3, "meters"),
  55009. name: "Back",
  55010. image: {
  55011. source: "./media/characters/plum/back.svg",
  55012. extra: 887/813,
  55013. bottom: 32/919
  55014. },
  55015. form: "taur",
  55016. },
  55017. feral: {
  55018. height: math.unit(5.5, "meter"),
  55019. name: "Front",
  55020. image: {
  55021. source: "./media/characters/plum/feral.svg",
  55022. extra: 568/403,
  55023. bottom: 51/619
  55024. },
  55025. form: "feral",
  55026. default: true
  55027. },
  55028. head: {
  55029. height: math.unit(1.46, "meter"),
  55030. name: "Head",
  55031. image: {
  55032. source: "./media/characters/plum/head.svg"
  55033. },
  55034. form: "taur"
  55035. },
  55036. tailTop: {
  55037. height: math.unit(5.6, "meter"),
  55038. name: "Tail (Top)",
  55039. image: {
  55040. source: "./media/characters/plum/tail-top.svg"
  55041. },
  55042. form: "taur",
  55043. },
  55044. tailBottom: {
  55045. height: math.unit(5.6, "meter"),
  55046. name: "Tail (Bottom)",
  55047. image: {
  55048. source: "./media/characters/plum/tail-bottom.svg"
  55049. },
  55050. form: "taur",
  55051. },
  55052. feralHead: {
  55053. height: math.unit(2.56549521, "meter"),
  55054. name: "Head",
  55055. image: {
  55056. source: "./media/characters/plum/head.svg"
  55057. },
  55058. form: "feral"
  55059. },
  55060. feralTailTop: {
  55061. height: math.unit(5.44728435, "meter"),
  55062. name: "Tail (Top)",
  55063. image: {
  55064. source: "./media/characters/plum/tail-top.svg"
  55065. },
  55066. form: "feral",
  55067. },
  55068. feralTailBottom: {
  55069. height: math.unit(5.44728435, "meter"),
  55070. name: "Tail (Bottom)",
  55071. image: {
  55072. source: "./media/characters/plum/tail-bottom.svg"
  55073. },
  55074. form: "feral",
  55075. },
  55076. },
  55077. [
  55078. {
  55079. name: "Normal",
  55080. height: math.unit(6, "meters"),
  55081. default: true,
  55082. form: "taur"
  55083. },
  55084. {
  55085. name: "Normal",
  55086. height: math.unit(5.5, "meters"),
  55087. default: true,
  55088. form: "feral"
  55089. },
  55090. ],
  55091. {
  55092. "taur": {
  55093. name: "Taur",
  55094. default: true
  55095. },
  55096. "feral": {
  55097. name: "Feral",
  55098. },
  55099. }
  55100. ))
  55101. characterMakers.push(() => makeCharacter(
  55102. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55103. {
  55104. front: {
  55105. height: math.unit(6, "feet"),
  55106. weight: math.unit(115, "lb"),
  55107. name: "Front",
  55108. image: {
  55109. source: "./media/characters/celeste-kitsune/front.svg",
  55110. extra: 393/366,
  55111. bottom: 7/400
  55112. }
  55113. },
  55114. side: {
  55115. height: math.unit(6, "feet"),
  55116. weight: math.unit(115, "lb"),
  55117. name: "Side",
  55118. image: {
  55119. source: "./media/characters/celeste-kitsune/side.svg",
  55120. extra: 818/765,
  55121. bottom: 40/858
  55122. }
  55123. },
  55124. },
  55125. [
  55126. {
  55127. name: "Megamacro",
  55128. height: math.unit(1500, "miles"),
  55129. default: true
  55130. },
  55131. ]
  55132. ))
  55133. characterMakers.push(() => makeCharacter(
  55134. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55135. {
  55136. front: {
  55137. height: math.unit(8, "meters"),
  55138. name: "Front",
  55139. image: {
  55140. source: "./media/characters/io/front.svg",
  55141. extra: 865/722,
  55142. bottom: 58/923
  55143. }
  55144. },
  55145. back: {
  55146. height: math.unit(8, "meters"),
  55147. name: "Back",
  55148. image: {
  55149. source: "./media/characters/io/back.svg",
  55150. extra: 920/776,
  55151. bottom: 42/962
  55152. }
  55153. },
  55154. head: {
  55155. height: math.unit(5.09, "meters"),
  55156. name: "Head",
  55157. image: {
  55158. source: "./media/characters/io/head.svg"
  55159. }
  55160. },
  55161. hand: {
  55162. height: math.unit(1.6, "meters"),
  55163. name: "Hand",
  55164. image: {
  55165. source: "./media/characters/io/hand.svg"
  55166. }
  55167. },
  55168. foot: {
  55169. height: math.unit(2.4, "meters"),
  55170. name: "Foot",
  55171. image: {
  55172. source: "./media/characters/io/foot.svg"
  55173. }
  55174. },
  55175. },
  55176. [
  55177. {
  55178. name: "Normal",
  55179. height: math.unit(8, "meters"),
  55180. default: true
  55181. },
  55182. ]
  55183. ))
  55184. characterMakers.push(() => makeCharacter(
  55185. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55186. {
  55187. side: {
  55188. height: math.unit(6 + 3/12, "feet"),
  55189. weight: math.unit(225, "lb"),
  55190. name: "Side",
  55191. image: {
  55192. source: "./media/characters/silas/side.svg",
  55193. extra: 703/653,
  55194. bottom: 23/726
  55195. },
  55196. extraAttributes: {
  55197. "pawLength": {
  55198. name: "Paw Length",
  55199. power: 1,
  55200. type: "length",
  55201. base: math.unit(12, "inches")
  55202. },
  55203. "pawWidth": {
  55204. name: "Paw Width",
  55205. power: 1,
  55206. type: "length",
  55207. base: math.unit(4.5, "inches")
  55208. },
  55209. "pawArea": {
  55210. name: "Paw Area",
  55211. power: 2,
  55212. type: "area",
  55213. base: math.unit(12 * 4.5, "inches^2")
  55214. },
  55215. }
  55216. },
  55217. },
  55218. [
  55219. {
  55220. name: "Normal",
  55221. height: math.unit(6 + 3/12, "feet"),
  55222. default: true
  55223. },
  55224. ]
  55225. ))
  55226. characterMakers.push(() => makeCharacter(
  55227. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55228. {
  55229. back: {
  55230. height: math.unit(1.6, "meters"),
  55231. weight: math.unit(150, "lb"),
  55232. name: "Back",
  55233. image: {
  55234. source: "./media/characters/zari/back.svg",
  55235. extra: 424/411,
  55236. bottom: 32/456
  55237. },
  55238. extraAttributes: {
  55239. "bladderCapacity": {
  55240. name: "Bladder Size",
  55241. power: 3,
  55242. type: "volume",
  55243. base: math.unit(500, "mL")
  55244. },
  55245. "bladderFlow": {
  55246. name: "Flow Rate",
  55247. power: 3,
  55248. type: "volume",
  55249. base: math.unit(25, "mL")
  55250. },
  55251. }
  55252. },
  55253. },
  55254. [
  55255. {
  55256. name: "Normal",
  55257. height: math.unit(1.6, "meters"),
  55258. default: true
  55259. },
  55260. ]
  55261. ))
  55262. characterMakers.push(() => makeCharacter(
  55263. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55264. {
  55265. front: {
  55266. height: math.unit(25, "feet"),
  55267. weight: math.unit(5, "tons"),
  55268. name: "Front",
  55269. image: {
  55270. source: "./media/characters/charlie-human/front.svg",
  55271. extra: 1870/1740,
  55272. bottom: 102/1972
  55273. },
  55274. extraAttributes: {
  55275. "dickLength": {
  55276. name: "Dick Length",
  55277. power: 1,
  55278. type: "length",
  55279. base: math.unit(9, "feet")
  55280. },
  55281. }
  55282. },
  55283. back: {
  55284. height: math.unit(25, "feet"),
  55285. weight: math.unit(5, "tons"),
  55286. name: "Back",
  55287. image: {
  55288. source: "./media/characters/charlie-human/back.svg",
  55289. extra: 1858/1733,
  55290. bottom: 105/1963
  55291. },
  55292. extraAttributes: {
  55293. "dickLength": {
  55294. name: "Dick Length",
  55295. power: 1,
  55296. type: "length",
  55297. base: math.unit(9, "feet")
  55298. },
  55299. }
  55300. },
  55301. },
  55302. [
  55303. {
  55304. name: "\"Normal\"",
  55305. height: math.unit(6 + 4/12, "feet")
  55306. },
  55307. {
  55308. name: "Big",
  55309. height: math.unit(25, "feet"),
  55310. default: true
  55311. },
  55312. ]
  55313. ))
  55314. characterMakers.push(() => makeCharacter(
  55315. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55316. {
  55317. front: {
  55318. height: math.unit(6 + 4/12, "feet"),
  55319. weight: math.unit(320, "lb"),
  55320. name: "Front",
  55321. image: {
  55322. source: "./media/characters/ookitsu/front.svg",
  55323. extra: 1160/976,
  55324. bottom: 38/1198
  55325. }
  55326. },
  55327. frontNsfw: {
  55328. height: math.unit(6 + 4/12, "feet"),
  55329. weight: math.unit(320, "lb"),
  55330. name: "Front (NSFW)",
  55331. image: {
  55332. source: "./media/characters/ookitsu/front-nsfw.svg",
  55333. extra: 1160/976,
  55334. bottom: 38/1198
  55335. }
  55336. },
  55337. back: {
  55338. height: math.unit(6 + 4/12, "feet"),
  55339. weight: math.unit(320, "lb"),
  55340. name: "Back",
  55341. image: {
  55342. source: "./media/characters/ookitsu/back.svg",
  55343. extra: 1030/975,
  55344. bottom: 70/1100
  55345. }
  55346. },
  55347. head: {
  55348. height: math.unit(1.79, "feet"),
  55349. name: "Head",
  55350. image: {
  55351. source: "./media/characters/ookitsu/head.svg"
  55352. }
  55353. },
  55354. hand: {
  55355. height: math.unit(0.92, "feet"),
  55356. name: "Hand",
  55357. image: {
  55358. source: "./media/characters/ookitsu/hand.svg"
  55359. }
  55360. },
  55361. tails: {
  55362. height: math.unit(3.3, "feet"),
  55363. name: "Tails",
  55364. image: {
  55365. source: "./media/characters/ookitsu/tails.svg"
  55366. }
  55367. },
  55368. dick: {
  55369. height: math.unit(1.10833, "feet"),
  55370. name: "Dick",
  55371. image: {
  55372. source: "./media/characters/ookitsu/dick.svg"
  55373. }
  55374. },
  55375. },
  55376. [
  55377. {
  55378. name: "Normal",
  55379. height: math.unit(6 + 4/12, "feet"),
  55380. default: true
  55381. },
  55382. {
  55383. name: "Macro",
  55384. height: math.unit(30, "feet")
  55385. },
  55386. ]
  55387. ))
  55388. characterMakers.push(() => makeCharacter(
  55389. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55390. {
  55391. anthroFront: {
  55392. height: math.unit(6, "feet"),
  55393. weight: math.unit(250, "lb"),
  55394. name: "Front",
  55395. image: {
  55396. source: "./media/characters/jhusky/anthro-front.svg",
  55397. extra: 474/439,
  55398. bottom: 7/481
  55399. },
  55400. form: "anthro",
  55401. default: true
  55402. },
  55403. taurSideSfw: {
  55404. height: math.unit(6 + 4/12, "feet"),
  55405. weight: math.unit(500, "lb"),
  55406. name: "Side (SFW)",
  55407. image: {
  55408. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55409. extra: 1741/1629,
  55410. bottom: 196/1937
  55411. },
  55412. form: "taur",
  55413. default: true
  55414. },
  55415. taurSideNsfw: {
  55416. height: math.unit(6 + 4/12, "feet"),
  55417. weight: math.unit(500, "lb"),
  55418. name: "Taur (NSFW)",
  55419. image: {
  55420. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55421. extra: 1741/1629,
  55422. bottom: 196/1937
  55423. },
  55424. form: "taur",
  55425. },
  55426. },
  55427. [
  55428. {
  55429. name: "Huge",
  55430. height: math.unit(500, "feet"),
  55431. form: "anthro"
  55432. },
  55433. {
  55434. name: "Macro",
  55435. height: math.unit(1000, "feet"),
  55436. default: true,
  55437. form: "anthro"
  55438. },
  55439. {
  55440. name: "Megamacro",
  55441. height: math.unit(10000, "feet"),
  55442. form: "anthro"
  55443. },
  55444. {
  55445. name: "Huge",
  55446. height: math.unit(528, "feet"),
  55447. form: "taur"
  55448. },
  55449. {
  55450. name: "Macro",
  55451. height: math.unit(1056, "feet"),
  55452. default: true,
  55453. form: "taur"
  55454. },
  55455. {
  55456. name: "Megamacro",
  55457. height: math.unit(10556, "feet"),
  55458. form: "taur"
  55459. },
  55460. ],
  55461. {
  55462. "anthro": {
  55463. name: "Anthro",
  55464. default: true
  55465. },
  55466. "taur": {
  55467. name: "Taur",
  55468. },
  55469. }
  55470. ))
  55471. characterMakers.push(() => makeCharacter(
  55472. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55473. {
  55474. front: {
  55475. height: math.unit(8, "feet"),
  55476. weight: math.unit(500, "lb"),
  55477. name: "Front",
  55478. image: {
  55479. source: "./media/characters/armail/front.svg",
  55480. extra: 1753/1669,
  55481. bottom: 155/1908
  55482. }
  55483. },
  55484. back: {
  55485. height: math.unit(8, "feet"),
  55486. weight: math.unit(500, "lb"),
  55487. name: "Back",
  55488. image: {
  55489. source: "./media/characters/armail/back.svg",
  55490. extra: 1872/1803,
  55491. bottom: 63/1935
  55492. }
  55493. },
  55494. },
  55495. [
  55496. {
  55497. name: "Micro",
  55498. height: math.unit(0.25, "feet")
  55499. },
  55500. {
  55501. name: "Normal",
  55502. height: math.unit(8, "feet"),
  55503. default: true
  55504. },
  55505. {
  55506. name: "Mini-macro",
  55507. height: math.unit(30, "feet")
  55508. },
  55509. {
  55510. name: "Macro",
  55511. height: math.unit(400, "feet")
  55512. },
  55513. {
  55514. name: "Mega-macro",
  55515. height: math.unit(6000, "feet")
  55516. },
  55517. ]
  55518. ))
  55519. characterMakers.push(() => makeCharacter(
  55520. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55521. {
  55522. front: {
  55523. height: math.unit(6 + 7/12, "feet"),
  55524. weight: math.unit(210, "lb"),
  55525. name: "Front",
  55526. image: {
  55527. source: "./media/characters/wilfred-t-buxton/front.svg",
  55528. extra: 1068/882,
  55529. bottom: 28/1096
  55530. }
  55531. },
  55532. },
  55533. [
  55534. {
  55535. name: "Normal",
  55536. height: math.unit(6 + 7/12, "feet"),
  55537. default: true
  55538. },
  55539. ]
  55540. ))
  55541. characterMakers.push(() => makeCharacter(
  55542. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55543. {
  55544. front: {
  55545. height: math.unit(5 + 2/12, "feet"),
  55546. weight: math.unit(120, "lb"),
  55547. name: "Front",
  55548. image: {
  55549. source: "./media/characters/leighton-marrow/front.svg",
  55550. extra: 441/409,
  55551. bottom: 37/478
  55552. }
  55553. },
  55554. },
  55555. [
  55556. {
  55557. name: "Normal",
  55558. height: math.unit(5 + 2/12, "feet"),
  55559. default: true
  55560. },
  55561. ]
  55562. ))
  55563. characterMakers.push(() => makeCharacter(
  55564. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55565. {
  55566. front: {
  55567. height: math.unit(4, "meters"),
  55568. weight: math.unit(1200, "kg"),
  55569. name: "Front",
  55570. image: {
  55571. source: "./media/characters/licos/front.svg",
  55572. extra: 1727/1604,
  55573. bottom: 101/1828
  55574. },
  55575. form: "anthro",
  55576. default: true
  55577. },
  55578. taur_side: {
  55579. height: math.unit(20, "meters"),
  55580. weight: math.unit(1100000, "kg"),
  55581. name: "Side",
  55582. image: {
  55583. source: "./media/characters/licos/taur.svg",
  55584. extra: 1158/1091,
  55585. bottom: 80/1238
  55586. },
  55587. form: "taur",
  55588. default: true
  55589. },
  55590. },
  55591. [
  55592. {
  55593. name: "Normal",
  55594. height: math.unit(4, "meters"),
  55595. default: true,
  55596. form: "anthro"
  55597. },
  55598. {
  55599. name: "Normal",
  55600. height: math.unit(20, "meters"),
  55601. default: true,
  55602. form: "taur"
  55603. },
  55604. ],
  55605. {
  55606. "anthro": {
  55607. name: "Anthro",
  55608. default: true
  55609. },
  55610. "taur": {
  55611. name: "Taur",
  55612. },
  55613. }
  55614. ))
  55615. characterMakers.push(() => makeCharacter(
  55616. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55617. {
  55618. front: {
  55619. height: math.unit(10 + 3/12, "feet"),
  55620. name: "Front",
  55621. image: {
  55622. source: "./media/characters/theo-monkey/front.svg",
  55623. extra: 1735/1658,
  55624. bottom: 73/1808
  55625. }
  55626. },
  55627. back: {
  55628. height: math.unit(10 + 3/12, "feet"),
  55629. name: "Back",
  55630. image: {
  55631. source: "./media/characters/theo-monkey/back.svg",
  55632. extra: 1742/1664,
  55633. bottom: 33/1775
  55634. }
  55635. },
  55636. head: {
  55637. height: math.unit(2.29, "feet"),
  55638. name: "Head",
  55639. image: {
  55640. source: "./media/characters/theo-monkey/head.svg"
  55641. }
  55642. },
  55643. handPalm: {
  55644. height: math.unit(1.73, "feet"),
  55645. name: "Hand (Palm)",
  55646. image: {
  55647. source: "./media/characters/theo-monkey/hand-palm.svg"
  55648. }
  55649. },
  55650. handBack: {
  55651. height: math.unit(1.63, "feet"),
  55652. name: "Hand (Back)",
  55653. image: {
  55654. source: "./media/characters/theo-monkey/hand-back.svg"
  55655. }
  55656. },
  55657. footSole: {
  55658. height: math.unit(2.15, "feet"),
  55659. name: "Foot (Sole)",
  55660. image: {
  55661. source: "./media/characters/theo-monkey/foot-sole.svg"
  55662. }
  55663. },
  55664. footSide: {
  55665. height: math.unit(1.6, "feet"),
  55666. name: "Foot (Side)",
  55667. image: {
  55668. source: "./media/characters/theo-monkey/foot-side.svg"
  55669. }
  55670. },
  55671. },
  55672. [
  55673. {
  55674. name: "Normal",
  55675. height: math.unit(10 + 3/12, "feet"),
  55676. default: true
  55677. },
  55678. ]
  55679. ))
  55680. characterMakers.push(() => makeCharacter(
  55681. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55682. {
  55683. front: {
  55684. height: math.unit(11, "feet"),
  55685. weight: math.unit(3000, "lb"),
  55686. preyCapacity: math.unit(10, "people"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/brook/front.svg",
  55690. extra: 909/835,
  55691. bottom: 108/1017
  55692. }
  55693. },
  55694. back: {
  55695. height: math.unit(11, "feet"),
  55696. weight: math.unit(3000, "lb"),
  55697. preyCapacity: math.unit(10, "people"),
  55698. name: "Back",
  55699. image: {
  55700. source: "./media/characters/brook/back.svg",
  55701. extra: 976/916,
  55702. bottom: 34/1010
  55703. }
  55704. },
  55705. backAlt: {
  55706. height: math.unit(11, "feet"),
  55707. weight: math.unit(3000, "lb"),
  55708. preyCapacity: math.unit(10, "people"),
  55709. name: "Back (Alt)",
  55710. image: {
  55711. source: "./media/characters/brook/back-alt.svg",
  55712. extra: 1283/1213,
  55713. bottom: 35/1318
  55714. }
  55715. },
  55716. bust: {
  55717. height: math.unit(9.0859030837, "feet"),
  55718. weight: math.unit(3000, "lb"),
  55719. preyCapacity: math.unit(10, "people"),
  55720. name: "Bust",
  55721. image: {
  55722. source: "./media/characters/brook/bust.svg",
  55723. extra: 2043/1923,
  55724. bottom: 0/2043
  55725. }
  55726. },
  55727. },
  55728. [
  55729. {
  55730. name: "Small",
  55731. height: math.unit(11, "feet"),
  55732. default: true
  55733. },
  55734. {
  55735. name: "Towering",
  55736. height: math.unit(5, "km")
  55737. },
  55738. {
  55739. name: "Enormous",
  55740. height: math.unit(25, "earths")
  55741. },
  55742. ]
  55743. ))
  55744. characterMakers.push(() => makeCharacter(
  55745. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55746. {
  55747. front: {
  55748. height: math.unit(4, "feet"),
  55749. weight: math.unit(150, "lb"),
  55750. name: "Front",
  55751. image: {
  55752. source: "./media/characters/squishi/front.svg",
  55753. extra: 1428/1271,
  55754. bottom: 30/1458
  55755. },
  55756. extraAttributes: {
  55757. "pawSize": {
  55758. name: "Paw Size",
  55759. power: 1,
  55760. type: "length",
  55761. base: math.unit(14, "ShoeSizeMensUS"),
  55762. defaultUnit: "ShoeSizeMensUS"
  55763. },
  55764. }
  55765. },
  55766. side: {
  55767. height: math.unit(4, "feet"),
  55768. weight: math.unit(150, "lb"),
  55769. name: "Side",
  55770. image: {
  55771. source: "./media/characters/squishi/side.svg",
  55772. extra: 1428/1271,
  55773. bottom: 30/1458
  55774. },
  55775. extraAttributes: {
  55776. "pawSize": {
  55777. name: "Paw Size",
  55778. power: 1,
  55779. type: "length",
  55780. base: math.unit(14, "ShoeSizeMensUS"),
  55781. defaultUnit: "ShoeSizeMensUS"
  55782. },
  55783. }
  55784. },
  55785. back: {
  55786. height: math.unit(4, "feet"),
  55787. weight: math.unit(150, "lb"),
  55788. name: "Back",
  55789. image: {
  55790. source: "./media/characters/squishi/back.svg",
  55791. extra: 1428/1271,
  55792. bottom: 30/1458
  55793. },
  55794. extraAttributes: {
  55795. "pawSize": {
  55796. name: "Paw Size",
  55797. power: 1,
  55798. type: "length",
  55799. base: math.unit(14, "ShoeSizeMensUS"),
  55800. defaultUnit: "ShoeSizeMensUS"
  55801. },
  55802. }
  55803. },
  55804. },
  55805. [
  55806. {
  55807. name: "Normal",
  55808. height: math.unit(4, "feet"),
  55809. default: true
  55810. },
  55811. ]
  55812. ))
  55813. characterMakers.push(() => makeCharacter(
  55814. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55815. {
  55816. front: {
  55817. height: math.unit(7 + 8/12, "feet"),
  55818. weight: math.unit(333, "lb"),
  55819. name: "Front",
  55820. image: {
  55821. source: "./media/characters/vincent-vasroc/front.svg",
  55822. extra: 1962/1860,
  55823. bottom: 41/2003
  55824. }
  55825. },
  55826. back: {
  55827. height: math.unit(7 + 8/12, "feet"),
  55828. weight: math.unit(333, "lb"),
  55829. name: "Back",
  55830. image: {
  55831. source: "./media/characters/vincent-vasroc/back.svg",
  55832. extra: 1952/1815,
  55833. bottom: 33/1985
  55834. }
  55835. },
  55836. paw: {
  55837. height: math.unit(1.24, "feet"),
  55838. name: "Paw",
  55839. image: {
  55840. source: "./media/characters/vincent-vasroc/paw.svg"
  55841. }
  55842. },
  55843. ear: {
  55844. height: math.unit(0.75, "feet"),
  55845. name: "Ear",
  55846. image: {
  55847. source: "./media/characters/vincent-vasroc/ear.svg"
  55848. }
  55849. },
  55850. },
  55851. [
  55852. {
  55853. name: "Nano",
  55854. height: math.unit(92, "micrometers")
  55855. },
  55856. {
  55857. name: "Normal",
  55858. height: math.unit(7 + 8/12, "feet"),
  55859. default: true
  55860. },
  55861. ]
  55862. ))
  55863. characterMakers.push(() => makeCharacter(
  55864. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55865. {
  55866. frontNsfw: {
  55867. height: math.unit(40, "feet"),
  55868. weight: math.unit(58, "tons"),
  55869. name: "Front (NSFW)",
  55870. image: {
  55871. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55872. extra: 1265/965,
  55873. bottom: 155/1420
  55874. }
  55875. },
  55876. frontSfw: {
  55877. height: math.unit(40, "feet"),
  55878. weight: math.unit(58, "tons"),
  55879. name: "Front (SFW)",
  55880. image: {
  55881. source: "./media/characters/ru-kahn/front-sfw.svg",
  55882. extra: 1265/965,
  55883. bottom: 80/1345
  55884. }
  55885. },
  55886. },
  55887. [
  55888. {
  55889. name: "Small",
  55890. height: math.unit(4, "feet")
  55891. },
  55892. {
  55893. name: "Normal",
  55894. height: math.unit(40, "feet"),
  55895. default: true
  55896. },
  55897. {
  55898. name: "Macro",
  55899. height: math.unit(400, "feet")
  55900. },
  55901. ]
  55902. ))
  55903. characterMakers.push(() => makeCharacter(
  55904. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55905. {
  55906. frontNude: {
  55907. height: math.unit(6 + 5/12, "feet"),
  55908. name: "Front (Nude)",
  55909. image: {
  55910. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55911. extra: 1369/1366,
  55912. bottom: 68/1437
  55913. }
  55914. },
  55915. frontDressed: {
  55916. height: math.unit(6 + 5/12, "feet"),
  55917. name: "Front (Dressed)",
  55918. image: {
  55919. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55920. extra: 1369/1366,
  55921. bottom: 68/1437
  55922. }
  55923. },
  55924. },
  55925. [
  55926. {
  55927. name: "Normal",
  55928. height: math.unit(6 + 5/12, "feet"),
  55929. default: true
  55930. },
  55931. {
  55932. name: "Maximum",
  55933. height: math.unit(1930, "feet")
  55934. },
  55935. ]
  55936. ))
  55937. characterMakers.push(() => makeCharacter(
  55938. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55939. {
  55940. front: {
  55941. height: math.unit(5 + 6/12, "feet"),
  55942. name: "Front",
  55943. image: {
  55944. source: "./media/characters/kaja/front.svg",
  55945. extra: 1874/1514,
  55946. bottom: 117/1991
  55947. }
  55948. },
  55949. },
  55950. [
  55951. {
  55952. name: "Normal",
  55953. height: math.unit(5 + 6/12, "feet"),
  55954. default: true
  55955. },
  55956. ]
  55957. ))
  55958. characterMakers.push(() => makeCharacter(
  55959. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55960. {
  55961. front: {
  55962. height: math.unit(5 + 9/12, "feet"),
  55963. weight: math.unit(200, "lb"),
  55964. name: "Front",
  55965. image: {
  55966. source: "./media/characters/mark-smith/front.svg",
  55967. extra: 1004/943,
  55968. bottom: 58/1062
  55969. }
  55970. },
  55971. back: {
  55972. height: math.unit(5 + 9/12, "feet"),
  55973. weight: math.unit(200, "lb"),
  55974. name: "Back",
  55975. image: {
  55976. source: "./media/characters/mark-smith/back.svg",
  55977. extra: 1023/953,
  55978. bottom: 24/1047
  55979. }
  55980. },
  55981. head: {
  55982. height: math.unit(1.82, "feet"),
  55983. name: "Head",
  55984. image: {
  55985. source: "./media/characters/mark-smith/head.svg"
  55986. }
  55987. },
  55988. hand: {
  55989. height: math.unit(1.4, "feet"),
  55990. name: "Hand",
  55991. image: {
  55992. source: "./media/characters/mark-smith/hand.svg"
  55993. }
  55994. },
  55995. paw: {
  55996. height: math.unit(1.69, "feet"),
  55997. name: "Paw",
  55998. image: {
  55999. source: "./media/characters/mark-smith/paw.svg"
  56000. }
  56001. },
  56002. },
  56003. [
  56004. {
  56005. name: "Micro",
  56006. height: math.unit(0.25, "inches")
  56007. },
  56008. {
  56009. name: "Normal",
  56010. height: math.unit(5 + 9/12, "feet"),
  56011. default: true
  56012. },
  56013. {
  56014. name: "Macro",
  56015. height: math.unit(500, "feet")
  56016. },
  56017. ]
  56018. ))
  56019. characterMakers.push(() => makeCharacter(
  56020. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56021. {
  56022. frontNude: {
  56023. height: math.unit(6, "feet"),
  56024. name: "Front (Nude)",
  56025. image: {
  56026. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56027. extra: 1384/1321,
  56028. bottom: 57/1441
  56029. }
  56030. },
  56031. frontDressed: {
  56032. height: math.unit(6, "feet"),
  56033. name: "Front (Dressed)",
  56034. image: {
  56035. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56036. extra: 1384/1321,
  56037. bottom: 57/1441
  56038. }
  56039. },
  56040. },
  56041. [
  56042. {
  56043. name: "Normal",
  56044. height: math.unit(6, "feet"),
  56045. default: true
  56046. },
  56047. {
  56048. name: "Maximum",
  56049. height: math.unit(1776, "feet")
  56050. },
  56051. ]
  56052. ))
  56053. characterMakers.push(() => makeCharacter(
  56054. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56055. {
  56056. front: {
  56057. height: math.unit(2 + 4/12, "feet"),
  56058. weight: math.unit(350, "lb"),
  56059. name: "Front",
  56060. image: {
  56061. source: "./media/characters/devos/front.svg",
  56062. extra: 958/852,
  56063. bottom: 143/1101
  56064. }
  56065. },
  56066. },
  56067. [
  56068. {
  56069. name: "Base",
  56070. height: math.unit(2 + 4/12, "feet"),
  56071. default: true
  56072. },
  56073. ]
  56074. ))
  56075. characterMakers.push(() => makeCharacter(
  56076. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56077. {
  56078. front: {
  56079. height: math.unit(9 + 2/12, "feet"),
  56080. name: "Front",
  56081. image: {
  56082. source: "./media/characters/hiveheart/front.svg",
  56083. extra: 394/364,
  56084. bottom: 65/459
  56085. }
  56086. },
  56087. back: {
  56088. height: math.unit(9 + 2/12, "feet"),
  56089. name: "Back",
  56090. image: {
  56091. source: "./media/characters/hiveheart/back.svg",
  56092. extra: 374/357,
  56093. bottom: 63/437
  56094. }
  56095. },
  56096. },
  56097. [
  56098. {
  56099. name: "Base",
  56100. height: math.unit(9 + 2/12, "feet"),
  56101. default: true
  56102. },
  56103. ]
  56104. ))
  56105. characterMakers.push(() => makeCharacter(
  56106. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56107. {
  56108. front: {
  56109. height: math.unit(2.5, "inches"),
  56110. weight: math.unit(0.6, "oz"),
  56111. name: "Front",
  56112. image: {
  56113. source: "./media/characters/bryn/front.svg",
  56114. extra: 1480/1205,
  56115. bottom: 27/1507
  56116. }
  56117. },
  56118. back: {
  56119. height: math.unit(2.5, "inches"),
  56120. weight: math.unit(0.6, "oz"),
  56121. name: "Back",
  56122. image: {
  56123. source: "./media/characters/bryn/back.svg",
  56124. extra: 1475/1201,
  56125. bottom: 39/1514
  56126. }
  56127. },
  56128. foot: {
  56129. height: math.unit(0.4, "inches"),
  56130. name: "Foot",
  56131. image: {
  56132. source: "./media/characters/bryn/foot.svg"
  56133. }
  56134. },
  56135. },
  56136. [
  56137. {
  56138. name: "Normal",
  56139. height: math.unit(2.5, "inches"),
  56140. default: true
  56141. },
  56142. ]
  56143. ))
  56144. characterMakers.push(() => makeCharacter(
  56145. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56146. {
  56147. side: {
  56148. height: math.unit(7, "feet"),
  56149. weight: math.unit(657, "kg"),
  56150. name: "Side",
  56151. image: {
  56152. source: "./media/characters/delta/side.svg",
  56153. extra: 781/212,
  56154. bottom: 7/788
  56155. },
  56156. extraAttributes: {
  56157. "wingspan": {
  56158. name: "Wingspan",
  56159. power: 1,
  56160. type: "length",
  56161. base: math.unit(48, "feet")
  56162. },
  56163. "length": {
  56164. name: "Length",
  56165. power: 1,
  56166. type: "length",
  56167. base: math.unit(21, "feet")
  56168. },
  56169. "pawSize": {
  56170. name: "Paw Size",
  56171. power: 2,
  56172. type: "area",
  56173. base: math.unit(1.5*1.4, "feet^2")
  56174. },
  56175. }
  56176. },
  56177. },
  56178. [
  56179. {
  56180. name: "Normal",
  56181. height: math.unit(6, "feet"),
  56182. default: true
  56183. },
  56184. ]
  56185. ))
  56186. characterMakers.push(() => makeCharacter(
  56187. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56188. {
  56189. front: {
  56190. height: math.unit(6, "feet"),
  56191. name: "Front",
  56192. image: {
  56193. source: "./media/characters/pyrow/front.svg",
  56194. extra: 513/486,
  56195. bottom: 14/527
  56196. }
  56197. },
  56198. frontWing: {
  56199. height: math.unit(6, "feet"),
  56200. name: "Front (Wing)",
  56201. image: {
  56202. source: "./media/characters/pyrow/front-wing.svg",
  56203. extra: 539/383,
  56204. bottom: 20/559
  56205. }
  56206. },
  56207. back: {
  56208. height: math.unit(6, "feet"),
  56209. name: "Back",
  56210. image: {
  56211. source: "./media/characters/pyrow/back.svg",
  56212. extra: 500/473,
  56213. bottom: 9/509
  56214. }
  56215. },
  56216. },
  56217. [
  56218. {
  56219. name: "Normal",
  56220. height: math.unit(6, "feet"),
  56221. default: true
  56222. },
  56223. ]
  56224. ))
  56225. characterMakers.push(() => makeCharacter(
  56226. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56227. {
  56228. front: {
  56229. height: math.unit(5, "meters"),
  56230. weight: math.unit(3, "tonnes"),
  56231. name: "Front",
  56232. image: {
  56233. source: "./media/characters/velikan/front.svg",
  56234. extra: 867/744,
  56235. bottom: 71/938
  56236. },
  56237. extraAttributes: {
  56238. "shoeSize": {
  56239. name: "Shoe Size",
  56240. power: 1,
  56241. type: "length",
  56242. base: math.unit(135, "ShoeSizeUK"),
  56243. defaultUnit: "ShoeSizeUK"
  56244. },
  56245. }
  56246. },
  56247. },
  56248. [
  56249. {
  56250. name: "Normal",
  56251. height: math.unit(5, "meters"),
  56252. default: true
  56253. },
  56254. {
  56255. name: "Macro",
  56256. height: math.unit(1, "km")
  56257. },
  56258. {
  56259. name: "Mega Macro",
  56260. height: math.unit(100, "km")
  56261. },
  56262. {
  56263. name: "Giga Macro",
  56264. height: math.unit(2, "megameters")
  56265. },
  56266. {
  56267. name: "Planetary",
  56268. height: math.unit(22, "megameters")
  56269. },
  56270. {
  56271. name: "Solar",
  56272. height: math.unit(8, "gigameters")
  56273. },
  56274. {
  56275. name: "Cosmic",
  56276. height: math.unit(10, "zettameters")
  56277. },
  56278. {
  56279. name: "Omni",
  56280. height: math.unit(9e260, "multiverses")
  56281. },
  56282. ]
  56283. ))
  56284. characterMakers.push(() => makeCharacter(
  56285. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56286. {
  56287. front: {
  56288. height: math.unit(4 + 3/12, "feet"),
  56289. weight: math.unit(90, "lb"),
  56290. name: "Front",
  56291. image: {
  56292. source: "./media/characters/sabiki/front.svg",
  56293. extra: 1662/1423,
  56294. bottom: 65/1727
  56295. }
  56296. },
  56297. },
  56298. [
  56299. {
  56300. name: "Normal",
  56301. height: math.unit(4 + 3/12, "feet"),
  56302. default: true
  56303. },
  56304. ]
  56305. ))
  56306. characterMakers.push(() => makeCharacter(
  56307. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56308. {
  56309. frontSfw: {
  56310. height: math.unit(2, "mm"),
  56311. name: "Front (SFW)",
  56312. image: {
  56313. source: "./media/characters/carmel/front-sfw.svg",
  56314. extra: 1131/1006,
  56315. bottom: 66/1197
  56316. }
  56317. },
  56318. frontNsfw: {
  56319. height: math.unit(2, "mm"),
  56320. name: "Front (NSFW)",
  56321. image: {
  56322. source: "./media/characters/carmel/front-nsfw.svg",
  56323. extra: 1131/1006,
  56324. bottom: 66/1197
  56325. }
  56326. },
  56327. foot: {
  56328. height: math.unit(0.3, "mm"),
  56329. name: "Foot",
  56330. image: {
  56331. source: "./media/characters/carmel/foot.svg"
  56332. }
  56333. },
  56334. tongue: {
  56335. height: math.unit(0.71, "mm"),
  56336. name: "Tongue",
  56337. image: {
  56338. source: "./media/characters/carmel/tongue.svg"
  56339. }
  56340. },
  56341. dick: {
  56342. height: math.unit(0.085, "mm"),
  56343. name: "Dick",
  56344. image: {
  56345. source: "./media/characters/carmel/dick.svg"
  56346. }
  56347. },
  56348. },
  56349. [
  56350. {
  56351. name: "Micro",
  56352. height: math.unit(2, "mm"),
  56353. default: true
  56354. },
  56355. {
  56356. name: "Normal",
  56357. height: math.unit(4 + 8/12, "feet")
  56358. },
  56359. {
  56360. name: "Mega Macro",
  56361. height: math.unit(250, "feet")
  56362. },
  56363. {
  56364. name: "BIGGER",
  56365. height: math.unit(1000, "feet")
  56366. },
  56367. {
  56368. name: "BIGGEST",
  56369. height: math.unit(2, "miles")
  56370. },
  56371. ]
  56372. ))
  56373. characterMakers.push(() => makeCharacter(
  56374. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56375. {
  56376. front: {
  56377. height: math.unit(6.5, "feet"),
  56378. weight: math.unit(198, "lb"),
  56379. name: "Front",
  56380. image: {
  56381. source: "./media/characters/tamani/anthro.svg",
  56382. extra: 930/890,
  56383. bottom: 34/964
  56384. },
  56385. form: "anthro",
  56386. default: true
  56387. },
  56388. side: {
  56389. height: math.unit(6, "feet"),
  56390. weight: math.unit(198*2, "lb"),
  56391. name: "Side",
  56392. image: {
  56393. source: "./media/characters/tamani/feral.svg",
  56394. extra: 559/519,
  56395. bottom: 43/602
  56396. },
  56397. form: "feral"
  56398. },
  56399. },
  56400. [
  56401. {
  56402. name: "Normal",
  56403. height: math.unit(6.5, "feet"),
  56404. default: true,
  56405. form: "anthro"
  56406. },
  56407. {
  56408. name: "Normal",
  56409. height: math.unit(6, "feet"),
  56410. default: true,
  56411. form: "feral"
  56412. },
  56413. ],
  56414. {
  56415. "anthro": {
  56416. name: "Anthro",
  56417. default: true
  56418. },
  56419. "feral": {
  56420. name: "Feral",
  56421. },
  56422. }
  56423. ))
  56424. characterMakers.push(() => makeCharacter(
  56425. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56426. {
  56427. front: {
  56428. height: math.unit(4 + 1/12, "feet"),
  56429. weight: math.unit(114, "lb"),
  56430. name: "Front",
  56431. image: {
  56432. source: "./media/characters/dex/front.svg",
  56433. extra: 787/680,
  56434. bottom: 18/805
  56435. }
  56436. },
  56437. side: {
  56438. height: math.unit(4 + 1/12, "feet"),
  56439. weight: math.unit(114, "lb"),
  56440. name: "Side",
  56441. image: {
  56442. source: "./media/characters/dex/side.svg",
  56443. extra: 785/680,
  56444. bottom: 12/797
  56445. }
  56446. },
  56447. back: {
  56448. height: math.unit(4 + 1/12, "feet"),
  56449. weight: math.unit(114, "lb"),
  56450. name: "Back",
  56451. image: {
  56452. source: "./media/characters/dex/back.svg",
  56453. extra: 785/681,
  56454. bottom: 17/802
  56455. }
  56456. },
  56457. loungewear: {
  56458. height: math.unit(4 + 1/12, "feet"),
  56459. weight: math.unit(114, "lb"),
  56460. name: "Loungewear",
  56461. image: {
  56462. source: "./media/characters/dex/loungewear.svg",
  56463. extra: 787/680,
  56464. bottom: 18/805
  56465. }
  56466. },
  56467. workout: {
  56468. height: math.unit(4 + 1/12, "feet"),
  56469. weight: math.unit(114, "lb"),
  56470. name: "Workout",
  56471. image: {
  56472. source: "./media/characters/dex/workout.svg",
  56473. extra: 787/680,
  56474. bottom: 18/805
  56475. }
  56476. },
  56477. schoolUniform: {
  56478. height: math.unit(4 + 1/12, "feet"),
  56479. weight: math.unit(114, "lb"),
  56480. name: "School-uniform",
  56481. image: {
  56482. source: "./media/characters/dex/school-uniform.svg",
  56483. extra: 787/680,
  56484. bottom: 18/805
  56485. }
  56486. },
  56487. maw: {
  56488. height: math.unit(0.55, "feet"),
  56489. name: "Maw",
  56490. image: {
  56491. source: "./media/characters/dex/maw.svg"
  56492. }
  56493. },
  56494. paw: {
  56495. height: math.unit(0.87, "feet"),
  56496. name: "Paw",
  56497. image: {
  56498. source: "./media/characters/dex/paw.svg"
  56499. }
  56500. },
  56501. bust: {
  56502. height: math.unit(1.67, "feet"),
  56503. name: "Bust",
  56504. image: {
  56505. source: "./media/characters/dex/bust.svg"
  56506. }
  56507. },
  56508. },
  56509. [
  56510. {
  56511. name: "Normal",
  56512. height: math.unit(4 + 1/12, "feet"),
  56513. default: true
  56514. },
  56515. ]
  56516. ))
  56517. characterMakers.push(() => makeCharacter(
  56518. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56519. {
  56520. front: {
  56521. height: math.unit(4 + 3/12, "feet"),
  56522. weight: math.unit(60, "lb"),
  56523. name: "Front",
  56524. image: {
  56525. source: "./media/characters/silke/front.svg",
  56526. extra: 1334/1122,
  56527. bottom: 21/1355
  56528. }
  56529. },
  56530. back: {
  56531. height: math.unit(4 + 3/12, "feet"),
  56532. weight: math.unit(60, "lb"),
  56533. name: "Back",
  56534. image: {
  56535. source: "./media/characters/silke/back.svg",
  56536. extra: 1328/1092,
  56537. bottom: 16/1344
  56538. }
  56539. },
  56540. dressed: {
  56541. height: math.unit(4 + 3/12, "feet"),
  56542. weight: math.unit(60, "lb"),
  56543. name: "Dressed",
  56544. image: {
  56545. source: "./media/characters/silke/dressed.svg",
  56546. extra: 1334/1122,
  56547. bottom: 43/1377
  56548. }
  56549. },
  56550. },
  56551. [
  56552. {
  56553. name: "Normal",
  56554. height: math.unit(4 + 3/12, "feet"),
  56555. default: true
  56556. },
  56557. ]
  56558. ))
  56559. characterMakers.push(() => makeCharacter(
  56560. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56561. {
  56562. front: {
  56563. height: math.unit(1.58, "meters"),
  56564. weight: math.unit(47, "kg"),
  56565. name: "Front",
  56566. image: {
  56567. source: "./media/characters/wireshark/front.svg",
  56568. extra: 883/838,
  56569. bottom: 66/949
  56570. }
  56571. },
  56572. },
  56573. [
  56574. {
  56575. name: "Normal",
  56576. height: math.unit(1.58, "meters"),
  56577. default: true
  56578. },
  56579. ]
  56580. ))
  56581. characterMakers.push(() => makeCharacter(
  56582. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56583. {
  56584. front: {
  56585. height: math.unit(6, "meters"),
  56586. weight: math.unit(15000, "kg"),
  56587. name: "Front",
  56588. image: {
  56589. source: "./media/characters/gallagher/front.svg",
  56590. extra: 532/493,
  56591. bottom: 0/532
  56592. }
  56593. },
  56594. },
  56595. [
  56596. {
  56597. name: "Normal",
  56598. height: math.unit(6, "meters"),
  56599. default: true
  56600. },
  56601. ]
  56602. ))
  56603. characterMakers.push(() => makeCharacter(
  56604. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56605. {
  56606. front: {
  56607. height: math.unit(2.4, "meters"),
  56608. weight: math.unit(270, "kg"),
  56609. name: "Front",
  56610. image: {
  56611. source: "./media/characters/alice/front.svg",
  56612. extra: 950/900,
  56613. bottom: 36/986
  56614. }
  56615. },
  56616. side: {
  56617. height: math.unit(2.4, "meters"),
  56618. weight: math.unit(270, "kg"),
  56619. name: "Side",
  56620. image: {
  56621. source: "./media/characters/alice/side.svg",
  56622. extra: 921/876,
  56623. bottom: 19/940
  56624. }
  56625. },
  56626. dressed: {
  56627. height: math.unit(2.4, "meters"),
  56628. weight: math.unit(270, "kg"),
  56629. name: "Dressed",
  56630. image: {
  56631. source: "./media/characters/alice/dressed.svg",
  56632. extra: 905/850,
  56633. bottom: 81/986
  56634. }
  56635. },
  56636. fishnet: {
  56637. height: math.unit(2.4, "meters"),
  56638. weight: math.unit(270, "kg"),
  56639. name: "Fishnet",
  56640. image: {
  56641. source: "./media/characters/alice/fishnet.svg",
  56642. extra: 905/850,
  56643. bottom: 81/986
  56644. }
  56645. },
  56646. },
  56647. [
  56648. {
  56649. name: "Normal",
  56650. height: math.unit(2.4, "meters"),
  56651. default: true
  56652. },
  56653. ]
  56654. ))
  56655. characterMakers.push(() => makeCharacter(
  56656. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56657. {
  56658. front: {
  56659. height: math.unit(175.25, "feet"),
  56660. name: "Front",
  56661. image: {
  56662. source: "./media/characters/fio/front.svg",
  56663. extra: 1883/1591,
  56664. bottom: 34/1917
  56665. }
  56666. },
  56667. },
  56668. [
  56669. {
  56670. name: "Normal",
  56671. height: math.unit(175.25, "cm"),
  56672. default: true
  56673. },
  56674. ]
  56675. ))
  56676. characterMakers.push(() => makeCharacter(
  56677. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56678. {
  56679. side: {
  56680. height: math.unit(6, "meters"),
  56681. weight: math.unit(3400, "kg"),
  56682. preyCapacity: math.unit(1700, "liters"),
  56683. name: "Side",
  56684. image: {
  56685. source: "./media/characters/hass/side.svg",
  56686. extra: 1058/997,
  56687. bottom: 177/1235
  56688. }
  56689. },
  56690. feeding: {
  56691. height: math.unit(6*0.63, "meters"),
  56692. weight: math.unit(3400, "kg"),
  56693. preyCapacity: math.unit(1700, "liters"),
  56694. name: "Feeding",
  56695. image: {
  56696. source: "./media/characters/hass/feeding.svg",
  56697. extra: 689/579,
  56698. bottom: 146/835
  56699. }
  56700. },
  56701. guts: {
  56702. height: math.unit(6, "meters"),
  56703. weight: math.unit(3400, "kg"),
  56704. name: "Guts",
  56705. image: {
  56706. source: "./media/characters/hass/guts.svg",
  56707. extra: 1223/1198,
  56708. bottom: 182/1405
  56709. }
  56710. },
  56711. dickFront: {
  56712. height: math.unit(1.4, "meters"),
  56713. name: "Dick (Front)",
  56714. image: {
  56715. source: "./media/characters/hass/dick-front.svg"
  56716. }
  56717. },
  56718. dickSide: {
  56719. height: math.unit(1.3, "meters"),
  56720. name: "Dick (Side)",
  56721. image: {
  56722. source: "./media/characters/hass/dick-side.svg"
  56723. }
  56724. },
  56725. dickBack: {
  56726. height: math.unit(1.4, "meters"),
  56727. name: "Dick (Back)",
  56728. image: {
  56729. source: "./media/characters/hass/dick-back.svg"
  56730. }
  56731. },
  56732. },
  56733. [
  56734. {
  56735. name: "Normal",
  56736. height: math.unit(6, "meters"),
  56737. default: true
  56738. },
  56739. ]
  56740. ))
  56741. characterMakers.push(() => makeCharacter(
  56742. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56743. {
  56744. front: {
  56745. height: math.unit(4, "feet"),
  56746. weight: math.unit(60, "lb"),
  56747. name: "Front",
  56748. image: {
  56749. source: "./media/characters/hickory-finnegan/front.svg",
  56750. extra: 444/411,
  56751. bottom: 10/454
  56752. }
  56753. },
  56754. side: {
  56755. height: math.unit(4, "feet"),
  56756. weight: math.unit(60, "lb"),
  56757. name: "Side",
  56758. image: {
  56759. source: "./media/characters/hickory-finnegan/side.svg",
  56760. extra: 444/411,
  56761. bottom: 10/454
  56762. }
  56763. },
  56764. back: {
  56765. height: math.unit(4, "feet"),
  56766. weight: math.unit(60, "lb"),
  56767. name: "Back",
  56768. image: {
  56769. source: "./media/characters/hickory-finnegan/back.svg",
  56770. extra: 444/411,
  56771. bottom: 10/454
  56772. }
  56773. },
  56774. },
  56775. [
  56776. {
  56777. name: "Normal",
  56778. height: math.unit(4, "feet"),
  56779. default: true
  56780. },
  56781. ]
  56782. ))
  56783. characterMakers.push(() => makeCharacter(
  56784. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56785. {
  56786. snivy_front: {
  56787. height: math.unit(2, "feet"),
  56788. weight: math.unit(17.9, "lb"),
  56789. name: "Front",
  56790. image: {
  56791. source: "./media/characters/robin-phox/snivy-front.svg",
  56792. extra: 569/504,
  56793. bottom: 33/602
  56794. },
  56795. form: "snivy",
  56796. default: true
  56797. },
  56798. snivy_frontNsfw: {
  56799. height: math.unit(2, "feet"),
  56800. weight: math.unit(17.9, "lb"),
  56801. name: "Front (NSFW)",
  56802. image: {
  56803. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56804. extra: 569/504,
  56805. bottom: 33/602
  56806. },
  56807. form: "snivy",
  56808. },
  56809. snivy_back: {
  56810. height: math.unit(2, "feet"),
  56811. weight: math.unit(17.9, "lb"),
  56812. name: "Back",
  56813. image: {
  56814. source: "./media/characters/robin-phox/snivy-back.svg",
  56815. extra: 577/508,
  56816. bottom: 21/598
  56817. },
  56818. form: "snivy",
  56819. },
  56820. snivy_foot: {
  56821. height: math.unit(0.68, "feet"),
  56822. name: "Foot",
  56823. image: {
  56824. source: "./media/characters/robin-phox/snivy-foot.svg"
  56825. },
  56826. form: "snivy",
  56827. },
  56828. snivy_sole: {
  56829. height: math.unit(0.68, "feet"),
  56830. name: "Sole",
  56831. image: {
  56832. source: "./media/characters/robin-phox/snivy-sole.svg"
  56833. },
  56834. form: "snivy",
  56835. },
  56836. yoshi_front: {
  56837. height: math.unit(6, "feet"),
  56838. weight: math.unit(150, "lb"),
  56839. name: "Front",
  56840. image: {
  56841. source: "./media/characters/robin-phox/yoshi-front.svg",
  56842. extra: 890/792,
  56843. bottom: 29/919
  56844. },
  56845. form: "yoshi",
  56846. default: true
  56847. },
  56848. yoshi_frontNsfw: {
  56849. height: math.unit(6, "feet"),
  56850. weight: math.unit(150, "lb"),
  56851. name: "Front (NSFW)",
  56852. image: {
  56853. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56854. extra: 890/792,
  56855. bottom: 29/919
  56856. },
  56857. form: "yoshi",
  56858. },
  56859. yoshi_back: {
  56860. height: math.unit(6, "feet"),
  56861. weight: math.unit(150, "lb"),
  56862. name: "Back",
  56863. image: {
  56864. source: "./media/characters/robin-phox/yoshi-back.svg",
  56865. extra: 890/792,
  56866. bottom: 29/919
  56867. },
  56868. form: "yoshi",
  56869. },
  56870. yoshi_foot: {
  56871. height: math.unit(1.5, "feet"),
  56872. name: "Foot",
  56873. image: {
  56874. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56875. },
  56876. form: "yoshi",
  56877. },
  56878. delphox_front: {
  56879. height: math.unit(4 + 11/12, "feet"),
  56880. weight: math.unit(86, "lb"),
  56881. name: "Front",
  56882. image: {
  56883. source: "./media/characters/robin-phox/delphox-front.svg",
  56884. extra: 1266/1069,
  56885. bottom: 32/1298
  56886. },
  56887. form: "delphox",
  56888. default: true
  56889. },
  56890. delphox_frontNsfw: {
  56891. height: math.unit(4 + 11/12, "feet"),
  56892. weight: math.unit(86, "lb"),
  56893. name: "Front (NSFW)",
  56894. image: {
  56895. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56896. extra: 1266/1069,
  56897. bottom: 32/1298
  56898. },
  56899. form: "delphox",
  56900. },
  56901. delphox_back: {
  56902. height: math.unit(4 + 11/12, "feet"),
  56903. weight: math.unit(86, "lb"),
  56904. name: "Back",
  56905. image: {
  56906. source: "./media/characters/robin-phox/delphox-back.svg",
  56907. extra: 1269/1083,
  56908. bottom: 15/1284
  56909. },
  56910. form: "delphox",
  56911. },
  56912. mienshao_front: {
  56913. height: math.unit(4 + 7/12, "feet"),
  56914. weight: math.unit(78.3, "lb"),
  56915. name: "Front",
  56916. image: {
  56917. source: "./media/characters/robin-phox/mienshao-front.svg",
  56918. extra: 1052/970,
  56919. bottom: 108/1160
  56920. },
  56921. form: "mienshao",
  56922. default: true
  56923. },
  56924. mienshao_frontNsfw: {
  56925. height: math.unit(4 + 7/12, "feet"),
  56926. weight: math.unit(78.3, "lb"),
  56927. name: "Front (NSFW)",
  56928. image: {
  56929. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56930. extra: 1052/970,
  56931. bottom: 108/1160
  56932. },
  56933. form: "mienshao",
  56934. },
  56935. mienshao_back: {
  56936. height: math.unit(4 + 7/12, "feet"),
  56937. weight: math.unit(78.3, "lb"),
  56938. name: "Back",
  56939. image: {
  56940. source: "./media/characters/robin-phox/mienshao-back.svg",
  56941. extra: 1102/982,
  56942. bottom: 32/1134
  56943. },
  56944. form: "mienshao",
  56945. },
  56946. inteleon_front: {
  56947. height: math.unit(6 + 3/12, "feet"),
  56948. weight: math.unit(99.6, "lb"),
  56949. name: "Front",
  56950. image: {
  56951. source: "./media/characters/robin-phox/inteleon-front.svg",
  56952. extra: 910/799,
  56953. bottom: 76/986
  56954. },
  56955. form: "inteleon",
  56956. default: true
  56957. },
  56958. inteleon_frontNsfw: {
  56959. height: math.unit(6 + 3/12, "feet"),
  56960. weight: math.unit(99.6, "lb"),
  56961. name: "Front (NSFW)",
  56962. image: {
  56963. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56964. extra: 910/799,
  56965. bottom: 76/986
  56966. },
  56967. form: "inteleon",
  56968. },
  56969. inteleon_back: {
  56970. height: math.unit(6 + 3/12, "feet"),
  56971. weight: math.unit(99.6, "lb"),
  56972. name: "Back",
  56973. image: {
  56974. source: "./media/characters/robin-phox/inteleon-back.svg",
  56975. extra: 907/796,
  56976. bottom: 25/932
  56977. },
  56978. form: "inteleon",
  56979. },
  56980. reshiram_front: {
  56981. height: math.unit(10 + 6/12, "feet"),
  56982. weight: math.unit(727.5, "lb"),
  56983. name: "Front",
  56984. image: {
  56985. source: "./media/characters/robin-phox/reshiram-front.svg",
  56986. extra: 1198/940,
  56987. bottom: 123/1321
  56988. },
  56989. form: "reshiram",
  56990. },
  56991. reshiram_frontNsfw: {
  56992. height: math.unit(10 + 6/12, "feet"),
  56993. weight: math.unit(727.5, "lb"),
  56994. name: "Front-nsfw",
  56995. image: {
  56996. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56997. extra: 1198/940,
  56998. bottom: 123/1321
  56999. },
  57000. form: "reshiram",
  57001. },
  57002. reshiram_back: {
  57003. height: math.unit(10 + 6/12, "feet"),
  57004. weight: math.unit(727.5, "lb"),
  57005. name: "Back",
  57006. image: {
  57007. source: "./media/characters/robin-phox/reshiram-back.svg",
  57008. extra: 1024/904,
  57009. bottom: 85/1109
  57010. },
  57011. form: "reshiram",
  57012. },
  57013. samurott_front: {
  57014. height: math.unit(8, "feet"),
  57015. weight: math.unit(208.6, "lb"),
  57016. name: "Front",
  57017. image: {
  57018. source: "./media/characters/robin-phox/samurott-front.svg",
  57019. extra: 1048/984,
  57020. bottom: 100/1148
  57021. },
  57022. form: "samurott",
  57023. },
  57024. samurott_frontNsfw: {
  57025. height: math.unit(8, "feet"),
  57026. weight: math.unit(208.6, "lb"),
  57027. name: "Front-nsfw",
  57028. image: {
  57029. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57030. extra: 1048/984,
  57031. bottom: 100/1148
  57032. },
  57033. form: "samurott",
  57034. },
  57035. samurott_back: {
  57036. height: math.unit(8, "feet"),
  57037. weight: math.unit(208.6, "lb"),
  57038. name: "Back",
  57039. image: {
  57040. source: "./media/characters/robin-phox/samurott-back.svg",
  57041. extra: 1110/1042,
  57042. bottom: 12/1122
  57043. },
  57044. form: "samurott",
  57045. },
  57046. samurott_feral: {
  57047. height: math.unit(4 + 11/12, "feet"),
  57048. weight: math.unit(208.6, "lb"),
  57049. name: "Feral",
  57050. image: {
  57051. source: "./media/characters/robin-phox/samurott-feral.svg",
  57052. extra: 766/681,
  57053. bottom: 108/874
  57054. },
  57055. form: "samurott",
  57056. },
  57057. },
  57058. [
  57059. {
  57060. name: "Normal",
  57061. height: math.unit(2, "feet"),
  57062. default: true,
  57063. form: "snivy"
  57064. },
  57065. {
  57066. name: "Normal",
  57067. height: math.unit(6, "feet"),
  57068. default: true,
  57069. form: "yoshi"
  57070. },
  57071. {
  57072. name: "Normal",
  57073. height: math.unit(4 + 11/12, "feet"),
  57074. default: true,
  57075. form: "delphox"
  57076. },
  57077. {
  57078. name: "Normal",
  57079. height: math.unit(4 + 7/12, "feet"),
  57080. default: true,
  57081. form: "mienshao"
  57082. },
  57083. {
  57084. name: "Normal",
  57085. height: math.unit(6 + 3/12, "feet"),
  57086. default: true,
  57087. form: "inteleon"
  57088. },
  57089. {
  57090. name: "Normal",
  57091. height: math.unit(10 + 6/12, "feet"),
  57092. default: true,
  57093. form: "reshiram"
  57094. },
  57095. {
  57096. name: "Normal",
  57097. height: math.unit(8, "feet"),
  57098. default: true,
  57099. form: "samurott"
  57100. },
  57101. {
  57102. name: "Macro",
  57103. height: math.unit(500, "feet"),
  57104. allForms: true
  57105. },
  57106. {
  57107. name: "Mega Macro",
  57108. height: math.unit(10, "earths"),
  57109. allForms: true
  57110. },
  57111. {
  57112. name: "Giga Macro",
  57113. height: math.unit(1, "galaxy"),
  57114. allForms: true
  57115. },
  57116. {
  57117. name: "Godly Macro",
  57118. height: math.unit(1e10, "multiverses"),
  57119. allForms: true
  57120. },
  57121. ],
  57122. {
  57123. "snivy": {
  57124. name: "Snivy",
  57125. default: true
  57126. },
  57127. "yoshi": {
  57128. name: "Yoshi",
  57129. },
  57130. "delphox": {
  57131. name: "Delphox",
  57132. },
  57133. "mienshao": {
  57134. name: "Mienshao",
  57135. },
  57136. "inteleon": {
  57137. name: "Inteleon",
  57138. },
  57139. "reshiram": {
  57140. name: "Reshiram",
  57141. },
  57142. "samurott": {
  57143. name: "Samurott",
  57144. },
  57145. }
  57146. ))
  57147. characterMakers.push(() => makeCharacter(
  57148. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57149. {
  57150. front: {
  57151. height: math.unit(4, "feet"),
  57152. name: "Front",
  57153. image: {
  57154. source: "./media/characters/ash-leung/front.svg",
  57155. extra: 1916/1792,
  57156. bottom: 50/1966
  57157. }
  57158. },
  57159. },
  57160. [
  57161. {
  57162. name: "Atomic",
  57163. height: math.unit(1, "angstrom")
  57164. },
  57165. {
  57166. name: "Microscopic",
  57167. height: math.unit(4000, "angstroms")
  57168. },
  57169. {
  57170. name: "Speck",
  57171. height: math.unit(1, "mm")
  57172. },
  57173. {
  57174. name: "Small",
  57175. height: math.unit(1, "inch")
  57176. },
  57177. {
  57178. name: "Normal",
  57179. height: math.unit(4, "feet"),
  57180. default: true
  57181. },
  57182. ]
  57183. ))
  57184. characterMakers.push(() => makeCharacter(
  57185. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57186. {
  57187. frontDressed: {
  57188. height: math.unit(2.08, "meters"),
  57189. weight: math.unit(175, "lb"),
  57190. name: "Front (Dressed)",
  57191. image: {
  57192. source: "./media/characters/carie/front-dressed.svg",
  57193. extra: 456/417,
  57194. bottom: 7/463
  57195. }
  57196. },
  57197. backDressed: {
  57198. height: math.unit(2.08, "meters"),
  57199. weight: math.unit(175, "lb"),
  57200. name: "Back (Dressed)",
  57201. image: {
  57202. source: "./media/characters/carie/back-dressed.svg",
  57203. extra: 455/414,
  57204. bottom: 11/466
  57205. }
  57206. },
  57207. front: {
  57208. height: math.unit(2, "meters"),
  57209. weight: math.unit(175, "lb"),
  57210. name: "Front",
  57211. image: {
  57212. source: "./media/characters/carie/front.svg",
  57213. extra: 438/399,
  57214. bottom: 12/450
  57215. }
  57216. },
  57217. back: {
  57218. height: math.unit(2, "meters"),
  57219. weight: math.unit(175, "lb"),
  57220. name: "Back",
  57221. image: {
  57222. source: "./media/characters/carie/back.svg",
  57223. extra: 438/397,
  57224. bottom: 7/445
  57225. }
  57226. },
  57227. },
  57228. [
  57229. {
  57230. name: "Normal",
  57231. height: math.unit(2.08, "meters"),
  57232. default: true
  57233. },
  57234. {
  57235. name: "Macro",
  57236. height: math.unit(2.08e3, "meters")
  57237. },
  57238. {
  57239. name: "Mega Macro",
  57240. height: math.unit(2.08e6, "meters")
  57241. },
  57242. {
  57243. name: "Giga Macro",
  57244. height: math.unit(2.08e9, "meters")
  57245. },
  57246. {
  57247. name: "Tera Macro",
  57248. height: math.unit(2.08e12, "meters")
  57249. },
  57250. {
  57251. name: "Peta Macro",
  57252. height: math.unit(2.08e15, "meters")
  57253. },
  57254. {
  57255. name: "Exa Macro",
  57256. height: math.unit(2.08e18, "meters")
  57257. },
  57258. {
  57259. name: "Zetta Macro",
  57260. height: math.unit(2.08e21, "meters")
  57261. },
  57262. {
  57263. name: "Yotta Macro",
  57264. height: math.unit(2.08e24, "meters")
  57265. },
  57266. ]
  57267. ))
  57268. characterMakers.push(() => makeCharacter(
  57269. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57270. {
  57271. front: {
  57272. height: math.unit(5 + 2/12, "feet"),
  57273. weight: math.unit(120, "lb"),
  57274. name: "Front",
  57275. image: {
  57276. source: "./media/characters/sai-bree/front.svg",
  57277. extra: 1843/1702,
  57278. bottom: 91/1934
  57279. }
  57280. },
  57281. back: {
  57282. height: math.unit(5 + 2/12, "feet"),
  57283. weight: math.unit(120, "lb"),
  57284. name: "Back",
  57285. image: {
  57286. source: "./media/characters/sai-bree/back.svg",
  57287. extra: 1809/1637,
  57288. bottom: 56/1865
  57289. }
  57290. },
  57291. },
  57292. [
  57293. {
  57294. name: "Normal",
  57295. height: math.unit(5 + 2/12, "feet"),
  57296. default: true
  57297. },
  57298. {
  57299. name: "Macro",
  57300. height: math.unit(500, "feet")
  57301. },
  57302. ]
  57303. ))
  57304. characterMakers.push(() => makeCharacter(
  57305. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57306. {
  57307. side: {
  57308. height: math.unit(0.77, "meters"),
  57309. weight: math.unit(120, "lb"),
  57310. name: "Side",
  57311. image: {
  57312. source: "./media/characters/davwyn/side.svg",
  57313. extra: 1557/1225,
  57314. bottom: 131/1688
  57315. }
  57316. },
  57317. front: {
  57318. height: math.unit(0.835410, "meters"),
  57319. weight: math.unit(120, "lb"),
  57320. name: "Front",
  57321. image: {
  57322. source: "./media/characters/davwyn/front.svg",
  57323. extra: 870/843,
  57324. bottom: 175/1045
  57325. }
  57326. },
  57327. },
  57328. [
  57329. {
  57330. name: "Minidrake",
  57331. height: math.unit(0.77/4, "meters")
  57332. },
  57333. {
  57334. name: "Normal",
  57335. height: math.unit(0.77, "meters"),
  57336. default: true
  57337. },
  57338. ]
  57339. ))
  57340. characterMakers.push(() => makeCharacter(
  57341. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57342. {
  57343. front: {
  57344. height: math.unit(10 + 3/12, "feet"),
  57345. weight: math.unit(2857, "lb"),
  57346. name: "Front",
  57347. image: {
  57348. source: "./media/characters/balans/front.svg",
  57349. extra: 427/402,
  57350. bottom: 26/453
  57351. }
  57352. },
  57353. side: {
  57354. height: math.unit(10 + 3/12, "feet"),
  57355. weight: math.unit(2857, "lb"),
  57356. name: "Side",
  57357. image: {
  57358. source: "./media/characters/balans/side.svg",
  57359. extra: 397/371,
  57360. bottom: 17/414
  57361. }
  57362. },
  57363. back: {
  57364. height: math.unit(10 + 3/12, "feet"),
  57365. weight: math.unit(2857, "lb"),
  57366. name: "Back",
  57367. image: {
  57368. source: "./media/characters/balans/back.svg",
  57369. extra: 408/381,
  57370. bottom: 14/422
  57371. }
  57372. },
  57373. hand: {
  57374. height: math.unit(1.15, "feet"),
  57375. name: "Hand",
  57376. image: {
  57377. source: "./media/characters/balans/hand.svg"
  57378. }
  57379. },
  57380. footRest: {
  57381. height: math.unit(3.1, "feet"),
  57382. name: "Foot (Rest)",
  57383. image: {
  57384. source: "./media/characters/balans/foot-rest.svg"
  57385. }
  57386. },
  57387. footActive: {
  57388. height: math.unit(3.5, "feet"),
  57389. name: "Foot (Active)",
  57390. image: {
  57391. source: "./media/characters/balans/foot-active.svg"
  57392. }
  57393. },
  57394. },
  57395. [
  57396. {
  57397. name: "Normal",
  57398. height: math.unit(10 + 3/12, "feet"),
  57399. default: true
  57400. },
  57401. ]
  57402. ))
  57403. characterMakers.push(() => makeCharacter(
  57404. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57405. {
  57406. side: {
  57407. height: math.unit(9, "meters"),
  57408. weight: math.unit(114, "tonnes"),
  57409. name: "Side",
  57410. image: {
  57411. source: "./media/characters/eldkveikir/side.svg",
  57412. extra: 1927/338,
  57413. bottom: 42/1969
  57414. }
  57415. },
  57416. sitting: {
  57417. height: math.unit(13.4, "meters"),
  57418. weight: math.unit(114, "tonnes"),
  57419. name: "Sitting",
  57420. image: {
  57421. source: "./media/characters/eldkveikir/sitting.svg",
  57422. extra: 1108/963,
  57423. bottom: 610/1718
  57424. }
  57425. },
  57426. maw: {
  57427. height: math.unit(8.36, "meters"),
  57428. name: "Maw",
  57429. image: {
  57430. source: "./media/characters/eldkveikir/maw.svg"
  57431. }
  57432. },
  57433. hand: {
  57434. height: math.unit(4.84, "meters"),
  57435. name: "Hand",
  57436. image: {
  57437. source: "./media/characters/eldkveikir/hand.svg"
  57438. }
  57439. },
  57440. foot: {
  57441. height: math.unit(6.9, "meters"),
  57442. name: "Foot",
  57443. image: {
  57444. source: "./media/characters/eldkveikir/foot.svg"
  57445. }
  57446. },
  57447. genitals: {
  57448. height: math.unit(9.6, "meters"),
  57449. name: "Genitals",
  57450. image: {
  57451. source: "./media/characters/eldkveikir/genitals.svg"
  57452. }
  57453. },
  57454. },
  57455. [
  57456. {
  57457. name: "Normal",
  57458. height: math.unit(9, "meters"),
  57459. default: true
  57460. },
  57461. ]
  57462. ))
  57463. characterMakers.push(() => makeCharacter(
  57464. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57465. {
  57466. front: {
  57467. height: math.unit(14, "feet"),
  57468. weight: math.unit(4100, "lb"),
  57469. name: "Front",
  57470. image: {
  57471. source: "./media/characters/arrow/front.svg",
  57472. extra: 330/318,
  57473. bottom: 56/386
  57474. }
  57475. },
  57476. },
  57477. [
  57478. {
  57479. name: "Normal",
  57480. height: math.unit(14, "feet"),
  57481. default: true
  57482. },
  57483. {
  57484. name: "Minimacro",
  57485. height: math.unit(63, "feet")
  57486. },
  57487. {
  57488. name: "Macro",
  57489. height: math.unit(630, "feet")
  57490. },
  57491. {
  57492. name: "Megamacro",
  57493. height: math.unit(12600, "feet")
  57494. },
  57495. {
  57496. name: "Gigamacro",
  57497. height: math.unit(18000, "miles")
  57498. },
  57499. ]
  57500. ))
  57501. characterMakers.push(() => makeCharacter(
  57502. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57503. {
  57504. front: {
  57505. height: math.unit(10, "feet"),
  57506. weight: math.unit(2.4, "tons"),
  57507. name: "Front",
  57508. image: {
  57509. source: "./media/characters/3yk-k0-unit/front.svg",
  57510. extra: 573/561,
  57511. bottom: 33/606
  57512. }
  57513. },
  57514. back: {
  57515. height: math.unit(10, "feet"),
  57516. weight: math.unit(2.4, "tons"),
  57517. name: "Back",
  57518. image: {
  57519. source: "./media/characters/3yk-k0-unit/back.svg",
  57520. extra: 614/573,
  57521. bottom: 32/646
  57522. }
  57523. },
  57524. maw: {
  57525. height: math.unit(2.15, "feet"),
  57526. name: "Maw",
  57527. image: {
  57528. source: "./media/characters/3yk-k0-unit/maw.svg"
  57529. }
  57530. },
  57531. },
  57532. [
  57533. {
  57534. name: "Normal",
  57535. height: math.unit(10, "feet"),
  57536. default: true
  57537. },
  57538. ]
  57539. ))
  57540. characterMakers.push(() => makeCharacter(
  57541. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57542. {
  57543. front: {
  57544. height: math.unit(8 + 8/12, "feet"),
  57545. name: "Front",
  57546. image: {
  57547. source: "./media/characters/nemo/front.svg",
  57548. extra: 1308/1217,
  57549. bottom: 57/1365
  57550. }
  57551. },
  57552. },
  57553. [
  57554. {
  57555. name: "Normal",
  57556. height: math.unit(8 + 8/12, "feet"),
  57557. default: true
  57558. },
  57559. ]
  57560. ))
  57561. characterMakers.push(() => makeCharacter(
  57562. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57563. {
  57564. front: {
  57565. height: math.unit(8, "feet"),
  57566. weight: math.unit(760, "lb"),
  57567. name: "Front",
  57568. image: {
  57569. source: "./media/characters/rexx/front.svg",
  57570. extra: 786/750,
  57571. bottom: 17/803
  57572. },
  57573. extraAttributes: {
  57574. "pawLength": {
  57575. name: "Paw Length",
  57576. power: 1,
  57577. type: "length",
  57578. base: math.unit(27, "inches")
  57579. },
  57580. }
  57581. },
  57582. },
  57583. [
  57584. {
  57585. name: "Micro",
  57586. height: math.unit(2, "inches")
  57587. },
  57588. {
  57589. name: "Normal",
  57590. height: math.unit(8, "feet"),
  57591. default: true
  57592. },
  57593. {
  57594. name: "Macro",
  57595. height: math.unit(150, "feet")
  57596. },
  57597. ]
  57598. ))
  57599. characterMakers.push(() => makeCharacter(
  57600. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57601. {
  57602. front: {
  57603. height: math.unit(18, "feet"),
  57604. weight: math.unit(1975, "lb"),
  57605. name: "Front",
  57606. image: {
  57607. source: "./media/characters/draco/front.svg",
  57608. extra: 1325/1241,
  57609. bottom: 83/1408
  57610. }
  57611. },
  57612. back: {
  57613. height: math.unit(18, "feet"),
  57614. weight: math.unit(1975, "lb"),
  57615. name: "Back",
  57616. image: {
  57617. source: "./media/characters/draco/back.svg",
  57618. extra: 1332/1250,
  57619. bottom: 43/1375
  57620. }
  57621. },
  57622. dick: {
  57623. height: math.unit(7.5, "feet"),
  57624. name: "Dick",
  57625. image: {
  57626. source: "./media/characters/draco/dick.svg"
  57627. }
  57628. },
  57629. },
  57630. [
  57631. {
  57632. name: "Normal",
  57633. height: math.unit(18, "feet"),
  57634. default: true
  57635. },
  57636. ]
  57637. ))
  57638. characterMakers.push(() => makeCharacter(
  57639. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57640. {
  57641. front: {
  57642. height: math.unit(3.2, "meters"),
  57643. name: "Front",
  57644. image: {
  57645. source: "./media/characters/harriett/front.svg",
  57646. extra: 1966/1915,
  57647. bottom: 9/1975
  57648. }
  57649. },
  57650. },
  57651. [
  57652. {
  57653. name: "Normal",
  57654. height: math.unit(3.2, "meters"),
  57655. default: true
  57656. },
  57657. ]
  57658. ))
  57659. characterMakers.push(() => makeCharacter(
  57660. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57661. {
  57662. sitting: {
  57663. height: math.unit(0.8, "meter"),
  57664. name: "Sitting",
  57665. image: {
  57666. source: "./media/characters/serpentus/sitting.svg",
  57667. extra: 293/290,
  57668. bottom: 140/433
  57669. }
  57670. },
  57671. },
  57672. [
  57673. {
  57674. name: "Normal",
  57675. height: math.unit(0.8, "meter"),
  57676. default: true
  57677. },
  57678. ]
  57679. ))
  57680. characterMakers.push(() => makeCharacter(
  57681. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57682. {
  57683. front: {
  57684. height: math.unit(5.7174385736, "feet"),
  57685. name: "Front",
  57686. image: {
  57687. source: "./media/characters/nova-polecat/front.svg",
  57688. extra: 1317/1216,
  57689. bottom: 92/1409
  57690. }
  57691. },
  57692. },
  57693. [
  57694. {
  57695. name: "Normal",
  57696. height: math.unit(5.7174385736, "feet"),
  57697. default: true
  57698. },
  57699. ]
  57700. ))
  57701. characterMakers.push(() => makeCharacter(
  57702. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57703. {
  57704. front: {
  57705. height: math.unit(5 + 4/12, "feet"),
  57706. weight: math.unit(250, "lb"),
  57707. name: "Front",
  57708. image: {
  57709. source: "./media/characters/mook/front.svg",
  57710. extra: 1088/1037,
  57711. bottom: 132/1220
  57712. }
  57713. },
  57714. back: {
  57715. height: math.unit(5 + 1/12, "feet"),
  57716. weight: math.unit(250, "lb"),
  57717. name: "Back",
  57718. image: {
  57719. source: "./media/characters/mook/back.svg",
  57720. extra: 1184/905,
  57721. bottom: 96/1280
  57722. }
  57723. },
  57724. head: {
  57725. height: math.unit(1.85, "feet"),
  57726. name: "Head",
  57727. image: {
  57728. source: "./media/characters/mook/head.svg"
  57729. }
  57730. },
  57731. hand: {
  57732. height: math.unit(1.9, "feet"),
  57733. name: "Hand",
  57734. image: {
  57735. source: "./media/characters/mook/hand.svg"
  57736. }
  57737. },
  57738. palm: {
  57739. height: math.unit(1.84, "feet"),
  57740. name: "Palm",
  57741. image: {
  57742. source: "./media/characters/mook/palm.svg"
  57743. }
  57744. },
  57745. foot: {
  57746. height: math.unit(1.44, "feet"),
  57747. name: "Foot",
  57748. image: {
  57749. source: "./media/characters/mook/foot.svg"
  57750. }
  57751. },
  57752. sole: {
  57753. height: math.unit(1.44, "feet"),
  57754. name: "Sole",
  57755. image: {
  57756. source: "./media/characters/mook/sole.svg"
  57757. }
  57758. },
  57759. },
  57760. [
  57761. {
  57762. name: "Normal",
  57763. height: math.unit(5 + 4/12, "feet"),
  57764. default: true
  57765. },
  57766. {
  57767. name: "Big",
  57768. height: math.unit(12, "feet")
  57769. },
  57770. ]
  57771. ))
  57772. characterMakers.push(() => makeCharacter(
  57773. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57774. {
  57775. front: {
  57776. height: math.unit(6 + 10/12, "feet"),
  57777. weight: math.unit(233, "lb"),
  57778. name: "Front",
  57779. image: {
  57780. source: "./media/characters/kayla/front.svg",
  57781. extra: 1850/1775,
  57782. bottom: 65/1915
  57783. }
  57784. },
  57785. },
  57786. [
  57787. {
  57788. name: "Normal",
  57789. height: math.unit(6 + 10/12, "feet"),
  57790. default: true
  57791. },
  57792. {
  57793. name: "Amazonian",
  57794. height: math.unit(12 + 5/12, "feet")
  57795. },
  57796. {
  57797. name: "Mini Giantess",
  57798. height: math.unit(26, "feet")
  57799. },
  57800. {
  57801. name: "Giantess",
  57802. height: math.unit(200, "feet")
  57803. },
  57804. {
  57805. name: "Mega Giantess",
  57806. height: math.unit(2500, "feet")
  57807. },
  57808. {
  57809. name: "City Sized",
  57810. height: math.unit(50, "miles")
  57811. },
  57812. {
  57813. name: "Country Sized",
  57814. height: math.unit(500, "miles")
  57815. },
  57816. {
  57817. name: "Continent Sized",
  57818. height: math.unit(2500, "miles")
  57819. },
  57820. {
  57821. name: "Planet Sized",
  57822. height: math.unit(10000, "miles")
  57823. },
  57824. {
  57825. name: "Star Sized",
  57826. height: math.unit(5e6, "miles")
  57827. },
  57828. {
  57829. name: "Solar System Sized",
  57830. height: math.unit(125, "AU")
  57831. },
  57832. {
  57833. name: "Galaxy Sized",
  57834. height: math.unit(300e3, "lightyears")
  57835. },
  57836. {
  57837. name: "Universe Sized",
  57838. height: math.unit(200e9, "lightyears")
  57839. },
  57840. {
  57841. name: "Multiverse Sized",
  57842. height: math.unit(20, "exauniverses")
  57843. },
  57844. {
  57845. name: "Mother of Existence",
  57846. height: math.unit(1e6, "yottauniverses")
  57847. },
  57848. ]
  57849. ))
  57850. characterMakers.push(() => makeCharacter(
  57851. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57852. {
  57853. side: {
  57854. height: math.unit(9.5, "meters"),
  57855. name: "Side",
  57856. image: {
  57857. source: "./media/characters/kulve-ragnarok/side.svg",
  57858. extra: 364/326,
  57859. bottom: 50/414
  57860. }
  57861. },
  57862. },
  57863. [
  57864. {
  57865. name: "Normal",
  57866. height: math.unit(9.5, "meters"),
  57867. default: true
  57868. },
  57869. ]
  57870. ))
  57871. characterMakers.push(() => makeCharacter(
  57872. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57873. {
  57874. front: {
  57875. height: math.unit(8 + 9/12, "feet"),
  57876. name: "Front",
  57877. image: {
  57878. source: "./media/characters/atlas-goat/front.svg",
  57879. extra: 1462/1323,
  57880. bottom: 12/1474
  57881. }
  57882. },
  57883. },
  57884. [
  57885. {
  57886. name: "Normal",
  57887. height: math.unit(8 + 9/12, "feet"),
  57888. default: true
  57889. },
  57890. {
  57891. name: "Skyline",
  57892. height: math.unit(845, "feet")
  57893. },
  57894. {
  57895. name: "Orbital",
  57896. height: math.unit(93000, "miles")
  57897. },
  57898. {
  57899. name: "Constellation",
  57900. height: math.unit(27000, "lightyears")
  57901. },
  57902. ]
  57903. ))
  57904. characterMakers.push(() => makeCharacter(
  57905. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57906. {
  57907. side: {
  57908. height: math.unit(1.8, "meters"),
  57909. weight: math.unit(120, "kg"),
  57910. name: "Side",
  57911. image: {
  57912. source: "./media/characters/xie-ling/side.svg",
  57913. extra: 646/574,
  57914. bottom: 44/690
  57915. }
  57916. },
  57917. },
  57918. [
  57919. {
  57920. name: "Tiny",
  57921. height: math.unit(1.80, "meters")
  57922. },
  57923. {
  57924. name: "Small",
  57925. height: math.unit(6, "meters")
  57926. },
  57927. {
  57928. name: "Medium",
  57929. height: math.unit(15, "meters")
  57930. },
  57931. {
  57932. name: "Normal",
  57933. height: math.unit(30, "meters"),
  57934. default: true
  57935. },
  57936. {
  57937. name: "Above Normal",
  57938. height: math.unit(60, "meters")
  57939. },
  57940. {
  57941. name: "Big",
  57942. height: math.unit(220, "meters")
  57943. },
  57944. {
  57945. name: "Giant",
  57946. height: math.unit(2.2, "km")
  57947. },
  57948. {
  57949. name: "Macro",
  57950. height: math.unit(25, "km")
  57951. },
  57952. {
  57953. name: "Mega Macro",
  57954. height: math.unit(350, "km")
  57955. },
  57956. {
  57957. name: "Mega Macro+",
  57958. height: math.unit(5000, "km")
  57959. },
  57960. {
  57961. name: "Goddess",
  57962. height: math.unit(3, "multiverses")
  57963. },
  57964. ]
  57965. ))
  57966. characterMakers.push(() => makeCharacter(
  57967. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57968. {
  57969. frontSfw: {
  57970. height: math.unit(5 + 11/12, "feet"),
  57971. weight: math.unit(210, "lb"),
  57972. name: "Front",
  57973. image: {
  57974. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57975. extra: 1928/1821,
  57976. bottom: 45/1973
  57977. }
  57978. },
  57979. backSfw: {
  57980. height: math.unit(5 + 11/12, "feet"),
  57981. weight: math.unit(210, "lb"),
  57982. name: "Back",
  57983. image: {
  57984. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57985. extra: 1920/1813,
  57986. bottom: 34/1954
  57987. }
  57988. },
  57989. frontNsfw: {
  57990. height: math.unit(5 + 11/12, "feet"),
  57991. weight: math.unit(210, "lb"),
  57992. name: "Front (NSFW)",
  57993. image: {
  57994. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57995. extra: 1928/1821,
  57996. bottom: 45/1973
  57997. }
  57998. },
  57999. backNsfw: {
  58000. height: math.unit(5 + 11/12, "feet"),
  58001. weight: math.unit(210, "lb"),
  58002. name: "Back (NSFW)",
  58003. image: {
  58004. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58005. extra: 1920/1813,
  58006. bottom: 34/1954
  58007. }
  58008. },
  58009. },
  58010. [
  58011. {
  58012. name: "Normal",
  58013. height: math.unit(5 + 11/12, "feet"),
  58014. default: true
  58015. },
  58016. {
  58017. name: "Goddess",
  58018. height: math.unit(20 + 3/12, "feet")
  58019. },
  58020. {
  58021. name: "Breaker of Man",
  58022. height: math.unit(329 + 9/12, "feet")
  58023. },
  58024. {
  58025. name: "Solar Justice",
  58026. height: math.unit(0.6, "solarradii")
  58027. },
  58028. {
  58029. name: "She Who Judges",
  58030. height: math.unit(1, "universe")
  58031. },
  58032. ]
  58033. ))
  58034. characterMakers.push(() => makeCharacter(
  58035. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58036. {
  58037. casual_front: {
  58038. height: math.unit(6 + 1/12, "feet"),
  58039. weight: math.unit(190, "lb"),
  58040. preyCapacity: math.unit(1, "people"),
  58041. name: "Front",
  58042. image: {
  58043. source: "./media/characters/managarmr/casual-front.svg",
  58044. extra: 411/381,
  58045. bottom: 15/426
  58046. },
  58047. extraAttributes: {
  58048. "pawSize": {
  58049. name: "Paw Size",
  58050. power: 1,
  58051. type: "length",
  58052. base: math.unit(0.2, "meters")
  58053. },
  58054. },
  58055. form: "casual",
  58056. },
  58057. casual_back: {
  58058. height: math.unit(6 + 1/12, "feet"),
  58059. weight: math.unit(190, "lb"),
  58060. preyCapacity: math.unit(1, "people"),
  58061. name: "Back",
  58062. image: {
  58063. source: "./media/characters/managarmr/casual-back.svg",
  58064. extra: 413/383,
  58065. bottom: 13/426
  58066. },
  58067. extraAttributes: {
  58068. "pawSize": {
  58069. name: "Paw Size",
  58070. power: 1,
  58071. type: "length",
  58072. base: math.unit(0.2, "meters")
  58073. },
  58074. },
  58075. form: "casual",
  58076. },
  58077. base_front: {
  58078. height: math.unit(7, "feet"),
  58079. weight: math.unit(210, "lb"),
  58080. preyCapacity: math.unit(2, "people"),
  58081. name: "Front",
  58082. image: {
  58083. source: "./media/characters/managarmr/base-front.svg",
  58084. extra: 580/485,
  58085. bottom: 32/612
  58086. },
  58087. extraAttributes: {
  58088. "wingspan": {
  58089. name: "Wingspan",
  58090. power: 1,
  58091. type: "length",
  58092. base: math.unit(4, "meters")
  58093. },
  58094. "pawSize": {
  58095. name: "Paw Size",
  58096. power: 1,
  58097. type: "length",
  58098. base: math.unit(0.2, "meters")
  58099. },
  58100. },
  58101. form: "base",
  58102. },
  58103. "true-divine_front": {
  58104. height: math.unit(40, "feet"),
  58105. weight: math.unit(39000, "lb"),
  58106. preyCapacity: math.unit(375, "people"),
  58107. name: "Front",
  58108. image: {
  58109. source: "./media/characters/managarmr/true-divine-front.svg",
  58110. extra: 725/573,
  58111. bottom: 120/845
  58112. },
  58113. extraAttributes: {
  58114. "wingspan": {
  58115. name: "Wingspan",
  58116. power: 1,
  58117. type: "length",
  58118. base: math.unit(20, "meters")
  58119. },
  58120. "pawSize": {
  58121. name: "Paw Size",
  58122. power: 1,
  58123. type: "length",
  58124. base: math.unit(1.5, "meters")
  58125. },
  58126. },
  58127. form: "true-divine",
  58128. },
  58129. },
  58130. [
  58131. {
  58132. name: "Normal",
  58133. height: math.unit(6 + 1/12, "feet"),
  58134. form: "casual",
  58135. default: true
  58136. },
  58137. {
  58138. name: "Normal",
  58139. height: math.unit(7, "feet"),
  58140. form: "base",
  58141. default: true
  58142. },
  58143. ],
  58144. {
  58145. "casual": {
  58146. name: "Casual",
  58147. default: true
  58148. },
  58149. "base": {
  58150. name: "Base",
  58151. },
  58152. "true-divine": {
  58153. name: "True Divine",
  58154. },
  58155. }
  58156. ))
  58157. characterMakers.push(() => makeCharacter(
  58158. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58159. {
  58160. front: {
  58161. height: math.unit(1.8, "meters"),
  58162. weight: math.unit(110, "kg"),
  58163. name: "Front",
  58164. image: {
  58165. source: "./media/characters/mystra/front.svg",
  58166. extra: 529/442,
  58167. bottom: 31/560
  58168. }
  58169. },
  58170. frontLewd: {
  58171. height: math.unit(1.8, "meters"),
  58172. weight: math.unit(110, "kg"),
  58173. name: "Front (Lewd)",
  58174. image: {
  58175. source: "./media/characters/mystra/front-lewd.svg",
  58176. extra: 529/442,
  58177. bottom: 31/560
  58178. }
  58179. },
  58180. head: {
  58181. height: math.unit(1.63, "feet"),
  58182. name: "Head",
  58183. image: {
  58184. source: "./media/characters/mystra/head.svg"
  58185. }
  58186. },
  58187. paw: {
  58188. height: math.unit(1.9, "feet"),
  58189. name: "Paw",
  58190. image: {
  58191. source: "./media/characters/mystra/paw.svg"
  58192. }
  58193. },
  58194. },
  58195. [
  58196. {
  58197. name: "Incognito",
  58198. height: math.unit(2.3, "meters")
  58199. },
  58200. {
  58201. name: "Small Macro",
  58202. height: math.unit(300, "meters")
  58203. },
  58204. {
  58205. name: "Small Mega",
  58206. height: math.unit(2, "km")
  58207. },
  58208. {
  58209. name: "Mega",
  58210. height: math.unit(30, "km")
  58211. },
  58212. {
  58213. name: "Small Giga",
  58214. height: math.unit(100, "km")
  58215. },
  58216. {
  58217. name: "Giga",
  58218. height: math.unit(1000, "km"),
  58219. default: true
  58220. },
  58221. {
  58222. name: "Continental",
  58223. height: math.unit(5000, "km")
  58224. },
  58225. {
  58226. name: "Terra",
  58227. height: math.unit(20000, "km")
  58228. },
  58229. {
  58230. name: "Solar",
  58231. height: math.unit(2e6, "km")
  58232. },
  58233. {
  58234. name: "Galactic",
  58235. height: math.unit(528502, "lightyears")
  58236. },
  58237. {
  58238. name: "Universal",
  58239. height: math.unit(20, "universes")
  58240. },
  58241. ]
  58242. ))
  58243. characterMakers.push(() => makeCharacter(
  58244. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58245. {
  58246. front: {
  58247. height: math.unit(2, "meters"),
  58248. weight: math.unit(140, "kg"),
  58249. name: "Front",
  58250. image: {
  58251. source: "./media/characters/caleb/front.svg",
  58252. extra: 873/817,
  58253. bottom: 47/920
  58254. }
  58255. },
  58256. back: {
  58257. height: math.unit(2, "meters"),
  58258. weight: math.unit(140, "kg"),
  58259. name: "Back",
  58260. image: {
  58261. source: "./media/characters/caleb/back.svg",
  58262. extra: 877/828,
  58263. bottom: 24/901
  58264. }
  58265. },
  58266. snakeTail: {
  58267. height: math.unit(1.44, "feet"),
  58268. name: "Snake Tail",
  58269. image: {
  58270. source: "./media/characters/caleb/snake-tail.svg"
  58271. }
  58272. },
  58273. dick: {
  58274. height: math.unit(2.6, "feet"),
  58275. name: "Dick",
  58276. image: {
  58277. source: "./media/characters/caleb/dick.svg"
  58278. }
  58279. },
  58280. },
  58281. [
  58282. {
  58283. name: "Incognito",
  58284. height: math.unit(3, "meters")
  58285. },
  58286. {
  58287. name: "Home Size",
  58288. height: math.unit(200, "meters"),
  58289. default: true
  58290. },
  58291. {
  58292. name: "Macro",
  58293. height: math.unit(500, "meters")
  58294. },
  58295. {
  58296. name: "Big Macro",
  58297. height: math.unit(5, "km")
  58298. },
  58299. {
  58300. name: "Giga",
  58301. height: math.unit(250, "km")
  58302. },
  58303. {
  58304. name: "Giga+",
  58305. height: math.unit(5000, "km")
  58306. },
  58307. {
  58308. name: "Small Terra",
  58309. height: math.unit(35e3, "km")
  58310. },
  58311. {
  58312. name: "Terra",
  58313. height: math.unit(2e6, "km")
  58314. },
  58315. {
  58316. name: "Terra+",
  58317. height: math.unit(1.5e6, "km")
  58318. },
  58319. ]
  58320. ))
  58321. characterMakers.push(() => makeCharacter(
  58322. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58323. {
  58324. front: {
  58325. height: math.unit(2, "meters"),
  58326. weight: math.unit(120, "kg"),
  58327. name: "Front",
  58328. image: {
  58329. source: "./media/characters/gilirian/front.svg",
  58330. extra: 805/737,
  58331. bottom: 13/818
  58332. }
  58333. },
  58334. side: {
  58335. height: math.unit(2, "meters"),
  58336. weight: math.unit(120, "kg"),
  58337. name: "Side",
  58338. image: {
  58339. source: "./media/characters/gilirian/side.svg",
  58340. extra: 810/746,
  58341. bottom: 6/816
  58342. }
  58343. },
  58344. back: {
  58345. height: math.unit(2, "meters"),
  58346. weight: math.unit(120, "kg"),
  58347. name: "Back",
  58348. image: {
  58349. source: "./media/characters/gilirian/back.svg",
  58350. extra: 815/745,
  58351. bottom: 15/830
  58352. }
  58353. },
  58354. frontNsfw: {
  58355. height: math.unit(2, "meters"),
  58356. weight: math.unit(120, "kg"),
  58357. name: "Front (NSFW)",
  58358. image: {
  58359. source: "./media/characters/gilirian/front-nsfw.svg",
  58360. extra: 805/737,
  58361. bottom: 13/818
  58362. }
  58363. },
  58364. sideNsfw: {
  58365. height: math.unit(2, "meters"),
  58366. weight: math.unit(120, "kg"),
  58367. name: "Side (NSFW)",
  58368. image: {
  58369. source: "./media/characters/gilirian/side-nsfw.svg",
  58370. extra: 810/746,
  58371. bottom: 6/816
  58372. }
  58373. },
  58374. },
  58375. [
  58376. {
  58377. name: "Incognito",
  58378. height: math.unit(2, "meters"),
  58379. default: true
  58380. },
  58381. {
  58382. name: "Macro",
  58383. height: math.unit(250, "meters")
  58384. },
  58385. {
  58386. name: "Big Macro",
  58387. height: math.unit(1500, "meters")
  58388. },
  58389. {
  58390. name: "Mega",
  58391. height: math.unit(40, "km")
  58392. },
  58393. {
  58394. name: "Giga",
  58395. height: math.unit(300, "km")
  58396. },
  58397. {
  58398. name: "Extra Giga",
  58399. height: math.unit(5000, "km")
  58400. },
  58401. {
  58402. name: "Small Terra",
  58403. height: math.unit(10e3, "km")
  58404. },
  58405. {
  58406. name: "Terra",
  58407. height: math.unit(3e5, "km")
  58408. },
  58409. {
  58410. name: "Galactic",
  58411. height: math.unit(369950, "lightyears")
  58412. },
  58413. ]
  58414. ))
  58415. characterMakers.push(() => makeCharacter(
  58416. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58417. {
  58418. front: {
  58419. height: math.unit(2.5, "meters"),
  58420. weight: math.unit(230, "lb"),
  58421. name: "Front",
  58422. image: {
  58423. source: "./media/characters/tarken/front.svg",
  58424. extra: 764/720,
  58425. bottom: 49/813
  58426. }
  58427. },
  58428. back: {
  58429. height: math.unit(2.5, "meters"),
  58430. weight: math.unit(230, "lb"),
  58431. name: "Back",
  58432. image: {
  58433. source: "./media/characters/tarken/back.svg",
  58434. extra: 756/720,
  58435. bottom: 35/791
  58436. }
  58437. },
  58438. frontNsfw: {
  58439. height: math.unit(2.5, "meters"),
  58440. weight: math.unit(230, "lb"),
  58441. name: "Front (NSFW)",
  58442. image: {
  58443. source: "./media/characters/tarken/front-nsfw.svg",
  58444. extra: 764/720,
  58445. bottom: 49/813
  58446. }
  58447. },
  58448. backNsfw: {
  58449. height: math.unit(2.5, "meters"),
  58450. weight: math.unit(230, "lb"),
  58451. name: "Back (NSFW)",
  58452. image: {
  58453. source: "./media/characters/tarken/back-nsfw.svg",
  58454. extra: 756/720,
  58455. bottom: 35/791
  58456. }
  58457. },
  58458. head: {
  58459. height: math.unit(2.22, "feet"),
  58460. name: "Head",
  58461. image: {
  58462. source: "./media/characters/tarken/head.svg"
  58463. }
  58464. },
  58465. tail: {
  58466. height: math.unit(5.25, "feet"),
  58467. name: "Tail",
  58468. image: {
  58469. source: "./media/characters/tarken/tail.svg"
  58470. }
  58471. },
  58472. dick: {
  58473. height: math.unit(1.95, "feet"),
  58474. name: "Dick",
  58475. image: {
  58476. source: "./media/characters/tarken/dick.svg"
  58477. }
  58478. },
  58479. hand: {
  58480. height: math.unit(1.78, "feet"),
  58481. name: "Hand",
  58482. image: {
  58483. source: "./media/characters/tarken/hand.svg"
  58484. }
  58485. },
  58486. beam: {
  58487. height: math.unit(1.5, "feet"),
  58488. name: "Beam",
  58489. image: {
  58490. source: "./media/characters/tarken/beam.svg"
  58491. }
  58492. },
  58493. },
  58494. [
  58495. {
  58496. name: "Original Size",
  58497. height: math.unit(2.5, "meters")
  58498. },
  58499. {
  58500. name: "Macro",
  58501. height: math.unit(150, "meters"),
  58502. default: true
  58503. },
  58504. {
  58505. name: "Macro+",
  58506. height: math.unit(300, "meters")
  58507. },
  58508. {
  58509. name: "Mega",
  58510. height: math.unit(2, "km")
  58511. },
  58512. {
  58513. name: "Mega+",
  58514. height: math.unit(35, "km")
  58515. },
  58516.  {
  58517. name: "Mega++",
  58518. height: math.unit(60, "km")
  58519. },
  58520. {
  58521. name: "Giga",
  58522. height: math.unit(200, "km")
  58523. },
  58524. {
  58525. name: "Giga+",
  58526. height: math.unit(2500, "km")
  58527. },
  58528. {
  58529. name: "Giga++",
  58530. height: math.unit(6600, "km")
  58531. },
  58532. {
  58533. name: "Terra",
  58534. height: math.unit(20000, "km")
  58535. },
  58536. {
  58537. name: "Terra+",
  58538. height: math.unit(300000, "km")
  58539. },
  58540. ]
  58541. ))
  58542. characterMakers.push(() => makeCharacter(
  58543. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58544. {
  58545. magpie_dressed: {
  58546. height: math.unit(1.7, "meters"),
  58547. weight: math.unit(70, "kg"),
  58548. name: "Dressed",
  58549. image: {
  58550. source: "./media/characters/otreus/magpie-dressed.svg",
  58551. extra: 691/672,
  58552. bottom: 116/807
  58553. },
  58554. form: "magpie",
  58555. default: true
  58556. },
  58557. magpie_nude: {
  58558. height: math.unit(1.7, "meters"),
  58559. weight: math.unit(70, "kg"),
  58560. name: "Nude",
  58561. image: {
  58562. source: "./media/characters/otreus/magpie-nude.svg",
  58563. extra: 691/672,
  58564. bottom: 116/807
  58565. },
  58566. form: "magpie",
  58567. },
  58568. magpie_dressedLewd: {
  58569. height: math.unit(1.7, "meters"),
  58570. weight: math.unit(70, "kg"),
  58571. name: "Dressed (Lewd)",
  58572. image: {
  58573. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58574. extra: 691/672,
  58575. bottom: 116/807
  58576. },
  58577. form: "magpie",
  58578. },
  58579. magpie_nudeLewd: {
  58580. height: math.unit(1.7, "meters"),
  58581. weight: math.unit(70, "kg"),
  58582. name: "Nude (Lewd)",
  58583. image: {
  58584. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58585. extra: 691/672,
  58586. bottom: 116/807
  58587. },
  58588. form: "magpie",
  58589. },
  58590. magpie_leftFoot: {
  58591. height: math.unit(1.58, "feet"),
  58592. name: "Left Foot",
  58593. image: {
  58594. source: "./media/characters/otreus/magpie-left-foot.svg"
  58595. },
  58596. form: "magpie",
  58597. },
  58598. magpie_rightFoot: {
  58599. height: math.unit(1.58, "feet"),
  58600. name: "Right Foot",
  58601. image: {
  58602. source: "./media/characters/otreus/magpie-right-foot.svg"
  58603. },
  58604. form: "magpie",
  58605. },
  58606. magpie_wingspan: {
  58607. height: math.unit(2, "meters"),
  58608. weight: math.unit(70, "kg"),
  58609. name: "Wingspan",
  58610. image: {
  58611. source: "./media/characters/otreus/magpie-wingspan.svg"
  58612. },
  58613. extraAttributes: {
  58614. "wingspan": {
  58615. name: "Wingspan",
  58616. power: 1,
  58617. type: "length",
  58618. base: math.unit(3.35, "meters")
  58619. },
  58620. },
  58621. form: "magpie",
  58622. },
  58623. hippogriff_dressed: {
  58624. height: math.unit(1.7, "meters"),
  58625. weight: math.unit(70, "kg"),
  58626. name: "Dressed",
  58627. image: {
  58628. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58629. extra: 710/689,
  58630. bottom: 67/777
  58631. },
  58632. form: "hippogriff",
  58633. default: true
  58634. },
  58635. hippogriff_nude: {
  58636. height: math.unit(1.7, "meters"),
  58637. weight: math.unit(70, "kg"),
  58638. name: "Nude",
  58639. image: {
  58640. source: "./media/characters/otreus/hippogriff-nude.svg",
  58641. extra: 710/689,
  58642. bottom: 67/777
  58643. },
  58644. form: "hippogriff",
  58645. },
  58646. hippogriff_dressedLewd: {
  58647. height: math.unit(1.7, "meters"),
  58648. weight: math.unit(70, "kg"),
  58649. name: "Dressed (Lewd)",
  58650. image: {
  58651. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58652. extra: 710/689,
  58653. bottom: 67/777
  58654. },
  58655. form: "hippogriff",
  58656. },
  58657. hippogriff_nudeLewd: {
  58658. height: math.unit(1.7, "meters"),
  58659. weight: math.unit(70, "kg"),
  58660. name: "Nude (Lewd)",
  58661. image: {
  58662. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58663. extra: 710/689,
  58664. bottom: 67/777
  58665. },
  58666. form: "hippogriff",
  58667. },
  58668. },
  58669. [
  58670. {
  58671. name: "Original Size",
  58672. height: math.unit(1.7, "meters"),
  58673. allForms: true
  58674. },
  58675. {
  58676. name: "Incognito Size",
  58677. height: math.unit(2, "meters"),
  58678. allForms: true
  58679. },
  58680. {
  58681. name: "Mega",
  58682. height: math.unit(2, "km"),
  58683. allForms: true
  58684. },
  58685. {
  58686. name: "Mega+",
  58687. height: math.unit(40, "km"),
  58688. allForms: true
  58689. },
  58690. {
  58691. name: "Giga",
  58692. height: math.unit(250, "km"),
  58693. allForms: true
  58694. },
  58695. {
  58696. name: "Giga+",
  58697. height: math.unit(3000, "km"),
  58698. allForms: true
  58699. },
  58700. {
  58701. name: "Terra",
  58702. height: math.unit(20000, "km"),
  58703. allForms: true
  58704. },
  58705. {
  58706. name: "Solar (Home Size)",
  58707. height: math.unit(3e6, "km"),
  58708. allForms: true,
  58709. default: true
  58710. },
  58711. ],
  58712. {
  58713. "magpie": {
  58714. name: "Magpie",
  58715. default: true
  58716. },
  58717. "hippogriff": {
  58718. name: "Hippogriff",
  58719. },
  58720. }
  58721. ))
  58722. characterMakers.push(() => makeCharacter(
  58723. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58724. {
  58725. frontDressed: {
  58726. height: math.unit(1.8, "meters"),
  58727. weight: math.unit(90, "kg"),
  58728. name: "Front (Dressed)",
  58729. image: {
  58730. source: "./media/characters/thalia/front-dressed.svg",
  58731. extra: 478/402,
  58732. bottom: 55/533
  58733. }
  58734. },
  58735. backDressed: {
  58736. height: math.unit(1.8, "meters"),
  58737. weight: math.unit(90, "kg"),
  58738. name: "Back (Dressed)",
  58739. image: {
  58740. source: "./media/characters/thalia/back-dressed.svg",
  58741. extra: 500/424,
  58742. bottom: 15/515
  58743. }
  58744. },
  58745. frontNude: {
  58746. height: math.unit(1.8, "meters"),
  58747. weight: math.unit(90, "kg"),
  58748. name: "Front (Nude)",
  58749. image: {
  58750. source: "./media/characters/thalia/front-nude.svg",
  58751. extra: 478/402,
  58752. bottom: 55/533
  58753. }
  58754. },
  58755. backNude: {
  58756. height: math.unit(1.8, "meters"),
  58757. weight: math.unit(90, "kg"),
  58758. name: "Back (Nude)",
  58759. image: {
  58760. source: "./media/characters/thalia/back-nude.svg",
  58761. extra: 500/424,
  58762. bottom: 15/515
  58763. }
  58764. },
  58765. },
  58766. [
  58767. {
  58768. name: "Incognito",
  58769. height: math.unit(3, "meters")
  58770. },
  58771. {
  58772. name: "Macro",
  58773. height: math.unit(500, "meters")
  58774. },
  58775. {
  58776. name: "Mega",
  58777. height: math.unit(5, "km")
  58778. },
  58779. {
  58780. name: "Mega+",
  58781. height: math.unit(30, "km")
  58782. },
  58783. {
  58784. name: "Giga",
  58785. height: math.unit(350, "km")
  58786. },
  58787. {
  58788. name: "Giga+",
  58789. height: math.unit(4000, "km")
  58790. },
  58791. {
  58792. name: "Terra",
  58793. height: math.unit(35000, "km")
  58794. },
  58795. {
  58796. name: "Original Size",
  58797. height: math.unit(130000, "km")
  58798. },
  58799. {
  58800. name: "Solar (Home Size)",
  58801. height: math.unit(4e6, "km"),
  58802. default: true
  58803. },
  58804. ]
  58805. ))
  58806. characterMakers.push(() => makeCharacter(
  58807. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58808. {
  58809. front: {
  58810. height: math.unit(1.8, "meters"),
  58811. weight: math.unit(95, "kg"),
  58812. name: "Front",
  58813. image: {
  58814. source: "./media/characters/shango/front.svg",
  58815. extra: 1925/1774,
  58816. bottom: 67/1992
  58817. }
  58818. },
  58819. back: {
  58820. height: math.unit(1.8, "meters"),
  58821. weight: math.unit(95, "kg"),
  58822. name: "Back",
  58823. image: {
  58824. source: "./media/characters/shango/back.svg",
  58825. extra: 1915/1766,
  58826. bottom: 52/1967
  58827. }
  58828. },
  58829. frontLewd: {
  58830. height: math.unit(1.8, "meters"),
  58831. weight: math.unit(95, "kg"),
  58832. name: "Front (Lewd)",
  58833. image: {
  58834. source: "./media/characters/shango/front-lewd.svg",
  58835. extra: 1925/1774,
  58836. bottom: 67/1992
  58837. }
  58838. },
  58839. backLewd: {
  58840. height: math.unit(1.8, "meters"),
  58841. weight: math.unit(95, "kg"),
  58842. name: "Back (Lewd)",
  58843. image: {
  58844. source: "./media/characters/shango/back-lewd.svg",
  58845. extra: 1915/1766,
  58846. bottom: 52/1967
  58847. }
  58848. },
  58849. maw: {
  58850. height: math.unit(1.64, "feet"),
  58851. name: "Maw",
  58852. image: {
  58853. source: "./media/characters/shango/maw.svg"
  58854. }
  58855. },
  58856. dick: {
  58857. height: math.unit(2.14, "feet"),
  58858. name: "Dick",
  58859. image: {
  58860. source: "./media/characters/shango/dick.svg"
  58861. }
  58862. },
  58863. },
  58864. [
  58865. {
  58866. name: "Incognito",
  58867. height: math.unit(1.8, "meters")
  58868. },
  58869. {
  58870. name: "Home Size",
  58871. height: math.unit(60, "meters"),
  58872. default: true
  58873. },
  58874. {
  58875. name: "Macro",
  58876. height: math.unit(450, "meters")
  58877. },
  58878. {
  58879. name: "Mega",
  58880. height: math.unit(6, "km")
  58881. },
  58882. {
  58883. name: "Mega+",
  58884. height: math.unit(35, "km")
  58885. },
  58886. {
  58887. name: "Giga",
  58888. height: math.unit(500, "km")
  58889. },
  58890. {
  58891. name: "Giga+",
  58892. height: math.unit(5000, "km")
  58893. },
  58894. {
  58895. name: "Terra",
  58896. height: math.unit(60000, "km")
  58897. },
  58898. {
  58899. name: "Terra+",
  58900. height: math.unit(400000, "km")
  58901. },
  58902. ]
  58903. ))
  58904. characterMakers.push(() => makeCharacter(
  58905. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58906. {
  58907. front: {
  58908. height: math.unit(2, "meters"),
  58909. weight: math.unit(95, "kg"),
  58910. name: "Front",
  58911. image: {
  58912. source: "./media/characters/osiris-gryphon/front.svg",
  58913. extra: 1508/1313,
  58914. bottom: 87/1595
  58915. }
  58916. },
  58917. back: {
  58918. height: math.unit(2, "meters"),
  58919. weight: math.unit(95, "kg"),
  58920. name: "Back",
  58921. image: {
  58922. source: "./media/characters/osiris-gryphon/back.svg",
  58923. extra: 1436/1309,
  58924. bottom: 64/1500
  58925. }
  58926. },
  58927. frontLewd: {
  58928. height: math.unit(2, "meters"),
  58929. weight: math.unit(95, "kg"),
  58930. name: "Front-lewd",
  58931. image: {
  58932. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58933. extra: 1508/1313,
  58934. bottom: 87/1595
  58935. }
  58936. },
  58937. wing: {
  58938. height: math.unit(6.3333, "feet"),
  58939. name: "Wing",
  58940. image: {
  58941. source: "./media/characters/osiris-gryphon/wing.svg"
  58942. }
  58943. },
  58944. },
  58945. [
  58946. {
  58947. name: "Incognito",
  58948. height: math.unit(2, "meters")
  58949. },
  58950. {
  58951. name: "Home Size",
  58952. height: math.unit(30, "meters"),
  58953. default: true
  58954. },
  58955. {
  58956. name: "Macro",
  58957. height: math.unit(100, "meters")
  58958. },
  58959. {
  58960. name: "Macro+",
  58961. height: math.unit(350, "meters")
  58962. },
  58963. {
  58964. name: "Mega",
  58965. height: math.unit(40, "km")
  58966. },
  58967. {
  58968. name: "Giga",
  58969. height: math.unit(300, "km")
  58970. },
  58971. {
  58972. name: "Giga+",
  58973. height: math.unit(2000, "km")
  58974. },
  58975. {
  58976. name: "Terra",
  58977. height: math.unit(30000, "km")
  58978. },
  58979. ]
  58980. ))
  58981. characterMakers.push(() => makeCharacter(
  58982. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58983. {
  58984. front: {
  58985. height: math.unit(2.5, "meters"),
  58986. weight: math.unit(200, "kg"),
  58987. name: "Front",
  58988. image: {
  58989. source: "./media/characters/atlas-dragon/front.svg",
  58990. extra: 745/462,
  58991. bottom: 36/781
  58992. }
  58993. },
  58994. back: {
  58995. height: math.unit(2.5, "meters"),
  58996. weight: math.unit(200, "kg"),
  58997. name: "Back",
  58998. image: {
  58999. source: "./media/characters/atlas-dragon/back.svg",
  59000. extra: 848/822,
  59001. bottom: 57/905
  59002. }
  59003. },
  59004. frontLewd: {
  59005. height: math.unit(2.5, "meters"),
  59006. weight: math.unit(200, "kg"),
  59007. name: "Front (Lewd)",
  59008. image: {
  59009. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59010. extra: 745/462,
  59011. bottom: 36/781
  59012. }
  59013. },
  59014. backLewd: {
  59015. height: math.unit(2.5, "meters"),
  59016. weight: math.unit(200, "kg"),
  59017. name: "Back (Lewd)",
  59018. image: {
  59019. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59020. extra: 848/822,
  59021. bottom: 57/905
  59022. }
  59023. },
  59024. },
  59025. [
  59026. {
  59027. name: "Incognito",
  59028. height: math.unit(2.5, "meters")
  59029. },
  59030. {
  59031. name: "Small Macro",
  59032. height: math.unit(50, "meters")
  59033. },
  59034. {
  59035. name: "Macro",
  59036. height: math.unit(350, "meters")
  59037. },
  59038. {
  59039. name: "Mega",
  59040. height: math.unit(5.5, "kilometers")
  59041. },
  59042. {
  59043. name: "Mega+",
  59044. height: math.unit(50, "km")
  59045. },
  59046. {
  59047. name: "Giga",
  59048. height: math.unit(350, "km")
  59049. },
  59050. {
  59051. name: "Giga+",
  59052. height: math.unit(2000, "km")
  59053. },
  59054. {
  59055. name: "Giga++",
  59056. height: math.unit(6500, "km")
  59057. },
  59058. {
  59059. name: "Terra",
  59060. height: math.unit(30000, "km")
  59061. },
  59062. {
  59063. name: "Terra+",
  59064. height: math.unit(250000, "km")
  59065. },
  59066. {
  59067. name: "True Size",
  59068. height: math.unit(100, "multiverses"),
  59069. default: true
  59070. },
  59071. ]
  59072. ))
  59073. characterMakers.push(() => makeCharacter(
  59074. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59075. {
  59076. front: {
  59077. height: math.unit(1.8, "m"),
  59078. weight: math.unit(120, "kg"),
  59079. name: "Front",
  59080. image: {
  59081. source: "./media/characters/chey/front.svg",
  59082. extra: 1359/1270,
  59083. bottom: 18/1377
  59084. }
  59085. },
  59086. arm: {
  59087. height: math.unit(2.05, "feet"),
  59088. name: "Arm",
  59089. image: {
  59090. source: "./media/characters/chey/arm.svg"
  59091. }
  59092. },
  59093. head: {
  59094. height: math.unit(1.89, "feet"),
  59095. name: "Head",
  59096. image: {
  59097. source: "./media/characters/chey/head.svg"
  59098. }
  59099. },
  59100. },
  59101. [
  59102. {
  59103. name: "Original Size",
  59104. height: math.unit(5, "cm")
  59105. },
  59106. {
  59107. name: "Incognito Size",
  59108. height: math.unit(2.4, "m")
  59109. },
  59110. {
  59111. name: "Home Size",
  59112. height: math.unit(200, "meters"),
  59113. default: true
  59114. },
  59115. {
  59116. name: "Mega",
  59117. height: math.unit(2, "km")
  59118. },
  59119. {
  59120. name: "Giga (Preferred Size)",
  59121. height: math.unit(2000, "km")
  59122. },
  59123. {
  59124. name: "Giga+",
  59125. height: math.unit(6000, "km")
  59126. },
  59127. {
  59128. name: "Terra",
  59129. height: math.unit(17000, "km")
  59130. },
  59131. {
  59132. name: "Terra+",
  59133. height: math.unit(75000, "km")
  59134. },
  59135. {
  59136. name: "Terra++",
  59137. height: math.unit(225000, "km")
  59138. },
  59139. ]
  59140. ))
  59141. characterMakers.push(() => makeCharacter(
  59142. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59143. {
  59144. side: {
  59145. height: math.unit(7.8, "meters"),
  59146. name: "Side",
  59147. image: {
  59148. source: "./media/characters/ragnarok/side.svg",
  59149. extra: 725/621,
  59150. bottom: 72/797
  59151. }
  59152. },
  59153. },
  59154. [
  59155. {
  59156. name: "Normal",
  59157. height: math.unit(7.8, "meters"),
  59158. default: true
  59159. },
  59160. ]
  59161. ))
  59162. characterMakers.push(() => makeCharacter(
  59163. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59164. {
  59165. hyena_front: {
  59166. height: math.unit(2.1, "meters"),
  59167. weight: math.unit(110, "kg"),
  59168. name: "Front",
  59169. image: {
  59170. source: "./media/characters/nima/hyena-front.svg",
  59171. extra: 1904/1796,
  59172. bottom: 67/1971
  59173. },
  59174. form: "hyena",
  59175. },
  59176. hyena_back: {
  59177. height: math.unit(2.1, "meters"),
  59178. weight: math.unit(110, "kg"),
  59179. name: "Back",
  59180. image: {
  59181. source: "./media/characters/nima/hyena-back.svg",
  59182. extra: 1964/1884,
  59183. bottom: 35/1999
  59184. },
  59185. form: "hyena",
  59186. },
  59187. shark_front: {
  59188. height: math.unit(1.95, "meters"),
  59189. weight: math.unit(110, "kg"),
  59190. name: "Front",
  59191. image: {
  59192. source: "./media/characters/nima/shark-front.svg",
  59193. extra: 2238/2013,
  59194. bottom: 0/223
  59195. },
  59196. form: "shark",
  59197. },
  59198. paw: {
  59199. height: math.unit(1, "feet"),
  59200. name: "Paw",
  59201. image: {
  59202. source: "./media/characters/nima/paw.svg"
  59203. }
  59204. },
  59205. circlet: {
  59206. height: math.unit(0.3, "feet"),
  59207. name: "Circlet",
  59208. image: {
  59209. source: "./media/characters/nima/circlet.svg"
  59210. }
  59211. },
  59212. necklace: {
  59213. height: math.unit(1.2, "feet"),
  59214. name: "Necklace",
  59215. image: {
  59216. source: "./media/characters/nima/necklace.svg"
  59217. }
  59218. },
  59219. bracelet: {
  59220. height: math.unit(0.51, "feet"),
  59221. name: "Bracelet",
  59222. image: {
  59223. source: "./media/characters/nima/bracelet.svg"
  59224. }
  59225. },
  59226. armband: {
  59227. height: math.unit(1.3, "feet"),
  59228. name: "Armband",
  59229. image: {
  59230. source: "./media/characters/nima/armband.svg"
  59231. }
  59232. },
  59233. },
  59234. [
  59235. {
  59236. name: "Incognito",
  59237. height: math.unit(2.1, "meters"),
  59238. allForms: true
  59239. },
  59240. {
  59241. name: "Small Macro",
  59242. height: math.unit(50, "meters"),
  59243. allForms: true
  59244. },
  59245. {
  59246. name: "Macro",
  59247. height: math.unit(200, "meters"),
  59248. allForms: true
  59249. },
  59250. {
  59251. name: "Mega",
  59252. height: math.unit(2.5, "km"),
  59253. allForms: true
  59254. },
  59255. {
  59256. name: "Mega+",
  59257. height: math.unit(30, "km"),
  59258. allForms: true
  59259. },
  59260. {
  59261. name: "Giga (Home Size)",
  59262. height: math.unit(400, "km"),
  59263. allForms: true,
  59264. default: true
  59265. },
  59266. {
  59267. name: "Giga+",
  59268. height: math.unit(2500, "km"),
  59269. allForms: true
  59270. },
  59271. {
  59272. name: "Giga++",
  59273. height: math.unit(8000, "km"),
  59274. allForms: true
  59275. },
  59276. {
  59277. name: "Terra",
  59278. height: math.unit(20000, "km"),
  59279. allForms: true
  59280. },
  59281. {
  59282. name: "Terra+",
  59283. height: math.unit(70000, "km"),
  59284. allForms: true
  59285. },
  59286. {
  59287. name: "Terra++",
  59288. height: math.unit(600000, "km"),
  59289. allForms: true
  59290. },
  59291. {
  59292. name: "Galactic",
  59293. height: math.unit(40, "galaxies"),
  59294. allForms: true
  59295. },
  59296. {
  59297. name: "Universal",
  59298. height: math.unit(40, "universes"),
  59299. allForms: true
  59300. },
  59301. ],
  59302. {
  59303. "hyena": {
  59304. name: "Hyena",
  59305. default: true
  59306. },
  59307. "shark": {
  59308. name: "Shark",
  59309. },
  59310. }
  59311. ))
  59312. characterMakers.push(() => makeCharacter(
  59313. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59314. {
  59315. anthro_front: {
  59316. height: math.unit(1.5, "meters"),
  59317. name: "Front",
  59318. image: {
  59319. source: "./media/characters/adelaide/anthro-front.svg",
  59320. extra: 860/783,
  59321. bottom: 60/920
  59322. },
  59323. form: "anthro",
  59324. default: true
  59325. },
  59326. hand: {
  59327. height: math.unit(0.65, "feet"),
  59328. name: "Hand",
  59329. image: {
  59330. source: "./media/characters/adelaide/hand.svg"
  59331. },
  59332. form: "anthro"
  59333. },
  59334. foot: {
  59335. height: math.unit(1.38 * 259 / 314, "feet"),
  59336. name: "Foot",
  59337. image: {
  59338. source: "./media/characters/adelaide/foot.svg",
  59339. extra: 259/259,
  59340. bottom: 55/314
  59341. },
  59342. form: "anthro"
  59343. },
  59344. feather: {
  59345. height: math.unit(0.85, "feet"),
  59346. name: "Feather",
  59347. image: {
  59348. source: "./media/characters/adelaide/feather.svg"
  59349. },
  59350. form: "anthro"
  59351. },
  59352. feral_side: {
  59353. height: math.unit(1, "meters"),
  59354. name: "Side",
  59355. image: {
  59356. source: "./media/characters/adelaide/feral-side.svg",
  59357. extra: 550/467,
  59358. bottom: 37/587
  59359. },
  59360. form: "feral",
  59361. default: true
  59362. },
  59363. feral_hand: {
  59364. height: math.unit(0.58, "feet"),
  59365. name: "Hand",
  59366. image: {
  59367. source: "./media/characters/adelaide/hand.svg"
  59368. },
  59369. form: "feral"
  59370. },
  59371. feral_foot: {
  59372. height: math.unit(1.2 * 259 / 314, "feet"),
  59373. name: "Foot",
  59374. image: {
  59375. source: "./media/characters/adelaide/foot.svg",
  59376. extra: 259/259,
  59377. bottom: 55/314
  59378. },
  59379. form: "feral"
  59380. },
  59381. feral_feather: {
  59382. height: math.unit(0.63, "feet"),
  59383. name: "Feather",
  59384. image: {
  59385. source: "./media/characters/adelaide/feather.svg"
  59386. },
  59387. form: "feral"
  59388. },
  59389. },
  59390. [
  59391. {
  59392. name: "Normal",
  59393. height: math.unit(1.5, "meters"),
  59394. form: "anthro",
  59395. default: true
  59396. },
  59397. {
  59398. name: "Normal",
  59399. height: math.unit(1, "meters"),
  59400. form: "feral",
  59401. default: true
  59402. },
  59403. ],
  59404. {
  59405. "anthro": {
  59406. name: "Anthro",
  59407. default: true
  59408. },
  59409. "feral": {
  59410. name: "Feral",
  59411. },
  59412. }
  59413. ))
  59414. characterMakers.push(() => makeCharacter(
  59415. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59416. {
  59417. front: {
  59418. height: math.unit(2.5, "meters"),
  59419. name: "Front",
  59420. image: {
  59421. source: "./media/characters/goa/front.svg",
  59422. extra: 1109/1013,
  59423. bottom: 150/1259
  59424. }
  59425. },
  59426. },
  59427. [
  59428. {
  59429. name: "Normal",
  59430. height: math.unit(2.5, "meters"),
  59431. default: true
  59432. },
  59433. ]
  59434. ))
  59435. characterMakers.push(() => makeCharacter(
  59436. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59437. {
  59438. front: {
  59439. height: math.unit(2, "meters"),
  59440. weight: math.unit(100, "kg"),
  59441. name: "Front",
  59442. image: {
  59443. source: "./media/characters/kiki-weavile/front.svg",
  59444. extra: 357/332,
  59445. bottom: 60/417
  59446. }
  59447. },
  59448. },
  59449. [
  59450. {
  59451. name: "Normal",
  59452. height: math.unit(2, "meters"),
  59453. default: true
  59454. },
  59455. ]
  59456. ))
  59457. characterMakers.push(() => makeCharacter(
  59458. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59459. {
  59460. side: {
  59461. height: math.unit(1.6, "meters"),
  59462. name: "Side",
  59463. image: {
  59464. source: "./media/characters/liza/side.svg",
  59465. extra: 943/915,
  59466. bottom: 72/1015
  59467. }
  59468. },
  59469. },
  59470. [
  59471. {
  59472. name: "Normal",
  59473. height: math.unit(1.6, "meters"),
  59474. default: true
  59475. },
  59476. ]
  59477. ))
  59478. characterMakers.push(() => makeCharacter(
  59479. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59480. {
  59481. side: {
  59482. height: math.unit(2.5, "meters"),
  59483. preyCapacity: math.unit(1, "people"),
  59484. name: "Side",
  59485. image: {
  59486. source: "./media/characters/persephone-sweetbreath/side.svg",
  59487. extra: 796/700,
  59488. bottom: 44/840
  59489. }
  59490. },
  59491. sideVore: {
  59492. height: math.unit(2.5, "meters"),
  59493. preyCapacity: math.unit(1, "people"),
  59494. name: "Side (Full)",
  59495. image: {
  59496. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59497. extra: 796/700,
  59498. bottom: 44/840
  59499. }
  59500. },
  59501. },
  59502. [
  59503. {
  59504. name: "Normal",
  59505. height: math.unit(2.5, "meters"),
  59506. default: true
  59507. },
  59508. ]
  59509. ))
  59510. characterMakers.push(() => makeCharacter(
  59511. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59512. {
  59513. front: {
  59514. height: math.unit(32, "meters"),
  59515. name: "Front",
  59516. image: {
  59517. source: "./media/characters/pierce/front.svg",
  59518. extra: 1695/1475,
  59519. bottom: 185/1880
  59520. }
  59521. },
  59522. side: {
  59523. height: math.unit(32, "meters"),
  59524. name: "Side",
  59525. image: {
  59526. source: "./media/characters/pierce/side.svg",
  59527. extra: 974/859,
  59528. bottom: 43/1017
  59529. }
  59530. },
  59531. frontWingless: {
  59532. height: math.unit(32, "meters"),
  59533. name: "Front (Wingless)",
  59534. image: {
  59535. source: "./media/characters/pierce/front-wingless.svg",
  59536. extra: 1695/1475,
  59537. bottom: 185/1880
  59538. }
  59539. },
  59540. sideWingless: {
  59541. height: math.unit(32, "meters"),
  59542. name: "Side (Wingless)",
  59543. image: {
  59544. source: "./media/characters/pierce/side-wingless.svg",
  59545. extra: 974/859,
  59546. bottom: 43/1017
  59547. }
  59548. },
  59549. maw: {
  59550. height: math.unit(19.3, "meters"),
  59551. name: "Maw",
  59552. image: {
  59553. source: "./media/characters/pierce/maw.svg"
  59554. }
  59555. },
  59556. },
  59557. [
  59558. {
  59559. name: "Small",
  59560. height: math.unit(8.5, "meters")
  59561. },
  59562. {
  59563. name: "Normal",
  59564. height: math.unit(32, "meters"),
  59565. default: true
  59566. },
  59567. ]
  59568. ))
  59569. characterMakers.push(() => makeCharacter(
  59570. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59571. {
  59572. front: {
  59573. height: math.unit(2.3, "meters"),
  59574. weight: math.unit(165, "kg"),
  59575. name: "Front",
  59576. image: {
  59577. source: "./media/characters/shira/front.svg",
  59578. extra: 924/919,
  59579. bottom: 17/941
  59580. },
  59581. form: "cobra",
  59582. default: true
  59583. },
  59584. back: {
  59585. height: math.unit(2.3, "meters"),
  59586. weight: math.unit(165, "kg"),
  59587. name: "Back",
  59588. image: {
  59589. source: "./media/characters/shira/back.svg",
  59590. extra: 928/922,
  59591. bottom: 18/946
  59592. },
  59593. form: "cobra"
  59594. },
  59595. frontLewd: {
  59596. height: math.unit(2.3, "meters"),
  59597. weight: math.unit(165, "kg"),
  59598. name: "Front (Lewd)",
  59599. image: {
  59600. source: "./media/characters/shira/front-lewd.svg",
  59601. extra: 924/919,
  59602. bottom: 17/941
  59603. },
  59604. form: "cobra"
  59605. },
  59606. backLewd: {
  59607. height: math.unit(2.3, "meters"),
  59608. weight: math.unit(165, "kg"),
  59609. name: "Back (Lewd)",
  59610. image: {
  59611. source: "./media/characters/shira/back-lewd.svg",
  59612. extra: 928/922,
  59613. bottom: 18/946
  59614. },
  59615. form: "cobra"
  59616. },
  59617. maw: {
  59618. height: math.unit(1.14, "feet"),
  59619. name: "Maw",
  59620. image: {
  59621. source: "./media/characters/shira/maw.svg"
  59622. },
  59623. form: "cobra"
  59624. },
  59625. magma_front: {
  59626. height: math.unit(2.3, "meters"),
  59627. weight: math.unit(165, "kg"),
  59628. name: "Front",
  59629. image: {
  59630. source: "./media/characters/shira/magma-front.svg",
  59631. extra: 1870/1693,
  59632. bottom: 24/1894
  59633. },
  59634. form: "magma",
  59635. },
  59636. magma_back: {
  59637. height: math.unit(2.3, "meters"),
  59638. weight: math.unit(165, "kg"),
  59639. name: "Back",
  59640. image: {
  59641. source: "./media/characters/shira/magma-back.svg",
  59642. extra: 1918/1756,
  59643. bottom: 46/1964
  59644. },
  59645. form: "magma",
  59646. },
  59647. },
  59648. [
  59649. {
  59650. name: "Incognito",
  59651. height: math.unit(2.3, "meters"),
  59652. allForms: true
  59653. },
  59654. {
  59655. name: "Home Size",
  59656. height: math.unit(150, "meters"),
  59657. default: true,
  59658. allForms: true
  59659. },
  59660. {
  59661. name: "Macro",
  59662. height: math.unit(2, "km"),
  59663. allForms: true
  59664. },
  59665. {
  59666. name: "Mega",
  59667. height: math.unit(30, "km"),
  59668. allForms: true
  59669. },
  59670. {
  59671. name: "Giga",
  59672. height: math.unit(450, "km"),
  59673. allForms: true
  59674. },
  59675. {
  59676. name: "Giga+",
  59677. height: math.unit(3000, "km"),
  59678. allForms: true
  59679. },
  59680. {
  59681. name: "Giga++",
  59682. height: math.unit(6000, "km"),
  59683. allForms: true
  59684. },
  59685. {
  59686. name: "Terra",
  59687. height: math.unit(80000, "km"),
  59688. allForms: true
  59689. },
  59690. {
  59691. name: "Terra+",
  59692. height: math.unit(350000, "km"),
  59693. allForms: true
  59694. },
  59695. {
  59696. name: "Solar",
  59697. height: math.unit(1e6, "km"),
  59698. allForms: true
  59699. },
  59700. ],
  59701. {
  59702. "cobra": {
  59703. name: "Cobra",
  59704. default: true
  59705. },
  59706. "magma": {
  59707. name: "Magma Dragon",
  59708. },
  59709. }
  59710. ))
  59711. characterMakers.push(() => makeCharacter(
  59712. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59713. {
  59714. front: {
  59715. height: math.unit(2, "meters"),
  59716. weight: math.unit(160, "kg"),
  59717. name: "Front",
  59718. image: {
  59719. source: "./media/characters/daxerios/front.svg",
  59720. extra: 1334/1277,
  59721. bottom: 45/1379
  59722. }
  59723. },
  59724. frontLewd: {
  59725. height: math.unit(2, "meters"),
  59726. weight: math.unit(160, "kg"),
  59727. name: "Front (Lewd)",
  59728. image: {
  59729. source: "./media/characters/daxerios/front-lewd.svg",
  59730. extra: 1334/1277,
  59731. bottom: 45/1379
  59732. }
  59733. },
  59734. dick: {
  59735. height: math.unit(2.35, "feet"),
  59736. name: "Dick",
  59737. image: {
  59738. source: "./media/characters/daxerios/dick.svg"
  59739. }
  59740. },
  59741. },
  59742. [
  59743. {
  59744. name: "\"Small\"",
  59745. height: math.unit(5, "meters")
  59746. },
  59747. {
  59748. name: "Original Size",
  59749. height: math.unit(500, "meters"),
  59750. default: true
  59751. },
  59752. {
  59753. name: "Mega",
  59754. height: math.unit(2, "km")
  59755. },
  59756. {
  59757. name: "Mega+",
  59758. height: math.unit(35, "km")
  59759. },
  59760. {
  59761. name: "Giga",
  59762. height: math.unit(250, "km")
  59763. },
  59764. {
  59765. name: "Giga+",
  59766. height: math.unit(3000, "km")
  59767. },
  59768. {
  59769. name: "Terra",
  59770. height: math.unit(25000, "km")
  59771. },
  59772. {
  59773. name: "Terra+",
  59774. height: math.unit(300000, "km")
  59775. },
  59776. {
  59777. name: "Solar",
  59778. height: math.unit(1e6, "km")
  59779. },
  59780. ]
  59781. ))
  59782. characterMakers.push(() => makeCharacter(
  59783. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59784. {
  59785. front: {
  59786. height: math.unit(8 + 4/12, "feet"),
  59787. weight: math.unit(464, "lb"),
  59788. name: "Front",
  59789. image: {
  59790. source: "./media/characters/caveat/front.svg",
  59791. extra: 1861/1678,
  59792. bottom: 40/1901
  59793. }
  59794. },
  59795. },
  59796. [
  59797. {
  59798. name: "Normal",
  59799. height: math.unit(8 + 4/12, "feet"),
  59800. default: true
  59801. },
  59802. ]
  59803. ))
  59804. characterMakers.push(() => makeCharacter(
  59805. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59806. {
  59807. front: {
  59808. height: math.unit(12, "feet"),
  59809. weight: math.unit(1800, "lb"),
  59810. name: "Front",
  59811. image: {
  59812. source: "./media/characters/centbair/front.svg",
  59813. extra: 781/663,
  59814. bottom: 25/806
  59815. }
  59816. },
  59817. frontNsfw: {
  59818. height: math.unit(12, "feet"),
  59819. weight: math.unit(1800, "lb"),
  59820. name: "Front (NSFW)",
  59821. image: {
  59822. source: "./media/characters/centbair/front-nsfw.svg",
  59823. extra: 781/663,
  59824. bottom: 25/806
  59825. }
  59826. },
  59827. back: {
  59828. height: math.unit(12, "feet"),
  59829. weight: math.unit(1800, "lb"),
  59830. name: "Back",
  59831. image: {
  59832. source: "./media/characters/centbair/back.svg",
  59833. extra: 808/761,
  59834. bottom: 19/827
  59835. }
  59836. },
  59837. dick: {
  59838. height: math.unit(6.5, "feet"),
  59839. name: "Dick",
  59840. image: {
  59841. source: "./media/characters/centbair/dick.svg"
  59842. }
  59843. },
  59844. slit: {
  59845. height: math.unit(3.25, "feet"),
  59846. name: "Slit",
  59847. image: {
  59848. source: "./media/characters/centbair/slit.svg"
  59849. }
  59850. },
  59851. },
  59852. [
  59853. {
  59854. name: "Normal",
  59855. height: math.unit(12, "feet"),
  59856. default: true
  59857. },
  59858. ]
  59859. ))
  59860. characterMakers.push(() => makeCharacter(
  59861. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59862. {
  59863. front: {
  59864. height: math.unit(5 + 7/12, "feet"),
  59865. name: "Front",
  59866. image: {
  59867. source: "./media/characters/andy/front.svg",
  59868. extra: 634/588,
  59869. bottom: 36/670
  59870. },
  59871. extraAttributes: {
  59872. "pawLength": {
  59873. name: "Paw Length",
  59874. power: 1,
  59875. type: "length",
  59876. base: math.unit(1, "feet")
  59877. },
  59878. }
  59879. },
  59880. side: {
  59881. height: math.unit(5 + 7/12, "feet"),
  59882. name: "Side",
  59883. image: {
  59884. source: "./media/characters/andy/side.svg",
  59885. extra: 641/596,
  59886. bottom: 34/675
  59887. },
  59888. extraAttributes: {
  59889. "pawLength": {
  59890. name: "Paw Length",
  59891. power: 1,
  59892. type: "length",
  59893. base: math.unit(1, "feet")
  59894. },
  59895. }
  59896. },
  59897. back: {
  59898. height: math.unit(5 + 7/12, "feet"),
  59899. name: "Back",
  59900. image: {
  59901. source: "./media/characters/andy/back.svg",
  59902. extra: 618/583,
  59903. bottom: 39/657
  59904. },
  59905. extraAttributes: {
  59906. "pawLength": {
  59907. name: "Paw Length",
  59908. power: 1,
  59909. type: "length",
  59910. base: math.unit(1, "feet")
  59911. },
  59912. }
  59913. },
  59914. paw: {
  59915. height: math.unit(1.13, "feet"),
  59916. name: "Paw",
  59917. image: {
  59918. source: "./media/characters/andy/paw.svg"
  59919. }
  59920. },
  59921. },
  59922. [
  59923. {
  59924. name: "Micro",
  59925. height: math.unit(4, "inches")
  59926. },
  59927. {
  59928. name: "Normal",
  59929. height: math.unit(5 + 7/12, "feet"),
  59930. default: true
  59931. },
  59932. {
  59933. name: "Macro",
  59934. height: math.unit(390.42, "feet")
  59935. },
  59936. ]
  59937. ))
  59938. characterMakers.push(() => makeCharacter(
  59939. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59940. {
  59941. front: {
  59942. height: math.unit(7, "feet"),
  59943. weight: math.unit(250, "lb"),
  59944. name: "Front",
  59945. image: {
  59946. source: "./media/characters/vix-titan/front.svg",
  59947. extra: 460/428,
  59948. bottom: 15/475
  59949. },
  59950. extraAttributes: {
  59951. "pawWidth": {
  59952. name: "Paw Width",
  59953. power: 1,
  59954. type: "length",
  59955. base: math.unit(0.75, "feet")
  59956. },
  59957. }
  59958. },
  59959. },
  59960. [
  59961. {
  59962. name: "Normal",
  59963. height: math.unit(7, "feet"),
  59964. default: true
  59965. },
  59966. {
  59967. name: "Giant",
  59968. height: math.unit(1500, "feet")
  59969. },
  59970. {
  59971. name: "Mega",
  59972. height: math.unit(10, "miles")
  59973. },
  59974. {
  59975. name: "Giga",
  59976. height: math.unit(150, "miles")
  59977. },
  59978. {
  59979. name: "Tera",
  59980. height: math.unit(144000, "miles")
  59981. },
  59982. ]
  59983. ))
  59984. characterMakers.push(() => makeCharacter(
  59985. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59986. {
  59987. front: {
  59988. height: math.unit(6 + 2/12, "feet"),
  59989. name: "Front",
  59990. image: {
  59991. source: "./media/characters/reiku/front.svg",
  59992. extra: 1910/1757,
  59993. bottom: 103/2013
  59994. },
  59995. extraAttributes: {
  59996. "thighThickness": {
  59997. name: "Thigh Thickness",
  59998. power: 1,
  59999. type: "length",
  60000. base: math.unit(1.12, "feet")
  60001. },
  60002. "assThickness": {
  60003. name: "Ass Thickness",
  60004. power: 1,
  60005. type: "length",
  60006. base: math.unit(1.12*2, "feet")
  60007. },
  60008. }
  60009. },
  60010. side: {
  60011. height: math.unit(6 + 2/12, "feet"),
  60012. name: "Side",
  60013. image: {
  60014. source: "./media/characters/reiku/side.svg",
  60015. extra: 1846/1748,
  60016. bottom: 99/1945
  60017. },
  60018. extraAttributes: {
  60019. "thighThickness": {
  60020. name: "Thigh Thickness",
  60021. power: 1,
  60022. type: "length",
  60023. base: math.unit(1.12, "feet")
  60024. },
  60025. "assThickness": {
  60026. name: "Ass Thickness",
  60027. power: 1,
  60028. type: "length",
  60029. base: math.unit(1.12*2, "feet")
  60030. },
  60031. }
  60032. },
  60033. back: {
  60034. height: math.unit(6 + 2/12, "feet"),
  60035. name: "Back",
  60036. image: {
  60037. source: "./media/characters/reiku/back.svg",
  60038. extra: 1941/1786,
  60039. bottom: 34/1975
  60040. },
  60041. extraAttributes: {
  60042. "thighThickness": {
  60043. name: "Thigh Thickness",
  60044. power: 1,
  60045. type: "length",
  60046. base: math.unit(1.12, "feet")
  60047. },
  60048. "assThickness": {
  60049. name: "Ass Thickness",
  60050. power: 1,
  60051. type: "length",
  60052. base: math.unit(1.12*2, "feet")
  60053. },
  60054. }
  60055. },
  60056. head: {
  60057. height: math.unit(1.8, "feet"),
  60058. name: "Head",
  60059. image: {
  60060. source: "./media/characters/reiku/head.svg"
  60061. }
  60062. },
  60063. tailTop: {
  60064. height: math.unit(8.4, "feet"),
  60065. name: "Tail (Top)",
  60066. image: {
  60067. source: "./media/characters/reiku/tail-top.svg"
  60068. }
  60069. },
  60070. tailBottom: {
  60071. height: math.unit(8.4, "feet"),
  60072. name: "Tail (Bottom)",
  60073. image: {
  60074. source: "./media/characters/reiku/tail-bottom.svg"
  60075. }
  60076. },
  60077. foot: {
  60078. height: math.unit(2.6, "feet"),
  60079. name: "Foot",
  60080. image: {
  60081. source: "./media/characters/reiku/foot.svg"
  60082. }
  60083. },
  60084. footCurled: {
  60085. height: math.unit(2.3, "feet"),
  60086. name: "Foot (Curled)",
  60087. image: {
  60088. source: "./media/characters/reiku/foot-curled.svg"
  60089. }
  60090. },
  60091. footSide: {
  60092. height: math.unit(1.26, "feet"),
  60093. name: "Foot (Side)",
  60094. image: {
  60095. source: "./media/characters/reiku/foot-side.svg"
  60096. }
  60097. },
  60098. },
  60099. [
  60100. {
  60101. name: "Normal",
  60102. height: math.unit(6 + 2/12, "feet"),
  60103. default: true
  60104. },
  60105. ]
  60106. ))
  60107. characterMakers.push(() => makeCharacter(
  60108. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60109. {
  60110. front: {
  60111. height: math.unit(7, "feet"),
  60112. weight: math.unit(500, "kg"),
  60113. name: "Front",
  60114. image: {
  60115. source: "./media/characters/cialda/front.svg",
  60116. extra: 912/745,
  60117. bottom: 55/967
  60118. }
  60119. },
  60120. },
  60121. [
  60122. {
  60123. name: "Normal",
  60124. height: math.unit(7, "feet"),
  60125. default: true
  60126. },
  60127. ]
  60128. ))
  60129. characterMakers.push(() => makeCharacter(
  60130. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60131. {
  60132. side: {
  60133. height: math.unit(6, "feet"),
  60134. weight: math.unit(600, "lb"),
  60135. preyCapacity: math.unit(25, "liters"),
  60136. name: "Side",
  60137. image: {
  60138. source: "./media/characters/darkkin/side.svg",
  60139. extra: 1597/1447,
  60140. bottom: 101/1698
  60141. }
  60142. },
  60143. },
  60144. [
  60145. {
  60146. name: "Canon Height",
  60147. height: math.unit(568, "feet"),
  60148. default: true
  60149. },
  60150. ]
  60151. ))
  60152. characterMakers.push(() => makeCharacter(
  60153. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60154. {
  60155. front: {
  60156. height: math.unit(6, "feet"),
  60157. weight: math.unit(1500, "lb"),
  60158. preyCapacity: math.unit(3, "people"),
  60159. name: "Front",
  60160. image: {
  60161. source: "./media/characters/livnia/front.svg",
  60162. extra: 934/932,
  60163. bottom: 83/1017
  60164. }
  60165. },
  60166. back: {
  60167. height: math.unit(6, "feet"),
  60168. weight: math.unit(1500, "lb"),
  60169. preyCapacity: math.unit(3, "people"),
  60170. name: "Back",
  60171. image: {
  60172. source: "./media/characters/livnia/back.svg",
  60173. extra: 916/915,
  60174. bottom: 58/974
  60175. }
  60176. },
  60177. head: {
  60178. height: math.unit(1.53, "feet"),
  60179. name: "Head",
  60180. image: {
  60181. source: "./media/characters/livnia/head.svg"
  60182. }
  60183. },
  60184. maw: {
  60185. height: math.unit(0.78, "feet"),
  60186. name: "Maw",
  60187. image: {
  60188. source: "./media/characters/livnia/maw.svg"
  60189. }
  60190. },
  60191. genitals: {
  60192. height: math.unit(0.35, "feet"),
  60193. name: "Genitals",
  60194. image: {
  60195. source: "./media/characters/livnia/genitals.svg"
  60196. }
  60197. },
  60198. },
  60199. [
  60200. {
  60201. name: "Normal",
  60202. height: math.unit(1000, "feet"),
  60203. default: true
  60204. },
  60205. ]
  60206. ))
  60207. characterMakers.push(() => makeCharacter(
  60208. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60209. {
  60210. front: {
  60211. height: math.unit(4, "feet"),
  60212. weight: math.unit(73, "lb"),
  60213. name: "Front",
  60214. image: {
  60215. source: "./media/characters/hayaku/front.svg",
  60216. extra: 1011/888,
  60217. bottom: 33/1044
  60218. }
  60219. },
  60220. back: {
  60221. height: math.unit(4, "feet"),
  60222. weight: math.unit(73, "lb"),
  60223. name: "Back",
  60224. image: {
  60225. source: "./media/characters/hayaku/back.svg",
  60226. extra: 1040/930,
  60227. bottom: 20/1060
  60228. }
  60229. },
  60230. },
  60231. [
  60232. {
  60233. name: "Normal",
  60234. height: math.unit(4, "feet"),
  60235. default: true
  60236. },
  60237. ]
  60238. ))
  60239. characterMakers.push(() => makeCharacter(
  60240. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60241. {
  60242. front: {
  60243. height: math.unit(6 + 7/12, "feet"),
  60244. weight: math.unit(300, "lb"),
  60245. name: "Front",
  60246. image: {
  60247. source: "./media/characters/athena-bryzant/front.svg",
  60248. extra: 870/835,
  60249. bottom: 33/903
  60250. }
  60251. },
  60252. back: {
  60253. height: math.unit(6 + 7/12, "feet"),
  60254. weight: math.unit(300, "lb"),
  60255. name: "Back",
  60256. image: {
  60257. source: "./media/characters/athena-bryzant/back.svg",
  60258. extra: 858/823,
  60259. bottom: 30/888
  60260. }
  60261. },
  60262. head: {
  60263. height: math.unit(2.38, "feet"),
  60264. name: "Head",
  60265. image: {
  60266. source: "./media/characters/athena-bryzant/head.svg"
  60267. }
  60268. },
  60269. wings: {
  60270. height: math.unit(2.85, "feet"),
  60271. name: "Wings",
  60272. image: {
  60273. source: "./media/characters/athena-bryzant/wings.svg"
  60274. }
  60275. },
  60276. },
  60277. [
  60278. {
  60279. name: "Normal",
  60280. height: math.unit(6 + 7/12, "feet"),
  60281. default: true
  60282. },
  60283. {
  60284. name: "Big",
  60285. height: math.unit(8, "feet")
  60286. },
  60287. {
  60288. name: "Very Big",
  60289. height: math.unit(11, "feet")
  60290. },
  60291. ]
  60292. ))
  60293. characterMakers.push(() => makeCharacter(
  60294. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60295. {
  60296. side: {
  60297. height: math.unit(3, "meters"),
  60298. weight: math.unit(7500, "kg"),
  60299. preyCapacity: math.unit(1e12, "people"),
  60300. name: "Side",
  60301. image: {
  60302. source: "./media/characters/zel-kesh/side.svg",
  60303. extra: 910/407,
  60304. bottom: 147/1057
  60305. }
  60306. },
  60307. },
  60308. [
  60309. {
  60310. name: "Normal",
  60311. height: math.unit(3, "meters"),
  60312. default: true
  60313. },
  60314. ]
  60315. ))
  60316. characterMakers.push(() => makeCharacter(
  60317. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60318. {
  60319. front: {
  60320. height: math.unit(2, "meters"),
  60321. weight: math.unit(95, "kg"),
  60322. name: "Front",
  60323. image: {
  60324. source: "./media/characters/kane-fox/front.svg",
  60325. extra: 945/888,
  60326. bottom: 27/972
  60327. }
  60328. },
  60329. back: {
  60330. height: math.unit(2, "meters"),
  60331. weight: math.unit(95, "kg"),
  60332. name: "Back",
  60333. image: {
  60334. source: "./media/characters/kane-fox/back.svg",
  60335. extra: 959/914,
  60336. bottom: 15/974
  60337. }
  60338. },
  60339. frontLewd: {
  60340. height: math.unit(2, "meters"),
  60341. weight: math.unit(95, "kg"),
  60342. name: "Front (Lewd)",
  60343. image: {
  60344. source: "./media/characters/kane-fox/front-lewd.svg",
  60345. extra: 945/888,
  60346. bottom: 27/972
  60347. }
  60348. },
  60349. },
  60350. [
  60351. {
  60352. name: "Home Size",
  60353. height: math.unit(2, "meters"),
  60354. default: true
  60355. },
  60356. {
  60357. name: "Macro",
  60358. height: math.unit(200, "meters")
  60359. },
  60360. {
  60361. name: "Small Mega",
  60362. height: math.unit(3, "km")
  60363. },
  60364. {
  60365. name: "Mega",
  60366. height: math.unit(50, "km")
  60367. },
  60368. {
  60369. name: "Giga",
  60370. height: math.unit(200, "km")
  60371. },
  60372. {
  60373. name: "Giga+",
  60374. height: math.unit(2500, "km")
  60375. },
  60376. {
  60377. name: "Terra",
  60378. height: math.unit(70000, "km")
  60379. },
  60380. {
  60381. name: "Terra+",
  60382. height: math.unit(150000, "km")
  60383. },
  60384. {
  60385. name: "Terra++",
  60386. height: math.unit(400000, "km")
  60387. },
  60388. ]
  60389. ))
  60390. characterMakers.push(() => makeCharacter(
  60391. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60392. {
  60393. otter_front: {
  60394. height: math.unit(1.8, "meters"),
  60395. weight: math.unit(90, "kg"),
  60396. name: "Front",
  60397. image: {
  60398. source: "./media/characters/ayranus/otter-front.svg",
  60399. extra: 468/452,
  60400. bottom: 43/511
  60401. },
  60402. form: "otter",
  60403. },
  60404. otter_frontLewd: {
  60405. height: math.unit(1.8, "meters"),
  60406. weight: math.unit(90, "kg"),
  60407. name: "Front (Lewd)",
  60408. image: {
  60409. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60410. extra: 468/452,
  60411. bottom: 43/511
  60412. },
  60413. form: "otter",
  60414. },
  60415. lionbat_front: {
  60416. height: math.unit(1.8, "meters"),
  60417. weight: math.unit(90, "kg"),
  60418. name: "Front (Lewd)",
  60419. image: {
  60420. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60421. extra: 797/740,
  60422. bottom: 78/875
  60423. },
  60424. form: "lionbat",
  60425. },
  60426. paw: {
  60427. height: math.unit(1.5, "feet"),
  60428. name: "Paw",
  60429. image: {
  60430. source: "./media/characters/ayranus/paw.svg"
  60431. },
  60432. },
  60433. },
  60434. [
  60435. {
  60436. name: "Incognito",
  60437. height: math.unit(1.8, "meters"),
  60438. allForms: true
  60439. },
  60440. {
  60441. name: "Macro",
  60442. height: math.unit(60, "meters"),
  60443. allForms: true
  60444. },
  60445. {
  60446. name: "Macro+",
  60447. height: math.unit(200, "meters"),
  60448. allForms: true
  60449. },
  60450. {
  60451. name: "Mega",
  60452. height: math.unit(35, "km"),
  60453. allForms: true
  60454. },
  60455. {
  60456. name: "Giga",
  60457. height: math.unit(220, "km"),
  60458. allForms: true
  60459. },
  60460. {
  60461. name: "Giga+",
  60462. height: math.unit(1500, "km"),
  60463. allForms: true
  60464. },
  60465. {
  60466. name: "Terra",
  60467. height: math.unit(13000, "km"),
  60468. allForms: true
  60469. },
  60470. {
  60471. name: "Terra+",
  60472. height: math.unit(500000, "km"),
  60473. allForms: true
  60474. },
  60475. {
  60476. name: "Galactic",
  60477. height: math.unit(486080, "parsecs"),
  60478. default: true,
  60479. allForms: true
  60480. },
  60481. ],
  60482. {
  60483. "otter": {
  60484. name: "Otter",
  60485. default: true
  60486. },
  60487. "lionbat": {
  60488. name: "Lionbat",
  60489. },
  60490. }
  60491. ))
  60492. characterMakers.push(() => makeCharacter(
  60493. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60494. {
  60495. front: {
  60496. height: math.unit(7 + 4/12, "feet"),
  60497. weight: math.unit(400, "lb"),
  60498. name: "Front",
  60499. image: {
  60500. source: "./media/characters/proxy/front.svg",
  60501. extra: 1605/1542,
  60502. bottom: 55/1660
  60503. }
  60504. },
  60505. side: {
  60506. height: math.unit(7 + 4/12, "feet"),
  60507. weight: math.unit(400, "lb"),
  60508. name: "Side",
  60509. image: {
  60510. source: "./media/characters/proxy/side.svg",
  60511. extra: 794/759,
  60512. bottom: 6/800
  60513. }
  60514. },
  60515. hand: {
  60516. height: math.unit(1.54, "feet"),
  60517. name: "Hand",
  60518. image: {
  60519. source: "./media/characters/proxy/hand.svg"
  60520. }
  60521. },
  60522. paw: {
  60523. height: math.unit(1.53, "feet"),
  60524. name: "Paw",
  60525. image: {
  60526. source: "./media/characters/proxy/paw.svg"
  60527. }
  60528. },
  60529. maw: {
  60530. height: math.unit(1.9, "feet"),
  60531. name: "Maw",
  60532. image: {
  60533. source: "./media/characters/proxy/maw.svg"
  60534. }
  60535. },
  60536. },
  60537. [
  60538. {
  60539. name: "Normal",
  60540. height: math.unit(7 + 4/12, "feet"),
  60541. default: true
  60542. },
  60543. ]
  60544. ))
  60545. characterMakers.push(() => makeCharacter(
  60546. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60547. {
  60548. front: {
  60549. height: math.unit(4, "meters"),
  60550. name: "Front",
  60551. image: {
  60552. source: "./media/characters/crocozilla/front.svg",
  60553. extra: 1790/1742,
  60554. bottom: 78/1868
  60555. }
  60556. },
  60557. },
  60558. [
  60559. {
  60560. name: "Normal",
  60561. height: math.unit(4, "meters"),
  60562. default: true
  60563. },
  60564. ]
  60565. ))
  60566. characterMakers.push(() => makeCharacter(
  60567. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60568. {
  60569. front: {
  60570. height: math.unit(1.8, "meters"),
  60571. weight: math.unit(120, "kg"),
  60572. name: "Front",
  60573. image: {
  60574. source: "./media/characters/kurz/front.svg",
  60575. extra: 1960/1824,
  60576. bottom: 41/2001
  60577. }
  60578. },
  60579. back: {
  60580. height: math.unit(1.8, "meters"),
  60581. weight: math.unit(120, "kg"),
  60582. name: "Back",
  60583. image: {
  60584. source: "./media/characters/kurz/back.svg",
  60585. extra: 1906/1787,
  60586. bottom: 60/1966
  60587. }
  60588. },
  60589. frontLewd: {
  60590. height: math.unit(1.8, "meters"),
  60591. weight: math.unit(120, "kg"),
  60592. name: "Front (Lewd)",
  60593. image: {
  60594. source: "./media/characters/kurz/front-lewd.svg",
  60595. extra: 1960/1824,
  60596. bottom: 41/2001
  60597. }
  60598. },
  60599. maw: {
  60600. height: math.unit(0.69, "meters"),
  60601. name: "Maw",
  60602. image: {
  60603. source: "./media/characters/kurz/maw.svg"
  60604. }
  60605. },
  60606. },
  60607. [
  60608. {
  60609. name: "Original Size",
  60610. height: math.unit(1.8, "meters")
  60611. },
  60612. {
  60613. name: "Incognito Size",
  60614. height: math.unit(2.4, "meters"),
  60615. default: true
  60616. },
  60617. {
  60618. name: "Macro",
  60619. height: math.unit(30, "meters")
  60620. },
  60621. {
  60622. name: "Macro+",
  60623. height: math.unit(250, "meters")
  60624. },
  60625. {
  60626. name: "Mega",
  60627. height: math.unit(2, "km")
  60628. },
  60629. {
  60630. name: "Mega+",
  60631. height: math.unit(35, "km")
  60632. },
  60633. {
  60634. name: "Mega++",
  60635. height: math.unit(75, "km")
  60636. },
  60637. {
  60638. name: "Giga",
  60639. height: math.unit(250, "km")
  60640. },
  60641. {
  60642. name: "Terra",
  60643. height: math.unit(15000, "km")
  60644. },
  60645. {
  60646. name: "Terra+",
  60647. height: math.unit(2250000, "km")
  60648. },
  60649. ]
  60650. ))
  60651. characterMakers.push(() => makeCharacter(
  60652. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60653. {
  60654. front: {
  60655. height: math.unit(16 + 3/12, "feet"),
  60656. weight: math.unit(3575, "lb"),
  60657. name: "Front",
  60658. image: {
  60659. source: "./media/characters/nikita/front.svg",
  60660. extra: 1064/955,
  60661. bottom: 47/1111
  60662. }
  60663. },
  60664. },
  60665. [
  60666. {
  60667. name: "Normal",
  60668. height: math.unit(16 + 3/12, "feet"),
  60669. default: true
  60670. },
  60671. {
  60672. name: "Big",
  60673. height: math.unit(21, "feet")
  60674. },
  60675. {
  60676. name: "Biggest",
  60677. height: math.unit(50, "feet")
  60678. },
  60679. ]
  60680. ))
  60681. characterMakers.push(() => makeCharacter(
  60682. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60683. {
  60684. front: {
  60685. height: math.unit(1.92, "m"),
  60686. weight: math.unit(76, "kg"),
  60687. name: "Front",
  60688. image: {
  60689. source: "./media/characters/kyara/front.svg",
  60690. extra: 1550/1438,
  60691. bottom: 139/1689
  60692. }
  60693. },
  60694. back: {
  60695. height: math.unit(1.92, "m"),
  60696. weight: math.unit(76, "kg"),
  60697. name: "Back",
  60698. image: {
  60699. source: "./media/characters/kyara/back.svg",
  60700. extra: 1523/1427,
  60701. bottom: 83/1606
  60702. }
  60703. },
  60704. head: {
  60705. height: math.unit(1.22, "feet"),
  60706. name: "Head",
  60707. image: {
  60708. source: "./media/characters/kyara/head.svg"
  60709. }
  60710. },
  60711. maw: {
  60712. height: math.unit(0.73, "feet"),
  60713. name: "Maw",
  60714. image: {
  60715. source: "./media/characters/kyara/maw.svg"
  60716. }
  60717. },
  60718. paws: {
  60719. height: math.unit(0.95, "feet"),
  60720. name: "Paws",
  60721. image: {
  60722. source: "./media/characters/kyara/paws.svg"
  60723. }
  60724. },
  60725. },
  60726. [
  60727. {
  60728. name: "Normal",
  60729. height: math.unit(1.92, "meters"),
  60730. default: true
  60731. },
  60732. {
  60733. name: "Mini Macro",
  60734. height: math.unit(192, "meters")
  60735. },
  60736. {
  60737. name: "Macro",
  60738. height: math.unit(480, "meters")
  60739. },
  60740. {
  60741. name: "Mega Macro",
  60742. height: math.unit(1440, "meters")
  60743. },
  60744. ]
  60745. ))
  60746. //characters
  60747. function makeCharacters() {
  60748. const results = [];
  60749. characterMakers.forEach(character => {
  60750. results.push(character());
  60751. });
  60752. return results;
  60753. }