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.
 
 
 

62442 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. }
  2307. //species
  2308. function getSpeciesInfo(speciesList) {
  2309. let result = new Set();
  2310. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2311. result.add(entry)
  2312. });
  2313. return Array.from(result);
  2314. };
  2315. function getSpeciesInfoHelper(species) {
  2316. if (!speciesData[species]) {
  2317. console.warn(species + " doesn't exist");
  2318. return [];
  2319. }
  2320. if (speciesData[species].parents) {
  2321. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2322. } else {
  2323. return [species];
  2324. }
  2325. }
  2326. characterMakers.push(() => makeCharacter(
  2327. {
  2328. name: "Fen",
  2329. species: ["crux"],
  2330. description: {
  2331. title: "Bio",
  2332. text: "Very furry. Sheds on everything."
  2333. },
  2334. tags: [
  2335. "anthro",
  2336. "goo"
  2337. ]
  2338. },
  2339. {
  2340. front: {
  2341. height: math.unit(12, "feet"),
  2342. weight: math.unit(2400, "lb"),
  2343. preyCapacity: math.unit(1, "people"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/fen/front.svg",
  2347. extra: 1804/1562,
  2348. bottom: 205/2009
  2349. },
  2350. extraAttributes: {
  2351. pawSize: {
  2352. name: "Paw Size",
  2353. power: 2,
  2354. type: "area",
  2355. base: math.unit(0.35, "m^2")
  2356. }
  2357. }
  2358. },
  2359. diving: {
  2360. height: math.unit(4.9, "meters"),
  2361. weight: math.unit(2400, "lb"),
  2362. name: "Diving",
  2363. image: {
  2364. source: "./media/characters/fen/diving.svg"
  2365. }
  2366. },
  2367. sleeby: {
  2368. height: math.unit(3.45, "meters"),
  2369. weight: math.unit(2400, "lb"),
  2370. name: "Sleeby",
  2371. image: {
  2372. source: "./media/characters/fen/sleeby.svg"
  2373. }
  2374. },
  2375. goo: {
  2376. height: math.unit(12, "feet"),
  2377. weight: math.unit(3600, "lb"),
  2378. volume: math.unit(1000, "liters"),
  2379. preyCapacity: math.unit(6, "people"),
  2380. name: "Goo",
  2381. image: {
  2382. source: "./media/characters/fen/goo.svg",
  2383. extra: 1307/1071,
  2384. bottom: 134/1441
  2385. }
  2386. },
  2387. horror: {
  2388. height: math.unit(13.6, "feet"),
  2389. weight: math.unit(2400, "lb"),
  2390. preyCapacity: math.unit(1, "people"),
  2391. name: "Horror",
  2392. image: {
  2393. source: "./media/characters/fen/horror.svg",
  2394. extra: 893/797,
  2395. bottom: 0/893
  2396. }
  2397. },
  2398. gooNsfw: {
  2399. height: math.unit(12, "feet"),
  2400. weight: math.unit(3750, "lb"),
  2401. volume: math.unit(1000, "liters"),
  2402. preyCapacity: math.unit(6, "people"),
  2403. name: "Goo (NSFW)",
  2404. image: {
  2405. source: "./media/characters/fen/goo-nsfw.svg",
  2406. extra: 1875/1734,
  2407. bottom: 122/1997
  2408. }
  2409. },
  2410. maw: {
  2411. height: math.unit(5.03, "feet"),
  2412. name: "Maw",
  2413. image: {
  2414. source: "./media/characters/fen/maw.svg"
  2415. }
  2416. },
  2417. gooCeiling: {
  2418. height: math.unit(6.6, "feet"),
  2419. weight: math.unit(3000, "lb"),
  2420. volume: math.unit(1000, "liters"),
  2421. preyCapacity: math.unit(6, "people"),
  2422. name: "Maw (Goo)",
  2423. image: {
  2424. source: "./media/characters/fen/goo-maw.svg"
  2425. }
  2426. },
  2427. paw: {
  2428. height: math.unit(3.77, "feet"),
  2429. name: "Paw",
  2430. image: {
  2431. source: "./media/characters/fen/paw.svg"
  2432. },
  2433. extraAttributes: {
  2434. "toeSize": {
  2435. name: "Toe Size",
  2436. power: 2,
  2437. type: "area",
  2438. base: math.unit(0.02875, "m^2")
  2439. },
  2440. "pawSize": {
  2441. name: "Paw Size",
  2442. power: 2,
  2443. type: "area",
  2444. base: math.unit(0.378, "m^2")
  2445. },
  2446. }
  2447. },
  2448. tail: {
  2449. height: math.unit(12.1, "feet"),
  2450. name: "Tail",
  2451. image: {
  2452. source: "./media/characters/fen/tail.svg"
  2453. }
  2454. },
  2455. tailFull: {
  2456. height: math.unit(12.1, "feet"),
  2457. name: "Full Tail",
  2458. image: {
  2459. source: "./media/characters/fen/tail-full.svg"
  2460. }
  2461. },
  2462. back: {
  2463. height: math.unit(12, "feet"),
  2464. weight: math.unit(2400, "lb"),
  2465. name: "Back",
  2466. image: {
  2467. source: "./media/characters/fen/back.svg",
  2468. },
  2469. info: {
  2470. description: {
  2471. mode: "append",
  2472. text: "\n\nHe is not currently looking at you."
  2473. }
  2474. }
  2475. },
  2476. full: {
  2477. height: math.unit(1.85, "meter"),
  2478. weight: math.unit(3200, "lb"),
  2479. preyCapacity: math.unit(3, "people"),
  2480. name: "Full",
  2481. image: {
  2482. source: "./media/characters/fen/full.svg",
  2483. extra: 1133/859,
  2484. bottom: 145/1278
  2485. },
  2486. info: {
  2487. description: {
  2488. mode: "append",
  2489. text: "\n\nMunch."
  2490. }
  2491. }
  2492. },
  2493. gooLounging: {
  2494. height: math.unit(4.53, "feet"),
  2495. weight: math.unit(3000, "lb"),
  2496. preyCapacity: math.unit(6, "people"),
  2497. name: "Goo (Lounging)",
  2498. image: {
  2499. source: "./media/characters/fen/goo-lounging.svg",
  2500. bottom: 116 / 613
  2501. }
  2502. },
  2503. lounging: {
  2504. height: math.unit(10.52, "feet"),
  2505. weight: math.unit(2400, "lb"),
  2506. name: "Lounging",
  2507. image: {
  2508. source: "./media/characters/fen/lounging.svg"
  2509. }
  2510. },
  2511. },
  2512. [
  2513. {
  2514. name: "Small",
  2515. height: math.unit(2.2428, "meter")
  2516. },
  2517. {
  2518. name: "Normal",
  2519. height: math.unit(12, "feet"),
  2520. default: true,
  2521. },
  2522. {
  2523. name: "Big",
  2524. height: math.unit(20, "feet")
  2525. },
  2526. {
  2527. name: "Minimacro",
  2528. height: math.unit(40, "feet"),
  2529. info: {
  2530. description: {
  2531. mode: "append",
  2532. text: "\n\nTOO DAMN BIG"
  2533. }
  2534. }
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(100, "feet"),
  2539. info: {
  2540. description: {
  2541. mode: "append",
  2542. text: "\n\nTOO DAMN BIG"
  2543. }
  2544. }
  2545. },
  2546. {
  2547. name: "Megamacro",
  2548. height: math.unit(2, "miles")
  2549. },
  2550. {
  2551. name: "Gigamacro",
  2552. height: math.unit(10, "earths")
  2553. },
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2558. {
  2559. front: {
  2560. height: math.unit(183, "cm"),
  2561. weight: math.unit(80, "kg"),
  2562. name: "Front",
  2563. image: {
  2564. source: "./media/characters/sofia-fluttertail/front.svg",
  2565. bottom: 0.01,
  2566. extra: 2154 / 2081
  2567. }
  2568. },
  2569. frontAlt: {
  2570. height: math.unit(183, "cm"),
  2571. weight: math.unit(80, "kg"),
  2572. name: "Front (alt)",
  2573. image: {
  2574. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2575. }
  2576. },
  2577. back: {
  2578. height: math.unit(183, "cm"),
  2579. weight: math.unit(80, "kg"),
  2580. name: "Back",
  2581. image: {
  2582. source: "./media/characters/sofia-fluttertail/back.svg"
  2583. }
  2584. },
  2585. kneeling: {
  2586. height: math.unit(125, "cm"),
  2587. weight: math.unit(80, "kg"),
  2588. name: "Kneeling",
  2589. image: {
  2590. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2591. extra: 1033 / 977,
  2592. bottom: 23.7 / 1057
  2593. }
  2594. },
  2595. maw: {
  2596. height: math.unit(183 / 5, "cm"),
  2597. name: "Maw",
  2598. image: {
  2599. source: "./media/characters/sofia-fluttertail/maw.svg"
  2600. }
  2601. },
  2602. mawcloseup: {
  2603. height: math.unit(183 / 5 * 0.41, "cm"),
  2604. name: "Maw (Closeup)",
  2605. image: {
  2606. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2607. }
  2608. },
  2609. paws: {
  2610. height: math.unit(1.17, "feet"),
  2611. name: "Paws",
  2612. image: {
  2613. source: "./media/characters/sofia-fluttertail/paws.svg",
  2614. extra: 851 / 851,
  2615. bottom: 17 / 868
  2616. }
  2617. },
  2618. },
  2619. [
  2620. {
  2621. name: "Normal",
  2622. height: math.unit(1.83, "meter")
  2623. },
  2624. {
  2625. name: "Size Thief",
  2626. height: math.unit(18, "feet")
  2627. },
  2628. {
  2629. name: "50 Foot Collie",
  2630. height: math.unit(50, "feet")
  2631. },
  2632. {
  2633. name: "Macro",
  2634. height: math.unit(96, "feet"),
  2635. default: true
  2636. },
  2637. {
  2638. name: "Megamerger",
  2639. height: math.unit(650, "feet")
  2640. },
  2641. ]
  2642. ))
  2643. characterMakers.push(() => makeCharacter(
  2644. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2645. {
  2646. front: {
  2647. height: math.unit(7, "feet"),
  2648. weight: math.unit(100, "kg"),
  2649. name: "Front",
  2650. image: {
  2651. source: "./media/characters/march/front.svg",
  2652. extra: 1992/1851,
  2653. bottom: 39/2031
  2654. }
  2655. },
  2656. foot: {
  2657. height: math.unit(0.9, "feet"),
  2658. name: "Foot",
  2659. image: {
  2660. source: "./media/characters/march/foot.svg"
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Normal",
  2667. height: math.unit(7.9, "feet")
  2668. },
  2669. {
  2670. name: "Macro",
  2671. height: math.unit(220, "meters")
  2672. },
  2673. {
  2674. name: "Megamacro",
  2675. height: math.unit(2.98, "km"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Gigamacro",
  2680. height: math.unit(15963, "km")
  2681. },
  2682. {
  2683. name: "Teramacro",
  2684. height: math.unit(2980000000, "km")
  2685. },
  2686. {
  2687. name: "Examacro",
  2688. height: math.unit(250, "parsecs")
  2689. },
  2690. ]
  2691. ))
  2692. characterMakers.push(() => makeCharacter(
  2693. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2694. {
  2695. front: {
  2696. height: math.unit(6, "feet"),
  2697. weight: math.unit(60, "kg"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/noir/front.svg",
  2701. extra: 1,
  2702. bottom: 0.032
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(6.6, "feet")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(500, "feet")
  2714. },
  2715. {
  2716. name: "Megamacro",
  2717. height: math.unit(2.5, "km"),
  2718. default: true
  2719. },
  2720. {
  2721. name: "Gigamacro",
  2722. height: math.unit(22500, "km")
  2723. },
  2724. {
  2725. name: "Teramacro",
  2726. height: math.unit(2500000000, "km")
  2727. },
  2728. {
  2729. name: "Examacro",
  2730. height: math.unit(200, "parsecs")
  2731. },
  2732. ]
  2733. ))
  2734. characterMakers.push(() => makeCharacter(
  2735. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2736. {
  2737. front: {
  2738. height: math.unit(7, "feet"),
  2739. weight: math.unit(100, "kg"),
  2740. name: "Front",
  2741. image: {
  2742. source: "./media/characters/okuri/front.svg",
  2743. extra: 739/665,
  2744. bottom: 39/778
  2745. }
  2746. },
  2747. back: {
  2748. height: math.unit(7, "feet"),
  2749. weight: math.unit(100, "kg"),
  2750. name: "Back",
  2751. image: {
  2752. source: "./media/characters/okuri/back.svg",
  2753. extra: 734/653,
  2754. bottom: 13/747
  2755. }
  2756. },
  2757. sitting: {
  2758. height: math.unit(2.95, "feet"),
  2759. weight: math.unit(100, "kg"),
  2760. name: "Sitting",
  2761. image: {
  2762. source: "./media/characters/okuri/sitting.svg",
  2763. extra: 370/318,
  2764. bottom: 99/469
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Smallest",
  2771. height: math.unit(5 + 2/12, "feet")
  2772. },
  2773. {
  2774. name: "Smaller",
  2775. height: math.unit(300, "feet")
  2776. },
  2777. {
  2778. name: "Small",
  2779. height: math.unit(1000, "feet")
  2780. },
  2781. {
  2782. name: "Macro",
  2783. height: math.unit(1, "mile")
  2784. },
  2785. {
  2786. name: "Mega Macro (Small)",
  2787. height: math.unit(20, "km")
  2788. },
  2789. {
  2790. name: "Mega Macro (Large)",
  2791. height: math.unit(600, "km")
  2792. },
  2793. {
  2794. name: "Giga Macro",
  2795. height: math.unit(10000, "km")
  2796. },
  2797. {
  2798. name: "Normal",
  2799. height: math.unit(577560, "km"),
  2800. default: true
  2801. },
  2802. {
  2803. name: "Large",
  2804. height: math.unit(4, "galaxies")
  2805. },
  2806. {
  2807. name: "Largest",
  2808. height: math.unit(15, "multiverses")
  2809. },
  2810. ]
  2811. ))
  2812. characterMakers.push(() => makeCharacter(
  2813. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2814. {
  2815. front: {
  2816. height: math.unit(7, "feet"),
  2817. weight: math.unit(100, "kg"),
  2818. name: "Front",
  2819. image: {
  2820. source: "./media/characters/manny/front.svg",
  2821. extra: 1,
  2822. bottom: 0.06
  2823. }
  2824. },
  2825. back: {
  2826. height: math.unit(7, "feet"),
  2827. weight: math.unit(100, "kg"),
  2828. name: "Back",
  2829. image: {
  2830. source: "./media/characters/manny/back.svg",
  2831. extra: 1,
  2832. bottom: 0.014
  2833. }
  2834. },
  2835. },
  2836. [
  2837. {
  2838. name: "Normal",
  2839. height: math.unit(7, "feet"),
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(78, "feet"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Macro+",
  2848. height: math.unit(300, "meters")
  2849. },
  2850. {
  2851. name: "Macro++",
  2852. height: math.unit(2400, "meters")
  2853. },
  2854. {
  2855. name: "Megamacro",
  2856. height: math.unit(5167, "meters")
  2857. },
  2858. {
  2859. name: "Gigamacro",
  2860. height: math.unit(41769, "miles")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(7, "feet"),
  2869. weight: math.unit(100, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/adake/front-1.svg"
  2873. }
  2874. },
  2875. frontAlt: {
  2876. height: math.unit(7, "feet"),
  2877. weight: math.unit(100, "kg"),
  2878. name: "Front (Alt)",
  2879. image: {
  2880. source: "./media/characters/adake/front-2.svg",
  2881. extra: 1,
  2882. bottom: 0.01
  2883. }
  2884. },
  2885. back: {
  2886. height: math.unit(7, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Back",
  2889. image: {
  2890. source: "./media/characters/adake/back.svg",
  2891. }
  2892. },
  2893. kneel: {
  2894. height: math.unit(5.385, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Kneeling",
  2897. image: {
  2898. source: "./media/characters/adake/kneel.svg",
  2899. bottom: 0.052
  2900. }
  2901. },
  2902. },
  2903. [
  2904. {
  2905. name: "Normal",
  2906. height: math.unit(7, "feet"),
  2907. },
  2908. {
  2909. name: "Macro",
  2910. height: math.unit(78, "feet"),
  2911. default: true
  2912. },
  2913. {
  2914. name: "Macro+",
  2915. height: math.unit(300, "meters")
  2916. },
  2917. {
  2918. name: "Macro++",
  2919. height: math.unit(2400, "meters")
  2920. },
  2921. {
  2922. name: "Megamacro",
  2923. height: math.unit(5167, "meters")
  2924. },
  2925. {
  2926. name: "Gigamacro",
  2927. height: math.unit(41769, "miles")
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(1.65, "meters"),
  2936. weight: math.unit(50, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/elijah/front.svg",
  2940. extra: 858 / 830,
  2941. bottom: 95.5 / 953.8559
  2942. }
  2943. },
  2944. back: {
  2945. height: math.unit(1.65, "meters"),
  2946. weight: math.unit(50, "kg"),
  2947. name: "Back",
  2948. image: {
  2949. source: "./media/characters/elijah/back.svg",
  2950. extra: 895 / 850,
  2951. bottom: 5.3 / 897.956
  2952. }
  2953. },
  2954. frontNsfw: {
  2955. height: math.unit(1.65, "meters"),
  2956. weight: math.unit(50, "kg"),
  2957. name: "Front (NSFW)",
  2958. image: {
  2959. source: "./media/characters/elijah/front-nsfw.svg",
  2960. extra: 858 / 830,
  2961. bottom: 95.5 / 953.8559
  2962. }
  2963. },
  2964. backNsfw: {
  2965. height: math.unit(1.65, "meters"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Back (NSFW)",
  2968. image: {
  2969. source: "./media/characters/elijah/back-nsfw.svg",
  2970. extra: 895 / 850,
  2971. bottom: 5.3 / 897.956
  2972. }
  2973. },
  2974. dick: {
  2975. height: math.unit(1, "feet"),
  2976. name: "Dick",
  2977. image: {
  2978. source: "./media/characters/elijah/dick.svg"
  2979. }
  2980. },
  2981. beakOpen: {
  2982. height: math.unit(1.25, "feet"),
  2983. name: "Beak (Open)",
  2984. image: {
  2985. source: "./media/characters/elijah/beak-open.svg"
  2986. }
  2987. },
  2988. beakShut: {
  2989. height: math.unit(1.25, "feet"),
  2990. name: "Beak (Shut)",
  2991. image: {
  2992. source: "./media/characters/elijah/beak-shut.svg"
  2993. }
  2994. },
  2995. footFlexing: {
  2996. height: math.unit(1.61, "feet"),
  2997. name: "Foot (Flexing)",
  2998. image: {
  2999. source: "./media/characters/elijah/foot-flexing.svg"
  3000. }
  3001. },
  3002. footStepping: {
  3003. height: math.unit(1.44, "feet"),
  3004. name: "Foot (Stepping)",
  3005. image: {
  3006. source: "./media/characters/elijah/foot-stepping.svg"
  3007. }
  3008. },
  3009. plantigradeLeg: {
  3010. height: math.unit(2.34, "feet"),
  3011. name: "Plantigrade Leg",
  3012. image: {
  3013. source: "./media/characters/elijah/plantigrade-leg.svg"
  3014. }
  3015. },
  3016. plantigradeFootLeft: {
  3017. height: math.unit(0.9, "feet"),
  3018. name: "Plantigrade Foot (Left)",
  3019. image: {
  3020. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3021. }
  3022. },
  3023. plantigradeFootRight: {
  3024. height: math.unit(0.9, "feet"),
  3025. name: "Plantigrade Foot (Right)",
  3026. image: {
  3027. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3028. }
  3029. },
  3030. },
  3031. [
  3032. {
  3033. name: "Normal",
  3034. height: math.unit(1.65, "meters")
  3035. },
  3036. {
  3037. name: "Macro",
  3038. height: math.unit(55, "meters"),
  3039. default: true
  3040. },
  3041. {
  3042. name: "Macro+",
  3043. height: math.unit(105, "meters")
  3044. },
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(7 + 2/12, "feet"),
  3052. weight: math.unit(320, "kg"),
  3053. preyCapacity: math.unit(0.276549935, "people"),
  3054. name: "Front",
  3055. image: {
  3056. source: "./media/characters/rai/front.svg",
  3057. extra: 1802/1696,
  3058. bottom: 68/1870
  3059. },
  3060. form: "anthro",
  3061. default: true
  3062. },
  3063. frontDressed: {
  3064. height: math.unit(7 + 2/12, "feet"),
  3065. weight: math.unit(320, "kg"),
  3066. preyCapacity: math.unit(0.276549935, "people"),
  3067. name: "Front (Dressed)",
  3068. image: {
  3069. source: "./media/characters/rai/front-dressed.svg",
  3070. extra: 1802/1696,
  3071. bottom: 68/1870
  3072. },
  3073. form: "anthro"
  3074. },
  3075. side: {
  3076. height: math.unit(7 + 2/12, "feet"),
  3077. weight: math.unit(320, "kg"),
  3078. preyCapacity: math.unit(0.276549935, "people"),
  3079. name: "Side",
  3080. image: {
  3081. source: "./media/characters/rai/side.svg",
  3082. extra: 1789/1710,
  3083. bottom: 115/1904
  3084. },
  3085. form: "anthro"
  3086. },
  3087. back: {
  3088. height: math.unit(7 + 2/12, "feet"),
  3089. weight: math.unit(320, "kg"),
  3090. preyCapacity: math.unit(0.276549935, "people"),
  3091. name: "Back",
  3092. image: {
  3093. source: "./media/characters/rai/back.svg",
  3094. extra: 1770/1707,
  3095. bottom: 28/1798
  3096. },
  3097. form: "anthro"
  3098. },
  3099. feral: {
  3100. height: math.unit(9.5, "feet"),
  3101. weight: math.unit(640, "kg"),
  3102. preyCapacity: math.unit(4, "people"),
  3103. name: "Feral",
  3104. image: {
  3105. source: "./media/characters/rai/feral.svg",
  3106. extra: 945/553,
  3107. bottom: 176/1121
  3108. },
  3109. form: "feral",
  3110. default: true
  3111. },
  3112. dragon: {
  3113. height: math.unit(23, "feet"),
  3114. weight: math.unit(50000, "lb"),
  3115. name: "Dragon",
  3116. image: {
  3117. source: "./media/characters/rai/dragon.svg",
  3118. extra: 2498 / 2030,
  3119. bottom: 85.2 / 2584
  3120. },
  3121. form: "dragon",
  3122. default: true
  3123. },
  3124. maw: {
  3125. height: math.unit(1.69, "feet"),
  3126. name: "Maw",
  3127. image: {
  3128. source: "./media/characters/rai/maw.svg"
  3129. },
  3130. form: "anthro"
  3131. },
  3132. },
  3133. [
  3134. {
  3135. name: "Normal",
  3136. height: math.unit(7 + 2/12, "feet"),
  3137. form: "anthro"
  3138. },
  3139. {
  3140. name: "Big",
  3141. height: math.unit(11, "feet"),
  3142. form: "anthro"
  3143. },
  3144. {
  3145. name: "Minimacro",
  3146. height: math.unit(77, "feet"),
  3147. form: "anthro"
  3148. },
  3149. {
  3150. name: "Macro",
  3151. height: math.unit(302, "feet"),
  3152. default: true,
  3153. form: "anthro"
  3154. },
  3155. {
  3156. name: "Normal",
  3157. height: math.unit(9.5, "feet"),
  3158. form: "feral",
  3159. default: true
  3160. },
  3161. {
  3162. name: "Normal",
  3163. height: math.unit(23, "feet"),
  3164. form: "dragon",
  3165. default: true
  3166. }
  3167. ],
  3168. {
  3169. "anthro": {
  3170. name: "Anthro",
  3171. default: true
  3172. },
  3173. "feral": {
  3174. name: "Feral",
  3175. },
  3176. "dragon": {
  3177. name: "Dragon",
  3178. },
  3179. }
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3183. {
  3184. frontDressed: {
  3185. height: math.unit(216, "feet"),
  3186. weight: math.unit(7000000, "lb"),
  3187. preyCapacity: math.unit(1321, "people"),
  3188. name: "Front (Dressed)",
  3189. image: {
  3190. source: "./media/characters/jazzy/front-dressed.svg",
  3191. extra: 2738 / 2651,
  3192. bottom: 41.8 / 2786
  3193. }
  3194. },
  3195. backDressed: {
  3196. height: math.unit(216, "feet"),
  3197. weight: math.unit(7000000, "lb"),
  3198. preyCapacity: math.unit(1321, "people"),
  3199. name: "Back (Dressed)",
  3200. image: {
  3201. source: "./media/characters/jazzy/back-dressed.svg",
  3202. extra: 2775 / 2673,
  3203. bottom: 36.8 / 2817
  3204. }
  3205. },
  3206. front: {
  3207. height: math.unit(216, "feet"),
  3208. weight: math.unit(7000000, "lb"),
  3209. preyCapacity: math.unit(1321, "people"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/jazzy/front.svg",
  3213. extra: 2738 / 2651,
  3214. bottom: 41.8 / 2786
  3215. }
  3216. },
  3217. back: {
  3218. height: math.unit(216, "feet"),
  3219. weight: math.unit(7000000, "lb"),
  3220. preyCapacity: math.unit(1321, "people"),
  3221. name: "Back",
  3222. image: {
  3223. source: "./media/characters/jazzy/back.svg",
  3224. extra: 2775 / 2673,
  3225. bottom: 36.8 / 2817
  3226. }
  3227. },
  3228. maw: {
  3229. height: math.unit(20, "feet"),
  3230. name: "Maw",
  3231. image: {
  3232. source: "./media/characters/jazzy/maw.svg"
  3233. }
  3234. },
  3235. paws: {
  3236. height: math.unit(27.5, "feet"),
  3237. name: "Paws",
  3238. image: {
  3239. source: "./media/characters/jazzy/paws.svg"
  3240. }
  3241. },
  3242. eye: {
  3243. height: math.unit(4.4, "feet"),
  3244. name: "Eye",
  3245. image: {
  3246. source: "./media/characters/jazzy/eye.svg"
  3247. }
  3248. },
  3249. droneOffense: {
  3250. height: math.unit(9.5, "inches"),
  3251. name: "Drone (Offense)",
  3252. image: {
  3253. source: "./media/characters/jazzy/drone-offense.svg"
  3254. }
  3255. },
  3256. droneRecon: {
  3257. height: math.unit(9.5, "inches"),
  3258. name: "Drone (Recon)",
  3259. image: {
  3260. source: "./media/characters/jazzy/drone-recon.svg"
  3261. }
  3262. },
  3263. droneDefense: {
  3264. height: math.unit(9.5, "inches"),
  3265. name: "Drone (Defense)",
  3266. image: {
  3267. source: "./media/characters/jazzy/drone-defense.svg"
  3268. }
  3269. },
  3270. },
  3271. [
  3272. {
  3273. name: "Macro",
  3274. height: math.unit(216, "feet"),
  3275. default: true
  3276. },
  3277. ]
  3278. ))
  3279. characterMakers.push(() => makeCharacter(
  3280. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3281. {
  3282. front: {
  3283. height: math.unit(9 + 6/12, "feet"),
  3284. weight: math.unit(700, "lb"),
  3285. name: "Front",
  3286. image: {
  3287. source: "./media/characters/flamm/front.svg",
  3288. extra: 1736/1596,
  3289. bottom: 93/1829
  3290. }
  3291. },
  3292. buff: {
  3293. height: math.unit(9 + 6/12, "feet"),
  3294. weight: math.unit(950, "lb"),
  3295. name: "Buff",
  3296. image: {
  3297. source: "./media/characters/flamm/buff.svg",
  3298. extra: 3018/2874,
  3299. bottom: 221/3239
  3300. }
  3301. },
  3302. },
  3303. [
  3304. {
  3305. name: "Normal",
  3306. height: math.unit(9.5, "feet")
  3307. },
  3308. {
  3309. name: "Macro",
  3310. height: math.unit(200, "feet"),
  3311. default: true
  3312. },
  3313. ]
  3314. ))
  3315. characterMakers.push(() => makeCharacter(
  3316. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3317. {
  3318. front: {
  3319. height: math.unit(5 + 3/12, "feet"),
  3320. weight: math.unit(60, "kg"),
  3321. name: "Front",
  3322. image: {
  3323. source: "./media/characters/zephiro/front.svg",
  3324. extra: 1873/1761,
  3325. bottom: 147/2020
  3326. }
  3327. },
  3328. side: {
  3329. height: math.unit(5 + 3/12, "feet"),
  3330. weight: math.unit(60, "kg"),
  3331. name: "Side",
  3332. image: {
  3333. source: "./media/characters/zephiro/side.svg",
  3334. extra: 1929/1827,
  3335. bottom: 65/1994
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(5 + 3/12, "feet"),
  3340. weight: math.unit(60, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/zephiro/back.svg",
  3344. extra: 1926/1816,
  3345. bottom: 41/1967
  3346. }
  3347. },
  3348. hand: {
  3349. height: math.unit(0.68, "feet"),
  3350. name: "Hand",
  3351. image: {
  3352. source: "./media/characters/zephiro/hand.svg"
  3353. }
  3354. },
  3355. paw: {
  3356. height: math.unit(1, "feet"),
  3357. name: "Paw",
  3358. image: {
  3359. source: "./media/characters/zephiro/paw.svg"
  3360. }
  3361. },
  3362. beans: {
  3363. height: math.unit(0.93, "feet"),
  3364. name: "Beans",
  3365. image: {
  3366. source: "./media/characters/zephiro/beans.svg"
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Micro",
  3373. height: math.unit(3, "inches")
  3374. },
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(5 + 3 / 12, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(118, "feet")
  3383. },
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(5, "feet"),
  3391. weight: math.unit(90, "kg"),
  3392. preyCapacity: math.unit(14, "people"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/fory/front.svg",
  3396. extra: 2862 / 2674,
  3397. bottom: 180 / 3043.8
  3398. },
  3399. form: "weaselbun",
  3400. default: true,
  3401. extraAttributes: {
  3402. "pawSize": {
  3403. name: "Paw Size",
  3404. power: 2,
  3405. type: "area",
  3406. base: math.unit(0.1596, "m^2")
  3407. },
  3408. "pawLength": {
  3409. name: "Paw Length",
  3410. power: 1,
  3411. type: "length",
  3412. base: math.unit(0.7, "m")
  3413. }
  3414. }
  3415. },
  3416. back: {
  3417. height: math.unit(5, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. preyCapacity: math.unit(14, "people"),
  3420. name: "Back",
  3421. image: {
  3422. source: "./media/characters/fory/back.svg",
  3423. extra: 1790/1672,
  3424. bottom: 84/1874
  3425. },
  3426. form: "weaselbun",
  3427. extraAttributes: {
  3428. "pawSize": {
  3429. name: "Paw Size",
  3430. power: 2,
  3431. type: "area",
  3432. base: math.unit(0.1596, "m^2")
  3433. },
  3434. "pawLength": {
  3435. name: "Paw Length",
  3436. power: 1,
  3437. type: "length",
  3438. base: math.unit(0.7, "m")
  3439. }
  3440. }
  3441. },
  3442. paw: {
  3443. height: math.unit(2.14, "feet"),
  3444. name: "Paw",
  3445. image: {
  3446. source: "./media/characters/fory/paw.svg"
  3447. },
  3448. form: "weaselbun",
  3449. extraAttributes: {
  3450. "pawSize": {
  3451. name: "Paw Size",
  3452. power: 2,
  3453. type: "area",
  3454. base: math.unit(0.1596, "m^2")
  3455. },
  3456. "pawLength": {
  3457. name: "Paw Length",
  3458. power: 1,
  3459. type: "length",
  3460. base: math.unit(0.48, "m")
  3461. }
  3462. }
  3463. },
  3464. bunBack: {
  3465. height: math.unit(3, "feet"),
  3466. weight: math.unit(20, "kg"),
  3467. preyCapacity: math.unit(3, "people"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/fory/bun-back.svg",
  3471. extra: 1749/1564,
  3472. bottom: 246/1995
  3473. },
  3474. form: "bun",
  3475. default: true,
  3476. extraAttributes: {
  3477. "pawSize": {
  3478. name: "Paw Size",
  3479. power: 2,
  3480. type: "area",
  3481. base: math.unit(0.072, "m^2")
  3482. },
  3483. "pawLength": {
  3484. name: "Paw Length",
  3485. power: 1,
  3486. type: "length",
  3487. base: math.unit(0.45, "m")
  3488. }
  3489. }
  3490. },
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(5, "feet"),
  3496. form: "weaselbun"
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(50, "feet"),
  3501. default: true,
  3502. form: "weaselbun"
  3503. },
  3504. {
  3505. name: "Megamacro",
  3506. height: math.unit(10, "miles"),
  3507. form: "weaselbun"
  3508. },
  3509. {
  3510. name: "Gigamacro",
  3511. height: math.unit(5, "earths"),
  3512. form: "weaselbun"
  3513. },
  3514. {
  3515. name: "Normal",
  3516. height: math.unit(3, "feet"),
  3517. default: true,
  3518. form: "bun"
  3519. },
  3520. {
  3521. name: "Fun-Size",
  3522. height: math.unit(12, "feet"),
  3523. form: "bun"
  3524. },
  3525. {
  3526. name: "Macro",
  3527. height: math.unit(100, "feet"),
  3528. form: "bun"
  3529. },
  3530. {
  3531. name: "Planetary",
  3532. height: math.unit(3, "earths"),
  3533. form: "bun"
  3534. },
  3535. ],
  3536. {
  3537. "weaselbun": {
  3538. name: "Weaselbun",
  3539. default: true
  3540. },
  3541. "bun": {
  3542. name: "Bun",
  3543. },
  3544. }
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(7, "feet"),
  3551. weight: math.unit(90, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/kurrikage/front.svg",
  3555. extra: 1845/1733,
  3556. bottom: 119/1964
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(7, "feet"),
  3561. weight: math.unit(90, "kg"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/kurrikage/back.svg",
  3565. extra: 1790/1677,
  3566. bottom: 61/1851
  3567. }
  3568. },
  3569. dressed: {
  3570. height: math.unit(7, "feet"),
  3571. weight: math.unit(90, "kg"),
  3572. name: "Dressed",
  3573. image: {
  3574. source: "./media/characters/kurrikage/dressed.svg",
  3575. extra: 1845/1733,
  3576. bottom: 119/1964
  3577. }
  3578. },
  3579. foot: {
  3580. height: math.unit(1.5, "feet"),
  3581. name: "Foot",
  3582. image: {
  3583. source: "./media/characters/kurrikage/foot.svg"
  3584. }
  3585. },
  3586. staff: {
  3587. height: math.unit(6.7, "feet"),
  3588. name: "Staff",
  3589. image: {
  3590. source: "./media/characters/kurrikage/staff.svg"
  3591. }
  3592. },
  3593. peek: {
  3594. height: math.unit(1.05, "feet"),
  3595. name: "Peeking",
  3596. image: {
  3597. source: "./media/characters/kurrikage/peek.svg",
  3598. bottom: 0.08
  3599. }
  3600. },
  3601. },
  3602. [
  3603. {
  3604. name: "Normal",
  3605. height: math.unit(12, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Big",
  3610. height: math.unit(20, "feet")
  3611. },
  3612. {
  3613. name: "Macro",
  3614. height: math.unit(500, "feet")
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(20, "miles")
  3619. },
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(75, "kg"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/shingo/front.svg",
  3631. extra: 1900/1825,
  3632. bottom: 82/1982
  3633. }
  3634. },
  3635. side: {
  3636. height: math.unit(6, "feet"),
  3637. weight: math.unit(75, "kg"),
  3638. name: "Side",
  3639. image: {
  3640. source: "./media/characters/shingo/side.svg",
  3641. extra: 1930/1865,
  3642. bottom: 16/1946
  3643. }
  3644. },
  3645. back: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Back",
  3649. image: {
  3650. source: "./media/characters/shingo/back.svg",
  3651. extra: 1922/1852,
  3652. bottom: 16/1938
  3653. }
  3654. },
  3655. frontDressed: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(150, "lb"),
  3658. name: "Front-dressed",
  3659. image: {
  3660. source: "./media/characters/shingo/front-dressed.svg",
  3661. extra: 1900/1825,
  3662. bottom: 82/1982
  3663. }
  3664. },
  3665. paw: {
  3666. height: math.unit(1.29, "feet"),
  3667. name: "Paw",
  3668. image: {
  3669. source: "./media/characters/shingo/paw.svg"
  3670. }
  3671. },
  3672. hand: {
  3673. height: math.unit(1.07, "feet"),
  3674. name: "Hand",
  3675. image: {
  3676. source: "./media/characters/shingo/hand.svg"
  3677. }
  3678. },
  3679. frontAlt: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(75, "kg"),
  3682. name: "Front (Alt)",
  3683. image: {
  3684. source: "./media/characters/shingo/front-alt.svg",
  3685. extra: 3511 / 3338,
  3686. bottom: 0.005
  3687. }
  3688. },
  3689. frontAlt2: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(75, "kg"),
  3692. name: "Front (Alt 2)",
  3693. image: {
  3694. source: "./media/characters/shingo/front-alt-2.svg",
  3695. extra: 706/681,
  3696. bottom: 11/717
  3697. }
  3698. },
  3699. pawAlt: {
  3700. height: math.unit(1, "feet"),
  3701. name: "Paw (Alt)",
  3702. image: {
  3703. source: "./media/characters/shingo/paw-alt.svg"
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Micro",
  3710. height: math.unit(4, "inches")
  3711. },
  3712. {
  3713. name: "Normal",
  3714. height: math.unit(6, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(108, "feet")
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(1500, "feet")
  3724. },
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3729. {
  3730. side: {
  3731. height: math.unit(6, "feet"),
  3732. weight: math.unit(75, "kg"),
  3733. name: "Side",
  3734. image: {
  3735. source: "./media/characters/aigey/side.svg"
  3736. }
  3737. },
  3738. },
  3739. [
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(200, "feet"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Megamacro",
  3747. height: math.unit(100, "miles")
  3748. },
  3749. ]
  3750. )
  3751. )
  3752. characterMakers.push(() => makeCharacter(
  3753. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3754. {
  3755. front: {
  3756. height: math.unit(5 + 5 / 12, "feet"),
  3757. weight: math.unit(75, "kg"),
  3758. name: "Front",
  3759. image: {
  3760. source: "./media/characters/natasha/front.svg",
  3761. extra: 859 / 824,
  3762. bottom: 23 / 879.6
  3763. }
  3764. },
  3765. frontNsfw: {
  3766. height: math.unit(5 + 5 / 12, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Front (NSFW)",
  3769. image: {
  3770. source: "./media/characters/natasha/front-nsfw.svg",
  3771. extra: 859 / 824,
  3772. bottom: 23 / 879.6
  3773. }
  3774. },
  3775. frontErect: {
  3776. height: math.unit(5 + 5 / 12, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Front (Erect)",
  3779. image: {
  3780. source: "./media/characters/natasha/front-erect.svg",
  3781. extra: 859 / 824,
  3782. bottom: 23 / 879.6
  3783. }
  3784. },
  3785. back: {
  3786. height: math.unit(5 + 5 / 12, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Back",
  3789. image: {
  3790. source: "./media/characters/natasha/back.svg",
  3791. extra: 887.9 / 852.6,
  3792. bottom: 9.7 / 896.4
  3793. }
  3794. },
  3795. backAlt: {
  3796. height: math.unit(5 + 5 / 12, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Back (Alt)",
  3799. image: {
  3800. source: "./media/characters/natasha/back-alt.svg",
  3801. extra: 1236.7 / 1192,
  3802. bottom: 22.3 / 1258.2
  3803. }
  3804. },
  3805. dick: {
  3806. height: math.unit(1.772, "feet"),
  3807. name: "Dick",
  3808. image: {
  3809. source: "./media/characters/natasha/dick.svg"
  3810. }
  3811. },
  3812. paw: {
  3813. height: math.unit(0.250, "meters"),
  3814. name: "Paw",
  3815. image: {
  3816. source: "./media/characters/natasha/paw.svg"
  3817. },
  3818. extraAttributes: {
  3819. "toeSize": {
  3820. name: "Toe Size",
  3821. power: 2,
  3822. type: "area",
  3823. base: math.unit(0.0024, "m^2")
  3824. },
  3825. "padSize": {
  3826. name: "Pad Size",
  3827. power: 2,
  3828. type: "area",
  3829. base: math.unit(0.00889, "m^2")
  3830. },
  3831. "pawSize": {
  3832. name: "Paw Size",
  3833. power: 2,
  3834. type: "area",
  3835. base: math.unit(0.023667, "m^2")
  3836. },
  3837. }
  3838. },
  3839. },
  3840. [
  3841. {
  3842. name: "Shortstack",
  3843. height: math.unit(3, "feet"),
  3844. default: true
  3845. },
  3846. {
  3847. name: "Normal",
  3848. height: math.unit(5 + 5 / 12, "feet")
  3849. },
  3850. {
  3851. name: "Large",
  3852. height: math.unit(12, "feet")
  3853. },
  3854. {
  3855. name: "Macro",
  3856. height: math.unit(100, "feet")
  3857. },
  3858. {
  3859. name: "Macro+",
  3860. height: math.unit(260, "feet")
  3861. },
  3862. {
  3863. name: "Macro++",
  3864. height: math.unit(1, "mile")
  3865. },
  3866. ]
  3867. ))
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(75, "kg"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/malik/front.svg",
  3877. extra: 1750/1561,
  3878. bottom: 80/1830
  3879. },
  3880. extraAttributes: {
  3881. "toeSize": {
  3882. name: "Toe Size",
  3883. power: 2,
  3884. type: "area",
  3885. base: math.unit(0.0159, "m^2")
  3886. },
  3887. "pawSize": {
  3888. name: "Paw Size",
  3889. power: 2,
  3890. type: "area",
  3891. base: math.unit(0.09834, "m^2")
  3892. },
  3893. }
  3894. },
  3895. side: {
  3896. height: math.unit(6, "feet"),
  3897. weight: math.unit(75, "kg"),
  3898. name: "Side",
  3899. image: {
  3900. source: "./media/characters/malik/side.svg",
  3901. extra: 1802/1685,
  3902. bottom: 42/1844
  3903. },
  3904. extraAttributes: {
  3905. "toeSize": {
  3906. name: "Toe Size",
  3907. power: 2,
  3908. type: "area",
  3909. base: math.unit(0.0159, "m^2")
  3910. },
  3911. "pawSize": {
  3912. name: "Paw Size",
  3913. power: 2,
  3914. type: "area",
  3915. base: math.unit(0.09834, "m^2")
  3916. },
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(75, "kg"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/malik/back.svg",
  3925. extra: 1803/1607,
  3926. bottom: 33/1836
  3927. },
  3928. extraAttributes: {
  3929. "toeSize": {
  3930. name: "Toe Size",
  3931. power: 2,
  3932. type: "area",
  3933. base: math.unit(0.0159, "m^2")
  3934. },
  3935. "pawSize": {
  3936. name: "Paw Size",
  3937. power: 2,
  3938. type: "area",
  3939. base: math.unit(0.09834, "m^2")
  3940. },
  3941. }
  3942. },
  3943. },
  3944. [
  3945. {
  3946. name: "Macro",
  3947. height: math.unit(156, "feet"),
  3948. default: true
  3949. },
  3950. {
  3951. name: "Macro+",
  3952. height: math.unit(1188, "feet")
  3953. },
  3954. ]
  3955. ))
  3956. characterMakers.push(() => makeCharacter(
  3957. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3958. {
  3959. front: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(75, "kg"),
  3962. name: "Front",
  3963. image: {
  3964. source: "./media/characters/sefer/front.svg",
  3965. extra: 848 / 659,
  3966. bottom: 28.3 / 876.442
  3967. }
  3968. },
  3969. back: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(75, "kg"),
  3972. name: "Back",
  3973. image: {
  3974. source: "./media/characters/sefer/back.svg",
  3975. extra: 864 / 695,
  3976. bottom: 10 / 871
  3977. }
  3978. },
  3979. frontDressed: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Dressed",
  3983. image: {
  3984. source: "./media/characters/sefer/dressed.svg",
  3985. extra: 839 / 653,
  3986. bottom: 37.6 / 878
  3987. }
  3988. },
  3989. },
  3990. [
  3991. {
  3992. name: "Normal",
  3993. height: math.unit(6, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Big",
  3998. height: math.unit(8, "meters")
  3999. },
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4004. {
  4005. body: {
  4006. height: math.unit(2.2428, "meter"),
  4007. weight: math.unit(124.738, "kg"),
  4008. name: "Body",
  4009. image: {
  4010. extra: 1225 / 1050,
  4011. source: "./media/characters/north/front.svg"
  4012. }
  4013. }
  4014. },
  4015. [
  4016. {
  4017. name: "Micro",
  4018. height: math.unit(4, "inches")
  4019. },
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(63, "meters")
  4023. },
  4024. {
  4025. name: "Megamacro",
  4026. height: math.unit(101, "miles"),
  4027. default: true
  4028. }
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4033. {
  4034. angled: {
  4035. height: math.unit(4, "meter"),
  4036. weight: math.unit(150, "kg"),
  4037. name: "Angled",
  4038. image: {
  4039. source: "./media/characters/talan/angled-sfw.svg",
  4040. bottom: 29 / 3734
  4041. }
  4042. },
  4043. angledNsfw: {
  4044. height: math.unit(4, "meter"),
  4045. weight: math.unit(150, "kg"),
  4046. name: "Angled (NSFW)",
  4047. image: {
  4048. source: "./media/characters/talan/angled-nsfw.svg",
  4049. bottom: 29 / 3734
  4050. }
  4051. },
  4052. frontNsfw: {
  4053. height: math.unit(4, "meter"),
  4054. weight: math.unit(150, "kg"),
  4055. name: "Front (NSFW)",
  4056. image: {
  4057. source: "./media/characters/talan/front-nsfw.svg",
  4058. bottom: 29 / 3734
  4059. }
  4060. },
  4061. sideNsfw: {
  4062. height: math.unit(4, "meter"),
  4063. weight: math.unit(150, "kg"),
  4064. name: "Side (NSFW)",
  4065. image: {
  4066. source: "./media/characters/talan/side-nsfw.svg",
  4067. bottom: 29 / 3734
  4068. }
  4069. },
  4070. back: {
  4071. height: math.unit(4, "meter"),
  4072. weight: math.unit(150, "kg"),
  4073. name: "Back",
  4074. image: {
  4075. source: "./media/characters/talan/back.svg"
  4076. }
  4077. },
  4078. dickBottom: {
  4079. height: math.unit(0.621, "meter"),
  4080. name: "Dick (Bottom)",
  4081. image: {
  4082. source: "./media/characters/talan/dick-bottom.svg"
  4083. }
  4084. },
  4085. dickTop: {
  4086. height: math.unit(0.621, "meter"),
  4087. name: "Dick (Top)",
  4088. image: {
  4089. source: "./media/characters/talan/dick-top.svg"
  4090. }
  4091. },
  4092. dickSide: {
  4093. height: math.unit(0.305, "meter"),
  4094. name: "Dick (Side)",
  4095. image: {
  4096. source: "./media/characters/talan/dick-side.svg"
  4097. }
  4098. },
  4099. dickFront: {
  4100. height: math.unit(0.305, "meter"),
  4101. name: "Dick (Front)",
  4102. image: {
  4103. source: "./media/characters/talan/dick-front.svg"
  4104. }
  4105. },
  4106. },
  4107. [
  4108. {
  4109. name: "Normal",
  4110. height: math.unit(4, "meters")
  4111. },
  4112. {
  4113. name: "Macro",
  4114. height: math.unit(100, "meters")
  4115. },
  4116. {
  4117. name: "Megamacro",
  4118. height: math.unit(2, "miles"),
  4119. default: true
  4120. },
  4121. {
  4122. name: "Gigamacro",
  4123. height: math.unit(5000, "miles")
  4124. },
  4125. {
  4126. name: "Teramacro",
  4127. height: math.unit(100, "parsecs")
  4128. }
  4129. ]
  4130. ))
  4131. characterMakers.push(() => makeCharacter(
  4132. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4133. {
  4134. front: {
  4135. height: math.unit(2, "meter"),
  4136. weight: math.unit(90, "kg"),
  4137. name: "Front",
  4138. image: {
  4139. source: "./media/characters/gael'rathus/front.svg"
  4140. }
  4141. },
  4142. frontAlt: {
  4143. height: math.unit(2, "meter"),
  4144. weight: math.unit(90, "kg"),
  4145. name: "Front (alt)",
  4146. image: {
  4147. source: "./media/characters/gael'rathus/front-alt.svg"
  4148. }
  4149. },
  4150. frontAlt2: {
  4151. height: math.unit(2, "meter"),
  4152. weight: math.unit(90, "kg"),
  4153. name: "Front (alt 2)",
  4154. image: {
  4155. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4156. }
  4157. }
  4158. },
  4159. [
  4160. {
  4161. name: "Normal",
  4162. height: math.unit(9, "feet"),
  4163. default: true
  4164. },
  4165. {
  4166. name: "Large",
  4167. height: math.unit(25, "feet")
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(0.25, "miles")
  4172. },
  4173. {
  4174. name: "Megamacro",
  4175. height: math.unit(10, "miles")
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4181. {
  4182. side: {
  4183. height: math.unit(2, "meter"),
  4184. weight: math.unit(140, "kg"),
  4185. name: "Side",
  4186. image: {
  4187. source: "./media/characters/sosha/side.svg",
  4188. extra: 1170/1006,
  4189. bottom: 94/1264
  4190. }
  4191. },
  4192. maw: {
  4193. height: math.unit(2.87, "feet"),
  4194. name: "Maw",
  4195. image: {
  4196. source: "./media/characters/sosha/maw.svg",
  4197. extra: 966/865,
  4198. bottom: 0/966
  4199. }
  4200. },
  4201. cooch: {
  4202. height: math.unit(5.6, "feet"),
  4203. name: "Cooch",
  4204. image: {
  4205. source: "./media/characters/sosha/cooch.svg"
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Normal",
  4212. height: math.unit(12, "feet"),
  4213. default: true
  4214. }
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4219. {
  4220. side: {
  4221. height: math.unit(5 + 5 / 12, "feet"),
  4222. weight: math.unit(170, "kg"),
  4223. name: "Side",
  4224. image: {
  4225. source: "./media/characters/runnola/side.svg",
  4226. extra: 741 / 448,
  4227. bottom: 0.05
  4228. }
  4229. },
  4230. },
  4231. [
  4232. {
  4233. name: "Small",
  4234. height: math.unit(3, "feet")
  4235. },
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(5 + 5 / 12, "feet"),
  4239. default: true
  4240. },
  4241. {
  4242. name: "Big",
  4243. height: math.unit(10, "feet")
  4244. },
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4249. {
  4250. front: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(50, "kg"),
  4253. name: "Front",
  4254. image: {
  4255. source: "./media/characters/kurribird/front.svg",
  4256. bottom: 0.015
  4257. }
  4258. },
  4259. frontAlt: {
  4260. height: math.unit(1.5, "meter"),
  4261. weight: math.unit(50, "kg"),
  4262. name: "Front (Alt)",
  4263. image: {
  4264. source: "./media/characters/kurribird/front-alt.svg",
  4265. extra: 1.45
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(7, "feet")
  4273. },
  4274. {
  4275. name: "Big",
  4276. height: math.unit(12, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(1500, "feet")
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(2, "miles")
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4291. {
  4292. front: {
  4293. height: math.unit(2, "meter"),
  4294. weight: math.unit(80, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/elbial/front.svg",
  4298. extra: 1643 / 1556,
  4299. bottom: 60.2 / 1696
  4300. }
  4301. },
  4302. side: {
  4303. height: math.unit(2, "meter"),
  4304. weight: math.unit(80, "kg"),
  4305. name: "Side",
  4306. image: {
  4307. source: "./media/characters/elbial/side.svg",
  4308. extra: 1601/1528,
  4309. bottom: 97/1698
  4310. }
  4311. },
  4312. back: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Back",
  4316. image: {
  4317. source: "./media/characters/elbial/back.svg",
  4318. extra: 1653/1569,
  4319. bottom: 20/1673
  4320. }
  4321. },
  4322. frontDressed: {
  4323. height: math.unit(2, "meter"),
  4324. weight: math.unit(80, "kg"),
  4325. name: "Front (Dressed)",
  4326. image: {
  4327. source: "./media/characters/elbial/front-dressed.svg",
  4328. extra: 1638/1569,
  4329. bottom: 70/1708
  4330. }
  4331. },
  4332. genitals: {
  4333. height: math.unit(2 / 3.367, "meter"),
  4334. name: "Genitals",
  4335. image: {
  4336. source: "./media/characters/elbial/genitals.svg"
  4337. }
  4338. },
  4339. },
  4340. [
  4341. {
  4342. name: "Large",
  4343. height: math.unit(100, "feet")
  4344. },
  4345. {
  4346. name: "Macro",
  4347. height: math.unit(500, "feet"),
  4348. default: true
  4349. },
  4350. {
  4351. name: "Megamacro",
  4352. height: math.unit(10, "miles")
  4353. },
  4354. {
  4355. name: "Gigamacro",
  4356. height: math.unit(25000, "miles")
  4357. },
  4358. {
  4359. name: "Full-Size",
  4360. height: math.unit(8000000, "gigaparsecs")
  4361. }
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4366. {
  4367. front: {
  4368. height: math.unit(2, "meter"),
  4369. weight: math.unit(60, "kg"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/noah/front.svg",
  4373. extra: 1383/1313,
  4374. bottom: 104/1487
  4375. }
  4376. },
  4377. hand: {
  4378. height: math.unit(0.6, "feet"),
  4379. name: "Hand",
  4380. image: {
  4381. source: "./media/characters/noah/hand.svg"
  4382. }
  4383. },
  4384. talons: {
  4385. height: math.unit(1.385, "feet"),
  4386. name: "Talons",
  4387. image: {
  4388. source: "./media/characters/noah/talons.svg"
  4389. }
  4390. },
  4391. beak: {
  4392. height: math.unit(0.43, "feet"),
  4393. name: "Beak",
  4394. image: {
  4395. source: "./media/characters/noah/beak.svg"
  4396. }
  4397. },
  4398. collar: {
  4399. height: math.unit(0.88, "feet"),
  4400. name: "Collar",
  4401. image: {
  4402. source: "./media/characters/noah/collar.svg"
  4403. }
  4404. },
  4405. eyeNarrow: {
  4406. height: math.unit(0.18, "feet"),
  4407. name: "Eye (Narrow)",
  4408. image: {
  4409. source: "./media/characters/noah/eye-narrow.svg"
  4410. }
  4411. },
  4412. eyeNormal: {
  4413. height: math.unit(0.18, "feet"),
  4414. name: "Eye (Normal)",
  4415. image: {
  4416. source: "./media/characters/noah/eye-normal.svg"
  4417. }
  4418. },
  4419. eyeWide: {
  4420. height: math.unit(0.18, "feet"),
  4421. name: "Eye (Wide)",
  4422. image: {
  4423. source: "./media/characters/noah/eye-wide.svg"
  4424. }
  4425. },
  4426. ear: {
  4427. height: math.unit(0.64, "feet"),
  4428. name: "Ear",
  4429. image: {
  4430. source: "./media/characters/noah/ear.svg"
  4431. }
  4432. },
  4433. },
  4434. [
  4435. {
  4436. name: "Large",
  4437. height: math.unit(50, "feet")
  4438. },
  4439. {
  4440. name: "Macro",
  4441. height: math.unit(750, "feet"),
  4442. default: true
  4443. },
  4444. {
  4445. name: "Megamacro",
  4446. height: math.unit(50, "miles")
  4447. },
  4448. {
  4449. name: "Gigamacro",
  4450. height: math.unit(100000, "miles")
  4451. },
  4452. {
  4453. name: "Full-Size",
  4454. height: math.unit(3000000000, "miles")
  4455. }
  4456. ]
  4457. ))
  4458. characterMakers.push(() => makeCharacter(
  4459. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4460. {
  4461. front: {
  4462. height: math.unit(2, "meter"),
  4463. weight: math.unit(80, "kg"),
  4464. name: "Front",
  4465. image: {
  4466. source: "./media/characters/natalya/front.svg"
  4467. }
  4468. },
  4469. back: {
  4470. height: math.unit(2, "meter"),
  4471. weight: math.unit(80, "kg"),
  4472. name: "Back",
  4473. image: {
  4474. source: "./media/characters/natalya/back.svg"
  4475. }
  4476. }
  4477. },
  4478. [
  4479. {
  4480. name: "Normal",
  4481. height: math.unit(150, "feet"),
  4482. default: true
  4483. },
  4484. {
  4485. name: "Megamacro",
  4486. height: math.unit(5, "miles")
  4487. },
  4488. {
  4489. name: "Full-Size",
  4490. height: math.unit(600, "kiloparsecs")
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4496. {
  4497. front: {
  4498. height: math.unit(2, "meter"),
  4499. weight: math.unit(50, "kg"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/erestrebah/front.svg",
  4503. extra: 1262/1162,
  4504. bottom: 96/1358
  4505. }
  4506. },
  4507. back: {
  4508. height: math.unit(2, "meter"),
  4509. weight: math.unit(50, "kg"),
  4510. name: "Back",
  4511. image: {
  4512. source: "./media/characters/erestrebah/back.svg",
  4513. extra: 1257/1139,
  4514. bottom: 13/1270
  4515. }
  4516. },
  4517. wing: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(50, "kg"),
  4520. name: "Wing",
  4521. image: {
  4522. source: "./media/characters/erestrebah/wing.svg",
  4523. extra: 1262/1162,
  4524. bottom: 96/1358
  4525. }
  4526. },
  4527. mouth: {
  4528. height: math.unit(0.39, "feet"),
  4529. name: "Mouth",
  4530. image: {
  4531. source: "./media/characters/erestrebah/mouth.svg"
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(10, "feet")
  4539. },
  4540. {
  4541. name: "Large",
  4542. height: math.unit(50, "feet"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(300, "feet")
  4548. },
  4549. {
  4550. name: "Macro+",
  4551. height: math.unit(750, "feet")
  4552. },
  4553. {
  4554. name: "Megamacro",
  4555. height: math.unit(3, "miles")
  4556. }
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4561. {
  4562. front: {
  4563. height: math.unit(2, "meter"),
  4564. weight: math.unit(80, "kg"),
  4565. name: "Front",
  4566. image: {
  4567. source: "./media/characters/jennifer/front.svg",
  4568. bottom: 0.11,
  4569. extra: 1.16
  4570. }
  4571. },
  4572. frontAlt: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(80, "kg"),
  4575. name: "Front (Alt)",
  4576. image: {
  4577. source: "./media/characters/jennifer/front-alt.svg"
  4578. }
  4579. }
  4580. },
  4581. [
  4582. {
  4583. name: "Canon Height",
  4584. height: math.unit(120, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Macro+",
  4589. height: math.unit(300, "feet")
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(20000, "feet")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(50, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/kalista/front.svg",
  4606. extra: 1314/1145,
  4607. bottom: 101/1415
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(2, "meter"),
  4612. weight: math.unit(50, "kg"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/kalista/back.svg",
  4616. extra: 1366 / 1156,
  4617. bottom: 33.9 / 1362.78
  4618. }
  4619. }
  4620. },
  4621. [
  4622. {
  4623. name: "Uncomfortably Small",
  4624. height: math.unit(10, "feet")
  4625. },
  4626. {
  4627. name: "Small",
  4628. height: math.unit(30, "feet")
  4629. },
  4630. {
  4631. name: "Macro",
  4632. height: math.unit(100, "feet"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Macro+",
  4637. height: math.unit(2000, "feet")
  4638. },
  4639. {
  4640. name: "True Form",
  4641. height: math.unit(8924, "miles")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(2, "meter"),
  4650. weight: math.unit(120, "kg"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/ggv/front.svg"
  4654. }
  4655. },
  4656. side: {
  4657. height: math.unit(2, "meter"),
  4658. weight: math.unit(120, "kg"),
  4659. name: "Side",
  4660. image: {
  4661. source: "./media/characters/ggv/side.svg"
  4662. }
  4663. }
  4664. },
  4665. [
  4666. {
  4667. name: "Extremely Puny",
  4668. height: math.unit(9 + 5 / 12, "feet")
  4669. },
  4670. {
  4671. name: "Horribly Small",
  4672. height: math.unit(47.7, "miles"),
  4673. default: true
  4674. },
  4675. {
  4676. name: "Reasonably Sized",
  4677. height: math.unit(25000, "parsecs")
  4678. },
  4679. {
  4680. name: "Slightly Uncompressed",
  4681. height: math.unit(7.77e31, "parsecs")
  4682. },
  4683. {
  4684. name: "Omniversal",
  4685. height: math.unit(1e300, "meters")
  4686. },
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(2, "meter"),
  4694. weight: math.unit(75, "lb"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/napalm/front.svg"
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(2, "meter"),
  4702. weight: math.unit(75, "lb"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/napalm/back.svg"
  4706. }
  4707. }
  4708. },
  4709. [
  4710. {
  4711. name: "Standard",
  4712. height: math.unit(55, "feet"),
  4713. default: true
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4719. {
  4720. front: {
  4721. height: math.unit(7 + 5 / 6, "feet"),
  4722. weight: math.unit(325, "lb"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/asana/front.svg",
  4726. extra: 1133 / 1060,
  4727. bottom: 15.2 / 1148.6
  4728. }
  4729. },
  4730. back: {
  4731. height: math.unit(7 + 5 / 6, "feet"),
  4732. weight: math.unit(325, "lb"),
  4733. name: "Back",
  4734. image: {
  4735. source: "./media/characters/asana/back.svg",
  4736. extra: 1114 / 1043,
  4737. bottom: 5 / 1120
  4738. }
  4739. },
  4740. dressedDark: {
  4741. height: math.unit(7 + 5 / 6, "feet"),
  4742. weight: math.unit(325, "lb"),
  4743. name: "Dressed (Dark)",
  4744. image: {
  4745. source: "./media/characters/asana/dressed-dark.svg",
  4746. extra: 1133 / 1060,
  4747. bottom: 15.2 / 1148.6
  4748. }
  4749. },
  4750. dressedLight: {
  4751. height: math.unit(7 + 5 / 6, "feet"),
  4752. weight: math.unit(325, "lb"),
  4753. name: "Dressed (Light)",
  4754. image: {
  4755. source: "./media/characters/asana/dressed-light.svg",
  4756. extra: 1133 / 1060,
  4757. bottom: 15.2 / 1148.6
  4758. }
  4759. },
  4760. },
  4761. [
  4762. {
  4763. name: "Standard",
  4764. height: math.unit(7 + 5 / 6, "feet"),
  4765. default: true
  4766. },
  4767. {
  4768. name: "Large",
  4769. height: math.unit(10, "meters")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(2500, "meters")
  4774. },
  4775. {
  4776. name: "Megamacro",
  4777. height: math.unit(5e6, "meters")
  4778. },
  4779. {
  4780. name: "Examacro",
  4781. height: math.unit(5e12, "lightyears")
  4782. },
  4783. {
  4784. name: "Max Size",
  4785. height: math.unit(1e31, "lightyears")
  4786. }
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4791. {
  4792. front: {
  4793. height: math.unit(2, "meter"),
  4794. weight: math.unit(60, "kg"),
  4795. name: "Front",
  4796. image: {
  4797. source: "./media/characters/ebony/front.svg",
  4798. bottom: 0.03,
  4799. extra: 1045 / 810 + 0.03
  4800. }
  4801. },
  4802. side: {
  4803. height: math.unit(2, "meter"),
  4804. weight: math.unit(60, "kg"),
  4805. name: "Side",
  4806. image: {
  4807. source: "./media/characters/ebony/side.svg",
  4808. bottom: 0.03,
  4809. extra: 1045 / 810 + 0.03
  4810. }
  4811. },
  4812. back: {
  4813. height: math.unit(2, "meter"),
  4814. weight: math.unit(60, "kg"),
  4815. name: "Back",
  4816. image: {
  4817. source: "./media/characters/ebony/back.svg",
  4818. bottom: 0.01,
  4819. extra: 1045 / 810 + 0.01
  4820. }
  4821. },
  4822. },
  4823. [
  4824. // TODO check why I did this lol
  4825. {
  4826. name: "Standard",
  4827. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(200, "feet")
  4833. },
  4834. {
  4835. name: "Gigamacro",
  4836. height: math.unit(13000, "km")
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(175, "lb"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/mountain/front.svg",
  4849. extra: 972 / 955,
  4850. bottom: 64 / 1036.6
  4851. }
  4852. },
  4853. back: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(175, "lb"),
  4856. name: "Back",
  4857. image: {
  4858. source: "./media/characters/mountain/back.svg",
  4859. extra: 970 / 950,
  4860. bottom: 28.25 / 999
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Large",
  4867. height: math.unit(20, "meters")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(300, "meters")
  4872. },
  4873. {
  4874. name: "Gigamacro",
  4875. height: math.unit(10000, "km"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Examacro",
  4880. height: math.unit(10e9, "lightyears")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(8, "feet"),
  4889. weight: math.unit(500, "lb"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/rick/front.svg"
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(8, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(5, "km")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(8, "feet"),
  4913. weight: math.unit(120, "lb"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/ona/front.svg"
  4917. }
  4918. },
  4919. frontAlt: {
  4920. height: math.unit(8, "feet"),
  4921. weight: math.unit(120, "lb"),
  4922. name: "Front (Alt)",
  4923. image: {
  4924. source: "./media/characters/ona/front-alt.svg"
  4925. }
  4926. },
  4927. back: {
  4928. height: math.unit(8, "feet"),
  4929. weight: math.unit(120, "lb"),
  4930. name: "Back",
  4931. image: {
  4932. source: "./media/characters/ona/back.svg"
  4933. }
  4934. },
  4935. foot: {
  4936. height: math.unit(1.1, "feet"),
  4937. name: "Foot",
  4938. image: {
  4939. source: "./media/characters/ona/foot.svg"
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Megamacro",
  4946. height: math.unit(70, "km"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Gigamacro",
  4951. height: math.unit(681818, "miles")
  4952. },
  4953. {
  4954. name: "Examacro",
  4955. height: math.unit(3800000, "lightyears")
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(3000, "lb"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/mech/front.svg",
  4968. extra: 2900 / 2770,
  4969. bottom: 110 / 3010
  4970. }
  4971. },
  4972. back: {
  4973. height: math.unit(12, "feet"),
  4974. weight: math.unit(3000, "lb"),
  4975. name: "Back",
  4976. image: {
  4977. source: "./media/characters/mech/back.svg",
  4978. extra: 3011 / 2890,
  4979. bottom: 94 / 3105
  4980. }
  4981. },
  4982. maw: {
  4983. height: math.unit(3.07, "feet"),
  4984. name: "Maw",
  4985. image: {
  4986. source: "./media/characters/mech/maw.svg"
  4987. }
  4988. },
  4989. head: {
  4990. height: math.unit(3.07, "feet"),
  4991. name: "Head",
  4992. image: {
  4993. source: "./media/characters/mech/head.svg"
  4994. }
  4995. },
  4996. dick: {
  4997. height: math.unit(1.43, "feet"),
  4998. name: "Dick",
  4999. image: {
  5000. source: "./media/characters/mech/dick.svg"
  5001. }
  5002. },
  5003. },
  5004. [
  5005. {
  5006. name: "Normal",
  5007. height: math.unit(12, "feet")
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(300, "feet"),
  5012. default: true
  5013. },
  5014. {
  5015. name: "Macro+",
  5016. height: math.unit(1500, "feet")
  5017. },
  5018. ]
  5019. ))
  5020. characterMakers.push(() => makeCharacter(
  5021. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5022. {
  5023. front: {
  5024. height: math.unit(1.3, "meter"),
  5025. weight: math.unit(30, "kg"),
  5026. name: "Front",
  5027. image: {
  5028. source: "./media/characters/gregory/front.svg",
  5029. }
  5030. }
  5031. },
  5032. [
  5033. {
  5034. name: "Normal",
  5035. height: math.unit(1.3, "meter"),
  5036. default: true
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(20, "meter")
  5041. }
  5042. ]
  5043. ))
  5044. characterMakers.push(() => makeCharacter(
  5045. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5046. {
  5047. front: {
  5048. height: math.unit(2.8, "meter"),
  5049. weight: math.unit(200, "kg"),
  5050. name: "Front",
  5051. image: {
  5052. source: "./media/characters/elory/front.svg",
  5053. }
  5054. }
  5055. },
  5056. [
  5057. {
  5058. name: "Normal",
  5059. height: math.unit(2.8, "meter"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Macro",
  5064. height: math.unit(38, "meter")
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(470, "feet"),
  5073. weight: math.unit(924, "tons"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/angelpatamon/front.svg",
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(470, "feet"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Deity Size I",
  5088. height: math.unit(28651.2, "km")
  5089. },
  5090. {
  5091. name: "Deity Size II",
  5092. height: math.unit(171907.2, "km")
  5093. }
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5098. {
  5099. side: {
  5100. height: math.unit(7.2, "meter"),
  5101. weight: math.unit(8.2, "tons"),
  5102. name: "Side",
  5103. image: {
  5104. source: "./media/characters/cryae/side.svg",
  5105. extra: 3500 / 1500
  5106. }
  5107. }
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(7.2, "meter"),
  5113. default: true
  5114. }
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5119. {
  5120. front: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(175, "lb"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/xera/front.svg",
  5126. extra: 2377 / 1972,
  5127. bottom: 75.5 / 2452
  5128. }
  5129. },
  5130. side: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(175, "lb"),
  5133. name: "Side",
  5134. image: {
  5135. source: "./media/characters/xera/side.svg",
  5136. extra: 2345 / 2019,
  5137. bottom: 39.7 / 2384
  5138. }
  5139. },
  5140. back: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(175, "lb"),
  5143. name: "Back",
  5144. image: {
  5145. source: "./media/characters/xera/back.svg",
  5146. extra: 2095 / 1984,
  5147. bottom: 67 / 2166
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Small",
  5154. height: math.unit(10, "feet")
  5155. },
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(500, "meters"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Macro+",
  5163. height: math.unit(10, "km")
  5164. },
  5165. {
  5166. name: "Gigamacro",
  5167. height: math.unit(25000, "km")
  5168. },
  5169. {
  5170. name: "Teramacro",
  5171. height: math.unit(3e6, "km")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(175, "lb"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/nebula/front.svg",
  5184. extra: 2566 / 2362,
  5185. bottom: 81 / 2644
  5186. }
  5187. }
  5188. },
  5189. [
  5190. {
  5191. name: "Small",
  5192. height: math.unit(4.5, "meters")
  5193. },
  5194. {
  5195. name: "Macro",
  5196. height: math.unit(1500, "meters"),
  5197. default: true
  5198. },
  5199. {
  5200. name: "Megamacro",
  5201. height: math.unit(150, "km")
  5202. },
  5203. {
  5204. name: "Gigamacro",
  5205. height: math.unit(27000, "km")
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(225, "lb"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/abysgar/front.svg",
  5218. extra: 1739/1614,
  5219. bottom: 71/1810
  5220. }
  5221. },
  5222. frontNsfw: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(225, "lb"),
  5225. name: "Front (NSFW)",
  5226. image: {
  5227. source: "./media/characters/abysgar/front-nsfw.svg",
  5228. extra: 1739/1614,
  5229. bottom: 71/1810
  5230. }
  5231. },
  5232. back: {
  5233. height: math.unit(4.6, "feet"),
  5234. weight: math.unit(225, "lb"),
  5235. name: "Back",
  5236. image: {
  5237. source: "./media/characters/abysgar/back.svg",
  5238. extra: 1384/1327,
  5239. bottom: 0/1384
  5240. }
  5241. },
  5242. head: {
  5243. height: math.unit(1.25, "feet"),
  5244. name: "Head",
  5245. image: {
  5246. source: "./media/characters/abysgar/head.svg",
  5247. extra: 669/569,
  5248. bottom: 0/669
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Small",
  5255. height: math.unit(4.5, "meters")
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(1250, "meters"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Megamacro",
  5264. height: math.unit(125, "km")
  5265. },
  5266. {
  5267. name: "Gigamacro",
  5268. height: math.unit(26000, "km")
  5269. }
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5274. {
  5275. front: {
  5276. height: math.unit(6, "feet"),
  5277. weight: math.unit(180, "lb"),
  5278. name: "Front",
  5279. image: {
  5280. source: "./media/characters/yakuz/front.svg"
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Small",
  5287. height: math.unit(5, "meters")
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(1500, "meters"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Megamacro",
  5296. height: math.unit(200, "km")
  5297. },
  5298. {
  5299. name: "Gigamacro",
  5300. height: math.unit(100000, "km")
  5301. }
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(175, "lb"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/mirova/front.svg",
  5313. extra: 3334 / 3071,
  5314. bottom: 42 / 3375.6
  5315. }
  5316. }
  5317. },
  5318. [
  5319. {
  5320. name: "Small",
  5321. height: math.unit(5, "meters")
  5322. },
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(900, "meters"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Megamacro",
  5330. height: math.unit(135, "km")
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(20000, "km")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5340. {
  5341. side: {
  5342. height: math.unit(28.35, "feet"),
  5343. weight: math.unit(99.75, "tons"),
  5344. name: "Side",
  5345. image: {
  5346. source: "./media/characters/asana-mech/side.svg",
  5347. extra: 923 / 699,
  5348. bottom: 50 / 975
  5349. }
  5350. },
  5351. chaingun: {
  5352. height: math.unit(7, "feet"),
  5353. weight: math.unit(2400, "lb"),
  5354. name: "Chaingun",
  5355. image: {
  5356. source: "./media/characters/asana-mech/chaingun.svg"
  5357. }
  5358. },
  5359. laser: {
  5360. height: math.unit(7.12, "feet"),
  5361. weight: math.unit(2000, "lb"),
  5362. name: "Laser",
  5363. image: {
  5364. source: "./media/characters/asana-mech/laser.svg"
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(28.35, "feet"),
  5372. default: true
  5373. },
  5374. {
  5375. name: "Macro",
  5376. height: math.unit(2500, "feet")
  5377. },
  5378. {
  5379. name: "Megamacro",
  5380. height: math.unit(25, "miles")
  5381. },
  5382. {
  5383. name: "Examacro",
  5384. height: math.unit(6e8, "lightyears")
  5385. },
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5390. {
  5391. front: {
  5392. height: math.unit(5, "meters"),
  5393. weight: math.unit(1000, "kg"),
  5394. name: "Front",
  5395. image: {
  5396. source: "./media/characters/asche/front.svg",
  5397. extra: 1258 / 1190,
  5398. bottom: 47 / 1305
  5399. }
  5400. },
  5401. frontUnderwear: {
  5402. height: math.unit(5, "meters"),
  5403. weight: math.unit(1000, "kg"),
  5404. name: "Front (Underwear)",
  5405. image: {
  5406. source: "./media/characters/asche/front-underwear.svg",
  5407. extra: 1258 / 1190,
  5408. bottom: 47 / 1305
  5409. }
  5410. },
  5411. frontDressed: {
  5412. height: math.unit(5, "meters"),
  5413. weight: math.unit(1000, "kg"),
  5414. name: "Front (Dressed)",
  5415. image: {
  5416. source: "./media/characters/asche/front-dressed.svg",
  5417. extra: 1258 / 1190,
  5418. bottom: 47 / 1305
  5419. }
  5420. },
  5421. frontArmor: {
  5422. height: math.unit(5, "meters"),
  5423. weight: math.unit(1000, "kg"),
  5424. name: "Front (Armored)",
  5425. image: {
  5426. source: "./media/characters/asche/front-armored.svg",
  5427. extra: 1374 / 1308,
  5428. bottom: 23 / 1397
  5429. }
  5430. },
  5431. mp724: {
  5432. height: math.unit(0.96, "meters"),
  5433. weight: math.unit(38, "kg"),
  5434. name: "H&K MP724",
  5435. image: {
  5436. source: "./media/characters/asche/h&k-mp724.svg"
  5437. }
  5438. },
  5439. side: {
  5440. height: math.unit(5, "meters"),
  5441. weight: math.unit(1000, "kg"),
  5442. name: "Side",
  5443. image: {
  5444. source: "./media/characters/asche/side.svg",
  5445. extra: 1717 / 1609,
  5446. bottom: 0.005
  5447. }
  5448. },
  5449. back: {
  5450. height: math.unit(5, "meters"),
  5451. weight: math.unit(1000, "kg"),
  5452. name: "Back",
  5453. image: {
  5454. source: "./media/characters/asche/back.svg",
  5455. extra: 1570 / 1501
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "DEFCON 5",
  5462. height: math.unit(5, "meters")
  5463. },
  5464. {
  5465. name: "DEFCON 4",
  5466. height: math.unit(500, "meters"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "DEFCON 3",
  5471. height: math.unit(5, "km")
  5472. },
  5473. {
  5474. name: "DEFCON 2",
  5475. height: math.unit(500, "km")
  5476. },
  5477. {
  5478. name: "DEFCON 1",
  5479. height: math.unit(500000, "km")
  5480. },
  5481. {
  5482. name: "DEFCON 0",
  5483. height: math.unit(3, "gigaparsecs")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(7, "feet"),
  5492. weight: math.unit(92.7, "kg"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/gale/front.svg",
  5496. extra: 977/919,
  5497. bottom: 105/1082
  5498. }
  5499. },
  5500. side: {
  5501. height: math.unit(6.7, "feet"),
  5502. weight: math.unit(92.7, "kg"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/gale/side.svg",
  5506. extra: 978/922,
  5507. bottom: 140/1118
  5508. }
  5509. },
  5510. back: {
  5511. height: math.unit(7, "feet"),
  5512. weight: math.unit(92.7, "kg"),
  5513. name: "Back",
  5514. image: {
  5515. source: "./media/characters/gale/back.svg",
  5516. extra: 966/920,
  5517. bottom: 61/1027
  5518. }
  5519. },
  5520. maw: {
  5521. height: math.unit(2.23, "feet"),
  5522. name: "Maw",
  5523. image: {
  5524. source: "./media/characters/gale/maw.svg"
  5525. }
  5526. },
  5527. foot: {
  5528. height: math.unit(2.1, "feet"),
  5529. name: "Foot",
  5530. image: {
  5531. source: "./media/characters/gale/foot.svg"
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(7, "feet")
  5539. },
  5540. {
  5541. name: "Macro",
  5542. height: math.unit(150, "feet"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "Macro+",
  5547. height: math.unit(300, "feet")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(5 + 10/12, "feet"),
  5556. weight: math.unit(67, "kg"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/draylen/front.svg",
  5560. extra: 832/777,
  5561. bottom: 85/917
  5562. }
  5563. }
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(5 + 10/12, "feet")
  5569. },
  5570. {
  5571. name: "Macro",
  5572. height: math.unit(150, "feet"),
  5573. default: true
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(7 + 9 / 12, "feet"),
  5582. weight: math.unit(379, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/chez/front.svg"
  5586. }
  5587. },
  5588. side: {
  5589. height: math.unit(7 + 9 / 12, "feet"),
  5590. weight: math.unit(379, "lbs"),
  5591. name: "Side",
  5592. image: {
  5593. source: "./media/characters/chez/side.svg"
  5594. }
  5595. }
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(7 + 9 / 12, "feet"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "God King",
  5605. height: math.unit(9750000, "meters")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(275, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/kaylum/front.svg",
  5618. bottom: 0.01,
  5619. extra: 1166 / 1031
  5620. }
  5621. },
  5622. frontWingless: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(275, "lbs"),
  5625. name: "Front (Wingless)",
  5626. image: {
  5627. source: "./media/characters/kaylum/front-wingless.svg",
  5628. bottom: 0.01,
  5629. extra: 1117 / 1031
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(3.05, "meters")
  5637. },
  5638. {
  5639. name: "Master",
  5640. height: math.unit(5.5, "meters")
  5641. },
  5642. {
  5643. name: "Rampage",
  5644. height: math.unit(19, "meters")
  5645. },
  5646. {
  5647. name: "Macro Lite",
  5648. height: math.unit(37, "meters")
  5649. },
  5650. {
  5651. name: "Hyper Predator",
  5652. height: math.unit(61, "meters")
  5653. },
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(138, "meters"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(5 + 5 / 12, "feet"),
  5666. weight: math.unit(120, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/geta/front.svg",
  5670. extra: 1003/933,
  5671. bottom: 21/1024
  5672. }
  5673. },
  5674. paw: {
  5675. height: math.unit(0.35, "feet"),
  5676. name: "Paw",
  5677. image: {
  5678. source: "./media/characters/geta/paw.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Micro",
  5685. height: math.unit(3, "inches"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(5 + 5 / 12, "feet")
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(300, "lbs"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/tyrnn/front.svg"
  5703. }
  5704. }
  5705. },
  5706. [
  5707. {
  5708. name: "Main Height",
  5709. height: math.unit(355, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Fave. Height",
  5714. height: math.unit(2400, "feet")
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(300, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/appledectomy/front.svg"
  5727. }
  5728. }
  5729. },
  5730. [
  5731. {
  5732. name: "Macro",
  5733. height: math.unit(2500, "feet")
  5734. },
  5735. {
  5736. name: "Megamacro",
  5737. height: math.unit(50, "miles"),
  5738. default: true
  5739. },
  5740. {
  5741. name: "Gigamacro",
  5742. height: math.unit(5000, "miles")
  5743. },
  5744. {
  5745. name: "Teramacro",
  5746. height: math.unit(250000, "miles")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(200, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/vulpes/front.svg",
  5759. extra: 573 / 543,
  5760. bottom: 0.033
  5761. }
  5762. },
  5763. side: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(200, "lbs"),
  5766. name: "Side",
  5767. image: {
  5768. source: "./media/characters/vulpes/side.svg",
  5769. extra: 577 / 549,
  5770. bottom: 11 / 588
  5771. }
  5772. },
  5773. back: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(200, "lbs"),
  5776. name: "Back",
  5777. image: {
  5778. source: "./media/characters/vulpes/back.svg",
  5779. extra: 573 / 549,
  5780. bottom: 20 / 593
  5781. }
  5782. },
  5783. feet: {
  5784. height: math.unit(1.276, "feet"),
  5785. name: "Feet",
  5786. image: {
  5787. source: "./media/characters/vulpes/feet.svg"
  5788. }
  5789. },
  5790. maw: {
  5791. height: math.unit(1.18, "feet"),
  5792. name: "Maw",
  5793. image: {
  5794. source: "./media/characters/vulpes/maw.svg"
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Micro",
  5801. height: math.unit(2, "inches")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(6.3, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(850, "feet")
  5810. },
  5811. {
  5812. name: "Megamacro",
  5813. height: math.unit(7500, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Gigamacro",
  5818. height: math.unit(570000, "miles")
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(210, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/rain-fallen/front.svg"
  5831. }
  5832. },
  5833. side: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(210, "lbs"),
  5836. name: "Side",
  5837. image: {
  5838. source: "./media/characters/rain-fallen/side.svg"
  5839. }
  5840. },
  5841. back: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(210, "lbs"),
  5844. name: "Back",
  5845. image: {
  5846. source: "./media/characters/rain-fallen/back.svg"
  5847. }
  5848. },
  5849. feral: {
  5850. height: math.unit(9, "feet"),
  5851. weight: math.unit(700, "lbs"),
  5852. name: "Feral",
  5853. image: {
  5854. source: "./media/characters/rain-fallen/feral.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Meddling with Mortals",
  5861. height: math.unit(8 + 8/12, "feet")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(5, "meter")
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(150, "meter"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Megamacro",
  5874. height: math.unit(278e6, "meter")
  5875. },
  5876. {
  5877. name: "Gigamacro",
  5878. height: math.unit(2e9, "meter")
  5879. },
  5880. {
  5881. name: "Teramacro",
  5882. height: math.unit(8e12, "meter")
  5883. },
  5884. {
  5885. name: "Devourer",
  5886. height: math.unit(14, "zettameters")
  5887. },
  5888. {
  5889. name: "Scarlet King",
  5890. height: math.unit(18, "yottameters")
  5891. },
  5892. {
  5893. name: "Void",
  5894. height: math.unit(1e88, "yottameters")
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5900. {
  5901. standing: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(180, "lbs"),
  5904. name: "Standing",
  5905. image: {
  5906. source: "./media/characters/zaakira/standing.svg",
  5907. extra: 1599/1504,
  5908. bottom: 39/1638
  5909. }
  5910. },
  5911. laying: {
  5912. height: math.unit(3.3, "feet"),
  5913. weight: math.unit(180, "lbs"),
  5914. name: "Laying",
  5915. image: {
  5916. source: "./media/characters/zaakira/laying.svg"
  5917. }
  5918. },
  5919. },
  5920. [
  5921. {
  5922. name: "Normal",
  5923. height: math.unit(12, "feet")
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(279, "feet"),
  5928. default: true
  5929. }
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5934. {
  5935. femSfw: {
  5936. height: math.unit(8, "feet"),
  5937. weight: math.unit(350, "lb"),
  5938. name: "Fem",
  5939. image: {
  5940. source: "./media/characters/sigvald/fem-sfw.svg",
  5941. extra: 182 / 164,
  5942. bottom: 8.7 / 190.5
  5943. }
  5944. },
  5945. femNsfw: {
  5946. height: math.unit(8, "feet"),
  5947. weight: math.unit(350, "lb"),
  5948. name: "Fem (NSFW)",
  5949. image: {
  5950. source: "./media/characters/sigvald/fem-nsfw.svg",
  5951. extra: 182 / 164,
  5952. bottom: 8.7 / 190.5
  5953. }
  5954. },
  5955. maleNsfw: {
  5956. height: math.unit(8, "feet"),
  5957. weight: math.unit(350, "lb"),
  5958. name: "Male (NSFW)",
  5959. image: {
  5960. source: "./media/characters/sigvald/male-nsfw.svg",
  5961. extra: 182 / 164,
  5962. bottom: 8.7 / 190.5
  5963. }
  5964. },
  5965. hermNsfw: {
  5966. height: math.unit(8, "feet"),
  5967. weight: math.unit(350, "lb"),
  5968. name: "Herm (NSFW)",
  5969. image: {
  5970. source: "./media/characters/sigvald/herm-nsfw.svg",
  5971. extra: 182 / 164,
  5972. bottom: 8.7 / 190.5
  5973. }
  5974. },
  5975. dick: {
  5976. height: math.unit(2.36, "feet"),
  5977. name: "Dick",
  5978. image: {
  5979. source: "./media/characters/sigvald/dick.svg"
  5980. }
  5981. },
  5982. eye: {
  5983. height: math.unit(0.31, "feet"),
  5984. name: "Eye",
  5985. image: {
  5986. source: "./media/characters/sigvald/eye.svg"
  5987. }
  5988. },
  5989. mouth: {
  5990. height: math.unit(0.92, "feet"),
  5991. name: "Mouth",
  5992. image: {
  5993. source: "./media/characters/sigvald/mouth.svg"
  5994. }
  5995. },
  5996. paws: {
  5997. height: math.unit(2.2, "feet"),
  5998. name: "Paws",
  5999. image: {
  6000. source: "./media/characters/sigvald/paws.svg"
  6001. }
  6002. }
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(8, "feet")
  6008. },
  6009. {
  6010. name: "Large",
  6011. height: math.unit(12, "feet")
  6012. },
  6013. {
  6014. name: "Larger",
  6015. height: math.unit(20, "feet")
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(150, "feet")
  6020. },
  6021. {
  6022. name: "Macro+",
  6023. height: math.unit(200, "feet"),
  6024. default: true
  6025. },
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6030. {
  6031. side: {
  6032. height: math.unit(12, "feet"),
  6033. weight: math.unit(2000, "kg"),
  6034. name: "Side",
  6035. image: {
  6036. source: "./media/characters/scott/side.svg",
  6037. extra: 754 / 724,
  6038. bottom: 0.069
  6039. }
  6040. },
  6041. upright: {
  6042. height: math.unit(12, "feet"),
  6043. weight: math.unit(2000, "kg"),
  6044. name: "Upright",
  6045. image: {
  6046. source: "./media/characters/scott/upright.svg",
  6047. extra: 3881 / 3722,
  6048. bottom: 0.05
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(12, "feet"),
  6056. default: true
  6057. },
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6062. {
  6063. side: {
  6064. height: math.unit(8, "meters"),
  6065. weight: math.unit(84755, "lbs"),
  6066. name: "Side",
  6067. image: {
  6068. source: "./media/characters/tobias/side.svg",
  6069. extra: 1474 / 1096,
  6070. bottom: 38.9 / 1513.1235
  6071. }
  6072. },
  6073. },
  6074. [
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(8, "meters"),
  6078. default: true
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6084. {
  6085. front: {
  6086. height: math.unit(5.5, "feet"),
  6087. weight: math.unit(400, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/kieran/front.svg",
  6091. extra: 2694 / 2364,
  6092. bottom: 217 / 2908
  6093. }
  6094. },
  6095. side: {
  6096. height: math.unit(5.5, "feet"),
  6097. weight: math.unit(400, "lbs"),
  6098. name: "Side",
  6099. image: {
  6100. source: "./media/characters/kieran/side.svg",
  6101. extra: 875 / 777,
  6102. bottom: 84.6 / 959
  6103. }
  6104. },
  6105. },
  6106. [
  6107. {
  6108. name: "Normal",
  6109. height: math.unit(5.5, "feet"),
  6110. default: true
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6116. {
  6117. side: {
  6118. height: math.unit(2, "meters"),
  6119. weight: math.unit(70, "kg"),
  6120. name: "Side",
  6121. image: {
  6122. source: "./media/characters/sanya/side.svg",
  6123. bottom: 0.02,
  6124. extra: 1.02
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Small",
  6131. height: math.unit(2, "meters")
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(3, "meters")
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(16, "meters"),
  6140. default: true
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(2, "meters"),
  6149. weight: math.unit(120, "kg"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/miranda/front.svg",
  6153. extra: 195 / 185,
  6154. bottom: 10.9 / 206.5
  6155. }
  6156. },
  6157. back: {
  6158. height: math.unit(2, "meters"),
  6159. weight: math.unit(120, "kg"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/miranda/back.svg",
  6163. extra: 201 / 193,
  6164. bottom: 2.3 / 203.7
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(10, "feet"),
  6172. default: true
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "James", species: ["deer"], tags: ["anthro"] },
  6178. {
  6179. side: {
  6180. height: math.unit(2, "meters"),
  6181. weight: math.unit(100, "kg"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/james/front.svg",
  6185. extra: 10 / 8.5
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(8.5, "feet"),
  6193. default: true
  6194. }
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6199. {
  6200. side: {
  6201. height: math.unit(9.5, "feet"),
  6202. weight: math.unit(2500, "lbs"),
  6203. name: "Side",
  6204. image: {
  6205. source: "./media/characters/heather/side.svg"
  6206. }
  6207. },
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(9.5, "feet"),
  6213. default: true
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6219. {
  6220. side: {
  6221. height: math.unit(6.5, "feet"),
  6222. weight: math.unit(400, "lbs"),
  6223. name: "Side",
  6224. image: {
  6225. source: "./media/characters/lukas/side.svg",
  6226. extra: 7.25 / 6.5
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(6.5, "feet"),
  6234. default: true
  6235. }
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6240. {
  6241. side: {
  6242. height: math.unit(5, "feet"),
  6243. weight: math.unit(3000, "lbs"),
  6244. name: "Side",
  6245. image: {
  6246. source: "./media/characters/louise/side.svg"
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(5, "feet"),
  6254. default: true
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6260. {
  6261. side: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(150, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/ramona/side.svg",
  6267. extra: 871/854,
  6268. bottom: 41/912
  6269. }
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(6 + 4/12, "feet")
  6276. },
  6277. {
  6278. name: "Minimacro",
  6279. height: math.unit(5.3, "meters"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Macro",
  6284. height: math.unit(20, "stories")
  6285. },
  6286. {
  6287. name: "Macro+",
  6288. height: math.unit(50, "stories")
  6289. },
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6294. {
  6295. standing: {
  6296. height: math.unit(5.75, "feet"),
  6297. weight: math.unit(160, "lbs"),
  6298. name: "Standing",
  6299. image: {
  6300. source: "./media/characters/deerpuff/standing.svg",
  6301. extra: 682 / 624
  6302. }
  6303. },
  6304. sitting: {
  6305. height: math.unit(5.75 / 1.79, "feet"),
  6306. weight: math.unit(160, "lbs"),
  6307. name: "Sitting",
  6308. image: {
  6309. source: "./media/characters/deerpuff/sitting.svg",
  6310. bottom: 44 / 400,
  6311. extra: 1
  6312. }
  6313. },
  6314. taurLaying: {
  6315. height: math.unit(6, "feet"),
  6316. weight: math.unit(400, "lbs"),
  6317. name: "Taur (Laying)",
  6318. image: {
  6319. source: "./media/characters/deerpuff/taur-laying.svg"
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Puffball",
  6326. height: math.unit(6, "inches")
  6327. },
  6328. {
  6329. name: "Normalpuff",
  6330. height: math.unit(5.75, "feet")
  6331. },
  6332. {
  6333. name: "Macropuff",
  6334. height: math.unit(1500, "feet"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Megapuff",
  6339. height: math.unit(500, "miles")
  6340. },
  6341. {
  6342. name: "Gigapuff",
  6343. height: math.unit(250000, "miles")
  6344. },
  6345. {
  6346. name: "Omegapuff",
  6347. height: math.unit(1000, "lightyears")
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6353. {
  6354. stomping: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(170, "lbs"),
  6357. name: "Stomping",
  6358. image: {
  6359. source: "./media/characters/vivian/stomping.svg"
  6360. }
  6361. },
  6362. sitting: {
  6363. height: math.unit(6 / 1.75, "feet"),
  6364. weight: math.unit(170, "lbs"),
  6365. name: "Sitting",
  6366. image: {
  6367. source: "./media/characters/vivian/sitting.svg",
  6368. bottom: 1 / 6.4,
  6369. extra: 1,
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(7, "feet"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(10, "stories")
  6382. },
  6383. {
  6384. name: "Macro+",
  6385. height: math.unit(30, "stories")
  6386. },
  6387. {
  6388. name: "Megamacro",
  6389. height: math.unit(10, "miles")
  6390. },
  6391. {
  6392. name: "Megamacro+",
  6393. height: math.unit(2750000, "meters")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(160, "lbs"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/prince/front.svg",
  6406. extra: 1938/1682,
  6407. bottom: 45/1983
  6408. }
  6409. },
  6410. back: {
  6411. height: math.unit(6, "feet"),
  6412. weight: math.unit(160, "lbs"),
  6413. name: "Back",
  6414. image: {
  6415. source: "./media/characters/prince/back.svg",
  6416. extra: 1955/1726,
  6417. bottom: 6/1961
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(7.75, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Not cute",
  6429. height: math.unit(17, "feet")
  6430. },
  6431. {
  6432. name: "I said NOT",
  6433. height: math.unit(91, "feet")
  6434. },
  6435. {
  6436. name: "Please stop",
  6437. height: math.unit(560, "feet")
  6438. },
  6439. {
  6440. name: "What have you done",
  6441. height: math.unit(2200, "feet")
  6442. },
  6443. {
  6444. name: "Deer God",
  6445. height: math.unit(3.6, "miles")
  6446. },
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6451. {
  6452. standing: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(300, "lbs"),
  6455. name: "Standing",
  6456. image: {
  6457. source: "./media/characters/psymon/standing.svg",
  6458. extra: 1888 / 1810,
  6459. bottom: 0.05
  6460. }
  6461. },
  6462. slithering: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(300, "lbs"),
  6465. name: "Slithering",
  6466. image: {
  6467. source: "./media/characters/psymon/slithering.svg",
  6468. extra: 1330 / 1224
  6469. }
  6470. },
  6471. slitheringAlt: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(300, "lbs"),
  6474. name: "Slithering (Alt)",
  6475. image: {
  6476. source: "./media/characters/psymon/slithering-alt.svg",
  6477. extra: 1330 / 1224
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(11.25, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Large",
  6489. height: math.unit(27, "feet")
  6490. },
  6491. {
  6492. name: "Giant",
  6493. height: math.unit(87, "feet")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(365, "feet")
  6498. },
  6499. {
  6500. name: "Megamacro",
  6501. height: math.unit(3, "miles")
  6502. },
  6503. {
  6504. name: "World Serpent",
  6505. height: math.unit(8000, "miles")
  6506. },
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6511. {
  6512. front: {
  6513. height: math.unit(6, "feet"),
  6514. weight: math.unit(180, "lbs"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/daimos/front.svg",
  6518. extra: 4160 / 3897,
  6519. bottom: 0.021
  6520. }
  6521. }
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(8, "feet"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Big Dog",
  6531. height: math.unit(22, "feet")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(127, "feet")
  6536. },
  6537. {
  6538. name: "Megamacro",
  6539. height: math.unit(3600, "feet")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6545. {
  6546. side: {
  6547. height: math.unit(6, "feet"),
  6548. weight: math.unit(180, "lbs"),
  6549. name: "Side",
  6550. image: {
  6551. source: "./media/characters/blake/side.svg",
  6552. extra: 1212 / 1120,
  6553. bottom: 0.05
  6554. }
  6555. },
  6556. crouched: {
  6557. height: math.unit(6 * 0.57, "feet"),
  6558. weight: math.unit(180, "lbs"),
  6559. name: "Crouched",
  6560. image: {
  6561. source: "./media/characters/blake/crouched.svg",
  6562. extra: 840 / 587,
  6563. bottom: 0.04
  6564. }
  6565. },
  6566. bent: {
  6567. height: math.unit(6 * 0.75, "feet"),
  6568. weight: math.unit(180, "lbs"),
  6569. name: "Bent",
  6570. image: {
  6571. source: "./media/characters/blake/bent.svg",
  6572. extra: 592 / 544,
  6573. bottom: 0.035
  6574. }
  6575. },
  6576. },
  6577. [
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(8 + 1 / 6, "feet"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Big Backside",
  6585. height: math.unit(37, "feet")
  6586. },
  6587. {
  6588. name: "Subway Shredder",
  6589. height: math.unit(72, "feet")
  6590. },
  6591. {
  6592. name: "City Carver",
  6593. height: math.unit(1675, "feet")
  6594. },
  6595. {
  6596. name: "Tectonic Tweaker",
  6597. height: math.unit(2300, "miles")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(180, "lbs"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/guisetto/front.svg",
  6610. extra: 856 / 817,
  6611. bottom: 0.06
  6612. }
  6613. },
  6614. airborne: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(180, "lbs"),
  6617. name: "Airborne",
  6618. image: {
  6619. source: "./media/characters/guisetto/airborne.svg",
  6620. extra: 584 / 525
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(10 + 11 / 12, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Large",
  6632. height: math.unit(35, "feet")
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(475, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(180, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/luxor/front.svg",
  6649. extra: 2940 / 2152
  6650. }
  6651. },
  6652. back: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(180, "lbs"),
  6655. name: "Back",
  6656. image: {
  6657. source: "./media/characters/luxor/back.svg",
  6658. extra: 1083 / 960
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(5 + 5 / 6, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Lamp",
  6670. height: math.unit(50, "feet")
  6671. },
  6672. {
  6673. name: "Lämp",
  6674. height: math.unit(300, "feet")
  6675. },
  6676. {
  6677. name: "The sun is a lamp",
  6678. height: math.unit(250000, "miles")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(50, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/huoyan/front.svg"
  6691. }
  6692. },
  6693. side: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(180, "lbs"),
  6696. name: "Side",
  6697. image: {
  6698. source: "./media/characters/huoyan/side.svg"
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Chef",
  6705. height: math.unit(9, "feet")
  6706. },
  6707. {
  6708. name: "Normal",
  6709. height: math.unit(65, "feet"),
  6710. default: true
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(780, "feet")
  6715. },
  6716. {
  6717. name: "Flaming Mountain",
  6718. height: math.unit(4.8, "miles")
  6719. },
  6720. {
  6721. name: "Celestial",
  6722. height: math.unit(765000, "miles")
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(5 + 3 / 4, "feet"),
  6731. weight: math.unit(120, "lbs"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/tails/front.svg"
  6735. }
  6736. }
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(5 + 3 / 4, "feet"),
  6742. default: true
  6743. }
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6748. {
  6749. front: {
  6750. height: math.unit(4, "feet"),
  6751. weight: math.unit(50, "lbs"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/rainy/front.svg"
  6755. }
  6756. }
  6757. },
  6758. [
  6759. {
  6760. name: "Macro",
  6761. height: math.unit(800, "feet"),
  6762. default: true
  6763. }
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(150, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/rainier/front.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Micro",
  6781. height: math.unit(2, "mm"),
  6782. default: true
  6783. }
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6788. {
  6789. front: {
  6790. height: math.unit(8 + 4/12, "feet"),
  6791. weight: math.unit(450, "kilograms"),
  6792. volume: math.unit(5, "cups"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/andy-renard/front.svg",
  6796. extra: 1839/1726,
  6797. bottom: 134/1973
  6798. }
  6799. },
  6800. back: {
  6801. height: math.unit(8 + 4/12, "feet"),
  6802. weight: math.unit(450, "kilograms"),
  6803. volume: math.unit(5, "cups"),
  6804. name: "Back",
  6805. image: {
  6806. source: "./media/characters/andy-renard/back.svg",
  6807. extra: 1838/1710,
  6808. bottom: 105/1943
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Tall",
  6815. height: math.unit(8 + 4/12, "feet")
  6816. },
  6817. {
  6818. name: "Mini Macro",
  6819. height: math.unit(15, "feet"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(100, "feet")
  6825. },
  6826. {
  6827. name: "Mega Macro",
  6828. height: math.unit(1000, "feet")
  6829. },
  6830. {
  6831. name: "Giga Macro",
  6832. height: math.unit(10, "miles")
  6833. },
  6834. {
  6835. name: "God Macro",
  6836. height: math.unit(1, "multiverse")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(210, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/cimmaron/front-sfw.svg",
  6849. extra: 701 / 676,
  6850. bottom: 0.046
  6851. }
  6852. },
  6853. back: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(210, "lbs"),
  6856. name: "Back",
  6857. image: {
  6858. source: "./media/characters/cimmaron/back-sfw.svg",
  6859. extra: 701 / 676,
  6860. bottom: 0.046
  6861. }
  6862. },
  6863. frontNsfw: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(210, "lbs"),
  6866. name: "Front (NSFW)",
  6867. image: {
  6868. source: "./media/characters/cimmaron/front-nsfw.svg",
  6869. extra: 701 / 676,
  6870. bottom: 0.046
  6871. }
  6872. },
  6873. backNsfw: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(210, "lbs"),
  6876. name: "Back (NSFW)",
  6877. image: {
  6878. source: "./media/characters/cimmaron/back-nsfw.svg",
  6879. extra: 701 / 676,
  6880. bottom: 0.046
  6881. }
  6882. },
  6883. dick: {
  6884. height: math.unit(1.714, "feet"),
  6885. name: "Dick",
  6886. image: {
  6887. source: "./media/characters/cimmaron/dick.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(6, "feet"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Macro Mayor",
  6899. height: math.unit(350, "meters")
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(200, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/akari/front.svg",
  6912. extra: 962 / 901,
  6913. bottom: 0.04
  6914. }
  6915. }
  6916. },
  6917. [
  6918. {
  6919. name: "Micro",
  6920. height: math.unit(5, "inches"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Normal",
  6925. height: math.unit(7, "feet")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(140, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/cynosura/front.svg",
  6938. extra: 437/410,
  6939. bottom: 9/446
  6940. }
  6941. },
  6942. back: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(140, "lbs"),
  6945. name: "Back",
  6946. image: {
  6947. source: "./media/characters/cynosura/back.svg",
  6948. extra: 1304/1160,
  6949. bottom: 71/1375
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Micro",
  6956. height: math.unit(4, "inches")
  6957. },
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(5.75, "feet"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Tall",
  6965. height: math.unit(10, "feet")
  6966. },
  6967. {
  6968. name: "Big",
  6969. height: math.unit(20, "feet")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(50, "feet")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(13 + 2/12, "feet"),
  6982. weight: math.unit(800, "kg"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/gin/front.svg",
  6986. extra: 1312/1191,
  6987. bottom: 45/1357
  6988. }
  6989. },
  6990. mouth: {
  6991. height: math.unit(2.39 * 1.8, "feet"),
  6992. name: "Mouth",
  6993. image: {
  6994. source: "./media/characters/gin/mouth.svg"
  6995. }
  6996. },
  6997. hand: {
  6998. height: math.unit(1.57 * 2.19, "feet"),
  6999. name: "Hand",
  7000. image: {
  7001. source: "./media/characters/gin/hand.svg"
  7002. }
  7003. },
  7004. foot: {
  7005. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7006. name: "Foot",
  7007. image: {
  7008. source: "./media/characters/gin/foot.svg"
  7009. }
  7010. },
  7011. sole: {
  7012. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7013. name: "Sole",
  7014. image: {
  7015. source: "./media/characters/gin/sole.svg"
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Very Small",
  7022. height: math.unit(13 + 2 / 12, "feet")
  7023. },
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(600, "miles")
  7027. },
  7028. {
  7029. name: "Regular",
  7030. height: math.unit(20, "earths"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(2.2, "solarradii")
  7036. },
  7037. {
  7038. name: "Teramacro",
  7039. height: math.unit(1.2, "galaxies")
  7040. },
  7041. {
  7042. name: "Omegamacro",
  7043. height: math.unit(200, "universes")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6 + 1 / 6, "feet"),
  7052. weight: math.unit(178, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/guy/front.svg"
  7056. }
  7057. }
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(6 + 1 / 6, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Large",
  7067. height: math.unit(25 + 7 / 12, "feet")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(60 + 9 / 12, "feet")
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(246, "feet")
  7076. },
  7077. {
  7078. name: "Macro++",
  7079. height: math.unit(878, "feet")
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(9, "feet"),
  7088. weight: math.unit(800, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/tiberius/front.svg",
  7092. extra: 2295 / 2071
  7093. }
  7094. },
  7095. back: {
  7096. height: math.unit(9, "feet"),
  7097. weight: math.unit(800, "lbs"),
  7098. name: "Back",
  7099. image: {
  7100. source: "./media/characters/tiberius/back.svg",
  7101. extra: 2373 / 2160
  7102. }
  7103. },
  7104. },
  7105. [
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(9, "feet"),
  7109. default: true
  7110. }
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(600, "lbs"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/surgo/front.svg",
  7122. extra: 3591 / 2227
  7123. }
  7124. },
  7125. back: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(600, "lbs"),
  7128. name: "Back",
  7129. image: {
  7130. source: "./media/characters/surgo/back.svg",
  7131. extra: 3557 / 2228
  7132. }
  7133. },
  7134. laying: {
  7135. height: math.unit(6 * 0.85, "feet"),
  7136. weight: math.unit(600, "lbs"),
  7137. name: "Laying",
  7138. image: {
  7139. source: "./media/characters/surgo/laying.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(6, "feet"),
  7147. default: true
  7148. }
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7153. {
  7154. side: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(150, "lbs"),
  7157. name: "Side",
  7158. image: {
  7159. source: "./media/characters/cibus/side.svg",
  7160. extra: 800 / 400
  7161. }
  7162. },
  7163. },
  7164. [
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(6, "feet"),
  7168. default: true
  7169. }
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(240, "lbs"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/nibbles/front.svg"
  7181. }
  7182. },
  7183. side: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(240, "lbs"),
  7186. name: "Side",
  7187. image: {
  7188. source: "./media/characters/nibbles/side.svg"
  7189. }
  7190. },
  7191. },
  7192. [
  7193. {
  7194. name: "Normal",
  7195. height: math.unit(9, "feet"),
  7196. default: true
  7197. }
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7202. {
  7203. side: {
  7204. height: math.unit(5 + 1 / 6, "feet"),
  7205. weight: math.unit(130, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/rikky/side.svg",
  7209. extra: 851 / 801
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(5 + 1 / 6, "feet")
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(152, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(7, "miles")
  7226. }
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7231. {
  7232. side: {
  7233. height: math.unit(370, "cm"),
  7234. weight: math.unit(350, "lbs"),
  7235. name: "Side",
  7236. image: {
  7237. source: "./media/characters/malfressa/side.svg"
  7238. }
  7239. },
  7240. walking: {
  7241. height: math.unit(370, "cm"),
  7242. weight: math.unit(350, "lbs"),
  7243. name: "Walking",
  7244. image: {
  7245. source: "./media/characters/malfressa/walking.svg"
  7246. }
  7247. },
  7248. feral: {
  7249. height: math.unit(2500, "cm"),
  7250. weight: math.unit(100000, "lbs"),
  7251. name: "Feral",
  7252. image: {
  7253. source: "./media/characters/malfressa/feral.svg",
  7254. extra: 2108 / 837,
  7255. bottom: 0.02
  7256. }
  7257. },
  7258. },
  7259. [
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(370, "cm")
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(300, "meters"),
  7267. default: true
  7268. }
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(6, "feet"),
  7276. weight: math.unit(60, "kg"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/jaro/front.svg",
  7280. extra: 845/817,
  7281. bottom: 45/890
  7282. }
  7283. },
  7284. back: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(60, "kg"),
  7287. name: "Back",
  7288. image: {
  7289. source: "./media/characters/jaro/back.svg",
  7290. extra: 847/817,
  7291. bottom: 34/881
  7292. }
  7293. },
  7294. },
  7295. [
  7296. {
  7297. name: "Micro",
  7298. height: math.unit(7, "inches")
  7299. },
  7300. {
  7301. name: "Normal",
  7302. height: math.unit(5.5, "feet"),
  7303. default: true
  7304. },
  7305. {
  7306. name: "Minimacro",
  7307. height: math.unit(20, "feet")
  7308. },
  7309. {
  7310. name: "Macro",
  7311. height: math.unit(200, "meters")
  7312. }
  7313. ]
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(6, "feet"),
  7320. weight: math.unit(195, "lb"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/rogue/front.svg"
  7324. }
  7325. },
  7326. },
  7327. [
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(90, "feet"),
  7331. default: true
  7332. },
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7337. {
  7338. standing: {
  7339. height: math.unit(5 + 8 / 12, "feet"),
  7340. weight: math.unit(140, "lb"),
  7341. name: "Standing",
  7342. image: {
  7343. source: "./media/characters/piper/standing.svg",
  7344. extra: 1440/1284,
  7345. bottom: 66/1506
  7346. }
  7347. },
  7348. running: {
  7349. height: math.unit(5 + 8 / 12, "feet"),
  7350. weight: math.unit(140, "lb"),
  7351. name: "Running",
  7352. image: {
  7353. source: "./media/characters/piper/running.svg",
  7354. extra: 3948/3655,
  7355. bottom: 0/3948
  7356. }
  7357. },
  7358. sole: {
  7359. height: math.unit(0.81, "feet"),
  7360. weight: math.unit(2, "kg"),
  7361. name: "Sole",
  7362. image: {
  7363. source: "./media/characters/piper/sole.svg"
  7364. }
  7365. },
  7366. nipple: {
  7367. height: math.unit(0.25, "feet"),
  7368. weight: math.unit(1.5, "lb"),
  7369. name: "Nipple",
  7370. image: {
  7371. source: "./media/characters/piper/nipple.svg"
  7372. }
  7373. },
  7374. head: {
  7375. height: math.unit(1.1, "feet"),
  7376. name: "Head",
  7377. image: {
  7378. source: "./media/characters/piper/head.svg"
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(2, "inches")
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(5 + 8 / 12, "feet")
  7390. },
  7391. {
  7392. name: "Macro",
  7393. height: math.unit(250, "feet"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Megamacro",
  7398. height: math.unit(7, "miles")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(220, "lb"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/gemini/front.svg"
  7411. }
  7412. },
  7413. back: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(220, "lb"),
  7416. name: "Back",
  7417. image: {
  7418. source: "./media/characters/gemini/back.svg"
  7419. }
  7420. },
  7421. kneeling: {
  7422. height: math.unit(6 / 1.5, "feet"),
  7423. weight: math.unit(220, "lb"),
  7424. name: "Kneeling",
  7425. image: {
  7426. source: "./media/characters/gemini/kneeling.svg",
  7427. bottom: 0.02
  7428. }
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(300, "meters"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Megamacro",
  7439. height: math.unit(6900, "meters")
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7445. {
  7446. anthro: {
  7447. height: math.unit(2.35, "meters"),
  7448. weight: math.unit(73, "kg"),
  7449. name: "Anthro",
  7450. image: {
  7451. source: "./media/characters/alicia/anthro.svg",
  7452. extra: 2571 / 2385,
  7453. bottom: 75 / 2648
  7454. }
  7455. },
  7456. paw: {
  7457. height: math.unit(1.32, "feet"),
  7458. name: "Paw",
  7459. image: {
  7460. source: "./media/characters/alicia/paw.svg"
  7461. }
  7462. },
  7463. feral: {
  7464. height: math.unit(1.69, "meters"),
  7465. weight: math.unit(73, "kg"),
  7466. name: "Feral",
  7467. image: {
  7468. source: "./media/characters/alicia/feral.svg",
  7469. extra: 2123 / 1715,
  7470. bottom: 222 / 2349
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(2.35, "meters")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(60, "meters"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Megamacro",
  7486. height: math.unit(10000, "kilometers")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(7, "feet"),
  7495. weight: math.unit(250, "lbs"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/archy/front.svg"
  7499. }
  7500. }
  7501. },
  7502. [
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(1, "inch")
  7506. },
  7507. {
  7508. name: "Shorty",
  7509. height: math.unit(5, "feet")
  7510. },
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(7, "feet")
  7514. },
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(600, "meters"),
  7518. default: true
  7519. },
  7520. {
  7521. name: "Megamacro",
  7522. height: math.unit(1, "mile")
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7528. {
  7529. front: {
  7530. height: math.unit(1.65, "meters"),
  7531. weight: math.unit(74, "kg"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/berri/front.svg",
  7535. extra: 857 / 837,
  7536. bottom: 18 / 877
  7537. }
  7538. },
  7539. bum: {
  7540. height: math.unit(1.46, "feet"),
  7541. name: "Bum",
  7542. image: {
  7543. source: "./media/characters/berri/bum.svg"
  7544. }
  7545. },
  7546. mouth: {
  7547. height: math.unit(0.44, "feet"),
  7548. name: "Mouth",
  7549. image: {
  7550. source: "./media/characters/berri/mouth.svg"
  7551. }
  7552. },
  7553. paw: {
  7554. height: math.unit(0.826, "feet"),
  7555. name: "Paw",
  7556. image: {
  7557. source: "./media/characters/berri/paw.svg"
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(1.65, "meters")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(60, "m"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Megamacro",
  7573. height: math.unit(9.213, "km")
  7574. },
  7575. {
  7576. name: "Planet Eater",
  7577. height: math.unit(489, "megameters")
  7578. },
  7579. {
  7580. name: "Teramacro",
  7581. height: math.unit(2471635000000, "meters")
  7582. },
  7583. {
  7584. name: "Examacro",
  7585. height: math.unit(8.0624e+26, "meters")
  7586. }
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(1.72, "meters"),
  7594. weight: math.unit(68, "kg"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/lexi/front.svg"
  7598. }
  7599. }
  7600. },
  7601. [
  7602. {
  7603. name: "Very Smol",
  7604. height: math.unit(10, "mm")
  7605. },
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(6.8, "cm"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(1.72, "m")
  7614. }
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(1.69, "meters"),
  7622. weight: math.unit(68, "kg"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/martin/front.svg",
  7626. extra: 596 / 581
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Micro",
  7633. height: math.unit(6.85, "cm"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Normal",
  7638. height: math.unit(1.69, "m")
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(1.69, "meters"),
  7647. weight: math.unit(68, "kg"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/juno/front.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(7, "cm")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(1.89, "m")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(353, "meters"),
  7666. default: true
  7667. }
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(1.93, "meters"),
  7675. weight: math.unit(83, "kg"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/samantha/front.svg"
  7679. }
  7680. },
  7681. frontClothed: {
  7682. height: math.unit(1.93, "meters"),
  7683. weight: math.unit(83, "kg"),
  7684. name: "Front (Clothed)",
  7685. image: {
  7686. source: "./media/characters/samantha/front-clothed.svg"
  7687. }
  7688. },
  7689. back: {
  7690. height: math.unit(1.93, "meters"),
  7691. weight: math.unit(83, "kg"),
  7692. name: "Back",
  7693. image: {
  7694. source: "./media/characters/samantha/back.svg"
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(1.93, "m")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(74, "meters"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro+",
  7710. height: math.unit(223, "meters"),
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(8381, "meters"),
  7715. },
  7716. {
  7717. name: "Megamacro+",
  7718. height: math.unit(12000, "kilometers")
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(1.92, "meters"),
  7727. weight: math.unit(80, "kg"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/dr-clay/front.svg"
  7731. }
  7732. },
  7733. frontClothed: {
  7734. height: math.unit(1.92, "meters"),
  7735. weight: math.unit(80, "kg"),
  7736. name: "Front (Clothed)",
  7737. image: {
  7738. source: "./media/characters/dr-clay/front-clothed.svg"
  7739. }
  7740. }
  7741. },
  7742. [
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(1.92, "m")
  7746. },
  7747. {
  7748. name: "Macro",
  7749. height: math.unit(214, "meters"),
  7750. default: true
  7751. },
  7752. {
  7753. name: "Macro+",
  7754. height: math.unit(12.237, "meters"),
  7755. },
  7756. {
  7757. name: "Megamacro",
  7758. height: math.unit(557, "megameters"),
  7759. },
  7760. {
  7761. name: "Unimaginable",
  7762. height: math.unit(120e9, "lightyears")
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(2, "meters"),
  7771. weight: math.unit(80, "kg"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7775. }
  7776. }
  7777. },
  7778. [
  7779. {
  7780. name: "Teramacro",
  7781. height: math.unit(500000, "lightyears"),
  7782. default: true
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7788. {
  7789. crux: {
  7790. height: math.unit(2, "meters"),
  7791. weight: math.unit(150, "kg"),
  7792. name: "Crux",
  7793. image: {
  7794. source: "./media/characters/vemus/crux.svg",
  7795. extra: 1074/936,
  7796. bottom: 23/1097
  7797. }
  7798. },
  7799. skunkTanuki: {
  7800. height: math.unit(2, "meters"),
  7801. weight: math.unit(150, "kg"),
  7802. name: "Skunk-Tanuki",
  7803. image: {
  7804. source: "./media/characters/vemus/skunk-tanuki.svg",
  7805. extra: 926/893,
  7806. bottom: 20/946
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(4, "meters"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Big",
  7818. height: math.unit(8, "meters")
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(100, "meters")
  7823. },
  7824. {
  7825. name: "Macro+",
  7826. height: math.unit(1500, "meters")
  7827. },
  7828. {
  7829. name: "Stellar",
  7830. height: math.unit(14e8, "meters")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(2, "meters"),
  7839. weight: math.unit(70, "kg"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/beherit/front.svg",
  7843. extra: 1234/1109,
  7844. bottom: 55/1289
  7845. }
  7846. }
  7847. },
  7848. [
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(6, "feet")
  7852. },
  7853. {
  7854. name: "Lorg",
  7855. height: math.unit(25, "feet"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Lorger",
  7860. height: math.unit(75, "feet")
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(200, "meters")
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7870. {
  7871. front: {
  7872. height: math.unit(2, "meters"),
  7873. weight: math.unit(150, "kg"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/everett/front.svg",
  7877. extra: 1017/866,
  7878. bottom: 86/1103
  7879. }
  7880. },
  7881. paw: {
  7882. height: math.unit(2 / 3.6, "meters"),
  7883. name: "Paw",
  7884. image: {
  7885. source: "./media/characters/everett/paw.svg"
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(15, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Lorg",
  7897. height: math.unit(70, "feet"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Lorger",
  7902. height: math.unit(250, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(500, "meters")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(2, "meters"),
  7915. weight: math.unit(86, "kg"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/rose/front.svg",
  7919. extra: 1785/1636,
  7920. bottom: 30/1815
  7921. },
  7922. form: "liom",
  7923. default: true
  7924. },
  7925. frontSporty: {
  7926. height: math.unit(2, "meters"),
  7927. weight: math.unit(86, "kg"),
  7928. name: "Front (Sporty)",
  7929. image: {
  7930. source: "./media/characters/rose/front-sporty.svg",
  7931. extra: 350/335,
  7932. bottom: 10/360
  7933. },
  7934. form: "liom"
  7935. },
  7936. frontAlt: {
  7937. height: math.unit(1.6, "meters"),
  7938. weight: math.unit(86, "kg"),
  7939. name: "Front (Alt)",
  7940. image: {
  7941. source: "./media/characters/rose/front-alt.svg",
  7942. extra: 299/283,
  7943. bottom: 3/302
  7944. },
  7945. form: "liom"
  7946. },
  7947. plush: {
  7948. height: math.unit(2, "meters"),
  7949. weight: math.unit(86/3, "kg"),
  7950. name: "Plush",
  7951. image: {
  7952. source: "./media/characters/rose/plush.svg",
  7953. extra: 361/337,
  7954. bottom: 11/372
  7955. },
  7956. form: "plush",
  7957. default: true
  7958. },
  7959. faeStanding: {
  7960. height: math.unit(10, "cm"),
  7961. weight: math.unit(10, "grams"),
  7962. name: "Standing",
  7963. image: {
  7964. source: "./media/characters/rose/fae-standing.svg",
  7965. extra: 1189/1060,
  7966. bottom: 27/1216
  7967. },
  7968. form: "fae",
  7969. default: true
  7970. },
  7971. faeSitting: {
  7972. height: math.unit(5, "cm"),
  7973. weight: math.unit(10, "grams"),
  7974. name: "Sitting",
  7975. image: {
  7976. source: "./media/characters/rose/fae-sitting.svg",
  7977. extra: 737/577,
  7978. bottom: 356/1093
  7979. },
  7980. form: "fae"
  7981. },
  7982. faePaw: {
  7983. height: math.unit(1.35, "cm"),
  7984. name: "Paw",
  7985. image: {
  7986. source: "./media/characters/rose/fae-paw.svg"
  7987. },
  7988. form: "fae"
  7989. },
  7990. },
  7991. [
  7992. {
  7993. name: "True Micro",
  7994. height: math.unit(9, "cm"),
  7995. form: "liom"
  7996. },
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(16, "cm"),
  8000. form: "liom"
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.85, "meters"),
  8005. default: true,
  8006. form: "liom"
  8007. },
  8008. {
  8009. name: "Mini-Macro",
  8010. height: math.unit(5, "meters"),
  8011. form: "liom"
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(15, "meters"),
  8016. form: "liom"
  8017. },
  8018. {
  8019. name: "True Macro",
  8020. height: math.unit(40, "meters"),
  8021. form: "liom"
  8022. },
  8023. {
  8024. name: "City Scale",
  8025. height: math.unit(1, "km"),
  8026. form: "liom"
  8027. },
  8028. {
  8029. name: "Plushie",
  8030. height: math.unit(9, "cm"),
  8031. form: "plush",
  8032. default: true
  8033. },
  8034. {
  8035. name: "Fae",
  8036. height: math.unit(10, "cm"),
  8037. form: "fae",
  8038. default: true
  8039. },
  8040. ],
  8041. {
  8042. "liom": {
  8043. name: "Liom"
  8044. },
  8045. "plush": {
  8046. name: "Plush"
  8047. },
  8048. "fae": {
  8049. name: "Fae Fox",
  8050. default: true
  8051. }
  8052. }
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(2, "meters"),
  8059. weight: math.unit(350, "lbs"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/regal/front.svg"
  8063. }
  8064. },
  8065. back: {
  8066. height: math.unit(2, "meters"),
  8067. weight: math.unit(350, "lbs"),
  8068. name: "Back",
  8069. image: {
  8070. source: "./media/characters/regal/back.svg"
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(350, "feet"),
  8078. default: true
  8079. }
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(4 + 11 / 12, "feet"),
  8087. weight: math.unit(100, "lbs"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/opal/front.svg"
  8091. }
  8092. },
  8093. frontAlt: {
  8094. height: math.unit(4 + 11 / 12, "feet"),
  8095. weight: math.unit(100, "lbs"),
  8096. name: "Front (Alt)",
  8097. image: {
  8098. source: "./media/characters/opal/front-alt.svg"
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Small",
  8105. height: math.unit(4 + 11 / 12, "feet")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(20, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(120, "feet")
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(80, "miles")
  8119. },
  8120. {
  8121. name: "True Size",
  8122. height: math.unit(100000, "lightyears")
  8123. },
  8124. ]
  8125. ))
  8126. characterMakers.push(() => makeCharacter(
  8127. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8128. {
  8129. front: {
  8130. height: math.unit(6, "feet"),
  8131. weight: math.unit(200, "lbs"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/vector-wuff/front.svg"
  8135. }
  8136. }
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(2.8, "meters")
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(450, "meters"),
  8146. default: true
  8147. },
  8148. {
  8149. name: "Megamacro",
  8150. height: math.unit(15, "kilometers")
  8151. }
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(6, "feet"),
  8159. weight: math.unit(256, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/dannik/front.svg"
  8163. }
  8164. }
  8165. },
  8166. [
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(69.57, "meters"),
  8170. default: true
  8171. },
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(120, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/azura-saharah/front.svg"
  8183. }
  8184. },
  8185. back: {
  8186. height: math.unit(6, "feet"),
  8187. weight: math.unit(120, "lbs"),
  8188. name: "Back",
  8189. image: {
  8190. source: "./media/characters/azura-saharah/back.svg"
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(100, "feet"),
  8198. default: true
  8199. },
  8200. ]
  8201. ))
  8202. characterMakers.push(() => makeCharacter(
  8203. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8204. {
  8205. side: {
  8206. height: math.unit(5 + 4 / 12, "feet"),
  8207. weight: math.unit(163, "lbs"),
  8208. name: "Side",
  8209. image: {
  8210. source: "./media/characters/kennedy/side.svg"
  8211. }
  8212. }
  8213. },
  8214. [
  8215. {
  8216. name: "Standard Doggo",
  8217. height: math.unit(5 + 4 / 12, "feet")
  8218. },
  8219. {
  8220. name: "Big Doggo",
  8221. height: math.unit(25 + 3 / 12, "feet"),
  8222. default: true
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(5 + 5/12, "feet"),
  8231. weight: math.unit(100, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/odios-de-lunar/front.svg",
  8235. extra: 1468/1323,
  8236. bottom: 22/1490
  8237. }
  8238. }
  8239. },
  8240. [
  8241. {
  8242. name: "Micro",
  8243. height: math.unit(3, "inches")
  8244. },
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(5.5, "feet"),
  8248. default: true
  8249. },
  8250. {
  8251. name: "Macro",
  8252. height: math.unit(100, "feet")
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8258. {
  8259. back: {
  8260. height: math.unit(6, "feet"),
  8261. weight: math.unit(220, "lbs"),
  8262. name: "Back",
  8263. image: {
  8264. source: "./media/characters/mandake/back.svg"
  8265. }
  8266. }
  8267. },
  8268. [
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(7, "feet"),
  8272. default: true
  8273. },
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(78, "feet")
  8277. },
  8278. {
  8279. name: "Macro+",
  8280. height: math.unit(300, "meters")
  8281. },
  8282. {
  8283. name: "Macro++",
  8284. height: math.unit(2400, "feet")
  8285. },
  8286. {
  8287. name: "Megamacro",
  8288. height: math.unit(5167, "meters")
  8289. },
  8290. {
  8291. name: "Gigamacro",
  8292. height: math.unit(41769, "miles")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(120, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/yozey/front.svg"
  8305. }
  8306. },
  8307. frontAlt: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(120, "lbs"),
  8310. name: "Front (Alt)",
  8311. image: {
  8312. source: "./media/characters/yozey/front-alt.svg"
  8313. }
  8314. },
  8315. side: {
  8316. height: math.unit(6, "feet"),
  8317. weight: math.unit(120, "lbs"),
  8318. name: "Side",
  8319. image: {
  8320. source: "./media/characters/yozey/side.svg"
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Micro",
  8327. height: math.unit(3, "inches"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(6, "feet")
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(103, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/valeska-voss/front.svg"
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Mini-Sized Sub",
  8351. height: math.unit(3.1, "inches")
  8352. },
  8353. {
  8354. name: "Mid-Sized Sub",
  8355. height: math.unit(6.2, "inches")
  8356. },
  8357. {
  8358. name: "Full-Sized Sub",
  8359. height: math.unit(9.3, "inches")
  8360. },
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 2 / 12, "foot"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(160, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/gene-zeta/front.svg",
  8377. extra: 3006 / 2826,
  8378. bottom: 182 / 3188
  8379. }
  8380. }
  8381. },
  8382. [
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(6, "inches")
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(5 + 11 / 12, "foot"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(140, "feet")
  8395. },
  8396. {
  8397. name: "Supercharged",
  8398. height: math.unit(2500, "feet")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(350, "lbs"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/razinox/front.svg",
  8411. extra: 1686 / 1548,
  8412. bottom: 28.2 / 1868
  8413. }
  8414. },
  8415. back: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(350, "lbs"),
  8418. name: "Back",
  8419. image: {
  8420. source: "./media/characters/razinox/back.svg",
  8421. extra: 1660 / 1590,
  8422. bottom: 15 / 1665
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Normal",
  8429. height: math.unit(10 + 8 / 12, "foot")
  8430. },
  8431. {
  8432. name: "Minimacro",
  8433. height: math.unit(15, "foot")
  8434. },
  8435. {
  8436. name: "Macro",
  8437. height: math.unit(60, "foot"),
  8438. default: true
  8439. },
  8440. {
  8441. name: "Megamacro",
  8442. height: math.unit(5, "miles")
  8443. },
  8444. {
  8445. name: "Gigamacro",
  8446. height: math.unit(6000, "miles")
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8452. {
  8453. front: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(150, "lbs"),
  8456. name: "Front",
  8457. image: {
  8458. source: "./media/characters/cobalt/front.svg"
  8459. }
  8460. }
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(8 + 1 / 12, "foot")
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(111, "foot"),
  8470. default: true
  8471. },
  8472. {
  8473. name: "Supracosmic",
  8474. height: math.unit(1e42, "feet")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(5, "inches"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/amanda/front.svg",
  8486. extra: 926/791,
  8487. bottom: 38/964
  8488. }
  8489. },
  8490. back: {
  8491. height: math.unit(5, "inches"),
  8492. name: "Back",
  8493. image: {
  8494. source: "./media/characters/amanda/back.svg",
  8495. extra: 909/805,
  8496. bottom: 43/952
  8497. }
  8498. },
  8499. },
  8500. [
  8501. {
  8502. name: "Micro",
  8503. height: math.unit(5, "inches"),
  8504. default: true
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(2.75, "meters"),
  8513. weight: math.unit(1200, "lb"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/teal/front.svg",
  8517. extra: 2463 / 2320,
  8518. bottom: 166 / 2629
  8519. }
  8520. },
  8521. back: {
  8522. height: math.unit(2.75, "meters"),
  8523. weight: math.unit(1200, "lb"),
  8524. name: "Back",
  8525. image: {
  8526. source: "./media/characters/teal/back.svg",
  8527. extra: 2580 / 2489,
  8528. bottom: 151 / 2731
  8529. }
  8530. },
  8531. sitting: {
  8532. height: math.unit(1.9, "meters"),
  8533. weight: math.unit(1200, "lb"),
  8534. name: "Sitting",
  8535. image: {
  8536. source: "./media/characters/teal/sitting.svg",
  8537. extra: 623 / 590,
  8538. bottom: 121 / 744
  8539. }
  8540. },
  8541. standing: {
  8542. height: math.unit(2.75, "meters"),
  8543. weight: math.unit(1200, "lb"),
  8544. name: "Standing",
  8545. image: {
  8546. source: "./media/characters/teal/standing.svg",
  8547. extra: 923 / 893,
  8548. bottom: 60 / 983
  8549. }
  8550. },
  8551. stretching: {
  8552. height: math.unit(3.65, "meters"),
  8553. weight: math.unit(1200, "lb"),
  8554. name: "Stretching",
  8555. image: {
  8556. source: "./media/characters/teal/stretching.svg",
  8557. extra: 1276 / 1244,
  8558. bottom: 0 / 1276
  8559. }
  8560. },
  8561. legged: {
  8562. height: math.unit(1.3, "meters"),
  8563. weight: math.unit(100, "lb"),
  8564. name: "Legged",
  8565. image: {
  8566. source: "./media/characters/teal/legged.svg",
  8567. extra: 462 / 437,
  8568. bottom: 24 / 486
  8569. }
  8570. },
  8571. naga: {
  8572. height: math.unit(5.4, "meters"),
  8573. weight: math.unit(4000, "lb"),
  8574. name: "Naga",
  8575. image: {
  8576. source: "./media/characters/teal/naga.svg",
  8577. extra: 1902 / 1858,
  8578. bottom: 0 / 1902
  8579. }
  8580. },
  8581. hand: {
  8582. height: math.unit(0.52, "meters"),
  8583. name: "Hand",
  8584. image: {
  8585. source: "./media/characters/teal/hand.svg"
  8586. }
  8587. },
  8588. maw: {
  8589. height: math.unit(0.43, "meters"),
  8590. name: "Maw",
  8591. image: {
  8592. source: "./media/characters/teal/maw.svg"
  8593. }
  8594. },
  8595. slit: {
  8596. height: math.unit(0.25, "meters"),
  8597. name: "Slit",
  8598. image: {
  8599. source: "./media/characters/teal/slit.svg"
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(2.75, "meters"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(300, "feet")
  8612. },
  8613. {
  8614. name: "Macro+",
  8615. height: math.unit(2000, "feet")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8621. {
  8622. frontCat: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(180, "lbs"),
  8625. name: "Front (Cat)",
  8626. image: {
  8627. source: "./media/characters/ravin-amulet/front-cat.svg"
  8628. }
  8629. },
  8630. frontCatAlt: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(180, "lbs"),
  8633. name: "Front (Alt, Cat)",
  8634. image: {
  8635. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8636. }
  8637. },
  8638. frontWerewolf: {
  8639. height: math.unit(6 * 1.2, "feet"),
  8640. weight: math.unit(225, "lbs"),
  8641. name: "Front (Werewolf)",
  8642. image: {
  8643. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8644. }
  8645. },
  8646. backWerewolf: {
  8647. height: math.unit(6 * 1.2, "feet"),
  8648. weight: math.unit(225, "lbs"),
  8649. name: "Back (Werewolf)",
  8650. image: {
  8651. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Nano",
  8658. height: math.unit(1, "micrometer")
  8659. },
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(1, "inch")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(6, "feet"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(60, "feet")
  8672. }
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(165, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/fluoresce/front.svg"
  8684. }
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(6, "cm")
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(5 + 7 / 12, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(56, "feet")
  8700. },
  8701. {
  8702. name: "Megamacro",
  8703. height: math.unit(1.9, "miles")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(9 + 6 / 12, "feet"),
  8712. weight: math.unit(523, "lbs"),
  8713. name: "Side",
  8714. image: {
  8715. source: "./media/characters/aurora/side.svg",
  8716. extra: 474/393,
  8717. bottom: 5/479
  8718. }
  8719. }
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(9 + 6 / 12, "feet")
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(96, "feet"),
  8729. default: true
  8730. },
  8731. {
  8732. name: "Macro+",
  8733. height: math.unit(243, "feet")
  8734. },
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(194, "cm"),
  8742. weight: math.unit(90, "kg"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/ranek/front.svg",
  8746. extra: 1862/1791,
  8747. bottom: 80/1942
  8748. }
  8749. },
  8750. back: {
  8751. height: math.unit(194, "cm"),
  8752. weight: math.unit(90, "kg"),
  8753. name: "Back",
  8754. image: {
  8755. source: "./media/characters/ranek/back.svg",
  8756. extra: 1853/1787,
  8757. bottom: 74/1927
  8758. }
  8759. },
  8760. feral: {
  8761. height: math.unit(30, "cm"),
  8762. weight: math.unit(1.6, "lbs"),
  8763. name: "Feral",
  8764. image: {
  8765. source: "./media/characters/ranek/feral.svg",
  8766. extra: 990/631,
  8767. bottom: 29/1019
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(194, "cm"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(100, "meters")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(5 + 6 / 12, "feet"),
  8788. weight: math.unit(153, "lbs"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/andrew-cooper/front.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Nano",
  8798. height: math.unit(1, "mm")
  8799. },
  8800. {
  8801. name: "Micro",
  8802. height: math.unit(2, "inches")
  8803. },
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(5 + 6 / 12, "feet"),
  8807. default: true
  8808. }
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(6, "feet"),
  8816. weight: math.unit(180, "lbs"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/akane-sato/front.svg",
  8820. extra: 1219 / 1140
  8821. }
  8822. },
  8823. back: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(180, "lbs"),
  8826. name: "Back",
  8827. image: {
  8828. source: "./media/characters/akane-sato/back.svg",
  8829. extra: 1219 / 1170
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(2.5, "meters")
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(250, "meters"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Megamacro",
  8845. height: math.unit(25, "km")
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(65, "kg"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/rook/front.svg",
  8858. extra: 960 / 950
  8859. }
  8860. }
  8861. },
  8862. [
  8863. {
  8864. name: "Normal",
  8865. height: math.unit(8.8, "feet")
  8866. },
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(88, "feet"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Megamacro",
  8874. height: math.unit(8, "miles")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(12 + 2 / 12, "feet"),
  8883. weight: math.unit(808, "lbs"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/prodigy/front.svg"
  8887. }
  8888. }
  8889. },
  8890. [
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(12 + 2 / 12, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(143, "feet")
  8899. },
  8900. {
  8901. name: "Macro+",
  8902. height: math.unit(400, "feet")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(225, "lbs"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/daniel/front.svg"
  8915. }
  8916. },
  8917. leaning: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(225, "lbs"),
  8920. name: "Leaning",
  8921. image: {
  8922. source: "./media/characters/daniel/leaning.svg"
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Macro",
  8929. height: math.unit(1000, "feet"),
  8930. default: true
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(88, "lbs"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/chiros/front.svg",
  8943. extra: 306 / 226
  8944. }
  8945. },
  8946. side: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(88, "lbs"),
  8949. name: "Side",
  8950. image: {
  8951. source: "./media/characters/chiros/side.svg",
  8952. extra: 306 / 226
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(6, "cm"),
  8960. default: true
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8966. {
  8967. front: {
  8968. height: math.unit(6, "feet"),
  8969. weight: math.unit(100, "lbs"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/selka/front.svg",
  8973. extra: 947 / 887
  8974. }
  8975. }
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(5, "cm"),
  8981. default: true
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(8 + 3 / 12, "feet"),
  8990. weight: math.unit(424, "lbs"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/verin/front.svg",
  8994. extra: 1845 / 1550
  8995. }
  8996. },
  8997. frontArmored: {
  8998. height: math.unit(8 + 3 / 12, "feet"),
  8999. weight: math.unit(424, "lbs"),
  9000. name: "Front (Armored)",
  9001. image: {
  9002. source: "./media/characters/verin/front-armor.svg",
  9003. extra: 1845 / 1550,
  9004. bottom: 0.01
  9005. }
  9006. },
  9007. back: {
  9008. height: math.unit(8 + 3 / 12, "feet"),
  9009. weight: math.unit(424, "lbs"),
  9010. name: "Back",
  9011. image: {
  9012. source: "./media/characters/verin/back.svg",
  9013. bottom: 0.1,
  9014. extra: 1
  9015. }
  9016. },
  9017. foot: {
  9018. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9019. name: "Foot",
  9020. image: {
  9021. source: "./media/characters/verin/foot.svg"
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(8 + 3 / 12, "feet")
  9029. },
  9030. {
  9031. name: "Minimacro",
  9032. height: math.unit(21, "feet"),
  9033. default: true
  9034. },
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(626, "feet")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(2.718, "meters"),
  9046. weight: math.unit(150, "lbs"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/sovrim-terraquian/front.svg",
  9050. extra: 1752/1689,
  9051. bottom: 36/1788
  9052. }
  9053. },
  9054. back: {
  9055. height: math.unit(2.718, "meters"),
  9056. weight: math.unit(150, "lbs"),
  9057. name: "Back",
  9058. image: {
  9059. source: "./media/characters/sovrim-terraquian/back.svg",
  9060. extra: 1698/1657,
  9061. bottom: 58/1756
  9062. }
  9063. },
  9064. tongue: {
  9065. height: math.unit(2.865, "feet"),
  9066. name: "Tongue",
  9067. image: {
  9068. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9069. }
  9070. },
  9071. hand: {
  9072. height: math.unit(1.61, "feet"),
  9073. name: "Hand",
  9074. image: {
  9075. source: "./media/characters/sovrim-terraquian/hand.svg"
  9076. }
  9077. },
  9078. foot: {
  9079. height: math.unit(1.05, "feet"),
  9080. name: "Foot",
  9081. image: {
  9082. source: "./media/characters/sovrim-terraquian/foot.svg"
  9083. }
  9084. },
  9085. footAlt: {
  9086. height: math.unit(0.88, "feet"),
  9087. name: "Foot (Alt)",
  9088. image: {
  9089. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(2, "inches")
  9097. },
  9098. {
  9099. name: "Small",
  9100. height: math.unit(1, "meter")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(Math.E, "meters"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Macro",
  9109. height: math.unit(20, "meters")
  9110. },
  9111. {
  9112. name: "Macro+",
  9113. height: math.unit(400, "meters")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(7, "feet"),
  9122. weight: math.unit(489, "lbs"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/reece-silvermane/front.svg",
  9126. bottom: 0.02,
  9127. extra: 1
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(1.5, "miles"),
  9135. default: true
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(6, "feet"),
  9144. weight: math.unit(78, "kg"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/kane/front.svg",
  9148. extra: 978 / 899
  9149. }
  9150. },
  9151. back: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(78, "kg"),
  9154. name: "Back",
  9155. image: {
  9156. source: "./media/characters/kane/back.svg",
  9157. extra: 1966/1800,
  9158. bottom: 0/1966
  9159. }
  9160. },
  9161. head: {
  9162. height: math.unit(1.4, "feet"),
  9163. name: "Head",
  9164. image: {
  9165. source: "./media/characters/kane/head.svg"
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(2.1, "m"),
  9173. },
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(1, "km"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(200, "kg"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/tegon/front.svg",
  9190. bottom: 0.01,
  9191. extra: 1
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(1, "inch")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(6 + 3 / 12, "feet"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(300, "feet")
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(69, "miles")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9217. {
  9218. side: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(2304, "lbs"),
  9221. name: "Side",
  9222. image: {
  9223. source: "./media/characters/arcturax/side.svg",
  9224. extra: 790 / 376,
  9225. bottom: 0.01
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(2, "inch")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(6, "feet")
  9237. },
  9238. {
  9239. name: "Macro",
  9240. height: math.unit(39, "feet"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(7, "miles")
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9251. {
  9252. front: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(50, "lbs"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/sentri/front.svg",
  9258. extra: 1750 / 1570,
  9259. bottom: 0.025
  9260. }
  9261. },
  9262. frontAlt: {
  9263. height: math.unit(6, "feet"),
  9264. weight: math.unit(50, "lbs"),
  9265. name: "Front (Alt)",
  9266. image: {
  9267. source: "./media/characters/sentri/front-alt.svg",
  9268. extra: 1750 / 1570,
  9269. bottom: 0.025
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(15, "feet"),
  9277. default: true
  9278. },
  9279. {
  9280. name: "Macro",
  9281. height: math.unit(2500, "feet")
  9282. }
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(5 + 8 / 12, "feet"),
  9290. weight: math.unit(130, "lbs"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/corvin/front.svg",
  9294. extra: 1803 / 1629
  9295. }
  9296. },
  9297. frontShirt: {
  9298. height: math.unit(5 + 8 / 12, "feet"),
  9299. weight: math.unit(130, "lbs"),
  9300. name: "Front (Shirt)",
  9301. image: {
  9302. source: "./media/characters/corvin/front-shirt.svg",
  9303. extra: 1803 / 1629
  9304. }
  9305. },
  9306. frontPoncho: {
  9307. height: math.unit(5 + 8 / 12, "feet"),
  9308. weight: math.unit(130, "lbs"),
  9309. name: "Front (Poncho)",
  9310. image: {
  9311. source: "./media/characters/corvin/front-poncho.svg",
  9312. extra: 1803 / 1629
  9313. }
  9314. },
  9315. side: {
  9316. height: math.unit(5 + 8 / 12, "feet"),
  9317. weight: math.unit(130, "lbs"),
  9318. name: "Side",
  9319. image: {
  9320. source: "./media/characters/corvin/side.svg",
  9321. extra: 1012 / 945
  9322. }
  9323. },
  9324. back: {
  9325. height: math.unit(5 + 8 / 12, "feet"),
  9326. weight: math.unit(130, "lbs"),
  9327. name: "Back",
  9328. image: {
  9329. source: "./media/characters/corvin/back.svg",
  9330. extra: 1803 / 1629
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Micro",
  9337. height: math.unit(3, "inches")
  9338. },
  9339. {
  9340. name: "Normal",
  9341. height: math.unit(5 + 8 / 12, "feet")
  9342. },
  9343. {
  9344. name: "Macro",
  9345. height: math.unit(300, "feet"),
  9346. default: true
  9347. },
  9348. {
  9349. name: "Megamacro",
  9350. height: math.unit(500, "miles")
  9351. }
  9352. ]
  9353. ))
  9354. characterMakers.push(() => makeCharacter(
  9355. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9356. {
  9357. front: {
  9358. height: math.unit(6, "feet"),
  9359. weight: math.unit(135, "lbs"),
  9360. name: "Front",
  9361. image: {
  9362. source: "./media/characters/q/front.svg",
  9363. extra: 854 / 752,
  9364. bottom: 0.005
  9365. }
  9366. },
  9367. back: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(130, "lbs"),
  9370. name: "Back",
  9371. image: {
  9372. source: "./media/characters/q/back.svg",
  9373. extra: 854 / 752
  9374. }
  9375. },
  9376. },
  9377. [
  9378. {
  9379. name: "Macro",
  9380. height: math.unit(90, "feet"),
  9381. default: true
  9382. },
  9383. {
  9384. name: "Extra Macro",
  9385. height: math.unit(300, "feet"),
  9386. },
  9387. {
  9388. name: "BIG WALF",
  9389. height: math.unit(750, "feet"),
  9390. },
  9391. ]
  9392. ))
  9393. characterMakers.push(() => makeCharacter(
  9394. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9395. {
  9396. front: {
  9397. height: math.unit(3, "feet"),
  9398. weight: math.unit(28, "lbs"),
  9399. name: "Front",
  9400. image: {
  9401. source: "./media/characters/citrine/front.svg"
  9402. }
  9403. }
  9404. },
  9405. [
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(3, "feet"),
  9409. default: true
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9415. {
  9416. front: {
  9417. height: math.unit(14, "feet"),
  9418. weight: math.unit(1450, "kg"),
  9419. preyCapacity: math.unit(15, "people"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/aura-starwind/front.svg",
  9423. extra: 1440/1327,
  9424. bottom: 11/1451
  9425. }
  9426. },
  9427. side: {
  9428. height: math.unit(14, "feet"),
  9429. weight: math.unit(1450, "kg"),
  9430. preyCapacity: math.unit(15, "people"),
  9431. name: "Side",
  9432. image: {
  9433. source: "./media/characters/aura-starwind/side.svg",
  9434. extra: 1654 / 1497
  9435. }
  9436. },
  9437. taur: {
  9438. height: math.unit(18, "feet"),
  9439. weight: math.unit(5500, "kg"),
  9440. preyCapacity: math.unit(50, "people"),
  9441. name: "Taur",
  9442. image: {
  9443. source: "./media/characters/aura-starwind/taur.svg",
  9444. extra: 1760 / 1650
  9445. }
  9446. },
  9447. feral: {
  9448. height: math.unit(46, "feet"),
  9449. weight: math.unit(25000, "kg"),
  9450. preyCapacity: math.unit(120, "people"),
  9451. name: "Feral",
  9452. image: {
  9453. source: "./media/characters/aura-starwind/feral.svg"
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Normal",
  9460. height: math.unit(14, "feet"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "Macro",
  9465. height: math.unit(50, "meters")
  9466. },
  9467. {
  9468. name: "Megamacro",
  9469. height: math.unit(5000, "meters")
  9470. },
  9471. {
  9472. name: "Gigamacro",
  9473. height: math.unit(100000, "kilometers")
  9474. },
  9475. ]
  9476. ))
  9477. characterMakers.push(() => makeCharacter(
  9478. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9479. {
  9480. front: {
  9481. height: math.unit(2 + 7 / 12, "feet"),
  9482. weight: math.unit(32, "lbs"),
  9483. name: "Front",
  9484. image: {
  9485. source: "./media/characters/rivet/front.svg",
  9486. extra: 1716 / 1658,
  9487. bottom: 0.03
  9488. }
  9489. },
  9490. foot: {
  9491. height: math.unit(0.551, "feet"),
  9492. name: "Rivet's Foot",
  9493. image: {
  9494. source: "./media/characters/rivet/foot.svg"
  9495. },
  9496. rename: true
  9497. }
  9498. },
  9499. [
  9500. {
  9501. name: "Micro",
  9502. height: math.unit(1.5, "inches"),
  9503. },
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(2 + 7 / 12, "feet"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Macro",
  9511. height: math.unit(85, "feet")
  9512. },
  9513. {
  9514. name: "Megamacro",
  9515. height: math.unit(2.2, "km")
  9516. }
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(5 + 9 / 12, "feet"),
  9524. weight: math.unit(150, "lbs"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/coffee/front.svg",
  9528. extra: 946/880,
  9529. bottom: 66/1012
  9530. }
  9531. },
  9532. foot: {
  9533. height: math.unit(1.29, "feet"),
  9534. name: "Foot",
  9535. image: {
  9536. source: "./media/characters/coffee/foot.svg"
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Micro",
  9543. height: math.unit(2, "inches"),
  9544. },
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(5 + 9 / 12, "feet"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(800, "feet")
  9553. },
  9554. {
  9555. name: "Megamacro",
  9556. height: math.unit(25, "miles")
  9557. }
  9558. ]
  9559. ))
  9560. characterMakers.push(() => makeCharacter(
  9561. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9562. {
  9563. front: {
  9564. height: math.unit(6, "feet"),
  9565. weight: math.unit(200, "lbs"),
  9566. name: "Front",
  9567. image: {
  9568. source: "./media/characters/chari-gal/front.svg",
  9569. extra: 735/649,
  9570. bottom: 55/790
  9571. },
  9572. form: "normal",
  9573. default: true
  9574. },
  9575. back: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(200, "lb"),
  9578. name: "Back",
  9579. image: {
  9580. source: "./media/characters/chari-gal/back.svg",
  9581. extra: 762/666,
  9582. bottom: 31/793
  9583. },
  9584. form: "normal"
  9585. },
  9586. mouth: {
  9587. height: math.unit(1.35, "feet"),
  9588. name: "Mouth",
  9589. image: {
  9590. source: "./media/characters/chari-gal/mouth.svg"
  9591. },
  9592. form: "normal"
  9593. },
  9594. gigantamax: {
  9595. height: math.unit(6 * 16, "feet"),
  9596. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9597. name: "Gigantamax",
  9598. image: {
  9599. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9600. extra: 1507/1149,
  9601. bottom: 254/1761
  9602. },
  9603. form: "gigantamax",
  9604. default: true
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(5 + 7 / 12, "feet"),
  9611. form: "normal",
  9612. },
  9613. {
  9614. name: "Macro",
  9615. height: math.unit(200, "feet"),
  9616. default: true,
  9617. form: "normal"
  9618. },
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9622. form: "gigantamax",
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(16 * 200, "feet"),
  9627. default: true,
  9628. form: "gigantamax"
  9629. },
  9630. ],
  9631. {
  9632. "normal": {
  9633. name: "Normal",
  9634. default: true
  9635. },
  9636. "gigantamax": {
  9637. name: "Gigantamax",
  9638. },
  9639. }
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9643. {
  9644. front: {
  9645. height: math.unit(6, "feet"),
  9646. weight: math.unit(150, "lbs"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/nova/front.svg",
  9650. extra: 5000 / 4722,
  9651. bottom: 0.02
  9652. }
  9653. }
  9654. },
  9655. [
  9656. {
  9657. name: "Micro-",
  9658. height: math.unit(0.8, "inches")
  9659. },
  9660. {
  9661. name: "Micro",
  9662. height: math.unit(2, "inches"),
  9663. default: true
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9669. {
  9670. koboldFront: {
  9671. height: math.unit(3 + 1 / 12, "feet"),
  9672. weight: math.unit(21.7, "lbs"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/argent/kobold-front.svg",
  9676. extra: 1471 / 1331,
  9677. bottom: 100.8 / 1575.5
  9678. },
  9679. form: "kobold",
  9680. default: true
  9681. },
  9682. dragonFront: {
  9683. height: math.unit(75, "inches"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/argent/dragon-front.svg",
  9687. extra: 1389/1248,
  9688. bottom: 54/1443
  9689. },
  9690. form: "dragon",
  9691. },
  9692. dragonBack: {
  9693. height: math.unit(75, "inches"),
  9694. name: "Back",
  9695. image: {
  9696. source: "./media/characters/argent/dragon-back.svg",
  9697. extra: 1399/1271,
  9698. bottom: 23/1422
  9699. },
  9700. form: "dragon",
  9701. },
  9702. dragonDressed: {
  9703. height: math.unit(75, "inches"),
  9704. name: "Dressed",
  9705. image: {
  9706. source: "./media/characters/argent/dragon-dressed.svg",
  9707. extra: 1350/1215,
  9708. bottom: 26/1376
  9709. },
  9710. form: "dragon"
  9711. },
  9712. dragonHead: {
  9713. height: math.unit(23.5, "inches"),
  9714. name: "Head",
  9715. image: {
  9716. source: "./media/characters/argent/dragon-head.svg"
  9717. },
  9718. form: "dragon",
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Micro",
  9724. height: math.unit(2, "inches"),
  9725. form: "kobold",
  9726. },
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(3 + 1 / 12, "feet"),
  9730. form: "kobold",
  9731. default: true
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(120, "feet"),
  9736. form: "kobold",
  9737. },
  9738. {
  9739. name: "Speck",
  9740. height: math.unit(1, "mm"),
  9741. form: "dragon",
  9742. },
  9743. {
  9744. name: "Tiny",
  9745. height: math.unit(1, "cm"),
  9746. form: "dragon",
  9747. },
  9748. {
  9749. name: "Micro",
  9750. height: math.unit(5, "cm"),
  9751. form: "dragon",
  9752. },
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(75, "inches"),
  9756. form: "dragon",
  9757. default: true
  9758. },
  9759. {
  9760. name: "Extra Tall",
  9761. height: math.unit(9, "feet"),
  9762. form: "dragon",
  9763. },
  9764. {
  9765. name: "Inconvenient",
  9766. height: math.unit(5, "meters"),
  9767. form: "dragon",
  9768. },
  9769. {
  9770. name: "Macro",
  9771. height: math.unit(70, "meters"),
  9772. form: "dragon",
  9773. },
  9774. {
  9775. name: "Macro+",
  9776. height: math.unit(250, "meters"),
  9777. form: "dragon",
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(20, "km"),
  9782. form: "dragon",
  9783. },
  9784. {
  9785. name: "Mountainous",
  9786. height: math.unit(100, "km"),
  9787. form: "dragon",
  9788. },
  9789. {
  9790. name: "Continental",
  9791. height: math.unit(2, "megameters"),
  9792. form: "dragon",
  9793. },
  9794. {
  9795. name: "Too Big",
  9796. height: math.unit(900, "megameters"),
  9797. form: "dragon",
  9798. },
  9799. ],
  9800. {
  9801. "kobold": {
  9802. name: "Kobold",
  9803. default: true
  9804. },
  9805. "dragon": {
  9806. name: "Dragon",
  9807. },
  9808. }
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9812. {
  9813. lamp: {
  9814. height: math.unit(7 * 1559 / 989, "feet"),
  9815. name: "Magic Lamp",
  9816. image: {
  9817. source: "./media/characters/mira-al-cul/lamp.svg",
  9818. extra: 1617 / 1559
  9819. }
  9820. },
  9821. front: {
  9822. height: math.unit(7, "feet"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/mira-al-cul/front.svg",
  9826. extra: 1044 / 990
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Heavily Restricted",
  9833. height: math.unit(7 * 1559 / 989, "feet")
  9834. },
  9835. {
  9836. name: "Freshly Freed",
  9837. height: math.unit(50 * 1559 / 989, "feet")
  9838. },
  9839. {
  9840. name: "World Encompassing",
  9841. height: math.unit(10000 * 1559 / 989, "miles")
  9842. },
  9843. {
  9844. name: "Galactic",
  9845. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9846. },
  9847. {
  9848. name: "Palmed Universe",
  9849. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9850. default: true
  9851. },
  9852. {
  9853. name: "Multiversal Matriarch",
  9854. height: math.unit(8.87e10, "yottameters")
  9855. },
  9856. {
  9857. name: "Void Mother",
  9858. height: math.unit(3.14e110, "yottaparsecs")
  9859. },
  9860. {
  9861. name: "Toying with Transcendence",
  9862. height: math.unit(1e307, "meters")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9868. {
  9869. front: {
  9870. height: math.unit(17 + 1 / 12, "feet"),
  9871. weight: math.unit(476.2 * 5, "lbs"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/kuro-shi-uchū/front.svg",
  9875. extra: 2329 / 1835,
  9876. bottom: 0.02
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Micro",
  9883. height: math.unit(2, "inches")
  9884. },
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(12, "meters")
  9888. },
  9889. {
  9890. name: "Planetary",
  9891. height: math.unit(0.00929, "AU"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Universal",
  9896. height: math.unit(20, "gigaparsecs")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(5 + 2 / 12, "feet"),
  9905. weight: math.unit(120, "lbs"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/katherine/front.svg",
  9909. extra: 2075 / 1969
  9910. }
  9911. },
  9912. dress: {
  9913. height: math.unit(5 + 2 / 12, "feet"),
  9914. weight: math.unit(120, "lbs"),
  9915. name: "Dress",
  9916. image: {
  9917. source: "./media/characters/katherine/dress.svg",
  9918. extra: 2258 / 2064
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(1, "inches"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(5 + 2 / 12, "feet")
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(100, "meters")
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(80, "miles")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(7 + 8 / 12, "feet"),
  9947. weight: math.unit(250, "lbs"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/yevis/front.svg",
  9951. extra: 1938 / 1755
  9952. }
  9953. }
  9954. },
  9955. [
  9956. {
  9957. name: "Mortal",
  9958. height: math.unit(7 + 8 / 12, "feet")
  9959. },
  9960. {
  9961. name: "Battle",
  9962. height: math.unit(25 + 11 / 12, "feet")
  9963. },
  9964. {
  9965. name: "Wrath",
  9966. height: math.unit(1654 + 11 / 12, "feet")
  9967. },
  9968. {
  9969. name: "Planet Destroyer",
  9970. height: math.unit(12000, "miles")
  9971. },
  9972. {
  9973. name: "Galaxy Conqueror",
  9974. height: math.unit(1.45, "zettameters"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Universal War",
  9979. height: math.unit(184, "gigaparsecs")
  9980. },
  9981. {
  9982. name: "Eternity War",
  9983. height: math.unit(1.98e55, "yottaparsecs")
  9984. },
  9985. ]
  9986. ))
  9987. characterMakers.push(() => makeCharacter(
  9988. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9989. {
  9990. front: {
  9991. height: math.unit(5 + 8 / 12, "feet"),
  9992. weight: math.unit(63, "kg"),
  9993. name: "Front",
  9994. image: {
  9995. source: "./media/characters/xavier/front.svg",
  9996. extra: 944 / 883
  9997. }
  9998. },
  9999. frontStretch: {
  10000. height: math.unit(5 + 8 / 12, "feet"),
  10001. weight: math.unit(63, "kg"),
  10002. name: "Stretching",
  10003. image: {
  10004. source: "./media/characters/xavier/front-stretch.svg",
  10005. extra: 962 / 820
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(5 + 8 / 12, "feet")
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(100, "meters"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "McLargeHuge",
  10021. height: math.unit(10, "miles")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(5 + 5 / 12, "feet"),
  10030. weight: math.unit(150, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/joshii/front.svg",
  10034. extra: 765 / 653,
  10035. bottom: 51 / 816
  10036. }
  10037. },
  10038. foot: {
  10039. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10040. name: "Foot",
  10041. image: {
  10042. source: "./media/characters/joshii/foot.svg"
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Micro",
  10049. height: math.unit(2, "inches")
  10050. },
  10051. {
  10052. name: "Normal",
  10053. height: math.unit(5 + 5 / 12, "feet")
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(785, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Megamacro",
  10062. height: math.unit(24.5, "miles")
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(6, "feet"),
  10071. weight: math.unit(150, "lb"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/goddess-elizabeth/front.svg",
  10075. extra: 1800 / 1525,
  10076. bottom: 0.005
  10077. }
  10078. },
  10079. foot: {
  10080. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10081. name: "Foot",
  10082. image: {
  10083. source: "./media/characters/goddess-elizabeth/foot.svg"
  10084. }
  10085. },
  10086. mouth: {
  10087. height: math.unit(6, "feet"),
  10088. name: "Mouth",
  10089. image: {
  10090. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Micro",
  10097. height: math.unit(12, "feet")
  10098. },
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(80, "miles"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(15000, "parsecs")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(5 + 9 / 12, "feet"),
  10115. weight: math.unit(144, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/kara/front.svg"
  10119. }
  10120. },
  10121. feet: {
  10122. height: math.unit(6 / 6.765, "feet"),
  10123. name: "Kara's Feet",
  10124. rename: true,
  10125. image: {
  10126. source: "./media/characters/kara/feet.svg"
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(5 + 9 / 12, "feet")
  10134. },
  10135. {
  10136. name: "Macro",
  10137. height: math.unit(174, "feet"),
  10138. default: true
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(18, "feet"),
  10147. weight: math.unit(4050, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/tyrone/front.svg",
  10151. extra: 2405 / 2270,
  10152. bottom: 182 / 2587
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(18, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(300, "feet")
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(15, "km")
  10169. },
  10170. {
  10171. name: "Gigamacro",
  10172. height: math.unit(500, "km")
  10173. },
  10174. {
  10175. name: "Teramacro",
  10176. height: math.unit(0.5, "gigameters")
  10177. },
  10178. {
  10179. name: "Omnimacro",
  10180. height: math.unit(1e252, "yottauniverse")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(7 + 8 / 12, "feet"),
  10189. weight: math.unit(120, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/danny/front.svg",
  10193. extra: 1490 / 1350
  10194. }
  10195. },
  10196. back: {
  10197. height: math.unit(7 + 8 / 12, "feet"),
  10198. weight: math.unit(120, "lb"),
  10199. name: "Back",
  10200. image: {
  10201. source: "./media/characters/danny/back.svg",
  10202. extra: 1490 / 1350
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(7 + 8 / 12, "feet"),
  10210. default: true
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(3.5, "inches"),
  10219. weight: math.unit(19, "grams"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/mallow/front.svg",
  10223. extra: 471 / 431
  10224. }
  10225. },
  10226. back: {
  10227. height: math.unit(3.5, "inches"),
  10228. weight: math.unit(19, "grams"),
  10229. name: "Back",
  10230. image: {
  10231. source: "./media/characters/mallow/back.svg",
  10232. extra: 471 / 431
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(3.5, "inches"),
  10240. default: true
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(9, "feet"),
  10249. weight: math.unit(230, "kg"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/starry-aqua/front.svg"
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(9, "feet"),
  10257. weight: math.unit(230, "kg"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/starry-aqua/back.svg"
  10261. }
  10262. },
  10263. hand: {
  10264. height: math.unit(9 * 0.1168, "feet"),
  10265. name: "Hand",
  10266. image: {
  10267. source: "./media/characters/starry-aqua/hand.svg"
  10268. }
  10269. },
  10270. foot: {
  10271. height: math.unit(9 * 0.18, "feet"),
  10272. name: "Foot",
  10273. image: {
  10274. source: "./media/characters/starry-aqua/foot.svg"
  10275. }
  10276. }
  10277. },
  10278. [
  10279. {
  10280. name: "Micro",
  10281. height: math.unit(3, "inches")
  10282. },
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(9, "feet")
  10286. },
  10287. {
  10288. name: "Macro",
  10289. height: math.unit(300, "feet"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Megamacro",
  10294. height: math.unit(3200, "feet")
  10295. }
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(15, "feet"),
  10303. weight: math.unit(5026, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/luka-towers/front.svg",
  10307. extra: 1269/1133,
  10308. bottom: 51/1320
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(15, "feet"),
  10316. default: true
  10317. },
  10318. {
  10319. name: "Minimacro",
  10320. height: math.unit(25, "feet")
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(320, "feet")
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(35000, "feet")
  10329. },
  10330. {
  10331. name: "Gigamacro",
  10332. height: math.unit(4000, "miles")
  10333. },
  10334. {
  10335. name: "Teramacro",
  10336. height: math.unit(15000, "miles")
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(150, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/natalie-nightring/front.svg",
  10349. extra: 1,
  10350. bottom: 0.06
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Uh Oh",
  10357. height: math.unit(0.1, "mm")
  10358. },
  10359. {
  10360. name: "Small",
  10361. height: math.unit(3, "inches")
  10362. },
  10363. {
  10364. name: "Human Scale",
  10365. height: math.unit(6, "feet")
  10366. },
  10367. {
  10368. name: "Librarian",
  10369. height: math.unit(50, "feet"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Immense",
  10374. height: math.unit(200, "miles")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(180, "lbs"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/danni-rosie/front.svg",
  10387. extra: 1260 / 1128,
  10388. bottom: 0.022
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Micro",
  10395. height: math.unit(2, "inches"),
  10396. default: true
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(5 + 9 / 12, "feet"),
  10405. weight: math.unit(220, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/samantha-kruse/front.svg",
  10409. extra: (985 / 935),
  10410. bottom: 0.03
  10411. }
  10412. },
  10413. frontUndressed: {
  10414. height: math.unit(5 + 9 / 12, "feet"),
  10415. weight: math.unit(220, "lb"),
  10416. name: "Front (Undressed)",
  10417. image: {
  10418. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10419. extra: (973 / 923),
  10420. bottom: 0.025
  10421. }
  10422. },
  10423. fat: {
  10424. height: math.unit(5 + 9 / 12, "feet"),
  10425. weight: math.unit(900, "lb"),
  10426. name: "Front (Fat)",
  10427. image: {
  10428. source: "./media/characters/samantha-kruse/fat.svg",
  10429. extra: 2688 / 2561
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(5 + 9 / 12, "feet"),
  10437. default: true
  10438. }
  10439. ]
  10440. ))
  10441. characterMakers.push(() => makeCharacter(
  10442. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10443. {
  10444. back: {
  10445. height: math.unit(5 + 4 / 12, "feet"),
  10446. weight: math.unit(4963, "lb"),
  10447. name: "Back",
  10448. image: {
  10449. source: "./media/characters/amelia-rosie/back.svg",
  10450. extra: 1113 / 963,
  10451. bottom: 0.01
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Level 0",
  10458. height: math.unit(5 + 4 / 12, "feet")
  10459. },
  10460. {
  10461. name: "Level 1",
  10462. height: math.unit(164597, "feet"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Level 2",
  10467. height: math.unit(956243, "miles")
  10468. },
  10469. {
  10470. name: "Level 3",
  10471. height: math.unit(29421709423, "miles")
  10472. },
  10473. {
  10474. name: "Level 4",
  10475. height: math.unit(154, "lightyears")
  10476. },
  10477. {
  10478. name: "Level 5",
  10479. height: math.unit(4738272, "lightyears")
  10480. },
  10481. {
  10482. name: "Level 6",
  10483. height: math.unit(145787152896, "lightyears")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(5 + 11 / 12, "feet"),
  10492. weight: math.unit(65, "kg"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/rook-kitara/front.svg",
  10496. extra: 1347 / 1274,
  10497. bottom: 0.005
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Totally Unfair",
  10504. height: math.unit(1.8, "mm")
  10505. },
  10506. {
  10507. name: "Lap Rookie",
  10508. height: math.unit(1.4, "feet")
  10509. },
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(5 + 11 / 12, "feet"),
  10513. default: true
  10514. },
  10515. {
  10516. name: "How Did This Happen",
  10517. height: math.unit(80, "miles")
  10518. }
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(7, "feet"),
  10526. weight: math.unit(300, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/pisces/front.svg",
  10530. extra: 2255 / 2115,
  10531. bottom: 0.03
  10532. }
  10533. },
  10534. back: {
  10535. height: math.unit(7, "feet"),
  10536. weight: math.unit(300, "lb"),
  10537. name: "Back",
  10538. image: {
  10539. source: "./media/characters/pisces/back.svg",
  10540. extra: 2146 / 2055,
  10541. bottom: 0.04
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(7, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Swimming Pool",
  10553. height: math.unit(12.2, "meters")
  10554. },
  10555. {
  10556. name: "Olympic Swimming Pool",
  10557. height: math.unit(56.3, "meters")
  10558. },
  10559. {
  10560. name: "Lake Superior",
  10561. height: math.unit(93900, "meters")
  10562. },
  10563. {
  10564. name: "Mediterranean Sea",
  10565. height: math.unit(644457, "meters")
  10566. },
  10567. {
  10568. name: "World's Oceans",
  10569. height: math.unit(4567491, "meters")
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(2.3, "meters"),
  10578. weight: math.unit(120, "kg"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/zelas/front.svg"
  10582. }
  10583. },
  10584. side: {
  10585. height: math.unit(2.3, "meters"),
  10586. weight: math.unit(120, "kg"),
  10587. name: "Side",
  10588. image: {
  10589. source: "./media/characters/zelas/side.svg"
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(2.3, "meters"),
  10594. weight: math.unit(120, "kg"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/zelas/back.svg"
  10598. }
  10599. },
  10600. foot: {
  10601. height: math.unit(1.116, "feet"),
  10602. name: "Foot",
  10603. image: {
  10604. source: "./media/characters/zelas/foot.svg"
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Normal",
  10611. height: math.unit(2.3, "meters")
  10612. },
  10613. {
  10614. name: "Macro",
  10615. height: math.unit(30, "meters"),
  10616. default: true
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10622. {
  10623. front: {
  10624. height: math.unit(1, "inch"),
  10625. weight: math.unit(0.21, "grams"),
  10626. name: "Front",
  10627. image: {
  10628. source: "./media/characters/talbot/front.svg",
  10629. extra: 594 / 544
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Micro",
  10636. height: math.unit(1, "inch"),
  10637. default: true
  10638. },
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10643. {
  10644. front: {
  10645. height: math.unit(3 + 3 / 12, "feet"),
  10646. weight: math.unit(51.8, "lb"),
  10647. name: "Front",
  10648. image: {
  10649. source: "./media/characters/fliss/front.svg",
  10650. extra: 840 / 640
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Teeny Tiny",
  10657. height: math.unit(1, "mm")
  10658. },
  10659. {
  10660. name: "Small",
  10661. height: math.unit(1, "inch"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Standard Sylveon",
  10666. height: math.unit(3 + 3 / 12, "feet")
  10667. },
  10668. {
  10669. name: "Large Nuisance",
  10670. height: math.unit(33, "feet")
  10671. },
  10672. {
  10673. name: "City Filler",
  10674. height: math.unit(3000, "feet")
  10675. },
  10676. {
  10677. name: "New Horizon",
  10678. height: math.unit(6000, "miles")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(5, "cm"),
  10687. weight: math.unit(1.94, "g"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/fleta/front.svg",
  10691. extra: 835 / 803
  10692. }
  10693. },
  10694. back: {
  10695. height: math.unit(5, "cm"),
  10696. weight: math.unit(1.94, "g"),
  10697. name: "Back",
  10698. image: {
  10699. source: "./media/characters/fleta/back.svg",
  10700. extra: 835 / 803
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(5, "cm"),
  10708. default: true
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(225, "lb"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/dominic/front.svg",
  10721. extra: 1770 / 1620,
  10722. bottom: 0.025
  10723. }
  10724. },
  10725. back: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(225, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/dominic/back.svg",
  10731. extra: 1745 / 1620,
  10732. bottom: 0.065
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Nano",
  10739. height: math.unit(0.1, "mm")
  10740. },
  10741. {
  10742. name: "Micro-",
  10743. height: math.unit(1, "mm")
  10744. },
  10745. {
  10746. name: "Micro",
  10747. height: math.unit(4, "inches")
  10748. },
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(6 + 4 / 12, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Macro",
  10756. height: math.unit(115, "feet")
  10757. },
  10758. {
  10759. name: "Macro+",
  10760. height: math.unit(955, "feet")
  10761. },
  10762. {
  10763. name: "Megamacro",
  10764. height: math.unit(8990, "feet")
  10765. },
  10766. {
  10767. name: "Gigmacro",
  10768. height: math.unit(9310, "miles")
  10769. },
  10770. {
  10771. name: "Teramacro",
  10772. height: math.unit(1567005010, "miles")
  10773. },
  10774. {
  10775. name: "Examacro",
  10776. height: math.unit(1425, "parsecs")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(400, "feet"),
  10785. weight: math.unit(44444444, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/major-colonel/front.svg"
  10789. }
  10790. },
  10791. back: {
  10792. height: math.unit(400, "feet"),
  10793. weight: math.unit(44444444, "lb"),
  10794. name: "Back",
  10795. image: {
  10796. source: "./media/characters/major-colonel/back.svg"
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Macro",
  10803. height: math.unit(400, "feet"),
  10804. default: true
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10810. {
  10811. catFront: {
  10812. height: math.unit(6, "feet"),
  10813. weight: math.unit(120, "lb"),
  10814. name: "Front (Cat Side)",
  10815. image: {
  10816. source: "./media/characters/axel-lycan/cat-front.svg",
  10817. extra: 430 / 402,
  10818. bottom: 43 / 472.35
  10819. }
  10820. },
  10821. catBack: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(120, "lb"),
  10824. name: "Back (Cat Side)",
  10825. image: {
  10826. source: "./media/characters/axel-lycan/cat-back.svg",
  10827. extra: 447 / 419,
  10828. bottom: 23.3 / 469
  10829. }
  10830. },
  10831. wolfFront: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(120, "lb"),
  10834. name: "Front (Wolf Side)",
  10835. image: {
  10836. source: "./media/characters/axel-lycan/wolf-front.svg",
  10837. extra: 485 / 456,
  10838. bottom: 19 / 504
  10839. }
  10840. },
  10841. wolfBack: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(120, "lb"),
  10844. name: "Back (Wolf Side)",
  10845. image: {
  10846. source: "./media/characters/axel-lycan/wolf-back.svg",
  10847. extra: 475 / 438,
  10848. bottom: 39.2 / 514
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Macro",
  10855. height: math.unit(1, "km"),
  10856. default: true
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(5 + 9 / 12, "feet"),
  10865. weight: math.unit(175, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/vanrel-hyena/front.svg",
  10869. extra: 1086 / 1010,
  10870. bottom: 0.04
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(5 + 9 / 12, "feet"),
  10878. default: true
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(6, "feet"),
  10887. weight: math.unit(103, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/abbott-absol/front.svg",
  10891. extra: 2010 / 1842
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Megamicro",
  10898. height: math.unit(0.1, "mm")
  10899. },
  10900. {
  10901. name: "Micro",
  10902. height: math.unit(1, "inch")
  10903. },
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(6, "feet"),
  10907. default: true
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(264, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/hector/front.svg",
  10920. extra: 2280 / 2130,
  10921. bottom: 0.07
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(12.25, "foot"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(160, "feet")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/sal/front.svg",
  10946. extra: 1846 / 1699,
  10947. bottom: 0.04
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Megamacro",
  10954. height: math.unit(10, "miles"),
  10955. default: true
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10961. {
  10962. front: {
  10963. height: math.unit(3, "meters"),
  10964. weight: math.unit(450, "kg"),
  10965. name: "front",
  10966. image: {
  10967. source: "./media/characters/ranger/front.svg",
  10968. extra: 2401 / 2243,
  10969. bottom: 0.05
  10970. }
  10971. },
  10972. },
  10973. [
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(3, "meters"),
  10977. default: true
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(14, "feet"),
  10986. weight: math.unit(800, "kg"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/theresa/front.svg",
  10990. extra: 3575 / 3346,
  10991. bottom: 0.03
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Normal",
  10998. height: math.unit(14, "feet"),
  10999. default: true
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11005. {
  11006. front: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(3, "kg"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/ine/front.svg",
  11012. extra: 678 / 539,
  11013. bottom: 0.023
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(2.265, "feet"),
  11021. default: true
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(5, "feet"),
  11030. weight: math.unit(30, "kg"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/vial/front.svg",
  11034. extra: 1365 / 1277,
  11035. bottom: 0.04
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Normal",
  11042. height: math.unit(5, "feet"),
  11043. default: true
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11049. {
  11050. side: {
  11051. height: math.unit(3.4, "meters"),
  11052. weight: math.unit(1000, "lb"),
  11053. name: "Side",
  11054. image: {
  11055. source: "./media/characters/rovoska/side.svg",
  11056. extra: 4403 / 1515
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(3.4, "meters"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(8, "feet"),
  11073. weight: math.unit(315, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/gunner-rotthbauer/front.svg"
  11077. }
  11078. },
  11079. back: {
  11080. height: math.unit(8, "feet"),
  11081. weight: math.unit(315, "lb"),
  11082. name: "Back",
  11083. image: {
  11084. source: "./media/characters/gunner-rotthbauer/back.svg"
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Micro",
  11091. height: math.unit(3.5, "inches")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(8, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(250, "feet")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(1, "AU")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(5 + 5 / 12, "feet"),
  11113. weight: math.unit(140, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/allatia/front.svg",
  11117. extra: 1227 / 1180,
  11118. bottom: 0.027
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(5 + 5 / 12, "feet")
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(250, "feet"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Megamacro",
  11134. height: math.unit(8, "miles")
  11135. }
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(120, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/tene/front.svg",
  11147. extra: 814/750,
  11148. bottom: 36/850
  11149. }
  11150. },
  11151. stomping: {
  11152. height: math.unit(2.025, "meters"),
  11153. weight: math.unit(120, "lb"),
  11154. name: "Stomping",
  11155. image: {
  11156. source: "./media/characters/tene/stomping.svg",
  11157. extra: 885/821,
  11158. bottom: 15/900
  11159. }
  11160. },
  11161. sitting: {
  11162. height: math.unit(1, "meter"),
  11163. weight: math.unit(120, "lb"),
  11164. name: "Sitting",
  11165. image: {
  11166. source: "./media/characters/tene/sitting.svg",
  11167. extra: 396/366,
  11168. bottom: 79/475
  11169. }
  11170. },
  11171. smiling: {
  11172. height: math.unit(1.2, "feet"),
  11173. name: "Smiling",
  11174. image: {
  11175. source: "./media/characters/tene/smiling.svg",
  11176. extra: 1364/1071,
  11177. bottom: 0/1364
  11178. }
  11179. },
  11180. smug: {
  11181. height: math.unit(1.3, "feet"),
  11182. name: "Smug",
  11183. image: {
  11184. source: "./media/characters/tene/smug.svg",
  11185. extra: 1323/1082,
  11186. bottom: 0/1323
  11187. }
  11188. },
  11189. feral: {
  11190. height: math.unit(3.9, "feet"),
  11191. weight: math.unit(250, "lb"),
  11192. name: "Feral",
  11193. image: {
  11194. source: "./media/characters/tene/feral.svg",
  11195. extra: 717 / 458,
  11196. bottom: 0.179
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(6, "feet")
  11204. },
  11205. {
  11206. name: "Macro",
  11207. height: math.unit(300, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(5, "miles")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11218. {
  11219. side: {
  11220. height: math.unit(6, "feet"),
  11221. name: "Side",
  11222. image: {
  11223. source: "./media/characters/evander/side.svg",
  11224. extra: 877 / 477
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(0.83, "meters"),
  11232. default: true
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(12, "feet"),
  11241. weight: math.unit(1000, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11245. extra: 1762 / 1611
  11246. }
  11247. },
  11248. back: {
  11249. height: math.unit(12, "feet"),
  11250. weight: math.unit(1000, "lb"),
  11251. name: "Back",
  11252. image: {
  11253. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11254. extra: 1762 / 1611
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(12, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Kaiju",
  11266. height: math.unit(150, "feet")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(150, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/zero-alurus/front.svg"
  11279. }
  11280. },
  11281. back: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(150, "lb"),
  11284. name: "Back",
  11285. image: {
  11286. source: "./media/characters/zero-alurus/back.svg"
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(5 + 10 / 12, "feet")
  11294. },
  11295. {
  11296. name: "Macro",
  11297. height: math.unit(60, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro+",
  11302. height: math.unit(450, "feet")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(200, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/mega-shi/front.svg",
  11315. extra: 1279 / 1250,
  11316. bottom: 0.02
  11317. }
  11318. },
  11319. back: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(200, "lb"),
  11322. name: "Back",
  11323. image: {
  11324. source: "./media/characters/mega-shi/back.svg",
  11325. extra: 1279 / 1250,
  11326. bottom: 0.02
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Micro",
  11333. height: math.unit(16 + 6 / 12, "feet")
  11334. },
  11335. {
  11336. name: "Third Dimension",
  11337. height: math.unit(40, "meters")
  11338. },
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(660, "feet"),
  11342. default: true
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(10, "miles")
  11347. },
  11348. {
  11349. name: "Planetary Launch",
  11350. height: math.unit(500, "miles")
  11351. },
  11352. {
  11353. name: "Interstellar",
  11354. height: math.unit(1e9, "miles")
  11355. },
  11356. {
  11357. name: "Leaving the Universe",
  11358. height: math.unit(1, "gigaparsec")
  11359. },
  11360. {
  11361. name: "Travelling Universes",
  11362. height: math.unit(30e15, "parsecs")
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11368. {
  11369. front: {
  11370. height: math.unit(5 + 4/12, "feet"),
  11371. weight: math.unit(120, "lb"),
  11372. name: "Front",
  11373. image: {
  11374. source: "./media/characters/odyssey/front.svg",
  11375. extra: 1747/1571,
  11376. bottom: 47/1794
  11377. }
  11378. },
  11379. side: {
  11380. height: math.unit(5.1, "feet"),
  11381. weight: math.unit(120, "lb"),
  11382. name: "Side",
  11383. image: {
  11384. source: "./media/characters/odyssey/side.svg",
  11385. extra: 1847/1619,
  11386. bottom: 47/1894
  11387. }
  11388. },
  11389. lounging: {
  11390. height: math.unit(1.464, "feet"),
  11391. weight: math.unit(120, "lb"),
  11392. name: "Lounging",
  11393. image: {
  11394. source: "./media/characters/odyssey/lounging.svg",
  11395. extra: 1235/837,
  11396. bottom: 551/1786
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(5 + 4 / 12, "feet")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(1, "km")
  11408. },
  11409. {
  11410. name: "Megamacro",
  11411. height: math.unit(3000, "km")
  11412. },
  11413. {
  11414. name: "Gigamacro",
  11415. height: math.unit(1, "AU"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Omniversal",
  11420. height: math.unit(100e14, "lightyears")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(5 + 10/12, "feet"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/mekuto/front.svg",
  11432. extra: 875/835,
  11433. bottom: 46/921
  11434. }
  11435. },
  11436. },
  11437. [
  11438. {
  11439. name: "Minimicro",
  11440. height: math.unit(0.2, "inches")
  11441. },
  11442. {
  11443. name: "Micro",
  11444. height: math.unit(1.5, "inches")
  11445. },
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(5 + 10 / 12, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Minimacro",
  11453. height: math.unit(17 + 9 / 12, "feet")
  11454. },
  11455. {
  11456. name: "Macro",
  11457. height: math.unit(177.5, "feet")
  11458. },
  11459. {
  11460. name: "Megamacro",
  11461. height: math.unit(152, "miles")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(6.5, "inches"),
  11470. weight: math.unit(13, "oz"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/dafydd-tomos/front.svg",
  11474. extra: 2990 / 2603,
  11475. bottom: 0.03
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Micro",
  11482. height: math.unit(6.5, "inches"),
  11483. default: true
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11489. {
  11490. front: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/splinter/front.svg",
  11496. extra: 2990 / 2882,
  11497. bottom: 0.04
  11498. }
  11499. },
  11500. back: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(150, "lb"),
  11503. name: "Back",
  11504. image: {
  11505. source: "./media/characters/splinter/back.svg",
  11506. extra: 2990 / 2882,
  11507. bottom: 0.04
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(6, "feet")
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(230, "meters"),
  11519. default: true
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11525. {
  11526. front: {
  11527. height: math.unit(4 + 10 / 12, "feet"),
  11528. weight: math.unit(480, "lb"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/snow-gabumon/front.svg",
  11532. extra: 1140 / 963,
  11533. bottom: 0.058
  11534. }
  11535. },
  11536. back: {
  11537. height: math.unit(4 + 10 / 12, "feet"),
  11538. weight: math.unit(480, "lb"),
  11539. name: "Back",
  11540. image: {
  11541. source: "./media/characters/snow-gabumon/back.svg",
  11542. extra: 1115 / 962,
  11543. bottom: 0.041
  11544. }
  11545. },
  11546. frontUndresed: {
  11547. height: math.unit(4 + 10 / 12, "feet"),
  11548. weight: math.unit(480, "lb"),
  11549. name: "Front (Undressed)",
  11550. image: {
  11551. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11552. extra: 1061 / 960,
  11553. bottom: 0.045
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Micro",
  11560. height: math.unit(1, "inch")
  11561. },
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(4 + 10 / 12, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Macro",
  11569. height: math.unit(200, "feet")
  11570. },
  11571. {
  11572. name: "Megamacro",
  11573. height: math.unit(120, "miles")
  11574. },
  11575. {
  11576. name: "Gigamacro",
  11577. height: math.unit(9800, "miles")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(1.7, "meters"),
  11586. weight: math.unit(140, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/moody/front.svg",
  11590. extra: 3226 / 3007,
  11591. bottom: 0.087
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Micro",
  11598. height: math.unit(1, "mm")
  11599. },
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(1.7, "meters"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(80, "meters")
  11608. },
  11609. {
  11610. name: "Macro+",
  11611. height: math.unit(500, "meters")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11617. {
  11618. front: {
  11619. height: math.unit(6, "feet"),
  11620. weight: math.unit(150, "lb"),
  11621. name: "Front",
  11622. image: {
  11623. source: "./media/characters/zyas/front.svg",
  11624. extra: 1180 / 1120,
  11625. bottom: 0.045
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(10, "feet"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Macro",
  11637. height: math.unit(500, "feet")
  11638. },
  11639. {
  11640. name: "Megamacro",
  11641. height: math.unit(5, "miles")
  11642. },
  11643. {
  11644. name: "Teramacro",
  11645. height: math.unit(150000, "miles")
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11651. {
  11652. front: {
  11653. height: math.unit(6, "feet"),
  11654. weight: math.unit(150, "lb"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/cuon/front.svg",
  11658. extra: 1390 / 1320,
  11659. bottom: 0.008
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Micro",
  11666. height: math.unit(3, "inches")
  11667. },
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(18 + 9 / 12, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(360, "feet")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(360, "miles")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(2.4, "meters"),
  11688. weight: math.unit(70, "kg"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/nyanuxk/front.svg",
  11692. extra: 1172 / 1084,
  11693. bottom: 0.065
  11694. }
  11695. },
  11696. side: {
  11697. height: math.unit(2.4, "meters"),
  11698. weight: math.unit(70, "kg"),
  11699. name: "Side",
  11700. image: {
  11701. source: "./media/characters/nyanuxk/side.svg",
  11702. extra: 1190 / 1132,
  11703. bottom: 0.007
  11704. }
  11705. },
  11706. back: {
  11707. height: math.unit(2.4, "meters"),
  11708. weight: math.unit(70, "kg"),
  11709. name: "Back",
  11710. image: {
  11711. source: "./media/characters/nyanuxk/back.svg",
  11712. extra: 1200 / 1141,
  11713. bottom: 0.015
  11714. }
  11715. },
  11716. foot: {
  11717. height: math.unit(0.52, "meters"),
  11718. name: "Foot",
  11719. image: {
  11720. source: "./media/characters/nyanuxk/foot.svg"
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(2, "cm")
  11728. },
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(2.4, "meters"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Smaller Macro",
  11736. height: math.unit(120, "meters")
  11737. },
  11738. {
  11739. name: "Bigger Macro",
  11740. height: math.unit(1.2, "km")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(15, "kilometers")
  11745. },
  11746. {
  11747. name: "Gigamacro",
  11748. height: math.unit(2000, "km")
  11749. },
  11750. {
  11751. name: "Teramacro",
  11752. height: math.unit(500000, "km")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11758. {
  11759. side: {
  11760. height: math.unit(6, "feet"),
  11761. name: "Side",
  11762. image: {
  11763. source: "./media/characters/ailbhe/side.svg",
  11764. extra: 757 / 464,
  11765. bottom: 0.041
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Normal",
  11772. height: math.unit(1.07, "meters"),
  11773. default: true
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11779. {
  11780. front: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(120, "kg"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/zevulfius/front.svg",
  11786. extra: 965 / 903
  11787. }
  11788. },
  11789. side: {
  11790. height: math.unit(6, "feet"),
  11791. weight: math.unit(120, "kg"),
  11792. name: "Side",
  11793. image: {
  11794. source: "./media/characters/zevulfius/side.svg",
  11795. extra: 939 / 900
  11796. }
  11797. },
  11798. back: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(120, "kg"),
  11801. name: "Back",
  11802. image: {
  11803. source: "./media/characters/zevulfius/back.svg",
  11804. extra: 918 / 854,
  11805. bottom: 0.005
  11806. }
  11807. },
  11808. foot: {
  11809. height: math.unit(6 / 3.72, "feet"),
  11810. name: "Foot",
  11811. image: {
  11812. source: "./media/characters/zevulfius/foot.svg"
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(750, "meters")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(20, "km"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Gigamacro",
  11828. height: math.unit(2000, "km")
  11829. },
  11830. {
  11831. name: "Teramacro",
  11832. height: math.unit(250000, "km")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(100, "feet"),
  11841. weight: math.unit(350, "kg"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/rikes/front.svg",
  11845. extra: 1565 / 1483,
  11846. bottom: 0.017
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Macro",
  11853. height: math.unit(100, "feet"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(8, "feet"),
  11863. weight: math.unit(356, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/adam-silver-mane/front.svg",
  11867. extra: 1036/937,
  11868. bottom: 63/1099
  11869. }
  11870. },
  11871. side: {
  11872. height: math.unit(8, "feet"),
  11873. weight: math.unit(356, "lb"),
  11874. name: "Side",
  11875. image: {
  11876. source: "./media/characters/adam-silver-mane/side.svg",
  11877. extra: 997/901,
  11878. bottom: 59/1056
  11879. }
  11880. },
  11881. frontNsfw: {
  11882. height: math.unit(8, "feet"),
  11883. weight: math.unit(356, "lb"),
  11884. name: "Front (NSFW)",
  11885. image: {
  11886. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11887. extra: 1036/937,
  11888. bottom: 63/1099
  11889. }
  11890. },
  11891. sideNsfw: {
  11892. height: math.unit(8, "feet"),
  11893. weight: math.unit(356, "lb"),
  11894. name: "Side (NSFW)",
  11895. image: {
  11896. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11897. extra: 997/901,
  11898. bottom: 59/1056
  11899. }
  11900. },
  11901. dick: {
  11902. height: math.unit(2.1, "feet"),
  11903. name: "Dick",
  11904. image: {
  11905. source: "./media/characters/adam-silver-mane/dick.svg"
  11906. }
  11907. },
  11908. taur: {
  11909. height: math.unit(16, "feet"),
  11910. weight: math.unit(1500, "kg"),
  11911. name: "Taur",
  11912. image: {
  11913. source: "./media/characters/adam-silver-mane/taur.svg",
  11914. extra: 1713 / 1571,
  11915. bottom: 0.01
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(8, "feet")
  11923. },
  11924. {
  11925. name: "Minimacro",
  11926. height: math.unit(80, "feet")
  11927. },
  11928. {
  11929. name: "MDA",
  11930. height: math.unit(80, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(800, "feet"),
  11935. default: true
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(8000, "feet")
  11940. },
  11941. {
  11942. name: "Gigamacro",
  11943. height: math.unit(800, "miles")
  11944. },
  11945. {
  11946. name: "Teramacro",
  11947. height: math.unit(80000, "miles")
  11948. },
  11949. {
  11950. name: "Celestial",
  11951. height: math.unit(8e6, "miles")
  11952. },
  11953. {
  11954. name: "Star Dragon",
  11955. height: math.unit(800000, "parsecs")
  11956. },
  11957. {
  11958. name: "Godly",
  11959. height: math.unit(800, "teraparsecs")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/ky'owin/front.svg",
  11972. extra: 3862/3053,
  11973. bottom: 74/3936
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Normal",
  11980. height: math.unit(6 + 8 / 12, "feet")
  11981. },
  11982. {
  11983. name: "Large",
  11984. height: math.unit(68, "feet")
  11985. },
  11986. {
  11987. name: "Macro",
  11988. height: math.unit(132, "feet")
  11989. },
  11990. {
  11991. name: "Macro+",
  11992. height: math.unit(340, "feet")
  11993. },
  11994. {
  11995. name: "Macro++",
  11996. height: math.unit(680, "feet"),
  11997. default: true
  11998. },
  11999. {
  12000. name: "Megamacro",
  12001. height: math.unit(1, "mile")
  12002. },
  12003. {
  12004. name: "Megamacro+",
  12005. height: math.unit(10, "miles")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(4, "feet"),
  12014. weight: math.unit(50, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/mal/front.svg",
  12018. extra: 785 / 724,
  12019. bottom: 0.07
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Micro",
  12026. height: math.unit(4, "inches")
  12027. },
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(4, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Macro",
  12035. height: math.unit(200, "feet")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(150, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/jordan-deware/front.svg",
  12048. extra: 1191 / 1012
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Nano",
  12055. height: math.unit(0.01, "mm")
  12056. },
  12057. {
  12058. name: "Minimicro",
  12059. height: math.unit(1, "mm")
  12060. },
  12061. {
  12062. name: "Micro",
  12063. height: math.unit(0.5, "inches")
  12064. },
  12065. {
  12066. name: "Normal",
  12067. height: math.unit(4, "feet"),
  12068. default: true
  12069. },
  12070. {
  12071. name: "Minimacro",
  12072. height: math.unit(40, "meters")
  12073. },
  12074. {
  12075. name: "Small Macro",
  12076. height: math.unit(400, "meters")
  12077. },
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(4, "miles")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(40, "miles")
  12085. },
  12086. {
  12087. name: "Megamacro+",
  12088. height: math.unit(400, "miles")
  12089. },
  12090. {
  12091. name: "Gigamacro",
  12092. height: math.unit(400000, "miles")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12098. {
  12099. side: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(150, "lb"),
  12102. name: "Side",
  12103. image: {
  12104. source: "./media/characters/kimiko/side.svg",
  12105. extra: 600 / 358
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(15, "feet"),
  12113. default: true
  12114. },
  12115. {
  12116. name: "Macro",
  12117. height: math.unit(220, "feet")
  12118. },
  12119. {
  12120. name: "Macro+",
  12121. height: math.unit(1450, "feet")
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(11500, "feet")
  12126. },
  12127. {
  12128. name: "Gigamacro",
  12129. height: math.unit(9500, "miles")
  12130. },
  12131. {
  12132. name: "Teramacro",
  12133. height: math.unit(2208005005, "miles")
  12134. },
  12135. {
  12136. name: "Examacro",
  12137. height: math.unit(2750, "parsecs")
  12138. },
  12139. {
  12140. name: "Zettamacro",
  12141. height: math.unit(101500, "parsecs")
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(70, "kg"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/andrew-sleepy/front.svg"
  12154. }
  12155. },
  12156. side: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(70, "kg"),
  12159. name: "Side",
  12160. image: {
  12161. source: "./media/characters/andrew-sleepy/side.svg"
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Micro",
  12168. height: math.unit(1, "mm"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/judio/front.svg",
  12182. extra: 1258 / 1110
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(5 + 6 / 12, "feet")
  12190. },
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(1000, "feet"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(10, "miles")
  12199. },
  12200. ]
  12201. ))
  12202. characterMakers.push(() => makeCharacter(
  12203. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12204. {
  12205. frontDressed: {
  12206. height: math.unit(6, "feet"),
  12207. weight: math.unit(68, "kg"),
  12208. name: "Front (Dressed)",
  12209. image: {
  12210. source: "./media/characters/nomaxice/front-dressed.svg",
  12211. extra: 1137/824,
  12212. bottom: 74/1211
  12213. }
  12214. },
  12215. frontShorts: {
  12216. height: math.unit(6, "feet"),
  12217. weight: math.unit(68, "kg"),
  12218. name: "Front (Shorts)",
  12219. image: {
  12220. source: "./media/characters/nomaxice/front-shorts.svg",
  12221. extra: 1137/824,
  12222. bottom: 74/1211
  12223. }
  12224. },
  12225. back: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(68, "kg"),
  12228. name: "Back",
  12229. image: {
  12230. source: "./media/characters/nomaxice/back.svg",
  12231. extra: 822/786,
  12232. bottom: 39/861
  12233. }
  12234. },
  12235. hand: {
  12236. height: math.unit(0.565, "feet"),
  12237. name: "Hand",
  12238. image: {
  12239. source: "./media/characters/nomaxice/hand.svg"
  12240. }
  12241. },
  12242. foot: {
  12243. height: math.unit(1, "feet"),
  12244. name: "Foot",
  12245. image: {
  12246. source: "./media/characters/nomaxice/foot.svg"
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Micro",
  12253. height: math.unit(8, "cm")
  12254. },
  12255. {
  12256. name: "Norm",
  12257. height: math.unit(1.82, "m")
  12258. },
  12259. {
  12260. name: "Norm+",
  12261. height: math.unit(8.8, "feet"),
  12262. default: true
  12263. },
  12264. {
  12265. name: "Big",
  12266. height: math.unit(8, "meters")
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(18, "meters")
  12271. },
  12272. {
  12273. name: "Macro+",
  12274. height: math.unit(88, "meters")
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(12, "feet"),
  12283. weight: math.unit(1.5, "tons"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/dydros/front.svg",
  12287. extra: 863 / 800,
  12288. bottom: 0.015
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(12, "feet"),
  12293. weight: math.unit(1.5, "tons"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/dydros/back.svg",
  12297. extra: 900 / 843,
  12298. bottom: 0.005
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(12, "feet"),
  12306. default: true
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12312. {
  12313. front: {
  12314. height: math.unit(6, "feet"),
  12315. weight: math.unit(100, "kg"),
  12316. name: "Front",
  12317. image: {
  12318. source: "./media/characters/riggi/front.svg",
  12319. extra: 5787 / 5303
  12320. }
  12321. },
  12322. hyper: {
  12323. height: math.unit(6 * 5 / 3, "feet"),
  12324. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12325. name: "Hyper",
  12326. image: {
  12327. source: "./media/characters/riggi/hyper.svg",
  12328. extra: 3595 / 3485
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Small Macro",
  12335. height: math.unit(50, "feet")
  12336. },
  12337. {
  12338. name: "Default",
  12339. height: math.unit(200, "feet"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Loom",
  12344. height: math.unit(10000, "feet")
  12345. },
  12346. {
  12347. name: "Cruising Altitude",
  12348. height: math.unit(30000, "feet")
  12349. },
  12350. {
  12351. name: "Megamacro",
  12352. height: math.unit(100, "miles")
  12353. },
  12354. {
  12355. name: "Continent Sized",
  12356. height: math.unit(2800, "miles")
  12357. },
  12358. {
  12359. name: "Earth Sized",
  12360. height: math.unit(8000, "miles")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(250, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/alexi/front.svg",
  12373. extra: 3483 / 3291,
  12374. bottom: 0.04
  12375. }
  12376. },
  12377. back: {
  12378. height: math.unit(6, "feet"),
  12379. weight: math.unit(250, "lb"),
  12380. name: "Back",
  12381. image: {
  12382. source: "./media/characters/alexi/back.svg",
  12383. extra: 3533 / 3356,
  12384. bottom: 0.021
  12385. }
  12386. },
  12387. frontTransforming: {
  12388. height: math.unit(8.58, "feet"),
  12389. weight: math.unit(1300, "lb"),
  12390. name: "Transforming",
  12391. image: {
  12392. source: "./media/characters/alexi/front-transforming.svg",
  12393. extra: 437 / 409,
  12394. bottom: 19 / 458.66
  12395. }
  12396. },
  12397. frontTransformed: {
  12398. height: math.unit(12.5, "feet"),
  12399. weight: math.unit(4000, "lb"),
  12400. name: "Transformed",
  12401. image: {
  12402. source: "./media/characters/alexi/front-transformed.svg",
  12403. extra: 639 / 614,
  12404. bottom: 30.55 / 671
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(14, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Minimacro",
  12416. height: math.unit(30, "meters")
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(500, "meters")
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(9000, "km")
  12425. },
  12426. {
  12427. name: "Teramacro",
  12428. height: math.unit(384000, "km")
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/kayroo/front.svg",
  12441. extra: 1153 / 1038,
  12442. bottom: 0.06
  12443. }
  12444. },
  12445. foot: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Foot",
  12449. image: {
  12450. source: "./media/characters/kayroo/foot.svg"
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(8, "feet"),
  12458. default: true
  12459. },
  12460. {
  12461. name: "Minimacro",
  12462. height: math.unit(250, "feet")
  12463. },
  12464. {
  12465. name: "Macro",
  12466. height: math.unit(2800, "feet")
  12467. },
  12468. {
  12469. name: "Megamacro",
  12470. height: math.unit(5200, "feet")
  12471. },
  12472. {
  12473. name: "Gigamacro",
  12474. height: math.unit(27000, "feet")
  12475. },
  12476. {
  12477. name: "Omega",
  12478. height: math.unit(45000, "feet")
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(18, "feet"),
  12487. weight: math.unit(5800, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/rhys/front.svg",
  12491. extra: 3386 / 3090,
  12492. bottom: 0.07
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(18, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Working Size",
  12504. height: math.unit(200, "feet")
  12505. },
  12506. {
  12507. name: "Demolition Size",
  12508. height: math.unit(2000, "feet")
  12509. },
  12510. {
  12511. name: "Maximum Licensed Size",
  12512. height: math.unit(5, "miles")
  12513. },
  12514. {
  12515. name: "Maximum Observed Size",
  12516. height: math.unit(10, "yottameters")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(250, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/toto/front.svg",
  12529. extra: 527 / 479,
  12530. bottom: 0.05
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Micro",
  12537. height: math.unit(3, "feet")
  12538. },
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(10, "feet")
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(150, "feet"),
  12546. default: true
  12547. },
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(1200, "feet")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "King", species: ["lion"], tags: ["anthro"] },
  12556. {
  12557. back: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Back",
  12561. image: {
  12562. source: "./media/characters/king/back.svg"
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Micro",
  12569. height: math.unit(2, "inches")
  12570. },
  12571. {
  12572. name: "Normal",
  12573. height: math.unit(8, "feet")
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(200, "feet"),
  12578. default: true
  12579. },
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(50, "miles")
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12588. {
  12589. front: {
  12590. height: math.unit(11, "feet"),
  12591. weight: math.unit(1400, "lb"),
  12592. name: "Front",
  12593. image: {
  12594. source: "./media/characters/cordite/front.svg",
  12595. extra: 1919/1827,
  12596. bottom: 40/1959
  12597. }
  12598. },
  12599. side: {
  12600. height: math.unit(11, "feet"),
  12601. weight: math.unit(1400, "lb"),
  12602. name: "Side",
  12603. image: {
  12604. source: "./media/characters/cordite/side.svg",
  12605. extra: 1908/1793,
  12606. bottom: 38/1946
  12607. }
  12608. },
  12609. back: {
  12610. height: math.unit(11, "feet"),
  12611. weight: math.unit(1400, "lb"),
  12612. name: "Back",
  12613. image: {
  12614. source: "./media/characters/cordite/back.svg",
  12615. extra: 1938/1837,
  12616. bottom: 10/1948
  12617. }
  12618. },
  12619. feral: {
  12620. height: math.unit(2, "feet"),
  12621. weight: math.unit(90, "lb"),
  12622. name: "Feral",
  12623. image: {
  12624. source: "./media/characters/cordite/feral.svg",
  12625. extra: 1260 / 755,
  12626. bottom: 0.05
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(11, "feet"),
  12634. default: true
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/pianostrong/front.svg",
  12647. extra: 6577 / 6254,
  12648. bottom: 0.02
  12649. }
  12650. },
  12651. side: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Side",
  12655. image: {
  12656. source: "./media/characters/pianostrong/side.svg",
  12657. extra: 6106 / 5730
  12658. }
  12659. },
  12660. back: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Back",
  12664. image: {
  12665. source: "./media/characters/pianostrong/back.svg",
  12666. extra: 6085 / 5733,
  12667. bottom: 0.01
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Macro",
  12674. height: math.unit(100, "feet")
  12675. },
  12676. {
  12677. name: "Macro+",
  12678. height: math.unit(300, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Macro++",
  12683. height: math.unit(1000, "feet")
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/kona/front.svg",
  12696. extra: 2960 / 2629,
  12697. bottom: 0.005
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Normal",
  12704. height: math.unit(11 + 8 / 12, "feet")
  12705. },
  12706. {
  12707. name: "Macro",
  12708. height: math.unit(850, "feet"),
  12709. default: true
  12710. },
  12711. {
  12712. name: "Macro+",
  12713. height: math.unit(1.5, "km"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Megamacro",
  12718. height: math.unit(80, "miles")
  12719. },
  12720. {
  12721. name: "Gigamacro",
  12722. height: math.unit(3500, "miles")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12728. {
  12729. side: {
  12730. height: math.unit(1.9, "meters"),
  12731. weight: math.unit(326, "kg"),
  12732. name: "Side",
  12733. image: {
  12734. source: "./media/characters/levi/side.svg",
  12735. extra: 1704 / 1334,
  12736. bottom: 0.02
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(1.9, "meters"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(20, "meters")
  12749. },
  12750. {
  12751. name: "Macro+",
  12752. height: math.unit(200, "meters")
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(2, "km")
  12757. },
  12758. {
  12759. name: "Megamacro+",
  12760. height: math.unit(20, "km")
  12761. },
  12762. {
  12763. name: "Gigamacro",
  12764. height: math.unit(2500, "km")
  12765. },
  12766. {
  12767. name: "Gigamacro+",
  12768. height: math.unit(120000, "km")
  12769. },
  12770. {
  12771. name: "Teramacro",
  12772. height: math.unit(7.77e6, "km")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6 + 4/12, "feet"),
  12781. weight: math.unit(190, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/bmc/front.svg",
  12785. extra: 1626/1472,
  12786. bottom: 79/1705
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(6 + 4/12, "feet"),
  12791. weight: math.unit(190, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/bmc/back.svg",
  12795. extra: 1640/1479,
  12796. bottom: 45/1685
  12797. }
  12798. },
  12799. frontArmor: {
  12800. height: math.unit(6 + 4/12, "feet"),
  12801. weight: math.unit(190, "lb"),
  12802. name: "Front-armor",
  12803. image: {
  12804. source: "./media/characters/bmc/front-armor.svg",
  12805. extra: 1538/1468,
  12806. bottom: 79/1617
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Human-sized",
  12813. height: math.unit(6 + 4 / 12, "feet")
  12814. },
  12815. {
  12816. name: "Interactive Size",
  12817. height: math.unit(25, "feet")
  12818. },
  12819. {
  12820. name: "Small",
  12821. height: math.unit(250, "feet")
  12822. },
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(1250, "feet"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Good Day",
  12830. height: math.unit(88, "miles")
  12831. },
  12832. {
  12833. name: "Largest Measured Size",
  12834. height: math.unit(105.960, "galaxies")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(20, "feet"),
  12843. weight: math.unit(2016, "kg"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/sven-the-kaiju/front.svg",
  12847. extra: 1277/1250,
  12848. bottom: 35/1312
  12849. }
  12850. },
  12851. mouth: {
  12852. height: math.unit(1.85, "feet"),
  12853. name: "Mouth",
  12854. image: {
  12855. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Fairy",
  12862. height: math.unit(6, "inches")
  12863. },
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(20, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Rampage",
  12871. height: math.unit(200, "feet")
  12872. },
  12873. {
  12874. name: "Archfey Forest Guardian",
  12875. height: math.unit(1, "mile")
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(4, "meters"),
  12884. weight: math.unit(2, "tons"),
  12885. name: "Front",
  12886. image: {
  12887. source: "./media/characters/marik/front.svg",
  12888. extra: 1057 / 1003,
  12889. bottom: 0.08
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Normal",
  12896. height: math.unit(4, "meters"),
  12897. default: true
  12898. },
  12899. {
  12900. name: "Macro",
  12901. height: math.unit(20, "meters")
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(50, "km")
  12906. },
  12907. {
  12908. name: "Gigamacro",
  12909. height: math.unit(100, "km")
  12910. },
  12911. {
  12912. name: "Alpha Macro",
  12913. height: math.unit(7.88e7, "yottameters")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(110, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/mel/front.svg",
  12926. extra: 736 / 617,
  12927. bottom: 0.017
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Pico",
  12934. height: math.unit(3, "pm")
  12935. },
  12936. {
  12937. name: "Nano",
  12938. height: math.unit(3, "nm")
  12939. },
  12940. {
  12941. name: "Micro",
  12942. height: math.unit(0.3, "mm"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Micro+",
  12947. height: math.unit(3, "mm")
  12948. },
  12949. {
  12950. name: "Normal",
  12951. height: math.unit(5 + 10.5 / 12, "feet")
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12957. {
  12958. kaiju: {
  12959. height: math.unit(1.75, "meters"),
  12960. weight: math.unit(55, "kg"),
  12961. name: "Kaiju",
  12962. image: {
  12963. source: "./media/characters/lykonous/kaiju.svg",
  12964. extra: 1055 / 946,
  12965. bottom: 0.135
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(2.5, "meters"),
  12973. default: true
  12974. },
  12975. {
  12976. name: "Kaiju Dragon",
  12977. height: math.unit(60, "meters")
  12978. },
  12979. {
  12980. name: "Mega Kaiju",
  12981. height: math.unit(120, "km")
  12982. },
  12983. {
  12984. name: "Giga Kaiju",
  12985. height: math.unit(200, "megameters")
  12986. },
  12987. {
  12988. name: "Terra Kaiju",
  12989. height: math.unit(400, "gigameters")
  12990. },
  12991. {
  12992. name: "Kaiju Dragon God",
  12993. height: math.unit(13000, "exaparsecs")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(150, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/blü/front.svg",
  13006. extra: 1883 / 1564,
  13007. bottom: 0.031
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(13, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Big Boi",
  13019. height: math.unit(150, "meters")
  13020. },
  13021. {
  13022. name: "Mini Stomper",
  13023. height: math.unit(300, "meters")
  13024. },
  13025. {
  13026. name: "Macro",
  13027. height: math.unit(1000, "meters")
  13028. },
  13029. {
  13030. name: "Megamacro",
  13031. height: math.unit(11000, "meters")
  13032. },
  13033. {
  13034. name: "Gigamacro",
  13035. height: math.unit(11000, "km")
  13036. },
  13037. {
  13038. name: "Teramacro",
  13039. height: math.unit(420000, "km")
  13040. },
  13041. {
  13042. name: "Examacro",
  13043. height: math.unit(120, "parsecs")
  13044. },
  13045. {
  13046. name: "God Tho",
  13047. height: math.unit(98000000000, "parsecs")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13053. {
  13054. taurFront: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(200, "lb"),
  13057. name: "Taur (Front)",
  13058. image: {
  13059. source: "./media/characters/scales/taur-front.svg",
  13060. extra: 1,
  13061. bottom: 0.05
  13062. }
  13063. },
  13064. taurBack: {
  13065. height: math.unit(6, "feet"),
  13066. weight: math.unit(200, "lb"),
  13067. name: "Taur (Back)",
  13068. image: {
  13069. source: "./media/characters/scales/taur-back.svg",
  13070. extra: 1,
  13071. bottom: 0.08
  13072. }
  13073. },
  13074. anthro: {
  13075. height: math.unit(6 * 7 / 12, "feet"),
  13076. weight: math.unit(100, "lb"),
  13077. name: "Anthro",
  13078. image: {
  13079. source: "./media/characters/scales/anthro.svg",
  13080. extra: 1,
  13081. bottom: 0.06
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(12, "feet"),
  13089. default: true
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/koragos/front.svg",
  13102. extra: 841 / 794,
  13103. bottom: 0.035
  13104. }
  13105. },
  13106. back: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(150, "lb"),
  13109. name: "Back",
  13110. image: {
  13111. source: "./media/characters/koragos/back.svg",
  13112. extra: 841 / 810,
  13113. bottom: 0.022
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(6 + 11 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(490, "feet")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(10, "miles")
  13130. },
  13131. {
  13132. name: "Gigamacro",
  13133. height: math.unit(50, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(250, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/xylrem/front.svg",
  13146. extra: 3323 / 3050,
  13147. bottom: 0.065
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Micro",
  13154. height: math.unit(4, "feet")
  13155. },
  13156. {
  13157. name: "Normal",
  13158. height: math.unit(16, "feet"),
  13159. default: true
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(2720, "feet")
  13164. },
  13165. {
  13166. name: "Megamacro",
  13167. height: math.unit(25000, "miles")
  13168. },
  13169. ]
  13170. ))
  13171. characterMakers.push(() => makeCharacter(
  13172. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13173. {
  13174. front: {
  13175. height: math.unit(8, "feet"),
  13176. weight: math.unit(250, "kg"),
  13177. name: "Front",
  13178. image: {
  13179. source: "./media/characters/ikideru/front.svg",
  13180. extra: 930 / 870,
  13181. bottom: 0.087
  13182. }
  13183. },
  13184. back: {
  13185. height: math.unit(8, "feet"),
  13186. weight: math.unit(250, "kg"),
  13187. name: "Back",
  13188. image: {
  13189. source: "./media/characters/ikideru/back.svg",
  13190. extra: 919 / 852,
  13191. bottom: 0.055
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Rare",
  13198. height: math.unit(8, "feet"),
  13199. default: true
  13200. },
  13201. {
  13202. name: "Playful Loom",
  13203. height: math.unit(80, "feet")
  13204. },
  13205. {
  13206. name: "City Leaner",
  13207. height: math.unit(230, "feet")
  13208. },
  13209. {
  13210. name: "Megamacro",
  13211. height: math.unit(2500, "feet")
  13212. },
  13213. {
  13214. name: "Gigamacro",
  13215. height: math.unit(26400, "feet")
  13216. },
  13217. {
  13218. name: "Tectonic Shifter",
  13219. height: math.unit(1.7, "megameters")
  13220. },
  13221. {
  13222. name: "Planet Carer",
  13223. height: math.unit(21, "megameters")
  13224. },
  13225. {
  13226. name: "God",
  13227. height: math.unit(11157.22, "parsecs")
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(120, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/neo/front.svg"
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Micro",
  13246. height: math.unit(2, "inches"),
  13247. default: true
  13248. },
  13249. {
  13250. name: "Human Size",
  13251. height: math.unit(5 + 8 / 12, "feet")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(13 + 10 / 12, "feet"),
  13260. weight: math.unit(5320, "lb"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/chauncey-chantz/front.svg",
  13264. extra: 1587 / 1435,
  13265. bottom: 0.02
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(13 + 10 / 12, "feet"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(45, "feet")
  13278. },
  13279. {
  13280. name: "Megamacro",
  13281. height: math.unit(250, "miles")
  13282. },
  13283. {
  13284. name: "Planetary",
  13285. height: math.unit(10000, "miles")
  13286. },
  13287. {
  13288. name: "Galactic",
  13289. height: math.unit(40000, "parsecs")
  13290. },
  13291. {
  13292. name: "Universal",
  13293. height: math.unit(1, "yottameter")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13299. {
  13300. front: {
  13301. height: math.unit(6, "feet"),
  13302. weight: math.unit(150, "lb"),
  13303. name: "Front",
  13304. image: {
  13305. source: "./media/characters/epifox/front.svg",
  13306. extra: 1,
  13307. bottom: 0.075
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(6, "inches")
  13315. },
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(3810, "feet")
  13324. },
  13325. {
  13326. name: "Megamacro",
  13327. height: math.unit(500, "miles")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(1.8796, "m"),
  13336. weight: math.unit(230, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/colin-t/front.svg",
  13340. extra: 1272 / 1193,
  13341. bottom: 0.07
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Micro",
  13348. height: math.unit(0.571, "meters")
  13349. },
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(1.8796, "meters"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Tall",
  13357. height: math.unit(4, "meters")
  13358. },
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(67.241, "meters")
  13362. },
  13363. {
  13364. name: "Megamacro",
  13365. height: math.unit(371.856, "meters")
  13366. },
  13367. {
  13368. name: "Planetary",
  13369. height: math.unit(12631.5689, "km")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13375. {
  13376. front: {
  13377. height: math.unit(1.85, "meters"),
  13378. weight: math.unit(80, "kg"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/matvei/front.svg",
  13382. extra: 456/447,
  13383. bottom: 8/464
  13384. }
  13385. },
  13386. back: {
  13387. height: math.unit(1.85, "meters"),
  13388. weight: math.unit(80, "kg"),
  13389. name: "Back",
  13390. image: {
  13391. source: "./media/characters/matvei/back.svg",
  13392. extra: 434/427,
  13393. bottom: 11/445
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(1.85, "meters"),
  13401. default: true
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(5 + 9 / 12, "feet"),
  13410. weight: math.unit(70, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/quincy/front.svg",
  13414. extra: 3041 / 2751
  13415. }
  13416. },
  13417. back: {
  13418. height: math.unit(5 + 9 / 12, "feet"),
  13419. weight: math.unit(70, "lb"),
  13420. name: "Back",
  13421. image: {
  13422. source: "./media/characters/quincy/back.svg",
  13423. extra: 3041 / 2751
  13424. }
  13425. },
  13426. flying: {
  13427. height: math.unit(5 + 4 / 12, "feet"),
  13428. weight: math.unit(70, "lb"),
  13429. name: "Flying",
  13430. image: {
  13431. source: "./media/characters/quincy/flying.svg",
  13432. extra: 1044 / 930
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Micro",
  13439. height: math.unit(3, "cm")
  13440. },
  13441. {
  13442. name: "Normal",
  13443. height: math.unit(5 + 9 / 12, "feet")
  13444. },
  13445. {
  13446. name: "Macro",
  13447. height: math.unit(200, "meters"),
  13448. default: true
  13449. },
  13450. {
  13451. name: "Megamacro",
  13452. height: math.unit(1000, "meters")
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13458. {
  13459. front: {
  13460. height: math.unit(3 + 11/12, "feet"),
  13461. weight: math.unit(50, "lb"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/vanrel/front.svg",
  13465. extra: 1104/949,
  13466. bottom: 52/1156
  13467. }
  13468. },
  13469. back: {
  13470. height: math.unit(3 + 11/12, "feet"),
  13471. weight: math.unit(50, "lb"),
  13472. name: "Back",
  13473. image: {
  13474. source: "./media/characters/vanrel/back.svg",
  13475. extra: 1119/976,
  13476. bottom: 37/1156
  13477. }
  13478. },
  13479. tome: {
  13480. height: math.unit(1.35, "feet"),
  13481. weight: math.unit(10, "lb"),
  13482. name: "Vanrel's Tome",
  13483. rename: true,
  13484. image: {
  13485. source: "./media/characters/vanrel/tome.svg"
  13486. }
  13487. },
  13488. beans: {
  13489. height: math.unit(0.89, "feet"),
  13490. name: "Beans",
  13491. image: {
  13492. source: "./media/characters/vanrel/beans.svg"
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Normal",
  13499. height: math.unit(3 + 11/12, "feet"),
  13500. default: true
  13501. },
  13502. ]
  13503. ))
  13504. characterMakers.push(() => makeCharacter(
  13505. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13506. {
  13507. front: {
  13508. height: math.unit(7 + 5 / 12, "feet"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/kuiper-vanrel/front.svg",
  13512. extra: 1219/1169,
  13513. bottom: 69/1288
  13514. }
  13515. },
  13516. back: {
  13517. height: math.unit(7 + 5 / 12, "feet"),
  13518. name: "Back",
  13519. image: {
  13520. source: "./media/characters/kuiper-vanrel/back.svg",
  13521. extra: 1236/1193,
  13522. bottom: 27/1263
  13523. }
  13524. },
  13525. foot: {
  13526. height: math.unit(0.55, "meters"),
  13527. name: "Foot",
  13528. image: {
  13529. source: "./media/characters/kuiper-vanrel/foot.svg",
  13530. }
  13531. },
  13532. battle: {
  13533. height: math.unit(6.824, "feet"),
  13534. name: "Battle",
  13535. image: {
  13536. source: "./media/characters/kuiper-vanrel/battle.svg",
  13537. extra: 1466 / 1327,
  13538. bottom: 29 / 1492.5
  13539. }
  13540. },
  13541. meerkui: {
  13542. height: math.unit(18, "inches"),
  13543. name: "Meerkui",
  13544. image: {
  13545. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13546. extra: 1354/1289,
  13547. bottom: 69/1423
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(7 + 5 / 12, "feet"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(8 + 5 / 12, "feet"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/keset-vanrel/front.svg",
  13567. extra: 1231/1148,
  13568. bottom: 82/1313
  13569. }
  13570. },
  13571. back: {
  13572. height: math.unit(8 + 5 / 12, "feet"),
  13573. name: "Back",
  13574. image: {
  13575. source: "./media/characters/keset-vanrel/back.svg",
  13576. extra: 1240/1174,
  13577. bottom: 33/1273
  13578. }
  13579. },
  13580. hand: {
  13581. height: math.unit(0.6, "meters"),
  13582. name: "Hand",
  13583. image: {
  13584. source: "./media/characters/keset-vanrel/hand.svg"
  13585. }
  13586. },
  13587. foot: {
  13588. height: math.unit(0.94978, "meters"),
  13589. name: "Foot",
  13590. image: {
  13591. source: "./media/characters/keset-vanrel/foot.svg"
  13592. }
  13593. },
  13594. battle: {
  13595. height: math.unit(7.408, "feet"),
  13596. name: "Battle",
  13597. image: {
  13598. source: "./media/characters/keset-vanrel/battle.svg",
  13599. extra: 1890 / 1386,
  13600. bottom: 73.28 / 1970
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(8 + 5 / 12, "feet"),
  13608. default: true
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/neos/front.svg",
  13621. extra: 1696 / 992,
  13622. bottom: 0.14
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Normal",
  13629. height: math.unit(54, "cm"),
  13630. default: true
  13631. },
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(100, "m")
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(10, "km")
  13639. },
  13640. {
  13641. name: "Megamacro+",
  13642. height: math.unit(100, "km")
  13643. },
  13644. {
  13645. name: "Gigamacro",
  13646. height: math.unit(100, "Mm")
  13647. },
  13648. {
  13649. name: "Teramacro",
  13650. height: math.unit(100, "Gm")
  13651. },
  13652. {
  13653. name: "Examacro",
  13654. height: math.unit(100, "Em")
  13655. },
  13656. {
  13657. name: "Godly",
  13658. height: math.unit(10000, "Ym")
  13659. },
  13660. {
  13661. name: "Beyond Godly",
  13662. height: math.unit(25, "multiverses")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13668. {
  13669. feminine: {
  13670. height: math.unit(5, "feet"),
  13671. weight: math.unit(100, "lb"),
  13672. name: "Feminine",
  13673. image: {
  13674. source: "./media/characters/sammy-mouse/feminine.svg",
  13675. extra: 2526 / 2425,
  13676. bottom: 0.123
  13677. }
  13678. },
  13679. masculine: {
  13680. height: math.unit(5, "feet"),
  13681. weight: math.unit(100, "lb"),
  13682. name: "Masculine",
  13683. image: {
  13684. source: "./media/characters/sammy-mouse/masculine.svg",
  13685. extra: 2526 / 2425,
  13686. bottom: 0.123
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Micro",
  13693. height: math.unit(5, "inches")
  13694. },
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(5, "feet"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(60, "feet")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(4, "feet"),
  13711. weight: math.unit(50, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/kole/front.svg",
  13715. extra: 1423 / 1303,
  13716. bottom: 0.025
  13717. }
  13718. },
  13719. back: {
  13720. height: math.unit(4, "feet"),
  13721. weight: math.unit(50, "lb"),
  13722. name: "Back",
  13723. image: {
  13724. source: "./media/characters/kole/back.svg",
  13725. extra: 1426 / 1280,
  13726. bottom: 0.02
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Normal",
  13733. height: math.unit(4, "feet"),
  13734. default: true
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(2.5, "feet"),
  13743. weight: math.unit(32, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/rufran/front.svg",
  13747. extra: 1313/885,
  13748. bottom: 94/1407
  13749. }
  13750. },
  13751. side: {
  13752. height: math.unit(2.5, "feet"),
  13753. weight: math.unit(32, "lb"),
  13754. name: "Side",
  13755. image: {
  13756. source: "./media/characters/rufran/side.svg",
  13757. extra: 1109/852,
  13758. bottom: 118/1227
  13759. }
  13760. },
  13761. back: {
  13762. height: math.unit(2.5, "feet"),
  13763. weight: math.unit(32, "lb"),
  13764. name: "Back",
  13765. image: {
  13766. source: "./media/characters/rufran/back.svg",
  13767. extra: 1280/878,
  13768. bottom: 131/1411
  13769. }
  13770. },
  13771. mouth: {
  13772. height: math.unit(1.13, "feet"),
  13773. name: "Mouth",
  13774. image: {
  13775. source: "./media/characters/rufran/mouth.svg"
  13776. }
  13777. },
  13778. foot: {
  13779. height: math.unit(1.33, "feet"),
  13780. name: "Foot",
  13781. image: {
  13782. source: "./media/characters/rufran/foot.svg"
  13783. }
  13784. },
  13785. koboldFront: {
  13786. height: math.unit(2 + 6 / 12, "feet"),
  13787. weight: math.unit(20, "lb"),
  13788. name: "Front (Kobold)",
  13789. image: {
  13790. source: "./media/characters/rufran/kobold-front.svg",
  13791. extra: 2041 / 1839,
  13792. bottom: 0.055
  13793. }
  13794. },
  13795. koboldBack: {
  13796. height: math.unit(2 + 6 / 12, "feet"),
  13797. weight: math.unit(20, "lb"),
  13798. name: "Back (Kobold)",
  13799. image: {
  13800. source: "./media/characters/rufran/kobold-back.svg",
  13801. extra: 2054 / 1839,
  13802. bottom: 0.01
  13803. }
  13804. },
  13805. koboldHand: {
  13806. height: math.unit(0.2166, "meters"),
  13807. name: "Hand (Kobold)",
  13808. image: {
  13809. source: "./media/characters/rufran/kobold-hand.svg"
  13810. }
  13811. },
  13812. koboldFoot: {
  13813. height: math.unit(0.185, "meters"),
  13814. name: "Foot (Kobold)",
  13815. image: {
  13816. source: "./media/characters/rufran/kobold-foot.svg"
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Micro",
  13823. height: math.unit(1, "inch")
  13824. },
  13825. {
  13826. name: "Normal",
  13827. height: math.unit(2 + 6 / 12, "feet"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Big",
  13832. height: math.unit(60, "feet")
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(325, "feet")
  13837. },
  13838. ]
  13839. ))
  13840. characterMakers.push(() => makeCharacter(
  13841. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13842. {
  13843. front: {
  13844. height: math.unit(0.3, "meters"),
  13845. weight: math.unit(3.5, "kg"),
  13846. name: "Front",
  13847. image: {
  13848. source: "./media/characters/chip/front.svg",
  13849. extra: 748 / 674
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(1, "inch"),
  13857. default: true
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13863. {
  13864. side: {
  13865. height: math.unit(2.3, "meters"),
  13866. weight: math.unit(3500, "lb"),
  13867. name: "Side",
  13868. image: {
  13869. source: "./media/characters/torvid/side.svg",
  13870. extra: 1972 / 722,
  13871. bottom: 0.035
  13872. }
  13873. },
  13874. },
  13875. [
  13876. {
  13877. name: "Normal",
  13878. height: math.unit(2.3, "meters"),
  13879. default: true
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(2, "meters"),
  13888. weight: math.unit(150.5, "kg"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/susan/front.svg",
  13892. extra: 693 / 635,
  13893. bottom: 0.05
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Megamacro",
  13900. height: math.unit(505, "miles"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(6, "feet"),
  13910. weight: math.unit(150, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/raindrops/front.svg",
  13914. extra: 2655 / 2461,
  13915. bottom: 49 / 2705
  13916. }
  13917. },
  13918. back: {
  13919. height: math.unit(6, "feet"),
  13920. weight: math.unit(150, "lb"),
  13921. name: "Back",
  13922. image: {
  13923. source: "./media/characters/raindrops/back.svg",
  13924. extra: 2574 / 2400,
  13925. bottom: 65 / 2634
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Micro",
  13932. height: math.unit(6, "inches")
  13933. },
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(6 + 2 / 12, "feet")
  13937. },
  13938. {
  13939. name: "Macro",
  13940. height: math.unit(131, "feet"),
  13941. default: true
  13942. },
  13943. {
  13944. name: "Megamacro",
  13945. height: math.unit(15, "miles")
  13946. },
  13947. {
  13948. name: "Gigamacro",
  13949. height: math.unit(4000, "miles")
  13950. },
  13951. {
  13952. name: "Teramacro",
  13953. height: math.unit(315000, "miles")
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(2.794, "meters"),
  13962. weight: math.unit(325, "kg"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/tezwa/front.svg",
  13966. extra: 2083 / 1906,
  13967. bottom: 0.031
  13968. }
  13969. },
  13970. foot: {
  13971. height: math.unit(0.687, "meters"),
  13972. name: "Foot",
  13973. image: {
  13974. source: "./media/characters/tezwa/foot.svg"
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(9 + 2 / 12, "feet"),
  13982. default: true
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13988. {
  13989. front: {
  13990. height: math.unit(58, "feet"),
  13991. weight: math.unit(89000, "lb"),
  13992. name: "Front",
  13993. image: {
  13994. source: "./media/characters/typhus/front.svg",
  13995. extra: 816 / 800,
  13996. bottom: 0.065
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(58, "feet"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(12, "feet"),
  14013. weight: math.unit(6, "tonnes"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/lyra-von-wulf/front.svg",
  14017. extra: 1,
  14018. bottom: 0.10
  14019. }
  14020. },
  14021. frontMecha: {
  14022. height: math.unit(12, "feet"),
  14023. weight: math.unit(12, "tonnes"),
  14024. name: "Front (Mecha)",
  14025. image: {
  14026. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14027. extra: 1,
  14028. bottom: 0.042
  14029. }
  14030. },
  14031. maw: {
  14032. height: math.unit(2.2, "feet"),
  14033. name: "Maw",
  14034. image: {
  14035. source: "./media/characters/lyra-von-wulf/maw.svg"
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(12, "feet"),
  14043. default: true
  14044. },
  14045. {
  14046. name: "Classic",
  14047. height: math.unit(50, "feet")
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(500, "feet")
  14052. },
  14053. {
  14054. name: "Megamacro",
  14055. height: math.unit(1, "mile")
  14056. },
  14057. {
  14058. name: "Gigamacro",
  14059. height: math.unit(400, "miles")
  14060. },
  14061. {
  14062. name: "Teramacro",
  14063. height: math.unit(22000, "miles")
  14064. },
  14065. {
  14066. name: "Solarmacro",
  14067. height: math.unit(8600000, "miles")
  14068. },
  14069. {
  14070. name: "Galactic",
  14071. height: math.unit(1057000, "lightyears")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6 + 10 / 12, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/dixon/front.svg",
  14084. extra: 3361 / 3209,
  14085. bottom: 0.01
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Normal",
  14092. height: math.unit(6 + 10 / 12, "feet"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Big",
  14097. height: math.unit(12, "meters")
  14098. },
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(500, "meters")
  14102. },
  14103. {
  14104. name: "Megamacro",
  14105. height: math.unit(2, "km")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(185, "cm"),
  14114. weight: math.unit(68, "kg"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/kauko/front.svg",
  14118. extra: 1455 / 1421,
  14119. bottom: 0.03
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(185, "cm"),
  14124. weight: math.unit(68, "kg"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/kauko/back.svg",
  14128. extra: 1455 / 1421,
  14129. bottom: 0.004
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(185, "cm"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14143. {
  14144. frontSfw: {
  14145. height: math.unit(5, "meters"),
  14146. weight: math.unit(4250, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/varg/front-sfw.svg",
  14150. extra: 1103/1010,
  14151. bottom: 50/1153
  14152. },
  14153. form: "anthro",
  14154. default: true
  14155. },
  14156. backSfw: {
  14157. height: math.unit(5, "meters"),
  14158. weight: math.unit(4250, "lb"),
  14159. name: "Back",
  14160. image: {
  14161. source: "./media/characters/varg/back-sfw.svg",
  14162. extra: 1038/1022,
  14163. bottom: 36/1074
  14164. },
  14165. form: "anthro"
  14166. },
  14167. frontNsfw: {
  14168. height: math.unit(5, "meters"),
  14169. weight: math.unit(4250, "lb"),
  14170. name: "Front (NSFW)",
  14171. image: {
  14172. source: "./media/characters/varg/front-nsfw.svg",
  14173. extra: 1103/1010,
  14174. bottom: 50/1153
  14175. },
  14176. form: "anthro"
  14177. },
  14178. sheath: {
  14179. height: math.unit(3.8, "feet"),
  14180. weight: math.unit(90, "kilograms"),
  14181. name: "Sheath",
  14182. image: {
  14183. source: "./media/characters/varg/sheath.svg"
  14184. },
  14185. form: "anthro"
  14186. },
  14187. dick: {
  14188. height: math.unit(4.6, "feet"),
  14189. weight: math.unit(451, "kilograms"),
  14190. name: "Dick",
  14191. image: {
  14192. source: "./media/characters/varg/dick.svg"
  14193. },
  14194. form: "anthro"
  14195. },
  14196. feralSfw: {
  14197. height: math.unit(5, "meters"),
  14198. weight: math.unit(100000, "lb"),
  14199. name: "Side",
  14200. image: {
  14201. source: "./media/characters/varg/feral-sfw.svg",
  14202. extra: 1065/511,
  14203. bottom: 211/1276
  14204. },
  14205. form: "feral",
  14206. default: true
  14207. },
  14208. feralNsfw: {
  14209. height: math.unit(5, "meters"),
  14210. weight: math.unit(100000, "lb"),
  14211. name: "Side (NSFW)",
  14212. image: {
  14213. source: "./media/characters/varg/feral-nsfw.svg",
  14214. extra: 1065/511,
  14215. bottom: 211/1276
  14216. },
  14217. form: "feral",
  14218. },
  14219. feralSheath: {
  14220. height: math.unit(9.8, "feet"),
  14221. weight: math.unit(2000, "kilograms"),
  14222. name: "Sheath",
  14223. image: {
  14224. source: "./media/characters/varg/sheath.svg"
  14225. },
  14226. form: "feral"
  14227. },
  14228. feralDick: {
  14229. height: math.unit(13.11, "feet"),
  14230. weight: math.unit(10440, "kilograms"),
  14231. name: "Dick",
  14232. image: {
  14233. source: "./media/characters/varg/dick.svg"
  14234. },
  14235. form: "feral"
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Normal",
  14241. height: math.unit(5, "meters"),
  14242. form: "anthro"
  14243. },
  14244. {
  14245. name: "Macro",
  14246. height: math.unit(200, "meters"),
  14247. form: "anthro"
  14248. },
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(20, "kilometers"),
  14252. form: "anthro"
  14253. },
  14254. {
  14255. name: "True Size",
  14256. height: math.unit(211, "km"),
  14257. form: "anthro",
  14258. default: true
  14259. },
  14260. {
  14261. name: "Gigamacro",
  14262. height: math.unit(1000, "km"),
  14263. form: "anthro"
  14264. },
  14265. {
  14266. name: "Gigamacro+",
  14267. height: math.unit(8000, "km"),
  14268. form: "anthro"
  14269. },
  14270. {
  14271. name: "Teramacro",
  14272. height: math.unit(1000000, "km"),
  14273. form: "anthro"
  14274. },
  14275. {
  14276. name: "Normal",
  14277. height: math.unit(5, "meters"),
  14278. form: "feral"
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(200, "meters"),
  14283. form: "feral"
  14284. },
  14285. {
  14286. name: "Megamacro",
  14287. height: math.unit(20, "kilometers"),
  14288. form: "feral"
  14289. },
  14290. {
  14291. name: "True Size",
  14292. height: math.unit(211, "km"),
  14293. form: "feral",
  14294. default: true
  14295. },
  14296. {
  14297. name: "Gigamacro",
  14298. height: math.unit(1000, "km"),
  14299. form: "feral"
  14300. },
  14301. {
  14302. name: "Gigamacro+",
  14303. height: math.unit(8000, "km"),
  14304. form: "feral"
  14305. },
  14306. {
  14307. name: "Teramacro",
  14308. height: math.unit(1000000, "km"),
  14309. form: "feral"
  14310. },
  14311. ],
  14312. {
  14313. "anthro": {
  14314. name: "Anthro",
  14315. default: true
  14316. },
  14317. "feral": {
  14318. name: "Feral",
  14319. },
  14320. }
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(7 + 7 / 12, "feet"),
  14327. weight: math.unit(267, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/dayza/front.svg",
  14331. extra: 1262 / 1200,
  14332. bottom: 0.035
  14333. }
  14334. },
  14335. side: {
  14336. height: math.unit(7 + 7 / 12, "feet"),
  14337. weight: math.unit(267, "lb"),
  14338. name: "Side",
  14339. image: {
  14340. source: "./media/characters/dayza/side.svg",
  14341. extra: 1295 / 1245,
  14342. bottom: 0.05
  14343. }
  14344. },
  14345. back: {
  14346. height: math.unit(7 + 7 / 12, "feet"),
  14347. weight: math.unit(267, "lb"),
  14348. name: "Back",
  14349. image: {
  14350. source: "./media/characters/dayza/back.svg",
  14351. extra: 1241 / 1170
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(7 + 7 / 12, "feet"),
  14359. default: true
  14360. },
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(155, "feet")
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(6 + 5 / 12, "feet"),
  14372. weight: math.unit(160, "lb"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/xanthos/front.svg",
  14376. extra: 1,
  14377. bottom: 0.04
  14378. }
  14379. },
  14380. back: {
  14381. height: math.unit(6 + 5 / 12, "feet"),
  14382. weight: math.unit(160, "lb"),
  14383. name: "Back",
  14384. image: {
  14385. source: "./media/characters/xanthos/back.svg",
  14386. extra: 1,
  14387. bottom: 0.03
  14388. }
  14389. },
  14390. hand: {
  14391. height: math.unit(0.928, "feet"),
  14392. name: "Hand",
  14393. image: {
  14394. source: "./media/characters/xanthos/hand.svg"
  14395. }
  14396. },
  14397. foot: {
  14398. height: math.unit(1.286, "feet"),
  14399. name: "Foot",
  14400. image: {
  14401. source: "./media/characters/xanthos/foot.svg"
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(6 + 5 / 12, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Normal+",
  14413. height: math.unit(6, "meters")
  14414. },
  14415. {
  14416. name: "Macro",
  14417. height: math.unit(40, "feet")
  14418. },
  14419. {
  14420. name: "Macro+",
  14421. height: math.unit(200, "meters")
  14422. },
  14423. {
  14424. name: "Megamacro",
  14425. height: math.unit(20, "km")
  14426. },
  14427. {
  14428. name: "Megamacro+",
  14429. height: math.unit(100, "km")
  14430. },
  14431. {
  14432. name: "Gigamacro",
  14433. height: math.unit(200, "megameters")
  14434. },
  14435. {
  14436. name: "Gigamacro+",
  14437. height: math.unit(1.5, "gigameters")
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6 + 3 / 12, "feet"),
  14446. weight: math.unit(215, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/grynn/front.svg",
  14450. extra: 4627 / 4209,
  14451. bottom: 0.047
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Micro",
  14458. height: math.unit(6, "inches")
  14459. },
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(6 + 3 / 12, "feet"),
  14463. default: true
  14464. },
  14465. {
  14466. name: "Big",
  14467. height: math.unit(104, "feet")
  14468. },
  14469. {
  14470. name: "Macro",
  14471. height: math.unit(944, "feet")
  14472. },
  14473. {
  14474. name: "Macro+",
  14475. height: math.unit(9480, "feet")
  14476. },
  14477. {
  14478. name: "Megamacro",
  14479. height: math.unit(78752, "feet")
  14480. },
  14481. {
  14482. name: "Megamacro+",
  14483. height: math.unit(630128, "feet")
  14484. },
  14485. {
  14486. name: "Megamacro++",
  14487. height: math.unit(3150695, "feet")
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(7 + 5 / 12, "feet"),
  14496. weight: math.unit(450, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/mocha-aura/front.svg",
  14500. extra: 1907 / 1817,
  14501. bottom: 0.04
  14502. }
  14503. },
  14504. back: {
  14505. height: math.unit(7 + 5 / 12, "feet"),
  14506. weight: math.unit(450, "lb"),
  14507. name: "Back",
  14508. image: {
  14509. source: "./media/characters/mocha-aura/back.svg",
  14510. extra: 1900 / 1825,
  14511. bottom: 0.045
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Nano",
  14518. height: math.unit(1, "nm")
  14519. },
  14520. {
  14521. name: "Megamicro",
  14522. height: math.unit(1, "mm")
  14523. },
  14524. {
  14525. name: "Micro",
  14526. height: math.unit(3, "inches")
  14527. },
  14528. {
  14529. name: "Normal",
  14530. height: math.unit(7 + 5 / 12, "feet"),
  14531. default: true
  14532. },
  14533. {
  14534. name: "Macro",
  14535. height: math.unit(30, "feet")
  14536. },
  14537. {
  14538. name: "Megamacro",
  14539. height: math.unit(3500, "feet")
  14540. },
  14541. {
  14542. name: "Teramacro",
  14543. height: math.unit(500000, "miles")
  14544. },
  14545. {
  14546. name: "Petamacro",
  14547. height: math.unit(50000000000000000, "parsecs")
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(150, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/ilisha-devya/front.svg",
  14560. extra: 1053/1049,
  14561. bottom: 270/1323
  14562. }
  14563. },
  14564. back: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Back",
  14568. image: {
  14569. source: "./media/characters/ilisha-devya/back.svg",
  14570. extra: 1131/1128,
  14571. bottom: 39/1170
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(500, "feet"),
  14579. default: true
  14580. },
  14581. {
  14582. name: "Megamacro",
  14583. height: math.unit(10, "miles")
  14584. },
  14585. {
  14586. name: "Gigamacro",
  14587. height: math.unit(100000, "miles")
  14588. },
  14589. {
  14590. name: "Examacro",
  14591. height: math.unit(1e9, "lightyears")
  14592. },
  14593. {
  14594. name: "Omniversal",
  14595. height: math.unit(1e33, "lightyears")
  14596. },
  14597. {
  14598. name: "Beyond Infinite",
  14599. height: math.unit(1e100, "lightyears")
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14605. {
  14606. Side: {
  14607. height: math.unit(6, "feet"),
  14608. weight: math.unit(150, "lb"),
  14609. name: "Side",
  14610. image: {
  14611. source: "./media/characters/mira/side.svg",
  14612. extra: 900 / 799,
  14613. bottom: 0.02
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Human Size",
  14620. height: math.unit(6, "feet")
  14621. },
  14622. {
  14623. name: "Macro",
  14624. height: math.unit(100, "feet"),
  14625. default: true
  14626. },
  14627. {
  14628. name: "Megamacro",
  14629. height: math.unit(10, "miles")
  14630. },
  14631. {
  14632. name: "Gigamacro",
  14633. height: math.unit(25000, "miles")
  14634. },
  14635. {
  14636. name: "Teramacro",
  14637. height: math.unit(300, "AU")
  14638. },
  14639. {
  14640. name: "Full Size",
  14641. height: math.unit(4.5e10, "lightyears")
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(6, "feet"),
  14650. weight: math.unit(150, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/holly/front.svg",
  14654. extra: 639 / 606
  14655. }
  14656. },
  14657. back: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(150, "lb"),
  14660. name: "Back",
  14661. image: {
  14662. source: "./media/characters/holly/back.svg",
  14663. extra: 623 / 598
  14664. }
  14665. },
  14666. frontWorking: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Front (Working)",
  14670. image: {
  14671. source: "./media/characters/holly/front-working.svg",
  14672. extra: 607 / 577,
  14673. bottom: 0.048
  14674. }
  14675. },
  14676. },
  14677. [
  14678. {
  14679. name: "Normal",
  14680. height: math.unit(12 + 3 / 12, "feet"),
  14681. default: true
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/porter/front.svg",
  14694. extra: 1,
  14695. bottom: 0.01
  14696. }
  14697. },
  14698. frontRobes: {
  14699. height: math.unit(6, "feet"),
  14700. weight: math.unit(150, "lb"),
  14701. name: "Front (Robes)",
  14702. image: {
  14703. source: "./media/characters/porter/front-robes.svg",
  14704. extra: 1.01,
  14705. bottom: 0.01
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(11 + 9 / 12, "feet"),
  14713. default: true
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14719. {
  14720. legendary: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(150, "lb"),
  14723. name: "Legendary",
  14724. image: {
  14725. source: "./media/characters/lucy/legendary.svg",
  14726. extra: 1355 / 1100,
  14727. bottom: 0.045
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Legendary",
  14734. height: math.unit(86882 * 2, "miles"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(6, "feet"),
  14744. weight: math.unit(150, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/drusilla/front.svg",
  14748. extra: 678 / 635,
  14749. bottom: 0.03
  14750. }
  14751. },
  14752. back: {
  14753. height: math.unit(6, "feet"),
  14754. weight: math.unit(150, "lb"),
  14755. name: "Back",
  14756. image: {
  14757. source: "./media/characters/drusilla/back.svg",
  14758. extra: 678 / 635,
  14759. bottom: 0.005
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Macro",
  14766. height: math.unit(100, "feet")
  14767. },
  14768. {
  14769. name: "Canon Height",
  14770. height: math.unit(2000, "feet"),
  14771. default: true
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(180, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/renard-thatch/front.svg",
  14784. extra: 2411 / 2275,
  14785. bottom: 0.01
  14786. }
  14787. },
  14788. frontPosing: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(180, "lb"),
  14791. name: "Front (Posing)",
  14792. image: {
  14793. source: "./media/characters/renard-thatch/front-posing.svg",
  14794. extra: 2381 / 2261,
  14795. bottom: 0.01
  14796. }
  14797. },
  14798. back: {
  14799. height: math.unit(6, "feet"),
  14800. weight: math.unit(180, "lb"),
  14801. name: "Back",
  14802. image: {
  14803. source: "./media/characters/renard-thatch/back.svg",
  14804. extra: 2428 / 2288
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Micro",
  14811. height: math.unit(3, "inches")
  14812. },
  14813. {
  14814. name: "Default",
  14815. height: math.unit(6, "feet"),
  14816. default: true
  14817. },
  14818. {
  14819. name: "Macro",
  14820. height: math.unit(75, "feet")
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(1450, "feet"),
  14829. weight: math.unit(1.21e6, "tons"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/sekvra/front.svg",
  14833. extra: 1193/1190,
  14834. bottom: 78/1271
  14835. }
  14836. },
  14837. side: {
  14838. height: math.unit(1450, "feet"),
  14839. weight: math.unit(1.21e6, "tons"),
  14840. name: "Side",
  14841. image: {
  14842. source: "./media/characters/sekvra/side.svg",
  14843. extra: 1193/1190,
  14844. bottom: 52/1245
  14845. }
  14846. },
  14847. back: {
  14848. height: math.unit(1450, "feet"),
  14849. weight: math.unit(1.21e6, "tons"),
  14850. name: "Back",
  14851. image: {
  14852. source: "./media/characters/sekvra/back.svg",
  14853. extra: 1219/1216,
  14854. bottom: 21/1240
  14855. }
  14856. },
  14857. frontClothed: {
  14858. height: math.unit(1450, "feet"),
  14859. weight: math.unit(1.21e6, "tons"),
  14860. name: "Front (Clothed)",
  14861. image: {
  14862. source: "./media/characters/sekvra/front-clothed.svg",
  14863. extra: 1192/1189,
  14864. bottom: 79/1271
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Macro",
  14871. height: math.unit(1450, "feet"),
  14872. default: true
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(15000, "feet")
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(150, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/carmine/front.svg",
  14889. extra: 1557/1538,
  14890. bottom: 68/1625
  14891. }
  14892. },
  14893. frontArmor: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(150, "lb"),
  14896. name: "Front (Armor)",
  14897. image: {
  14898. source: "./media/characters/carmine/front-armor.svg",
  14899. extra: 1549/1530,
  14900. bottom: 82/1631
  14901. }
  14902. },
  14903. mouth: {
  14904. height: math.unit(0.55, "feet"),
  14905. name: "Mouth",
  14906. image: {
  14907. source: "./media/characters/carmine/mouth.svg"
  14908. }
  14909. },
  14910. hand: {
  14911. height: math.unit(1.05, "feet"),
  14912. name: "Hand",
  14913. image: {
  14914. source: "./media/characters/carmine/hand.svg"
  14915. }
  14916. },
  14917. foot: {
  14918. height: math.unit(0.6, "feet"),
  14919. name: "Foot",
  14920. image: {
  14921. source: "./media/characters/carmine/foot.svg"
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Large",
  14928. height: math.unit(1, "mile")
  14929. },
  14930. {
  14931. name: "Huge",
  14932. height: math.unit(40, "miles"),
  14933. default: true
  14934. },
  14935. {
  14936. name: "Colossal",
  14937. height: math.unit(2500, "miles")
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14943. {
  14944. front: {
  14945. height: math.unit(6, "feet"),
  14946. weight: math.unit(150, "lb"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/elyssia/front.svg",
  14950. extra: 2201 / 2035,
  14951. bottom: 0.05
  14952. }
  14953. },
  14954. frontClothed: {
  14955. height: math.unit(6, "feet"),
  14956. weight: math.unit(150, "lb"),
  14957. name: "Front (Clothed)",
  14958. image: {
  14959. source: "./media/characters/elyssia/front-clothed.svg",
  14960. extra: 2201 / 2035,
  14961. bottom: 0.05
  14962. }
  14963. },
  14964. back: {
  14965. height: math.unit(6, "feet"),
  14966. weight: math.unit(150, "lb"),
  14967. name: "Back",
  14968. image: {
  14969. source: "./media/characters/elyssia/back.svg",
  14970. extra: 2201 / 2035,
  14971. bottom: 0.013
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Smaller",
  14978. height: math.unit(150, "feet")
  14979. },
  14980. {
  14981. name: "Standard",
  14982. height: math.unit(1400, "feet"),
  14983. default: true
  14984. },
  14985. {
  14986. name: "Distracted",
  14987. height: math.unit(15000, "feet")
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(7 + 4/12, "feet"),
  14996. weight: math.unit(690, "lb"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/geno-maxwell/front.svg",
  15000. extra: 984/856,
  15001. bottom: 87/1071
  15002. }
  15003. },
  15004. back: {
  15005. height: math.unit(7 + 4/12, "feet"),
  15006. weight: math.unit(690, "lb"),
  15007. name: "Back",
  15008. image: {
  15009. source: "./media/characters/geno-maxwell/back.svg",
  15010. extra: 981/854,
  15011. bottom: 57/1038
  15012. }
  15013. },
  15014. frontCostume: {
  15015. height: math.unit(7 + 4/12, "feet"),
  15016. weight: math.unit(690, "lb"),
  15017. name: "Front (Costume)",
  15018. image: {
  15019. source: "./media/characters/geno-maxwell/front-costume.svg",
  15020. extra: 984/856,
  15021. bottom: 87/1071
  15022. }
  15023. },
  15024. backcostume: {
  15025. height: math.unit(7 + 4/12, "feet"),
  15026. weight: math.unit(690, "lb"),
  15027. name: "Back (Costume)",
  15028. image: {
  15029. source: "./media/characters/geno-maxwell/back-costume.svg",
  15030. extra: 981/854,
  15031. bottom: 57/1038
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Micro",
  15038. height: math.unit(3, "inches")
  15039. },
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(7 + 4 / 12, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(220, "feet")
  15048. },
  15049. {
  15050. name: "Megamacro",
  15051. height: math.unit(11, "miles")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(7 + 4/12, "feet"),
  15060. weight: math.unit(750, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/regena-maxwell/front.svg",
  15064. extra: 984/856,
  15065. bottom: 87/1071
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(7 + 4/12, "feet"),
  15070. weight: math.unit(750, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/regena-maxwell/back.svg",
  15074. extra: 981/854,
  15075. bottom: 57/1038
  15076. }
  15077. },
  15078. frontCostume: {
  15079. height: math.unit(7 + 4/12, "feet"),
  15080. weight: math.unit(750, "lb"),
  15081. name: "Front (Costume)",
  15082. image: {
  15083. source: "./media/characters/regena-maxwell/front-costume.svg",
  15084. extra: 984/856,
  15085. bottom: 87/1071
  15086. }
  15087. },
  15088. backcostume: {
  15089. height: math.unit(7 + 4/12, "feet"),
  15090. weight: math.unit(750, "lb"),
  15091. name: "Back (Costume)",
  15092. image: {
  15093. source: "./media/characters/regena-maxwell/back-costume.svg",
  15094. extra: 981/854,
  15095. bottom: 57/1038
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(7 + 4 / 12, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro",
  15107. height: math.unit(220, "feet")
  15108. },
  15109. {
  15110. name: "Megamacro",
  15111. height: math.unit(11, "miles")
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(6, "feet"),
  15120. weight: math.unit(150, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15124. extra: 860 / 690,
  15125. bottom: 0.03
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(1.7, "meters"),
  15133. default: true
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15139. {
  15140. front: {
  15141. height: math.unit(6, "feet"),
  15142. weight: math.unit(150, "lb"),
  15143. name: "Front",
  15144. image: {
  15145. source: "./media/characters/quilly/front.svg",
  15146. extra: 890 / 776
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Gigamacro",
  15153. height: math.unit(404090, "miles"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(7 + 8 / 12, "feet"),
  15163. weight: math.unit(350, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/tempest/front.svg",
  15167. extra: 1175 / 1086,
  15168. bottom: 0.02
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(7 + 8 / 12, "feet"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15182. {
  15183. side: {
  15184. height: math.unit(4 + 5 / 12, "feet"),
  15185. weight: math.unit(80, "lb"),
  15186. name: "Side",
  15187. image: {
  15188. source: "./media/characters/rodger/side.svg",
  15189. extra: 1235 / 1118
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Micro",
  15196. height: math.unit(1, "inch")
  15197. },
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(4 + 5 / 12, "feet"),
  15201. default: true
  15202. },
  15203. {
  15204. name: "Macro",
  15205. height: math.unit(120, "feet")
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/danyel/front.svg",
  15218. extra: 1185 / 1123,
  15219. bottom: 0.05
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Shrunken",
  15226. height: math.unit(0.5, "mm")
  15227. },
  15228. {
  15229. name: "Micro",
  15230. height: math.unit(1, "mm"),
  15231. default: true
  15232. },
  15233. {
  15234. name: "Upsized",
  15235. height: math.unit(5 + 5 / 12, "feet")
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15241. {
  15242. front: {
  15243. height: math.unit(5 + 6 / 12, "feet"),
  15244. weight: math.unit(200, "lb"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/vivian-bijoux/front.svg",
  15248. extra: 1217/1209,
  15249. bottom: 76/1293
  15250. }
  15251. },
  15252. back: {
  15253. height: math.unit(5 + 6 / 12, "feet"),
  15254. weight: math.unit(200, "lb"),
  15255. name: "Back",
  15256. image: {
  15257. source: "./media/characters/vivian-bijoux/back.svg",
  15258. extra: 1214/1208,
  15259. bottom: 51/1265
  15260. }
  15261. },
  15262. dressed: {
  15263. height: math.unit(5 + 6 / 12, "feet"),
  15264. weight: math.unit(200, "lb"),
  15265. name: "Dressed",
  15266. image: {
  15267. source: "./media/characters/vivian-bijoux/dressed.svg",
  15268. extra: 1217/1209,
  15269. bottom: 76/1293
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 6 / 12, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Bad Dream",
  15281. height: math.unit(500, "feet")
  15282. },
  15283. {
  15284. name: "Nightmare",
  15285. height: math.unit(500, "miles")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6 + 1 / 12, "feet"),
  15294. weight: math.unit(260, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/zeta/front.svg",
  15298. extra: 1968 / 1889,
  15299. bottom: 0.06
  15300. }
  15301. },
  15302. back: {
  15303. height: math.unit(6 + 1 / 12, "feet"),
  15304. weight: math.unit(260, "lb"),
  15305. name: "Back",
  15306. image: {
  15307. source: "./media/characters/zeta/back.svg",
  15308. extra: 1944 / 1858,
  15309. bottom: 0.03
  15310. }
  15311. },
  15312. hand: {
  15313. height: math.unit(1.112, "feet"),
  15314. name: "Hand",
  15315. image: {
  15316. source: "./media/characters/zeta/hand.svg"
  15317. }
  15318. },
  15319. foot: {
  15320. height: math.unit(1.48, "feet"),
  15321. name: "Foot",
  15322. image: {
  15323. source: "./media/characters/zeta/foot.svg"
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Micro",
  15330. height: math.unit(6, "inches")
  15331. },
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(6 + 1 / 12, "feet"),
  15335. default: true
  15336. },
  15337. {
  15338. name: "Macro",
  15339. height: math.unit(20, "feet")
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(150, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/jamie-larsen/front.svg",
  15352. extra: 962 / 933,
  15353. bottom: 0.02
  15354. }
  15355. },
  15356. back: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Back",
  15360. image: {
  15361. source: "./media/characters/jamie-larsen/back.svg",
  15362. extra: 997 / 946
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(28 + 7 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Macro+",
  15374. height: math.unit(180, "feet")
  15375. },
  15376. {
  15377. name: "Megamacro",
  15378. height: math.unit(10, "miles")
  15379. },
  15380. {
  15381. name: "Gigamacro",
  15382. height: math.unit(200000, "miles")
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15388. {
  15389. front: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(120, "lb"),
  15392. name: "Front",
  15393. image: {
  15394. source: "./media/characters/vance/front.svg",
  15395. extra: 1980 / 1890,
  15396. bottom: 0.09
  15397. }
  15398. },
  15399. back: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(120, "lb"),
  15402. name: "Back",
  15403. image: {
  15404. source: "./media/characters/vance/back.svg",
  15405. extra: 2081 / 1994,
  15406. bottom: 0.014
  15407. }
  15408. },
  15409. hand: {
  15410. height: math.unit(0.88, "feet"),
  15411. name: "Hand",
  15412. image: {
  15413. source: "./media/characters/vance/hand.svg"
  15414. }
  15415. },
  15416. foot: {
  15417. height: math.unit(0.64, "feet"),
  15418. name: "Foot",
  15419. image: {
  15420. source: "./media/characters/vance/foot.svg"
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Small",
  15427. height: math.unit(90, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Macro",
  15432. height: math.unit(100, "meters")
  15433. },
  15434. {
  15435. name: "Megamacro",
  15436. height: math.unit(15, "miles")
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15442. {
  15443. front: {
  15444. height: math.unit(6, "feet"),
  15445. weight: math.unit(180, "lb"),
  15446. name: "Front",
  15447. image: {
  15448. source: "./media/characters/xochitl/front.svg",
  15449. extra: 2297 / 2261,
  15450. bottom: 0.065
  15451. }
  15452. },
  15453. back: {
  15454. height: math.unit(6, "feet"),
  15455. weight: math.unit(180, "lb"),
  15456. name: "Back",
  15457. image: {
  15458. source: "./media/characters/xochitl/back.svg",
  15459. extra: 2386 / 2354,
  15460. bottom: 0.01
  15461. }
  15462. },
  15463. foot: {
  15464. height: math.unit(6 / 5 * 1.15, "feet"),
  15465. weight: math.unit(150, "lb"),
  15466. name: "Foot",
  15467. image: {
  15468. source: "./media/characters/xochitl/foot.svg"
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(80, "feet")
  15476. },
  15477. {
  15478. name: "Macro+",
  15479. height: math.unit(400, "feet"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Gigamacro",
  15484. height: math.unit(80000, "miles")
  15485. },
  15486. {
  15487. name: "Gigamacro+",
  15488. height: math.unit(400000, "miles")
  15489. },
  15490. {
  15491. name: "Teramacro",
  15492. height: math.unit(300, "AU")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/vincent/front.svg",
  15505. extra: 1130 / 1080,
  15506. bottom: 0.055
  15507. }
  15508. },
  15509. beak: {
  15510. height: math.unit(6 * 0.1, "feet"),
  15511. name: "Beak",
  15512. image: {
  15513. source: "./media/characters/vincent/beak.svg"
  15514. }
  15515. },
  15516. hand: {
  15517. height: math.unit(6 * 0.85, "feet"),
  15518. weight: math.unit(150, "lb"),
  15519. name: "Hand",
  15520. image: {
  15521. source: "./media/characters/vincent/hand.svg"
  15522. }
  15523. },
  15524. foot: {
  15525. height: math.unit(6 * 0.19, "feet"),
  15526. weight: math.unit(150, "lb"),
  15527. name: "Foot",
  15528. image: {
  15529. source: "./media/characters/vincent/foot.svg"
  15530. }
  15531. },
  15532. },
  15533. [
  15534. {
  15535. name: "Base",
  15536. height: math.unit(6 + 5 / 12, "feet"),
  15537. default: true
  15538. },
  15539. {
  15540. name: "Macro",
  15541. height: math.unit(300, "feet")
  15542. },
  15543. {
  15544. name: "Megamacro",
  15545. height: math.unit(2, "miles")
  15546. },
  15547. {
  15548. name: "Gigamacro",
  15549. height: math.unit(1000, "miles")
  15550. },
  15551. ]
  15552. ))
  15553. characterMakers.push(() => makeCharacter(
  15554. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15555. {
  15556. front: {
  15557. height: math.unit(2, "meters"),
  15558. weight: math.unit(500, "kg"),
  15559. name: "Front",
  15560. image: {
  15561. source: "./media/characters/coatl/front.svg",
  15562. extra: 3948 / 3500,
  15563. bottom: 0.082
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(4, "meters")
  15571. },
  15572. {
  15573. name: "Macro",
  15574. height: math.unit(100, "meters"),
  15575. default: true
  15576. },
  15577. {
  15578. name: "Macro+",
  15579. height: math.unit(300, "meters")
  15580. },
  15581. {
  15582. name: "Megamacro",
  15583. height: math.unit(3, "gigameters")
  15584. },
  15585. {
  15586. name: "Megamacro+",
  15587. height: math.unit(300, "terameters")
  15588. },
  15589. {
  15590. name: "Megamacro++",
  15591. height: math.unit(3, "lightyears")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(50, "kg"),
  15601. name: "front",
  15602. image: {
  15603. source: "./media/characters/shiroryu/front.svg",
  15604. extra: 1990 / 1935
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Mortal Mingling",
  15611. height: math.unit(3, "meters")
  15612. },
  15613. {
  15614. name: "Kaiju-ish",
  15615. height: math.unit(250, "meters")
  15616. },
  15617. {
  15618. name: "Somewhat Godly",
  15619. height: math.unit(400, "km"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Planetary",
  15624. height: math.unit(300, "megameters")
  15625. },
  15626. {
  15627. name: "Galaxy-dwarfing",
  15628. height: math.unit(450, "kiloparsecs")
  15629. },
  15630. {
  15631. name: "Universe Eater",
  15632. height: math.unit(150, "gigaparsecs")
  15633. },
  15634. {
  15635. name: "Almost Immeasurable",
  15636. height: math.unit(1.3e266, "yottaparsecs")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(6, "feet"),
  15645. weight: math.unit(150, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/umeko/front.svg",
  15649. extra: 1,
  15650. bottom: 0.019
  15651. }
  15652. },
  15653. frontArmored: {
  15654. height: math.unit(6, "feet"),
  15655. weight: math.unit(150, "lb"),
  15656. name: "Front (Armored)",
  15657. image: {
  15658. source: "./media/characters/umeko/front-armored.svg",
  15659. extra: 1,
  15660. bottom: 0.021
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Macro",
  15667. height: math.unit(220, "feet"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Guardian Dragon",
  15672. height: math.unit(50, "miles")
  15673. },
  15674. {
  15675. name: "Cosmic",
  15676. height: math.unit(800000, "miles")
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(150, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/cassidy/front.svg",
  15689. extra: 810/808,
  15690. bottom: 41/851
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Canon Height",
  15697. height: math.unit(120, "feet"),
  15698. default: true
  15699. },
  15700. {
  15701. name: "Macro+",
  15702. height: math.unit(400, "feet")
  15703. },
  15704. {
  15705. name: "Macro++",
  15706. height: math.unit(4000, "feet")
  15707. },
  15708. {
  15709. name: "Megamacro",
  15710. height: math.unit(3, "miles")
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(6, "feet"),
  15719. weight: math.unit(150, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/isaac/front.svg",
  15723. extra: 896 / 815,
  15724. bottom: 0.11
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Human Size",
  15731. height: math.unit(8, "feet"),
  15732. default: true
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(400, "feet")
  15737. },
  15738. {
  15739. name: "Megamacro",
  15740. height: math.unit(50, "miles")
  15741. },
  15742. {
  15743. name: "Canon Height",
  15744. height: math.unit(200, "AU")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(6, "feet"),
  15753. weight: math.unit(72, "kg"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/sleekit/front.svg",
  15757. extra: 4693 / 4487,
  15758. bottom: 0.012
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Minimum Height",
  15765. height: math.unit(10, "meters")
  15766. },
  15767. {
  15768. name: "Smaller",
  15769. height: math.unit(25, "meters")
  15770. },
  15771. {
  15772. name: "Larger",
  15773. height: math.unit(38, "meters"),
  15774. default: true
  15775. },
  15776. {
  15777. name: "Maximum height",
  15778. height: math.unit(100, "meters")
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(6, "feet"),
  15787. weight: math.unit(150, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/nillia/front.svg",
  15791. extra: 719/665,
  15792. bottom: 6/725
  15793. }
  15794. },
  15795. back: {
  15796. height: math.unit(6, "feet"),
  15797. weight: math.unit(150, "lb"),
  15798. name: "Back",
  15799. image: {
  15800. source: "./media/characters/nillia/back.svg",
  15801. extra: 705/651,
  15802. bottom: 5/710
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Canon Height",
  15809. height: math.unit(489, "feet"),
  15810. default: true
  15811. }
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(6, "feet"),
  15819. weight: math.unit(150, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/mesmyriza/front.svg",
  15823. extra: 2067 / 1784,
  15824. bottom: 0.035
  15825. }
  15826. },
  15827. foot: {
  15828. height: math.unit(6 / (250 / 35), "feet"),
  15829. name: "Foot",
  15830. image: {
  15831. source: "./media/characters/mesmyriza/foot.svg"
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Macro",
  15838. height: math.unit(457, "meters"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Megamacro",
  15843. height: math.unit(8, "megameters")
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(6, "feet"),
  15852. weight: math.unit(250, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/saudade/front.svg",
  15856. extra: 1172 / 1139,
  15857. bottom: 0.035
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Micro",
  15864. height: math.unit(3, "inches")
  15865. },
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(6, "feet"),
  15869. default: true
  15870. },
  15871. {
  15872. name: "Macro",
  15873. height: math.unit(50, "feet")
  15874. },
  15875. {
  15876. name: "Megamacro",
  15877. height: math.unit(2800, "feet")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 4 / 12, "feet"),
  15886. weight: math.unit(100, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/keireer/front.svg",
  15890. extra: 716 / 666,
  15891. bottom: 0.05
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 4 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5.5, "feet"),
  15908. weight: math.unit(90, "kg"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/mirja/front.svg",
  15912. extra: 1452/1262,
  15913. bottom: 67/1519
  15914. }
  15915. },
  15916. frontDressed: {
  15917. height: math.unit(5.5, "feet"),
  15918. weight: math.unit(90, "lb"),
  15919. name: "Front (Dressed)",
  15920. image: {
  15921. source: "./media/characters/mirja/dressed.svg",
  15922. extra: 1452/1262,
  15923. bottom: 67/1519
  15924. }
  15925. },
  15926. back: {
  15927. height: math.unit(6, "feet"),
  15928. weight: math.unit(90, "lb"),
  15929. name: "Back",
  15930. image: {
  15931. source: "./media/characters/mirja/back.svg",
  15932. extra: 1892/1795,
  15933. bottom: 48/1940
  15934. }
  15935. },
  15936. maw: {
  15937. height: math.unit(1.312, "feet"),
  15938. name: "Maw",
  15939. image: {
  15940. source: "./media/characters/mirja/maw.svg"
  15941. }
  15942. },
  15943. paw: {
  15944. height: math.unit(1.15, "feet"),
  15945. name: "Paw",
  15946. image: {
  15947. source: "./media/characters/mirja/paw.svg"
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "\"Incognito\"",
  15954. height: math.unit(3, "meters")
  15955. },
  15956. {
  15957. name: "Strolling Size",
  15958. height: math.unit(15, "km")
  15959. },
  15960. {
  15961. name: "Larger Strolling Size",
  15962. height: math.unit(400, "km")
  15963. },
  15964. {
  15965. name: "Preferred Size",
  15966. height: math.unit(5000, "km"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "True Size",
  15971. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(15, "feet"),
  15980. weight: math.unit(880, "kg"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/nightraver/front.svg",
  15984. extra: 2444 / 2160,
  15985. bottom: 0.027
  15986. }
  15987. },
  15988. back: {
  15989. height: math.unit(15, "feet"),
  15990. weight: math.unit(880, "kg"),
  15991. name: "Back",
  15992. image: {
  15993. source: "./media/characters/nightraver/back.svg",
  15994. extra: 2309 / 2180,
  15995. bottom: 0.005
  15996. }
  15997. },
  15998. sole: {
  15999. height: math.unit(2.878, "feet"),
  16000. name: "Sole",
  16001. image: {
  16002. source: "./media/characters/nightraver/sole.svg"
  16003. }
  16004. },
  16005. foot: {
  16006. height: math.unit(2.285, "feet"),
  16007. name: "Foot",
  16008. image: {
  16009. source: "./media/characters/nightraver/foot.svg"
  16010. }
  16011. },
  16012. maw: {
  16013. height: math.unit(2.67, "feet"),
  16014. name: "Maw",
  16015. image: {
  16016. source: "./media/characters/nightraver/maw.svg"
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Micro",
  16023. height: math.unit(1, "cm")
  16024. },
  16025. {
  16026. name: "Normal",
  16027. height: math.unit(15, "feet"),
  16028. default: true
  16029. },
  16030. {
  16031. name: "Macro",
  16032. height: math.unit(300, "feet")
  16033. },
  16034. {
  16035. name: "Megamacro",
  16036. height: math.unit(300, "miles")
  16037. },
  16038. {
  16039. name: "Gigamacro",
  16040. height: math.unit(10000, "miles")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16046. {
  16047. side: {
  16048. height: math.unit(2, "inches"),
  16049. weight: math.unit(5, "grams"),
  16050. name: "Side",
  16051. image: {
  16052. source: "./media/characters/arc/side.svg"
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Micro",
  16059. height: math.unit(2, "inches"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(1.1938, "meters"),
  16069. weight: math.unit(54, "kg"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/nebula-shahar/front.svg",
  16073. extra: 1642 / 1436,
  16074. bottom: 0.06
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Megamicro",
  16081. height: math.unit(0.3, "mm")
  16082. },
  16083. {
  16084. name: "Micro",
  16085. height: math.unit(3, "cm")
  16086. },
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(138, "cm"),
  16090. default: true
  16091. },
  16092. {
  16093. name: "Macro",
  16094. height: math.unit(30, "m")
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(5.24, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/shayla/front.svg",
  16107. extra: 1512 / 1414,
  16108. bottom: 0.01
  16109. }
  16110. },
  16111. back: {
  16112. height: math.unit(5.24, "feet"),
  16113. weight: math.unit(150, "lb"),
  16114. name: "Back",
  16115. image: {
  16116. source: "./media/characters/shayla/back.svg",
  16117. extra: 1512 / 1414
  16118. }
  16119. },
  16120. hand: {
  16121. height: math.unit(0.7781496062992126, "feet"),
  16122. name: "Hand",
  16123. image: {
  16124. source: "./media/characters/shayla/hand.svg"
  16125. }
  16126. },
  16127. foot: {
  16128. height: math.unit(1.4206036745406823, "feet"),
  16129. name: "Foot",
  16130. image: {
  16131. source: "./media/characters/shayla/foot.svg"
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Micro",
  16138. height: math.unit(0.32, "feet")
  16139. },
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(5.24, "feet"),
  16143. default: true
  16144. },
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(492.12, "feet")
  16148. },
  16149. {
  16150. name: "Megamacro",
  16151. height: math.unit(186.41, "miles")
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(2.2, "m"),
  16160. weight: math.unit(120, "kg"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/pia-jr/front.svg",
  16164. extra: 1000 / 970,
  16165. bottom: 0.035
  16166. }
  16167. },
  16168. hand: {
  16169. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16170. name: "Hand",
  16171. image: {
  16172. source: "./media/characters/pia-jr/hand.svg"
  16173. }
  16174. },
  16175. paw: {
  16176. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16177. name: "Paw",
  16178. image: {
  16179. source: "./media/characters/pia-jr/paw.svg"
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Micro",
  16186. height: math.unit(1.2, "cm")
  16187. },
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(2.2, "m"),
  16191. default: true
  16192. },
  16193. {
  16194. name: "Macro",
  16195. height: math.unit(180, "m")
  16196. },
  16197. {
  16198. name: "Megamacro",
  16199. height: math.unit(420, "km")
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16205. {
  16206. front: {
  16207. height: math.unit(2, "m"),
  16208. weight: math.unit(115, "kg"),
  16209. name: "Front",
  16210. image: {
  16211. source: "./media/characters/pia-sr/front.svg",
  16212. extra: 760 / 730,
  16213. bottom: 0.015
  16214. }
  16215. },
  16216. back: {
  16217. height: math.unit(2, "m"),
  16218. weight: math.unit(115, "kg"),
  16219. name: "Back",
  16220. image: {
  16221. source: "./media/characters/pia-sr/back.svg",
  16222. extra: 760 / 730,
  16223. bottom: 0.01
  16224. }
  16225. },
  16226. hand: {
  16227. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16228. name: "Hand",
  16229. image: {
  16230. source: "./media/characters/pia-sr/hand.svg"
  16231. }
  16232. },
  16233. foot: {
  16234. height: math.unit(1.83, "feet"),
  16235. name: "Foot",
  16236. image: {
  16237. source: "./media/characters/pia-sr/foot.svg"
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Micro",
  16244. height: math.unit(88, "mm")
  16245. },
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(2, "m"),
  16249. default: true
  16250. },
  16251. {
  16252. name: "Macro",
  16253. height: math.unit(200, "m")
  16254. },
  16255. {
  16256. name: "Megamacro",
  16257. height: math.unit(420, "km")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(8 + 2 / 12, "feet"),
  16266. weight: math.unit(300, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/kibibyte/front.svg",
  16270. extra: 2221 / 2098,
  16271. bottom: 0.04
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(8 + 2 / 12, "feet"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Socialable Macro",
  16283. height: math.unit(50, "feet")
  16284. },
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(300, "feet")
  16288. },
  16289. {
  16290. name: "Megamacro",
  16291. height: math.unit(500, "miles")
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16297. {
  16298. front: {
  16299. height: math.unit(6, "feet"),
  16300. weight: math.unit(150, "lb"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/felix/front.svg",
  16304. extra: 762 / 722,
  16305. bottom: 0.02
  16306. }
  16307. },
  16308. frontClothed: {
  16309. height: math.unit(6, "feet"),
  16310. weight: math.unit(150, "lb"),
  16311. name: "Front (Clothed)",
  16312. image: {
  16313. source: "./media/characters/felix/front-clothed.svg",
  16314. extra: 762 / 722,
  16315. bottom: 0.02
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(6 + 8 / 12, "feet"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Macro",
  16327. height: math.unit(2600, "feet")
  16328. },
  16329. {
  16330. name: "Megamacro",
  16331. height: math.unit(450, "miles")
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16337. {
  16338. front: {
  16339. height: math.unit(6 + 1 / 12, "feet"),
  16340. weight: math.unit(250, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/tobo/front.svg",
  16344. extra: 608 / 586,
  16345. bottom: 0.023
  16346. }
  16347. },
  16348. back: {
  16349. height: math.unit(6 + 1 / 12, "feet"),
  16350. weight: math.unit(250, "lb"),
  16351. name: "Back",
  16352. image: {
  16353. source: "./media/characters/tobo/back.svg",
  16354. extra: 608 / 586
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Nano",
  16361. height: math.unit(2, "nm")
  16362. },
  16363. {
  16364. name: "Megamicro",
  16365. height: math.unit(0.1, "mm")
  16366. },
  16367. {
  16368. name: "Micro",
  16369. height: math.unit(1, "inch"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Human-sized",
  16374. height: math.unit(6 + 1 / 12, "feet")
  16375. },
  16376. {
  16377. name: "Macro",
  16378. height: math.unit(250, "feet")
  16379. },
  16380. {
  16381. name: "Megamacro",
  16382. height: math.unit(75, "miles")
  16383. },
  16384. {
  16385. name: "Texas-sized",
  16386. height: math.unit(750, "miles")
  16387. },
  16388. {
  16389. name: "Teramacro",
  16390. height: math.unit(50000, "miles")
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(269, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/danny-kapowsky/front.svg",
  16403. extra: 766 / 736,
  16404. bottom: 0.044
  16405. }
  16406. },
  16407. back: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(269, "lb"),
  16410. name: "Back",
  16411. image: {
  16412. source: "./media/characters/danny-kapowsky/back.svg",
  16413. extra: 797 / 760,
  16414. bottom: 0.025
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Macro",
  16421. height: math.unit(150, "feet"),
  16422. default: true
  16423. },
  16424. {
  16425. name: "Macro+",
  16426. height: math.unit(200, "feet")
  16427. },
  16428. {
  16429. name: "Macro++",
  16430. height: math.unit(300, "feet")
  16431. },
  16432. {
  16433. name: "Macro+++",
  16434. height: math.unit(400, "feet")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16440. {
  16441. side: {
  16442. height: math.unit(6, "feet"),
  16443. weight: math.unit(170, "lb"),
  16444. name: "Side",
  16445. image: {
  16446. source: "./media/characters/finn/side.svg",
  16447. extra: 1953 / 1807,
  16448. bottom: 0.057
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Megamacro",
  16455. height: math.unit(14445, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(5 + 6 / 12, "feet"),
  16465. weight: math.unit(125, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/roy/front.svg",
  16469. extra: 1,
  16470. bottom: 0.11
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Micro",
  16477. height: math.unit(3, "inches"),
  16478. default: true
  16479. },
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(5 + 6 / 12, "feet")
  16483. },
  16484. {
  16485. name: "Lesser Macro",
  16486. height: math.unit(60, "feet")
  16487. },
  16488. {
  16489. name: "Greater Macro",
  16490. height: math.unit(120, "feet")
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16496. {
  16497. front: {
  16498. height: math.unit(6, "feet"),
  16499. weight: math.unit(100, "lb"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/aevsivs/front.svg",
  16503. extra: 1,
  16504. bottom: 0.03
  16505. }
  16506. },
  16507. back: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(100, "lb"),
  16510. name: "Back",
  16511. image: {
  16512. source: "./media/characters/aevsivs/back.svg"
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Micro",
  16519. height: math.unit(2, "inches"),
  16520. default: true
  16521. },
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(5, "feet")
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(5 + 7 / 12, "feet"),
  16533. weight: math.unit(159, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/hildegard/front.svg",
  16537. extra: 289 / 269,
  16538. bottom: 7.63 / 297.8
  16539. }
  16540. },
  16541. back: {
  16542. height: math.unit(5 + 7 / 12, "feet"),
  16543. weight: math.unit(159, "lb"),
  16544. name: "Back",
  16545. image: {
  16546. source: "./media/characters/hildegard/back.svg",
  16547. extra: 280 / 260,
  16548. bottom: 2.3 / 282
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 7 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16562. {
  16563. bernard: {
  16564. height: math.unit(2 + 7 / 12, "feet"),
  16565. weight: math.unit(66, "lb"),
  16566. name: "Bernard",
  16567. rename: true,
  16568. image: {
  16569. source: "./media/characters/bernard-wilder/bernard.svg",
  16570. extra: 192 / 128,
  16571. bottom: 0.05
  16572. }
  16573. },
  16574. wilder: {
  16575. height: math.unit(5 + 8 / 12, "feet"),
  16576. weight: math.unit(143, "lb"),
  16577. name: "Wilder",
  16578. rename: true,
  16579. image: {
  16580. source: "./media/characters/bernard-wilder/wilder.svg",
  16581. extra: 361 / 312,
  16582. bottom: 0.02
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(2 + 7 / 12, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16596. {
  16597. anthro: {
  16598. height: math.unit(6 + 1 / 12, "feet"),
  16599. weight: math.unit(155, "lb"),
  16600. name: "Anthro",
  16601. image: {
  16602. source: "./media/characters/hearth/anthro.svg",
  16603. extra: 1178/1136,
  16604. bottom: 28/1206
  16605. }
  16606. },
  16607. feral: {
  16608. height: math.unit(3.78, "feet"),
  16609. weight: math.unit(35, "kg"),
  16610. name: "Feral",
  16611. image: {
  16612. source: "./media/characters/hearth/feral.svg",
  16613. extra: 153 / 135,
  16614. bottom: 0.03
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(6 + 1 / 12, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(6, "feet"),
  16631. weight: math.unit(182, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/ingrid/front.svg",
  16635. extra: 294 / 268,
  16636. bottom: 0.027
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(6, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16650. {
  16651. eevee: {
  16652. height: math.unit(2 + 10 / 12, "feet"),
  16653. weight: math.unit(86, "lb"),
  16654. name: "Malgam",
  16655. image: {
  16656. source: "./media/characters/malgam/eevee.svg",
  16657. extra: 952/784,
  16658. bottom: 38/990
  16659. }
  16660. },
  16661. sylveon: {
  16662. height: math.unit(4, "feet"),
  16663. weight: math.unit(101, "lb"),
  16664. name: "Future Malgam",
  16665. rename: true,
  16666. image: {
  16667. source: "./media/characters/malgam/sylveon.svg",
  16668. extra: 371 / 325,
  16669. bottom: 0.015
  16670. }
  16671. },
  16672. gigantamax: {
  16673. height: math.unit(50, "feet"),
  16674. name: "Gigantamax Malgam",
  16675. rename: true,
  16676. image: {
  16677. source: "./media/characters/malgam/gigantamax.svg"
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(2 + 10 / 12, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(5 + 11 / 12, "feet"),
  16694. weight: math.unit(188, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/fleur/front.svg",
  16698. extra: 309 / 283,
  16699. bottom: 0.007
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(5 + 11 / 12, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(5 + 4 / 12, "feet"),
  16716. weight: math.unit(122, "lb"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/jude/front.svg",
  16720. extra: 288 / 273,
  16721. bottom: 0.03
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(5 + 4 / 12, "feet"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(5 + 11 / 12, "feet"),
  16738. weight: math.unit(190, "lb"),
  16739. name: "Front",
  16740. image: {
  16741. source: "./media/characters/seara/front.svg",
  16742. extra: 1,
  16743. bottom: 0.05
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(5 + 11 / 12, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(16 + 5 / 12, "feet"),
  16760. weight: math.unit(524, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/caspian-lugia/front.svg",
  16764. extra: 1,
  16765. bottom: 0.04
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(16 + 5 / 12, "feet"),
  16773. default: true
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16779. {
  16780. front: {
  16781. height: math.unit(5 + 7 / 12, "feet"),
  16782. weight: math.unit(170, "lb"),
  16783. name: "Front",
  16784. image: {
  16785. source: "./media/characters/mika/front.svg",
  16786. extra: 1,
  16787. bottom: 0.016
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(5 + 7 / 12, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(6 + 2 / 12, "feet"),
  16804. weight: math.unit(268, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/sol/front.svg",
  16808. extra: 247 / 231,
  16809. bottom: 0.05
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(6 + 2 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16823. {
  16824. buizel: {
  16825. height: math.unit(2 + 5 / 12, "feet"),
  16826. weight: math.unit(87, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/umiko/buizel.svg",
  16830. extra: 172 / 157,
  16831. bottom: 0.01
  16832. },
  16833. form: "buizel",
  16834. default: true
  16835. },
  16836. floatzel: {
  16837. height: math.unit(5 + 9 / 12, "feet"),
  16838. weight: math.unit(250, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/umiko/floatzel.svg",
  16842. extra: 1076/1006,
  16843. bottom: 15/1091
  16844. },
  16845. form: "floatzel",
  16846. default: true
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(2 + 5 / 12, "feet"),
  16853. form: "buizel",
  16854. default: true
  16855. },
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(5 + 9 / 12, "feet"),
  16859. form: "floatzel",
  16860. default: true
  16861. },
  16862. ],
  16863. {
  16864. "buizel": {
  16865. name: "Buizel"
  16866. },
  16867. "floatzel": {
  16868. name: "Floatzel",
  16869. default: true
  16870. }
  16871. }
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(6 + 2 / 12, "feet"),
  16878. weight: math.unit(146, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/iliac/front.svg",
  16882. extra: 389 / 365,
  16883. bottom: 0.035
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(6 + 2 / 12, "feet"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(6, "feet"),
  16900. weight: math.unit(170, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/topaz/front.svg",
  16904. extra: 317 / 303,
  16905. bottom: 0.055
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(6, "feet"),
  16913. default: true
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(5 + 11 / 12, "feet"),
  16922. weight: math.unit(144, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/gabriel/front.svg",
  16926. extra: 285 / 262,
  16927. bottom: 0.004
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(5 + 11 / 12, "feet"),
  16935. default: true
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16941. {
  16942. side: {
  16943. height: math.unit(6 + 5 / 12, "feet"),
  16944. weight: math.unit(300, "lb"),
  16945. name: "Side",
  16946. image: {
  16947. source: "./media/characters/tempest-suicune/side.svg",
  16948. extra: 195 / 154,
  16949. bottom: 0.04
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(6 + 5 / 12, "feet"),
  16957. default: true
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(7 + 2 / 12, "feet"),
  16966. weight: math.unit(322, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/vulcan/front.svg",
  16970. extra: 154 / 147,
  16971. bottom: 0.04
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(7 + 2 / 12, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(5 + 10 / 12, "feet"),
  16988. weight: math.unit(264, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/gault/front.svg",
  16992. extra: 161 / 140,
  16993. bottom: 0.028
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(5 + 10 / 12, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(6, "feet"),
  17010. weight: math.unit(150, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/shard/front.svg",
  17014. extra: 273 / 238,
  17015. bottom: 0.02
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(3 + 6 / 12, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(5 + 11 / 12, "feet"),
  17032. weight: math.unit(146, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/ashe/front.svg",
  17036. extra: 400 / 373,
  17037. bottom: 0.01
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(5 + 11 / 12, "feet"),
  17045. default: true
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17051. {
  17052. front: {
  17053. height: math.unit(5 + 5 / 12, "feet"),
  17054. weight: math.unit(135, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/beatrix/front.svg",
  17058. extra: 392 / 379,
  17059. bottom: 0.01
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(6, "feet"),
  17067. default: true
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(6 + 2/12, "feet"),
  17076. weight: math.unit(135, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/ignatius/front.svg",
  17080. extra: 1380/1259,
  17081. bottom: 27/1407
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(6 + 2/12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(6 + 2 / 12, "feet"),
  17098. weight: math.unit(138, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/mei-li/front.svg",
  17102. extra: 237 / 229,
  17103. bottom: 0.03
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(6 + 2 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(2 + 4 / 12, "feet"),
  17120. weight: math.unit(62, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/puru/front.svg",
  17124. extra: 206 / 149,
  17125. bottom: 0.06
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(2 + 4 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17139. {
  17140. anthro: {
  17141. height: math.unit(5 + 8/12, "feet"),
  17142. weight: math.unit(200, "lb"),
  17143. energyNeed: math.unit(2000, "kcal"),
  17144. name: "Anthro",
  17145. image: {
  17146. source: "./media/characters/kee/anthro.svg",
  17147. extra: 3251/3184,
  17148. bottom: 250/3501
  17149. }
  17150. },
  17151. taur: {
  17152. height: math.unit(11, "feet"),
  17153. weight: math.unit(500, "lb"),
  17154. energyNeed: math.unit(5000, "kcal"),
  17155. name: "Taur",
  17156. image: {
  17157. source: "./media/characters/kee/taur.svg",
  17158. extra: 1362/1320,
  17159. bottom: 83/1445
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(5 + 8/12, "feet"),
  17167. default: true
  17168. },
  17169. {
  17170. name: "Macro",
  17171. height: math.unit(35, "feet")
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17177. {
  17178. anthro: {
  17179. height: math.unit(7, "feet"),
  17180. weight: math.unit(190, "lb"),
  17181. name: "Anthro",
  17182. image: {
  17183. source: "./media/characters/cobalt-dracha/anthro.svg",
  17184. extra: 231 / 225,
  17185. bottom: 0.04
  17186. }
  17187. },
  17188. feral: {
  17189. height: math.unit(9 + 7 / 12, "feet"),
  17190. weight: math.unit(294, "lb"),
  17191. name: "Feral",
  17192. image: {
  17193. source: "./media/characters/cobalt-dracha/feral.svg",
  17194. extra: 692 / 633,
  17195. bottom: 0.05
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(7, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17209. {
  17210. fallen: {
  17211. height: math.unit(11 + 8 / 12, "feet"),
  17212. weight: math.unit(485, "lb"),
  17213. name: "Java (Fallen)",
  17214. rename: true,
  17215. image: {
  17216. source: "./media/characters/java/fallen.svg",
  17217. extra: 226 / 208,
  17218. bottom: 0.005
  17219. }
  17220. },
  17221. godkin: {
  17222. height: math.unit(10 + 6 / 12, "feet"),
  17223. weight: math.unit(328, "lb"),
  17224. name: "Java (Godkin)",
  17225. rename: true,
  17226. image: {
  17227. source: "./media/characters/java/godkin.svg",
  17228. extra: 1104/1068,
  17229. bottom: 36/1140
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(11 + 8 / 12, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(5 + 9 / 12, "feet"),
  17246. weight: math.unit(170, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/purna/front.svg",
  17250. extra: 239 / 229,
  17251. bottom: 0.01
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(5 + 9 / 12, "feet"),
  17259. default: true
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(5 + 9 / 12, "feet"),
  17268. weight: math.unit(142, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/kuva/front.svg",
  17272. extra: 281 / 271,
  17273. bottom: 0.006
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(5 + 9 / 12, "feet"),
  17281. default: true
  17282. },
  17283. ]
  17284. ))
  17285. characterMakers.push(() => makeCharacter(
  17286. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17287. {
  17288. anthro: {
  17289. height: math.unit(9 + 2 / 12, "feet"),
  17290. weight: math.unit(270, "lb"),
  17291. name: "Anthro",
  17292. image: {
  17293. source: "./media/characters/embra/anthro.svg",
  17294. extra: 200 / 187,
  17295. bottom: 0.02
  17296. }
  17297. },
  17298. feral: {
  17299. height: math.unit(18 + 8 / 12, "feet"),
  17300. weight: math.unit(576, "lb"),
  17301. name: "Feral",
  17302. image: {
  17303. source: "./media/characters/embra/feral.svg",
  17304. extra: 152 / 137,
  17305. bottom: 0.037
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(9 + 2 / 12, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17319. {
  17320. anthro: {
  17321. height: math.unit(10 + 9 / 12, "feet"),
  17322. weight: math.unit(224, "lb"),
  17323. name: "Anthro",
  17324. image: {
  17325. source: "./media/characters/grottos/anthro.svg",
  17326. extra: 350 / 332,
  17327. bottom: 0.045
  17328. }
  17329. },
  17330. feral: {
  17331. height: math.unit(20 + 7 / 12, "feet"),
  17332. weight: math.unit(629, "lb"),
  17333. name: "Feral",
  17334. image: {
  17335. source: "./media/characters/grottos/feral.svg",
  17336. extra: 207 / 190,
  17337. bottom: 0.05
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(10 + 9 / 12, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17351. {
  17352. anthro: {
  17353. height: math.unit(9 + 6 / 12, "feet"),
  17354. weight: math.unit(298, "lb"),
  17355. name: "Anthro",
  17356. image: {
  17357. source: "./media/characters/frifna/anthro.svg",
  17358. extra: 282 / 269,
  17359. bottom: 0.015
  17360. }
  17361. },
  17362. feral: {
  17363. height: math.unit(16 + 2 / 12, "feet"),
  17364. weight: math.unit(624, "lb"),
  17365. name: "Feral",
  17366. image: {
  17367. source: "./media/characters/frifna/feral.svg"
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(9 + 6 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(6 + 2 / 12, "feet"),
  17384. weight: math.unit(168, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/elise/front.svg",
  17388. extra: 276 / 271
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(6 + 2 / 12, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(5 + 10 / 12, "feet"),
  17405. weight: math.unit(210, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/glade/front.svg",
  17409. extra: 258 / 247,
  17410. bottom: 0.008
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(5 + 10 / 12, "feet"),
  17418. default: true
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17424. {
  17425. front: {
  17426. height: math.unit(5 + 10 / 12, "feet"),
  17427. weight: math.unit(129, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/rina/front.svg",
  17431. extra: 266 / 255,
  17432. bottom: 0.005
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(5 + 10 / 12, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(6 + 1 / 12, "feet"),
  17449. weight: math.unit(192, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/veronica/front.svg",
  17453. extra: 319 / 309,
  17454. bottom: 0.005
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(6 + 1 / 12, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(9 + 3 / 12, "feet"),
  17471. weight: math.unit(1100, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/braxton/front.svg",
  17475. extra: 1057 / 984,
  17476. bottom: 0.05
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(9 + 3 / 12, "feet")
  17484. },
  17485. {
  17486. name: "Giant",
  17487. height: math.unit(300, "feet"),
  17488. default: true
  17489. },
  17490. {
  17491. name: "Macro",
  17492. height: math.unit(700, "feet")
  17493. },
  17494. {
  17495. name: "Megamacro",
  17496. height: math.unit(6000, "feet")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(6 + 7 / 12, "feet"),
  17505. weight: math.unit(150, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/blue-feyonics/front.svg",
  17509. extra: 1403 / 1306,
  17510. bottom: 0.047
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(6 + 7 / 12, "feet"),
  17518. default: true
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(1.8, "meters"),
  17527. weight: math.unit(60, "kg"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/maxwell/front.svg",
  17531. extra: 2060 / 1873
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Micro",
  17538. height: math.unit(1, "mm")
  17539. },
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(1.8, "meter"),
  17543. default: true
  17544. },
  17545. {
  17546. name: "Macro",
  17547. height: math.unit(30, "meters")
  17548. },
  17549. {
  17550. name: "Megamacro",
  17551. height: math.unit(10, "km")
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(150, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/jack/front.svg",
  17564. extra: 1754 / 1640,
  17565. bottom: 0.01
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(80000, "feet"),
  17573. default: true
  17574. },
  17575. {
  17576. name: "Max size",
  17577. height: math.unit(10, "lightyears")
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17583. {
  17584. urban: {
  17585. height: math.unit(5, "feet"),
  17586. weight: math.unit(240, "lb"),
  17587. name: "Urban",
  17588. image: {
  17589. source: "./media/characters/cafat/urban.svg",
  17590. extra: 1223/1126,
  17591. bottom: 205/1428
  17592. }
  17593. },
  17594. summer: {
  17595. height: math.unit(5, "feet"),
  17596. weight: math.unit(240, "lb"),
  17597. name: "Summer",
  17598. image: {
  17599. source: "./media/characters/cafat/summer.svg",
  17600. extra: 1223/1126,
  17601. bottom: 205/1428
  17602. }
  17603. },
  17604. winter: {
  17605. height: math.unit(5, "feet"),
  17606. weight: math.unit(240, "lb"),
  17607. name: "Winter",
  17608. image: {
  17609. source: "./media/characters/cafat/winter.svg",
  17610. extra: 1223/1126,
  17611. bottom: 205/1428
  17612. }
  17613. },
  17614. lingerie: {
  17615. height: math.unit(5, "feet"),
  17616. weight: math.unit(240, "lb"),
  17617. name: "Lingerie",
  17618. image: {
  17619. source: "./media/characters/cafat/lingerie.svg",
  17620. extra: 1223/1126,
  17621. bottom: 205/1428
  17622. }
  17623. },
  17624. upright: {
  17625. height: math.unit(6.3, "feet"),
  17626. weight: math.unit(240, "lb"),
  17627. name: "Upright",
  17628. image: {
  17629. source: "./media/characters/cafat/upright.svg",
  17630. bottom: 0.01
  17631. }
  17632. },
  17633. uprightFull: {
  17634. height: math.unit(6.3, "feet"),
  17635. weight: math.unit(240, "lb"),
  17636. name: "Upright (Full)",
  17637. image: {
  17638. source: "./media/characters/cafat/upright-full.svg",
  17639. bottom: 0.01
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Small",
  17646. height: math.unit(5, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Large",
  17651. height: math.unit(13, "feet")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(6, "feet"),
  17660. weight: math.unit(150, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/verin-raharra/front.svg",
  17664. extra: 5019 / 4835,
  17665. bottom: 0.023
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(7 + 5 / 12, "feet"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Upsized",
  17677. height: math.unit(20, "feet")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(7, "feet"),
  17686. weight: math.unit(230, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/nakata/front.svg",
  17690. extra: 1.005,
  17691. bottom: 0.01
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(7, "feet"),
  17699. default: true
  17700. },
  17701. {
  17702. name: "Big",
  17703. height: math.unit(14, "feet")
  17704. },
  17705. {
  17706. name: "Macro",
  17707. height: math.unit(400, "feet")
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(4.91, "feet"),
  17716. weight: math.unit(100, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/lily/front.svg",
  17720. extra: 1585 / 1415,
  17721. bottom: 0.02
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(4.91, "feet"),
  17729. default: true
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17735. {
  17736. laying: {
  17737. height: math.unit(4 + 4 / 12, "feet"),
  17738. weight: math.unit(600, "lb"),
  17739. name: "Laying",
  17740. image: {
  17741. source: "./media/characters/sheila/laying.svg",
  17742. extra: 1333 / 1265,
  17743. bottom: 0.16
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(4 + 4 / 12, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(6, "feet"),
  17760. weight: math.unit(190, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/sax/front.svg",
  17764. extra: 1187 / 973,
  17765. bottom: 0.042
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Micro",
  17772. height: math.unit(4, "inches"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(6, "feet"),
  17782. weight: math.unit(150, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/pandora/front.svg",
  17786. extra: 2720 / 2556,
  17787. bottom: 0.015
  17788. }
  17789. },
  17790. back: {
  17791. height: math.unit(6, "feet"),
  17792. weight: math.unit(150, "lb"),
  17793. name: "Back",
  17794. image: {
  17795. source: "./media/characters/pandora/back.svg",
  17796. extra: 2720 / 2556,
  17797. bottom: 0.01
  17798. }
  17799. },
  17800. beans: {
  17801. height: math.unit(6 / 8, "feet"),
  17802. name: "Beans",
  17803. image: {
  17804. source: "./media/characters/pandora/beans.svg"
  17805. }
  17806. },
  17807. collar: {
  17808. height: math.unit(0.31, "feet"),
  17809. name: "Collar",
  17810. image: {
  17811. source: "./media/characters/pandora/collar.svg"
  17812. }
  17813. },
  17814. skirt: {
  17815. height: math.unit(6, "feet"),
  17816. weight: math.unit(150, "lb"),
  17817. name: "Skirt",
  17818. image: {
  17819. source: "./media/characters/pandora/skirt.svg",
  17820. extra: 1622 / 1525,
  17821. bottom: 0.015
  17822. }
  17823. },
  17824. hoodie: {
  17825. height: math.unit(6, "feet"),
  17826. weight: math.unit(150, "lb"),
  17827. name: "Hoodie",
  17828. image: {
  17829. source: "./media/characters/pandora/hoodie.svg",
  17830. extra: 1622 / 1525,
  17831. bottom: 0.015
  17832. }
  17833. },
  17834. casual: {
  17835. height: math.unit(6, "feet"),
  17836. weight: math.unit(150, "lb"),
  17837. name: "Casual",
  17838. image: {
  17839. source: "./media/characters/pandora/casual.svg",
  17840. extra: 1622 / 1525,
  17841. bottom: 0.015
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(6, "feet")
  17849. },
  17850. {
  17851. name: "Big Steppy",
  17852. height: math.unit(1, "km"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Galactic Steppy",
  17857. height: math.unit(2, "gigameters")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17863. {
  17864. side: {
  17865. height: math.unit(10, "feet"),
  17866. weight: math.unit(800, "kg"),
  17867. name: "Side",
  17868. image: {
  17869. source: "./media/characters/venio-darcony/side.svg",
  17870. extra: 1373 / 1003,
  17871. bottom: 0.037
  17872. }
  17873. },
  17874. front: {
  17875. height: math.unit(19, "feet"),
  17876. weight: math.unit(800, "kg"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/venio-darcony/front.svg"
  17880. }
  17881. },
  17882. back: {
  17883. height: math.unit(19, "feet"),
  17884. weight: math.unit(800, "kg"),
  17885. name: "Back",
  17886. image: {
  17887. source: "./media/characters/venio-darcony/back.svg"
  17888. }
  17889. },
  17890. sideNsfw: {
  17891. height: math.unit(10, "feet"),
  17892. weight: math.unit(800, "kg"),
  17893. name: "Side (NSFW)",
  17894. image: {
  17895. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17896. extra: 1373 / 1003,
  17897. bottom: 0.037
  17898. }
  17899. },
  17900. frontNsfw: {
  17901. height: math.unit(19, "feet"),
  17902. weight: math.unit(800, "kg"),
  17903. name: "Front (NSFW)",
  17904. image: {
  17905. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17906. }
  17907. },
  17908. backNsfw: {
  17909. height: math.unit(19, "feet"),
  17910. weight: math.unit(800, "kg"),
  17911. name: "Back (NSFW)",
  17912. image: {
  17913. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17914. }
  17915. },
  17916. sideArmored: {
  17917. height: math.unit(10, "feet"),
  17918. weight: math.unit(800, "kg"),
  17919. name: "Side (Armored)",
  17920. image: {
  17921. source: "./media/characters/venio-darcony/side-armored.svg",
  17922. extra: 1373 / 1003,
  17923. bottom: 0.037
  17924. }
  17925. },
  17926. frontArmored: {
  17927. height: math.unit(19, "feet"),
  17928. weight: math.unit(900, "kg"),
  17929. name: "Front (Armored)",
  17930. image: {
  17931. source: "./media/characters/venio-darcony/front-armored.svg"
  17932. }
  17933. },
  17934. backArmored: {
  17935. height: math.unit(19, "feet"),
  17936. weight: math.unit(900, "kg"),
  17937. name: "Back (Armored)",
  17938. image: {
  17939. source: "./media/characters/venio-darcony/back-armored.svg"
  17940. }
  17941. },
  17942. sword: {
  17943. height: math.unit(10, "feet"),
  17944. weight: math.unit(50, "lb"),
  17945. name: "Sword",
  17946. image: {
  17947. source: "./media/characters/venio-darcony/sword.svg"
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(10, "feet")
  17955. },
  17956. {
  17957. name: "Macro",
  17958. height: math.unit(130, "feet"),
  17959. default: true
  17960. },
  17961. {
  17962. name: "Macro+",
  17963. height: math.unit(240, "feet")
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(150, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/veski/front.svg",
  17976. extra: 1299 / 1225,
  17977. bottom: 0.04
  17978. }
  17979. },
  17980. back: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Back",
  17984. image: {
  17985. source: "./media/characters/veski/back.svg",
  17986. extra: 1299 / 1225,
  17987. bottom: 0.008
  17988. }
  17989. },
  17990. maw: {
  17991. height: math.unit(1.5 * 1.21, "feet"),
  17992. name: "Maw",
  17993. image: {
  17994. source: "./media/characters/veski/maw.svg"
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Macro",
  18001. height: math.unit(2, "km"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(5 + 7 / 12, "feet"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/isabelle/front.svg",
  18014. extra: 2130 / 1976,
  18015. bottom: 0.05
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Supermicro",
  18022. height: math.unit(10, "micrometers")
  18023. },
  18024. {
  18025. name: "Micro",
  18026. height: math.unit(1, "inch")
  18027. },
  18028. {
  18029. name: "Tiny",
  18030. height: math.unit(5, "inches")
  18031. },
  18032. {
  18033. name: "Standard",
  18034. height: math.unit(5 + 7 / 12, "inches")
  18035. },
  18036. {
  18037. name: "Macro",
  18038. height: math.unit(80, "meters"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Megamacro",
  18043. height: math.unit(250, "meters")
  18044. },
  18045. {
  18046. name: "Gigamacro",
  18047. height: math.unit(5, "km")
  18048. },
  18049. {
  18050. name: "Cosmic",
  18051. height: math.unit(2.5e6, "miles")
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18057. {
  18058. front: {
  18059. height: math.unit(6, "feet"),
  18060. weight: math.unit(150, "lb"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/hanzo/front.svg",
  18064. extra: 374 / 344,
  18065. bottom: 0.02
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(8, "feet"),
  18073. default: true
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18079. {
  18080. front: {
  18081. height: math.unit(7, "feet"),
  18082. weight: math.unit(130, "lb"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/anna/front.svg",
  18086. extra: 169 / 145,
  18087. bottom: 0.06
  18088. }
  18089. },
  18090. full: {
  18091. height: math.unit(4.96, "feet"),
  18092. weight: math.unit(220, "lb"),
  18093. name: "Full",
  18094. image: {
  18095. source: "./media/characters/anna/full.svg",
  18096. extra: 138 / 114,
  18097. bottom: 0.15
  18098. }
  18099. },
  18100. tongue: {
  18101. height: math.unit(2.53, "feet"),
  18102. name: "Tongue",
  18103. image: {
  18104. source: "./media/characters/anna/tongue.svg"
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(7, "feet"),
  18112. default: true
  18113. },
  18114. ]
  18115. ))
  18116. characterMakers.push(() => makeCharacter(
  18117. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18118. {
  18119. front: {
  18120. height: math.unit(7, "feet"),
  18121. weight: math.unit(150, "lb"),
  18122. name: "Front",
  18123. image: {
  18124. source: "./media/characters/ian-corvid/front.svg",
  18125. extra: 150 / 142,
  18126. bottom: 0.02
  18127. }
  18128. },
  18129. back: {
  18130. height: math.unit(7, "feet"),
  18131. weight: math.unit(150, "lb"),
  18132. name: "Back",
  18133. image: {
  18134. source: "./media/characters/ian-corvid/back.svg",
  18135. extra: 150 / 143,
  18136. bottom: 0.01
  18137. }
  18138. },
  18139. stomping: {
  18140. height: math.unit(7, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Stomping",
  18143. image: {
  18144. source: "./media/characters/ian-corvid/stomping.svg",
  18145. extra: 76 / 72
  18146. }
  18147. },
  18148. sitting: {
  18149. height: math.unit(7 / 1.8, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Sitting",
  18152. image: {
  18153. source: "./media/characters/ian-corvid/sitting.svg",
  18154. extra: 1400 / 1269,
  18155. bottom: 0.15
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Tiny Microw",
  18162. height: math.unit(1, "inch")
  18163. },
  18164. {
  18165. name: "Microw",
  18166. height: math.unit(6, "inches")
  18167. },
  18168. {
  18169. name: "Crow",
  18170. height: math.unit(7 + 1 / 12, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Macrow",
  18175. height: math.unit(176, "feet")
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(5 + 7 / 12, "feet"),
  18184. weight: math.unit(147, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/natalie-kellon/front.svg",
  18188. extra: 1214 / 1141,
  18189. bottom: 0.02
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Micro",
  18196. height: math.unit(1 / 16, "inch")
  18197. },
  18198. {
  18199. name: "Tiny",
  18200. height: math.unit(4, "inches")
  18201. },
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(5 + 7 / 12, "feet"),
  18205. default: true
  18206. },
  18207. {
  18208. name: "Amazon",
  18209. height: math.unit(12, "feet")
  18210. },
  18211. {
  18212. name: "Giantess",
  18213. height: math.unit(160, "meters")
  18214. },
  18215. {
  18216. name: "Titaness",
  18217. height: math.unit(800, "meters")
  18218. },
  18219. ]
  18220. ))
  18221. characterMakers.push(() => makeCharacter(
  18222. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18223. {
  18224. front: {
  18225. height: math.unit(6, "feet"),
  18226. weight: math.unit(150, "lb"),
  18227. name: "Front",
  18228. image: {
  18229. source: "./media/characters/alluria/front.svg",
  18230. extra: 806 / 738,
  18231. bottom: 0.01
  18232. }
  18233. },
  18234. side: {
  18235. height: math.unit(6, "feet"),
  18236. weight: math.unit(150, "lb"),
  18237. name: "Side",
  18238. image: {
  18239. source: "./media/characters/alluria/side.svg",
  18240. extra: 800 / 750,
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(6, "feet"),
  18245. weight: math.unit(150, "lb"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/alluria/back.svg",
  18249. extra: 806 / 738,
  18250. }
  18251. },
  18252. frontMaid: {
  18253. height: math.unit(6, "feet"),
  18254. weight: math.unit(150, "lb"),
  18255. name: "Front (Maid)",
  18256. image: {
  18257. source: "./media/characters/alluria/front-maid.svg",
  18258. extra: 806 / 738,
  18259. bottom: 0.01
  18260. }
  18261. },
  18262. sideMaid: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Side (Maid)",
  18266. image: {
  18267. source: "./media/characters/alluria/side-maid.svg",
  18268. extra: 800 / 750,
  18269. bottom: 0.005
  18270. }
  18271. },
  18272. backMaid: {
  18273. height: math.unit(6, "feet"),
  18274. weight: math.unit(150, "lb"),
  18275. name: "Back (Maid)",
  18276. image: {
  18277. source: "./media/characters/alluria/back-maid.svg",
  18278. extra: 806 / 738,
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Micro",
  18285. height: math.unit(6, "inches"),
  18286. default: true
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(6, "feet"),
  18295. weight: math.unit(150, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/kyle/front.svg",
  18299. extra: 1069 / 962,
  18300. bottom: 77.228 / 1727.45
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Macro",
  18307. height: math.unit(150, "feet"),
  18308. default: true
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(6, "feet"),
  18317. weight: math.unit(300, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/duncan/front.svg",
  18321. extra: 1650 / 1482,
  18322. bottom: 0.05
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Macro",
  18329. height: math.unit(100, "feet"),
  18330. default: true
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(5 + 4 / 12, "feet"),
  18339. weight: math.unit(220, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/memory/front.svg",
  18343. extra: 3641 / 3545,
  18344. bottom: 0.03
  18345. }
  18346. },
  18347. back: {
  18348. height: math.unit(5 + 4 / 12, "feet"),
  18349. weight: math.unit(220, "lb"),
  18350. name: "Back",
  18351. image: {
  18352. source: "./media/characters/memory/back.svg",
  18353. extra: 3641 / 3545,
  18354. bottom: 0.025
  18355. }
  18356. },
  18357. frontSkirt: {
  18358. height: math.unit(5 + 4 / 12, "feet"),
  18359. weight: math.unit(220, "lb"),
  18360. name: "Front (Skirt)",
  18361. image: {
  18362. source: "./media/characters/memory/front-skirt.svg",
  18363. extra: 3641 / 3545,
  18364. bottom: 0.03
  18365. }
  18366. },
  18367. frontDress: {
  18368. height: math.unit(5 + 4 / 12, "feet"),
  18369. weight: math.unit(220, "lb"),
  18370. name: "Front (Dress)",
  18371. image: {
  18372. source: "./media/characters/memory/front-dress.svg",
  18373. extra: 3641 / 3545,
  18374. bottom: 0.03
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Micro",
  18381. height: math.unit(6, "inches"),
  18382. default: true
  18383. },
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(5 + 4 / 12, "feet")
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(4 + 11 / 12, "feet"),
  18395. weight: math.unit(100, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/luno/front.svg",
  18399. extra: 1535 / 1487,
  18400. bottom: 0.03
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Micro",
  18407. height: math.unit(3, "inches")
  18408. },
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(4 + 11 / 12, "feet"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(300, "feet")
  18417. },
  18418. {
  18419. name: "Megamacro",
  18420. height: math.unit(700, "miles")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18426. {
  18427. front: {
  18428. height: math.unit(6 + 2 / 12, "feet"),
  18429. weight: math.unit(170, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/jamesy/front.svg",
  18433. extra: 440 / 382,
  18434. bottom: 0.005
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Micro",
  18441. height: math.unit(3, "inches")
  18442. },
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(6 + 2 / 12, "feet"),
  18446. default: true
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(300, "feet")
  18451. },
  18452. {
  18453. name: "Megamacro",
  18454. height: math.unit(700, "miles")
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(6, "feet"),
  18463. weight: math.unit(160, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/mark/front.svg",
  18467. extra: 3300 / 3100,
  18468. bottom: 136.42 / 3440.47
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(120, "meters")
  18476. },
  18477. {
  18478. name: "Bigger Macro",
  18479. height: math.unit(350, "meters")
  18480. },
  18481. {
  18482. name: "Megamacro",
  18483. height: math.unit(8, "km"),
  18484. default: true
  18485. },
  18486. {
  18487. name: "Continental",
  18488. height: math.unit(4550, "km")
  18489. },
  18490. {
  18491. name: "Planetary",
  18492. height: math.unit(65000, "km")
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(6, "feet"),
  18501. weight: math.unit(400, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/mac/front.svg",
  18505. extra: 1048 / 987.7,
  18506. bottom: 60 / 1107.6,
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(500, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18520. {
  18521. front: {
  18522. height: math.unit(5 + 2 / 12, "feet"),
  18523. weight: math.unit(190, "lb"),
  18524. name: "Front",
  18525. image: {
  18526. source: "./media/characters/bari/front.svg",
  18527. extra: 3156 / 2880,
  18528. bottom: 0.03
  18529. }
  18530. },
  18531. back: {
  18532. height: math.unit(5 + 2 / 12, "feet"),
  18533. weight: math.unit(190, "lb"),
  18534. name: "Back",
  18535. image: {
  18536. source: "./media/characters/bari/back.svg",
  18537. extra: 3260 / 2834,
  18538. bottom: 0.025
  18539. }
  18540. },
  18541. frontPlush: {
  18542. height: math.unit(5 + 2 / 12, "feet"),
  18543. weight: math.unit(190, "lb"),
  18544. name: "Front (Plush)",
  18545. image: {
  18546. source: "./media/characters/bari/front-plush.svg",
  18547. extra: 1112 / 1061,
  18548. bottom: 0.002
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Micro",
  18555. height: math.unit(3, "inches")
  18556. },
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(5 + 2 / 12, "feet"),
  18560. default: true
  18561. },
  18562. {
  18563. name: "Macro",
  18564. height: math.unit(20, "feet")
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18570. {
  18571. front: {
  18572. height: math.unit(6 + 1 / 12, "feet"),
  18573. weight: math.unit(275, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/hunter-misha-raven/front.svg"
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Mortal",
  18583. height: math.unit(6 + 1 / 12, "feet")
  18584. },
  18585. {
  18586. name: "Divine",
  18587. height: math.unit(1.12134e34, "parsecs"),
  18588. default: true
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18594. {
  18595. front: {
  18596. height: math.unit(6 + 3 / 12, "feet"),
  18597. weight: math.unit(220, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/max-calore/front.svg",
  18601. extra: 1700 / 1648,
  18602. bottom: 0.01
  18603. }
  18604. },
  18605. back: {
  18606. height: math.unit(6 + 3 / 12, "feet"),
  18607. weight: math.unit(220, "lb"),
  18608. name: "Back",
  18609. image: {
  18610. source: "./media/characters/max-calore/back.svg",
  18611. extra: 1700 / 1648,
  18612. bottom: 0.01
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(6 + 3 / 12, "feet"),
  18620. default: true
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18626. {
  18627. side: {
  18628. height: math.unit(2 + 8 / 12, "feet"),
  18629. weight: math.unit(99, "lb"),
  18630. name: "Side",
  18631. image: {
  18632. source: "./media/characters/aspen/side.svg",
  18633. extra: 152 / 138,
  18634. bottom: 0.032
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(2 + 8 / 12, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18648. {
  18649. side: {
  18650. height: math.unit(3 + 2 / 12, "feet"),
  18651. weight: math.unit(224, "lb"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/sheila-feral-wolf/side.svg",
  18655. extra: 179 / 166,
  18656. bottom: 0.03
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(3 + 2 / 12, "feet"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18670. {
  18671. side: {
  18672. height: math.unit(1 + 9 / 12, "feet"),
  18673. weight: math.unit(38, "lb"),
  18674. name: "Side",
  18675. image: {
  18676. source: "./media/characters/michelle/side.svg",
  18677. extra: 147 / 136.7,
  18678. bottom: 0.03
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(1 + 9 / 12, "feet"),
  18686. default: true
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18692. {
  18693. front: {
  18694. height: math.unit(1.54, "feet"),
  18695. weight: math.unit(50, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/nino/front.svg"
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(1.54, "feet"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(1.49, "feet"),
  18715. weight: math.unit(45, "lb"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/viola/front.svg"
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(1.49, "feet"),
  18726. default: true
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(6 + 5 / 12, "feet"),
  18735. weight: math.unit(580, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/atlas/front.svg",
  18739. extra: 298.5 / 290,
  18740. bottom: 0.015
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(6 + 5 / 12, "feet"),
  18748. default: true
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18754. {
  18755. side: {
  18756. height: math.unit(15.6, "inches"),
  18757. weight: math.unit(10, "lb"),
  18758. name: "Side",
  18759. image: {
  18760. source: "./media/characters/davy/side.svg",
  18761. extra: 200 / 170,
  18762. bottom: 0.01
  18763. }
  18764. },
  18765. },
  18766. [
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(15.6, "inches"),
  18770. default: true
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18776. {
  18777. side: {
  18778. height: math.unit(4 + 8 / 12, "feet"),
  18779. weight: math.unit(166, "lb"),
  18780. name: "Side",
  18781. image: {
  18782. source: "./media/characters/fiona/side.svg",
  18783. extra: 232 / 220,
  18784. bottom: 0.03
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(4 + 8 / 12, "feet"),
  18792. default: true
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18798. {
  18799. front: {
  18800. height: math.unit(26, "inches"),
  18801. weight: math.unit(35, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/lyla/front.svg",
  18805. bottom: 0.1
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(3, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18819. {
  18820. side: {
  18821. height: math.unit(1.8, "feet"),
  18822. weight: math.unit(44, "lb"),
  18823. name: "Side",
  18824. image: {
  18825. source: "./media/characters/perseus/side.svg",
  18826. bottom: 0.21
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(1.8, "feet"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18840. {
  18841. side: {
  18842. height: math.unit(4 + 2 / 12, "feet"),
  18843. weight: math.unit(20, "lb"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/remus/side.svg"
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(4 + 2 / 12, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(4 + 11 / 12, "feet"),
  18863. weight: math.unit(114, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/raf/front.svg",
  18867. extra: 1504/1339,
  18868. bottom: 26/1530
  18869. }
  18870. },
  18871. side: {
  18872. height: math.unit(4 + 11 / 12, "feet"),
  18873. weight: math.unit(114, "lb"),
  18874. name: "Side",
  18875. image: {
  18876. source: "./media/characters/raf/side.svg",
  18877. extra: 1466/1316,
  18878. bottom: 29/1495
  18879. }
  18880. },
  18881. paw: {
  18882. height: math.unit(1.45, "feet"),
  18883. name: "Paw",
  18884. image: {
  18885. source: "./media/characters/raf/paw.svg"
  18886. },
  18887. extraAttributes: {
  18888. "toeSize": {
  18889. name: "Toe Size",
  18890. power: 2,
  18891. type: "area",
  18892. base: math.unit(0.004, "m^2")
  18893. },
  18894. "padSize": {
  18895. name: "Pad Size",
  18896. power: 2,
  18897. type: "area",
  18898. base: math.unit(0.04, "m^2")
  18899. },
  18900. "footSize": {
  18901. name: "Foot Size",
  18902. power: 2,
  18903. type: "area",
  18904. base: math.unit(0.08, "m^2")
  18905. },
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Micro",
  18912. height: math.unit(2, "inches")
  18913. },
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(4 + 11 / 12, "feet"),
  18917. default: true
  18918. },
  18919. {
  18920. name: "Macro",
  18921. height: math.unit(70, "feet")
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(1.5, "meters"),
  18930. weight: math.unit(68, "kg"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/liam-einarr/front.svg",
  18934. extra: 2822 / 2666
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(1.5, "meters"),
  18939. weight: math.unit(68, "kg"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/liam-einarr/back.svg",
  18943. extra: 2822 / 2666,
  18944. bottom: 0.015
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(1.5, "meters"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(150, "meters")
  18957. },
  18958. {
  18959. name: "Megamacro",
  18960. height: math.unit(35, "km")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(6, "feet"),
  18969. weight: math.unit(75, "kg"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/linda/front.svg",
  18973. extra: 930 / 874,
  18974. bottom: 0.004
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(6, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(6 + 8 / 12, "feet"),
  18991. weight: math.unit(220, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/caylex/front.svg",
  18995. extra: 821 / 772,
  18996. bottom: 0.07
  18997. }
  18998. },
  18999. back: {
  19000. height: math.unit(6 + 8 / 12, "feet"),
  19001. weight: math.unit(220, "lb"),
  19002. name: "Back",
  19003. image: {
  19004. source: "./media/characters/caylex/back.svg",
  19005. extra: 821 / 772,
  19006. bottom: 0.022
  19007. }
  19008. },
  19009. hand: {
  19010. height: math.unit(1.25, "feet"),
  19011. name: "Hand",
  19012. image: {
  19013. source: "./media/characters/caylex/hand.svg"
  19014. }
  19015. },
  19016. foot: {
  19017. height: math.unit(1.6, "feet"),
  19018. name: "Foot",
  19019. image: {
  19020. source: "./media/characters/caylex/foot.svg"
  19021. }
  19022. },
  19023. armored: {
  19024. height: math.unit(6 + 8 / 12, "feet"),
  19025. weight: math.unit(250, "lb"),
  19026. name: "Armored",
  19027. image: {
  19028. source: "./media/characters/caylex/armored.svg",
  19029. extra: 1420 / 1310,
  19030. bottom: 0.045
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(6 + 8 / 12, "feet"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Normal+",
  19042. height: math.unit(12, "feet")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(7 + 6 / 12, "feet"),
  19051. weight: math.unit(288, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/alana/front.svg",
  19055. extra: 679 / 653,
  19056. bottom: 22.5 / 701
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(7 + 6 / 12, "feet")
  19064. },
  19065. {
  19066. name: "Large",
  19067. height: math.unit(50, "feet")
  19068. },
  19069. {
  19070. name: "Macro",
  19071. height: math.unit(100, "feet"),
  19072. default: true
  19073. },
  19074. {
  19075. name: "Macro+",
  19076. height: math.unit(200, "feet")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(210, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/hasani/front.svg",
  19089. extra: 244 / 232,
  19090. bottom: 0.01
  19091. }
  19092. },
  19093. back: {
  19094. height: math.unit(6 + 1 / 12, "feet"),
  19095. weight: math.unit(210, "lb"),
  19096. name: "Back",
  19097. image: {
  19098. source: "./media/characters/hasani/back.svg",
  19099. extra: 244 / 232,
  19100. bottom: 0.01
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 1 / 12, "feet")
  19108. },
  19109. {
  19110. name: "Macro",
  19111. height: math.unit(175, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(1.82, "meters"),
  19121. weight: math.unit(140, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/nita/front.svg",
  19125. extra: 2473 / 2363,
  19126. bottom: 0.01
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(1.82, "m")
  19134. },
  19135. {
  19136. name: "Macro",
  19137. height: math.unit(300, "m")
  19138. },
  19139. {
  19140. name: "Mistake Canon",
  19141. height: math.unit(0.5, "miles"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Big Mistake",
  19146. height: math.unit(13, "miles")
  19147. },
  19148. {
  19149. name: "Playing God",
  19150. height: math.unit(2450, "miles")
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(4, "feet"),
  19159. weight: math.unit(120, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/shiriko/front.svg",
  19163. extra: 970/934,
  19164. bottom: 5/975
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(4, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(6, "feet"),
  19181. name: "front",
  19182. image: {
  19183. source: "./media/characters/deja/front.svg",
  19184. extra: 926 / 840,
  19185. bottom: 0.07
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Planck Length",
  19192. height: math.unit(1.6e-35, "meters")
  19193. },
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(30.48, "meters"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Universal",
  19201. height: math.unit(8.8e26, "meters")
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19207. {
  19208. side: {
  19209. height: math.unit(8, "feet"),
  19210. weight: math.unit(6300, "lb"),
  19211. name: "Side",
  19212. image: {
  19213. source: "./media/characters/anima/side.svg",
  19214. bottom: 0.035
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(8, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(8, "feet"),
  19231. weight: math.unit(350, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/bianca/front.svg",
  19235. extra: 234 / 225,
  19236. bottom: 0.03
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(8, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(11 + 5/12, "feet"),
  19253. weight: math.unit(1200, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/adinia/front.svg",
  19257. extra: 1767/1641,
  19258. bottom: 44/1811
  19259. },
  19260. extraAttributes: {
  19261. "energyIntake": {
  19262. name: "Energy Intake",
  19263. power: 3,
  19264. type: "energy",
  19265. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19266. },
  19267. }
  19268. },
  19269. back: {
  19270. height: math.unit(11 + 5/12, "feet"),
  19271. weight: math.unit(1200, "lb"),
  19272. name: "Back",
  19273. image: {
  19274. source: "./media/characters/adinia/back.svg",
  19275. extra: 1834/1684,
  19276. bottom: 14/1848
  19277. },
  19278. extraAttributes: {
  19279. "energyIntake": {
  19280. name: "Energy Intake",
  19281. power: 3,
  19282. type: "energy",
  19283. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19284. },
  19285. }
  19286. },
  19287. maw: {
  19288. height: math.unit(3.79, "feet"),
  19289. name: "Maw",
  19290. image: {
  19291. source: "./media/characters/adinia/maw.svg"
  19292. }
  19293. },
  19294. rump: {
  19295. height: math.unit(4.6, "feet"),
  19296. name: "Rump",
  19297. image: {
  19298. source: "./media/characters/adinia/rump.svg"
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(11 + 5 / 12, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(3, "meters"),
  19315. weight: math.unit(200, "kg"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/lykasa/front.svg",
  19319. extra: 1076 / 976,
  19320. bottom: 0.06
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(3, "meters")
  19328. },
  19329. {
  19330. name: "Kaiju",
  19331. height: math.unit(120, "meters"),
  19332. default: true
  19333. },
  19334. {
  19335. name: "Mega Kaiju",
  19336. height: math.unit(240, "km")
  19337. },
  19338. {
  19339. name: "Giga Kaiju",
  19340. height: math.unit(400, "megameters")
  19341. },
  19342. {
  19343. name: "Tera Kaiju",
  19344. height: math.unit(800, "gigameters")
  19345. },
  19346. {
  19347. name: "Kaiju Dragon Goddess",
  19348. height: math.unit(26, "zettaparsecs")
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19354. {
  19355. side: {
  19356. height: math.unit(283 / 124 * 6, "feet"),
  19357. weight: math.unit(35000, "lb"),
  19358. name: "Side",
  19359. image: {
  19360. source: "./media/characters/malfaren/side.svg",
  19361. extra: 1310/529,
  19362. bottom: 24/1334
  19363. }
  19364. },
  19365. front: {
  19366. height: math.unit(22.36, "feet"),
  19367. weight: math.unit(35000, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/malfaren/front.svg",
  19371. extra: 1237/1115,
  19372. bottom: 32/1269
  19373. }
  19374. },
  19375. maw: {
  19376. height: math.unit(6.9, "feet"),
  19377. name: "Maw",
  19378. image: {
  19379. source: "./media/characters/malfaren/maw.svg"
  19380. }
  19381. },
  19382. dick: {
  19383. height: math.unit(6.19, "feet"),
  19384. name: "Dick",
  19385. image: {
  19386. source: "./media/characters/malfaren/dick.svg"
  19387. }
  19388. },
  19389. eye: {
  19390. height: math.unit(0.69, "feet"),
  19391. name: "Eye",
  19392. image: {
  19393. source: "./media/characters/malfaren/eye.svg"
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Big",
  19400. height: math.unit(283 / 162 * 6, "feet"),
  19401. },
  19402. {
  19403. name: "Bigger",
  19404. height: math.unit(283 / 124 * 6, "feet")
  19405. },
  19406. {
  19407. name: "Massive",
  19408. height: math.unit(283 / 92 * 6, "feet"),
  19409. default: true
  19410. },
  19411. {
  19412. name: "👀💦",
  19413. height: math.unit(283 / 73 * 6, "feet"),
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(1.7, "m"),
  19422. weight: math.unit(70, "kg"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/kernel/front.svg",
  19426. extra: 222 / 210,
  19427. bottom: 0.007
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Nano",
  19434. height: math.unit(17, "micrometers")
  19435. },
  19436. {
  19437. name: "Micro",
  19438. height: math.unit(1.7, "mm")
  19439. },
  19440. {
  19441. name: "Small",
  19442. height: math.unit(1.7, "cm")
  19443. },
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(1.7, "m"),
  19447. default: true
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19453. {
  19454. front: {
  19455. height: math.unit(1.75, "meters"),
  19456. weight: math.unit(65, "kg"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/jayne-folest/front.svg",
  19460. extra: 2115 / 2007,
  19461. bottom: 0.02
  19462. }
  19463. },
  19464. back: {
  19465. height: math.unit(1.75, "meters"),
  19466. weight: math.unit(65, "kg"),
  19467. name: "Back",
  19468. image: {
  19469. source: "./media/characters/jayne-folest/back.svg",
  19470. extra: 2115 / 2007,
  19471. bottom: 0.005
  19472. }
  19473. },
  19474. frontClothed: {
  19475. height: math.unit(1.75, "meters"),
  19476. weight: math.unit(65, "kg"),
  19477. name: "Front (Clothed)",
  19478. image: {
  19479. source: "./media/characters/jayne-folest/front-clothed.svg",
  19480. extra: 2115 / 2007,
  19481. bottom: 0.035
  19482. }
  19483. },
  19484. hand: {
  19485. height: math.unit(1 / 1.260, "feet"),
  19486. name: "Hand",
  19487. image: {
  19488. source: "./media/characters/jayne-folest/hand.svg"
  19489. }
  19490. },
  19491. foot: {
  19492. height: math.unit(1 / 0.918, "feet"),
  19493. name: "Foot",
  19494. image: {
  19495. source: "./media/characters/jayne-folest/foot.svg"
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Micro",
  19502. height: math.unit(4, "cm")
  19503. },
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(1.75, "meters")
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(47.5, "meters"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(180, "cm"),
  19520. weight: math.unit(70, "kg"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/algier/front.svg",
  19524. extra: 596 / 572,
  19525. bottom: 0.04
  19526. }
  19527. },
  19528. back: {
  19529. height: math.unit(180, "cm"),
  19530. weight: math.unit(70, "kg"),
  19531. name: "Back",
  19532. image: {
  19533. source: "./media/characters/algier/back.svg",
  19534. extra: 596 / 572,
  19535. bottom: 0.025
  19536. }
  19537. },
  19538. frontdressed: {
  19539. height: math.unit(180, "cm"),
  19540. weight: math.unit(150, "kg"),
  19541. name: "Front-dressed",
  19542. image: {
  19543. source: "./media/characters/algier/front-dressed.svg",
  19544. extra: 596 / 572,
  19545. bottom: 0.038
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Micro",
  19552. height: math.unit(5, "cm")
  19553. },
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(180, "cm"),
  19557. default: true
  19558. },
  19559. {
  19560. name: "Macro",
  19561. height: math.unit(64, "m")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19567. {
  19568. upright: {
  19569. height: math.unit(7, "feet"),
  19570. weight: math.unit(300, "lb"),
  19571. name: "Upright",
  19572. image: {
  19573. source: "./media/characters/pretzel/upright.svg",
  19574. extra: 534 / 522,
  19575. bottom: 0.065
  19576. }
  19577. },
  19578. sprawling: {
  19579. height: math.unit(3.75, "feet"),
  19580. weight: math.unit(300, "lb"),
  19581. name: "Sprawling",
  19582. image: {
  19583. source: "./media/characters/pretzel/sprawling.svg",
  19584. extra: 314 / 281,
  19585. bottom: 0.1
  19586. }
  19587. },
  19588. tongue: {
  19589. height: math.unit(2, "feet"),
  19590. name: "Tongue",
  19591. image: {
  19592. source: "./media/characters/pretzel/tongue.svg"
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(7, "feet"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "Oversized",
  19604. height: math.unit(15, "feet")
  19605. },
  19606. {
  19607. name: "Huge",
  19608. height: math.unit(30, "feet")
  19609. },
  19610. {
  19611. name: "Macro",
  19612. height: math.unit(250, "feet")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19618. {
  19619. sideFront: {
  19620. height: math.unit(5 + 2 / 12, "feet"),
  19621. weight: math.unit(120, "lb"),
  19622. name: "Front Side",
  19623. image: {
  19624. source: "./media/characters/roxi/side-front.svg",
  19625. extra: 2924 / 2717,
  19626. bottom: 0.08
  19627. }
  19628. },
  19629. sideBack: {
  19630. height: math.unit(5 + 2 / 12, "feet"),
  19631. weight: math.unit(120, "lb"),
  19632. name: "Back Side",
  19633. image: {
  19634. source: "./media/characters/roxi/side-back.svg",
  19635. extra: 2904 / 2693,
  19636. bottom: 0.06
  19637. }
  19638. },
  19639. front: {
  19640. height: math.unit(5 + 2 / 12, "feet"),
  19641. weight: math.unit(120, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/roxi/front.svg",
  19645. extra: 2028 / 1907,
  19646. bottom: 0.01
  19647. }
  19648. },
  19649. frontAlt: {
  19650. height: math.unit(5 + 2 / 12, "feet"),
  19651. weight: math.unit(120, "lb"),
  19652. name: "Front (Alt)",
  19653. image: {
  19654. source: "./media/characters/roxi/front-alt.svg",
  19655. extra: 1828 / 1798,
  19656. bottom: 0.01
  19657. }
  19658. },
  19659. sitting: {
  19660. height: math.unit(2.8, "feet"),
  19661. weight: math.unit(120, "lb"),
  19662. name: "Sitting",
  19663. image: {
  19664. source: "./media/characters/roxi/sitting.svg",
  19665. extra: 2660 / 2462,
  19666. bottom: 0.1
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(5 + 2 / 12, "feet"),
  19674. default: true
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19680. {
  19681. side: {
  19682. height: math.unit(55, "feet"),
  19683. weight: math.unit(153, "tons"),
  19684. name: "Side",
  19685. image: {
  19686. source: "./media/characters/shadow/side.svg",
  19687. extra: 701 / 628,
  19688. bottom: 0.02
  19689. }
  19690. },
  19691. flying: {
  19692. height: math.unit(145, "feet"),
  19693. weight: math.unit(153, "tons"),
  19694. name: "Flying",
  19695. image: {
  19696. source: "./media/characters/shadow/flying.svg"
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(55, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(6, "feet"),
  19713. weight: math.unit(200, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/marcie/front.svg",
  19717. extra: 960 / 876,
  19718. bottom: 58 / 1017.87
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Macro",
  19725. height: math.unit(1, "mile"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(7, "feet"),
  19735. weight: math.unit(200, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/kachina/front.svg",
  19739. extra: 1290.68 / 1119,
  19740. bottom: 36.5 / 1327.18
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(7, "feet"),
  19748. default: true
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19754. {
  19755. looking: {
  19756. height: math.unit(2, "meters"),
  19757. weight: math.unit(300, "kg"),
  19758. name: "Looking",
  19759. image: {
  19760. source: "./media/characters/kash/looking.svg",
  19761. extra: 474 / 344,
  19762. bottom: 0.03
  19763. }
  19764. },
  19765. side: {
  19766. height: math.unit(2, "meters"),
  19767. weight: math.unit(300, "kg"),
  19768. name: "Side",
  19769. image: {
  19770. source: "./media/characters/kash/side.svg",
  19771. extra: 302 / 251,
  19772. bottom: 0.03
  19773. }
  19774. },
  19775. front: {
  19776. height: math.unit(2, "meters"),
  19777. weight: math.unit(300, "kg"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/kash/front.svg",
  19781. extra: 495 / 360,
  19782. bottom: 0.015
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(2, "meters"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Big",
  19794. height: math.unit(3, "meters")
  19795. },
  19796. {
  19797. name: "Large",
  19798. height: math.unit(5, "meters")
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19804. {
  19805. feeding: {
  19806. height: math.unit(6.7, "feet"),
  19807. weight: math.unit(350, "lb"),
  19808. name: "Feeding",
  19809. image: {
  19810. source: "./media/characters/lalim/feeding.svg",
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(6.7, "feet"),
  19818. default: true
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19824. {
  19825. front: {
  19826. height: math.unit(9.5, "feet"),
  19827. weight: math.unit(600, "lb"),
  19828. name: "Front",
  19829. image: {
  19830. source: "./media/characters/de'vout/front.svg",
  19831. extra: 1443 / 1328,
  19832. bottom: 0.025
  19833. }
  19834. },
  19835. back: {
  19836. height: math.unit(9.5, "feet"),
  19837. weight: math.unit(600, "lb"),
  19838. name: "Back",
  19839. image: {
  19840. source: "./media/characters/de'vout/back.svg",
  19841. extra: 1443 / 1328
  19842. }
  19843. },
  19844. frontDressed: {
  19845. height: math.unit(9.5, "feet"),
  19846. weight: math.unit(600, "lb"),
  19847. name: "Front (Dressed",
  19848. image: {
  19849. source: "./media/characters/de'vout/front-dressed.svg",
  19850. extra: 1443 / 1328,
  19851. bottom: 0.025
  19852. }
  19853. },
  19854. backDressed: {
  19855. height: math.unit(9.5, "feet"),
  19856. weight: math.unit(600, "lb"),
  19857. name: "Back (Dressed",
  19858. image: {
  19859. source: "./media/characters/de'vout/back-dressed.svg",
  19860. extra: 1443 / 1328
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(9.5, "feet"),
  19868. default: true
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(8, "feet"),
  19877. weight: math.unit(225, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/talana/front.svg",
  19881. extra: 1410 / 1300,
  19882. bottom: 0.015
  19883. }
  19884. },
  19885. frontDressed: {
  19886. height: math.unit(8, "feet"),
  19887. weight: math.unit(225, "lb"),
  19888. name: "Front (Dressed",
  19889. image: {
  19890. source: "./media/characters/talana/front-dressed.svg",
  19891. extra: 1410 / 1300,
  19892. bottom: 0.015
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(8, "feet"),
  19900. default: true
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19906. {
  19907. side: {
  19908. height: math.unit(7.2, "feet"),
  19909. weight: math.unit(150, "lb"),
  19910. name: "Side",
  19911. image: {
  19912. source: "./media/characters/xeauvok/side.svg",
  19913. extra: 1975 / 1523,
  19914. bottom: 0.07
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(7.2, "feet"),
  19922. default: true
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19928. {
  19929. side: {
  19930. height: math.unit(4, "meters"),
  19931. weight: math.unit(2200, "kg"),
  19932. name: "Side",
  19933. image: {
  19934. source: "./media/characters/zara/side.svg",
  19935. extra: 765/744,
  19936. bottom: 156/921
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(4, "meters"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19950. {
  19951. side: {
  19952. height: math.unit(6, "feet"),
  19953. weight: math.unit(150, "lb"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/richard-dragon/side.svg",
  19957. extra: 845 / 340,
  19958. bottom: 0.017
  19959. }
  19960. },
  19961. maw: {
  19962. height: math.unit(2.97, "feet"),
  19963. name: "Maw",
  19964. image: {
  19965. source: "./media/characters/richard-dragon/maw.svg"
  19966. }
  19967. },
  19968. },
  19969. [
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(4, "feet"),
  19977. weight: math.unit(100, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/richard-smeargle/front.svg",
  19981. extra: 2952 / 2820,
  19982. bottom: 0.028
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(4, "feet"),
  19990. default: true
  19991. },
  19992. {
  19993. name: "Dynamax",
  19994. height: math.unit(20, "meters")
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6, "feet"),
  20003. weight: math.unit(110, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/klay/front.svg",
  20007. extra: 962 / 883,
  20008. bottom: 0.04
  20009. }
  20010. },
  20011. back: {
  20012. height: math.unit(6, "feet"),
  20013. weight: math.unit(110, "lb"),
  20014. name: "Back",
  20015. image: {
  20016. source: "./media/characters/klay/back.svg",
  20017. extra: 962 / 883
  20018. }
  20019. },
  20020. beans: {
  20021. height: math.unit(1.15, "feet"),
  20022. name: "Beans",
  20023. image: {
  20024. source: "./media/characters/klay/beans.svg"
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Micro",
  20031. height: math.unit(6, "inches")
  20032. },
  20033. {
  20034. name: "Mini",
  20035. height: math.unit(3, "feet")
  20036. },
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(6, "feet"),
  20040. default: true
  20041. },
  20042. {
  20043. name: "Big",
  20044. height: math.unit(25, "feet")
  20045. },
  20046. {
  20047. name: "Macro",
  20048. height: math.unit(100, "feet")
  20049. },
  20050. {
  20051. name: "Megamacro",
  20052. height: math.unit(400, "feet")
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(6, "feet"),
  20061. weight: math.unit(160, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/marcus/front.svg",
  20065. extra: 734 / 676,
  20066. bottom: 0.03
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Little",
  20073. height: math.unit(6, "feet")
  20074. },
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(110, "feet"),
  20078. default: true
  20079. },
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(250, "feet")
  20083. },
  20084. {
  20085. name: "Megamacro",
  20086. height: math.unit(1000, "feet")
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(7, "feet"),
  20095. weight: math.unit(275, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/claude-delroute/front.svg",
  20099. extra: 902/827,
  20100. bottom: 26/928
  20101. }
  20102. },
  20103. side: {
  20104. height: math.unit(7, "feet"),
  20105. weight: math.unit(275, "lb"),
  20106. name: "Side",
  20107. image: {
  20108. source: "./media/characters/claude-delroute/side.svg",
  20109. extra: 908/853,
  20110. bottom: 16/924
  20111. }
  20112. },
  20113. back: {
  20114. height: math.unit(7, "feet"),
  20115. weight: math.unit(275, "lb"),
  20116. name: "Back",
  20117. image: {
  20118. source: "./media/characters/claude-delroute/back.svg",
  20119. extra: 911/829,
  20120. bottom: 18/929
  20121. }
  20122. },
  20123. maw: {
  20124. height: math.unit(0.6407, "meters"),
  20125. name: "Maw",
  20126. image: {
  20127. source: "./media/characters/claude-delroute/maw.svg"
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(7, "feet"),
  20135. default: true
  20136. },
  20137. {
  20138. name: "Lorge",
  20139. height: math.unit(20, "feet")
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20145. {
  20146. front: {
  20147. height: math.unit(8 + 4 / 12, "feet"),
  20148. weight: math.unit(600, "lb"),
  20149. name: "Front",
  20150. image: {
  20151. source: "./media/characters/dragonien/front.svg",
  20152. extra: 100 / 94,
  20153. bottom: 3.3 / 103.3445
  20154. }
  20155. },
  20156. back: {
  20157. height: math.unit(8 + 4 / 12, "feet"),
  20158. weight: math.unit(600, "lb"),
  20159. name: "Back",
  20160. image: {
  20161. source: "./media/characters/dragonien/back.svg",
  20162. extra: 776 / 746,
  20163. bottom: 6.4 / 782.0616
  20164. }
  20165. },
  20166. foot: {
  20167. height: math.unit(1.54, "feet"),
  20168. name: "Foot",
  20169. image: {
  20170. source: "./media/characters/dragonien/foot.svg",
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(8 + 4 / 12, "feet"),
  20178. default: true
  20179. },
  20180. {
  20181. name: "Macro",
  20182. height: math.unit(200, "feet")
  20183. },
  20184. {
  20185. name: "Megamacro",
  20186. height: math.unit(1, "mile")
  20187. },
  20188. {
  20189. name: "Gigamacro",
  20190. height: math.unit(1000, "miles")
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(5 + 2 / 12, "feet"),
  20199. weight: math.unit(110, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/desta/front.svg",
  20203. extra: 767 / 726,
  20204. bottom: 11.7 / 779
  20205. }
  20206. },
  20207. back: {
  20208. height: math.unit(5 + 2 / 12, "feet"),
  20209. weight: math.unit(110, "lb"),
  20210. name: "Back",
  20211. image: {
  20212. source: "./media/characters/desta/back.svg",
  20213. extra: 777 / 728,
  20214. bottom: 6 / 784
  20215. }
  20216. },
  20217. frontAlt: {
  20218. height: math.unit(5 + 2 / 12, "feet"),
  20219. weight: math.unit(110, "lb"),
  20220. name: "Front",
  20221. image: {
  20222. source: "./media/characters/desta/front-alt.svg",
  20223. extra: 1482 / 1417
  20224. }
  20225. },
  20226. side: {
  20227. height: math.unit(5 + 2 / 12, "feet"),
  20228. weight: math.unit(110, "lb"),
  20229. name: "Side",
  20230. image: {
  20231. source: "./media/characters/desta/side.svg",
  20232. extra: 2579 / 2491,
  20233. bottom: 0.053
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Micro",
  20240. height: math.unit(6, "inches")
  20241. },
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(5 + 2 / 12, "feet"),
  20245. default: true
  20246. },
  20247. {
  20248. name: "Macro",
  20249. height: math.unit(62, "feet")
  20250. },
  20251. {
  20252. name: "Megamacro",
  20253. height: math.unit(1800, "feet")
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(10, "feet"),
  20262. weight: math.unit(700, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/storm-alystar/front.svg",
  20266. extra: 2112 / 1898,
  20267. bottom: 0.034
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Micro",
  20274. height: math.unit(3.5, "inches")
  20275. },
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(10, "feet"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Macro",
  20283. height: math.unit(400, "feet")
  20284. },
  20285. {
  20286. name: "Deific",
  20287. height: math.unit(60, "miles")
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(2.35, "meters"),
  20296. weight: math.unit(119, "kg"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/ilia/front.svg",
  20300. extra: 1285 / 1255,
  20301. bottom: 0.06
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(2.35, "meters")
  20309. },
  20310. {
  20311. name: "Macro",
  20312. height: math.unit(140, "meters"),
  20313. default: true
  20314. },
  20315. {
  20316. name: "Megamacro",
  20317. height: math.unit(100, "miles")
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(6 + 5 / 12, "feet"),
  20326. weight: math.unit(190, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/kingdead/front.svg",
  20330. extra: 1228 / 1177
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(7, "inches")
  20338. },
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(6 + 5 / 12, "feet")
  20342. },
  20343. {
  20344. name: "Macro",
  20345. height: math.unit(150, "feet"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Megamacro",
  20350. height: math.unit(200, "miles")
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(8, "feet"),
  20359. weight: math.unit(600, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/kyrehx/front.svg",
  20363. extra: 1195 / 1095,
  20364. bottom: 0.034
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Micro",
  20371. height: math.unit(2, "inches")
  20372. },
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(8, "feet"),
  20376. default: true
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(255, "feet")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20389. weight: math.unit(184, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/xang/front.svg",
  20393. extra: 845 / 755
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20401. default: true
  20402. },
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(0.935 * 146, "feet")
  20406. },
  20407. {
  20408. name: "Megamacro",
  20409. height: math.unit(0.935 * 3, "miles")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20415. {
  20416. frontDressed: {
  20417. height: math.unit(5 + 7 / 12, "feet"),
  20418. weight: math.unit(140, "lb"),
  20419. name: "Front (Dressed)",
  20420. image: {
  20421. source: "./media/characters/doc-weardno/front-dressed.svg",
  20422. extra: 263 / 234
  20423. }
  20424. },
  20425. backDressed: {
  20426. height: math.unit(5 + 7 / 12, "feet"),
  20427. weight: math.unit(140, "lb"),
  20428. name: "Back (Dressed)",
  20429. image: {
  20430. source: "./media/characters/doc-weardno/back-dressed.svg",
  20431. extra: 266 / 238
  20432. }
  20433. },
  20434. front: {
  20435. height: math.unit(5 + 7 / 12, "feet"),
  20436. weight: math.unit(140, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/doc-weardno/front.svg",
  20440. extra: 254 / 233
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Micro",
  20447. height: math.unit(3, "inches")
  20448. },
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(5 + 7 / 12, "feet"),
  20452. default: true
  20453. },
  20454. {
  20455. name: "Macro",
  20456. height: math.unit(25, "feet")
  20457. },
  20458. {
  20459. name: "Megamacro",
  20460. height: math.unit(2, "miles")
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(6 + 2 / 12, "feet"),
  20469. weight: math.unit(153, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/seth-whilst/front.svg",
  20473. bottom: 0.07
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Micro",
  20480. height: math.unit(5, "inches")
  20481. },
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(6 + 2 / 12, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20491. {
  20492. front: {
  20493. height: math.unit(3, "inches"),
  20494. weight: math.unit(8, "grams"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/pocket-jabari/front.svg",
  20498. extra: 1024 / 974,
  20499. bottom: 0.039
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Minimicro",
  20506. height: math.unit(8, "mm")
  20507. },
  20508. {
  20509. name: "Micro",
  20510. height: math.unit(3, "inches"),
  20511. default: true
  20512. },
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(3, "feet")
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20521. {
  20522. frontDressed: {
  20523. height: math.unit(15, "feet"),
  20524. weight: math.unit(3280, "lb"),
  20525. name: "Front (Dressed)",
  20526. image: {
  20527. source: "./media/characters/sapphy/front-dressed.svg",
  20528. extra: 1951/1654,
  20529. bottom: 194/2145
  20530. },
  20531. form: "anthro",
  20532. default: true
  20533. },
  20534. backDressed: {
  20535. height: math.unit(15, "feet"),
  20536. weight: math.unit(3280, "lb"),
  20537. name: "Back (Dressed)",
  20538. image: {
  20539. source: "./media/characters/sapphy/back-dressed.svg",
  20540. extra: 2058/1918,
  20541. bottom: 125/2183
  20542. },
  20543. form: "anthro"
  20544. },
  20545. frontNude: {
  20546. height: math.unit(15, "feet"),
  20547. weight: math.unit(3280, "lb"),
  20548. name: "Front (Nude)",
  20549. image: {
  20550. source: "./media/characters/sapphy/front-nude.svg",
  20551. extra: 1951/1654,
  20552. bottom: 194/2145
  20553. },
  20554. form: "anthro"
  20555. },
  20556. backNude: {
  20557. height: math.unit(15, "feet"),
  20558. weight: math.unit(3280, "lb"),
  20559. name: "Back (Nude)",
  20560. image: {
  20561. source: "./media/characters/sapphy/back-nude.svg",
  20562. extra: 2058/1918,
  20563. bottom: 125/2183
  20564. },
  20565. form: "anthro"
  20566. },
  20567. full: {
  20568. height: math.unit(15, "feet"),
  20569. weight: math.unit(3280, "lb"),
  20570. name: "Full",
  20571. image: {
  20572. source: "./media/characters/sapphy/full.svg",
  20573. extra: 1396/1317,
  20574. bottom: 44/1440
  20575. },
  20576. form: "anthro"
  20577. },
  20578. dick: {
  20579. height: math.unit(3.8, "feet"),
  20580. name: "Dick",
  20581. image: {
  20582. source: "./media/characters/sapphy/dick.svg"
  20583. },
  20584. form: "anthro"
  20585. },
  20586. feral: {
  20587. height: math.unit(35, "feet"),
  20588. weight: math.unit(160, "tons"),
  20589. name: "Feral",
  20590. image: {
  20591. source: "./media/characters/sapphy/feral.svg",
  20592. extra: 1050/573,
  20593. bottom: 60/1110
  20594. },
  20595. form: "feral",
  20596. default: true
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(15, "feet"),
  20603. form: "anthro"
  20604. },
  20605. {
  20606. name: "Casual Macro",
  20607. height: math.unit(120, "feet"),
  20608. form: "anthro"
  20609. },
  20610. {
  20611. name: "Macro",
  20612. height: math.unit(2150, "feet"),
  20613. default: true,
  20614. form: "anthro"
  20615. },
  20616. {
  20617. name: "Megamacro",
  20618. height: math.unit(8, "miles"),
  20619. form: "anthro"
  20620. },
  20621. {
  20622. name: "Galaxy Mom",
  20623. height: math.unit(6, "megalightyears"),
  20624. form: "anthro"
  20625. },
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(35, "feet"),
  20629. form: "feral",
  20630. default: true
  20631. },
  20632. {
  20633. name: "Macro",
  20634. height: math.unit(300, "feet"),
  20635. form: "feral"
  20636. },
  20637. {
  20638. name: "Galaxy Mom",
  20639. height: math.unit(10, "megalightyears"),
  20640. form: "feral"
  20641. },
  20642. ],
  20643. {
  20644. "anthro": {
  20645. name: "Anthro",
  20646. default: true
  20647. },
  20648. "feral": {
  20649. name: "Feral"
  20650. }
  20651. }
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20655. {
  20656. hyenaFront: {
  20657. height: math.unit(6, "feet"),
  20658. weight: math.unit(190, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/kiro/hyena-front.svg",
  20662. extra: 927/839,
  20663. bottom: 91/1018
  20664. },
  20665. form: "hyena",
  20666. default: true
  20667. },
  20668. front: {
  20669. height: math.unit(6, "feet"),
  20670. weight: math.unit(170, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/kiro/front.svg",
  20674. extra: 1064 / 1012,
  20675. bottom: 0.052
  20676. },
  20677. form: "folf",
  20678. default: true
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Micro",
  20684. height: math.unit(6, "inches"),
  20685. form: "folf"
  20686. },
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(6, "feet"),
  20690. form: "folf",
  20691. default: true
  20692. },
  20693. {
  20694. name: "Macro",
  20695. height: math.unit(72, "feet"),
  20696. form: "folf"
  20697. },
  20698. {
  20699. name: "Micro",
  20700. height: math.unit(6, "inches"),
  20701. form: "hyena"
  20702. },
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(6, "feet"),
  20706. form: "hyena",
  20707. default: true
  20708. },
  20709. {
  20710. name: "Macro",
  20711. height: math.unit(72, "feet"),
  20712. form: "hyena"
  20713. },
  20714. ],
  20715. {
  20716. "hyena": {
  20717. name: "Hyena",
  20718. default: true
  20719. },
  20720. "folf": {
  20721. name: "Folf",
  20722. },
  20723. }
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(5 + 9 / 12, "feet"),
  20730. weight: math.unit(175, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/irishfox/front.svg",
  20734. extra: 1912 / 1680,
  20735. bottom: 0.02
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Nano",
  20742. height: math.unit(1, "mm")
  20743. },
  20744. {
  20745. name: "Micro",
  20746. height: math.unit(2, "inches")
  20747. },
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(5 + 9 / 12, "feet"),
  20751. default: true
  20752. },
  20753. {
  20754. name: "Macro",
  20755. height: math.unit(45, "feet")
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(6 + 1 / 12, "feet"),
  20764. weight: math.unit(75, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/aronai-sieyes/front.svg",
  20768. extra: 1532/1450,
  20769. bottom: 42/1574
  20770. }
  20771. },
  20772. side: {
  20773. height: math.unit(6 + 1 / 12, "feet"),
  20774. weight: math.unit(75, "lb"),
  20775. name: "Side",
  20776. image: {
  20777. source: "./media/characters/aronai-sieyes/side.svg",
  20778. extra: 1422/1365,
  20779. bottom: 148/1570
  20780. }
  20781. },
  20782. back: {
  20783. height: math.unit(6 + 1 / 12, "feet"),
  20784. weight: math.unit(75, "lb"),
  20785. name: "Back",
  20786. image: {
  20787. source: "./media/characters/aronai-sieyes/back.svg",
  20788. extra: 1526/1464,
  20789. bottom: 51/1577
  20790. }
  20791. },
  20792. dressed: {
  20793. height: math.unit(6 + 1 / 12, "feet"),
  20794. weight: math.unit(75, "lb"),
  20795. name: "Dressed",
  20796. image: {
  20797. source: "./media/characters/aronai-sieyes/dressed.svg",
  20798. extra: 1559/1483,
  20799. bottom: 39/1598
  20800. }
  20801. },
  20802. slit: {
  20803. height: math.unit(1.3, "feet"),
  20804. name: "Slit",
  20805. image: {
  20806. source: "./media/characters/aronai-sieyes/slit.svg"
  20807. }
  20808. },
  20809. slitSpread: {
  20810. height: math.unit(0.9, "feet"),
  20811. name: "Slit (Spread)",
  20812. image: {
  20813. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20814. }
  20815. },
  20816. rump: {
  20817. height: math.unit(1.3, "feet"),
  20818. name: "Rump",
  20819. image: {
  20820. source: "./media/characters/aronai-sieyes/rump.svg"
  20821. }
  20822. },
  20823. maw: {
  20824. height: math.unit(1.25, "feet"),
  20825. name: "Maw",
  20826. image: {
  20827. source: "./media/characters/aronai-sieyes/maw.svg"
  20828. }
  20829. },
  20830. feral: {
  20831. height: math.unit(18, "feet"),
  20832. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20833. name: "Feral",
  20834. image: {
  20835. source: "./media/characters/aronai-sieyes/feral.svg",
  20836. extra: 1530 / 1240,
  20837. bottom: 0.035
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Micro",
  20844. height: math.unit(2, "inches")
  20845. },
  20846. {
  20847. name: "Normal",
  20848. height: math.unit(6 + 1 / 12, "feet"),
  20849. default: true
  20850. }
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(12, "feet"),
  20858. weight: math.unit(410, "kg"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/xuna/front.svg",
  20862. extra: 2184 / 1980
  20863. }
  20864. },
  20865. side: {
  20866. height: math.unit(12, "feet"),
  20867. weight: math.unit(410, "kg"),
  20868. name: "Side",
  20869. image: {
  20870. source: "./media/characters/xuna/side.svg",
  20871. extra: 2184 / 1980
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(12, "feet"),
  20876. weight: math.unit(410, "kg"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/xuna/back.svg",
  20880. extra: 2184 / 1980
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Nano glow",
  20887. height: math.unit(10, "nm")
  20888. },
  20889. {
  20890. name: "Micro floof",
  20891. height: math.unit(0.3, "m")
  20892. },
  20893. {
  20894. name: "Huggable softy boi",
  20895. height: math.unit(3.6576, "m"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Admirable floof",
  20900. height: math.unit(80, "meters")
  20901. },
  20902. {
  20903. name: "Gentle macro",
  20904. height: math.unit(300, "meters")
  20905. },
  20906. {
  20907. name: "Very careful floof",
  20908. height: math.unit(3200, "meters")
  20909. },
  20910. {
  20911. name: "The mega floof",
  20912. height: math.unit(36000, "meters")
  20913. },
  20914. {
  20915. name: "Giga-fur-Wicker",
  20916. height: math.unit(4800000, "meters")
  20917. },
  20918. {
  20919. name: "Licky world",
  20920. height: math.unit(20000000, "meters")
  20921. },
  20922. {
  20923. name: "Floofy cyan sun",
  20924. height: math.unit(1500000000, "meters")
  20925. },
  20926. {
  20927. name: "Milky Wicker",
  20928. height: math.unit(1000000000000000000000, "meters")
  20929. },
  20930. {
  20931. name: "The observing Wicker",
  20932. height: math.unit(999999999999999999999999999, "meters")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(5 + 9 / 12, "feet"),
  20941. weight: math.unit(150, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/arokha-sieyes/front.svg",
  20945. extra: 1425 / 1284,
  20946. bottom: 0.05
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(5 + 9 / 12, "feet")
  20954. },
  20955. {
  20956. name: "Macro",
  20957. height: math.unit(30, "meters"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(6, "feet"),
  20967. weight: math.unit(180, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/arokh-sieyes/front.svg",
  20971. extra: 1830 / 1769,
  20972. bottom: 0.01
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6, "feet")
  20980. },
  20981. {
  20982. name: "Macro",
  20983. height: math.unit(30, "meters"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20990. {
  20991. side: {
  20992. height: math.unit(13 + 1 / 12, "feet"),
  20993. weight: math.unit(8.5, "tonnes"),
  20994. preyCapacity: math.unit(36, "people"),
  20995. name: "Side",
  20996. image: {
  20997. source: "./media/characters/goldeneye/side.svg",
  20998. extra: 1139/741,
  20999. bottom: 98/1237
  21000. }
  21001. },
  21002. front: {
  21003. height: math.unit(5.1, "feet"),
  21004. weight: math.unit(8.5, "tonnes"),
  21005. preyCapacity: math.unit(36, "people"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/goldeneye/front.svg",
  21009. extra: 635/365,
  21010. bottom: 598/1233
  21011. }
  21012. },
  21013. maw: {
  21014. height: math.unit(6.6, "feet"),
  21015. name: "Maw",
  21016. image: {
  21017. source: "./media/characters/goldeneye/maw.svg"
  21018. }
  21019. },
  21020. headFront: {
  21021. height: math.unit(8, "feet"),
  21022. name: "Head (Front)",
  21023. image: {
  21024. source: "./media/characters/goldeneye/head-front.svg"
  21025. }
  21026. },
  21027. headSide: {
  21028. height: math.unit(6, "feet"),
  21029. name: "Head (Side)",
  21030. image: {
  21031. source: "./media/characters/goldeneye/head-side.svg"
  21032. }
  21033. },
  21034. headBack: {
  21035. height: math.unit(8, "feet"),
  21036. name: "Head (Back)",
  21037. image: {
  21038. source: "./media/characters/goldeneye/head-back.svg"
  21039. }
  21040. },
  21041. paw: {
  21042. height: math.unit(3.4, "feet"),
  21043. name: "Paw",
  21044. image: {
  21045. source: "./media/characters/goldeneye/paw.svg"
  21046. }
  21047. },
  21048. toering: {
  21049. height: math.unit(0.45, "feet"),
  21050. name: "Toering",
  21051. image: {
  21052. source: "./media/characters/goldeneye/toering.svg"
  21053. }
  21054. },
  21055. eyes: {
  21056. height: math.unit(0.5, "feet"),
  21057. name: "Eyes",
  21058. image: {
  21059. source: "./media/characters/goldeneye/eyes.svg"
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(13 + 1 / 12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21073. {
  21074. front: {
  21075. height: math.unit(6 + 1 / 12, "feet"),
  21076. weight: math.unit(210, "lb"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/leonardo-lycheborne/front.svg",
  21080. extra: 776/723,
  21081. bottom: 34/810
  21082. }
  21083. },
  21084. side: {
  21085. height: math.unit(6 + 1 / 12, "feet"),
  21086. weight: math.unit(210, "lb"),
  21087. name: "Side",
  21088. image: {
  21089. source: "./media/characters/leonardo-lycheborne/side.svg",
  21090. extra: 780/728,
  21091. bottom: 12/792
  21092. }
  21093. },
  21094. back: {
  21095. height: math.unit(6 + 1 / 12, "feet"),
  21096. weight: math.unit(210, "lb"),
  21097. name: "Back",
  21098. image: {
  21099. source: "./media/characters/leonardo-lycheborne/back.svg",
  21100. extra: 775/721,
  21101. bottom: 17/792
  21102. }
  21103. },
  21104. hand: {
  21105. height: math.unit(1.08, "feet"),
  21106. name: "Hand",
  21107. image: {
  21108. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21109. }
  21110. },
  21111. foot: {
  21112. height: math.unit(1.32, "feet"),
  21113. name: "Foot",
  21114. image: {
  21115. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21116. }
  21117. },
  21118. maw: {
  21119. height: math.unit(1, "feet"),
  21120. name: "Maw",
  21121. image: {
  21122. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21123. }
  21124. },
  21125. were: {
  21126. height: math.unit(20, "feet"),
  21127. weight: math.unit(7800, "lb"),
  21128. name: "Were",
  21129. image: {
  21130. source: "./media/characters/leonardo-lycheborne/were.svg",
  21131. extra: 1224/1165,
  21132. bottom: 72/1296
  21133. }
  21134. },
  21135. feral: {
  21136. height: math.unit(7.5, "feet"),
  21137. weight: math.unit(600, "lb"),
  21138. name: "Feral",
  21139. image: {
  21140. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21141. extra: 797/702,
  21142. bottom: 139/936
  21143. }
  21144. },
  21145. taur: {
  21146. height: math.unit(11, "feet"),
  21147. weight: math.unit(3300, "lb"),
  21148. name: "Taur",
  21149. image: {
  21150. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21151. extra: 1271/1197,
  21152. bottom: 47/1318
  21153. }
  21154. },
  21155. barghest: {
  21156. height: math.unit(11, "feet"),
  21157. weight: math.unit(1300, "lb"),
  21158. name: "Barghest",
  21159. image: {
  21160. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21161. extra: 1291/1204,
  21162. bottom: 37/1328
  21163. }
  21164. },
  21165. dick: {
  21166. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21167. name: "Dick",
  21168. image: {
  21169. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21170. }
  21171. },
  21172. dickWere: {
  21173. height: math.unit((20) / 3.8, "feet"),
  21174. name: "Dick (Were)",
  21175. image: {
  21176. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(6 + 1 / 12, "feet"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(10, "feet"),
  21193. weight: math.unit(350, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/jet/front.svg",
  21197. extra: 2050 / 1980,
  21198. bottom: 0.013
  21199. }
  21200. },
  21201. back: {
  21202. height: math.unit(10, "feet"),
  21203. weight: math.unit(350, "lb"),
  21204. name: "Back",
  21205. image: {
  21206. source: "./media/characters/jet/back.svg",
  21207. extra: 2050 / 1980,
  21208. bottom: 0.013
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Micro",
  21215. height: math.unit(6, "inches")
  21216. },
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(10, "feet"),
  21220. default: true
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(100, "feet")
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(15, "feet"),
  21233. weight: math.unit(2800, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/tanarath/front.svg",
  21237. extra: 2392 / 2220,
  21238. bottom: 0.03
  21239. }
  21240. },
  21241. back: {
  21242. height: math.unit(15, "feet"),
  21243. weight: math.unit(2800, "lb"),
  21244. name: "Back",
  21245. image: {
  21246. source: "./media/characters/tanarath/back.svg",
  21247. extra: 2392 / 2220,
  21248. bottom: 0.03
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Normal",
  21255. height: math.unit(15, "feet"),
  21256. default: true
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21262. {
  21263. front: {
  21264. height: math.unit(7 + 1 / 12, "feet"),
  21265. weight: math.unit(175, "lb"),
  21266. name: "Front",
  21267. image: {
  21268. source: "./media/characters/patty-cattybatty/front.svg",
  21269. extra: 908 / 874,
  21270. bottom: 0.025
  21271. }
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Micro",
  21277. height: math.unit(1, "inch")
  21278. },
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(7 + 1 / 12, "feet")
  21282. },
  21283. {
  21284. name: "Mini Macro",
  21285. height: math.unit(155, "feet")
  21286. },
  21287. {
  21288. name: "Macro",
  21289. height: math.unit(1077, "feet")
  21290. },
  21291. {
  21292. name: "Mega Macro",
  21293. height: math.unit(47650, "feet"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Giga Macro",
  21298. height: math.unit(440, "miles")
  21299. },
  21300. {
  21301. name: "Tera Macro",
  21302. height: math.unit(8700, "miles")
  21303. },
  21304. {
  21305. name: "Planetary Macro",
  21306. height: math.unit(32700, "miles")
  21307. },
  21308. {
  21309. name: "Solar Macro",
  21310. height: math.unit(550000, "miles")
  21311. },
  21312. {
  21313. name: "Celestial Macro",
  21314. height: math.unit(2.5, "AU")
  21315. },
  21316. ]
  21317. ))
  21318. characterMakers.push(() => makeCharacter(
  21319. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21320. {
  21321. front: {
  21322. height: math.unit(4 + 5 / 12, "feet"),
  21323. weight: math.unit(90, "lb"),
  21324. name: "Front",
  21325. image: {
  21326. source: "./media/characters/cappu/front.svg",
  21327. extra: 1247 / 1152,
  21328. bottom: 0.012
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Normal",
  21335. height: math.unit(4 + 5 / 12, "feet"),
  21336. default: true
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21342. {
  21343. frontDressed: {
  21344. height: math.unit(70, "cm"),
  21345. weight: math.unit(6, "kg"),
  21346. name: "Front (Dressed)",
  21347. image: {
  21348. source: "./media/characters/sebi/front-dressed.svg",
  21349. extra: 713.5 / 686.5,
  21350. bottom: 0.003
  21351. }
  21352. },
  21353. front: {
  21354. height: math.unit(70, "cm"),
  21355. weight: math.unit(5, "kg"),
  21356. name: "Front",
  21357. image: {
  21358. source: "./media/characters/sebi/front.svg",
  21359. extra: 713.5 / 686.5,
  21360. bottom: 0.003
  21361. }
  21362. }
  21363. },
  21364. [
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(70, "cm"),
  21368. default: true
  21369. },
  21370. {
  21371. name: "Macro",
  21372. height: math.unit(8, "meters")
  21373. },
  21374. ]
  21375. ))
  21376. characterMakers.push(() => makeCharacter(
  21377. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21378. {
  21379. front: {
  21380. height: math.unit(6, "feet"),
  21381. weight: math.unit(150, "lb"),
  21382. name: "Front",
  21383. image: {
  21384. source: "./media/characters/typhek/front.svg",
  21385. extra: 1948 / 1929,
  21386. bottom: 0.025
  21387. }
  21388. },
  21389. side: {
  21390. height: math.unit(6, "feet"),
  21391. weight: math.unit(150, "lb"),
  21392. name: "Side",
  21393. image: {
  21394. source: "./media/characters/typhek/side.svg",
  21395. extra: 2034 / 2010,
  21396. bottom: 0.003
  21397. }
  21398. },
  21399. back: {
  21400. height: math.unit(6, "feet"),
  21401. weight: math.unit(150, "lb"),
  21402. name: "Back",
  21403. image: {
  21404. source: "./media/characters/typhek/back.svg",
  21405. extra: 2005 / 1978,
  21406. bottom: 0.004
  21407. }
  21408. },
  21409. palm: {
  21410. height: math.unit(1.2, "feet"),
  21411. name: "Palm",
  21412. image: {
  21413. source: "./media/characters/typhek/palm.svg"
  21414. }
  21415. },
  21416. fist: {
  21417. height: math.unit(1.1, "feet"),
  21418. name: "Fist",
  21419. image: {
  21420. source: "./media/characters/typhek/fist.svg"
  21421. }
  21422. },
  21423. foot: {
  21424. height: math.unit(1.57, "feet"),
  21425. name: "Foot",
  21426. image: {
  21427. source: "./media/characters/typhek/foot.svg"
  21428. }
  21429. },
  21430. sole: {
  21431. height: math.unit(2.05, "feet"),
  21432. name: "Sole",
  21433. image: {
  21434. source: "./media/characters/typhek/sole.svg"
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Macro",
  21441. height: math.unit(40, "stories"),
  21442. default: true
  21443. },
  21444. {
  21445. name: "Megamacro",
  21446. height: math.unit(1, "mile")
  21447. },
  21448. {
  21449. name: "Gigamacro",
  21450. height: math.unit(4000, "solarradii")
  21451. },
  21452. {
  21453. name: "Universal",
  21454. height: math.unit(1.1, "universes")
  21455. }
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21460. {
  21461. side: {
  21462. height: math.unit(5 + 7 / 12, "feet"),
  21463. weight: math.unit(150, "lb"),
  21464. name: "Side",
  21465. image: {
  21466. source: "./media/characters/kassy/side.svg",
  21467. extra: 1280 / 1225,
  21468. bottom: 0.002
  21469. }
  21470. },
  21471. front: {
  21472. height: math.unit(5 + 7 / 12, "feet"),
  21473. weight: math.unit(150, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/kassy/front.svg",
  21477. extra: 1280 / 1225,
  21478. bottom: 0.025
  21479. }
  21480. },
  21481. back: {
  21482. height: math.unit(5 + 7 / 12, "feet"),
  21483. weight: math.unit(150, "lb"),
  21484. name: "Back",
  21485. image: {
  21486. source: "./media/characters/kassy/back.svg",
  21487. extra: 1280 / 1225,
  21488. bottom: 0.002
  21489. }
  21490. },
  21491. foot: {
  21492. height: math.unit(1.266, "feet"),
  21493. name: "Foot",
  21494. image: {
  21495. source: "./media/characters/kassy/foot.svg"
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(5 + 7 / 12, "feet")
  21503. },
  21504. {
  21505. name: "Macro",
  21506. height: math.unit(137, "feet"),
  21507. default: true
  21508. },
  21509. {
  21510. name: "Megamacro",
  21511. height: math.unit(1, "mile")
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21517. {
  21518. front: {
  21519. height: math.unit(6 + 1 / 12, "feet"),
  21520. weight: math.unit(200, "lb"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/neil/front.svg",
  21524. extra: 1326 / 1250,
  21525. bottom: 0.023
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(6 + 1 / 12, "feet"),
  21533. default: true
  21534. },
  21535. {
  21536. name: "Macro",
  21537. height: math.unit(200, "feet")
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(5 + 9 / 12, "feet"),
  21546. weight: math.unit(190, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/atticus/front.svg",
  21550. extra: 2934 / 2785,
  21551. bottom: 0.025
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(5 + 9 / 12, "feet"),
  21559. default: true
  21560. },
  21561. {
  21562. name: "Macro",
  21563. height: math.unit(180, "feet")
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21569. {
  21570. side: {
  21571. height: math.unit(9, "feet"),
  21572. weight: math.unit(650, "lb"),
  21573. name: "Side",
  21574. image: {
  21575. source: "./media/characters/milo/side.svg",
  21576. extra: 2644 / 2310,
  21577. bottom: 0.032
  21578. }
  21579. },
  21580. },
  21581. [
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(9, "feet"),
  21585. default: true
  21586. },
  21587. {
  21588. name: "Macro",
  21589. height: math.unit(300, "feet")
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21595. {
  21596. side: {
  21597. height: math.unit(8, "meters"),
  21598. weight: math.unit(90000, "kg"),
  21599. name: "Side",
  21600. image: {
  21601. source: "./media/characters/ijzer/side.svg",
  21602. extra: 2756 / 1600,
  21603. bottom: 0.01
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Small",
  21610. height: math.unit(3, "meters")
  21611. },
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(8, "meters"),
  21615. default: true
  21616. },
  21617. {
  21618. name: "Normal+",
  21619. height: math.unit(10, "meters")
  21620. },
  21621. {
  21622. name: "Bigger",
  21623. height: math.unit(24, "meters")
  21624. },
  21625. {
  21626. name: "Huge",
  21627. height: math.unit(80, "meters")
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21633. {
  21634. front: {
  21635. height: math.unit(6 + 2 / 12, "feet"),
  21636. weight: math.unit(153, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/luca-cervicum/front.svg",
  21640. extra: 370 / 327,
  21641. bottom: 0.015
  21642. }
  21643. },
  21644. back: {
  21645. height: math.unit(6 + 2 / 12, "feet"),
  21646. weight: math.unit(153, "lb"),
  21647. name: "Back",
  21648. image: {
  21649. source: "./media/characters/luca-cervicum/back.svg",
  21650. extra: 367 / 333,
  21651. bottom: 0.005
  21652. }
  21653. },
  21654. frontGear: {
  21655. height: math.unit(6 + 2 / 12, "feet"),
  21656. weight: math.unit(173, "lb"),
  21657. name: "Front (Gear)",
  21658. image: {
  21659. source: "./media/characters/luca-cervicum/front-gear.svg",
  21660. extra: 377 / 333,
  21661. bottom: 0.006
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Normal",
  21668. height: math.unit(6 + 2 / 12, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(6 + 1 / 12, "feet"),
  21678. weight: math.unit(304, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/oliver/front.svg",
  21682. extra: 157 / 143,
  21683. bottom: 0.08
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Normal",
  21690. height: math.unit(6 + 1 / 12, "feet"),
  21691. default: true
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(5 + 7 / 12, "feet"),
  21700. weight: math.unit(140, "lb"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/shane/front.svg",
  21704. extra: 304 / 289,
  21705. bottom: 0.005
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(5 + 7 / 12, "feet"),
  21713. default: true
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(5 + 9 / 12, "feet"),
  21722. weight: math.unit(178, "lb"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/shin/front.svg",
  21726. extra: 159 / 151,
  21727. bottom: 0.015
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(5 + 9 / 12, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(5 + 10 / 12, "feet"),
  21744. weight: math.unit(168, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/xerxes/front.svg",
  21748. extra: 282 / 260,
  21749. bottom: 0.045
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 10 / 12, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(6 + 7 / 12, "feet"),
  21766. weight: math.unit(208, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/chaska/front.svg",
  21770. extra: 332 / 319,
  21771. bottom: 0.015
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(6 + 7 / 12, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(5 + 8 / 12, "feet"),
  21788. weight: math.unit(208, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/enuk/front.svg",
  21792. extra: 437 / 406,
  21793. bottom: 0.02
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(5 + 8 / 12, "feet"),
  21801. default: true
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(5 + 10 / 12, "feet"),
  21810. weight: math.unit(252, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/bruun/front.svg",
  21814. extra: 197 / 187,
  21815. bottom: 0.012
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(5 + 10 / 12, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(6 + 10 / 12, "feet"),
  21832. weight: math.unit(255, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/alexeev/front.svg",
  21836. extra: 213 / 200,
  21837. bottom: 0.05
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Normal",
  21844. height: math.unit(6 + 10 / 12, "feet"),
  21845. default: true
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(2 + 8 / 12, "feet"),
  21854. weight: math.unit(22, "lb"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/evelyn/front.svg",
  21858. extra: 208 / 180
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(2 + 8 / 12, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(5 + 9 / 12, "feet"),
  21875. weight: math.unit(139, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/inca/front.svg",
  21879. extra: 294 / 291,
  21880. bottom: 0.03
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Normal",
  21887. height: math.unit(5 + 9 / 12, "feet"),
  21888. default: true
  21889. },
  21890. ]
  21891. ))
  21892. characterMakers.push(() => makeCharacter(
  21893. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21894. {
  21895. front: {
  21896. height: math.unit(6 + 3 / 12, "feet"),
  21897. weight: math.unit(185, "lb"),
  21898. name: "Front",
  21899. image: {
  21900. source: "./media/characters/mera/front.svg",
  21901. extra: 291 / 277,
  21902. bottom: 0.03
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Normal",
  21909. height: math.unit(6 + 3 / 12, "feet"),
  21910. default: true
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(6 + 7 / 12, "feet"),
  21919. weight: math.unit(160, "lb"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/ceres/front.svg",
  21923. extra: 1023 / 950,
  21924. bottom: 0.027
  21925. }
  21926. },
  21927. back: {
  21928. height: math.unit(6 + 7 / 12, "feet"),
  21929. weight: math.unit(160, "lb"),
  21930. name: "Back",
  21931. image: {
  21932. source: "./media/characters/ceres/back.svg",
  21933. extra: 1023 / 950
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(6 + 7 / 12, "feet"),
  21941. default: true
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21947. {
  21948. front: {
  21949. height: math.unit(5 + 10 / 12, "feet"),
  21950. weight: math.unit(150, "lb"),
  21951. name: "Front",
  21952. image: {
  21953. source: "./media/characters/kris/front.svg",
  21954. extra: 885 / 803,
  21955. bottom: 0.03
  21956. }
  21957. },
  21958. },
  21959. [
  21960. {
  21961. name: "Normal",
  21962. height: math.unit(5 + 10 / 12, "feet"),
  21963. default: true
  21964. },
  21965. ]
  21966. ))
  21967. characterMakers.push(() => makeCharacter(
  21968. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21969. {
  21970. dragon_front: {
  21971. height: math.unit(5, "feet"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/taluthus/dragon-front.svg",
  21975. extra: 1203/1098,
  21976. bottom: 46/1249
  21977. },
  21978. form: "dragon",
  21979. default: true
  21980. },
  21981. dragon_maw: {
  21982. height: math.unit(2.35, "feet"),
  21983. name: "Maw",
  21984. image: {
  21985. source: "./media/characters/taluthus/dragon-maw.svg"
  21986. },
  21987. form: "dragon",
  21988. },
  21989. kitsune_front: {
  21990. height: math.unit(7, "feet"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/taluthus/kitsune-front.svg",
  21994. extra: 900/841,
  21995. bottom: 65/965
  21996. },
  21997. form: "kitsune",
  21998. default: true
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(5, "feet"),
  22005. form: "dragon",
  22006. default: true,
  22007. },
  22008. {
  22009. name: "Normal",
  22010. height: math.unit(7, "feet"),
  22011. form: "kitsune",
  22012. default: true
  22013. },
  22014. {
  22015. name: "Macro",
  22016. height: math.unit(300, "feet"),
  22017. allForms: true
  22018. },
  22019. ],
  22020. {
  22021. "dragon": {
  22022. name: "Dragon",
  22023. default: true
  22024. },
  22025. "kitsune": {
  22026. name: "Kitsune",
  22027. },
  22028. }
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(5 + 9 / 12, "feet"),
  22035. weight: math.unit(145, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/dawn/front.svg",
  22039. extra: 2094 / 2016,
  22040. bottom: 0.025
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(5 + 9 / 12, "feet"),
  22045. weight: math.unit(160, "lb"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/dawn/back.svg",
  22049. extra: 2112 / 2080,
  22050. bottom: 0.005
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(6 + 7 / 12, "feet"),
  22058. default: true
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22064. {
  22065. anthro: {
  22066. height: math.unit(8 + 3 / 12, "feet"),
  22067. weight: math.unit(450, "lb"),
  22068. name: "Anthro",
  22069. image: {
  22070. source: "./media/characters/arador/anthro.svg",
  22071. extra: 1835 / 1718,
  22072. bottom: 0.025
  22073. }
  22074. },
  22075. feral: {
  22076. height: math.unit(4, "feet"),
  22077. weight: math.unit(200, "lb"),
  22078. name: "Feral",
  22079. image: {
  22080. source: "./media/characters/arador/feral.svg",
  22081. extra: 1683 / 1514,
  22082. bottom: 0.07
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(8 + 3 / 12, "feet")
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(82.5, "feet"),
  22094. default: true
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(5 + 10 / 12, "feet"),
  22103. weight: math.unit(125, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/dharsi/front.svg",
  22107. extra: 716 / 630,
  22108. bottom: 0.035
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Nano",
  22115. height: math.unit(100, "nm")
  22116. },
  22117. {
  22118. name: "Micro",
  22119. height: math.unit(2, "inches")
  22120. },
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(5 + 10 / 12, "feet"),
  22124. default: true
  22125. },
  22126. {
  22127. name: "Macro",
  22128. height: math.unit(1000, "feet")
  22129. },
  22130. {
  22131. name: "Megamacro",
  22132. height: math.unit(10, "miles")
  22133. },
  22134. {
  22135. name: "Gigamacro",
  22136. height: math.unit(3000, "miles")
  22137. },
  22138. {
  22139. name: "Teramacro",
  22140. height: math.unit(500000, "miles")
  22141. },
  22142. {
  22143. name: "Teramacro+",
  22144. height: math.unit(30, "galaxies")
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(6, "feet"),
  22153. weight: math.unit(150, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/deathy/front.svg",
  22157. extra: 1552 / 1463,
  22158. bottom: 0.025
  22159. }
  22160. },
  22161. side: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(150, "lb"),
  22164. name: "Side",
  22165. image: {
  22166. source: "./media/characters/deathy/side.svg",
  22167. extra: 1604 / 1455,
  22168. bottom: 0.025
  22169. }
  22170. },
  22171. back: {
  22172. height: math.unit(6, "feet"),
  22173. weight: math.unit(150, "lb"),
  22174. name: "Back",
  22175. image: {
  22176. source: "./media/characters/deathy/back.svg",
  22177. extra: 1580 / 1463,
  22178. bottom: 0.005
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Micro",
  22185. height: math.unit(5, "millimeters")
  22186. },
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(6 + 5 / 12, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22196. {
  22197. front: {
  22198. height: math.unit(16, "feet"),
  22199. weight: math.unit(4000, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/juniper/front.svg",
  22203. bottom: 0.04
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(16, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(6, "feet"),
  22220. weight: math.unit(150, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/hipster/front.svg",
  22224. extra: 1312 / 1209,
  22225. bottom: 0.025
  22226. }
  22227. },
  22228. back: {
  22229. height: math.unit(6, "feet"),
  22230. weight: math.unit(150, "lb"),
  22231. name: "Back",
  22232. image: {
  22233. source: "./media/characters/hipster/back.svg",
  22234. extra: 1281 / 1196,
  22235. bottom: 0.01
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Micro",
  22242. height: math.unit(1, "mm")
  22243. },
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(4, "inches"),
  22247. default: true
  22248. },
  22249. {
  22250. name: "Macro",
  22251. height: math.unit(500, "feet")
  22252. },
  22253. {
  22254. name: "Megamacro",
  22255. height: math.unit(1000, "miles")
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(6, "feet"),
  22264. weight: math.unit(150, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/tendirmuldr/front.svg",
  22268. extra: 1878 / 1772,
  22269. bottom: 0.015
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Megamacro",
  22276. height: math.unit(1500, "miles"),
  22277. default: true
  22278. },
  22279. ]
  22280. ))
  22281. characterMakers.push(() => makeCharacter(
  22282. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22283. {
  22284. front: {
  22285. height: math.unit(14, "feet"),
  22286. weight: math.unit(12000, "lb"),
  22287. name: "Front",
  22288. image: {
  22289. source: "./media/characters/mort/front.svg",
  22290. extra: 365 / 318,
  22291. bottom: 0.01
  22292. }
  22293. },
  22294. side: {
  22295. height: math.unit(14, "feet"),
  22296. weight: math.unit(12000, "lb"),
  22297. name: "Side",
  22298. image: {
  22299. source: "./media/characters/mort/side.svg",
  22300. extra: 365 / 318,
  22301. bottom: 0.052
  22302. },
  22303. default: true
  22304. },
  22305. back: {
  22306. height: math.unit(14, "feet"),
  22307. weight: math.unit(12000, "lb"),
  22308. name: "Back",
  22309. image: {
  22310. source: "./media/characters/mort/back.svg",
  22311. extra: 371 / 332,
  22312. bottom: 0.18
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(14, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22326. {
  22327. front: {
  22328. height: math.unit(8, "feet"),
  22329. weight: math.unit(1, "ton"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/lycoa/front.svg",
  22333. extra: 1836/1728,
  22334. bottom: 81/1917
  22335. }
  22336. },
  22337. back: {
  22338. height: math.unit(8, "feet"),
  22339. weight: math.unit(1, "ton"),
  22340. name: "Back",
  22341. image: {
  22342. source: "./media/characters/lycoa/back.svg",
  22343. extra: 1785/1720,
  22344. bottom: 91/1876
  22345. }
  22346. },
  22347. head: {
  22348. height: math.unit(1.6243, "feet"),
  22349. name: "Head",
  22350. image: {
  22351. source: "./media/characters/lycoa/head.svg",
  22352. extra: 1011/782,
  22353. bottom: 0/1011
  22354. }
  22355. },
  22356. tailmaw: {
  22357. height: math.unit(1.9, "feet"),
  22358. name: "Tailmaw",
  22359. image: {
  22360. source: "./media/characters/lycoa/tailmaw.svg"
  22361. }
  22362. },
  22363. tentacles: {
  22364. height: math.unit(2.1, "feet"),
  22365. name: "Tentacles",
  22366. image: {
  22367. source: "./media/characters/lycoa/tentacles.svg"
  22368. }
  22369. },
  22370. dick: {
  22371. height: math.unit(1.73, "feet"),
  22372. name: "Dick",
  22373. image: {
  22374. source: "./media/characters/lycoa/dick.svg"
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(8, "feet"),
  22382. default: true
  22383. },
  22384. {
  22385. name: "Macro",
  22386. height: math.unit(30, "feet")
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22392. {
  22393. front: {
  22394. height: math.unit(4 + 2 / 12, "feet"),
  22395. weight: math.unit(70, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/naldara/front.svg",
  22399. extra: 1664/1387,
  22400. bottom: 81/1745
  22401. },
  22402. form: "anthro",
  22403. default: true
  22404. },
  22405. naga: {
  22406. height: math.unit(20, "feet"),
  22407. weight: math.unit(15000, "kg"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/naldara/naga.svg",
  22411. extra: 1590/1396,
  22412. bottom: 285/1875
  22413. },
  22414. form: "naga",
  22415. default: true
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(4 + 2 / 12, "feet"),
  22422. form: "anthro",
  22423. default: true
  22424. },
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(20, "feet"),
  22428. form: "naga",
  22429. default: true
  22430. },
  22431. ],
  22432. {
  22433. "anthro": {
  22434. name: "Anthro",
  22435. default: true
  22436. },
  22437. "naga": {
  22438. name: "Naga"
  22439. }
  22440. }
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22444. {
  22445. front: {
  22446. height: math.unit(13 + 7 / 12, "feet"),
  22447. weight: math.unit(1500, "lb"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/briar/front.svg",
  22451. extra: 1223/1157,
  22452. bottom: 123/1346
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(13 + 7 / 12, "feet"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22466. {
  22467. side: {
  22468. height: math.unit(16, "feet"),
  22469. weight: math.unit(500, "lb"),
  22470. name: "Side",
  22471. image: {
  22472. source: "./media/characters/vanguard/side.svg",
  22473. extra: 1022/914,
  22474. bottom: 30/1052
  22475. }
  22476. },
  22477. sideAlt: {
  22478. height: math.unit(10, "feet"),
  22479. weight: math.unit(500, "lb"),
  22480. name: "Side (Alt)",
  22481. image: {
  22482. source: "./media/characters/vanguard/side-alt.svg",
  22483. extra: 502 / 425,
  22484. bottom: 0.087
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(17.71, "feet"),
  22492. default: true
  22493. },
  22494. ]
  22495. ))
  22496. characterMakers.push(() => makeCharacter(
  22497. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22498. {
  22499. front: {
  22500. height: math.unit(7.5, "feet"),
  22501. weight: math.unit(2, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/artemis/work-safe-front.svg",
  22505. extra: 1192 / 1075,
  22506. bottom: 0.07
  22507. },
  22508. form: "work-safe",
  22509. default: true
  22510. },
  22511. frontNsfw: {
  22512. height: math.unit(7.5, "feet"),
  22513. weight: math.unit(2, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/artemis/calibrating-front.svg",
  22517. extra: 1192 / 1075,
  22518. bottom: 0.07
  22519. },
  22520. form: "calibrating",
  22521. default: true
  22522. },
  22523. frontNsfwer: {
  22524. height: math.unit(7.5, "feet"),
  22525. weight: math.unit(2, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/artemis/oversize-load-front.svg",
  22529. extra: 1192 / 1075,
  22530. bottom: 0.07
  22531. },
  22532. form: "oversize-load",
  22533. default: true
  22534. },
  22535. side: {
  22536. height: math.unit(7.5, "feet"),
  22537. weight: math.unit(2, "lb"),
  22538. name: "Side",
  22539. image: {
  22540. source: "./media/characters/artemis/work-safe-side.svg",
  22541. extra: 1192 / 1075,
  22542. bottom: 0.07
  22543. },
  22544. form: "work-safe"
  22545. },
  22546. sideNsfw: {
  22547. height: math.unit(7.5, "feet"),
  22548. weight: math.unit(2, "lb"),
  22549. name: "Side",
  22550. image: {
  22551. source: "./media/characters/artemis/calibrating-side.svg",
  22552. extra: 1192 / 1075,
  22553. bottom: 0.07
  22554. },
  22555. form: "calibrating"
  22556. },
  22557. sideNsfwer: {
  22558. height: math.unit(7.5, "feet"),
  22559. weight: math.unit(2, "lb"),
  22560. name: "Side",
  22561. image: {
  22562. source: "./media/characters/artemis/oversize-load-side.svg",
  22563. extra: 1192 / 1075,
  22564. bottom: 0.07
  22565. },
  22566. form: "oversize-load"
  22567. },
  22568. maw: {
  22569. height: math.unit(1.1, "feet"),
  22570. name: "Maw",
  22571. image: {
  22572. source: "./media/characters/artemis/maw.svg"
  22573. },
  22574. form: "work-safe"
  22575. },
  22576. stomach: {
  22577. height: math.unit(0.95, "feet"),
  22578. name: "Stomach",
  22579. image: {
  22580. source: "./media/characters/artemis/stomach.svg"
  22581. },
  22582. form: "work-safe"
  22583. },
  22584. dickCanine: {
  22585. height: math.unit(1, "feet"),
  22586. name: "Dick (Canine)",
  22587. image: {
  22588. source: "./media/characters/artemis/dick-canine.svg"
  22589. },
  22590. form: "calibrating"
  22591. },
  22592. dickEquine: {
  22593. height: math.unit(0.85, "feet"),
  22594. name: "Dick (Equine)",
  22595. image: {
  22596. source: "./media/characters/artemis/dick-equine.svg"
  22597. },
  22598. form: "calibrating"
  22599. },
  22600. dickExotic: {
  22601. height: math.unit(0.85, "feet"),
  22602. name: "Dick (Exotic)",
  22603. image: {
  22604. source: "./media/characters/artemis/dick-exotic.svg"
  22605. },
  22606. form: "calibrating"
  22607. },
  22608. dickCanineBigger: {
  22609. height: math.unit(1 * 1.33, "feet"),
  22610. name: "Dick (Canine)",
  22611. image: {
  22612. source: "./media/characters/artemis/dick-canine.svg"
  22613. },
  22614. form: "oversize-load"
  22615. },
  22616. dickEquineBigger: {
  22617. height: math.unit(0.85 * 1.33, "feet"),
  22618. name: "Dick (Equine)",
  22619. image: {
  22620. source: "./media/characters/artemis/dick-equine.svg"
  22621. },
  22622. form: "oversize-load"
  22623. },
  22624. dickExoticBigger: {
  22625. height: math.unit(0.85 * 1.33, "feet"),
  22626. name: "Dick (Exotic)",
  22627. image: {
  22628. source: "./media/characters/artemis/dick-exotic.svg"
  22629. },
  22630. form: "oversize-load"
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(7.5, "feet"),
  22637. form: "work-safe",
  22638. default: true
  22639. },
  22640. {
  22641. name: "Normal",
  22642. height: math.unit(7.5, "feet"),
  22643. form: "calibrating",
  22644. default: true
  22645. },
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(7.5, "feet"),
  22649. form: "oversize-load",
  22650. default: true
  22651. },
  22652. {
  22653. name: "Enlarged",
  22654. height: math.unit(12, "feet"),
  22655. form: "work-safe",
  22656. },
  22657. {
  22658. name: "Enlarged",
  22659. height: math.unit(12, "feet"),
  22660. form: "calibrating",
  22661. },
  22662. {
  22663. name: "Enlarged",
  22664. height: math.unit(12, "feet"),
  22665. form: "oversize-load",
  22666. },
  22667. ],
  22668. {
  22669. "work-safe": {
  22670. name: "Work-Safe",
  22671. default: true
  22672. },
  22673. "calibrating": {
  22674. name: "Calibrating"
  22675. },
  22676. "oversize-load": {
  22677. name: "Oversize Load"
  22678. }
  22679. }
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(5 + 3 / 12, "feet"),
  22686. weight: math.unit(160, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/kira/front.svg",
  22690. extra: 906 / 786,
  22691. bottom: 0.01
  22692. }
  22693. },
  22694. back: {
  22695. height: math.unit(5 + 3 / 12, "feet"),
  22696. weight: math.unit(160, "lb"),
  22697. name: "Back",
  22698. image: {
  22699. source: "./media/characters/kira/back.svg",
  22700. extra: 882 / 757,
  22701. bottom: 0.005
  22702. }
  22703. },
  22704. frontDressed: {
  22705. height: math.unit(5 + 3 / 12, "feet"),
  22706. weight: math.unit(160, "lb"),
  22707. name: "Front (Dressed)",
  22708. image: {
  22709. source: "./media/characters/kira/front-dressed.svg",
  22710. extra: 906 / 786,
  22711. bottom: 0.01
  22712. }
  22713. },
  22714. beans: {
  22715. height: math.unit(0.92, "feet"),
  22716. name: "Beans",
  22717. image: {
  22718. source: "./media/characters/kira/beans.svg"
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(5 + 3 / 12, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(5 + 4 / 12, "feet"),
  22735. weight: math.unit(145, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/scramble/front.svg",
  22739. extra: 763 / 727,
  22740. bottom: 0.05
  22741. }
  22742. },
  22743. back: {
  22744. height: math.unit(5 + 4 / 12, "feet"),
  22745. weight: math.unit(145, "lb"),
  22746. name: "Back",
  22747. image: {
  22748. source: "./media/characters/scramble/back.svg",
  22749. extra: 826 / 737,
  22750. bottom: 0.002
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(5 + 4 / 12, "feet"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22764. {
  22765. side: {
  22766. height: math.unit(6 + 2 / 12, "feet"),
  22767. weight: math.unit(190, "lb"),
  22768. name: "Side",
  22769. image: {
  22770. source: "./media/characters/biscuit/side.svg",
  22771. extra: 858 / 791,
  22772. bottom: 0.044
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(6 + 2 / 12, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(5 + 2 / 12, "feet"),
  22789. weight: math.unit(120, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/poffin/front.svg",
  22793. extra: 786 / 680,
  22794. bottom: 0.005
  22795. }
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(5 + 2 / 12, "feet"),
  22802. default: true
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(6 + 3 / 12, "feet"),
  22811. weight: math.unit(519, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/dhari/front.svg",
  22815. extra: 1048 / 946,
  22816. bottom: 0.015
  22817. }
  22818. },
  22819. back: {
  22820. height: math.unit(6 + 3 / 12, "feet"),
  22821. weight: math.unit(519, "lb"),
  22822. name: "Back",
  22823. image: {
  22824. source: "./media/characters/dhari/back.svg",
  22825. extra: 1048 / 931,
  22826. bottom: 0.005
  22827. }
  22828. },
  22829. frontDressed: {
  22830. height: math.unit(6 + 3 / 12, "feet"),
  22831. weight: math.unit(519, "lb"),
  22832. name: "Front (Dressed)",
  22833. image: {
  22834. source: "./media/characters/dhari/front-dressed.svg",
  22835. extra: 1713 / 1546,
  22836. bottom: 0.02
  22837. }
  22838. },
  22839. backDressed: {
  22840. height: math.unit(6 + 3 / 12, "feet"),
  22841. weight: math.unit(519, "lb"),
  22842. name: "Back (Dressed)",
  22843. image: {
  22844. source: "./media/characters/dhari/back-dressed.svg",
  22845. extra: 1699 / 1537,
  22846. bottom: 0.01
  22847. }
  22848. },
  22849. maw: {
  22850. height: math.unit(0.95, "feet"),
  22851. name: "Maw",
  22852. image: {
  22853. source: "./media/characters/dhari/maw.svg"
  22854. }
  22855. },
  22856. wereFront: {
  22857. height: math.unit(12 + 8 / 12, "feet"),
  22858. weight: math.unit(4000, "lb"),
  22859. name: "Front (Were)",
  22860. image: {
  22861. source: "./media/characters/dhari/were-front.svg",
  22862. extra: 1065 / 969,
  22863. bottom: 0.015
  22864. }
  22865. },
  22866. wereBack: {
  22867. height: math.unit(12 + 8 / 12, "feet"),
  22868. weight: math.unit(4000, "lb"),
  22869. name: "Back (Were)",
  22870. image: {
  22871. source: "./media/characters/dhari/were-back.svg",
  22872. extra: 1065 / 969,
  22873. bottom: 0.012
  22874. }
  22875. },
  22876. wereMaw: {
  22877. height: math.unit(0.625, "meters"),
  22878. name: "Maw (Were)",
  22879. image: {
  22880. source: "./media/characters/dhari/were-maw.svg"
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(6 + 3 / 12, "feet"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22894. {
  22895. anthro: {
  22896. height: math.unit(5 + 7 / 12, "feet"),
  22897. weight: math.unit(175, "lb"),
  22898. name: "Anthro",
  22899. image: {
  22900. source: "./media/characters/rena-dyne/anthro.svg",
  22901. extra: 1849 / 1785,
  22902. bottom: 0.005
  22903. }
  22904. },
  22905. taur: {
  22906. height: math.unit(15 + 6 / 12, "feet"),
  22907. weight: math.unit(8000, "lb"),
  22908. name: "Taur",
  22909. image: {
  22910. source: "./media/characters/rena-dyne/taur.svg",
  22911. extra: 2315 / 2234,
  22912. bottom: 0.033
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Normal",
  22919. height: math.unit(5 + 7 / 12, "feet"),
  22920. default: true
  22921. },
  22922. ]
  22923. ))
  22924. characterMakers.push(() => makeCharacter(
  22925. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22926. {
  22927. front: {
  22928. height: math.unit(8, "feet"),
  22929. weight: math.unit(600, "lb"),
  22930. name: "Front",
  22931. image: {
  22932. source: "./media/characters/weremeep/front.svg",
  22933. extra: 970/849,
  22934. bottom: 7/977
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(8, "feet"),
  22942. default: true
  22943. },
  22944. {
  22945. name: "Lorg",
  22946. height: math.unit(12, "feet")
  22947. },
  22948. {
  22949. name: "Oh Lawd She Comin'",
  22950. height: math.unit(20, "feet")
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22956. {
  22957. front: {
  22958. height: math.unit(4, "feet"),
  22959. weight: math.unit(90, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/reza/front.svg",
  22963. extra: 1183 / 1111,
  22964. bottom: 0.017
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(4, "feet"),
  22969. weight: math.unit(90, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/reza/back.svg",
  22973. extra: 1183 / 1111,
  22974. bottom: 0.01
  22975. }
  22976. },
  22977. drake: {
  22978. height: math.unit(30, "feet"),
  22979. weight: math.unit(246960, "lb"),
  22980. name: "Drake",
  22981. image: {
  22982. source: "./media/characters/reza/drake.svg",
  22983. extra: 2350 / 2024,
  22984. bottom: 60.7 / 2403
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Normal",
  22991. height: math.unit(4, "feet"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22998. {
  22999. side: {
  23000. height: math.unit(15, "feet"),
  23001. weight: math.unit(14, "tons"),
  23002. name: "Side",
  23003. image: {
  23004. source: "./media/characters/athea/side.svg",
  23005. extra: 960 / 540,
  23006. bottom: 0.003
  23007. }
  23008. },
  23009. sitting: {
  23010. height: math.unit(6 * 2.85, "feet"),
  23011. weight: math.unit(14, "tons"),
  23012. name: "Sitting",
  23013. image: {
  23014. source: "./media/characters/athea/sitting.svg",
  23015. extra: 621 / 581,
  23016. bottom: 0.075
  23017. }
  23018. },
  23019. maw: {
  23020. height: math.unit(7.59498031496063, "feet"),
  23021. name: "Maw",
  23022. image: {
  23023. source: "./media/characters/athea/maw.svg"
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Lap Cat",
  23030. height: math.unit(2.5, "feet")
  23031. },
  23032. {
  23033. name: "Minimacro",
  23034. height: math.unit(15, "feet"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Macro",
  23039. height: math.unit(120, "feet")
  23040. },
  23041. {
  23042. name: "Macro+",
  23043. height: math.unit(640, "feet")
  23044. },
  23045. {
  23046. name: "Colossus",
  23047. height: math.unit(2.2, "miles")
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(8 + 8 / 12, "feet"),
  23056. weight: math.unit(130, "kg"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/seroko/front.svg",
  23060. extra: 1385 / 1280,
  23061. bottom: 0.025
  23062. }
  23063. },
  23064. back: {
  23065. height: math.unit(8 + 8 / 12, "feet"),
  23066. weight: math.unit(130, "kg"),
  23067. name: "Back",
  23068. image: {
  23069. source: "./media/characters/seroko/back.svg",
  23070. extra: 1369 / 1238,
  23071. bottom: 0.018
  23072. }
  23073. },
  23074. frontDressed: {
  23075. height: math.unit(8 + 8 / 12, "feet"),
  23076. weight: math.unit(130, "kg"),
  23077. name: "Front (Dressed)",
  23078. image: {
  23079. source: "./media/characters/seroko/front-dressed.svg",
  23080. extra: 1366 / 1275,
  23081. bottom: 0.03
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(8 + 8 / 12, "feet"),
  23089. default: true
  23090. },
  23091. ]
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23095. {
  23096. front: {
  23097. height: math.unit(5.5, "feet"),
  23098. weight: math.unit(160, "lb"),
  23099. name: "Front",
  23100. image: {
  23101. source: "./media/characters/quatzi/front.svg",
  23102. extra: 2346 / 2242,
  23103. bottom: 0.015
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(5.5, "feet"),
  23111. default: true
  23112. },
  23113. {
  23114. name: "Big",
  23115. height: math.unit(7.7, "feet")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(5 + 11 / 12, "feet"),
  23124. weight: math.unit(180, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/sen/front.svg",
  23128. extra: 1321 / 1254,
  23129. bottom: 0.015
  23130. }
  23131. },
  23132. side: {
  23133. height: math.unit(5 + 11 / 12, "feet"),
  23134. weight: math.unit(180, "lb"),
  23135. name: "Side",
  23136. image: {
  23137. source: "./media/characters/sen/side.svg",
  23138. extra: 1321 / 1254,
  23139. bottom: 0.007
  23140. }
  23141. },
  23142. back: {
  23143. height: math.unit(5 + 11 / 12, "feet"),
  23144. weight: math.unit(180, "lb"),
  23145. name: "Back",
  23146. image: {
  23147. source: "./media/characters/sen/back.svg",
  23148. extra: 1321 / 1254
  23149. }
  23150. },
  23151. },
  23152. [
  23153. {
  23154. name: "Normal",
  23155. height: math.unit(5 + 11 / 12, "feet"),
  23156. default: true
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(166.6, "cm"),
  23165. weight: math.unit(66.6, "kg"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/fruity/front.svg",
  23169. extra: 1510 / 1386,
  23170. bottom: 0.04
  23171. }
  23172. },
  23173. back: {
  23174. height: math.unit(166.6, "cm"),
  23175. weight: math.unit(66.6, "lb"),
  23176. name: "Back",
  23177. image: {
  23178. source: "./media/characters/fruity/back.svg",
  23179. extra: 1563 / 1435,
  23180. bottom: 0.005
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(166.6, "cm"),
  23188. default: true
  23189. },
  23190. {
  23191. name: "Demonic",
  23192. height: math.unit(166.6, "feet")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23198. {
  23199. side: {
  23200. height: math.unit(10, "feet"),
  23201. weight: math.unit(500, "lb"),
  23202. name: "Side",
  23203. image: {
  23204. source: "./media/characters/zost/side.svg",
  23205. extra: 2870/2533,
  23206. bottom: 252/3122
  23207. }
  23208. },
  23209. mawFront: {
  23210. height: math.unit(1.08, "meters"),
  23211. name: "Maw (Front)",
  23212. image: {
  23213. source: "./media/characters/zost/maw-front.svg"
  23214. }
  23215. },
  23216. mawSide: {
  23217. height: math.unit(2.66, "feet"),
  23218. name: "Maw (Side)",
  23219. image: {
  23220. source: "./media/characters/zost/maw-side.svg"
  23221. }
  23222. },
  23223. wingspan: {
  23224. height: math.unit(7.4, "feet"),
  23225. name: "Wingspan",
  23226. image: {
  23227. source: "./media/characters/zost/wingspan.svg"
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(10, "feet"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(5 + 4 / 12, "feet"),
  23244. weight: math.unit(120, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/luci/front.svg",
  23248. extra: 1985 / 1884,
  23249. bottom: 0.04
  23250. }
  23251. },
  23252. back: {
  23253. height: math.unit(5 + 4 / 12, "feet"),
  23254. weight: math.unit(120, "lb"),
  23255. name: "Back",
  23256. image: {
  23257. source: "./media/characters/luci/back.svg",
  23258. extra: 1892 / 1791,
  23259. bottom: 0.002
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(5 + 4 / 12, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23273. {
  23274. front: {
  23275. height: math.unit(1500, "feet"),
  23276. weight: math.unit(3.8e6, "tons"),
  23277. name: "Front",
  23278. image: {
  23279. source: "./media/characters/2th/front.svg",
  23280. extra: 3489 / 3350,
  23281. bottom: 0.1
  23282. }
  23283. },
  23284. foot: {
  23285. height: math.unit(461, "feet"),
  23286. name: "Foot",
  23287. image: {
  23288. source: "./media/characters/2th/foot.svg"
  23289. }
  23290. },
  23291. },
  23292. [
  23293. {
  23294. name: "\"Micro\"",
  23295. height: math.unit(15 + 7 / 12, "feet")
  23296. },
  23297. {
  23298. name: "Normal",
  23299. height: math.unit(1500, "feet"),
  23300. default: true
  23301. },
  23302. {
  23303. name: "Macro",
  23304. height: math.unit(5000, "feet")
  23305. },
  23306. {
  23307. name: "Megamacro",
  23308. height: math.unit(15, "miles")
  23309. },
  23310. {
  23311. name: "Gigamacro",
  23312. height: math.unit(4000, "miles")
  23313. },
  23314. {
  23315. name: "Galactic",
  23316. height: math.unit(50, "AU")
  23317. },
  23318. ]
  23319. ))
  23320. characterMakers.push(() => makeCharacter(
  23321. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23322. {
  23323. front: {
  23324. height: math.unit(5 + 6 / 12, "feet"),
  23325. weight: math.unit(220, "lb"),
  23326. name: "Front",
  23327. image: {
  23328. source: "./media/characters/amethyst/front.svg",
  23329. extra: 2078 / 2040,
  23330. bottom: 0.045
  23331. }
  23332. },
  23333. back: {
  23334. height: math.unit(5 + 6 / 12, "feet"),
  23335. weight: math.unit(220, "lb"),
  23336. name: "Back",
  23337. image: {
  23338. source: "./media/characters/amethyst/back.svg",
  23339. extra: 2021 / 1989,
  23340. bottom: 0.02
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(5 + 6 / 12, "feet"),
  23348. default: true
  23349. },
  23350. ]
  23351. ))
  23352. characterMakers.push(() => makeCharacter(
  23353. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23354. {
  23355. front: {
  23356. height: math.unit(4 + 11 / 12, "feet"),
  23357. weight: math.unit(120, "lb"),
  23358. name: "Front",
  23359. image: {
  23360. source: "./media/characters/yumi-akiyama/front.svg",
  23361. extra: 1327 / 1235,
  23362. bottom: 0.02
  23363. }
  23364. },
  23365. back: {
  23366. height: math.unit(4 + 11 / 12, "feet"),
  23367. weight: math.unit(120, "lb"),
  23368. name: "Back",
  23369. image: {
  23370. source: "./media/characters/yumi-akiyama/back.svg",
  23371. extra: 1287 / 1245,
  23372. bottom: 0.002
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Galactic",
  23379. height: math.unit(50, "galaxies"),
  23380. default: true
  23381. },
  23382. {
  23383. name: "Universal",
  23384. height: math.unit(100, "universes")
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(8, "feet"),
  23393. weight: math.unit(500, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/rifter-yrmori/front.svg",
  23397. extra: 1180 / 1125,
  23398. bottom: 0.02
  23399. }
  23400. },
  23401. back: {
  23402. height: math.unit(8, "feet"),
  23403. weight: math.unit(500, "lb"),
  23404. name: "Back",
  23405. image: {
  23406. source: "./media/characters/rifter-yrmori/back.svg",
  23407. extra: 1190 / 1145,
  23408. bottom: 0.001
  23409. }
  23410. },
  23411. wings: {
  23412. height: math.unit(7.75, "feet"),
  23413. weight: math.unit(500, "lb"),
  23414. name: "Wings",
  23415. image: {
  23416. source: "./media/characters/rifter-yrmori/wings.svg",
  23417. extra: 1357 / 1285
  23418. }
  23419. },
  23420. maw: {
  23421. height: math.unit(0.8, "feet"),
  23422. name: "Maw",
  23423. image: {
  23424. source: "./media/characters/rifter-yrmori/maw.svg"
  23425. }
  23426. },
  23427. mawfront: {
  23428. height: math.unit(1.45, "feet"),
  23429. name: "Maw (Front)",
  23430. image: {
  23431. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(8, "feet"),
  23439. default: true
  23440. },
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(42, "meters")
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23449. {
  23450. were: {
  23451. height: math.unit(25 + 6 / 12, "feet"),
  23452. weight: math.unit(10000, "lb"),
  23453. name: "Were",
  23454. image: {
  23455. source: "./media/characters/tahajin/were.svg",
  23456. extra: 801 / 770,
  23457. bottom: 0.042
  23458. }
  23459. },
  23460. aquatic: {
  23461. height: math.unit(6 + 4 / 12, "feet"),
  23462. weight: math.unit(160, "lb"),
  23463. name: "Aquatic",
  23464. image: {
  23465. source: "./media/characters/tahajin/aquatic.svg",
  23466. extra: 572 / 542,
  23467. bottom: 0.04
  23468. }
  23469. },
  23470. chow: {
  23471. height: math.unit(8 + 11 / 12, "feet"),
  23472. weight: math.unit(450, "lb"),
  23473. name: "Chow",
  23474. image: {
  23475. source: "./media/characters/tahajin/chow.svg",
  23476. extra: 660 / 640,
  23477. bottom: 0.015
  23478. }
  23479. },
  23480. demiNaga: {
  23481. height: math.unit(6 + 8 / 12, "feet"),
  23482. weight: math.unit(300, "lb"),
  23483. name: "Demi Naga",
  23484. image: {
  23485. source: "./media/characters/tahajin/demi-naga.svg",
  23486. extra: 643 / 615,
  23487. bottom: 0.1
  23488. }
  23489. },
  23490. data: {
  23491. height: math.unit(5, "inches"),
  23492. weight: math.unit(0.1, "lb"),
  23493. name: "Data",
  23494. image: {
  23495. source: "./media/characters/tahajin/data.svg"
  23496. }
  23497. },
  23498. fluu: {
  23499. height: math.unit(5 + 7 / 12, "feet"),
  23500. weight: math.unit(140, "lb"),
  23501. name: "Fluu",
  23502. image: {
  23503. source: "./media/characters/tahajin/fluu.svg",
  23504. extra: 628 / 592,
  23505. bottom: 0.02
  23506. }
  23507. },
  23508. starWarrior: {
  23509. height: math.unit(4 + 5 / 12, "feet"),
  23510. weight: math.unit(50, "lb"),
  23511. name: "Star Warrior",
  23512. image: {
  23513. source: "./media/characters/tahajin/star-warrior.svg"
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Normal",
  23520. height: math.unit(25 + 6 / 12, "feet"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23527. {
  23528. front: {
  23529. height: math.unit(8, "feet"),
  23530. weight: math.unit(350, "lb"),
  23531. name: "Front",
  23532. image: {
  23533. source: "./media/characters/gabira/front.svg",
  23534. extra: 1261/1154,
  23535. bottom: 51/1312
  23536. }
  23537. },
  23538. back: {
  23539. height: math.unit(8, "feet"),
  23540. weight: math.unit(350, "lb"),
  23541. name: "Back",
  23542. image: {
  23543. source: "./media/characters/gabira/back.svg",
  23544. extra: 1265/1163,
  23545. bottom: 46/1311
  23546. }
  23547. },
  23548. head: {
  23549. height: math.unit(2.85, "feet"),
  23550. name: "Head",
  23551. image: {
  23552. source: "./media/characters/gabira/head.svg"
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(8, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(5 + 3 / 12, "feet"),
  23569. weight: math.unit(137, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/sasha-katraine/front.svg",
  23573. extra: 1745/1694,
  23574. bottom: 37/1782
  23575. }
  23576. },
  23577. back: {
  23578. height: math.unit(5 + 3 / 12, "feet"),
  23579. weight: math.unit(137, "lb"),
  23580. name: "Back",
  23581. image: {
  23582. source: "./media/characters/sasha-katraine/back.svg",
  23583. extra: 1776/1699,
  23584. bottom: 26/1802
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Micro",
  23591. height: math.unit(5, "inches")
  23592. },
  23593. {
  23594. name: "Normal",
  23595. height: math.unit(5 + 3 / 12, "feet"),
  23596. default: true
  23597. },
  23598. ]
  23599. ))
  23600. characterMakers.push(() => makeCharacter(
  23601. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23602. {
  23603. side: {
  23604. height: math.unit(4, "inches"),
  23605. weight: math.unit(200, "grams"),
  23606. name: "Side",
  23607. image: {
  23608. source: "./media/characters/der/side.svg",
  23609. extra: 719 / 400,
  23610. bottom: 30.6 / 749.9187
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Micro",
  23617. height: math.unit(4, "inches"),
  23618. default: true
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23624. {
  23625. side: {
  23626. height: math.unit(30, "meters"),
  23627. weight: math.unit(700, "tonnes"),
  23628. name: "Side",
  23629. image: {
  23630. source: "./media/characters/fixerdragon/side.svg",
  23631. extra: (1293.0514 - 116.03) / 1106.86,
  23632. bottom: 116.03 / 1293.0514
  23633. }
  23634. },
  23635. },
  23636. [
  23637. {
  23638. name: "Planck",
  23639. height: math.unit(1.6e-35, "meters")
  23640. },
  23641. {
  23642. name: "Micro",
  23643. height: math.unit(0.4, "meters")
  23644. },
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(30, "meters"),
  23648. default: true
  23649. },
  23650. {
  23651. name: "Megamacro",
  23652. height: math.unit(1.2, "megameters")
  23653. },
  23654. {
  23655. name: "Teramacro",
  23656. height: math.unit(130, "terameters")
  23657. },
  23658. {
  23659. name: "Yottamacro",
  23660. height: math.unit(6200, "yottameters")
  23661. },
  23662. ]
  23663. ));
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23666. {
  23667. front: {
  23668. height: math.unit(8, "feet"),
  23669. weight: math.unit(250, "lb"),
  23670. name: "Front",
  23671. image: {
  23672. source: "./media/characters/kite/front.svg",
  23673. extra: 2796 / 2659,
  23674. bottom: 0.002
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(8, "feet"),
  23682. default: true
  23683. },
  23684. {
  23685. name: "Macro",
  23686. height: math.unit(360, "feet")
  23687. },
  23688. {
  23689. name: "Megamacro",
  23690. height: math.unit(1500, "feet")
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(5 + 11/12, "feet"),
  23699. weight: math.unit(170, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/poojawa-vynar/front.svg",
  23703. extra: 1735/1585,
  23704. bottom: 96/1831
  23705. }
  23706. },
  23707. back: {
  23708. height: math.unit(5 + 11/12, "feet"),
  23709. weight: math.unit(170, "lb"),
  23710. name: "Back",
  23711. image: {
  23712. source: "./media/characters/poojawa-vynar/back.svg",
  23713. extra: 1749/1607,
  23714. bottom: 28/1777
  23715. }
  23716. },
  23717. male: {
  23718. height: math.unit(5 + 11/12, "feet"),
  23719. weight: math.unit(170, "lb"),
  23720. name: "Male",
  23721. image: {
  23722. source: "./media/characters/poojawa-vynar/male.svg",
  23723. extra: 1855/1713,
  23724. bottom: 63/1918
  23725. }
  23726. },
  23727. taur: {
  23728. height: math.unit(5 + 11/12, "feet"),
  23729. weight: math.unit(170, "lb"),
  23730. name: "Taur",
  23731. image: {
  23732. source: "./media/characters/poojawa-vynar/taur.svg",
  23733. extra: 1151/1059,
  23734. bottom: 356/1507
  23735. }
  23736. },
  23737. frontDressed: {
  23738. height: math.unit(5 + 11/12, "feet"),
  23739. weight: math.unit(170, "lb"),
  23740. name: "Front (Dressed)",
  23741. image: {
  23742. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23743. extra: 1735/1585,
  23744. bottom: 96/1831
  23745. }
  23746. },
  23747. backDressed: {
  23748. height: math.unit(5 + 11/12, "feet"),
  23749. weight: math.unit(170, "lb"),
  23750. name: "Back (Dressed)",
  23751. image: {
  23752. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23753. extra: 1749/1607,
  23754. bottom: 28/1777
  23755. }
  23756. },
  23757. maleDressed: {
  23758. height: math.unit(5 + 11/12, "feet"),
  23759. weight: math.unit(170, "lb"),
  23760. name: "Male (Dressed)",
  23761. image: {
  23762. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23763. extra: 1855/1713,
  23764. bottom: 63/1918
  23765. }
  23766. },
  23767. taurDressed: {
  23768. height: math.unit(5 + 11/12, "feet"),
  23769. weight: math.unit(170, "lb"),
  23770. name: "Taur (Dressed)",
  23771. image: {
  23772. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23773. extra: 1151/1059,
  23774. bottom: 356/1507
  23775. }
  23776. },
  23777. maw: {
  23778. height: math.unit(1.46, "feet"),
  23779. name: "Maw",
  23780. image: {
  23781. source: "./media/characters/poojawa-vynar/maw.svg"
  23782. }
  23783. },
  23784. head: {
  23785. height: math.unit(2.34, "feet"),
  23786. name: "Head",
  23787. image: {
  23788. source: "./media/characters/poojawa-vynar/head.svg"
  23789. }
  23790. },
  23791. paw: {
  23792. height: math.unit(1.61, "feet"),
  23793. name: "Paw",
  23794. image: {
  23795. source: "./media/characters/poojawa-vynar/paw.svg"
  23796. }
  23797. },
  23798. pawToering: {
  23799. height: math.unit(1.72, "feet"),
  23800. name: "Paw (Toering)",
  23801. image: {
  23802. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23803. }
  23804. },
  23805. toering: {
  23806. height: math.unit(2.9, "inches"),
  23807. name: "Toering",
  23808. image: {
  23809. source: "./media/characters/poojawa-vynar/toering.svg"
  23810. }
  23811. },
  23812. shaft: {
  23813. height: math.unit(0.625, "feet"),
  23814. name: "Shaft",
  23815. image: {
  23816. source: "./media/characters/poojawa-vynar/shaft.svg"
  23817. }
  23818. },
  23819. spade: {
  23820. height: math.unit(0.42, "feet"),
  23821. name: "Spade",
  23822. image: {
  23823. source: "./media/characters/poojawa-vynar/spade.svg"
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Shortstack",
  23830. height: math.unit(4, "feet")
  23831. },
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(5 + 11 / 12, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Tauric",
  23839. height: math.unit(4, "meters")
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23845. {
  23846. front: {
  23847. height: math.unit(293, "meters"),
  23848. weight: math.unit(70400, "tons"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/violette/front.svg",
  23852. extra: 1227 / 1180,
  23853. bottom: 0.005
  23854. }
  23855. },
  23856. back: {
  23857. height: math.unit(293, "meters"),
  23858. weight: math.unit(70400, "tons"),
  23859. name: "Back",
  23860. image: {
  23861. source: "./media/characters/violette/back.svg",
  23862. extra: 1227 / 1180,
  23863. bottom: 0.005
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Macro",
  23870. height: math.unit(293, "meters"),
  23871. default: true
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23877. {
  23878. front: {
  23879. height: math.unit(1050, "feet"),
  23880. weight: math.unit(200000, "tons"),
  23881. name: "Front",
  23882. image: {
  23883. source: "./media/characters/alessandra/front.svg",
  23884. extra: 960 / 912,
  23885. bottom: 0.06
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Macro",
  23892. height: math.unit(1050, "feet")
  23893. },
  23894. {
  23895. name: "Macro+",
  23896. height: math.unit(900, "meters"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(5, "feet"),
  23906. weight: math.unit(187, "lb"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/person/front.svg",
  23910. extra: 3087 / 2945,
  23911. bottom: 91 / 3181
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Micro",
  23918. height: math.unit(3, "inches")
  23919. },
  23920. {
  23921. name: "Normal",
  23922. height: math.unit(5, "feet"),
  23923. default: true
  23924. },
  23925. {
  23926. name: "Macro",
  23927. height: math.unit(90, "feet")
  23928. },
  23929. {
  23930. name: "Max Size",
  23931. height: math.unit(280, "feet")
  23932. },
  23933. ]
  23934. ))
  23935. characterMakers.push(() => makeCharacter(
  23936. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23937. {
  23938. front: {
  23939. height: math.unit(4.5, "meters"),
  23940. weight: math.unit(3200, "lb"),
  23941. name: "Front",
  23942. image: {
  23943. source: "./media/characters/ty/front.svg",
  23944. extra: 1038 / 960,
  23945. bottom: 31.156 / 1068
  23946. }
  23947. },
  23948. back: {
  23949. height: math.unit(4.5, "meters"),
  23950. weight: math.unit(3200, "lb"),
  23951. name: "Back",
  23952. image: {
  23953. source: "./media/characters/ty/back.svg",
  23954. extra: 1044 / 966,
  23955. bottom: 7.48 / 1049
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(4.5, "meters"),
  23963. default: true
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23969. {
  23970. front: {
  23971. height: math.unit(5 + 4 / 12, "feet"),
  23972. weight: math.unit(115, "lb"),
  23973. name: "Front",
  23974. image: {
  23975. source: "./media/characters/rocky/front.svg",
  23976. extra: 1012 / 975,
  23977. bottom: 54 / 1066
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Normal",
  23984. height: math.unit(5 + 4 / 12, "feet"),
  23985. default: true
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23991. {
  23992. upright: {
  23993. height: math.unit(6, "meters"),
  23994. weight: math.unit(4000, "kg"),
  23995. name: "Upright",
  23996. image: {
  23997. source: "./media/characters/ruin/upright.svg",
  23998. extra: 668 / 661,
  23999. bottom: 42 / 799.8396
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(6, "meters"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(5, "feet"),
  24016. weight: math.unit(106, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/robin/front.svg",
  24020. extra: 862 / 799,
  24021. bottom: 42.4 / 914.8856
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Normal",
  24028. height: math.unit(5, "feet"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24035. {
  24036. side: {
  24037. height: math.unit(3, "feet"),
  24038. weight: math.unit(225, "lb"),
  24039. name: "Side",
  24040. image: {
  24041. source: "./media/characters/saian/side.svg",
  24042. extra: 566 / 356,
  24043. bottom: 79.7 / 643
  24044. }
  24045. },
  24046. maw: {
  24047. height: math.unit(2.85, "feet"),
  24048. name: "Maw",
  24049. image: {
  24050. source: "./media/characters/saian/maw.svg"
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(3, "feet"),
  24058. default: true
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24064. {
  24065. side: {
  24066. height: math.unit(8, "feet"),
  24067. weight: math.unit(300, "lb"),
  24068. name: "Side",
  24069. image: {
  24070. source: "./media/characters/equus-silvermane/side.svg",
  24071. extra: 2176 / 2050,
  24072. bottom: 65.7 / 2245
  24073. }
  24074. },
  24075. front: {
  24076. height: math.unit(8, "feet"),
  24077. weight: math.unit(300, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/equus-silvermane/front.svg",
  24081. extra: 4633 / 4400,
  24082. bottom: 71.3 / 4706.915
  24083. }
  24084. },
  24085. sideStepping: {
  24086. height: math.unit(8, "feet"),
  24087. weight: math.unit(300, "lb"),
  24088. name: "Side (Stepping)",
  24089. image: {
  24090. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24091. extra: 1968 / 1860,
  24092. bottom: 16.4 / 1989
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(8, "feet")
  24100. },
  24101. {
  24102. name: "Minimacro",
  24103. height: math.unit(75, "feet"),
  24104. default: true
  24105. },
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(150, "feet")
  24109. },
  24110. {
  24111. name: "Macro+",
  24112. height: math.unit(1000, "feet")
  24113. },
  24114. {
  24115. name: "Megamacro",
  24116. height: math.unit(1, "mile")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24122. {
  24123. side: {
  24124. height: math.unit(20, "feet"),
  24125. weight: math.unit(30000, "kg"),
  24126. name: "Side",
  24127. image: {
  24128. source: "./media/characters/windar/side.svg",
  24129. extra: 1491 / 1248,
  24130. bottom: 82.56 / 1568
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(20, "feet"),
  24138. default: true
  24139. },
  24140. ]
  24141. ))
  24142. characterMakers.push(() => makeCharacter(
  24143. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24144. {
  24145. side: {
  24146. height: math.unit(15.66, "feet"),
  24147. weight: math.unit(150, "lb"),
  24148. name: "Side",
  24149. image: {
  24150. source: "./media/characters/melody/side.svg",
  24151. extra: 1097 / 944,
  24152. bottom: 11.8 / 1109
  24153. }
  24154. },
  24155. sideOutfit: {
  24156. height: math.unit(15.66, "feet"),
  24157. weight: math.unit(150, "lb"),
  24158. name: "Side (Outfit)",
  24159. image: {
  24160. source: "./media/characters/melody/side-outfit.svg",
  24161. extra: 1097 / 944,
  24162. bottom: 11.8 / 1109
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(15.66, "feet"),
  24170. default: true
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24176. {
  24177. armoredFront: {
  24178. height: math.unit(8, "feet"),
  24179. weight: math.unit(325, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/windera/armored-front.svg",
  24183. extra: 1830/1598,
  24184. bottom: 151/1981
  24185. },
  24186. form: "armored",
  24187. default: true
  24188. },
  24189. macroFront: {
  24190. height: math.unit(70, "feet"),
  24191. weight: math.unit(315453, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/windera/macro-front.svg",
  24195. extra: 963/883,
  24196. bottom: 23/986
  24197. },
  24198. form: "macro",
  24199. default: true
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(8, "feet"),
  24206. default: true,
  24207. form: "armored"
  24208. },
  24209. {
  24210. name: "Normal",
  24211. height: math.unit(70, "feet"),
  24212. default: true,
  24213. form: "macro"
  24214. },
  24215. ],
  24216. {
  24217. "armored": {
  24218. name: "Armored",
  24219. default: true
  24220. },
  24221. "macro": {
  24222. name: "Macro",
  24223. },
  24224. }
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24228. {
  24229. front: {
  24230. height: math.unit(28.75, "feet"),
  24231. weight: math.unit(2000, "kg"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/sonear/front.svg",
  24235. extra: 1041.1 / 964.9,
  24236. bottom: 53.7 / 1096.6
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(28.75, "feet"),
  24244. default: true
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24250. {
  24251. side: {
  24252. height: math.unit(25.5, "feet"),
  24253. weight: math.unit(23000, "kg"),
  24254. name: "Side",
  24255. image: {
  24256. source: "./media/characters/kanara/side.svg"
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(25.5, "feet"),
  24264. default: true
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24270. {
  24271. side: {
  24272. height: math.unit(10, "feet"),
  24273. weight: math.unit(1000, "kg"),
  24274. name: "Side",
  24275. image: {
  24276. source: "./media/characters/ereus/side.svg",
  24277. extra: 1157 / 959,
  24278. bottom: 153 / 1312.5
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Normal",
  24285. height: math.unit(10, "feet"),
  24286. default: true
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24292. {
  24293. side: {
  24294. height: math.unit(4.5, "feet"),
  24295. weight: math.unit(500, "lb"),
  24296. name: "Side",
  24297. image: {
  24298. source: "./media/characters/e-ter/side.svg",
  24299. extra: 1550 / 1248,
  24300. bottom: 146 / 1694
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(4.5, "feet"),
  24308. default: true
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24314. {
  24315. side: {
  24316. height: math.unit(9.7, "feet"),
  24317. weight: math.unit(4000, "kg"),
  24318. name: "Side",
  24319. image: {
  24320. source: "./media/characters/yamie/side.svg"
  24321. }
  24322. },
  24323. },
  24324. [
  24325. {
  24326. name: "Normal",
  24327. height: math.unit(9.7, "feet"),
  24328. default: true
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(50, "feet"),
  24337. weight: math.unit(50000, "kg"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/anders/front.svg",
  24341. extra: 570 / 539,
  24342. bottom: 14.7 / 586.7
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Large",
  24349. height: math.unit(50, "feet")
  24350. },
  24351. {
  24352. name: "Macro",
  24353. height: math.unit(2000, "feet"),
  24354. default: true
  24355. },
  24356. {
  24357. name: "Megamacro",
  24358. height: math.unit(12, "miles")
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24364. {
  24365. front: {
  24366. height: math.unit(7 + 2 / 12, "feet"),
  24367. weight: math.unit(300, "lb"),
  24368. name: "Front",
  24369. image: {
  24370. source: "./media/characters/reban/front.svg",
  24371. extra: 1287/1212,
  24372. bottom: 148/1435
  24373. }
  24374. },
  24375. head: {
  24376. height: math.unit(1.95, "feet"),
  24377. name: "Head",
  24378. image: {
  24379. source: "./media/characters/reban/head.svg"
  24380. }
  24381. },
  24382. maw: {
  24383. height: math.unit(0.95, "feet"),
  24384. name: "Maw",
  24385. image: {
  24386. source: "./media/characters/reban/maw.svg"
  24387. }
  24388. },
  24389. foot: {
  24390. height: math.unit(1.65, "feet"),
  24391. name: "Foot",
  24392. image: {
  24393. source: "./media/characters/reban/foot.svg"
  24394. }
  24395. },
  24396. dick: {
  24397. height: math.unit(7 / 5, "feet"),
  24398. name: "Dick",
  24399. image: {
  24400. source: "./media/characters/reban/dick.svg"
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Natural Height",
  24407. height: math.unit(7 + 2 / 12, "feet")
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(500, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Canon Height",
  24416. height: math.unit(50, "AU")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(6, "feet"),
  24425. weight: math.unit(150, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/terrance-keayes/front.svg",
  24429. extra: 1.005,
  24430. bottom: 151 / 1615
  24431. }
  24432. },
  24433. side: {
  24434. height: math.unit(6, "feet"),
  24435. weight: math.unit(150, "lb"),
  24436. name: "Side",
  24437. image: {
  24438. source: "./media/characters/terrance-keayes/side.svg",
  24439. extra: 1.005,
  24440. bottom: 129.4 / 1544
  24441. }
  24442. },
  24443. back: {
  24444. height: math.unit(6, "feet"),
  24445. weight: math.unit(150, "lb"),
  24446. name: "Back",
  24447. image: {
  24448. source: "./media/characters/terrance-keayes/back.svg",
  24449. extra: 1.005,
  24450. bottom: 58.4 / 1557.3
  24451. }
  24452. },
  24453. dick: {
  24454. height: math.unit(6 * 0.208, "feet"),
  24455. name: "Dick",
  24456. image: {
  24457. source: "./media/characters/terrance-keayes/dick.svg"
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Canon Height",
  24464. height: math.unit(35, "miles"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(6, "feet"),
  24474. weight: math.unit(150, "lb"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/ofelia/front.svg",
  24478. extra: 1130/1117,
  24479. bottom: 91/1221
  24480. }
  24481. },
  24482. back: {
  24483. height: math.unit(6, "feet"),
  24484. weight: math.unit(150, "lb"),
  24485. name: "Back",
  24486. image: {
  24487. source: "./media/characters/ofelia/back.svg",
  24488. extra: 1172/1159,
  24489. bottom: 28/1200
  24490. }
  24491. },
  24492. maw: {
  24493. height: math.unit(1, "feet"),
  24494. name: "Maw",
  24495. image: {
  24496. source: "./media/characters/ofelia/maw.svg"
  24497. }
  24498. },
  24499. foot: {
  24500. height: math.unit(1.949, "feet"),
  24501. name: "Foot",
  24502. image: {
  24503. source: "./media/characters/ofelia/foot.svg"
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Canon Height",
  24510. height: math.unit(2000, "miles"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(6, "feet"),
  24520. weight: math.unit(150, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/samuel/front.svg",
  24524. extra: 265 / 258,
  24525. bottom: 2 / 266.1566
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Macro",
  24532. height: math.unit(100, "feet"),
  24533. default: true
  24534. },
  24535. {
  24536. name: "Full Size",
  24537. height: math.unit(1000, "miles")
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(6, "feet"),
  24546. weight: math.unit(300, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/beishir-kiel/front.svg",
  24550. extra: 569 / 547,
  24551. bottom: 41.9 / 609
  24552. }
  24553. },
  24554. maw: {
  24555. height: math.unit(6 * 0.202, "feet"),
  24556. name: "Maw",
  24557. image: {
  24558. source: "./media/characters/beishir-kiel/maw.svg"
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Macro",
  24565. height: math.unit(300, "feet"),
  24566. default: true
  24567. },
  24568. ]
  24569. ))
  24570. characterMakers.push(() => makeCharacter(
  24571. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24572. {
  24573. front: {
  24574. height: math.unit(5 + 7/12, "feet"),
  24575. weight: math.unit(120, "lb"),
  24576. name: "Front",
  24577. image: {
  24578. source: "./media/characters/logan-grey/front.svg",
  24579. extra: 1836/1738,
  24580. bottom: 108/1944
  24581. }
  24582. },
  24583. back: {
  24584. height: math.unit(5 + 7/12, "feet"),
  24585. weight: math.unit(120, "lb"),
  24586. name: "Back",
  24587. image: {
  24588. source: "./media/characters/logan-grey/back.svg",
  24589. extra: 1880/1794,
  24590. bottom: 24/1904
  24591. }
  24592. },
  24593. frontSfw: {
  24594. height: math.unit(5 + 7/12, "feet"),
  24595. weight: math.unit(120, "lb"),
  24596. name: "Front (SFW)",
  24597. image: {
  24598. source: "./media/characters/logan-grey/front-sfw.svg",
  24599. extra: 1836/1738,
  24600. bottom: 108/1944
  24601. }
  24602. },
  24603. backSfw: {
  24604. height: math.unit(5 + 7/12, "feet"),
  24605. weight: math.unit(120, "lb"),
  24606. name: "Back (SFW)",
  24607. image: {
  24608. source: "./media/characters/logan-grey/back-sfw.svg",
  24609. extra: 1880/1794,
  24610. bottom: 24/1904
  24611. }
  24612. },
  24613. hands: {
  24614. height: math.unit(0.84, "feet"),
  24615. name: "Hands",
  24616. image: {
  24617. source: "./media/characters/logan-grey/hands.svg"
  24618. }
  24619. },
  24620. paws: {
  24621. height: math.unit(0.72, "feet"),
  24622. name: "Paws",
  24623. image: {
  24624. source: "./media/characters/logan-grey/paws.svg"
  24625. }
  24626. },
  24627. cock: {
  24628. height: math.unit(1.45, "feet"),
  24629. name: "Cock",
  24630. image: {
  24631. source: "./media/characters/logan-grey/cock.svg"
  24632. }
  24633. },
  24634. cockAlt: {
  24635. height: math.unit(1.437, "feet"),
  24636. name: "Cock (alt)",
  24637. image: {
  24638. source: "./media/characters/logan-grey/cock-alt.svg"
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(5 + 8 / 12, "feet")
  24646. },
  24647. {
  24648. name: "The 500 Foot Femboy",
  24649. height: math.unit(500, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Megmacro",
  24654. height: math.unit(20, "miles")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24660. {
  24661. front: {
  24662. height: math.unit(8 + 2 / 12, "feet"),
  24663. weight: math.unit(275, "lb"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/draganta/front.svg",
  24667. extra: 1177 / 1135,
  24668. bottom: 33.46 / 1212.1
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(8 + 6 / 12, "feet"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(150, "feet")
  24681. },
  24682. {
  24683. name: "Megamacro",
  24684. height: math.unit(1000, "miles")
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(1.72, "m"),
  24693. weight: math.unit(80, "lb"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/voski/front.svg",
  24697. extra: 2076.22 / 2022.4,
  24698. bottom: 102.7 / 2177.3866
  24699. }
  24700. },
  24701. frontFlaccid: {
  24702. height: math.unit(1.72, "m"),
  24703. weight: math.unit(80, "lb"),
  24704. name: "Front (Flaccid)",
  24705. image: {
  24706. source: "./media/characters/voski/front-flaccid.svg",
  24707. extra: 2076.22 / 2022.4,
  24708. bottom: 102.7 / 2177.3866
  24709. }
  24710. },
  24711. frontErect: {
  24712. height: math.unit(1.72, "m"),
  24713. weight: math.unit(80, "lb"),
  24714. name: "Front (Erect)",
  24715. image: {
  24716. source: "./media/characters/voski/front-erect.svg",
  24717. extra: 2076.22 / 2022.4,
  24718. bottom: 102.7 / 2177.3866
  24719. }
  24720. },
  24721. back: {
  24722. height: math.unit(1.72, "m"),
  24723. weight: math.unit(80, "lb"),
  24724. name: "Back",
  24725. image: {
  24726. source: "./media/characters/voski/back.svg",
  24727. extra: 2104 / 2051,
  24728. bottom: 10.45 / 2113.63
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(1.72, "m")
  24736. },
  24737. {
  24738. name: "Macro",
  24739. height: math.unit(55, "m"),
  24740. default: true
  24741. },
  24742. {
  24743. name: "Macro+",
  24744. height: math.unit(300, "m")
  24745. },
  24746. {
  24747. name: "Macro++",
  24748. height: math.unit(700, "m")
  24749. },
  24750. {
  24751. name: "Macro+++",
  24752. height: math.unit(4500, "m")
  24753. },
  24754. {
  24755. name: "Macro++++",
  24756. height: math.unit(45, "km")
  24757. },
  24758. {
  24759. name: "Macro+++++",
  24760. height: math.unit(1220, "km")
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(2.3, "m"),
  24769. weight: math.unit(304, "kg"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/icowom-lee/front.svg",
  24773. extra: 985 / 955,
  24774. bottom: 25.4 / 1012
  24775. }
  24776. },
  24777. fronttentacles: {
  24778. height: math.unit(2.3, "m"),
  24779. weight: math.unit(304, "kg"),
  24780. name: "Front-tentacles",
  24781. image: {
  24782. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24783. extra: 985 / 955,
  24784. bottom: 25.4 / 1012
  24785. }
  24786. },
  24787. back: {
  24788. height: math.unit(2.3, "m"),
  24789. weight: math.unit(304, "kg"),
  24790. name: "Back",
  24791. image: {
  24792. source: "./media/characters/icowom-lee/back.svg",
  24793. extra: 975 / 954,
  24794. bottom: 9.5 / 985
  24795. }
  24796. },
  24797. backtentacles: {
  24798. height: math.unit(2.3, "m"),
  24799. weight: math.unit(304, "kg"),
  24800. name: "Back-tentacles",
  24801. image: {
  24802. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24803. extra: 975 / 954,
  24804. bottom: 9.5 / 985
  24805. }
  24806. },
  24807. frontDressed: {
  24808. height: math.unit(2.3, "m"),
  24809. weight: math.unit(304, "kg"),
  24810. name: "Front (Dressed)",
  24811. image: {
  24812. source: "./media/characters/icowom-lee/front-dressed.svg",
  24813. extra: 3076 / 2933,
  24814. bottom: 51.4 / 3125.1889
  24815. }
  24816. },
  24817. rump: {
  24818. height: math.unit(0.776, "meters"),
  24819. name: "Rump",
  24820. image: {
  24821. source: "./media/characters/icowom-lee/rump.svg"
  24822. }
  24823. },
  24824. genitals: {
  24825. height: math.unit(0.78, "meters"),
  24826. name: "Genitals",
  24827. image: {
  24828. source: "./media/characters/icowom-lee/genitals.svg"
  24829. }
  24830. },
  24831. },
  24832. [
  24833. {
  24834. name: "Normal",
  24835. height: math.unit(2.3, "meters"),
  24836. default: true
  24837. },
  24838. {
  24839. name: "Macro",
  24840. height: math.unit(94, "meters"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(22, "meters"),
  24850. weight: math.unit(21000, "kg"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/shock-diamond/front.svg",
  24854. extra: 2204 / 2053,
  24855. bottom: 65 / 2239.47
  24856. }
  24857. },
  24858. frontNude: {
  24859. height: math.unit(22, "meters"),
  24860. weight: math.unit(21000, "kg"),
  24861. name: "Front (Nude)",
  24862. image: {
  24863. source: "./media/characters/shock-diamond/front-nude.svg",
  24864. extra: 2514 / 2285,
  24865. bottom: 13 / 2527.56
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Normal",
  24872. height: math.unit(3, "meters")
  24873. },
  24874. {
  24875. name: "Macro",
  24876. height: math.unit(22, "meters"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(5 + 4/12, "feet"),
  24886. weight: math.unit(125, "lb"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/rory/front.svg",
  24890. extra: 1790/1681,
  24891. bottom: 66/1856
  24892. },
  24893. form: "normal",
  24894. default: true
  24895. },
  24896. back: {
  24897. height: math.unit(5 + 4/12, "feet"),
  24898. weight: math.unit(125, "lb"),
  24899. name: "Back",
  24900. image: {
  24901. source: "./media/characters/rory/back.svg",
  24902. extra: 1805/1690,
  24903. bottom: 56/1861
  24904. },
  24905. form: "normal"
  24906. },
  24907. frontDressed: {
  24908. height: math.unit(5 + 4/12, "feet"),
  24909. weight: math.unit(125, "lb"),
  24910. name: "Front (Dressed)",
  24911. image: {
  24912. source: "./media/characters/rory/front-dressed.svg",
  24913. extra: 1790/1681,
  24914. bottom: 66/1856
  24915. },
  24916. form: "normal"
  24917. },
  24918. backDressed: {
  24919. height: math.unit(5 + 4/12, "feet"),
  24920. weight: math.unit(125, "lb"),
  24921. name: "Back (Dressed)",
  24922. image: {
  24923. source: "./media/characters/rory/back-dressed.svg",
  24924. extra: 1805/1690,
  24925. bottom: 56/1861
  24926. },
  24927. form: "normal"
  24928. },
  24929. frontNsfw: {
  24930. height: math.unit(5 + 4/12, "feet"),
  24931. weight: math.unit(125, "lb"),
  24932. name: "Front (NSFW)",
  24933. image: {
  24934. source: "./media/characters/rory/front-nsfw.svg",
  24935. extra: 1790/1681,
  24936. bottom: 66/1856
  24937. },
  24938. form: "normal"
  24939. },
  24940. backNsfw: {
  24941. height: math.unit(5 + 4/12, "feet"),
  24942. weight: math.unit(125, "lb"),
  24943. name: "Back (NSFW)",
  24944. image: {
  24945. source: "./media/characters/rory/back-nsfw.svg",
  24946. extra: 1805/1690,
  24947. bottom: 56/1861
  24948. },
  24949. form: "normal"
  24950. },
  24951. dick: {
  24952. height: math.unit(0.8, "feet"),
  24953. name: "Dick",
  24954. image: {
  24955. source: "./media/characters/rory/dick.svg"
  24956. },
  24957. form: "normal"
  24958. },
  24959. thicc_front: {
  24960. height: math.unit(5 + 4/12, "feet"),
  24961. weight: math.unit(195, "lb"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/rory/thicc-front.svg",
  24965. extra: 1220/1100,
  24966. bottom: 103/1323
  24967. },
  24968. form: "thicc",
  24969. default: true
  24970. },
  24971. thicc_back: {
  24972. height: math.unit(5 + 4/12, "feet"),
  24973. weight: math.unit(195, "lb"),
  24974. name: "Back",
  24975. image: {
  24976. source: "./media/characters/rory/thicc-back.svg",
  24977. extra: 1166/1086,
  24978. bottom: 35/1201
  24979. },
  24980. form: "thicc"
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Micro",
  24986. height: math.unit(3, "inches"),
  24987. allForms: true
  24988. },
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(5 + 4/12, "feet"),
  24992. allForms: true,
  24993. default: true
  24994. },
  24995. {
  24996. name: "Macro",
  24997. height: math.unit(90, "feet"),
  24998. allForms: true
  24999. },
  25000. {
  25001. name: "Supercharged",
  25002. height: math.unit(270, "feet"),
  25003. allForms: true
  25004. },
  25005. ],
  25006. {
  25007. "normal": {
  25008. name: "Normal",
  25009. default: true
  25010. },
  25011. "thicc": {
  25012. name: "Thicc",
  25013. },
  25014. }
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(5 + 9 / 12, "feet"),
  25021. weight: math.unit(190, "lb"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/sprisk/front.svg",
  25025. extra: 1225 / 1180,
  25026. bottom: 42.7 / 1266.4
  25027. }
  25028. },
  25029. frontNsfw: {
  25030. height: math.unit(5 + 9 / 12, "feet"),
  25031. weight: math.unit(190, "lb"),
  25032. name: "Front (NSFW)",
  25033. image: {
  25034. source: "./media/characters/sprisk/front-nsfw.svg",
  25035. extra: 1225 / 1180,
  25036. bottom: 42.7 / 1266.4
  25037. }
  25038. },
  25039. back: {
  25040. height: math.unit(5 + 9 / 12, "feet"),
  25041. weight: math.unit(190, "lb"),
  25042. name: "Back",
  25043. image: {
  25044. source: "./media/characters/sprisk/back.svg",
  25045. extra: 1247 / 1200,
  25046. bottom: 5.6 / 1253.04
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Tiny",
  25053. height: math.unit(2, "inches")
  25054. },
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(5 + 9 / 12, "feet"),
  25058. default: true
  25059. },
  25060. {
  25061. name: "Mini Macro",
  25062. height: math.unit(18, "feet")
  25063. },
  25064. {
  25065. name: "Macro",
  25066. height: math.unit(100, "feet")
  25067. },
  25068. {
  25069. name: "MACRO",
  25070. height: math.unit(50, "miles")
  25071. },
  25072. {
  25073. name: "M A C R O",
  25074. height: math.unit(300, "miles")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25080. {
  25081. side: {
  25082. height: math.unit(15.6, "meters"),
  25083. weight: math.unit(700000, "kg"),
  25084. name: "Side",
  25085. image: {
  25086. source: "./media/characters/bunsen/side.svg",
  25087. extra: 1644 / 358
  25088. }
  25089. },
  25090. foot: {
  25091. height: math.unit(1.611 * 1644 / 358, "meter"),
  25092. name: "Foot",
  25093. image: {
  25094. source: "./media/characters/bunsen/foot.svg"
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Small",
  25101. height: math.unit(10, "feet")
  25102. },
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(15.6, "meters"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(4 + 11 / 12, "feet"),
  25115. weight: math.unit(140, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/sesh/front.svg",
  25119. extra: 3420 / 3231,
  25120. bottom: 72 / 3949.5
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(4 + 11 / 12, "feet")
  25128. },
  25129. {
  25130. name: "Grown",
  25131. height: math.unit(15, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(1500, "feet")
  25137. },
  25138. {
  25139. name: "Megamacro",
  25140. height: math.unit(30, "miles")
  25141. },
  25142. {
  25143. name: "Continental",
  25144. height: math.unit(3000, "miles")
  25145. },
  25146. {
  25147. name: "Gravity Mass",
  25148. height: math.unit(300000, "miles")
  25149. },
  25150. {
  25151. name: "Planet Buster",
  25152. height: math.unit(30000000, "miles")
  25153. },
  25154. {
  25155. name: "Big",
  25156. height: math.unit(3000000000, "miles")
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(9, "feet"),
  25165. weight: math.unit(350, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/pepper/front.svg",
  25169. extra: 1448 / 1312,
  25170. bottom: 9.4 / 1457.88
  25171. }
  25172. },
  25173. back: {
  25174. height: math.unit(9, "feet"),
  25175. weight: math.unit(350, "lb"),
  25176. name: "Back",
  25177. image: {
  25178. source: "./media/characters/pepper/back.svg",
  25179. extra: 1423 / 1300,
  25180. bottom: 4.6 / 1429
  25181. }
  25182. },
  25183. maw: {
  25184. height: math.unit(0.932, "feet"),
  25185. name: "Maw",
  25186. image: {
  25187. source: "./media/characters/pepper/maw.svg"
  25188. }
  25189. },
  25190. },
  25191. [
  25192. {
  25193. name: "Normal",
  25194. height: math.unit(9, "feet"),
  25195. default: true
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(6, "feet"),
  25204. weight: math.unit(150, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/maelstrom/front.svg",
  25208. extra: 2100 / 1883,
  25209. bottom: 94 / 2196.7
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Less Kaiju",
  25216. height: math.unit(200, "feet")
  25217. },
  25218. {
  25219. name: "Kaiju",
  25220. height: math.unit(400, "feet"),
  25221. default: true
  25222. },
  25223. {
  25224. name: "Kaiju-er",
  25225. height: math.unit(600, "feet")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(6 + 5 / 12, "feet"),
  25234. weight: math.unit(180, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/lexir/front.svg",
  25238. extra: 180 / 172,
  25239. bottom: 12 / 192
  25240. }
  25241. },
  25242. back: {
  25243. height: math.unit(6 + 5 / 12, "feet"),
  25244. weight: math.unit(180, "lb"),
  25245. name: "Back",
  25246. image: {
  25247. source: "./media/characters/lexir/back.svg",
  25248. extra: 1273/1201,
  25249. bottom: 39/1312
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Very Smal",
  25256. height: math.unit(1, "nm")
  25257. },
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(6 + 5 / 12, "feet"),
  25261. default: true
  25262. },
  25263. {
  25264. name: "Macro",
  25265. height: math.unit(1, "mile")
  25266. },
  25267. {
  25268. name: "Megamacro",
  25269. height: math.unit(50, "miles")
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(1.5, "meters"),
  25278. weight: math.unit(100, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/maksio/front.svg",
  25282. extra: 1549 / 1531,
  25283. bottom: 123.7 / 1674.5429
  25284. }
  25285. },
  25286. back: {
  25287. height: math.unit(1.5, "meters"),
  25288. weight: math.unit(100, "lb"),
  25289. name: "Back",
  25290. image: {
  25291. source: "./media/characters/maksio/back.svg",
  25292. extra: 1541 / 1509,
  25293. bottom: 97 / 1639
  25294. }
  25295. },
  25296. hand: {
  25297. height: math.unit(0.621, "feet"),
  25298. name: "Hand",
  25299. image: {
  25300. source: "./media/characters/maksio/hand.svg"
  25301. }
  25302. },
  25303. foot: {
  25304. height: math.unit(1.611, "feet"),
  25305. name: "Foot",
  25306. image: {
  25307. source: "./media/characters/maksio/foot.svg"
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Shrunken",
  25314. height: math.unit(10, "cm")
  25315. },
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(150, "cm"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(100, "feet"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/erza-bear/front.svg",
  25331. extra: 2449 / 2390,
  25332. bottom: 46 / 2494
  25333. }
  25334. },
  25335. back: {
  25336. height: math.unit(100, "feet"),
  25337. name: "Back",
  25338. image: {
  25339. source: "./media/characters/erza-bear/back.svg",
  25340. extra: 2489 / 2430,
  25341. bottom: 85.4 / 2480
  25342. }
  25343. },
  25344. tail: {
  25345. height: math.unit(42, "feet"),
  25346. name: "Tail",
  25347. image: {
  25348. source: "./media/characters/erza-bear/tail.svg"
  25349. }
  25350. },
  25351. tongue: {
  25352. height: math.unit(8, "feet"),
  25353. name: "Tongue",
  25354. image: {
  25355. source: "./media/characters/erza-bear/tongue.svg"
  25356. }
  25357. },
  25358. dick: {
  25359. height: math.unit(10.5, "feet"),
  25360. name: "Dick",
  25361. image: {
  25362. source: "./media/characters/erza-bear/dick.svg"
  25363. }
  25364. },
  25365. dickVertical: {
  25366. height: math.unit(16.9, "feet"),
  25367. name: "Dick (Vertical)",
  25368. image: {
  25369. source: "./media/characters/erza-bear/dick-vertical.svg"
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(100, "feet"),
  25377. default: true
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(172, "cm"),
  25386. weight: math.unit(73, "kg"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/violet-flor/front.svg",
  25390. extra: 1530 / 1442,
  25391. bottom: 61.9 / 1588.8
  25392. }
  25393. },
  25394. back: {
  25395. height: math.unit(180, "cm"),
  25396. weight: math.unit(73, "kg"),
  25397. name: "Back",
  25398. image: {
  25399. source: "./media/characters/violet-flor/back.svg",
  25400. extra: 1692 / 1630,
  25401. bottom: 20 / 1712
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "Normal",
  25408. height: math.unit(172, "cm"),
  25409. default: true
  25410. },
  25411. ]
  25412. ))
  25413. characterMakers.push(() => makeCharacter(
  25414. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25415. {
  25416. front: {
  25417. height: math.unit(6, "feet"),
  25418. weight: math.unit(220, "lb"),
  25419. name: "Front",
  25420. image: {
  25421. source: "./media/characters/lynn-rhea/front.svg",
  25422. extra: 310 / 273
  25423. }
  25424. },
  25425. back: {
  25426. height: math.unit(6, "feet"),
  25427. weight: math.unit(220, "lb"),
  25428. name: "Back",
  25429. image: {
  25430. source: "./media/characters/lynn-rhea/back.svg",
  25431. extra: 310 / 273
  25432. }
  25433. },
  25434. dicks: {
  25435. height: math.unit(0.9, "feet"),
  25436. name: "Dicks",
  25437. image: {
  25438. source: "./media/characters/lynn-rhea/dicks.svg"
  25439. }
  25440. },
  25441. slit: {
  25442. height: math.unit(0.4, "feet"),
  25443. name: "Slit",
  25444. image: {
  25445. source: "./media/characters/lynn-rhea/slit.svg"
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Micro",
  25452. height: math.unit(1, "inch")
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(60, "feet"),
  25457. default: true
  25458. },
  25459. {
  25460. name: "Megamacro",
  25461. height: math.unit(2, "miles")
  25462. },
  25463. {
  25464. name: "Gigamacro",
  25465. height: math.unit(3, "earths")
  25466. },
  25467. {
  25468. name: "Galactic",
  25469. height: math.unit(0.8, "galaxies")
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25475. {
  25476. front: {
  25477. height: math.unit(1600, "feet"),
  25478. weight: math.unit(85758785169, "kg"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/valathos/front.svg",
  25482. extra: 1451 / 1339
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Macro",
  25489. height: math.unit(1600, "feet"),
  25490. default: true
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(7 + 5 / 12, "feet"),
  25499. weight: math.unit(300, "lb"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/azula/front.svg",
  25503. extra: 3208 / 2880,
  25504. bottom: 80.2 / 3277
  25505. }
  25506. },
  25507. back: {
  25508. height: math.unit(7 + 5 / 12, "feet"),
  25509. weight: math.unit(300, "lb"),
  25510. name: "Back",
  25511. image: {
  25512. source: "./media/characters/azula/back.svg",
  25513. extra: 3169 / 2822,
  25514. bottom: 150.6 / 3321
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Normal",
  25521. height: math.unit(7 + 5 / 12, "feet"),
  25522. default: true
  25523. },
  25524. {
  25525. name: "Big",
  25526. height: math.unit(20, "feet")
  25527. },
  25528. ]
  25529. ))
  25530. characterMakers.push(() => makeCharacter(
  25531. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25532. {
  25533. front: {
  25534. height: math.unit(5 + 1 / 12, "feet"),
  25535. weight: math.unit(110, "lb"),
  25536. name: "Front",
  25537. image: {
  25538. source: "./media/characters/rupert/front.svg",
  25539. extra: 1549 / 1495,
  25540. bottom: 54.2 / 1604.4
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Normal",
  25547. height: math.unit(5 + 1 / 12, "feet"),
  25548. default: true
  25549. },
  25550. ]
  25551. ))
  25552. characterMakers.push(() => makeCharacter(
  25553. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25554. {
  25555. front: {
  25556. height: math.unit(8 + 4 / 12, "feet"),
  25557. weight: math.unit(350, "lb"),
  25558. name: "Front",
  25559. image: {
  25560. source: "./media/characters/sheera-castellar/front.svg",
  25561. extra: 1957 / 1894,
  25562. bottom: 26.97 / 1975.017
  25563. }
  25564. },
  25565. side: {
  25566. height: math.unit(8 + 4 / 12, "feet"),
  25567. weight: math.unit(350, "lb"),
  25568. name: "Side",
  25569. image: {
  25570. source: "./media/characters/sheera-castellar/side.svg",
  25571. extra: 1957 / 1894
  25572. }
  25573. },
  25574. back: {
  25575. height: math.unit(8 + 4 / 12, "feet"),
  25576. weight: math.unit(350, "lb"),
  25577. name: "Back",
  25578. image: {
  25579. source: "./media/characters/sheera-castellar/back.svg",
  25580. extra: 1957 / 1894
  25581. }
  25582. },
  25583. angled: {
  25584. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25585. weight: math.unit(350, "lb"),
  25586. name: "Angled",
  25587. image: {
  25588. source: "./media/characters/sheera-castellar/angled.svg",
  25589. extra: 1807 / 1707,
  25590. bottom: 68 / 1875
  25591. }
  25592. },
  25593. genitals: {
  25594. height: math.unit(2.2, "feet"),
  25595. name: "Genitals",
  25596. image: {
  25597. source: "./media/characters/sheera-castellar/genitals.svg"
  25598. }
  25599. },
  25600. taur: {
  25601. height: math.unit(10 + 6/12, "feet"),
  25602. name: "Taur",
  25603. image: {
  25604. source: "./media/characters/sheera-castellar/taur.svg",
  25605. extra: 2017/1909,
  25606. bottom: 185/2202
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(8 + 4 / 12, "feet")
  25614. },
  25615. {
  25616. name: "Macro",
  25617. height: math.unit(150, "feet"),
  25618. default: true
  25619. },
  25620. {
  25621. name: "Macro+",
  25622. height: math.unit(800, "feet")
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25628. {
  25629. front: {
  25630. height: math.unit(6, "feet"),
  25631. weight: math.unit(150, "lb"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/jaipur/front.svg",
  25635. extra: 3860 / 3731,
  25636. bottom: 287 / 4140
  25637. }
  25638. },
  25639. back: {
  25640. height: math.unit(6, "feet"),
  25641. weight: math.unit(150, "lb"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/jaipur/back.svg",
  25645. extra: 1637/1561,
  25646. bottom: 154/1791
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Normal",
  25653. height: math.unit(1.85, "meters"),
  25654. default: true
  25655. },
  25656. {
  25657. name: "Macro",
  25658. height: math.unit(150, "meters")
  25659. },
  25660. {
  25661. name: "Macro+",
  25662. height: math.unit(0.5, "miles")
  25663. },
  25664. {
  25665. name: "Macro++",
  25666. height: math.unit(2.5, "miles")
  25667. },
  25668. {
  25669. name: "Macro+++",
  25670. height: math.unit(12, "miles")
  25671. },
  25672. {
  25673. name: "Macro++++",
  25674. height: math.unit(120, "miles")
  25675. },
  25676. {
  25677. name: "Macro+++++",
  25678. height: math.unit(1200, "miles")
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25684. {
  25685. front: {
  25686. height: math.unit(6, "feet"),
  25687. weight: math.unit(150, "lb"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/sheila-wolf/front.svg",
  25691. extra: 1931 / 1808,
  25692. bottom: 29.5 / 1960
  25693. }
  25694. },
  25695. dick: {
  25696. height: math.unit(1.464, "feet"),
  25697. name: "Dick",
  25698. image: {
  25699. source: "./media/characters/sheila-wolf/dick.svg"
  25700. }
  25701. },
  25702. muzzle: {
  25703. height: math.unit(0.513, "feet"),
  25704. name: "Muzzle",
  25705. image: {
  25706. source: "./media/characters/sheila-wolf/muzzle.svg"
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Macro",
  25713. height: math.unit(70, "feet"),
  25714. default: true
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25720. {
  25721. front: {
  25722. height: math.unit(32, "meters"),
  25723. weight: math.unit(300000, "kg"),
  25724. name: "Front",
  25725. image: {
  25726. source: "./media/characters/almor/front.svg",
  25727. extra: 1408 / 1322,
  25728. bottom: 94.6 / 1506.5
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Macro",
  25735. height: math.unit(32, "meters"),
  25736. default: true
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(7, "feet"),
  25745. weight: math.unit(200, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/silver/front.svg",
  25749. extra: 472.1 / 450.5,
  25750. bottom: 26.5 / 499.424
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(7, "feet"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Macro",
  25762. height: math.unit(800, "feet")
  25763. },
  25764. {
  25765. name: "Megamacro",
  25766. height: math.unit(250, "miles")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(6, "feet"),
  25775. weight: math.unit(150, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/pliskin/front.svg",
  25779. extra: 1469 / 1359,
  25780. bottom: 70 / 1540
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Micro",
  25787. height: math.unit(3, "inches")
  25788. },
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(5 + 11 / 12, "feet"),
  25792. default: true
  25793. },
  25794. {
  25795. name: "Macro",
  25796. height: math.unit(120, "feet")
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(6, "feet"),
  25805. weight: math.unit(150, "lb"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/sammy/front.svg",
  25809. extra: 1193 / 1089,
  25810. bottom: 30.5 / 1226
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Macro",
  25817. height: math.unit(1700, "feet"),
  25818. default: true
  25819. },
  25820. {
  25821. name: "Examacro",
  25822. height: math.unit(2.5e9, "lightyears")
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(21, "meters"),
  25831. weight: math.unit(12, "tonnes"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/kuru/front.svg",
  25835. extra: 4301 / 3785,
  25836. bottom: 371.3 / 4691
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Macro",
  25843. height: math.unit(21, "meters"),
  25844. default: true
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(23, "meters"),
  25853. weight: math.unit(12.2, "tonnes"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/rakka/front.svg",
  25857. extra: 4670 / 4169,
  25858. bottom: 301 / 4968.7
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(23, "meters"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25872. {
  25873. front: {
  25874. height: math.unit(6, "feet"),
  25875. weight: math.unit(150, "lb"),
  25876. name: "Front",
  25877. image: {
  25878. source: "./media/characters/rhys-feline/front.svg",
  25879. extra: 2488 / 2308,
  25880. bottom: 35.67 / 2519.19
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Really Small",
  25887. height: math.unit(1, "nm")
  25888. },
  25889. {
  25890. name: "Micro",
  25891. height: math.unit(4, "inches")
  25892. },
  25893. {
  25894. name: "Normal",
  25895. height: math.unit(4 + 10 / 12, "feet"),
  25896. default: true
  25897. },
  25898. {
  25899. name: "Macro",
  25900. height: math.unit(100, "feet")
  25901. },
  25902. {
  25903. name: "Megamacto",
  25904. height: math.unit(50, "miles")
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25910. {
  25911. side: {
  25912. height: math.unit(30, "feet"),
  25913. weight: math.unit(35000, "kg"),
  25914. name: "Side",
  25915. image: {
  25916. source: "./media/characters/alydar/side.svg",
  25917. extra: 234 / 222,
  25918. bottom: 6.5 / 241
  25919. }
  25920. },
  25921. front: {
  25922. height: math.unit(30, "feet"),
  25923. weight: math.unit(35000, "kg"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/alydar/front.svg",
  25927. extra: 223.37 / 210.2,
  25928. bottom: 22.3 / 246.76
  25929. }
  25930. },
  25931. top: {
  25932. height: math.unit(64.54, "feet"),
  25933. weight: math.unit(35000, "kg"),
  25934. name: "Top",
  25935. image: {
  25936. source: "./media/characters/alydar/top.svg"
  25937. }
  25938. },
  25939. anthro: {
  25940. height: math.unit(30, "feet"),
  25941. weight: math.unit(9000, "kg"),
  25942. name: "Anthro",
  25943. image: {
  25944. source: "./media/characters/alydar/anthro.svg",
  25945. extra: 432 / 421,
  25946. bottom: 7.18 / 440
  25947. }
  25948. },
  25949. maw: {
  25950. height: math.unit(11.693, "feet"),
  25951. name: "Maw",
  25952. image: {
  25953. source: "./media/characters/alydar/maw.svg"
  25954. }
  25955. },
  25956. head: {
  25957. height: math.unit(11.693, "feet"),
  25958. name: "Head",
  25959. image: {
  25960. source: "./media/characters/alydar/head.svg"
  25961. }
  25962. },
  25963. headAlt: {
  25964. height: math.unit(12.861, "feet"),
  25965. name: "Head (Alt)",
  25966. image: {
  25967. source: "./media/characters/alydar/head-alt.svg"
  25968. }
  25969. },
  25970. wing: {
  25971. height: math.unit(20.712, "feet"),
  25972. name: "Wing",
  25973. image: {
  25974. source: "./media/characters/alydar/wing.svg"
  25975. }
  25976. },
  25977. wingFeather: {
  25978. height: math.unit(9.662, "feet"),
  25979. name: "Wing Feather",
  25980. image: {
  25981. source: "./media/characters/alydar/wing-feather.svg"
  25982. }
  25983. },
  25984. countourFeather: {
  25985. height: math.unit(4.154, "feet"),
  25986. name: "Contour Feather",
  25987. image: {
  25988. source: "./media/characters/alydar/contour-feather.svg"
  25989. }
  25990. },
  25991. },
  25992. [
  25993. {
  25994. name: "Diplomatic",
  25995. height: math.unit(13, "feet"),
  25996. default: true
  25997. },
  25998. {
  25999. name: "Small",
  26000. height: math.unit(30, "feet")
  26001. },
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(95, "feet"),
  26005. default: true
  26006. },
  26007. {
  26008. name: "Large",
  26009. height: math.unit(285, "feet")
  26010. },
  26011. {
  26012. name: "Incomprehensible",
  26013. height: math.unit(450, "megameters")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26019. {
  26020. side: {
  26021. height: math.unit(11, "feet"),
  26022. weight: math.unit(1750, "kg"),
  26023. name: "Side",
  26024. image: {
  26025. source: "./media/characters/selicia/side.svg",
  26026. extra: 440 / 396,
  26027. bottom: 24.8 / 465.979
  26028. }
  26029. },
  26030. maw: {
  26031. height: math.unit(4.665, "feet"),
  26032. name: "Maw",
  26033. image: {
  26034. source: "./media/characters/selicia/maw.svg"
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Normal",
  26041. height: math.unit(11, "feet"),
  26042. default: true
  26043. },
  26044. ]
  26045. ))
  26046. characterMakers.push(() => makeCharacter(
  26047. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26048. {
  26049. side: {
  26050. height: math.unit(2 + 6 / 12, "feet"),
  26051. weight: math.unit(30, "lb"),
  26052. name: "Side",
  26053. image: {
  26054. source: "./media/characters/layla/side.svg",
  26055. extra: 244 / 188,
  26056. bottom: 18.2 / 262.1
  26057. }
  26058. },
  26059. back: {
  26060. height: math.unit(2 + 6 / 12, "feet"),
  26061. weight: math.unit(30, "lb"),
  26062. name: "Back",
  26063. image: {
  26064. source: "./media/characters/layla/back.svg",
  26065. extra: 308 / 241.5,
  26066. bottom: 8.9 / 316.8
  26067. }
  26068. },
  26069. cumming: {
  26070. height: math.unit(2 + 6 / 12, "feet"),
  26071. weight: math.unit(30, "lb"),
  26072. name: "Cumming",
  26073. image: {
  26074. source: "./media/characters/layla/cumming.svg",
  26075. extra: 342 / 279,
  26076. bottom: 595 / 938
  26077. }
  26078. },
  26079. dickFlaccid: {
  26080. height: math.unit(2.595, "feet"),
  26081. name: "Flaccid Genitals",
  26082. image: {
  26083. source: "./media/characters/layla/dick-flaccid.svg"
  26084. }
  26085. },
  26086. dickErect: {
  26087. height: math.unit(2.359, "feet"),
  26088. name: "Erect Genitals",
  26089. image: {
  26090. source: "./media/characters/layla/dick-erect.svg"
  26091. }
  26092. },
  26093. dragon: {
  26094. height: math.unit(40, "feet"),
  26095. name: "Dragon",
  26096. image: {
  26097. source: "./media/characters/layla/dragon.svg",
  26098. extra: 610/535,
  26099. bottom: 367/977
  26100. }
  26101. },
  26102. taur: {
  26103. height: math.unit(30, "feet"),
  26104. name: "Taur",
  26105. image: {
  26106. source: "./media/characters/layla/taur.svg",
  26107. extra: 1268/1199,
  26108. bottom: 112/1380
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Micro",
  26115. height: math.unit(1, "inch")
  26116. },
  26117. {
  26118. name: "Small",
  26119. height: math.unit(1, "foot")
  26120. },
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(2 + 6 / 12, "feet"),
  26124. default: true
  26125. },
  26126. {
  26127. name: "Macro",
  26128. height: math.unit(200, "feet")
  26129. },
  26130. {
  26131. name: "Megamacro",
  26132. height: math.unit(1000, "miles")
  26133. },
  26134. {
  26135. name: "Planetary",
  26136. height: math.unit(8000, "miles")
  26137. },
  26138. {
  26139. name: "True Layla",
  26140. height: math.unit(200000 * 7, "multiverses")
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26146. {
  26147. back: {
  26148. height: math.unit(10.5, "feet"),
  26149. weight: math.unit(800, "lb"),
  26150. name: "Back",
  26151. image: {
  26152. source: "./media/characters/knox/back.svg",
  26153. extra: 1486 / 1089,
  26154. bottom: 107 / 1601.4
  26155. }
  26156. },
  26157. side: {
  26158. height: math.unit(10.5, "feet"),
  26159. weight: math.unit(800, "lb"),
  26160. name: "Side",
  26161. image: {
  26162. source: "./media/characters/knox/side.svg",
  26163. extra: 244 / 218,
  26164. bottom: 14 / 260
  26165. }
  26166. },
  26167. },
  26168. [
  26169. {
  26170. name: "Compact",
  26171. height: math.unit(10.5, "feet"),
  26172. default: true
  26173. },
  26174. {
  26175. name: "Dynamax",
  26176. height: math.unit(210, "feet")
  26177. },
  26178. {
  26179. name: "Full Macro",
  26180. height: math.unit(850, "feet")
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(28, "feet"),
  26189. weight: math.unit(10500, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/kayda/front.svg",
  26193. extra: 1536 / 1428,
  26194. bottom: 68.7 / 1603
  26195. }
  26196. },
  26197. back: {
  26198. height: math.unit(28, "feet"),
  26199. weight: math.unit(10500, "lb"),
  26200. name: "Back",
  26201. image: {
  26202. source: "./media/characters/kayda/back.svg",
  26203. extra: 1557 / 1464,
  26204. bottom: 39.5 / 1597.49
  26205. }
  26206. },
  26207. dick: {
  26208. height: math.unit(3.858, "feet"),
  26209. name: "Dick",
  26210. image: {
  26211. source: "./media/characters/kayda/dick.svg"
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Macro",
  26218. height: math.unit(28, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(10 + 11 / 12, "feet"),
  26228. weight: math.unit(1400, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/brian/front.svg",
  26232. extra: 737 / 692,
  26233. bottom: 55.4 / 785
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(10 + 11 / 12, "feet"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(5 + 8 / 12, "feet"),
  26250. weight: math.unit(140, "lb"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/khemri/front.svg",
  26254. extra: 4780 / 4059,
  26255. bottom: 80.1 / 4859.25
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Micro",
  26262. height: math.unit(6, "inches")
  26263. },
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(5 + 8 / 12, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26273. {
  26274. front: {
  26275. height: math.unit(13, "feet"),
  26276. weight: math.unit(1700, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/felix-braveheart/front.svg",
  26280. extra: 1222 / 1157,
  26281. bottom: 53.2 / 1280
  26282. }
  26283. },
  26284. back: {
  26285. height: math.unit(13, "feet"),
  26286. weight: math.unit(1700, "lb"),
  26287. name: "Back",
  26288. image: {
  26289. source: "./media/characters/felix-braveheart/back.svg",
  26290. extra: 1277 / 1203,
  26291. bottom: 50.2 / 1327
  26292. }
  26293. },
  26294. feral: {
  26295. height: math.unit(6, "feet"),
  26296. weight: math.unit(400, "lb"),
  26297. name: "Feral",
  26298. image: {
  26299. source: "./media/characters/felix-braveheart/feral.svg",
  26300. extra: 682 / 625,
  26301. bottom: 6.9 / 688
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(13, "feet"),
  26309. default: true
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26315. {
  26316. side: {
  26317. height: math.unit(5 + 11 / 12, "feet"),
  26318. weight: math.unit(1400, "lb"),
  26319. name: "Side",
  26320. image: {
  26321. source: "./media/characters/shadow-blade/side.svg",
  26322. extra: 1726 / 1267,
  26323. bottom: 58.4 / 1785
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "Normal",
  26330. height: math.unit(5 + 11 / 12, "feet"),
  26331. default: true
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(1 + 6 / 12, "feet"),
  26340. weight: math.unit(25, "lb"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/karla-halldor/front.svg",
  26344. extra: 1459 / 1383,
  26345. bottom: 12 / 1472
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Normal",
  26352. height: math.unit(1 + 6 / 12, "feet"),
  26353. default: true
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(6 + 2 / 12, "feet"),
  26362. weight: math.unit(160, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/ariam/front.svg",
  26366. extra: 1073/976,
  26367. bottom: 52/1125
  26368. }
  26369. },
  26370. back: {
  26371. height: math.unit(6 + 2/12, "feet"),
  26372. weight: math.unit(160, "lb"),
  26373. name: "Back",
  26374. image: {
  26375. source: "./media/characters/ariam/back.svg",
  26376. extra: 1103/1023,
  26377. bottom: 9/1112
  26378. }
  26379. },
  26380. dressed: {
  26381. height: math.unit(6 + 2/12, "feet"),
  26382. weight: math.unit(160, "lb"),
  26383. name: "Dressed",
  26384. image: {
  26385. source: "./media/characters/ariam/dressed.svg",
  26386. extra: 1099/1009,
  26387. bottom: 25/1124
  26388. }
  26389. },
  26390. squatting: {
  26391. height: math.unit(4.1, "feet"),
  26392. weight: math.unit(160, "lb"),
  26393. name: "Squatting",
  26394. image: {
  26395. source: "./media/characters/ariam/squatting.svg",
  26396. extra: 2617 / 2112,
  26397. bottom: 61.2 / 2681,
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(6 + 2 / 12, "feet"),
  26405. default: true
  26406. },
  26407. {
  26408. name: "Normal+",
  26409. height: math.unit(4, "meters")
  26410. },
  26411. {
  26412. name: "Macro",
  26413. height: math.unit(50, "meters")
  26414. },
  26415. {
  26416. name: "Macro+",
  26417. height: math.unit(100, "meters")
  26418. },
  26419. {
  26420. name: "Megamacro",
  26421. height: math.unit(20, "km")
  26422. },
  26423. {
  26424. name: "Caretaker",
  26425. height: math.unit(444, "megameters")
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(1.67, "meters"),
  26434. weight: math.unit(140, "lb"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26438. extra: 438 / 410,
  26439. bottom: 0.75 / 439
  26440. }
  26441. },
  26442. },
  26443. [
  26444. {
  26445. name: "Shrunken",
  26446. height: math.unit(7.6, "cm")
  26447. },
  26448. {
  26449. name: "Human Scale",
  26450. height: math.unit(1.67, "meters")
  26451. },
  26452. {
  26453. name: "Wolxi Scale",
  26454. height: math.unit(36.7, "meters"),
  26455. default: true
  26456. },
  26457. ]
  26458. ))
  26459. characterMakers.push(() => makeCharacter(
  26460. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26461. {
  26462. front: {
  26463. height: math.unit(1.73, "meters"),
  26464. weight: math.unit(240, "lb"),
  26465. name: "Front",
  26466. image: {
  26467. source: "./media/characters/izue-two-mothers/front.svg",
  26468. extra: 469 / 437,
  26469. bottom: 1.24 / 470.6
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Shrunken",
  26476. height: math.unit(7.86, "cm")
  26477. },
  26478. {
  26479. name: "Human Scale",
  26480. height: math.unit(1.73, "meters")
  26481. },
  26482. {
  26483. name: "Wolxi Scale",
  26484. height: math.unit(38, "meters"),
  26485. default: true
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(1.55, "meters"),
  26494. weight: math.unit(120, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/teeku-love-shack/front.svg",
  26498. extra: 387 / 362,
  26499. bottom: 1.51 / 388
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Shrunken",
  26506. height: math.unit(7, "cm")
  26507. },
  26508. {
  26509. name: "Human Scale",
  26510. height: math.unit(1.55, "meters")
  26511. },
  26512. {
  26513. name: "Wolxi Scale",
  26514. height: math.unit(34.1, "meters"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26521. {
  26522. front: {
  26523. height: math.unit(1.83, "meters"),
  26524. weight: math.unit(135, "lb"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/dejma-the-red/front.svg",
  26528. extra: 480 / 458,
  26529. bottom: 1.8 / 482
  26530. }
  26531. },
  26532. },
  26533. [
  26534. {
  26535. name: "Shrunken",
  26536. height: math.unit(8.3, "cm")
  26537. },
  26538. {
  26539. name: "Human Scale",
  26540. height: math.unit(1.83, "meters")
  26541. },
  26542. {
  26543. name: "Wolxi Scale",
  26544. height: math.unit(40, "meters"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(1.78, "meters"),
  26554. weight: math.unit(65, "kg"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/aki/front.svg",
  26558. extra: 452 / 415
  26559. }
  26560. },
  26561. frontNsfw: {
  26562. height: math.unit(1.78, "meters"),
  26563. weight: math.unit(65, "kg"),
  26564. name: "Front (NSFW)",
  26565. image: {
  26566. source: "./media/characters/aki/front-nsfw.svg",
  26567. extra: 452 / 415
  26568. }
  26569. },
  26570. back: {
  26571. height: math.unit(1.78, "meters"),
  26572. weight: math.unit(65, "kg"),
  26573. name: "Back",
  26574. image: {
  26575. source: "./media/characters/aki/back.svg",
  26576. extra: 452 / 415
  26577. }
  26578. },
  26579. rump: {
  26580. height: math.unit(2.05, "feet"),
  26581. name: "Rump",
  26582. image: {
  26583. source: "./media/characters/aki/rump.svg"
  26584. }
  26585. },
  26586. dick: {
  26587. height: math.unit(0.95, "feet"),
  26588. name: "Dick",
  26589. image: {
  26590. source: "./media/characters/aki/dick.svg"
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Micro",
  26597. height: math.unit(15, "cm")
  26598. },
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(178, "cm"),
  26602. default: true
  26603. },
  26604. {
  26605. name: "Macro",
  26606. height: math.unit(214, "m")
  26607. },
  26608. {
  26609. name: "Macro+",
  26610. height: math.unit(534, "m")
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(5 + 5 / 12, "feet"),
  26619. weight: math.unit(120, "lb"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/ari/front.svg",
  26623. extra: 1550/1471,
  26624. bottom: 39/1589
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(5 + 5 / 12, "feet")
  26632. },
  26633. {
  26634. name: "Macro",
  26635. height: math.unit(100, "feet"),
  26636. default: true
  26637. },
  26638. {
  26639. name: "Megamacro",
  26640. height: math.unit(100, "miles")
  26641. },
  26642. {
  26643. name: "Gigamacro",
  26644. height: math.unit(80000, "miles")
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26650. {
  26651. side: {
  26652. height: math.unit(9, "feet"),
  26653. weight: math.unit(400, "kg"),
  26654. name: "Side",
  26655. image: {
  26656. source: "./media/characters/bolt/side.svg",
  26657. extra: 1126 / 896,
  26658. bottom: 60 / 1187.3,
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Micro",
  26665. height: math.unit(5, "inches")
  26666. },
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(9, "feet"),
  26670. default: true
  26671. },
  26672. {
  26673. name: "Macro",
  26674. height: math.unit(700, "feet")
  26675. },
  26676. {
  26677. name: "Max Size",
  26678. height: math.unit(1.52e22, "yottameters")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(4.3, "meters"),
  26687. weight: math.unit(3, "tons"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/draekon-sylviar/front.svg",
  26691. extra: 2072/1512,
  26692. bottom: 74/2146
  26693. }
  26694. },
  26695. back: {
  26696. height: math.unit(4.3, "meters"),
  26697. weight: math.unit(3, "tons"),
  26698. name: "Back",
  26699. image: {
  26700. source: "./media/characters/draekon-sylviar/back.svg",
  26701. extra: 1639/1483,
  26702. bottom: 41/1680
  26703. }
  26704. },
  26705. feral: {
  26706. height: math.unit(1.15, "meters"),
  26707. weight: math.unit(3, "tons"),
  26708. name: "Feral",
  26709. image: {
  26710. source: "./media/characters/draekon-sylviar/feral.svg",
  26711. extra: 1033/395,
  26712. bottom: 130/1163
  26713. }
  26714. },
  26715. maw: {
  26716. height: math.unit(1.3, "meters"),
  26717. name: "Maw",
  26718. image: {
  26719. source: "./media/characters/draekon-sylviar/maw.svg"
  26720. }
  26721. },
  26722. mawSeparated: {
  26723. height: math.unit(1.53, "meters"),
  26724. name: "Separated Maw",
  26725. image: {
  26726. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26727. }
  26728. },
  26729. tail: {
  26730. height: math.unit(1.15, "meters"),
  26731. name: "Tail",
  26732. image: {
  26733. source: "./media/characters/draekon-sylviar/tail.svg"
  26734. }
  26735. },
  26736. tailDick: {
  26737. height: math.unit(1.15, "meters"),
  26738. name: "Tail (Dick)",
  26739. image: {
  26740. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26741. }
  26742. },
  26743. tailDickSeparated: {
  26744. height: math.unit(1.19, "meters"),
  26745. name: "Tail (Separated Dick)",
  26746. image: {
  26747. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26748. }
  26749. },
  26750. slit: {
  26751. height: math.unit(1, "meters"),
  26752. name: "Slit",
  26753. image: {
  26754. source: "./media/characters/draekon-sylviar/slit.svg"
  26755. }
  26756. },
  26757. dick: {
  26758. height: math.unit(1.15, "meters"),
  26759. name: "Dick",
  26760. image: {
  26761. source: "./media/characters/draekon-sylviar/dick.svg"
  26762. }
  26763. },
  26764. dickSeparated: {
  26765. height: math.unit(1.1, "meters"),
  26766. name: "Separated Dick",
  26767. image: {
  26768. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26769. }
  26770. },
  26771. sheath: {
  26772. height: math.unit(1.15, "meters"),
  26773. name: "Sheath",
  26774. image: {
  26775. source: "./media/characters/draekon-sylviar/sheath.svg"
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Small",
  26782. height: math.unit(4.53 / 2, "meters"),
  26783. default: true
  26784. },
  26785. {
  26786. name: "Normal",
  26787. height: math.unit(4.53, "meters"),
  26788. default: true
  26789. },
  26790. {
  26791. name: "Large",
  26792. height: math.unit(4.53 * 2, "meters"),
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26798. {
  26799. front: {
  26800. height: math.unit(6 + 2 / 12, "feet"),
  26801. weight: math.unit(180, "lb"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/brawler/front.svg",
  26805. extra: 3301 / 3027,
  26806. bottom: 138 / 3439
  26807. }
  26808. },
  26809. },
  26810. [
  26811. {
  26812. name: "Normal",
  26813. height: math.unit(6 + 2 / 12, "feet"),
  26814. default: true
  26815. },
  26816. ]
  26817. ))
  26818. characterMakers.push(() => makeCharacter(
  26819. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26820. {
  26821. front: {
  26822. height: math.unit(11, "feet"),
  26823. weight: math.unit(1000, "lb"),
  26824. name: "Front",
  26825. image: {
  26826. source: "./media/characters/alex/front.svg",
  26827. bottom: 44.5 / 620
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Micro",
  26834. height: math.unit(5, "inches")
  26835. },
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(11, "feet"),
  26839. default: true
  26840. },
  26841. {
  26842. name: "Macro",
  26843. height: math.unit(9.5e9, "feet")
  26844. },
  26845. {
  26846. name: "Max Size",
  26847. height: math.unit(1.4e283, "yottameters")
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26853. {
  26854. female: {
  26855. height: math.unit(29.9, "m"),
  26856. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26857. name: "Female",
  26858. image: {
  26859. source: "./media/characters/zenari/female.svg",
  26860. extra: 3281.6 / 3217,
  26861. bottom: 72.2 / 3353
  26862. }
  26863. },
  26864. male: {
  26865. height: math.unit(27.7, "m"),
  26866. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26867. name: "Male",
  26868. image: {
  26869. source: "./media/characters/zenari/male.svg",
  26870. extra: 3008 / 2991,
  26871. bottom: 54.6 / 3069
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(29.7, "meters"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26885. {
  26886. female: {
  26887. height: math.unit(23.8, "m"),
  26888. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26889. name: "Female",
  26890. image: {
  26891. source: "./media/characters/mactarian/female.svg",
  26892. extra: 2662 / 2569,
  26893. bottom: 73 / 2736
  26894. }
  26895. },
  26896. male: {
  26897. height: math.unit(23.8, "m"),
  26898. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26899. name: "Male",
  26900. image: {
  26901. source: "./media/characters/mactarian/male.svg",
  26902. extra: 2673 / 2600,
  26903. bottom: 76 / 2750
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Macro",
  26910. height: math.unit(23.8, "meters"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26917. {
  26918. female: {
  26919. height: math.unit(19.3, "m"),
  26920. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26921. name: "Female",
  26922. image: {
  26923. source: "./media/characters/umok/female.svg",
  26924. extra: 2186 / 2078,
  26925. bottom: 87 / 2277
  26926. }
  26927. },
  26928. male: {
  26929. height: math.unit(19.5, "m"),
  26930. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26931. name: "Male",
  26932. image: {
  26933. source: "./media/characters/umok/male.svg",
  26934. extra: 2233 / 2140,
  26935. bottom: 24.4 / 2258
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Macro",
  26942. height: math.unit(19.3, "meters"),
  26943. default: true
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26949. {
  26950. female: {
  26951. height: math.unit(26.15, "m"),
  26952. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26953. name: "Female",
  26954. image: {
  26955. source: "./media/characters/joraxian/female.svg",
  26956. extra: 2912 / 2824,
  26957. bottom: 36 / 2956
  26958. }
  26959. },
  26960. male: {
  26961. height: math.unit(25.4, "m"),
  26962. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26963. name: "Male",
  26964. image: {
  26965. source: "./media/characters/joraxian/male.svg",
  26966. extra: 2877 / 2721,
  26967. bottom: 82 / 2967
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(26.15, "meters"),
  26975. default: true
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26981. {
  26982. female: {
  26983. height: math.unit(21.6, "m"),
  26984. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26985. name: "Female",
  26986. image: {
  26987. source: "./media/characters/sthara/female.svg",
  26988. extra: 2516 / 2347,
  26989. bottom: 21.5 / 2537
  26990. }
  26991. },
  26992. male: {
  26993. height: math.unit(24, "m"),
  26994. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26995. name: "Male",
  26996. image: {
  26997. source: "./media/characters/sthara/male.svg",
  26998. extra: 2732 / 2607,
  26999. bottom: 23 / 2732
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Macro",
  27006. height: math.unit(21.6, "meters"),
  27007. default: true
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27013. {
  27014. front: {
  27015. height: math.unit(6 + 4 / 12, "feet"),
  27016. weight: math.unit(175, "lb"),
  27017. name: "Front",
  27018. image: {
  27019. source: "./media/characters/luka-bryzant/front.svg",
  27020. extra: 311 / 289,
  27021. bottom: 4 / 315
  27022. }
  27023. },
  27024. back: {
  27025. height: math.unit(6 + 4 / 12, "feet"),
  27026. weight: math.unit(175, "lb"),
  27027. name: "Back",
  27028. image: {
  27029. source: "./media/characters/luka-bryzant/back.svg",
  27030. extra: 311 / 289,
  27031. bottom: 3.8 / 313.7
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Micro",
  27038. height: math.unit(10, "inches")
  27039. },
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(6 + 4 / 12, "feet"),
  27043. default: true
  27044. },
  27045. {
  27046. name: "Large",
  27047. height: math.unit(12, "feet")
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(5 + 7 / 12, "feet"),
  27056. weight: math.unit(185, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/aman-aquila/front.svg",
  27060. extra: 1013 / 976,
  27061. bottom: 45.6 / 1057
  27062. }
  27063. },
  27064. side: {
  27065. height: math.unit(5 + 7 / 12, "feet"),
  27066. weight: math.unit(185, "lb"),
  27067. name: "Side",
  27068. image: {
  27069. source: "./media/characters/aman-aquila/side.svg",
  27070. extra: 1054 / 1011,
  27071. bottom: 15 / 1070
  27072. }
  27073. },
  27074. back: {
  27075. height: math.unit(5 + 7 / 12, "feet"),
  27076. weight: math.unit(185, "lb"),
  27077. name: "Back",
  27078. image: {
  27079. source: "./media/characters/aman-aquila/back.svg",
  27080. extra: 1026 / 970,
  27081. bottom: 12 / 1039
  27082. }
  27083. },
  27084. head: {
  27085. height: math.unit(1.211, "feet"),
  27086. name: "Head",
  27087. image: {
  27088. source: "./media/characters/aman-aquila/head.svg",
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Minimicro",
  27095. height: math.unit(0.057, "inches")
  27096. },
  27097. {
  27098. name: "Micro",
  27099. height: math.unit(7, "inches")
  27100. },
  27101. {
  27102. name: "Mini",
  27103. height: math.unit(3 + 7 / 12, "feet")
  27104. },
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(5 + 7 / 12, "feet"),
  27108. default: true
  27109. },
  27110. {
  27111. name: "Macro",
  27112. height: math.unit(157 + 7 / 12, "feet")
  27113. },
  27114. {
  27115. name: "Megamacro",
  27116. height: math.unit(1557 + 7 / 12, "feet")
  27117. },
  27118. {
  27119. name: "Gigamacro",
  27120. height: math.unit(15557 + 7 / 12, "feet")
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(3 + 2 / 12, "inches"),
  27129. weight: math.unit(0.3, "ounces"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/hiphae/front.svg",
  27133. extra: 1931 / 1683,
  27134. bottom: 24 / 1955
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(3 + 1 / 2, "inches"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(5 + 10 / 12, "feet"),
  27151. weight: math.unit(165, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/nicky/front.svg",
  27155. extra: 3144 / 2886,
  27156. bottom: 45.6 / 3192
  27157. }
  27158. },
  27159. back: {
  27160. height: math.unit(5 + 10 / 12, "feet"),
  27161. weight: math.unit(165, "lb"),
  27162. name: "Back",
  27163. image: {
  27164. source: "./media/characters/nicky/back.svg",
  27165. extra: 3055 / 2804,
  27166. bottom: 28.4 / 3087
  27167. }
  27168. },
  27169. frontclothed: {
  27170. height: math.unit(5 + 10 / 12, "feet"),
  27171. weight: math.unit(165, "lb"),
  27172. name: "Front-clothed",
  27173. image: {
  27174. source: "./media/characters/nicky/front-clothed.svg",
  27175. extra: 3184.9 / 2926.9,
  27176. bottom: 86.5 / 3239.9
  27177. }
  27178. },
  27179. foot: {
  27180. height: math.unit(1.16, "feet"),
  27181. name: "Foot",
  27182. image: {
  27183. source: "./media/characters/nicky/foot.svg"
  27184. }
  27185. },
  27186. feet: {
  27187. height: math.unit(1.34, "feet"),
  27188. name: "Feet",
  27189. image: {
  27190. source: "./media/characters/nicky/feet.svg"
  27191. }
  27192. },
  27193. maw: {
  27194. height: math.unit(0.9, "feet"),
  27195. name: "Maw",
  27196. image: {
  27197. source: "./media/characters/nicky/maw.svg"
  27198. }
  27199. },
  27200. },
  27201. [
  27202. {
  27203. name: "Normal",
  27204. height: math.unit(5 + 10 / 12, "feet"),
  27205. default: true
  27206. },
  27207. {
  27208. name: "Macro",
  27209. height: math.unit(60, "feet")
  27210. },
  27211. {
  27212. name: "Megamacro",
  27213. height: math.unit(1, "mile")
  27214. },
  27215. ]
  27216. ))
  27217. characterMakers.push(() => makeCharacter(
  27218. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27219. {
  27220. side: {
  27221. height: math.unit(10, "feet"),
  27222. weight: math.unit(600, "lb"),
  27223. name: "Side",
  27224. image: {
  27225. source: "./media/characters/blair/side.svg",
  27226. bottom: 16.6 / 475,
  27227. extra: 458 / 431
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Micro",
  27234. height: math.unit(8, "inches")
  27235. },
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(10, "feet"),
  27239. default: true
  27240. },
  27241. {
  27242. name: "Macro",
  27243. height: math.unit(180, "feet")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(5 + 4 / 12, "feet"),
  27252. weight: math.unit(125, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/fisher/front.svg",
  27256. extra: 444 / 390,
  27257. bottom: 2 / 444.8
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Micro",
  27264. height: math.unit(4, "inches")
  27265. },
  27266. {
  27267. name: "Normal",
  27268. height: math.unit(5 + 4 / 12, "feet"),
  27269. default: true
  27270. },
  27271. {
  27272. name: "Macro",
  27273. height: math.unit(100, "feet")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(6.71, "feet"),
  27282. weight: math.unit(200, "lb"),
  27283. preyCapacity: math.unit(1000000, "people"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/gliss/front.svg",
  27287. extra: 2347 / 2231,
  27288. bottom: 113 / 2462
  27289. }
  27290. },
  27291. hammerspaceSize: {
  27292. height: math.unit(6.71 * 717, "feet"),
  27293. weight: math.unit(200, "lb"),
  27294. preyCapacity: math.unit(1000000, "people"),
  27295. name: "Hammerspace Size",
  27296. image: {
  27297. source: "./media/characters/gliss/front.svg",
  27298. extra: 2347 / 2231,
  27299. bottom: 113 / 2462
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Normal",
  27306. height: math.unit(6.71, "feet"),
  27307. default: true
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27313. {
  27314. side: {
  27315. height: math.unit(1.44, "m"),
  27316. weight: math.unit(80, "kg"),
  27317. name: "Side",
  27318. image: {
  27319. source: "./media/characters/dune-anderson/side.svg",
  27320. bottom: 49 / 1426
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Wolf-sized",
  27327. height: math.unit(1.44, "meters")
  27328. },
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(5.05, "meters"),
  27332. default: true
  27333. },
  27334. {
  27335. name: "Big",
  27336. height: math.unit(14.4, "meters")
  27337. },
  27338. {
  27339. name: "Huge",
  27340. height: math.unit(144, "meters")
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(7, "feet"),
  27349. weight: math.unit(425, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/hind/front.svg",
  27353. extra: 2091 / 1860,
  27354. bottom: 129 / 2220
  27355. }
  27356. },
  27357. back: {
  27358. height: math.unit(7, "feet"),
  27359. weight: math.unit(425, "lb"),
  27360. name: "Back",
  27361. image: {
  27362. source: "./media/characters/hind/back.svg",
  27363. extra: 2091 / 1860,
  27364. bottom: 24.6 / 2309
  27365. }
  27366. },
  27367. tail: {
  27368. height: math.unit(2.8, "feet"),
  27369. name: "Tail",
  27370. image: {
  27371. source: "./media/characters/hind/tail.svg"
  27372. }
  27373. },
  27374. head: {
  27375. height: math.unit(2.55, "feet"),
  27376. name: "Head",
  27377. image: {
  27378. source: "./media/characters/hind/head.svg"
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "XS",
  27385. height: math.unit(0.7, "feet")
  27386. },
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(7, "feet"),
  27390. default: true
  27391. },
  27392. {
  27393. name: "XL",
  27394. height: math.unit(70, "feet")
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(2.1, "meters"),
  27403. weight: math.unit(150, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/tharquench-sizestealer/front.svg",
  27407. extra: 1605/1470,
  27408. bottom: 36/1641
  27409. }
  27410. },
  27411. frontAlt: {
  27412. height: math.unit(2.1, "meters"),
  27413. weight: math.unit(150, "lb"),
  27414. name: "Front (Alt)",
  27415. image: {
  27416. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27417. extra: 2318 / 2063,
  27418. bottom: 93.4 / 2410
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Nano",
  27425. height: math.unit(1, "mm")
  27426. },
  27427. {
  27428. name: "Micro",
  27429. height: math.unit(1, "cm")
  27430. },
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(2.1, "meters"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(7 + 5 / 12, "feet"),
  27443. weight: math.unit(357, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/solex-draconov/front.svg",
  27447. extra: 1993 / 1865,
  27448. bottom: 117 / 2111
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Natural Height",
  27455. height: math.unit(7 + 5 / 12, "feet"),
  27456. default: true
  27457. },
  27458. {
  27459. name: "Macro",
  27460. height: math.unit(350, "feet")
  27461. },
  27462. {
  27463. name: "Macro+",
  27464. height: math.unit(1000, "feet")
  27465. },
  27466. {
  27467. name: "Megamacro",
  27468. height: math.unit(20, "km")
  27469. },
  27470. {
  27471. name: "Megamacro+",
  27472. height: math.unit(1000, "km")
  27473. },
  27474. {
  27475. name: "Gigamacro",
  27476. height: math.unit(2.5, "Gm")
  27477. },
  27478. {
  27479. name: "Teramacro",
  27480. height: math.unit(15, "Tm")
  27481. },
  27482. {
  27483. name: "Galactic",
  27484. height: math.unit(30, "Zm")
  27485. },
  27486. {
  27487. name: "Universal",
  27488. height: math.unit(21000, "Ym")
  27489. },
  27490. {
  27491. name: "Omniversal",
  27492. height: math.unit(9.861e50, "Ym")
  27493. },
  27494. {
  27495. name: "Existential",
  27496. height: math.unit(1e300, "meters")
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27502. {
  27503. side: {
  27504. height: math.unit(25, "feet"),
  27505. weight: math.unit(90000, "lb"),
  27506. name: "Side",
  27507. image: {
  27508. source: "./media/characters/mandarax/side.svg",
  27509. extra: 614 / 332,
  27510. bottom: 55 / 630
  27511. }
  27512. },
  27513. lounging: {
  27514. height: math.unit(15.4, "feet"),
  27515. weight: math.unit(90000, "lb"),
  27516. name: "Lounging",
  27517. image: {
  27518. source: "./media/characters/mandarax/lounging.svg",
  27519. extra: 817/609,
  27520. bottom: 685/1502
  27521. }
  27522. },
  27523. head: {
  27524. height: math.unit(11.4, "feet"),
  27525. name: "Head",
  27526. image: {
  27527. source: "./media/characters/mandarax/head.svg"
  27528. }
  27529. },
  27530. belly: {
  27531. height: math.unit(33, "feet"),
  27532. name: "Belly",
  27533. preyCapacity: math.unit(500, "people"),
  27534. image: {
  27535. source: "./media/characters/mandarax/belly.svg"
  27536. }
  27537. },
  27538. dick: {
  27539. height: math.unit(8.46, "feet"),
  27540. name: "Dick",
  27541. image: {
  27542. source: "./media/characters/mandarax/dick.svg"
  27543. }
  27544. },
  27545. top: {
  27546. height: math.unit(28, "meters"),
  27547. name: "Top",
  27548. image: {
  27549. source: "./media/characters/mandarax/top.svg"
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(25, "feet"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(5, "feet"),
  27566. weight: math.unit(90, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/pixil/front.svg",
  27570. extra: 2000 / 1618,
  27571. bottom: 12.3 / 2011
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(5, "feet"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Megamacro",
  27583. height: math.unit(10, "miles"),
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(7 + 2 / 12, "feet"),
  27592. weight: math.unit(200, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/angel/front.svg",
  27596. extra: 1830 / 1737,
  27597. bottom: 22.6 / 1854,
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(7 + 2 / 12, "feet"),
  27605. default: true
  27606. },
  27607. {
  27608. name: "Macro",
  27609. height: math.unit(1000, "feet")
  27610. },
  27611. {
  27612. name: "Megamacro",
  27613. height: math.unit(2, "miles")
  27614. },
  27615. {
  27616. name: "Gigamacro",
  27617. height: math.unit(20, "earths")
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(5, "feet"),
  27626. weight: math.unit(180, "lb"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/mekana/front.svg",
  27630. extra: 1671 / 1605,
  27631. bottom: 3.5 / 1691
  27632. }
  27633. },
  27634. side: {
  27635. height: math.unit(5, "feet"),
  27636. weight: math.unit(180, "lb"),
  27637. name: "Side",
  27638. image: {
  27639. source: "./media/characters/mekana/side.svg",
  27640. extra: 1671 / 1605,
  27641. bottom: 3.5 / 1691
  27642. }
  27643. },
  27644. back: {
  27645. height: math.unit(5, "feet"),
  27646. weight: math.unit(180, "lb"),
  27647. name: "Back",
  27648. image: {
  27649. source: "./media/characters/mekana/back.svg",
  27650. extra: 1671 / 1605,
  27651. bottom: 3.5 / 1691
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Normal",
  27658. height: math.unit(5, "feet"),
  27659. default: true
  27660. },
  27661. ]
  27662. ))
  27663. characterMakers.push(() => makeCharacter(
  27664. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27665. {
  27666. front: {
  27667. height: math.unit(4 + 6 / 12, "feet"),
  27668. weight: math.unit(80, "lb"),
  27669. name: "Front",
  27670. image: {
  27671. source: "./media/characters/pixie/front.svg",
  27672. extra: 1924 / 1825,
  27673. bottom: 22.4 / 1946
  27674. }
  27675. },
  27676. },
  27677. [
  27678. {
  27679. name: "Normal",
  27680. height: math.unit(4 + 6 / 12, "feet"),
  27681. default: true
  27682. },
  27683. {
  27684. name: "Macro",
  27685. height: math.unit(40, "feet")
  27686. },
  27687. ]
  27688. ))
  27689. characterMakers.push(() => makeCharacter(
  27690. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27691. {
  27692. front: {
  27693. height: math.unit(2.1, "meters"),
  27694. weight: math.unit(200, "lb"),
  27695. name: "Front",
  27696. image: {
  27697. source: "./media/characters/the-lascivious/front.svg",
  27698. extra: 1 / 0.893,
  27699. bottom: 3.5 / 573.7
  27700. }
  27701. },
  27702. },
  27703. [
  27704. {
  27705. name: "Human Scale",
  27706. height: math.unit(2.1, "meters")
  27707. },
  27708. {
  27709. name: "Wolxi Scale",
  27710. height: math.unit(46.2, "m"),
  27711. default: true
  27712. },
  27713. {
  27714. name: "Boinker of Buildings",
  27715. height: math.unit(10, "km")
  27716. },
  27717. {
  27718. name: "Shagger of Skyscrapers",
  27719. height: math.unit(40, "km")
  27720. },
  27721. {
  27722. name: "Banger of Boroughs",
  27723. height: math.unit(4000, "km")
  27724. },
  27725. {
  27726. name: "Screwer of States",
  27727. height: math.unit(100000, "km")
  27728. },
  27729. {
  27730. name: "Pounder of Planets",
  27731. height: math.unit(2000000, "km")
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(6, "feet"),
  27740. weight: math.unit(150, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/aj/front.svg",
  27744. extra: 2039 / 1562,
  27745. bottom: 40 / 2079
  27746. }
  27747. },
  27748. },
  27749. [
  27750. {
  27751. name: "Normal",
  27752. height: math.unit(11 + 6 / 12, "feet"),
  27753. default: true
  27754. },
  27755. {
  27756. name: "Megamacro",
  27757. height: math.unit(60, "megameters")
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27763. {
  27764. side: {
  27765. height: math.unit(31 + 8 / 12, "feet"),
  27766. weight: math.unit(75000, "kg"),
  27767. name: "Side",
  27768. image: {
  27769. source: "./media/characters/koros/side.svg",
  27770. extra: 1442 / 1297,
  27771. bottom: 122.7 / 1562
  27772. }
  27773. },
  27774. dicksKingsCrown: {
  27775. height: math.unit(6, "feet"),
  27776. name: "Dicks (King's Crown)",
  27777. image: {
  27778. source: "./media/characters/koros/dicks-kings-crown.svg"
  27779. }
  27780. },
  27781. dicksTailSet: {
  27782. height: math.unit(3, "feet"),
  27783. name: "Dicks (Tail Set)",
  27784. image: {
  27785. source: "./media/characters/koros/dicks-tail-set.svg"
  27786. }
  27787. },
  27788. dickCumming: {
  27789. height: math.unit(7.98, "feet"),
  27790. name: "Dick (Cumming)",
  27791. image: {
  27792. source: "./media/characters/koros/dick-cumming.svg"
  27793. }
  27794. },
  27795. dicksBack: {
  27796. height: math.unit(5.9, "feet"),
  27797. name: "Dicks (Back)",
  27798. image: {
  27799. source: "./media/characters/koros/dicks-back.svg"
  27800. }
  27801. },
  27802. dicksFront: {
  27803. height: math.unit(3.72, "feet"),
  27804. name: "Dicks (Front)",
  27805. image: {
  27806. source: "./media/characters/koros/dicks-front.svg"
  27807. }
  27808. },
  27809. dicksPeeking: {
  27810. height: math.unit(3.0, "feet"),
  27811. name: "Dicks (Peeking)",
  27812. image: {
  27813. source: "./media/characters/koros/dicks-peeking.svg"
  27814. }
  27815. },
  27816. eye: {
  27817. height: math.unit(1.7, "feet"),
  27818. name: "Eye",
  27819. image: {
  27820. source: "./media/characters/koros/eye.svg"
  27821. }
  27822. },
  27823. headFront: {
  27824. height: math.unit(11.69, "feet"),
  27825. name: "Head (Front)",
  27826. image: {
  27827. source: "./media/characters/koros/head-front.svg"
  27828. }
  27829. },
  27830. headSide: {
  27831. height: math.unit(14, "feet"),
  27832. name: "Head (Side)",
  27833. image: {
  27834. source: "./media/characters/koros/head-side.svg"
  27835. }
  27836. },
  27837. leg: {
  27838. height: math.unit(17, "feet"),
  27839. name: "Leg",
  27840. image: {
  27841. source: "./media/characters/koros/leg.svg"
  27842. }
  27843. },
  27844. mawSide: {
  27845. height: math.unit(12.8, "feet"),
  27846. name: "Maw (Side)",
  27847. image: {
  27848. source: "./media/characters/koros/maw-side.svg"
  27849. }
  27850. },
  27851. mawSpitting: {
  27852. height: math.unit(17, "feet"),
  27853. name: "Maw (Spitting)",
  27854. image: {
  27855. source: "./media/characters/koros/maw-spitting.svg"
  27856. }
  27857. },
  27858. slit: {
  27859. height: math.unit(2.8, "feet"),
  27860. name: "Slit",
  27861. image: {
  27862. source: "./media/characters/koros/slit.svg"
  27863. }
  27864. },
  27865. stomach: {
  27866. height: math.unit(6.8, "feet"),
  27867. preyCapacity: math.unit(20, "people"),
  27868. name: "Stomach",
  27869. image: {
  27870. source: "./media/characters/koros/stomach.svg"
  27871. }
  27872. },
  27873. wingspanBottom: {
  27874. height: math.unit(114, "feet"),
  27875. name: "Wingspan (Bottom)",
  27876. image: {
  27877. source: "./media/characters/koros/wingspan-bottom.svg"
  27878. }
  27879. },
  27880. wingspanTop: {
  27881. height: math.unit(104, "feet"),
  27882. name: "Wingspan (Top)",
  27883. image: {
  27884. source: "./media/characters/koros/wingspan-top.svg"
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(31 + 8 / 12, "feet"),
  27892. default: true
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(18 + 5 / 12, "feet"),
  27901. weight: math.unit(3750, "kg"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/vexx/front.svg",
  27905. extra: 426 / 396,
  27906. bottom: 31.5 / 458
  27907. }
  27908. },
  27909. maw: {
  27910. height: math.unit(6, "feet"),
  27911. name: "Maw",
  27912. image: {
  27913. source: "./media/characters/vexx/maw.svg"
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(18 + 5 / 12, "feet"),
  27921. default: true
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27927. {
  27928. front: {
  27929. height: math.unit(17 + 6 / 12, "feet"),
  27930. weight: math.unit(150, "lb"),
  27931. name: "Front",
  27932. image: {
  27933. source: "./media/characters/baadra/front.svg",
  27934. extra: 1694/1553,
  27935. bottom: 179/1873
  27936. }
  27937. },
  27938. frontAlt: {
  27939. height: math.unit(17 + 6 / 12, "feet"),
  27940. weight: math.unit(150, "lb"),
  27941. name: "Front (Alt)",
  27942. image: {
  27943. source: "./media/characters/baadra/front-alt.svg",
  27944. extra: 3137 / 2890,
  27945. bottom: 168.4 / 3305
  27946. }
  27947. },
  27948. back: {
  27949. height: math.unit(17 + 6 / 12, "feet"),
  27950. weight: math.unit(150, "lb"),
  27951. name: "Back",
  27952. image: {
  27953. source: "./media/characters/baadra/back.svg",
  27954. extra: 3142 / 2890,
  27955. bottom: 220 / 3371
  27956. }
  27957. },
  27958. head: {
  27959. height: math.unit(5.45, "feet"),
  27960. name: "Head",
  27961. image: {
  27962. source: "./media/characters/baadra/head.svg"
  27963. }
  27964. },
  27965. headAngry: {
  27966. height: math.unit(4.95, "feet"),
  27967. name: "Head (Angry)",
  27968. image: {
  27969. source: "./media/characters/baadra/head-angry.svg"
  27970. }
  27971. },
  27972. headOpen: {
  27973. height: math.unit(6, "feet"),
  27974. name: "Head (Open)",
  27975. image: {
  27976. source: "./media/characters/baadra/head-open.svg"
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(17 + 6 / 12, "feet"),
  27984. default: true
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(7 + 3 / 12, "feet"),
  27993. weight: math.unit(180, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/juri/front.svg",
  27997. extra: 1401 / 1237,
  27998. bottom: 18.5 / 1418
  27999. }
  28000. },
  28001. side: {
  28002. height: math.unit(7 + 3 / 12, "feet"),
  28003. weight: math.unit(180, "lb"),
  28004. name: "Side",
  28005. image: {
  28006. source: "./media/characters/juri/side.svg",
  28007. extra: 1424 / 1242,
  28008. bottom: 18.5 / 1447
  28009. }
  28010. },
  28011. sitting: {
  28012. height: math.unit(6, "feet"),
  28013. weight: math.unit(180, "lb"),
  28014. name: "Sitting",
  28015. image: {
  28016. source: "./media/characters/juri/sitting.svg",
  28017. extra: 1270 / 1143,
  28018. bottom: 100 / 1343
  28019. }
  28020. },
  28021. back: {
  28022. height: math.unit(7 + 3 / 12, "feet"),
  28023. weight: math.unit(180, "lb"),
  28024. name: "Back",
  28025. image: {
  28026. source: "./media/characters/juri/back.svg",
  28027. extra: 1377 / 1240,
  28028. bottom: 23.7 / 1405
  28029. }
  28030. },
  28031. maw: {
  28032. height: math.unit(2.8, "feet"),
  28033. name: "Maw",
  28034. image: {
  28035. source: "./media/characters/juri/maw.svg"
  28036. }
  28037. },
  28038. stomach: {
  28039. height: math.unit(0.89, "feet"),
  28040. preyCapacity: math.unit(4, "liters"),
  28041. name: "Stomach",
  28042. image: {
  28043. source: "./media/characters/juri/stomach.svg"
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(7 + 3 / 12, "feet"),
  28051. default: true
  28052. },
  28053. ]
  28054. ))
  28055. characterMakers.push(() => makeCharacter(
  28056. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28057. {
  28058. fox: {
  28059. height: math.unit(5 + 6 / 12, "feet"),
  28060. weight: math.unit(140, "lb"),
  28061. name: "Fox",
  28062. image: {
  28063. source: "./media/characters/maxene-sita/fox.svg",
  28064. extra: 146 / 138,
  28065. bottom: 2.1 / 148.19
  28066. }
  28067. },
  28068. foxLaying: {
  28069. height: math.unit(1.70, "feet"),
  28070. weight: math.unit(140, "lb"),
  28071. name: "Fox (Laying)",
  28072. image: {
  28073. source: "./media/characters/maxene-sita/fox-laying.svg",
  28074. extra: 910 / 572,
  28075. bottom: 71 / 981
  28076. }
  28077. },
  28078. kitsune: {
  28079. height: math.unit(10, "feet"),
  28080. weight: math.unit(800, "lb"),
  28081. name: "Kitsune",
  28082. image: {
  28083. source: "./media/characters/maxene-sita/kitsune.svg",
  28084. extra: 185 / 176,
  28085. bottom: 4.7 / 189.9
  28086. }
  28087. },
  28088. hellhound: {
  28089. height: math.unit(10, "feet"),
  28090. weight: math.unit(700, "lb"),
  28091. name: "Hellhound",
  28092. image: {
  28093. source: "./media/characters/maxene-sita/hellhound.svg",
  28094. extra: 1600 / 1545,
  28095. bottom: 81 / 1681
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(5 + 6 / 12, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28109. {
  28110. front: {
  28111. height: math.unit(3 + 4 / 12, "feet"),
  28112. weight: math.unit(70, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/maia/front.svg",
  28116. extra: 227 / 219.5,
  28117. bottom: 40 / 267
  28118. }
  28119. },
  28120. back: {
  28121. height: math.unit(3 + 4 / 12, "feet"),
  28122. weight: math.unit(70, "lb"),
  28123. name: "Back",
  28124. image: {
  28125. source: "./media/characters/maia/back.svg",
  28126. extra: 237 / 225
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(3 + 4 / 12, "feet"),
  28134. default: true
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(5 + 10 / 12, "feet"),
  28143. weight: math.unit(197, "lb"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/jabaro/front.svg",
  28147. extra: 225 / 216,
  28148. bottom: 5.06 / 230
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(5 + 10 / 12, "feet"),
  28153. weight: math.unit(197, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/jabaro/back.svg",
  28157. extra: 225 / 219,
  28158. bottom: 1.9 / 227
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(5 + 10 / 12, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(5 + 8 / 12, "feet"),
  28175. weight: math.unit(139, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/risa/front.svg",
  28179. extra: 270 / 260,
  28180. bottom: 11.2 / 282
  28181. }
  28182. },
  28183. back: {
  28184. height: math.unit(5 + 8 / 12, "feet"),
  28185. weight: math.unit(139, "lb"),
  28186. name: "Back",
  28187. image: {
  28188. source: "./media/characters/risa/back.svg",
  28189. extra: 264 / 255,
  28190. bottom: 4 / 268
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(5 + 8 / 12, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(2 + 11 / 12, "feet"),
  28207. weight: math.unit(30, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/weatley/front.svg",
  28211. bottom: 10.7 / 414,
  28212. extra: 403.5 / 362
  28213. }
  28214. },
  28215. back: {
  28216. height: math.unit(2 + 11 / 12, "feet"),
  28217. weight: math.unit(30, "lb"),
  28218. name: "Back",
  28219. image: {
  28220. source: "./media/characters/weatley/back.svg",
  28221. bottom: 10.7 / 414,
  28222. extra: 403.5 / 362
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(2 + 11 / 12, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(5 + 2 / 12, "feet"),
  28239. weight: math.unit(50, "kg"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/mercury-crescent/front.svg",
  28243. extra: 1088 / 1033,
  28244. bottom: 18.9 / 1109
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Normal",
  28251. height: math.unit(5 + 2 / 12, "feet"),
  28252. default: true
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28258. {
  28259. front: {
  28260. height: math.unit(2, "feet"),
  28261. weight: math.unit(15, "kg"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/diamond-jones/front.svg",
  28265. extra: 727/723,
  28266. bottom: 46/773
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(2, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(3, "feet"),
  28283. weight: math.unit(30, "kg"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/sweet-bit/front.svg",
  28287. extra: 675 / 567,
  28288. bottom: 27.7 / 703
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(3, "feet"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28302. {
  28303. side: {
  28304. height: math.unit(9.178, "feet"),
  28305. weight: math.unit(500, "lb"),
  28306. name: "Side",
  28307. image: {
  28308. source: "./media/characters/umbrazen/side.svg",
  28309. extra: 1730 / 1473,
  28310. bottom: 34.6 / 1765
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(9.178, "feet"),
  28318. default: true
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(10, "feet"),
  28327. weight: math.unit(750, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/arlist/front.svg",
  28331. extra: 961 / 778,
  28332. bottom: 6.2 / 986
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Normal",
  28339. height: math.unit(10, "feet"),
  28340. default: true
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(5 + 1 / 12, "feet"),
  28349. weight: math.unit(110, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/aradel/front.svg",
  28353. extra: 324 / 303,
  28354. bottom: 3.6 / 329.4
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(5 + 1 / 12, "feet"),
  28362. default: true
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28368. {
  28369. dressed: {
  28370. height: math.unit(3 + 8 / 12, "feet"),
  28371. weight: math.unit(50, "lb"),
  28372. name: "Dressed",
  28373. image: {
  28374. source: "./media/characters/serryn/dressed.svg",
  28375. extra: 1792 / 1656,
  28376. bottom: 43.5 / 1840
  28377. }
  28378. },
  28379. nude: {
  28380. height: math.unit(3 + 8 / 12, "feet"),
  28381. weight: math.unit(50, "lb"),
  28382. name: "Nude",
  28383. image: {
  28384. source: "./media/characters/serryn/nude.svg",
  28385. extra: 1792 / 1656,
  28386. bottom: 43.5 / 1840
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(3 + 8 / 12, "feet"),
  28394. default: true
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28400. {
  28401. front: {
  28402. height: math.unit(7 + 10 / 12, "feet"),
  28403. weight: math.unit(255, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/xavier-thyme/front.svg",
  28407. extra: 3733 / 3642,
  28408. bottom: 131 / 3869
  28409. }
  28410. },
  28411. frontRaven: {
  28412. height: math.unit(7 + 10 / 12, "feet"),
  28413. weight: math.unit(255, "lb"),
  28414. name: "Front (Raven)",
  28415. image: {
  28416. source: "./media/characters/xavier-thyme/front-raven.svg",
  28417. extra: 4385 / 3642,
  28418. bottom: 131 / 4517
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(7 + 10 / 12, "feet"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(1.6, "m"),
  28435. weight: math.unit(50, "kg"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/kiki/front.svg",
  28439. extra: 4682 / 3610,
  28440. bottom: 115 / 4777
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(1.6, "meters"),
  28448. default: true
  28449. },
  28450. ]
  28451. ))
  28452. characterMakers.push(() => makeCharacter(
  28453. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28454. {
  28455. front: {
  28456. height: math.unit(50, "m"),
  28457. weight: math.unit(500, "tonnes"),
  28458. name: "Front",
  28459. image: {
  28460. source: "./media/characters/ryoko/front.svg",
  28461. extra: 4632 / 3926,
  28462. bottom: 193 / 4823
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Normal",
  28469. height: math.unit(50, "meters"),
  28470. default: true
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28476. {
  28477. front: {
  28478. height: math.unit(30, "m"),
  28479. weight: math.unit(22, "tonnes"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/elio/front.svg",
  28483. extra: 4582 / 3720,
  28484. bottom: 236 / 4828
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Normal",
  28491. height: math.unit(30, "meters"),
  28492. default: true
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28498. {
  28499. front: {
  28500. height: math.unit(6 + 3 / 12, "feet"),
  28501. weight: math.unit(120, "lb"),
  28502. name: "Front",
  28503. image: {
  28504. source: "./media/characters/azura/front.svg",
  28505. extra: 1149 / 1135,
  28506. bottom: 45 / 1194
  28507. }
  28508. },
  28509. frontClothed: {
  28510. height: math.unit(6 + 3 / 12, "feet"),
  28511. weight: math.unit(120, "lb"),
  28512. name: "Front (Clothed)",
  28513. image: {
  28514. source: "./media/characters/azura/front-clothed.svg",
  28515. extra: 1149 / 1135,
  28516. bottom: 45 / 1194
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Normal",
  28523. height: math.unit(6 + 3 / 12, "feet"),
  28524. default: true
  28525. },
  28526. {
  28527. name: "Macro",
  28528. height: math.unit(20 + 6 / 12, "feet")
  28529. },
  28530. {
  28531. name: "Megamacro",
  28532. height: math.unit(12, "miles")
  28533. },
  28534. {
  28535. name: "Gigamacro",
  28536. height: math.unit(10000, "miles")
  28537. },
  28538. {
  28539. name: "Teramacro",
  28540. height: math.unit(900000, "miles")
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(12, "feet"),
  28549. weight: math.unit(1, "ton"),
  28550. capacity: math.unit(660000, "gallons"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/zeus/front.svg",
  28554. extra: 5005 / 4717,
  28555. bottom: 363 / 5388
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(12, "feet")
  28563. },
  28564. {
  28565. name: "Preferred Size",
  28566. height: math.unit(0.5, "miles"),
  28567. default: true
  28568. },
  28569. {
  28570. name: "Giga Horse",
  28571. height: math.unit(300, "miles")
  28572. },
  28573. {
  28574. name: "Riding Planets",
  28575. height: math.unit(30, "megameters")
  28576. },
  28577. {
  28578. name: "Cosmic Giant",
  28579. height: math.unit(3, "zettameters")
  28580. },
  28581. {
  28582. name: "Breeding God",
  28583. height: math.unit(9.92e22, "yottameters")
  28584. },
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28589. {
  28590. side: {
  28591. height: math.unit(9, "feet"),
  28592. weight: math.unit(1500, "kg"),
  28593. name: "Side",
  28594. image: {
  28595. source: "./media/characters/fang/side.svg",
  28596. extra: 924 / 866,
  28597. bottom: 47.5 / 972.3
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(9, "feet"),
  28605. default: true
  28606. },
  28607. {
  28608. name: "Macro",
  28609. height: math.unit(75 + 6 / 12, "feet")
  28610. },
  28611. {
  28612. name: "Teramacro",
  28613. height: math.unit(50000, "miles")
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28619. {
  28620. front: {
  28621. height: math.unit(10, "feet"),
  28622. weight: math.unit(2, "tons"),
  28623. name: "Front",
  28624. image: {
  28625. source: "./media/characters/rekhit/front.svg",
  28626. extra: 2796 / 2590,
  28627. bottom: 225 / 3022
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Normal",
  28634. height: math.unit(10, "feet"),
  28635. default: true
  28636. },
  28637. {
  28638. name: "Macro",
  28639. height: math.unit(500, "feet")
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(7 + 6.451 / 12, "feet"),
  28648. weight: math.unit(310, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/dahlia-verrick/front.svg",
  28652. extra: 1488 / 1365,
  28653. bottom: 6.2 / 1495
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(7 + 6.451 / 12, "feet"),
  28658. weight: math.unit(310, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/dahlia-verrick/back.svg",
  28662. extra: 1472 / 1351,
  28663. bottom: 5.28 / 1477
  28664. }
  28665. },
  28666. frontBusiness: {
  28667. height: math.unit(7 + 6.451 / 12, "feet"),
  28668. weight: math.unit(200, "lb"),
  28669. name: "Front (Business)",
  28670. image: {
  28671. source: "./media/characters/dahlia-verrick/front-business.svg",
  28672. extra: 1478 / 1381,
  28673. bottom: 5.5 / 1484
  28674. }
  28675. },
  28676. frontCasual: {
  28677. height: math.unit(7 + 6.451 / 12, "feet"),
  28678. weight: math.unit(200, "lb"),
  28679. name: "Front (Casual)",
  28680. image: {
  28681. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28682. extra: 1478 / 1381,
  28683. bottom: 5.5 / 1484
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Travel-Sized",
  28690. height: math.unit(7.45, "inches")
  28691. },
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(7 + 6.451 / 12, "feet"),
  28695. default: true
  28696. },
  28697. {
  28698. name: "Hitting the Town",
  28699. height: math.unit(37 + 8 / 12, "feet")
  28700. },
  28701. {
  28702. name: "Stomp in the Suburbs",
  28703. height: math.unit(964 + 9.728 / 12, "feet")
  28704. },
  28705. {
  28706. name: "Sit on the City",
  28707. height: math.unit(61747 + 10.592 / 12, "feet")
  28708. },
  28709. {
  28710. name: "Glomp the Globe",
  28711. height: math.unit(252919327 + 4.832 / 12, "feet")
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6 + 4 / 12, "feet"),
  28720. weight: math.unit(320, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/balina-mahigan/front.svg",
  28724. extra: 447 / 428,
  28725. bottom: 18 / 466
  28726. }
  28727. },
  28728. back: {
  28729. height: math.unit(6 + 4 / 12, "feet"),
  28730. weight: math.unit(320, "lb"),
  28731. name: "Back",
  28732. image: {
  28733. source: "./media/characters/balina-mahigan/back.svg",
  28734. extra: 445 / 428,
  28735. bottom: 4.07 / 448
  28736. }
  28737. },
  28738. arm: {
  28739. height: math.unit(1.88, "feet"),
  28740. name: "Arm",
  28741. image: {
  28742. source: "./media/characters/balina-mahigan/arm.svg"
  28743. }
  28744. },
  28745. backPort: {
  28746. height: math.unit(0.685, "feet"),
  28747. name: "Back Port",
  28748. image: {
  28749. source: "./media/characters/balina-mahigan/back-port.svg"
  28750. }
  28751. },
  28752. hoofpaw: {
  28753. height: math.unit(1.41, "feet"),
  28754. name: "Hoofpaw",
  28755. image: {
  28756. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28757. }
  28758. },
  28759. leftHandBack: {
  28760. height: math.unit(0.938, "feet"),
  28761. name: "Left Hand (Back)",
  28762. image: {
  28763. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28764. }
  28765. },
  28766. leftHandFront: {
  28767. height: math.unit(0.938, "feet"),
  28768. name: "Left Hand (Front)",
  28769. image: {
  28770. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28771. }
  28772. },
  28773. rightHandBack: {
  28774. height: math.unit(0.95, "feet"),
  28775. name: "Right Hand (Back)",
  28776. image: {
  28777. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28778. }
  28779. },
  28780. rightHandFront: {
  28781. height: math.unit(0.95, "feet"),
  28782. name: "Right Hand (Front)",
  28783. image: {
  28784. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Normal",
  28791. height: math.unit(6 + 4 / 12, "feet"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(6, "feet"),
  28801. weight: math.unit(320, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/balina-mejeri/front.svg",
  28805. extra: 517 / 488,
  28806. bottom: 44.2 / 561
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(6 + 4 / 12, "feet")
  28814. },
  28815. {
  28816. name: "Business",
  28817. height: math.unit(155, "feet"),
  28818. default: true
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28824. {
  28825. kneeling: {
  28826. height: math.unit(6 + 4 / 12, "feet"),
  28827. weight: math.unit(300 * 20, "lb"),
  28828. name: "Kneeling",
  28829. image: {
  28830. source: "./media/characters/balbarian/kneeling.svg",
  28831. extra: 922 / 862,
  28832. bottom: 42.4 / 965
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(6 + 4 / 12, "feet")
  28840. },
  28841. {
  28842. name: "Treasured",
  28843. height: math.unit(18 + 9 / 12, "feet"),
  28844. default: true
  28845. },
  28846. {
  28847. name: "Macro",
  28848. height: math.unit(900, "feet")
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(6 + 4 / 12, "feet"),
  28857. weight: math.unit(325, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/balina-amarini/front.svg",
  28861. extra: 415 / 403,
  28862. bottom: 19 / 433.4
  28863. }
  28864. },
  28865. back: {
  28866. height: math.unit(6 + 4 / 12, "feet"),
  28867. weight: math.unit(325, "lb"),
  28868. name: "Back",
  28869. image: {
  28870. source: "./media/characters/balina-amarini/back.svg",
  28871. extra: 415 / 403,
  28872. bottom: 13.5 / 432
  28873. }
  28874. },
  28875. overdrive: {
  28876. height: math.unit(6 + 4 / 12, "feet"),
  28877. weight: math.unit(400, "lb"),
  28878. name: "Overdrive",
  28879. image: {
  28880. source: "./media/characters/balina-amarini/overdrive.svg",
  28881. extra: 269 / 259,
  28882. bottom: 12 / 282
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Boom",
  28889. height: math.unit(9 + 10 / 12, "feet"),
  28890. default: true
  28891. },
  28892. {
  28893. name: "Macro",
  28894. height: math.unit(280, "feet")
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28900. {
  28901. goddess: {
  28902. height: math.unit(600, "feet"),
  28903. weight: math.unit(2000000, "tons"),
  28904. name: "Goddess",
  28905. image: {
  28906. source: "./media/characters/lady-kubwa/goddess.svg",
  28907. extra: 1240.5 / 1223,
  28908. bottom: 22 / 1263
  28909. }
  28910. },
  28911. goddesser: {
  28912. height: math.unit(900, "feet"),
  28913. weight: math.unit(20000000, "lb"),
  28914. name: "Goddess-er",
  28915. image: {
  28916. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28917. extra: 899 / 888,
  28918. bottom: 12.6 / 912
  28919. }
  28920. },
  28921. },
  28922. [
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(600, "feet"),
  28926. default: true
  28927. },
  28928. {
  28929. name: "Megamacro",
  28930. height: math.unit(250, "miles")
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(7 + 7 / 12, "feet"),
  28939. weight: math.unit(250, "lb"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/tala-grovehorn/front.svg",
  28943. extra: 2636 / 2525,
  28944. bottom: 147 / 2781
  28945. }
  28946. },
  28947. back: {
  28948. height: math.unit(7 + 7 / 12, "feet"),
  28949. weight: math.unit(250, "lb"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/tala-grovehorn/back.svg",
  28953. extra: 2635 / 2539,
  28954. bottom: 100 / 2732.8
  28955. }
  28956. },
  28957. mouth: {
  28958. height: math.unit(1.15, "feet"),
  28959. name: "Mouth",
  28960. image: {
  28961. source: "./media/characters/tala-grovehorn/mouth.svg"
  28962. }
  28963. },
  28964. dick: {
  28965. height: math.unit(2.36, "feet"),
  28966. name: "Dick",
  28967. image: {
  28968. source: "./media/characters/tala-grovehorn/dick.svg"
  28969. }
  28970. },
  28971. slit: {
  28972. height: math.unit(0.61, "feet"),
  28973. name: "Slit",
  28974. image: {
  28975. source: "./media/characters/tala-grovehorn/slit.svg"
  28976. }
  28977. },
  28978. },
  28979. [
  28980. ]
  28981. ))
  28982. characterMakers.push(() => makeCharacter(
  28983. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28984. {
  28985. front: {
  28986. height: math.unit(7 + 7 / 12, "feet"),
  28987. weight: math.unit(225, "lb"),
  28988. name: "Front",
  28989. image: {
  28990. source: "./media/characters/epona/front.svg",
  28991. extra: 2445 / 2290,
  28992. bottom: 251 / 2696
  28993. }
  28994. },
  28995. back: {
  28996. height: math.unit(7 + 7 / 12, "feet"),
  28997. weight: math.unit(225, "lb"),
  28998. name: "Back",
  28999. image: {
  29000. source: "./media/characters/epona/back.svg",
  29001. extra: 2546 / 2408,
  29002. bottom: 44 / 2589
  29003. }
  29004. },
  29005. genitals: {
  29006. height: math.unit(1.5, "feet"),
  29007. name: "Genitals",
  29008. image: {
  29009. source: "./media/characters/epona/genitals.svg"
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(7 + 7 / 12, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(7, "feet"),
  29026. weight: math.unit(518, "lb"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/avia-bloodbourn/front.svg",
  29030. extra: 1466 / 1350,
  29031. bottom: 65 / 1527
  29032. }
  29033. },
  29034. },
  29035. [
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(9.35, "feet"),
  29043. weight: math.unit(600, "lb"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/amera/front.svg",
  29047. extra: 891 / 818,
  29048. bottom: 30 / 922.7
  29049. }
  29050. },
  29051. back: {
  29052. height: math.unit(9.35, "feet"),
  29053. weight: math.unit(600, "lb"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/amera/back.svg",
  29057. extra: 876 / 824,
  29058. bottom: 6.8 / 884
  29059. }
  29060. },
  29061. dick: {
  29062. height: math.unit(2.14, "feet"),
  29063. name: "Dick",
  29064. image: {
  29065. source: "./media/characters/amera/dick.svg"
  29066. }
  29067. },
  29068. },
  29069. [
  29070. {
  29071. name: "Normal",
  29072. height: math.unit(9.35, "feet"),
  29073. default: true
  29074. },
  29075. ]
  29076. ))
  29077. characterMakers.push(() => makeCharacter(
  29078. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29079. {
  29080. kneeling: {
  29081. height: math.unit(3 + 4 / 12, "feet"),
  29082. weight: math.unit(90, "lb"),
  29083. name: "Kneeling",
  29084. image: {
  29085. source: "./media/characters/rosewen/kneeling.svg",
  29086. extra: 1835 / 1571,
  29087. bottom: 27.7 / 1862
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(3 + 4 / 12, "feet"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29101. {
  29102. front: {
  29103. height: math.unit(5 + 10 / 12, "feet"),
  29104. weight: math.unit(200, "lb"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/sabah/front.svg",
  29108. extra: 849 / 763,
  29109. bottom: 33.9 / 881
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(5 + 10 / 12, "feet"),
  29117. default: true
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29123. {
  29124. front: {
  29125. height: math.unit(3 + 5 / 12, "feet"),
  29126. weight: math.unit(40, "kg"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/purple-flame/front.svg",
  29130. extra: 1577 / 1412,
  29131. bottom: 97 / 1694
  29132. }
  29133. },
  29134. frontDressed: {
  29135. height: math.unit(3 + 5 / 12, "feet"),
  29136. weight: math.unit(40, "kg"),
  29137. name: "Front (Dressed)",
  29138. image: {
  29139. source: "./media/characters/purple-flame/front-dressed.svg",
  29140. extra: 1577 / 1412,
  29141. bottom: 97 / 1694
  29142. }
  29143. },
  29144. headphones: {
  29145. height: math.unit(0.85, "feet"),
  29146. name: "Headphones",
  29147. image: {
  29148. source: "./media/characters/purple-flame/headphones.svg"
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Really Small",
  29155. height: math.unit(5, "cm")
  29156. },
  29157. {
  29158. name: "Micro",
  29159. height: math.unit(1 + 5 / 12, "feet")
  29160. },
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(3 + 5 / 12, "feet"),
  29164. default: true
  29165. },
  29166. {
  29167. name: "Minimacro",
  29168. height: math.unit(125, "feet")
  29169. },
  29170. {
  29171. name: "Macro",
  29172. height: math.unit(0.5, "miles")
  29173. },
  29174. {
  29175. name: "Megamacro",
  29176. height: math.unit(50, "miles")
  29177. },
  29178. {
  29179. name: "Gigantic",
  29180. height: math.unit(750, "miles")
  29181. },
  29182. {
  29183. name: "Planetary",
  29184. height: math.unit(15000, "miles")
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29190. {
  29191. front: {
  29192. height: math.unit(14, "feet"),
  29193. weight: math.unit(959, "lb"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/arsenal/front.svg",
  29197. extra: 2357 / 2157,
  29198. bottom: 93 / 2458
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(14, "feet"),
  29206. default: true
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29212. {
  29213. front: {
  29214. height: math.unit(6, "feet"),
  29215. weight: math.unit(150, "lb"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/adira/front.svg",
  29219. extra: 1078 / 1029,
  29220. bottom: 87 / 1166
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Micro",
  29227. height: math.unit(4, "inches"),
  29228. default: true
  29229. },
  29230. {
  29231. name: "Macro",
  29232. height: math.unit(50, "feet")
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(16, "feet"),
  29241. weight: math.unit(1000, "lb"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/grim/front.svg",
  29245. extra: 622 / 614,
  29246. bottom: 18.1 / 642
  29247. }
  29248. },
  29249. back: {
  29250. height: math.unit(16, "feet"),
  29251. weight: math.unit(1000, "lb"),
  29252. name: "Back",
  29253. image: {
  29254. source: "./media/characters/grim/back.svg",
  29255. extra: 610.6 / 602,
  29256. bottom: 40.8 / 652
  29257. }
  29258. },
  29259. hunched: {
  29260. height: math.unit(9.75, "feet"),
  29261. weight: math.unit(1000, "lb"),
  29262. name: "Hunched",
  29263. image: {
  29264. source: "./media/characters/grim/hunched.svg",
  29265. extra: 304 / 297,
  29266. bottom: 35.4 / 394
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(16, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(2.3, "meters"),
  29283. weight: math.unit(300, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/sinja/front-sfw.svg",
  29287. extra: 1393 / 1294,
  29288. bottom: 70 / 1463
  29289. }
  29290. },
  29291. frontNsfw: {
  29292. height: math.unit(2.3, "meters"),
  29293. weight: math.unit(300, "lb"),
  29294. name: "Front (NSFW)",
  29295. image: {
  29296. source: "./media/characters/sinja/front-nsfw.svg",
  29297. extra: 1393 / 1294,
  29298. bottom: 70 / 1463
  29299. }
  29300. },
  29301. back: {
  29302. height: math.unit(2.3, "meters"),
  29303. weight: math.unit(300, "lb"),
  29304. name: "Back",
  29305. image: {
  29306. source: "./media/characters/sinja/back.svg",
  29307. extra: 1393 / 1294,
  29308. bottom: 70 / 1463
  29309. }
  29310. },
  29311. head: {
  29312. height: math.unit(1.771, "feet"),
  29313. name: "Head",
  29314. image: {
  29315. source: "./media/characters/sinja/head.svg"
  29316. }
  29317. },
  29318. slit: {
  29319. height: math.unit(0.8, "feet"),
  29320. name: "Slit",
  29321. image: {
  29322. source: "./media/characters/sinja/slit.svg"
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(2.3, "meters")
  29330. },
  29331. {
  29332. name: "Macro",
  29333. height: math.unit(91, "meters"),
  29334. default: true
  29335. },
  29336. {
  29337. name: "Megamacro",
  29338. height: math.unit(91440, "meters")
  29339. },
  29340. {
  29341. name: "Gigamacro",
  29342. height: math.unit(60960000, "meters")
  29343. },
  29344. {
  29345. name: "Teramacro",
  29346. height: math.unit(9144000000, "meters")
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(1.7, "meters"),
  29355. weight: math.unit(130, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/kyu/front.svg",
  29359. extra: 415 / 395,
  29360. bottom: 5 / 420
  29361. }
  29362. },
  29363. head: {
  29364. height: math.unit(1.75, "feet"),
  29365. name: "Head",
  29366. image: {
  29367. source: "./media/characters/kyu/head.svg"
  29368. }
  29369. },
  29370. foot: {
  29371. height: math.unit(0.81, "feet"),
  29372. name: "Foot",
  29373. image: {
  29374. source: "./media/characters/kyu/foot.svg"
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Normal",
  29381. height: math.unit(1.7, "meters")
  29382. },
  29383. {
  29384. name: "Macro",
  29385. height: math.unit(131, "feet"),
  29386. default: true
  29387. },
  29388. {
  29389. name: "Megamacro",
  29390. height: math.unit(91440, "meters")
  29391. },
  29392. {
  29393. name: "Gigamacro",
  29394. height: math.unit(60960000, "meters")
  29395. },
  29396. {
  29397. name: "Teramacro",
  29398. height: math.unit(9144000000, "meters")
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(7 + 1 / 12, "feet"),
  29407. weight: math.unit(250, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/joey/front.svg",
  29411. extra: 1791 / 1537,
  29412. bottom: 28 / 1816
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Micro",
  29419. height: math.unit(3, "inches")
  29420. },
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(7 + 1 / 12, "feet"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(165, "cm"),
  29433. weight: math.unit(140, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/sam-evans/front.svg",
  29437. extra: 3417 / 3230,
  29438. bottom: 41.3 / 3417
  29439. }
  29440. },
  29441. frontSixTails: {
  29442. height: math.unit(165, "cm"),
  29443. weight: math.unit(140, "lb"),
  29444. name: "Front-six-tails",
  29445. image: {
  29446. source: "./media/characters/sam-evans/front-six-tails.svg",
  29447. extra: 3417 / 3230,
  29448. bottom: 41.3 / 3417
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(165, "cm"),
  29453. weight: math.unit(140, "lb"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/sam-evans/back.svg",
  29457. extra: 3227 / 3032,
  29458. bottom: 6.8 / 3234
  29459. }
  29460. },
  29461. face: {
  29462. height: math.unit(0.68, "feet"),
  29463. name: "Face",
  29464. image: {
  29465. source: "./media/characters/sam-evans/face.svg"
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(165, "cm"),
  29473. default: true
  29474. },
  29475. {
  29476. name: "Macro",
  29477. height: math.unit(100, "meters")
  29478. },
  29479. {
  29480. name: "Macro+",
  29481. height: math.unit(800, "meters")
  29482. },
  29483. {
  29484. name: "Macro++",
  29485. height: math.unit(3, "km")
  29486. },
  29487. {
  29488. name: "Macro+++",
  29489. height: math.unit(30, "km")
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(10, "feet"),
  29498. weight: math.unit(750, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/juliet-a/front.svg",
  29502. extra: 1766 / 1720,
  29503. bottom: 43 / 1809
  29504. }
  29505. },
  29506. back: {
  29507. height: math.unit(10, "feet"),
  29508. weight: math.unit(750, "lb"),
  29509. name: "Back",
  29510. image: {
  29511. source: "./media/characters/juliet-a/back.svg",
  29512. extra: 1781 / 1734,
  29513. bottom: 35 / 1810,
  29514. }
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Normal",
  29520. height: math.unit(10, "feet"),
  29521. default: true
  29522. },
  29523. {
  29524. name: "Dragon Form",
  29525. height: math.unit(250, "feet")
  29526. },
  29527. {
  29528. name: "Macro",
  29529. height: math.unit(1000, "feet")
  29530. },
  29531. {
  29532. name: "Megamacro",
  29533. height: math.unit(10000, "feet")
  29534. }
  29535. ]
  29536. ))
  29537. characterMakers.push(() => makeCharacter(
  29538. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29539. {
  29540. regular: {
  29541. height: math.unit(7 + 3 / 12, "feet"),
  29542. weight: math.unit(260, "lb"),
  29543. name: "Regular",
  29544. image: {
  29545. source: "./media/characters/wild/regular.svg",
  29546. extra: 97.45 / 92,
  29547. bottom: 6.8 / 104.3
  29548. }
  29549. },
  29550. biggums: {
  29551. height: math.unit(8 + 6 / 12, "feet"),
  29552. weight: math.unit(425, "lb"),
  29553. name: "Biggums",
  29554. image: {
  29555. source: "./media/characters/wild/biggums.svg",
  29556. extra: 97.45 / 92,
  29557. bottom: 7.5 / 132.34
  29558. }
  29559. },
  29560. mawRegular: {
  29561. height: math.unit(1.24, "feet"),
  29562. name: "Maw (Regular)",
  29563. image: {
  29564. source: "./media/characters/wild/maw.svg"
  29565. }
  29566. },
  29567. mawBiggums: {
  29568. height: math.unit(1.47, "feet"),
  29569. name: "Maw (Biggums)",
  29570. image: {
  29571. source: "./media/characters/wild/maw.svg"
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(7 + 3 / 12, "feet"),
  29579. default: true
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29585. {
  29586. front: {
  29587. height: math.unit(2.5, "meters"),
  29588. weight: math.unit(200, "kg"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/vidar/front.svg",
  29592. extra: 2994 / 2795,
  29593. bottom: 56 / 3061
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(2.5, "meters"),
  29598. weight: math.unit(200, "kg"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/vidar/back.svg",
  29602. extra: 3131 / 2928,
  29603. bottom: 13.5 / 3141.5
  29604. }
  29605. },
  29606. feral: {
  29607. height: math.unit(2.5, "meters"),
  29608. weight: math.unit(2000, "kg"),
  29609. name: "Feral",
  29610. image: {
  29611. source: "./media/characters/vidar/feral.svg",
  29612. extra: 2790 / 1765,
  29613. bottom: 6 / 2796
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Normal",
  29620. height: math.unit(2.5, "meters"),
  29621. default: true
  29622. },
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(100, "meters")
  29626. },
  29627. ]
  29628. ))
  29629. characterMakers.push(() => makeCharacter(
  29630. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29631. {
  29632. front: {
  29633. height: math.unit(5 + 9 / 12, "feet"),
  29634. weight: math.unit(120, "lb"),
  29635. name: "Front",
  29636. image: {
  29637. source: "./media/characters/ash/front.svg",
  29638. extra: 2189 / 1961,
  29639. bottom: 5.2 / 2194
  29640. }
  29641. },
  29642. },
  29643. [
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(5 + 9 / 12, "feet"),
  29647. default: true
  29648. },
  29649. ]
  29650. ))
  29651. characterMakers.push(() => makeCharacter(
  29652. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29653. {
  29654. front: {
  29655. height: math.unit(9, "feet"),
  29656. weight: math.unit(10000, "lb"),
  29657. name: "Front",
  29658. image: {
  29659. source: "./media/characters/gygabite/front.svg",
  29660. bottom: 31.7 / 537.8,
  29661. extra: 505 / 370
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Normal",
  29668. height: math.unit(9, "feet"),
  29669. default: true
  29670. },
  29671. ]
  29672. ))
  29673. characterMakers.push(() => makeCharacter(
  29674. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29675. {
  29676. front: {
  29677. height: math.unit(12, "feet"),
  29678. weight: math.unit(4000, "lb"),
  29679. name: "Front",
  29680. image: {
  29681. source: "./media/characters/p0tat0/front.svg",
  29682. extra: 1065 / 921,
  29683. bottom: 55.7 / 1121.25
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Normal",
  29690. height: math.unit(12, "feet"),
  29691. default: true
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29697. {
  29698. side: {
  29699. height: math.unit(6.5, "feet"),
  29700. weight: math.unit(800, "lb"),
  29701. name: "Side",
  29702. image: {
  29703. source: "./media/characters/dusk/side.svg",
  29704. extra: 615 / 373,
  29705. bottom: 53 / 664
  29706. }
  29707. },
  29708. sitting: {
  29709. height: math.unit(7, "feet"),
  29710. weight: math.unit(800, "lb"),
  29711. name: "Sitting",
  29712. image: {
  29713. source: "./media/characters/dusk/sitting.svg",
  29714. extra: 753 / 425,
  29715. bottom: 33 / 774
  29716. }
  29717. },
  29718. head: {
  29719. height: math.unit(6.1, "feet"),
  29720. name: "Head",
  29721. image: {
  29722. source: "./media/characters/dusk/head.svg"
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Normal",
  29729. height: math.unit(7, "feet"),
  29730. default: true
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(15, "feet"),
  29739. weight: math.unit(7000, "lb"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/jay-direwolf/front.svg",
  29743. extra: 1810 / 1732,
  29744. bottom: 66 / 1892
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Normal",
  29751. height: math.unit(15, "feet"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(4 + 9 / 12, "feet"),
  29761. weight: math.unit(130, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/anchovie/front.svg",
  29765. extra: 382 / 350,
  29766. bottom: 25 / 409
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(4 + 9 / 12, "feet"),
  29771. weight: math.unit(130, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/anchovie/back.svg",
  29775. extra: 385 / 352,
  29776. bottom: 16.6 / 402
  29777. }
  29778. },
  29779. frontDressed: {
  29780. height: math.unit(4 + 9 / 12, "feet"),
  29781. weight: math.unit(130, "lb"),
  29782. name: "Front (Dressed)",
  29783. image: {
  29784. source: "./media/characters/anchovie/front-dressed.svg",
  29785. extra: 382 / 350,
  29786. bottom: 25 / 409
  29787. }
  29788. },
  29789. backDressed: {
  29790. height: math.unit(4 + 9 / 12, "feet"),
  29791. weight: math.unit(130, "lb"),
  29792. name: "Back (Dressed)",
  29793. image: {
  29794. source: "./media/characters/anchovie/back-dressed.svg",
  29795. extra: 385 / 352,
  29796. bottom: 16.6 / 402
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Micro",
  29803. height: math.unit(6.4, "inches")
  29804. },
  29805. {
  29806. name: "Normal",
  29807. height: math.unit(4 + 9 / 12, "feet"),
  29808. default: true
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(2, "meters"),
  29817. weight: math.unit(180, "lb"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/acidrenamon/front.svg",
  29821. extra: 987 / 890,
  29822. bottom: 22.8 / 1009
  29823. }
  29824. },
  29825. back: {
  29826. height: math.unit(2, "meters"),
  29827. weight: math.unit(180, "lb"),
  29828. name: "Back",
  29829. image: {
  29830. source: "./media/characters/acidrenamon/back.svg",
  29831. extra: 983 / 891,
  29832. bottom: 8.4 / 992
  29833. }
  29834. },
  29835. head: {
  29836. height: math.unit(1.92, "feet"),
  29837. name: "Head",
  29838. image: {
  29839. source: "./media/characters/acidrenamon/head.svg"
  29840. }
  29841. },
  29842. rump: {
  29843. height: math.unit(1.72, "feet"),
  29844. name: "Rump",
  29845. image: {
  29846. source: "./media/characters/acidrenamon/rump.svg"
  29847. }
  29848. },
  29849. tail: {
  29850. height: math.unit(4.2, "feet"),
  29851. name: "Tail",
  29852. image: {
  29853. source: "./media/characters/acidrenamon/tail.svg"
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Normal",
  29860. height: math.unit(2, "meters"),
  29861. default: true
  29862. },
  29863. {
  29864. name: "Minimacro",
  29865. height: math.unit(7, "meters")
  29866. },
  29867. {
  29868. name: "Macro",
  29869. height: math.unit(200, "meters")
  29870. },
  29871. {
  29872. name: "Gigamacro",
  29873. height: math.unit(0.2, "earths")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(152, "feet"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/kenzie-lee/front.svg",
  29885. extra: 1869/1774,
  29886. bottom: 128/1997
  29887. }
  29888. },
  29889. side: {
  29890. height: math.unit(86, "feet"),
  29891. name: "Side",
  29892. image: {
  29893. source: "./media/characters/kenzie-lee/side.svg",
  29894. extra: 930/815,
  29895. bottom: 177/1107
  29896. }
  29897. },
  29898. paw: {
  29899. height: math.unit(15, "feet"),
  29900. name: "Paw",
  29901. image: {
  29902. source: "./media/characters/kenzie-lee/paw.svg"
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Kenzie Flea",
  29909. height: math.unit(2, "mm"),
  29910. default: true
  29911. },
  29912. {
  29913. name: "Micro",
  29914. height: math.unit(2, "inches")
  29915. },
  29916. {
  29917. name: "Normal",
  29918. height: math.unit(152, "feet")
  29919. },
  29920. {
  29921. name: "Megamacro",
  29922. height: math.unit(7, "miles")
  29923. },
  29924. {
  29925. name: "Gigamacro",
  29926. height: math.unit(8000, "miles")
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(6, "feet"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/withers/front.svg",
  29938. extra: 1935/1760,
  29939. bottom: 72/2007
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(6, "feet"),
  29944. name: "Back",
  29945. image: {
  29946. source: "./media/characters/withers/back.svg",
  29947. extra: 1944/1792,
  29948. bottom: 12/1956
  29949. }
  29950. },
  29951. dressed: {
  29952. height: math.unit(6, "feet"),
  29953. name: "Dressed",
  29954. image: {
  29955. source: "./media/characters/withers/dressed.svg",
  29956. extra: 1937/1765,
  29957. bottom: 73/2010
  29958. }
  29959. },
  29960. phase1: {
  29961. height: math.unit(1.1, "feet"),
  29962. name: "Phase 1",
  29963. image: {
  29964. source: "./media/characters/withers/phase-1.svg",
  29965. extra: 1885/1232,
  29966. bottom: 0/1885
  29967. }
  29968. },
  29969. phase2: {
  29970. height: math.unit(1.05, "feet"),
  29971. name: "Phase 2",
  29972. image: {
  29973. source: "./media/characters/withers/phase-2.svg",
  29974. extra: 1792/1090,
  29975. bottom: 0/1792
  29976. }
  29977. },
  29978. partyWipe: {
  29979. height: math.unit(1.1, "feet"),
  29980. name: "Party Wipe",
  29981. image: {
  29982. source: "./media/characters/withers/party-wipe.svg",
  29983. extra: 1864/1207,
  29984. bottom: 0/1864
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Macro",
  29991. height: math.unit(167, "feet"),
  29992. default: true
  29993. },
  29994. {
  29995. name: "Megamacro",
  29996. height: math.unit(15, "miles")
  29997. }
  29998. ]
  29999. ))
  30000. characterMakers.push(() => makeCharacter(
  30001. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30002. {
  30003. front: {
  30004. height: math.unit(6 + 7 / 12, "feet"),
  30005. weight: math.unit(250, "lb"),
  30006. name: "Front",
  30007. image: {
  30008. source: "./media/characters/nemoskii/front.svg",
  30009. extra: 2270 / 1734,
  30010. bottom: 86 / 2354
  30011. }
  30012. },
  30013. back: {
  30014. height: math.unit(6 + 7 / 12, "feet"),
  30015. weight: math.unit(250, "lb"),
  30016. name: "Back",
  30017. image: {
  30018. source: "./media/characters/nemoskii/back.svg",
  30019. extra: 1845 / 1788,
  30020. bottom: 10.5 / 1852
  30021. }
  30022. },
  30023. head: {
  30024. height: math.unit(1.31, "feet"),
  30025. name: "Head",
  30026. image: {
  30027. source: "./media/characters/nemoskii/head.svg"
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Micro",
  30034. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30035. },
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6 + 7 / 12, "feet"),
  30039. default: true
  30040. },
  30041. {
  30042. name: "Macro",
  30043. height: math.unit((6 + 7 / 12) * 150, "feet")
  30044. },
  30045. {
  30046. name: "Macro+",
  30047. height: math.unit((6 + 7 / 12) * 500, "feet")
  30048. },
  30049. {
  30050. name: "Megamacro",
  30051. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(1, "mile"),
  30060. weight: math.unit(265261.9, "lb"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/shui/front.svg",
  30064. extra: 1633 / 1564,
  30065. bottom: 91.5 / 1726
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(1, "mile"),
  30073. default: true
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(12 + 6 / 12, "feet"),
  30082. weight: math.unit(1342, "lb"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/arokh-takakura/front.svg",
  30086. extra: 1089 / 1043,
  30087. bottom: 77.4 / 1176.7
  30088. }
  30089. },
  30090. back: {
  30091. height: math.unit(12 + 6 / 12, "feet"),
  30092. weight: math.unit(1342, "lb"),
  30093. name: "Back",
  30094. image: {
  30095. source: "./media/characters/arokh-takakura/back.svg",
  30096. extra: 1046 / 1019,
  30097. bottom: 102 / 1150
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Big",
  30104. height: math.unit(12 + 6 / 12, "feet"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(5 + 6 / 12, "feet"),
  30114. weight: math.unit(150, "lb"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/theo/front.svg",
  30118. extra: 1184 / 1131,
  30119. bottom: 7.4 / 1191
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Micro",
  30126. height: math.unit(5, "inches")
  30127. },
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(5 + 6 / 12, "feet"),
  30131. default: true
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(5 + 9 / 12, "feet"),
  30140. weight: math.unit(130, "lb"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/cecelia-swift/front.svg",
  30144. extra: 502 / 484,
  30145. bottom: 23 / 523
  30146. }
  30147. },
  30148. back: {
  30149. height: math.unit(5 + 9 / 12, "feet"),
  30150. weight: math.unit(130, "lb"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/cecelia-swift/back.svg",
  30154. extra: 499 / 485,
  30155. bottom: 12 / 511
  30156. }
  30157. },
  30158. head: {
  30159. height: math.unit(0.90, "feet"),
  30160. name: "Head",
  30161. image: {
  30162. source: "./media/characters/cecelia-swift/head.svg"
  30163. }
  30164. },
  30165. rump: {
  30166. height: math.unit(1.75, "feet"),
  30167. name: "Rump",
  30168. image: {
  30169. source: "./media/characters/cecelia-swift/rump.svg"
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Normal",
  30176. height: math.unit(5 + 9 / 12, "feet"),
  30177. default: true
  30178. },
  30179. {
  30180. name: "Big",
  30181. height: math.unit(50, "feet")
  30182. },
  30183. {
  30184. name: "Macro",
  30185. height: math.unit(100, "feet")
  30186. },
  30187. {
  30188. name: "Macro+",
  30189. height: math.unit(500, "feet")
  30190. },
  30191. {
  30192. name: "Macro++",
  30193. height: math.unit(1000, "feet")
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30199. {
  30200. front: {
  30201. height: math.unit(6, "feet"),
  30202. weight: math.unit(150, "lb"),
  30203. name: "Front",
  30204. image: {
  30205. source: "./media/characters/kaunan/front.svg",
  30206. extra: 2890 / 2523,
  30207. bottom: 49 / 2939
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Macro",
  30214. height: math.unit(150, "feet"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30221. {
  30222. dressed: {
  30223. height: math.unit(175, "cm"),
  30224. weight: math.unit(60, "kg"),
  30225. name: "Dressed",
  30226. image: {
  30227. source: "./media/characters/fei/dressed.svg",
  30228. extra: 1402/1278,
  30229. bottom: 27/1429
  30230. }
  30231. },
  30232. nude: {
  30233. height: math.unit(175, "cm"),
  30234. weight: math.unit(60, "kg"),
  30235. name: "Nude",
  30236. image: {
  30237. source: "./media/characters/fei/nude.svg",
  30238. extra: 1402/1278,
  30239. bottom: 27/1429
  30240. }
  30241. },
  30242. heels: {
  30243. height: math.unit(0.466, "feet"),
  30244. name: "Heels",
  30245. image: {
  30246. source: "./media/characters/fei/heels.svg",
  30247. extra: 156/152,
  30248. bottom: 28/184
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Mortal",
  30255. height: math.unit(175, "cm")
  30256. },
  30257. {
  30258. name: "Normal",
  30259. height: math.unit(3500, "m")
  30260. },
  30261. {
  30262. name: "Stroll",
  30263. height: math.unit(18.4, "km"),
  30264. default: true
  30265. },
  30266. {
  30267. name: "Showoff",
  30268. height: math.unit(175, "km")
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(7, "feet"),
  30277. weight: math.unit(1000, "kg"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/edrax/front.svg",
  30281. extra: 2838 / 2550,
  30282. bottom: 130 / 2968
  30283. }
  30284. },
  30285. },
  30286. [
  30287. {
  30288. name: "Small",
  30289. height: math.unit(7, "feet")
  30290. },
  30291. {
  30292. name: "Normal",
  30293. height: math.unit(1500, "meters")
  30294. },
  30295. {
  30296. name: "Mega",
  30297. height: math.unit(12000000, "km"),
  30298. default: true
  30299. },
  30300. {
  30301. name: "Megamacro",
  30302. height: math.unit(10600000, "lightyears")
  30303. },
  30304. {
  30305. name: "Hypermacro",
  30306. height: math.unit(256, "yottameters")
  30307. },
  30308. ]
  30309. ))
  30310. characterMakers.push(() => makeCharacter(
  30311. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30312. {
  30313. front: {
  30314. height: math.unit(10, "feet"),
  30315. weight: math.unit(750, "lb"),
  30316. name: "Front",
  30317. image: {
  30318. source: "./media/characters/clove/front.svg",
  30319. extra: 1918/1751,
  30320. bottom: 52/1970
  30321. }
  30322. },
  30323. back: {
  30324. height: math.unit(10, "feet"),
  30325. weight: math.unit(750, "lb"),
  30326. name: "Back",
  30327. image: {
  30328. source: "./media/characters/clove/back.svg",
  30329. extra: 1912/1747,
  30330. bottom: 50/1962
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Normal",
  30337. height: math.unit(10, "feet"),
  30338. default: true
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(4, "feet"),
  30347. weight: math.unit(50, "lb"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/alex-rabbit/front.svg",
  30351. extra: 507 / 458,
  30352. bottom: 18.5 / 527
  30353. }
  30354. },
  30355. back: {
  30356. height: math.unit(4, "feet"),
  30357. weight: math.unit(50, "lb"),
  30358. name: "Back",
  30359. image: {
  30360. source: "./media/characters/alex-rabbit/back.svg",
  30361. extra: 502 / 460,
  30362. bottom: 18.9 / 521
  30363. }
  30364. },
  30365. },
  30366. [
  30367. {
  30368. name: "Normal",
  30369. height: math.unit(4, "feet"),
  30370. default: true
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(1 + 3 / 12, "feet"),
  30379. weight: math.unit(80, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/zander-rose/front.svg",
  30383. extra: 916 / 797,
  30384. bottom: 17 / 933
  30385. }
  30386. },
  30387. back: {
  30388. height: math.unit(1 + 3 / 12, "feet"),
  30389. weight: math.unit(80, "lb"),
  30390. name: "Back",
  30391. image: {
  30392. source: "./media/characters/zander-rose/back.svg",
  30393. extra: 903 / 779,
  30394. bottom: 31 / 934
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Normal",
  30401. height: math.unit(1 + 3 / 12, "feet"),
  30402. default: true
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30408. {
  30409. anthro: {
  30410. height: math.unit(6, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Anthro",
  30413. image: {
  30414. source: "./media/characters/razz/anthro.svg",
  30415. extra: 1437 / 1343,
  30416. bottom: 48 / 1485
  30417. }
  30418. },
  30419. feral: {
  30420. height: math.unit(6, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Feral",
  30423. image: {
  30424. source: "./media/characters/razz/feral.svg",
  30425. extra: 2569 / 1385,
  30426. bottom: 95 / 2664
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Normal",
  30433. height: math.unit(6, "feet"),
  30434. default: true
  30435. },
  30436. ]
  30437. ))
  30438. characterMakers.push(() => makeCharacter(
  30439. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30440. {
  30441. front: {
  30442. height: math.unit(9 + 4 / 12, "feet"),
  30443. weight: math.unit(500, "lb"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/morrigan/front.svg",
  30447. extra: 2707 / 2579,
  30448. bottom: 156 / 2863
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Normal",
  30455. height: math.unit(9 + 4 / 12, "feet"),
  30456. default: true
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(5, "stories"),
  30465. weight: math.unit(4000, "lb"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/jenene/front.svg",
  30469. extra: 1780 / 1710,
  30470. bottom: 57 / 1837
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(5, "stories"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30484. {
  30485. taurSfw: {
  30486. height: math.unit(10, "meters"),
  30487. weight: math.unit(17500, "kg"),
  30488. name: "Taur",
  30489. image: {
  30490. source: "./media/characters/faey/taur-sfw.svg",
  30491. extra: 1200 / 968,
  30492. bottom: 41 / 1241
  30493. }
  30494. },
  30495. chestmaw: {
  30496. height: math.unit(2.01, "meters"),
  30497. name: "Chestmaw",
  30498. image: {
  30499. source: "./media/characters/faey/chestmaw.svg"
  30500. }
  30501. },
  30502. foot: {
  30503. height: math.unit(2.43, "meters"),
  30504. name: "Foot",
  30505. image: {
  30506. source: "./media/characters/faey/foot.svg"
  30507. }
  30508. },
  30509. jaws: {
  30510. height: math.unit(1.66, "meters"),
  30511. name: "Jaws",
  30512. image: {
  30513. source: "./media/characters/faey/jaws.svg"
  30514. }
  30515. },
  30516. tongues: {
  30517. height: math.unit(2.01, "meters"),
  30518. name: "Tongues",
  30519. image: {
  30520. source: "./media/characters/faey/tongues.svg"
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Small",
  30527. height: math.unit(10, "meters"),
  30528. default: true
  30529. },
  30530. {
  30531. name: "Big",
  30532. height: math.unit(500000, "km")
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30538. {
  30539. front: {
  30540. height: math.unit(7, "feet"),
  30541. weight: math.unit(275, "lb"),
  30542. name: "Front",
  30543. image: {
  30544. source: "./media/characters/roku/front.svg",
  30545. extra: 903 / 878,
  30546. bottom: 37 / 940
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(7, "feet"),
  30554. default: true
  30555. },
  30556. {
  30557. name: "Macro",
  30558. height: math.unit(500, "feet")
  30559. },
  30560. {
  30561. name: "Megamacro",
  30562. height: math.unit(200, "miles")
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(6 + 2 / 12, "feet"),
  30571. weight: math.unit(150, "lb"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/lira/front.svg",
  30575. extra: 1727 / 1605,
  30576. bottom: 26 / 1753
  30577. }
  30578. },
  30579. back: {
  30580. height: math.unit(6 + 2 / 12, "feet"),
  30581. weight: math.unit(150, "lb"),
  30582. name: "Back",
  30583. image: {
  30584. source: "./media/characters/lira/back.svg",
  30585. extra: 1713/1621,
  30586. bottom: 20/1733
  30587. }
  30588. },
  30589. hand: {
  30590. height: math.unit(0.75, "feet"),
  30591. name: "Hand",
  30592. image: {
  30593. source: "./media/characters/lira/hand.svg"
  30594. }
  30595. },
  30596. maw: {
  30597. height: math.unit(0.65, "feet"),
  30598. name: "Maw",
  30599. image: {
  30600. source: "./media/characters/lira/maw.svg"
  30601. }
  30602. },
  30603. pawDigi: {
  30604. height: math.unit(1.6, "feet"),
  30605. name: "Paw Digi",
  30606. image: {
  30607. source: "./media/characters/lira/paw-digi.svg"
  30608. }
  30609. },
  30610. pawPlanti: {
  30611. height: math.unit(1.4, "feet"),
  30612. name: "Paw Planti",
  30613. image: {
  30614. source: "./media/characters/lira/paw-planti.svg"
  30615. }
  30616. },
  30617. },
  30618. [
  30619. {
  30620. name: "Normal",
  30621. height: math.unit(6 + 2 / 12, "feet"),
  30622. default: true
  30623. },
  30624. {
  30625. name: "Macro",
  30626. height: math.unit(100, "feet")
  30627. },
  30628. {
  30629. name: "Macro²",
  30630. height: math.unit(1600, "feet")
  30631. },
  30632. {
  30633. name: "Planetary",
  30634. height: math.unit(20, "earths")
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30640. {
  30641. front: {
  30642. height: math.unit(6, "feet"),
  30643. weight: math.unit(150, "lb"),
  30644. name: "Front",
  30645. image: {
  30646. source: "./media/characters/hadjet/front.svg",
  30647. extra: 1480 / 1346,
  30648. bottom: 26 / 1506
  30649. }
  30650. },
  30651. frontNsfw: {
  30652. height: math.unit(6, "feet"),
  30653. weight: math.unit(150, "lb"),
  30654. name: "Front (NSFW)",
  30655. image: {
  30656. source: "./media/characters/hadjet/front-nsfw.svg",
  30657. extra: 1440 / 1358,
  30658. bottom: 52 / 1492
  30659. }
  30660. },
  30661. },
  30662. [
  30663. {
  30664. name: "Macro",
  30665. height: math.unit(10, "stories"),
  30666. default: true
  30667. },
  30668. {
  30669. name: "Megamacro",
  30670. height: math.unit(1.5, "miles")
  30671. },
  30672. {
  30673. name: "Megamacro+",
  30674. height: math.unit(5, "miles")
  30675. },
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30680. {
  30681. side: {
  30682. height: math.unit(106, "feet"),
  30683. weight: math.unit(500, "tonnes"),
  30684. name: "Side",
  30685. image: {
  30686. source: "./media/characters/kodran/side.svg",
  30687. extra: 553 / 480,
  30688. bottom: 33 / 586
  30689. }
  30690. },
  30691. front: {
  30692. height: math.unit(132, "feet"),
  30693. weight: math.unit(500, "tonnes"),
  30694. name: "Front",
  30695. image: {
  30696. source: "./media/characters/kodran/front.svg",
  30697. extra: 667 / 643,
  30698. bottom: 42 / 709
  30699. }
  30700. },
  30701. flying: {
  30702. height: math.unit(350, "feet"),
  30703. weight: math.unit(500, "tonnes"),
  30704. name: "Flying",
  30705. image: {
  30706. source: "./media/characters/kodran/flying.svg"
  30707. }
  30708. },
  30709. foot: {
  30710. height: math.unit(33, "feet"),
  30711. name: "Foot",
  30712. image: {
  30713. source: "./media/characters/kodran/foot.svg"
  30714. }
  30715. },
  30716. footFront: {
  30717. height: math.unit(19, "feet"),
  30718. name: "Foot (Front)",
  30719. image: {
  30720. source: "./media/characters/kodran/foot-front.svg",
  30721. extra: 261 / 261,
  30722. bottom: 91 / 352
  30723. }
  30724. },
  30725. headFront: {
  30726. height: math.unit(53, "feet"),
  30727. name: "Head (Front)",
  30728. image: {
  30729. source: "./media/characters/kodran/head-front.svg"
  30730. }
  30731. },
  30732. headSide: {
  30733. height: math.unit(65, "feet"),
  30734. name: "Head (Side)",
  30735. image: {
  30736. source: "./media/characters/kodran/head-side.svg"
  30737. }
  30738. },
  30739. throat: {
  30740. height: math.unit(79, "feet"),
  30741. name: "Throat",
  30742. image: {
  30743. source: "./media/characters/kodran/throat.svg"
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Large",
  30750. height: math.unit(106, "feet"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30757. {
  30758. side: {
  30759. height: math.unit(11, "feet"),
  30760. weight: math.unit(150, "lb"),
  30761. name: "Side",
  30762. image: {
  30763. source: "./media/characters/pyxaron/side.svg",
  30764. extra: 305 / 195,
  30765. bottom: 17 / 322
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(11, "feet"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30779. {
  30780. front: {
  30781. height: math.unit(6, "feet"),
  30782. weight: math.unit(150, "lb"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/meep/front.svg",
  30786. extra: 88 / 80,
  30787. bottom: 6 / 94
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Fun Sized",
  30794. height: math.unit(2, "inches"),
  30795. default: true
  30796. },
  30797. {
  30798. name: "Friend Sized",
  30799. height: math.unit(8, "inches")
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(15, "feet"),
  30808. weight: math.unit(2500, "lb"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/holly-rabbit/front.svg",
  30812. extra: 1433 / 1233,
  30813. bottom: 125 / 1558
  30814. }
  30815. },
  30816. dick: {
  30817. height: math.unit(4.6, "feet"),
  30818. name: "Dick",
  30819. image: {
  30820. source: "./media/characters/holly-rabbit/dick.svg"
  30821. }
  30822. },
  30823. },
  30824. [
  30825. {
  30826. name: "Normal",
  30827. height: math.unit(15, "feet"),
  30828. default: true
  30829. },
  30830. {
  30831. name: "Macro",
  30832. height: math.unit(250, "feet")
  30833. },
  30834. {
  30835. name: "Macro+",
  30836. height: math.unit(2500, "feet")
  30837. },
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(3.02, "meters"),
  30845. weight: math.unit(500, "kg"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/drena/front.svg",
  30849. extra: 282 / 243,
  30850. bottom: 8 / 290
  30851. }
  30852. },
  30853. side: {
  30854. height: math.unit(3.02, "meters"),
  30855. weight: math.unit(500, "kg"),
  30856. name: "Side",
  30857. image: {
  30858. source: "./media/characters/drena/side.svg",
  30859. extra: 280 / 245,
  30860. bottom: 10 / 290
  30861. }
  30862. },
  30863. back: {
  30864. height: math.unit(3.02, "meters"),
  30865. weight: math.unit(500, "kg"),
  30866. name: "Back",
  30867. image: {
  30868. source: "./media/characters/drena/back.svg",
  30869. extra: 278 / 243,
  30870. bottom: 2 / 280
  30871. }
  30872. },
  30873. foot: {
  30874. height: math.unit(0.75, "meters"),
  30875. name: "Foot",
  30876. image: {
  30877. source: "./media/characters/drena/foot.svg"
  30878. }
  30879. },
  30880. maw: {
  30881. height: math.unit(0.82, "meters"),
  30882. name: "Maw",
  30883. image: {
  30884. source: "./media/characters/drena/maw.svg"
  30885. }
  30886. },
  30887. eating: {
  30888. height: math.unit(0.75, "meters"),
  30889. name: "Eating",
  30890. image: {
  30891. source: "./media/characters/drena/eating.svg"
  30892. }
  30893. },
  30894. rump: {
  30895. height: math.unit(0.93, "meters"),
  30896. name: "Rump",
  30897. image: {
  30898. source: "./media/characters/drena/rump.svg"
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Normal",
  30905. height: math.unit(3.02, "meters"),
  30906. default: true
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30912. {
  30913. front: {
  30914. height: math.unit(6 + 4 / 12, "feet"),
  30915. weight: math.unit(250, "lb"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/remmyzilla/front.svg",
  30919. extra: 4033 / 3588,
  30920. bottom: 123 / 4156
  30921. }
  30922. },
  30923. back: {
  30924. height: math.unit(6 + 4 / 12, "feet"),
  30925. weight: math.unit(250, "lb"),
  30926. name: "Back",
  30927. image: {
  30928. source: "./media/characters/remmyzilla/back.svg",
  30929. extra: 2687 / 2555,
  30930. bottom: 48 / 2735
  30931. }
  30932. },
  30933. paw: {
  30934. height: math.unit(1.73, "feet"),
  30935. name: "Paw",
  30936. image: {
  30937. source: "./media/characters/remmyzilla/paw.svg"
  30938. },
  30939. extraAttributes: {
  30940. "toeSize": {
  30941. name: "Toe Size",
  30942. power: 2,
  30943. type: "area",
  30944. base: math.unit(0.0035, "m^2")
  30945. },
  30946. "padSize": {
  30947. name: "Pad Size",
  30948. power: 2,
  30949. type: "area",
  30950. base: math.unit(0.015, "m^2")
  30951. },
  30952. "pawsize": {
  30953. name: "Paw Size",
  30954. power: 2,
  30955. type: "area",
  30956. base: math.unit(0.072, "m^2")
  30957. },
  30958. }
  30959. },
  30960. maw: {
  30961. height: math.unit(1.73, "feet"),
  30962. name: "Maw",
  30963. image: {
  30964. source: "./media/characters/remmyzilla/maw.svg"
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(6 + 4 / 12, "feet")
  30972. },
  30973. {
  30974. name: "Minimacro",
  30975. height: math.unit(12 + 8 / 12, "feet")
  30976. },
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(640, "feet"),
  30980. default: true
  30981. },
  30982. {
  30983. name: "Megamacro",
  30984. height: math.unit(6400, "feet")
  30985. },
  30986. {
  30987. name: "Gigamacro",
  30988. height: math.unit(64000, "miles")
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30994. {
  30995. front: {
  30996. height: math.unit(2.5, "meters"),
  30997. weight: math.unit(300, "lb"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/lawrence/front.svg",
  31001. extra: 357 / 335,
  31002. bottom: 30 / 387
  31003. }
  31004. },
  31005. back: {
  31006. height: math.unit(2.5, "meters"),
  31007. weight: math.unit(300, "lb"),
  31008. name: "Back",
  31009. image: {
  31010. source: "./media/characters/lawrence/back.svg",
  31011. extra: 357 / 338,
  31012. bottom: 16 / 373
  31013. }
  31014. },
  31015. head: {
  31016. height: math.unit(0.9, "meter"),
  31017. name: "Head",
  31018. image: {
  31019. source: "./media/characters/lawrence/head.svg"
  31020. }
  31021. },
  31022. maw: {
  31023. height: math.unit(0.7, "meter"),
  31024. name: "Maw",
  31025. image: {
  31026. source: "./media/characters/lawrence/maw.svg"
  31027. }
  31028. },
  31029. footBottom: {
  31030. height: math.unit(0.5, "meter"),
  31031. name: "Foot (Bottom)",
  31032. image: {
  31033. source: "./media/characters/lawrence/foot-bottom.svg"
  31034. }
  31035. },
  31036. footTop: {
  31037. height: math.unit(0.5, "meter"),
  31038. name: "Foot (Top)",
  31039. image: {
  31040. source: "./media/characters/lawrence/foot-top.svg"
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(2.5, "meters"),
  31048. default: true
  31049. },
  31050. {
  31051. name: "Macro",
  31052. height: math.unit(95, "meters")
  31053. },
  31054. {
  31055. name: "Megamacro",
  31056. height: math.unit(150, "km")
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31062. {
  31063. front: {
  31064. height: math.unit(4.2, "meters"),
  31065. preyCapacity: math.unit(50, "m^3"),
  31066. weight: math.unit(30, "tonnes"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/sydney/front.svg",
  31070. extra: 1177/1129,
  31071. bottom: 197/1374
  31072. },
  31073. extraAttributes: {
  31074. "length": {
  31075. name: "Length",
  31076. power: 1,
  31077. type: "length",
  31078. base: math.unit(21, "meters")
  31079. },
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(4.2, "meters"),
  31087. default: true
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31093. {
  31094. back: {
  31095. height: math.unit(201, "feet"),
  31096. name: "Back",
  31097. image: {
  31098. source: "./media/characters/jessica/back.svg",
  31099. extra: 273 / 259,
  31100. bottom: 7 / 280
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(201, "feet"),
  31108. default: true
  31109. },
  31110. {
  31111. name: "Megamacro",
  31112. height: math.unit(8, "miles")
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31118. {
  31119. side: {
  31120. height: math.unit(5.6, "m"),
  31121. weight: math.unit(8000, "kg"),
  31122. name: "Side",
  31123. image: {
  31124. source: "./media/characters/victoria/side.svg",
  31125. extra: 1542/1229,
  31126. bottom: 124/1666
  31127. }
  31128. },
  31129. maw: {
  31130. height: math.unit(7.14, "feet"),
  31131. name: "Maw",
  31132. image: {
  31133. source: "./media/characters/victoria/maw.svg"
  31134. }
  31135. },
  31136. },
  31137. [
  31138. {
  31139. name: "Normal",
  31140. height: math.unit(5.6, "m"),
  31141. default: true
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31147. {
  31148. front: {
  31149. height: math.unit(5 + 6 / 12, "feet"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/cat/front.svg",
  31153. extra: 1449/1295,
  31154. bottom: 34/1483
  31155. },
  31156. form: "cat",
  31157. default: true
  31158. },
  31159. back: {
  31160. height: math.unit(5 + 6 / 12, "feet"),
  31161. name: "Back",
  31162. image: {
  31163. source: "./media/characters/cat/back.svg",
  31164. extra: 1466/1301,
  31165. bottom: 19/1485
  31166. },
  31167. form: "cat"
  31168. },
  31169. taur: {
  31170. height: math.unit(7, "feet"),
  31171. name: "Taur",
  31172. image: {
  31173. source: "./media/characters/cat/taur.svg",
  31174. extra: 1389/1233,
  31175. bottom: 83/1472
  31176. },
  31177. form: "taur",
  31178. default: true
  31179. },
  31180. lucarioFront: {
  31181. height: math.unit(4, "feet"),
  31182. name: "Lucario (Front)",
  31183. image: {
  31184. source: "./media/characters/cat/lucario-front.svg",
  31185. extra: 1149/1019,
  31186. bottom: 84/1233
  31187. },
  31188. form: "lucario",
  31189. default: true
  31190. },
  31191. lucarioBack: {
  31192. height: math.unit(4, "feet"),
  31193. name: "Lucario (Back)",
  31194. image: {
  31195. source: "./media/characters/cat/lucario-back.svg",
  31196. extra: 1190/1059,
  31197. bottom: 33/1223
  31198. },
  31199. form: "lucario"
  31200. },
  31201. megaLucario: {
  31202. height: math.unit(4, "feet"),
  31203. name: "Mega Lucario",
  31204. image: {
  31205. source: "./media/characters/cat/mega-lucario.svg",
  31206. extra: 1515 / 1319,
  31207. bottom: 63 / 1578
  31208. },
  31209. form: "lucario"
  31210. },
  31211. nickit: {
  31212. height: math.unit(2, "feet"),
  31213. name: "Nickit",
  31214. image: {
  31215. source: "./media/characters/cat/nickit.svg",
  31216. extra: 1980 / 1585,
  31217. bottom: 102 / 2082
  31218. },
  31219. form: "nickit",
  31220. default: true
  31221. },
  31222. lopunnyFront: {
  31223. height: math.unit(5, "feet"),
  31224. name: "Lopunny (Front)",
  31225. image: {
  31226. source: "./media/characters/cat/lopunny-front.svg",
  31227. extra: 1782 / 1469,
  31228. bottom: 38 / 1820
  31229. },
  31230. form: "lopunny",
  31231. default: true
  31232. },
  31233. lopunnyBack: {
  31234. height: math.unit(5, "feet"),
  31235. name: "Lopunny (Back)",
  31236. image: {
  31237. source: "./media/characters/cat/lopunny-back.svg",
  31238. extra: 1660 / 1490,
  31239. bottom: 25 / 1685
  31240. },
  31241. form: "lopunny"
  31242. },
  31243. },
  31244. [
  31245. {
  31246. name: "Really small",
  31247. height: math.unit(1, "nm")
  31248. },
  31249. {
  31250. name: "Micro",
  31251. height: math.unit(5, "inches")
  31252. },
  31253. {
  31254. name: "Normal",
  31255. height: math.unit(5 + 6 / 12, "feet"),
  31256. default: true
  31257. },
  31258. {
  31259. name: "Macro",
  31260. height: math.unit(50, "feet")
  31261. },
  31262. {
  31263. name: "Macro+",
  31264. height: math.unit(150, "feet")
  31265. },
  31266. {
  31267. name: "Megamacro",
  31268. height: math.unit(100, "miles")
  31269. },
  31270. ]
  31271. ))
  31272. characterMakers.push(() => makeCharacter(
  31273. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31274. {
  31275. front: {
  31276. height: math.unit(63.4, "meters"),
  31277. weight: math.unit(3.28349e+6, "kilograms"),
  31278. name: "Front",
  31279. image: {
  31280. source: "./media/characters/kirina-violet/front.svg",
  31281. extra: 2812 / 2725,
  31282. bottom: 0 / 2812
  31283. }
  31284. },
  31285. back: {
  31286. height: math.unit(63.4, "meters"),
  31287. weight: math.unit(3.28349e+6, "kilograms"),
  31288. name: "Back",
  31289. image: {
  31290. source: "./media/characters/kirina-violet/back.svg",
  31291. extra: 2812 / 2725,
  31292. bottom: 0 / 2812
  31293. }
  31294. },
  31295. mouth: {
  31296. height: math.unit(4.35, "meters"),
  31297. name: "Mouth",
  31298. image: {
  31299. source: "./media/characters/kirina-violet/mouth.svg"
  31300. }
  31301. },
  31302. paw: {
  31303. height: math.unit(5.6, "meters"),
  31304. name: "Paw",
  31305. image: {
  31306. source: "./media/characters/kirina-violet/paw.svg"
  31307. }
  31308. },
  31309. tail: {
  31310. height: math.unit(18, "meters"),
  31311. name: "Tail",
  31312. image: {
  31313. source: "./media/characters/kirina-violet/tail.svg"
  31314. }
  31315. },
  31316. },
  31317. [
  31318. {
  31319. name: "Macro",
  31320. height: math.unit(63.4, "meters"),
  31321. default: true
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(75, "feet"),
  31330. name: "Front",
  31331. image: {
  31332. source: "./media/characters/cat-gigachu/front.svg",
  31333. extra: 1239/1027,
  31334. bottom: 32/1271
  31335. }
  31336. },
  31337. back: {
  31338. height: math.unit(75, "feet"),
  31339. name: "Back",
  31340. image: {
  31341. source: "./media/characters/cat-gigachu/back.svg",
  31342. extra: 1229/1030,
  31343. bottom: 9/1238
  31344. }
  31345. },
  31346. },
  31347. [
  31348. {
  31349. name: "Dynamax",
  31350. height: math.unit(75, "feet"),
  31351. default: true
  31352. },
  31353. ]
  31354. ))
  31355. characterMakers.push(() => makeCharacter(
  31356. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31357. {
  31358. front: {
  31359. height: math.unit(6, "feet"),
  31360. weight: math.unit(150, "lb"),
  31361. name: "Front",
  31362. image: {
  31363. source: "./media/characters/sfaiyan/front.svg",
  31364. extra: 999 / 978,
  31365. bottom: 5 / 1004
  31366. }
  31367. },
  31368. },
  31369. [
  31370. {
  31371. name: "Normal",
  31372. height: math.unit(1.82, "meters")
  31373. },
  31374. {
  31375. name: "Giant",
  31376. height: math.unit(2.27, "km"),
  31377. default: true
  31378. },
  31379. ]
  31380. ))
  31381. characterMakers.push(() => makeCharacter(
  31382. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31383. {
  31384. front: {
  31385. height: math.unit(179, "cm"),
  31386. weight: math.unit(100, "kg"),
  31387. name: "Front",
  31388. image: {
  31389. source: "./media/characters/raunehkeli/front.svg",
  31390. extra: 1934 / 1926,
  31391. bottom: 0 / 1934
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(179, "cm")
  31399. },
  31400. {
  31401. name: "Maximum",
  31402. height: math.unit(575, "meters"),
  31403. default: true
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31409. {
  31410. front: {
  31411. height: math.unit(6, "feet"),
  31412. weight: math.unit(150, "lb"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31416. extra: 2625 / 2518,
  31417. bottom: 60 / 2685
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(6 + 2 / 12, "feet")
  31425. },
  31426. {
  31427. name: "Macro",
  31428. height: math.unit(1180, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(5 + 6 / 12, "feet"),
  31438. weight: math.unit(108, "lb"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/lilith-zott/front.svg",
  31442. extra: 2510 / 2238,
  31443. bottom: 100 / 2610
  31444. }
  31445. },
  31446. frontDressed: {
  31447. height: math.unit(5 + 6 / 12, "feet"),
  31448. weight: math.unit(108, "lb"),
  31449. name: "Front (Dressed)",
  31450. image: {
  31451. source: "./media/characters/lilith-zott/front-dressed.svg",
  31452. extra: 2510 / 2238,
  31453. bottom: 100 / 2610
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(5 + 6 / 12, "feet")
  31461. },
  31462. {
  31463. name: "Macro",
  31464. height: math.unit(1030, "feet"),
  31465. default: true
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(6, "feet"),
  31474. weight: math.unit(150, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31478. extra: 2567 / 2435,
  31479. bottom: 39 / 2606
  31480. }
  31481. },
  31482. frontSuper: {
  31483. height: math.unit(6, "feet"),
  31484. name: "Front (Super)",
  31485. image: {
  31486. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31487. extra: 2567 / 2435,
  31488. bottom: 39 / 2606
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(5 + 10 / 12, "feet")
  31496. },
  31497. {
  31498. name: "Macro",
  31499. height: math.unit(1100, "feet"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31506. {
  31507. front: {
  31508. height: math.unit(100, "miles"),
  31509. name: "Front",
  31510. image: {
  31511. source: "./media/characters/sona/front.svg",
  31512. extra: 2433 / 2201,
  31513. bottom: 53 / 2486
  31514. }
  31515. },
  31516. foot: {
  31517. height: math.unit(16.1, "miles"),
  31518. name: "Foot",
  31519. image: {
  31520. source: "./media/characters/sona/foot.svg"
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Macro",
  31527. height: math.unit(100, "miles"),
  31528. default: true
  31529. },
  31530. ]
  31531. ))
  31532. characterMakers.push(() => makeCharacter(
  31533. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31534. {
  31535. front: {
  31536. height: math.unit(6, "feet"),
  31537. weight: math.unit(150, "lb"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/bailey/front.svg",
  31541. extra: 1778 / 1724,
  31542. bottom: 30 / 1808
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Micro",
  31549. height: math.unit(4, "inches")
  31550. },
  31551. {
  31552. name: "Normal",
  31553. height: math.unit(5 + 5 / 12, "feet"),
  31554. default: true
  31555. },
  31556. {
  31557. name: "Macro",
  31558. height: math.unit(250, "feet")
  31559. },
  31560. {
  31561. name: "Megamacro",
  31562. height: math.unit(100, "miles")
  31563. },
  31564. ]
  31565. ))
  31566. characterMakers.push(() => makeCharacter(
  31567. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31568. {
  31569. front: {
  31570. height: math.unit(5 + 2 / 12, "feet"),
  31571. weight: math.unit(120, "lb"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/snaps/front.svg",
  31575. extra: 2370 / 2177,
  31576. bottom: 48 / 2418
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(5 + 2 / 12, "feet"),
  31581. weight: math.unit(120, "lb"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/snaps/back.svg",
  31585. extra: 2408 / 2258,
  31586. bottom: 15 / 2423
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Micro",
  31593. height: math.unit(9, "inches")
  31594. },
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(5 + 2 / 12, "feet"),
  31598. default: true
  31599. },
  31600. {
  31601. name: "Mini Macro",
  31602. height: math.unit(10, "feet")
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(1.8, "meters"),
  31611. weight: math.unit(85, "kg"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/azteck/front.svg",
  31615. extra: 2815 / 2625,
  31616. bottom: 89 / 2904
  31617. }
  31618. },
  31619. back: {
  31620. height: math.unit(1.8, "meters"),
  31621. weight: math.unit(85, "kg"),
  31622. name: "Back",
  31623. image: {
  31624. source: "./media/characters/azteck/back.svg",
  31625. extra: 2856 / 2648,
  31626. bottom: 85 / 2941
  31627. }
  31628. },
  31629. frontDressed: {
  31630. height: math.unit(1.8, "meters"),
  31631. weight: math.unit(85, "kg"),
  31632. name: "Front (Dressed)",
  31633. image: {
  31634. source: "./media/characters/azteck/front-dressed.svg",
  31635. extra: 2147 / 2003,
  31636. bottom: 68 / 2215
  31637. }
  31638. },
  31639. head: {
  31640. height: math.unit(0.47, "meters"),
  31641. weight: math.unit(85, "kg"),
  31642. name: "Head",
  31643. image: {
  31644. source: "./media/characters/azteck/head.svg"
  31645. }
  31646. },
  31647. },
  31648. [
  31649. {
  31650. name: "Bite sized",
  31651. height: math.unit(16, "cm")
  31652. },
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(1.8, "meters"),
  31656. default: true
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(6, "feet"),
  31665. weight: math.unit(150, "lb"),
  31666. name: "Front",
  31667. image: {
  31668. source: "./media/characters/pidge/front.svg",
  31669. extra: 1936/1820,
  31670. bottom: 0/1936
  31671. }
  31672. },
  31673. back: {
  31674. height: math.unit(6, "feet"),
  31675. weight: math.unit(150, "lb"),
  31676. name: "Back",
  31677. image: {
  31678. source: "./media/characters/pidge/back.svg",
  31679. extra: 1938/1843,
  31680. bottom: 0/1938
  31681. }
  31682. },
  31683. casual: {
  31684. height: math.unit(6, "feet"),
  31685. weight: math.unit(150, "lb"),
  31686. name: "Casual",
  31687. image: {
  31688. source: "./media/characters/pidge/casual.svg",
  31689. extra: 1936/1820,
  31690. bottom: 0/1936
  31691. }
  31692. },
  31693. tech: {
  31694. height: math.unit(6, "feet"),
  31695. weight: math.unit(150, "lb"),
  31696. name: "Tech",
  31697. image: {
  31698. source: "./media/characters/pidge/tech.svg",
  31699. extra: 1802/1682,
  31700. bottom: 0/1802
  31701. }
  31702. },
  31703. head: {
  31704. height: math.unit(1.61, "feet"),
  31705. name: "Head",
  31706. image: {
  31707. source: "./media/characters/pidge/head.svg"
  31708. }
  31709. },
  31710. collar: {
  31711. height: math.unit(0.82, "feet"),
  31712. name: "Collar",
  31713. image: {
  31714. source: "./media/characters/pidge/collar.svg"
  31715. }
  31716. },
  31717. },
  31718. [
  31719. {
  31720. name: "Macro",
  31721. height: math.unit(2, "mile"),
  31722. default: true
  31723. },
  31724. {
  31725. name: "PUPPY",
  31726. height: math.unit(20, "miles")
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(6, "feet"),
  31735. weight: math.unit(150, "lb"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/en/front.svg",
  31739. extra: 1697 / 1563,
  31740. bottom: 103 / 1800
  31741. }
  31742. },
  31743. back: {
  31744. height: math.unit(6, "feet"),
  31745. weight: math.unit(150, "lb"),
  31746. name: "Back",
  31747. image: {
  31748. source: "./media/characters/en/back.svg",
  31749. extra: 1700 / 1570,
  31750. bottom: 51 / 1751
  31751. }
  31752. },
  31753. frontDressed: {
  31754. height: math.unit(6, "feet"),
  31755. weight: math.unit(150, "lb"),
  31756. name: "Front (Dressed)",
  31757. image: {
  31758. source: "./media/characters/en/front-dressed.svg",
  31759. extra: 1697 / 1563,
  31760. bottom: 103 / 1800
  31761. }
  31762. },
  31763. backDressed: {
  31764. height: math.unit(6, "feet"),
  31765. weight: math.unit(150, "lb"),
  31766. name: "Back (Dressed)",
  31767. image: {
  31768. source: "./media/characters/en/back-dressed.svg",
  31769. extra: 1700 / 1570,
  31770. bottom: 51 / 1751
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Macro",
  31777. height: math.unit(210, "feet"),
  31778. default: true
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31784. {
  31785. front: {
  31786. height: math.unit(6, "feet"),
  31787. weight: math.unit(150, "lb"),
  31788. name: "Front",
  31789. image: {
  31790. source: "./media/characters/haze-orris/front.svg",
  31791. extra: 3975 / 3525,
  31792. bottom: 137 / 4112
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Micro",
  31799. height: math.unit(150, "mm"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(6, "feet"),
  31809. weight: math.unit(150, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/casselene-yaro/front.svg",
  31813. extra: 4721 / 4541,
  31814. bottom: 82 / 4803
  31815. }
  31816. },
  31817. back: {
  31818. height: math.unit(6, "feet"),
  31819. weight: math.unit(150, "lb"),
  31820. name: "Back",
  31821. image: {
  31822. source: "./media/characters/casselene-yaro/back.svg",
  31823. extra: 4569 / 4377,
  31824. bottom: 69 / 4638
  31825. }
  31826. },
  31827. dressed: {
  31828. height: math.unit(6, "feet"),
  31829. weight: math.unit(150, "lb"),
  31830. name: "Dressed",
  31831. image: {
  31832. source: "./media/characters/casselene-yaro/dressed.svg",
  31833. extra: 4721 / 4541,
  31834. bottom: 82 / 4803
  31835. }
  31836. },
  31837. maw: {
  31838. height: math.unit(1, "feet"),
  31839. name: "Maw",
  31840. image: {
  31841. source: "./media/characters/casselene-yaro/maw.svg"
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Macro",
  31848. height: math.unit(190, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(10, "feet"),
  31858. weight: math.unit(15015, "lb"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/platine/front.svg",
  31862. extra: 1741/1650,
  31863. bottom: 84/1825
  31864. }
  31865. },
  31866. side: {
  31867. height: math.unit(10, "feet"),
  31868. weight: math.unit(15015, "lb"),
  31869. name: "Side",
  31870. image: {
  31871. source: "./media/characters/platine/side.svg",
  31872. extra: 1790/1705,
  31873. bottom: 29/1819
  31874. }
  31875. },
  31876. },
  31877. [
  31878. {
  31879. name: "Normal",
  31880. height: math.unit(10, "feet"),
  31881. default: true
  31882. },
  31883. {
  31884. name: "Macro",
  31885. height: math.unit(100, "feet")
  31886. },
  31887. {
  31888. name: "Megamacro",
  31889. height: math.unit(1000, "feet")
  31890. },
  31891. ]
  31892. ))
  31893. characterMakers.push(() => makeCharacter(
  31894. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31895. {
  31896. front: {
  31897. height: math.unit(15 + 5 / 12, "feet"),
  31898. weight: math.unit(4600, "lb"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/neapolitan-ananassa/front.svg",
  31902. extra: 2903 / 2736,
  31903. bottom: 0 / 2903
  31904. }
  31905. },
  31906. side: {
  31907. height: math.unit(15 + 5 / 12, "feet"),
  31908. weight: math.unit(4600, "lb"),
  31909. name: "Side",
  31910. image: {
  31911. source: "./media/characters/neapolitan-ananassa/side.svg",
  31912. extra: 2925 / 2719,
  31913. bottom: 0 / 2925
  31914. }
  31915. },
  31916. back: {
  31917. height: math.unit(15 + 5 / 12, "feet"),
  31918. weight: math.unit(4600, "lb"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/neapolitan-ananassa/back.svg",
  31922. extra: 2903 / 2736,
  31923. bottom: 0 / 2903
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(15 + 5 / 12, "feet"),
  31931. default: true
  31932. },
  31933. {
  31934. name: "Post-Millenium",
  31935. height: math.unit(35 + 5 / 12, "feet")
  31936. },
  31937. {
  31938. name: "Post-Era",
  31939. height: math.unit(450 + 5 / 12, "feet")
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31945. {
  31946. front: {
  31947. height: math.unit(300, "meters"),
  31948. weight: math.unit(125000, "tonnes"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/pazuzu/front.svg",
  31952. extra: 877 / 794,
  31953. bottom: 47 / 924
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Macro",
  31960. height: math.unit(300, "meters"),
  31961. default: true
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31967. {
  31968. side: {
  31969. height: math.unit(10 + 7 / 12, "feet"),
  31970. weight: math.unit(2.5, "tons"),
  31971. name: "Side",
  31972. image: {
  31973. source: "./media/characters/aasha/side.svg",
  31974. extra: 1345 / 1245,
  31975. bottom: 111 / 1456
  31976. }
  31977. },
  31978. back: {
  31979. height: math.unit(10 + 7 / 12, "feet"),
  31980. weight: math.unit(2.5, "tons"),
  31981. name: "Back",
  31982. image: {
  31983. source: "./media/characters/aasha/back.svg",
  31984. extra: 1133 / 1057,
  31985. bottom: 257 / 1390
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Normal",
  31992. height: math.unit(10 + 7 / 12, "feet"),
  31993. default: true
  31994. },
  31995. ]
  31996. ))
  31997. characterMakers.push(() => makeCharacter(
  31998. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31999. {
  32000. front: {
  32001. height: math.unit(6 + 3 / 12, "feet"),
  32002. name: "Front",
  32003. image: {
  32004. source: "./media/characters/nevan/front.svg",
  32005. extra: 704 / 704,
  32006. bottom: 28 / 732
  32007. }
  32008. },
  32009. back: {
  32010. height: math.unit(6 + 3 / 12, "feet"),
  32011. name: "Back",
  32012. image: {
  32013. source: "./media/characters/nevan/back.svg",
  32014. extra: 714 / 714,
  32015. bottom: 21 / 735
  32016. }
  32017. },
  32018. frontFlaccid: {
  32019. height: math.unit(6 + 3 / 12, "feet"),
  32020. name: "Front (Flaccid)",
  32021. image: {
  32022. source: "./media/characters/nevan/front-flaccid.svg",
  32023. extra: 704 / 704,
  32024. bottom: 28 / 732
  32025. }
  32026. },
  32027. frontErect: {
  32028. height: math.unit(6 + 3 / 12, "feet"),
  32029. name: "Front (Erect)",
  32030. image: {
  32031. source: "./media/characters/nevan/front-erect.svg",
  32032. extra: 704 / 704,
  32033. bottom: 28 / 732
  32034. }
  32035. },
  32036. backFlaccid: {
  32037. height: math.unit(6 + 3 / 12, "feet"),
  32038. name: "Back (Flaccid)",
  32039. image: {
  32040. source: "./media/characters/nevan/back-flaccid.svg",
  32041. extra: 714 / 714,
  32042. bottom: 21 / 735
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Normal",
  32049. height: math.unit(6 + 3 / 12, "feet"),
  32050. default: true
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(4, "feet"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/arhan/front.svg",
  32062. extra: 3368 / 3133,
  32063. bottom: 0 / 3368
  32064. }
  32065. },
  32066. side: {
  32067. height: math.unit(4, "feet"),
  32068. name: "Side",
  32069. image: {
  32070. source: "./media/characters/arhan/side.svg",
  32071. extra: 3347 / 3105,
  32072. bottom: 0 / 3347
  32073. }
  32074. },
  32075. tongue: {
  32076. height: math.unit(1.42, "feet"),
  32077. name: "Tongue",
  32078. image: {
  32079. source: "./media/characters/arhan/tongue.svg"
  32080. }
  32081. },
  32082. head: {
  32083. height: math.unit(0.85, "feet"),
  32084. name: "Head",
  32085. image: {
  32086. source: "./media/characters/arhan/head.svg"
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Normal",
  32093. height: math.unit(4, "feet"),
  32094. default: true
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(5 + 7.5 / 12, "feet"),
  32103. weight: math.unit(120, "lb"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/digi-duncan/front.svg",
  32107. extra: 330 / 326,
  32108. bottom: 16 / 346
  32109. }
  32110. },
  32111. side: {
  32112. height: math.unit(5 + 7.5 / 12, "feet"),
  32113. weight: math.unit(120, "lb"),
  32114. name: "Side",
  32115. image: {
  32116. source: "./media/characters/digi-duncan/side.svg",
  32117. extra: 341 / 337,
  32118. bottom: 1 / 342
  32119. }
  32120. },
  32121. back: {
  32122. height: math.unit(5 + 7.5 / 12, "feet"),
  32123. weight: math.unit(120, "lb"),
  32124. name: "Back",
  32125. image: {
  32126. source: "./media/characters/digi-duncan/back.svg",
  32127. extra: 330 / 326,
  32128. bottom: 12 / 342
  32129. }
  32130. },
  32131. },
  32132. [
  32133. {
  32134. name: "Speck",
  32135. height: math.unit(0.25, "mm")
  32136. },
  32137. {
  32138. name: "Micro",
  32139. height: math.unit(5, "mm")
  32140. },
  32141. {
  32142. name: "Tiny",
  32143. height: math.unit(0.5, "inches"),
  32144. default: true
  32145. },
  32146. {
  32147. name: "Human",
  32148. height: math.unit(5 + 7.5 / 12, "feet")
  32149. },
  32150. {
  32151. name: "Minigiant",
  32152. height: math.unit(8 + 5.25, "feet")
  32153. },
  32154. {
  32155. name: "Giant",
  32156. height: math.unit(2000, "feet")
  32157. },
  32158. {
  32159. name: "Mega",
  32160. height: math.unit(371.1, "miles")
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32166. {
  32167. front: {
  32168. height: math.unit(2, "meters"),
  32169. weight: math.unit(350, "kg"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32173. extra: 898 / 838,
  32174. bottom: 9 / 907
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Micro",
  32181. height: math.unit(8, "meters")
  32182. },
  32183. {
  32184. name: "Normal",
  32185. height: math.unit(50, "meters"),
  32186. default: true
  32187. },
  32188. {
  32189. name: "Macro",
  32190. height: math.unit(500, "meters")
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32196. {
  32197. front: {
  32198. height: math.unit(6 + 6 / 12, "feet"),
  32199. name: "Front",
  32200. image: {
  32201. source: "./media/characters/khardesh/front.svg",
  32202. extra: 1788/1596,
  32203. bottom: 66/1854
  32204. }
  32205. },
  32206. back: {
  32207. height: math.unit(6 + 6 / 12, "feet"),
  32208. name: "Back",
  32209. image: {
  32210. source: "./media/characters/khardesh/back.svg",
  32211. extra: 1781/1584,
  32212. bottom: 68/1849
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(6 + 6 / 12, "feet"),
  32220. default: true
  32221. },
  32222. {
  32223. name: "Normal+",
  32224. height: math.unit(4, "meters")
  32225. },
  32226. {
  32227. name: "Macro",
  32228. height: math.unit(50, "meters")
  32229. },
  32230. {
  32231. name: "Macro+",
  32232. height: math.unit(100, "meters")
  32233. },
  32234. {
  32235. name: "Megamacro",
  32236. height: math.unit(20, "km")
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32242. {
  32243. front: {
  32244. height: math.unit(6, "feet"),
  32245. weight: math.unit(150, "lb"),
  32246. name: "Front",
  32247. image: {
  32248. source: "./media/characters/kosho/front.svg",
  32249. extra: 1847 / 1847,
  32250. bottom: 86 / 1933
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Second-stage micro",
  32257. height: math.unit(0.5, "inches")
  32258. },
  32259. {
  32260. name: "First-stage micro",
  32261. height: math.unit(6, "inches")
  32262. },
  32263. {
  32264. name: "Normal",
  32265. height: math.unit(6, "feet"),
  32266. default: true
  32267. },
  32268. {
  32269. name: "First-stage macro",
  32270. height: math.unit(72, "feet")
  32271. },
  32272. {
  32273. name: "Second-stage macro",
  32274. height: math.unit(864, "feet")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32280. {
  32281. normal: {
  32282. height: math.unit(4 + 6 / 12, "feet"),
  32283. name: "Normal",
  32284. image: {
  32285. source: "./media/characters/hydra/normal.svg",
  32286. extra: 2833 / 2634,
  32287. bottom: 68 / 2901
  32288. }
  32289. },
  32290. smol: {
  32291. height: math.unit(0.705, "inches"),
  32292. name: "Smol",
  32293. image: {
  32294. source: "./media/characters/hydra/smol.svg",
  32295. extra: 2715 / 2540,
  32296. bottom: 0 / 2715
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(4 + 6 / 12, "feet"),
  32304. default: true
  32305. }
  32306. ]
  32307. ))
  32308. characterMakers.push(() => makeCharacter(
  32309. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32310. {
  32311. front: {
  32312. height: math.unit(0.6, "cm"),
  32313. name: "Front",
  32314. image: {
  32315. source: "./media/characters/daz/front.svg",
  32316. extra: 1682 / 1164,
  32317. bottom: 42 / 1724
  32318. }
  32319. },
  32320. },
  32321. [
  32322. {
  32323. name: "Normal",
  32324. height: math.unit(0.6, "cm"),
  32325. default: true
  32326. },
  32327. ]
  32328. ))
  32329. characterMakers.push(() => makeCharacter(
  32330. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32331. {
  32332. front: {
  32333. height: math.unit(6, "feet"),
  32334. weight: math.unit(235, "lb"),
  32335. name: "Front",
  32336. image: {
  32337. source: "./media/characters/theo-pangolin/front.svg",
  32338. extra: 1996 / 1969,
  32339. bottom: 115 / 2111
  32340. }
  32341. },
  32342. back: {
  32343. height: math.unit(6, "feet"),
  32344. weight: math.unit(235, "lb"),
  32345. name: "Back",
  32346. image: {
  32347. source: "./media/characters/theo-pangolin/back.svg",
  32348. extra: 1979 / 1979,
  32349. bottom: 40 / 2019
  32350. }
  32351. },
  32352. feral: {
  32353. height: math.unit(2, "feet"),
  32354. weight: math.unit(30, "lb"),
  32355. name: "Feral",
  32356. image: {
  32357. source: "./media/characters/theo-pangolin/feral.svg",
  32358. extra: 803 / 791,
  32359. bottom: 181 / 984
  32360. }
  32361. },
  32362. footFive: {
  32363. height: math.unit(1.43, "feet"),
  32364. name: "Foot (Five Toes)",
  32365. image: {
  32366. source: "./media/characters/theo-pangolin/foot-five.svg"
  32367. }
  32368. },
  32369. footFour: {
  32370. height: math.unit(1.43, "feet"),
  32371. name: "Foot (Four Toes)",
  32372. image: {
  32373. source: "./media/characters/theo-pangolin/foot-four.svg"
  32374. }
  32375. },
  32376. handFour: {
  32377. height: math.unit(0.81, "feet"),
  32378. name: "Hand (Four Fingers)",
  32379. image: {
  32380. source: "./media/characters/theo-pangolin/hand-four.svg"
  32381. }
  32382. },
  32383. handThree: {
  32384. height: math.unit(0.81, "feet"),
  32385. name: "Hand (Three Fingers)",
  32386. image: {
  32387. source: "./media/characters/theo-pangolin/hand-three.svg"
  32388. }
  32389. },
  32390. headFront: {
  32391. height: math.unit(1.37, "feet"),
  32392. name: "Head (Front)",
  32393. image: {
  32394. source: "./media/characters/theo-pangolin/head-front.svg"
  32395. }
  32396. },
  32397. headSide: {
  32398. height: math.unit(1.43, "feet"),
  32399. name: "Head (Side)",
  32400. image: {
  32401. source: "./media/characters/theo-pangolin/head-side.svg"
  32402. }
  32403. },
  32404. tongue: {
  32405. height: math.unit(2.29, "feet"),
  32406. name: "Tongue",
  32407. image: {
  32408. source: "./media/characters/theo-pangolin/tongue.svg"
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Normal",
  32415. height: math.unit(6, "feet")
  32416. },
  32417. {
  32418. name: "Macro",
  32419. height: math.unit(400, "feet"),
  32420. default: true
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32426. {
  32427. front: {
  32428. height: math.unit(6, "inches"),
  32429. weight: math.unit(0.036, "kg"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/renée/front.svg",
  32433. extra: 900 / 886,
  32434. bottom: 8 / 908
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Nano",
  32441. height: math.unit(1, "nm")
  32442. },
  32443. {
  32444. name: "Micro",
  32445. height: math.unit(1, "mm")
  32446. },
  32447. {
  32448. name: "Normal",
  32449. height: math.unit(6, "inches")
  32450. },
  32451. {
  32452. name: "Macro",
  32453. height: math.unit(2000, "feet"),
  32454. default: true
  32455. },
  32456. {
  32457. name: "Megamacro",
  32458. height: math.unit(2, "km")
  32459. },
  32460. {
  32461. name: "Gigamacro",
  32462. height: math.unit(2000, "km")
  32463. },
  32464. {
  32465. name: "Teramacro",
  32466. height: math.unit(250000, "km")
  32467. },
  32468. ]
  32469. ))
  32470. characterMakers.push(() => makeCharacter(
  32471. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32472. {
  32473. front: {
  32474. height: math.unit(4, "meters"),
  32475. weight: math.unit(150, "kg"),
  32476. name: "Front",
  32477. image: {
  32478. source: "./media/characters/caledvwlch/front.svg",
  32479. extra: 1757/1537,
  32480. bottom: 31/1788
  32481. }
  32482. },
  32483. side: {
  32484. height: math.unit(4, "meters"),
  32485. weight: math.unit(150, "kg"),
  32486. name: "Side",
  32487. image: {
  32488. source: "./media/characters/caledvwlch/side.svg",
  32489. extra: 1605 / 1536,
  32490. bottom: 31 / 1636
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(4, "meters"),
  32495. weight: math.unit(150, "kg"),
  32496. name: "Back",
  32497. image: {
  32498. source: "./media/characters/caledvwlch/back.svg",
  32499. extra: 1635 / 1565,
  32500. bottom: 27 / 1662
  32501. }
  32502. },
  32503. },
  32504. [
  32505. {
  32506. name: "\"Incognito\"",
  32507. height: math.unit(4, "meters")
  32508. },
  32509. {
  32510. name: "Small rampage",
  32511. height: math.unit(600, "meters")
  32512. },
  32513. {
  32514. name: "Mega",
  32515. height: math.unit(30, "km")
  32516. },
  32517. {
  32518. name: "Home-size",
  32519. height: math.unit(50, "km"),
  32520. default: true
  32521. },
  32522. {
  32523. name: "Giga",
  32524. height: math.unit(300, "km")
  32525. },
  32526. {
  32527. name: "Lounging",
  32528. height: math.unit(11000, "km")
  32529. },
  32530. {
  32531. name: "Planet snacking",
  32532. height: math.unit(2000000, "km")
  32533. },
  32534. ]
  32535. ))
  32536. characterMakers.push(() => makeCharacter(
  32537. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32538. {
  32539. front: {
  32540. height: math.unit(6, "feet"),
  32541. weight: math.unit(215, "lb"),
  32542. name: "Front",
  32543. image: {
  32544. source: "./media/characters/sapphire-svell/front.svg",
  32545. extra: 495 / 455,
  32546. bottom: 20 / 515
  32547. }
  32548. },
  32549. back: {
  32550. height: math.unit(6, "feet"),
  32551. weight: math.unit(216, "lb"),
  32552. name: "Back",
  32553. image: {
  32554. source: "./media/characters/sapphire-svell/back.svg",
  32555. extra: 497 / 477,
  32556. bottom: 7 / 504
  32557. }
  32558. },
  32559. maw: {
  32560. height: math.unit(1.57, "feet"),
  32561. name: "Maw",
  32562. image: {
  32563. source: "./media/characters/sapphire-svell/maw.svg"
  32564. }
  32565. },
  32566. foot: {
  32567. height: math.unit(1.07, "feet"),
  32568. name: "Foot",
  32569. image: {
  32570. source: "./media/characters/sapphire-svell/foot.svg"
  32571. }
  32572. },
  32573. toering: {
  32574. height: math.unit(1.7, "inch"),
  32575. name: "Toering",
  32576. image: {
  32577. source: "./media/characters/sapphire-svell/toering.svg"
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "Normal",
  32584. height: math.unit(300, "feet"),
  32585. default: true
  32586. },
  32587. {
  32588. name: "Augmented",
  32589. height: math.unit(1250, "feet")
  32590. },
  32591. {
  32592. name: "Unleashed",
  32593. height: math.unit(3000, "feet")
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32599. {
  32600. side: {
  32601. height: math.unit(2 + 3 / 12, "feet"),
  32602. weight: math.unit(110, "lb"),
  32603. name: "Side",
  32604. image: {
  32605. source: "./media/characters/glitch-flux/side.svg",
  32606. extra: 997 / 805,
  32607. bottom: 20 / 1017
  32608. }
  32609. },
  32610. },
  32611. [
  32612. {
  32613. name: "Normal",
  32614. height: math.unit(2 + 3 / 12, "feet"),
  32615. default: true
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32621. {
  32622. front: {
  32623. height: math.unit(4, "meters"),
  32624. name: "Front",
  32625. image: {
  32626. source: "./media/characters/mid/front.svg",
  32627. extra: 507 / 476,
  32628. bottom: 17 / 524
  32629. }
  32630. },
  32631. back: {
  32632. height: math.unit(4, "meters"),
  32633. name: "Back",
  32634. image: {
  32635. source: "./media/characters/mid/back.svg",
  32636. extra: 519 / 487,
  32637. bottom: 7 / 526
  32638. }
  32639. },
  32640. stuck: {
  32641. height: math.unit(2.2, "meters"),
  32642. name: "Stuck",
  32643. image: {
  32644. source: "./media/characters/mid/stuck.svg",
  32645. extra: 1951 / 1869,
  32646. bottom: 88 / 2039
  32647. }
  32648. }
  32649. },
  32650. [
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(4, "meters"),
  32654. default: true
  32655. },
  32656. {
  32657. name: "Big",
  32658. height: math.unit(10, "meters")
  32659. },
  32660. {
  32661. name: "Macro",
  32662. height: math.unit(800, "meters")
  32663. },
  32664. {
  32665. name: "Megamacro",
  32666. height: math.unit(100, "km")
  32667. },
  32668. {
  32669. name: "Overgrown",
  32670. height: math.unit(1, "parsec")
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32676. {
  32677. front: {
  32678. height: math.unit(2.5, "meters"),
  32679. weight: math.unit(225, "kg"),
  32680. name: "Front",
  32681. image: {
  32682. source: "./media/characters/iris/front.svg",
  32683. extra: 3348 / 3251,
  32684. bottom: 205 / 3553
  32685. }
  32686. },
  32687. maw: {
  32688. height: math.unit(0.56, "meter"),
  32689. name: "Maw",
  32690. image: {
  32691. source: "./media/characters/iris/maw.svg"
  32692. }
  32693. },
  32694. },
  32695. [
  32696. {
  32697. name: "Mewter cat",
  32698. height: math.unit(1.2, "meters")
  32699. },
  32700. {
  32701. name: "Normal",
  32702. height: math.unit(2.5, "meters"),
  32703. default: true
  32704. },
  32705. {
  32706. name: "Minimacro",
  32707. height: math.unit(18, "feet")
  32708. },
  32709. {
  32710. name: "Macro",
  32711. height: math.unit(140, "feet")
  32712. },
  32713. {
  32714. name: "Macro+",
  32715. height: math.unit(180, "meters")
  32716. },
  32717. {
  32718. name: "Megamacro",
  32719. height: math.unit(2746, "meters")
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(6, "feet"),
  32728. weight: math.unit(135, "lb"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/axel/front.svg",
  32732. extra: 908 / 908,
  32733. bottom: 58 / 966
  32734. }
  32735. },
  32736. side: {
  32737. height: math.unit(6, "feet"),
  32738. weight: math.unit(135, "lb"),
  32739. name: "Side",
  32740. image: {
  32741. source: "./media/characters/axel/side.svg",
  32742. extra: 958 / 958,
  32743. bottom: 11 / 969
  32744. }
  32745. },
  32746. back: {
  32747. height: math.unit(6, "feet"),
  32748. weight: math.unit(135, "lb"),
  32749. name: "Back",
  32750. image: {
  32751. source: "./media/characters/axel/back.svg",
  32752. extra: 887 / 887,
  32753. bottom: 34 / 921
  32754. }
  32755. },
  32756. head: {
  32757. height: math.unit(1.07, "feet"),
  32758. name: "Head",
  32759. image: {
  32760. source: "./media/characters/axel/head.svg"
  32761. }
  32762. },
  32763. beak: {
  32764. height: math.unit(1.4, "feet"),
  32765. name: "Beak",
  32766. image: {
  32767. source: "./media/characters/axel/beak.svg"
  32768. }
  32769. },
  32770. beakSide: {
  32771. height: math.unit(1.4, "feet"),
  32772. name: "Beak Side",
  32773. image: {
  32774. source: "./media/characters/axel/beak-side.svg"
  32775. }
  32776. },
  32777. sheath: {
  32778. height: math.unit(0.5, "feet"),
  32779. name: "Sheath",
  32780. image: {
  32781. source: "./media/characters/axel/sheath.svg"
  32782. }
  32783. },
  32784. dick: {
  32785. height: math.unit(0.98, "feet"),
  32786. name: "Dick",
  32787. image: {
  32788. source: "./media/characters/axel/dick.svg"
  32789. }
  32790. },
  32791. },
  32792. [
  32793. {
  32794. name: "Macro",
  32795. height: math.unit(68, "meters"),
  32796. default: true
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(3.5, "meters"),
  32805. weight: math.unit(1200, "kg"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/joanna/front.svg",
  32809. extra: 1596 / 1488,
  32810. bottom: 29 / 1625
  32811. }
  32812. },
  32813. back: {
  32814. height: math.unit(3.5, "meters"),
  32815. weight: math.unit(1200, "kg"),
  32816. name: "Back",
  32817. image: {
  32818. source: "./media/characters/joanna/back.svg",
  32819. extra: 1594 / 1495,
  32820. bottom: 26 / 1620
  32821. }
  32822. },
  32823. frontShorts: {
  32824. height: math.unit(3.5, "meters"),
  32825. weight: math.unit(1200, "kg"),
  32826. name: "Front (Shorts)",
  32827. image: {
  32828. source: "./media/characters/joanna/front-shorts.svg",
  32829. extra: 1596 / 1488,
  32830. bottom: 29 / 1625
  32831. }
  32832. },
  32833. frontBiker: {
  32834. height: math.unit(3.5, "meters"),
  32835. weight: math.unit(1200, "kg"),
  32836. name: "Front (Biker)",
  32837. image: {
  32838. source: "./media/characters/joanna/front-biker.svg",
  32839. extra: 1596 / 1488,
  32840. bottom: 29 / 1625
  32841. }
  32842. },
  32843. backBiker: {
  32844. height: math.unit(3.5, "meters"),
  32845. weight: math.unit(1200, "kg"),
  32846. name: "Back (Biker)",
  32847. image: {
  32848. source: "./media/characters/joanna/back-biker.svg",
  32849. extra: 1594 / 1495,
  32850. bottom: 88 / 1682
  32851. }
  32852. },
  32853. bikeLeft: {
  32854. height: math.unit(2.4, "meters"),
  32855. weight: math.unit(1600, "kg"),
  32856. name: "Bike (Left)",
  32857. image: {
  32858. source: "./media/characters/joanna/bike-left.svg",
  32859. extra: 720 / 720,
  32860. bottom: 8 / 728
  32861. }
  32862. },
  32863. bikeRight: {
  32864. height: math.unit(2.4, "meters"),
  32865. weight: math.unit(1600, "kg"),
  32866. name: "Bike (Right)",
  32867. image: {
  32868. source: "./media/characters/joanna/bike-right.svg",
  32869. extra: 720 / 720,
  32870. bottom: 8 / 728
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Incognito",
  32877. height: math.unit(3.5, "meters")
  32878. },
  32879. {
  32880. name: "Casual Big",
  32881. height: math.unit(200, "meters")
  32882. },
  32883. {
  32884. name: "Macro",
  32885. height: math.unit(600, "meters")
  32886. },
  32887. {
  32888. name: "Original",
  32889. height: math.unit(20, "km"),
  32890. default: true
  32891. },
  32892. {
  32893. name: "Giga",
  32894. height: math.unit(400, "km")
  32895. },
  32896. {
  32897. name: "Lounging",
  32898. height: math.unit(1500, "km")
  32899. },
  32900. {
  32901. name: "Planetary",
  32902. height: math.unit(200000, "km")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(6, "feet"),
  32911. weight: math.unit(150, "lb"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/hugo-sigil/front.svg",
  32915. extra: 522 / 500,
  32916. bottom: 2 / 524
  32917. }
  32918. },
  32919. back: {
  32920. height: math.unit(6, "feet"),
  32921. weight: math.unit(150, "lb"),
  32922. name: "Back",
  32923. image: {
  32924. source: "./media/characters/hugo-sigil/back.svg",
  32925. extra: 519 / 495,
  32926. bottom: 5 / 524
  32927. }
  32928. },
  32929. maw: {
  32930. height: math.unit(1.4, "feet"),
  32931. weight: math.unit(150, "lb"),
  32932. name: "Maw",
  32933. image: {
  32934. source: "./media/characters/hugo-sigil/maw.svg"
  32935. }
  32936. },
  32937. feet: {
  32938. height: math.unit(1.56, "feet"),
  32939. weight: math.unit(150, "lb"),
  32940. name: "Feet",
  32941. image: {
  32942. source: "./media/characters/hugo-sigil/feet.svg",
  32943. extra: 177 / 177,
  32944. bottom: 12 / 189
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(6, "feet")
  32952. },
  32953. {
  32954. name: "Macro",
  32955. height: math.unit(200, "feet"),
  32956. default: true
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32962. {
  32963. front: {
  32964. height: math.unit(6, "feet"),
  32965. weight: math.unit(150, "lb"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/peri/front.svg",
  32969. extra: 2354 / 2233,
  32970. bottom: 49 / 2403
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Really Small",
  32977. height: math.unit(1, "nm")
  32978. },
  32979. {
  32980. name: "Micro",
  32981. height: math.unit(4, "inches")
  32982. },
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(7, "inches"),
  32986. default: true
  32987. },
  32988. {
  32989. name: "Macro",
  32990. height: math.unit(400, "feet")
  32991. },
  32992. {
  32993. name: "Megamacro",
  32994. height: math.unit(100, "miles")
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33000. {
  33001. frontSlim: {
  33002. height: math.unit(7, "feet"),
  33003. name: "Front (Slim)",
  33004. image: {
  33005. source: "./media/characters/issilora/front-slim.svg",
  33006. extra: 529 / 449,
  33007. bottom: 53 / 582
  33008. }
  33009. },
  33010. sideSlim: {
  33011. height: math.unit(7, "feet"),
  33012. name: "Side (Slim)",
  33013. image: {
  33014. source: "./media/characters/issilora/side-slim.svg",
  33015. extra: 570 / 480,
  33016. bottom: 30 / 600
  33017. }
  33018. },
  33019. backSlim: {
  33020. height: math.unit(7, "feet"),
  33021. name: "Back (Slim)",
  33022. image: {
  33023. source: "./media/characters/issilora/back-slim.svg",
  33024. extra: 537 / 455,
  33025. bottom: 46 / 583
  33026. }
  33027. },
  33028. frontBuff: {
  33029. height: math.unit(7, "feet"),
  33030. name: "Front (Buff)",
  33031. image: {
  33032. source: "./media/characters/issilora/front-buff.svg",
  33033. extra: 2310 / 2035,
  33034. bottom: 335 / 2645
  33035. }
  33036. },
  33037. head: {
  33038. height: math.unit(1.94, "feet"),
  33039. name: "Head",
  33040. image: {
  33041. source: "./media/characters/issilora/head.svg"
  33042. }
  33043. },
  33044. },
  33045. [
  33046. {
  33047. name: "Minimum",
  33048. height: math.unit(7, "feet")
  33049. },
  33050. {
  33051. name: "Comfortable",
  33052. height: math.unit(17, "feet")
  33053. },
  33054. {
  33055. name: "Fun Size",
  33056. height: math.unit(47, "feet")
  33057. },
  33058. {
  33059. name: "Natural Macro",
  33060. height: math.unit(137, "feet"),
  33061. default: true
  33062. },
  33063. {
  33064. name: "Maximum Kaiju",
  33065. height: math.unit(397, "feet")
  33066. },
  33067. ]
  33068. ))
  33069. characterMakers.push(() => makeCharacter(
  33070. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33071. {
  33072. front: {
  33073. height: math.unit(50 + 9/12, "feet"),
  33074. weight: math.unit(32.8, "tons"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/irb'iiritaahn/front.svg",
  33078. extra: 1878/1826,
  33079. bottom: 326/2204
  33080. }
  33081. },
  33082. back: {
  33083. height: math.unit(50 + 9/12, "feet"),
  33084. weight: math.unit(32.8, "tons"),
  33085. name: "Back",
  33086. image: {
  33087. source: "./media/characters/irb'iiritaahn/back.svg",
  33088. extra: 2052/2018,
  33089. bottom: 152/2204
  33090. }
  33091. },
  33092. head: {
  33093. height: math.unit(12.86, "feet"),
  33094. name: "Head",
  33095. image: {
  33096. source: "./media/characters/irb'iiritaahn/head.svg"
  33097. }
  33098. },
  33099. maw: {
  33100. height: math.unit(9.66, "feet"),
  33101. name: "Maw",
  33102. image: {
  33103. source: "./media/characters/irb'iiritaahn/maw.svg"
  33104. }
  33105. },
  33106. frontDick: {
  33107. height: math.unit(8.78461, "feet"),
  33108. name: "Front Dick",
  33109. image: {
  33110. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33111. }
  33112. },
  33113. rearDick: {
  33114. height: math.unit(8.78461, "feet"),
  33115. name: "Rear Dick",
  33116. image: {
  33117. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33118. }
  33119. },
  33120. rearDickUnfolded: {
  33121. height: math.unit(8.78, "feet"),
  33122. name: "Rear Dick (Unfolded)",
  33123. image: {
  33124. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33125. }
  33126. },
  33127. wings: {
  33128. height: math.unit(43, "feet"),
  33129. name: "Wings",
  33130. image: {
  33131. source: "./media/characters/irb'iiritaahn/wings.svg"
  33132. }
  33133. },
  33134. },
  33135. [
  33136. {
  33137. name: "Macro",
  33138. height: math.unit(50 + 9/12, "feet"),
  33139. default: true
  33140. },
  33141. ]
  33142. ))
  33143. characterMakers.push(() => makeCharacter(
  33144. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33145. {
  33146. front: {
  33147. height: math.unit(205, "cm"),
  33148. weight: math.unit(102, "kg"),
  33149. name: "Front",
  33150. image: {
  33151. source: "./media/characters/irbisgreif/front.svg",
  33152. extra: 785/706,
  33153. bottom: 13/798
  33154. }
  33155. },
  33156. back: {
  33157. height: math.unit(205, "cm"),
  33158. weight: math.unit(102, "kg"),
  33159. name: "Back",
  33160. image: {
  33161. source: "./media/characters/irbisgreif/back.svg",
  33162. extra: 713/701,
  33163. bottom: 26/739
  33164. }
  33165. },
  33166. frontDressed: {
  33167. height: math.unit(216, "cm"),
  33168. weight: math.unit(102, "kg"),
  33169. name: "Front-dressed",
  33170. image: {
  33171. source: "./media/characters/irbisgreif/front-dressed.svg",
  33172. extra: 902/776,
  33173. bottom: 14/916
  33174. }
  33175. },
  33176. sideDressed: {
  33177. height: math.unit(195, "cm"),
  33178. weight: math.unit(102, "kg"),
  33179. name: "Side-dressed",
  33180. image: {
  33181. source: "./media/characters/irbisgreif/side-dressed.svg",
  33182. extra: 788/688,
  33183. bottom: 21/809
  33184. }
  33185. },
  33186. backDressed: {
  33187. height: math.unit(216, "cm"),
  33188. weight: math.unit(102, "kg"),
  33189. name: "Back-dressed",
  33190. image: {
  33191. source: "./media/characters/irbisgreif/back-dressed.svg",
  33192. extra: 901/783,
  33193. bottom: 10/911
  33194. }
  33195. },
  33196. dick: {
  33197. height: math.unit(0.49, "feet"),
  33198. name: "Dick",
  33199. image: {
  33200. source: "./media/characters/irbisgreif/dick.svg"
  33201. }
  33202. },
  33203. wingTop: {
  33204. height: math.unit(1.93 , "feet"),
  33205. name: "Wing-top",
  33206. image: {
  33207. source: "./media/characters/irbisgreif/wing-top.svg"
  33208. }
  33209. },
  33210. wingBottom: {
  33211. height: math.unit(1.93 , "feet"),
  33212. name: "Wing-bottom",
  33213. image: {
  33214. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33215. }
  33216. },
  33217. },
  33218. [
  33219. {
  33220. name: "Normal",
  33221. height: math.unit(216, "cm"),
  33222. default: true
  33223. },
  33224. ]
  33225. ))
  33226. characterMakers.push(() => makeCharacter(
  33227. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33228. {
  33229. front: {
  33230. height: math.unit(6, "feet"),
  33231. weight: math.unit(150, "lb"),
  33232. name: "Front",
  33233. image: {
  33234. source: "./media/characters/pride/front.svg",
  33235. extra: 1299/1230,
  33236. bottom: 18/1317
  33237. }
  33238. },
  33239. },
  33240. [
  33241. {
  33242. name: "Normal",
  33243. height: math.unit(7, "feet")
  33244. },
  33245. {
  33246. name: "Mini-macro",
  33247. height: math.unit(11, "feet")
  33248. },
  33249. {
  33250. name: "Macro",
  33251. height: math.unit(15, "meters"),
  33252. default: true
  33253. },
  33254. {
  33255. name: "Macro+",
  33256. height: math.unit(40, "meters")
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33262. {
  33263. front: {
  33264. height: math.unit(4 + 2 / 12, "feet"),
  33265. weight: math.unit(95, "lb"),
  33266. name: "Front",
  33267. image: {
  33268. source: "./media/characters/vaelophis-nyx/front.svg",
  33269. extra: 2532/2330,
  33270. bottom: 0/2532
  33271. }
  33272. },
  33273. back: {
  33274. height: math.unit(4 + 2 / 12, "feet"),
  33275. weight: math.unit(95, "lb"),
  33276. name: "Back",
  33277. image: {
  33278. source: "./media/characters/vaelophis-nyx/back.svg",
  33279. extra: 2484/2361,
  33280. bottom: 0/2484
  33281. }
  33282. },
  33283. feralSide: {
  33284. height: math.unit(2 + 1/12, "feet"),
  33285. weight: math.unit(20, "lb"),
  33286. name: "Feral (Side)",
  33287. image: {
  33288. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33289. extra: 1721/1581,
  33290. bottom: 70/1791
  33291. }
  33292. },
  33293. feralLazing: {
  33294. height: math.unit(1.08, "feet"),
  33295. weight: math.unit(20, "lb"),
  33296. name: "Feral (Lazing)",
  33297. image: {
  33298. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33299. extra: 822/822,
  33300. bottom: 248/1070
  33301. }
  33302. },
  33303. ear: {
  33304. height: math.unit(0.416, "feet"),
  33305. name: "Ear",
  33306. image: {
  33307. source: "./media/characters/vaelophis-nyx/ear.svg"
  33308. }
  33309. },
  33310. eye: {
  33311. height: math.unit(0.0748, "feet"),
  33312. name: "Eye",
  33313. image: {
  33314. source: "./media/characters/vaelophis-nyx/eye.svg"
  33315. }
  33316. },
  33317. mouth: {
  33318. height: math.unit(0.378, "feet"),
  33319. name: "Mouth",
  33320. image: {
  33321. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33322. }
  33323. },
  33324. spade: {
  33325. height: math.unit(0.55, "feet"),
  33326. name: "Spade",
  33327. image: {
  33328. source: "./media/characters/vaelophis-nyx/spade.svg"
  33329. }
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Normal",
  33335. height: math.unit(4 + 2/12, "feet"),
  33336. default: true
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33342. {
  33343. front: {
  33344. height: math.unit(7, "feet"),
  33345. weight: math.unit(231, "lb"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/flux/front.svg",
  33349. extra: 919/871,
  33350. bottom: 0/919
  33351. }
  33352. },
  33353. back: {
  33354. height: math.unit(7, "feet"),
  33355. weight: math.unit(231, "lb"),
  33356. name: "Back",
  33357. image: {
  33358. source: "./media/characters/flux/back.svg",
  33359. extra: 1040/992,
  33360. bottom: 0/1040
  33361. }
  33362. },
  33363. frontDressed: {
  33364. height: math.unit(7, "feet"),
  33365. weight: math.unit(231, "lb"),
  33366. name: "Front (Dressed)",
  33367. image: {
  33368. source: "./media/characters/flux/front-dressed.svg",
  33369. extra: 919/871,
  33370. bottom: 0/919
  33371. }
  33372. },
  33373. feralSide: {
  33374. height: math.unit(5, "feet"),
  33375. weight: math.unit(150, "lb"),
  33376. name: "Feral (Side)",
  33377. image: {
  33378. source: "./media/characters/flux/feral-side.svg",
  33379. extra: 598/528,
  33380. bottom: 28/626
  33381. }
  33382. },
  33383. head: {
  33384. height: math.unit(1.585, "feet"),
  33385. name: "Head",
  33386. image: {
  33387. source: "./media/characters/flux/head.svg"
  33388. }
  33389. },
  33390. headSide: {
  33391. height: math.unit(1.74, "feet"),
  33392. name: "Head (Side)",
  33393. image: {
  33394. source: "./media/characters/flux/head-side.svg"
  33395. }
  33396. },
  33397. headSideFire: {
  33398. height: math.unit(1.76, "feet"),
  33399. name: "Head (Side, Fire)",
  33400. image: {
  33401. source: "./media/characters/flux/head-side-fire.svg"
  33402. }
  33403. },
  33404. },
  33405. [
  33406. {
  33407. name: "Normal",
  33408. height: math.unit(7, "feet"),
  33409. default: true
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33415. {
  33416. front: {
  33417. height: math.unit(9, "feet"),
  33418. weight: math.unit(1012, "lb"),
  33419. name: "Front",
  33420. image: {
  33421. source: "./media/characters/ulfra-lupae/front.svg",
  33422. extra: 1083/1011,
  33423. bottom: 67/1150
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Micro",
  33430. height: math.unit(6, "inches")
  33431. },
  33432. {
  33433. name: "Socializing",
  33434. height: math.unit(6 + 5/12, "feet")
  33435. },
  33436. {
  33437. name: "Normal",
  33438. height: math.unit(9, "feet"),
  33439. default: true
  33440. },
  33441. {
  33442. name: "Macro",
  33443. height: math.unit(150, "feet")
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33449. {
  33450. front: {
  33451. height: math.unit(5 + 2/12, "feet"),
  33452. weight: math.unit(120, "lb"),
  33453. name: "Front",
  33454. image: {
  33455. source: "./media/characters/timber/front.svg",
  33456. extra: 2814/2705,
  33457. bottom: 181/2995
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(5 + 2/12, "feet"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(9, "feet"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/nicki/front.svg",
  33477. extra: 1240/990,
  33478. bottom: 45/1285
  33479. },
  33480. form: "anthro",
  33481. default: true
  33482. },
  33483. side: {
  33484. height: math.unit(9, "feet"),
  33485. name: "Side",
  33486. image: {
  33487. source: "./media/characters/nicki/side.svg",
  33488. extra: 1047/973,
  33489. bottom: 61/1108
  33490. },
  33491. form: "anthro"
  33492. },
  33493. back: {
  33494. height: math.unit(9, "feet"),
  33495. name: "Back",
  33496. image: {
  33497. source: "./media/characters/nicki/back.svg",
  33498. extra: 1006/965,
  33499. bottom: 39/1045
  33500. },
  33501. form: "anthro"
  33502. },
  33503. taur: {
  33504. height: math.unit(15, "feet"),
  33505. name: "Taur",
  33506. image: {
  33507. source: "./media/characters/nicki/taur.svg",
  33508. extra: 1592/1347,
  33509. bottom: 0/1592
  33510. },
  33511. form: "taur",
  33512. default: true
  33513. },
  33514. },
  33515. [
  33516. {
  33517. name: "Normal",
  33518. height: math.unit(9, "feet"),
  33519. form: "anthro",
  33520. default: true
  33521. },
  33522. {
  33523. name: "Normal",
  33524. height: math.unit(15, "feet"),
  33525. form: "taur",
  33526. default: true
  33527. }
  33528. ],
  33529. {
  33530. "anthro": {
  33531. name: "Anthro",
  33532. default: true
  33533. },
  33534. "taur": {
  33535. name: "Taur"
  33536. }
  33537. }
  33538. ))
  33539. characterMakers.push(() => makeCharacter(
  33540. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33541. {
  33542. front: {
  33543. height: math.unit(7 + 10/12, "feet"),
  33544. weight: math.unit(3.5, "tons"),
  33545. name: "Front",
  33546. image: {
  33547. source: "./media/characters/lee/front.svg",
  33548. extra: 1773/1615,
  33549. bottom: 86/1859
  33550. }
  33551. },
  33552. hand: {
  33553. height: math.unit(1.78, "feet"),
  33554. name: "Hand",
  33555. image: {
  33556. source: "./media/characters/lee/hand.svg"
  33557. }
  33558. },
  33559. maw: {
  33560. height: math.unit(1.18, "feet"),
  33561. name: "Maw",
  33562. image: {
  33563. source: "./media/characters/lee/maw.svg"
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(7 + 10/12, "feet"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33577. {
  33578. front: {
  33579. height: math.unit(9, "feet"),
  33580. name: "Front",
  33581. image: {
  33582. source: "./media/characters/guti/front.svg",
  33583. extra: 4551/4355,
  33584. bottom: 123/4674
  33585. }
  33586. },
  33587. tongue: {
  33588. height: math.unit(1, "feet"),
  33589. name: "Tongue",
  33590. image: {
  33591. source: "./media/characters/guti/tongue.svg"
  33592. }
  33593. },
  33594. paw: {
  33595. height: math.unit(1.18, "feet"),
  33596. name: "Paw",
  33597. image: {
  33598. source: "./media/characters/guti/paw.svg"
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(9, "feet"),
  33606. default: true
  33607. },
  33608. ]
  33609. ))
  33610. characterMakers.push(() => makeCharacter(
  33611. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33612. {
  33613. side: {
  33614. height: math.unit(5, "meters"),
  33615. name: "Side",
  33616. image: {
  33617. source: "./media/characters/vesper/side.svg",
  33618. extra: 1605/1518,
  33619. bottom: 0/1605
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Small",
  33626. height: math.unit(5, "meters")
  33627. },
  33628. {
  33629. name: "Sage",
  33630. height: math.unit(100, "meters"),
  33631. default: true
  33632. },
  33633. {
  33634. name: "Fun Size",
  33635. height: math.unit(600, "meters")
  33636. },
  33637. {
  33638. name: "Goddess",
  33639. height: math.unit(20000, "km")
  33640. },
  33641. {
  33642. name: "Maximum",
  33643. height: math.unit(5, "galaxies")
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(6 + 3/12, "feet"),
  33652. weight: math.unit(190, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/gawain/front.svg",
  33656. extra: 2222/2139,
  33657. bottom: 90/2312
  33658. }
  33659. },
  33660. back: {
  33661. height: math.unit(6 + 3/12, "feet"),
  33662. weight: math.unit(190, "lb"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/gawain/back.svg",
  33666. extra: 2199/2111,
  33667. bottom: 73/2272
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(6 + 3/12, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33681. {
  33682. side: {
  33683. height: math.unit(3.5, "meters"),
  33684. weight: math.unit(16000, "lb"),
  33685. name: "Side",
  33686. image: {
  33687. source: "./media/characters/dascalti/side.svg",
  33688. extra: 392/273,
  33689. bottom: 47/439
  33690. }
  33691. },
  33692. breath: {
  33693. height: math.unit(7.4, "feet"),
  33694. name: "Breath",
  33695. image: {
  33696. source: "./media/characters/dascalti/breath.svg"
  33697. }
  33698. },
  33699. fed: {
  33700. height: math.unit(3.6, "meters"),
  33701. weight: math.unit(16000, "lb"),
  33702. name: "Fed",
  33703. image: {
  33704. source: "./media/characters/dascalti/fed.svg",
  33705. extra: 1419/820,
  33706. bottom: 95/1514
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Normal",
  33713. height: math.unit(3.5, "meters"),
  33714. default: true
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33720. {
  33721. front: {
  33722. height: math.unit(3 + 5/12, "feet"),
  33723. name: "Front",
  33724. image: {
  33725. source: "./media/characters/mauve/front.svg",
  33726. extra: 1126/1033,
  33727. bottom: 65/1191
  33728. }
  33729. },
  33730. side: {
  33731. height: math.unit(3 + 5/12, "feet"),
  33732. name: "Side",
  33733. image: {
  33734. source: "./media/characters/mauve/side.svg",
  33735. extra: 1089/1001,
  33736. bottom: 29/1118
  33737. }
  33738. },
  33739. back: {
  33740. height: math.unit(3 + 5/12, "feet"),
  33741. name: "Back",
  33742. image: {
  33743. source: "./media/characters/mauve/back.svg",
  33744. extra: 1173/1053,
  33745. bottom: 109/1282
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Normal",
  33752. height: math.unit(3 + 5/12, "feet"),
  33753. default: true
  33754. },
  33755. ]
  33756. ))
  33757. characterMakers.push(() => makeCharacter(
  33758. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33759. {
  33760. front: {
  33761. height: math.unit(6 + 3/12, "feet"),
  33762. weight: math.unit(430, "lb"),
  33763. name: "Front",
  33764. image: {
  33765. source: "./media/characters/carlos/front.svg",
  33766. extra: 1964/1913,
  33767. bottom: 70/2034
  33768. }
  33769. },
  33770. },
  33771. [
  33772. {
  33773. name: "Normal",
  33774. height: math.unit(6 + 3/12, "feet"),
  33775. default: true
  33776. },
  33777. ]
  33778. ))
  33779. characterMakers.push(() => makeCharacter(
  33780. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33781. {
  33782. back: {
  33783. height: math.unit(5 + 10/12, "feet"),
  33784. weight: math.unit(200, "lb"),
  33785. name: "Back",
  33786. image: {
  33787. source: "./media/characters/jax/back.svg",
  33788. extra: 764/739,
  33789. bottom: 25/789
  33790. }
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Normal",
  33796. height: math.unit(5 + 10/12, "feet"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(8, "feet"),
  33806. weight: math.unit(250, "lb"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/eikthynir/front.svg",
  33810. extra: 1332/1166,
  33811. bottom: 82/1414
  33812. }
  33813. },
  33814. back: {
  33815. height: math.unit(8, "feet"),
  33816. weight: math.unit(250, "lb"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/eikthynir/back.svg",
  33820. extra: 1342/1190,
  33821. bottom: 19/1361
  33822. }
  33823. },
  33824. dick: {
  33825. height: math.unit(2.35, "feet"),
  33826. name: "Dick",
  33827. image: {
  33828. source: "./media/characters/eikthynir/dick.svg"
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(8, "feet"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(99, "meters"),
  33845. weight: math.unit(13000, "tons"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/zlmos/front.svg",
  33849. extra: 2202/1992,
  33850. bottom: 315/2517
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Macro",
  33857. height: math.unit(99, "meters"),
  33858. default: true
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(6 + 5/12, "feet"),
  33867. name: "Front",
  33868. image: {
  33869. source: "./media/characters/purri/front.svg",
  33870. extra: 1698/1610,
  33871. bottom: 32/1730
  33872. }
  33873. },
  33874. frontAlt: {
  33875. height: math.unit(6 + 5/12, "feet"),
  33876. name: "Front (Alt)",
  33877. image: {
  33878. source: "./media/characters/purri/front-alt.svg",
  33879. extra: 450/420,
  33880. bottom: 26/476
  33881. }
  33882. },
  33883. boots: {
  33884. height: math.unit(5.5, "feet"),
  33885. name: "Boots",
  33886. image: {
  33887. source: "./media/characters/purri/boots.svg",
  33888. extra: 905/853,
  33889. bottom: 18/923
  33890. }
  33891. },
  33892. lying: {
  33893. height: math.unit(2, "feet"),
  33894. name: "Lying",
  33895. image: {
  33896. source: "./media/characters/purri/lying.svg",
  33897. extra: 940/843,
  33898. bottom: 146/1086
  33899. }
  33900. },
  33901. devious: {
  33902. height: math.unit(1.77, "feet"),
  33903. name: "Devious",
  33904. image: {
  33905. source: "./media/characters/purri/devious.svg",
  33906. extra: 1440/1155,
  33907. bottom: 147/1587
  33908. }
  33909. },
  33910. bean: {
  33911. height: math.unit(1.94, "feet"),
  33912. name: "Bean",
  33913. image: {
  33914. source: "./media/characters/purri/bean.svg"
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Micro",
  33921. height: math.unit(1, "mm")
  33922. },
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(6 + 5/12, "feet"),
  33926. default: true
  33927. },
  33928. {
  33929. name: "Macro :3c",
  33930. height: math.unit(2, "miles")
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33936. {
  33937. front: {
  33938. height: math.unit(6 + 2/12, "feet"),
  33939. weight: math.unit(250, "lb"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/moonlight/front.svg",
  33943. extra: 1044/908,
  33944. bottom: 56/1100
  33945. }
  33946. },
  33947. feral: {
  33948. height: math.unit(3 + 1/12, "feet"),
  33949. weight: math.unit(50, "kg"),
  33950. name: "Feral",
  33951. image: {
  33952. source: "./media/characters/moonlight/feral.svg",
  33953. extra: 3705/2791,
  33954. bottom: 145/3850
  33955. }
  33956. },
  33957. paw: {
  33958. height: math.unit(1, "feet"),
  33959. name: "Paw",
  33960. image: {
  33961. source: "./media/characters/moonlight/paw.svg"
  33962. }
  33963. },
  33964. paws: {
  33965. height: math.unit(0.98, "feet"),
  33966. name: "Paws",
  33967. image: {
  33968. source: "./media/characters/moonlight/paws.svg",
  33969. extra: 939/939,
  33970. bottom: 50/989
  33971. }
  33972. },
  33973. mouth: {
  33974. height: math.unit(0.48, "feet"),
  33975. name: "Mouth",
  33976. image: {
  33977. source: "./media/characters/moonlight/mouth.svg"
  33978. }
  33979. },
  33980. dick: {
  33981. height: math.unit(1.46, "feet"),
  33982. name: "Dick",
  33983. image: {
  33984. source: "./media/characters/moonlight/dick.svg"
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(6 + 2/12, "feet"),
  33992. default: true
  33993. },
  33994. {
  33995. name: "Macro",
  33996. height: math.unit(300, "feet")
  33997. },
  33998. {
  33999. name: "Macro+",
  34000. height: math.unit(1, "mile")
  34001. },
  34002. {
  34003. name: "Mt. Moon",
  34004. height: math.unit(5, "miles")
  34005. },
  34006. {
  34007. name: "Megamacro",
  34008. height: math.unit(15, "miles")
  34009. },
  34010. ]
  34011. ))
  34012. characterMakers.push(() => makeCharacter(
  34013. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34014. {
  34015. back: {
  34016. height: math.unit(6, "feet"),
  34017. weight: math.unit(150, "lb"),
  34018. name: "Back",
  34019. image: {
  34020. source: "./media/characters/sylen/back.svg",
  34021. extra: 1335/1273,
  34022. bottom: 107/1442
  34023. }
  34024. },
  34025. },
  34026. [
  34027. {
  34028. name: "Normal",
  34029. height: math.unit(5 + 5/12, "feet")
  34030. },
  34031. {
  34032. name: "Megamacro",
  34033. height: math.unit(3, "miles"),
  34034. default: true
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34040. {
  34041. front: {
  34042. height: math.unit(6, "feet"),
  34043. weight: math.unit(190, "lb"),
  34044. name: "Front",
  34045. image: {
  34046. source: "./media/characters/huttser/front.svg",
  34047. extra: 1152/1058,
  34048. bottom: 23/1175
  34049. }
  34050. },
  34051. side: {
  34052. height: math.unit(6, "feet"),
  34053. weight: math.unit(190, "lb"),
  34054. name: "Side",
  34055. image: {
  34056. source: "./media/characters/huttser/side.svg",
  34057. extra: 1174/1065,
  34058. bottom: 18/1192
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(6, "feet"),
  34063. weight: math.unit(190, "lb"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/huttser/back.svg",
  34067. extra: 1158/1056,
  34068. bottom: 12/1170
  34069. }
  34070. },
  34071. },
  34072. [
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34077. {
  34078. side: {
  34079. height: math.unit(12 + 9/12, "feet"),
  34080. weight: math.unit(15000, "lb"),
  34081. name: "Side",
  34082. image: {
  34083. source: "./media/characters/faan/side.svg",
  34084. extra: 2747/2697,
  34085. bottom: 0/2747
  34086. }
  34087. },
  34088. front: {
  34089. height: math.unit(12 + 9/12, "feet"),
  34090. weight: math.unit(15000, "lb"),
  34091. name: "Front",
  34092. image: {
  34093. source: "./media/characters/faan/front.svg",
  34094. extra: 607/571,
  34095. bottom: 24/631
  34096. }
  34097. },
  34098. head: {
  34099. height: math.unit(2.85, "feet"),
  34100. name: "Head",
  34101. image: {
  34102. source: "./media/characters/faan/head.svg"
  34103. }
  34104. },
  34105. headAlt: {
  34106. height: math.unit(3.13, "feet"),
  34107. name: "Head-alt",
  34108. image: {
  34109. source: "./media/characters/faan/head-alt.svg"
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Normal",
  34116. height: math.unit(12 + 9/12, "feet"),
  34117. default: true
  34118. },
  34119. ]
  34120. ))
  34121. characterMakers.push(() => makeCharacter(
  34122. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34123. {
  34124. front: {
  34125. height: math.unit(6, "feet"),
  34126. weight: math.unit(300, "lb"),
  34127. name: "Front",
  34128. image: {
  34129. source: "./media/characters/tanio/front.svg",
  34130. extra: 711/673,
  34131. bottom: 25/736
  34132. }
  34133. },
  34134. },
  34135. [
  34136. {
  34137. name: "Normal",
  34138. height: math.unit(6, "feet"),
  34139. default: true
  34140. },
  34141. ]
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34145. {
  34146. front: {
  34147. height: math.unit(3, "inches"),
  34148. name: "Front",
  34149. image: {
  34150. source: "./media/characters/noboru/front.svg",
  34151. extra: 1039/932,
  34152. bottom: 18/1057
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Micro",
  34159. height: math.unit(3, "inches"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(1.85, "meters"),
  34169. weight: math.unit(80, "kg"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/daniel-barrett/front.svg",
  34173. extra: 355/337,
  34174. bottom: 9/364
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Pico",
  34181. height: math.unit(0.0433, "mm")
  34182. },
  34183. {
  34184. name: "Nano",
  34185. height: math.unit(1.5, "mm")
  34186. },
  34187. {
  34188. name: "Micro",
  34189. height: math.unit(5.3, "cm"),
  34190. default: true
  34191. },
  34192. {
  34193. name: "Normal",
  34194. height: math.unit(1.85, "meters")
  34195. },
  34196. {
  34197. name: "Macro",
  34198. height: math.unit(64.7, "meters")
  34199. },
  34200. {
  34201. name: "Megamacro",
  34202. height: math.unit(2.26, "km")
  34203. },
  34204. {
  34205. name: "Gigamacro",
  34206. height: math.unit(79, "km")
  34207. },
  34208. {
  34209. name: "Teramacro",
  34210. height: math.unit(2765, "km")
  34211. },
  34212. {
  34213. name: "Petamacro",
  34214. height: math.unit(96678, "km")
  34215. },
  34216. ]
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34220. {
  34221. front: {
  34222. height: math.unit(30, "meters"),
  34223. weight: math.unit(400, "tons"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/zeel/front.svg",
  34227. extra: 2599/2599,
  34228. bottom: 226/2825
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Macro",
  34235. height: math.unit(30, "meters"),
  34236. default: true
  34237. },
  34238. ]
  34239. ))
  34240. characterMakers.push(() => makeCharacter(
  34241. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34242. {
  34243. front: {
  34244. height: math.unit(6 + 7/12, "feet"),
  34245. weight: math.unit(210, "lb"),
  34246. name: "Front",
  34247. image: {
  34248. source: "./media/characters/tarn/front.svg",
  34249. extra: 3517/3220,
  34250. bottom: 91/3608
  34251. }
  34252. },
  34253. back: {
  34254. height: math.unit(6 + 7/12, "feet"),
  34255. weight: math.unit(210, "lb"),
  34256. name: "Back",
  34257. image: {
  34258. source: "./media/characters/tarn/back.svg",
  34259. extra: 3566/3241,
  34260. bottom: 34/3600
  34261. }
  34262. },
  34263. dick: {
  34264. height: math.unit(1.65, "feet"),
  34265. name: "Dick",
  34266. image: {
  34267. source: "./media/characters/tarn/dick.svg"
  34268. }
  34269. },
  34270. paw: {
  34271. height: math.unit(1.80, "feet"),
  34272. name: "Paw",
  34273. image: {
  34274. source: "./media/characters/tarn/paw.svg"
  34275. }
  34276. },
  34277. tongue: {
  34278. height: math.unit(0.97, "feet"),
  34279. name: "Tongue",
  34280. image: {
  34281. source: "./media/characters/tarn/tongue.svg"
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Micro",
  34288. height: math.unit(4, "inches")
  34289. },
  34290. {
  34291. name: "Normal",
  34292. height: math.unit(6 + 7/12, "feet"),
  34293. default: true
  34294. },
  34295. {
  34296. name: "Macro",
  34297. height: math.unit(300, "feet")
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(5 + 7/12, "feet"),
  34306. weight: math.unit(80, "kg"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34310. extra: 3023/2865,
  34311. bottom: 33/3056
  34312. }
  34313. },
  34314. back: {
  34315. height: math.unit(5 + 7/12, "feet"),
  34316. weight: math.unit(80, "kg"),
  34317. name: "Back",
  34318. image: {
  34319. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34320. extra: 3020/2886,
  34321. bottom: 30/3050
  34322. }
  34323. },
  34324. dick: {
  34325. height: math.unit(0.98, "feet"),
  34326. name: "Dick",
  34327. image: {
  34328. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34329. }
  34330. },
  34331. anatomy: {
  34332. height: math.unit(2.86, "feet"),
  34333. name: "Anatomy",
  34334. image: {
  34335. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Really Small",
  34342. height: math.unit(2, "inches")
  34343. },
  34344. {
  34345. name: "Micro",
  34346. height: math.unit(5.583, "inches")
  34347. },
  34348. {
  34349. name: "Normal",
  34350. height: math.unit(5 + 7/12, "feet"),
  34351. default: true
  34352. },
  34353. {
  34354. name: "Macro",
  34355. height: math.unit(67, "feet")
  34356. },
  34357. {
  34358. name: "Megamacro",
  34359. height: math.unit(134, "feet")
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34365. {
  34366. front: {
  34367. height: math.unit(9, "feet"),
  34368. weight: math.unit(120, "lb"),
  34369. name: "Front",
  34370. image: {
  34371. source: "./media/characters/sally/front.svg",
  34372. extra: 1506/1349,
  34373. bottom: 66/1572
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(9, "feet"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34387. {
  34388. front: {
  34389. height: math.unit(8, "feet"),
  34390. weight: math.unit(900, "lb"),
  34391. name: "Front",
  34392. image: {
  34393. source: "./media/characters/owen/front.svg",
  34394. extra: 1761/1657,
  34395. bottom: 74/1835
  34396. }
  34397. },
  34398. side: {
  34399. height: math.unit(8, "feet"),
  34400. weight: math.unit(900, "lb"),
  34401. name: "Side",
  34402. image: {
  34403. source: "./media/characters/owen/side.svg",
  34404. extra: 1797/1734,
  34405. bottom: 30/1827
  34406. }
  34407. },
  34408. back: {
  34409. height: math.unit(8, "feet"),
  34410. weight: math.unit(900, "lb"),
  34411. name: "Back",
  34412. image: {
  34413. source: "./media/characters/owen/back.svg",
  34414. extra: 1796/1706,
  34415. bottom: 59/1855
  34416. }
  34417. },
  34418. maw: {
  34419. height: math.unit(1.76, "feet"),
  34420. name: "Maw",
  34421. image: {
  34422. source: "./media/characters/owen/maw.svg"
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(8, "feet"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34436. {
  34437. front: {
  34438. height: math.unit(4, "feet"),
  34439. weight: math.unit(400, "lb"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/ryth/front.svg",
  34443. extra: 1920/1748,
  34444. bottom: 42/1962
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(4, "feet"),
  34449. weight: math.unit(400, "lb"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/ryth/back.svg",
  34453. extra: 1897/1690,
  34454. bottom: 89/1986
  34455. }
  34456. },
  34457. mouth: {
  34458. height: math.unit(1.39, "feet"),
  34459. name: "Mouth",
  34460. image: {
  34461. source: "./media/characters/ryth/mouth.svg"
  34462. }
  34463. },
  34464. tailmaw: {
  34465. height: math.unit(1.23, "feet"),
  34466. name: "Tailmaw",
  34467. image: {
  34468. source: "./media/characters/ryth/tailmaw.svg"
  34469. }
  34470. },
  34471. goia: {
  34472. height: math.unit(4, "meters"),
  34473. weight: math.unit(10800, "lb"),
  34474. name: "Goia",
  34475. image: {
  34476. source: "./media/characters/ryth/goia.svg",
  34477. extra: 745/640,
  34478. bottom: 107/852
  34479. }
  34480. },
  34481. goiaFront: {
  34482. height: math.unit(4, "meters"),
  34483. weight: math.unit(10800, "lb"),
  34484. name: "Goia (Front)",
  34485. image: {
  34486. source: "./media/characters/ryth/goia-front.svg",
  34487. extra: 750/586,
  34488. bottom: 114/864
  34489. }
  34490. },
  34491. goiaMaw: {
  34492. height: math.unit(5.55, "feet"),
  34493. name: "Goia Maw",
  34494. image: {
  34495. source: "./media/characters/ryth/goia-maw.svg"
  34496. }
  34497. },
  34498. goiaForepaw: {
  34499. height: math.unit(3.5, "feet"),
  34500. name: "Goia Forepaw",
  34501. image: {
  34502. source: "./media/characters/ryth/goia-forepaw.svg"
  34503. }
  34504. },
  34505. goiaHindpaw: {
  34506. height: math.unit(5.55, "feet"),
  34507. name: "Goia Hindpaw",
  34508. image: {
  34509. source: "./media/characters/ryth/goia-hindpaw.svg"
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(4, "feet"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(7, "feet"),
  34526. weight: math.unit(180, "lb"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/necrolance/front.svg",
  34530. extra: 1062/947,
  34531. bottom: 41/1103
  34532. }
  34533. },
  34534. back: {
  34535. height: math.unit(7, "feet"),
  34536. weight: math.unit(180, "lb"),
  34537. name: "Back",
  34538. image: {
  34539. source: "./media/characters/necrolance/back.svg",
  34540. extra: 1045/984,
  34541. bottom: 14/1059
  34542. }
  34543. },
  34544. wing: {
  34545. height: math.unit(2.67, "feet"),
  34546. name: "Wing",
  34547. image: {
  34548. source: "./media/characters/necrolance/wing.svg"
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(7, "feet"),
  34556. default: true
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34562. {
  34563. front: {
  34564. height: math.unit(76, "meters"),
  34565. weight: math.unit(30000, "tons"),
  34566. name: "Front",
  34567. image: {
  34568. source: "./media/characters/tyler/front.svg",
  34569. extra: 1640/1640,
  34570. bottom: 114/1754
  34571. }
  34572. },
  34573. },
  34574. [
  34575. {
  34576. name: "Macro",
  34577. height: math.unit(76, "meters"),
  34578. default: true
  34579. },
  34580. ]
  34581. ))
  34582. characterMakers.push(() => makeCharacter(
  34583. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34584. {
  34585. front: {
  34586. height: math.unit(4 + 11/12, "feet"),
  34587. weight: math.unit(132, "lb"),
  34588. name: "Front",
  34589. image: {
  34590. source: "./media/characters/icey/front.svg",
  34591. extra: 2750/2550,
  34592. bottom: 33/2783
  34593. }
  34594. },
  34595. back: {
  34596. height: math.unit(4 + 11/12, "feet"),
  34597. weight: math.unit(132, "lb"),
  34598. name: "Back",
  34599. image: {
  34600. source: "./media/characters/icey/back.svg",
  34601. extra: 2624/2481,
  34602. bottom: 35/2659
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(4 + 11/12, "feet"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(100, "feet"),
  34619. weight: math.unit(0, "lb"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/smile/front.svg",
  34623. extra: 2983/2912,
  34624. bottom: 162/3145
  34625. }
  34626. },
  34627. back: {
  34628. height: math.unit(100, "feet"),
  34629. weight: math.unit(0, "lb"),
  34630. name: "Back",
  34631. image: {
  34632. source: "./media/characters/smile/back.svg",
  34633. extra: 3143/3031,
  34634. bottom: 91/3234
  34635. }
  34636. },
  34637. head: {
  34638. height: math.unit(26.3, "feet"),
  34639. weight: math.unit(0, "lb"),
  34640. name: "Head",
  34641. image: {
  34642. source: "./media/characters/smile/head.svg"
  34643. }
  34644. },
  34645. collar: {
  34646. height: math.unit(5.3, "feet"),
  34647. weight: math.unit(0, "lb"),
  34648. name: "Collar",
  34649. image: {
  34650. source: "./media/characters/smile/collar.svg"
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Macro",
  34657. height: math.unit(100, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34664. {
  34665. dragon: {
  34666. height: math.unit(26, "feet"),
  34667. weight: math.unit(36, "tons"),
  34668. name: "Dragon",
  34669. image: {
  34670. source: "./media/characters/arimphae/dragon.svg",
  34671. extra: 1574/983,
  34672. bottom: 357/1931
  34673. }
  34674. },
  34675. drake: {
  34676. height: math.unit(9, "feet"),
  34677. weight: math.unit(1.5, "tons"),
  34678. name: "Drake",
  34679. image: {
  34680. source: "./media/characters/arimphae/drake.svg",
  34681. extra: 1120/925,
  34682. bottom: 435/1555
  34683. }
  34684. },
  34685. },
  34686. [
  34687. {
  34688. name: "Small",
  34689. height: math.unit(26*5/9, "feet")
  34690. },
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(26, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34700. {
  34701. front: {
  34702. height: math.unit(8 + 9/12, "feet"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/xander/front.svg",
  34706. extra: 1237/974,
  34707. bottom: 94/1331
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(8 + 9/12, "feet"),
  34715. default: true
  34716. },
  34717. {
  34718. name: "Gaze Grabber",
  34719. height: math.unit(13 + 8/12, "feet")
  34720. },
  34721. {
  34722. name: "Jaw Dropper",
  34723. height: math.unit(27, "feet")
  34724. },
  34725. {
  34726. name: "Show Stopper",
  34727. height: math.unit(136, "feet")
  34728. },
  34729. {
  34730. name: "Superstar",
  34731. height: math.unit(1.9e6, "miles")
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34737. {
  34738. side: {
  34739. height: math.unit(2100, "feet"),
  34740. name: "Side",
  34741. image: {
  34742. source: "./media/characters/osiris/side.svg",
  34743. extra: 1105/939,
  34744. bottom: 167/1272
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Macro",
  34751. height: math.unit(2100, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(6 + 8/12, "feet"),
  34761. weight: math.unit(225, "lb"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/rhys-londe/front.svg",
  34765. extra: 2258/2141,
  34766. bottom: 188/2446
  34767. }
  34768. },
  34769. back: {
  34770. height: math.unit(6 + 8/12, "feet"),
  34771. weight: math.unit(225, "lb"),
  34772. name: "Back",
  34773. image: {
  34774. source: "./media/characters/rhys-londe/back.svg",
  34775. extra: 2237/2137,
  34776. bottom: 63/2300
  34777. }
  34778. },
  34779. frontNsfw: {
  34780. height: math.unit(6 + 8/12, "feet"),
  34781. weight: math.unit(225, "lb"),
  34782. name: "Front (NSFW)",
  34783. image: {
  34784. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34785. extra: 2258/2141,
  34786. bottom: 188/2446
  34787. }
  34788. },
  34789. backNsfw: {
  34790. height: math.unit(6 + 8/12, "feet"),
  34791. weight: math.unit(225, "lb"),
  34792. name: "Back (NSFW)",
  34793. image: {
  34794. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34795. extra: 2237/2137,
  34796. bottom: 63/2300
  34797. }
  34798. },
  34799. dick: {
  34800. height: math.unit(30, "inches"),
  34801. name: "Dick",
  34802. image: {
  34803. source: "./media/characters/rhys-londe/dick.svg"
  34804. }
  34805. },
  34806. maw: {
  34807. height: math.unit(1.6, "feet"),
  34808. name: "Maw",
  34809. image: {
  34810. source: "./media/characters/rhys-londe/maw.svg"
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(6 + 8/12, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(3 + 10/12, "feet"),
  34827. weight: math.unit(90, "lb"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/taivas-ensim/front.svg",
  34831. extra: 1327/1216,
  34832. bottom: 96/1423
  34833. }
  34834. },
  34835. back: {
  34836. height: math.unit(3 + 10/12, "feet"),
  34837. weight: math.unit(90, "lb"),
  34838. name: "Back",
  34839. image: {
  34840. source: "./media/characters/taivas-ensim/back.svg",
  34841. extra: 1355/1247,
  34842. bottom: 11/1366
  34843. }
  34844. },
  34845. frontNsfw: {
  34846. height: math.unit(3 + 10/12, "feet"),
  34847. weight: math.unit(90, "lb"),
  34848. name: "Front (NSFW)",
  34849. image: {
  34850. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34851. extra: 1327/1216,
  34852. bottom: 96/1423
  34853. }
  34854. },
  34855. backNsfw: {
  34856. height: math.unit(3 + 10/12, "feet"),
  34857. weight: math.unit(90, "lb"),
  34858. name: "Back (NSFW)",
  34859. image: {
  34860. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34861. extra: 1355/1247,
  34862. bottom: 11/1366
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(3 + 10/12, "feet"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(9 + 6/12, "feet"),
  34879. weight: math.unit(940, "lb"),
  34880. name: "Front",
  34881. image: {
  34882. source: "./media/characters/byliss/front.svg",
  34883. extra: 1327/1290,
  34884. bottom: 82/1409
  34885. }
  34886. },
  34887. back: {
  34888. height: math.unit(9 + 6/12, "feet"),
  34889. weight: math.unit(940, "lb"),
  34890. name: "Back",
  34891. image: {
  34892. source: "./media/characters/byliss/back.svg",
  34893. extra: 1376/1349,
  34894. bottom: 9/1385
  34895. }
  34896. },
  34897. frontNsfw: {
  34898. height: math.unit(9 + 6/12, "feet"),
  34899. weight: math.unit(940, "lb"),
  34900. name: "Front (NSFW)",
  34901. image: {
  34902. source: "./media/characters/byliss/front-nsfw.svg",
  34903. extra: 1327/1290,
  34904. bottom: 82/1409
  34905. }
  34906. },
  34907. backNsfw: {
  34908. height: math.unit(9 + 6/12, "feet"),
  34909. weight: math.unit(940, "lb"),
  34910. name: "Back (NSFW)",
  34911. image: {
  34912. source: "./media/characters/byliss/back-nsfw.svg",
  34913. extra: 1376/1349,
  34914. bottom: 9/1385
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(9 + 6/12, "feet"),
  34922. default: true
  34923. },
  34924. ]
  34925. ))
  34926. characterMakers.push(() => makeCharacter(
  34927. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34928. {
  34929. front: {
  34930. height: math.unit(5 + 2/12, "feet"),
  34931. weight: math.unit(200, "lb"),
  34932. name: "Front",
  34933. image: {
  34934. source: "./media/characters/noraly/front.svg",
  34935. extra: 4985/4773,
  34936. bottom: 150/5135
  34937. }
  34938. },
  34939. full: {
  34940. height: math.unit(5 + 2/12, "feet"),
  34941. weight: math.unit(164, "lb"),
  34942. name: "Full",
  34943. image: {
  34944. source: "./media/characters/noraly/full.svg",
  34945. extra: 1114/1059,
  34946. bottom: 35/1149
  34947. }
  34948. },
  34949. fuller: {
  34950. height: math.unit(5 + 2/12, "feet"),
  34951. weight: math.unit(230, "lb"),
  34952. name: "Fuller",
  34953. image: {
  34954. source: "./media/characters/noraly/fuller.svg",
  34955. extra: 1114/1059,
  34956. bottom: 35/1149
  34957. }
  34958. },
  34959. fullest: {
  34960. height: math.unit(5 + 2/12, "feet"),
  34961. weight: math.unit(300, "lb"),
  34962. name: "Fullest",
  34963. image: {
  34964. source: "./media/characters/noraly/fullest.svg",
  34965. extra: 1114/1059,
  34966. bottom: 35/1149
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(5 + 2/12, "feet"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34980. {
  34981. front: {
  34982. height: math.unit(5 + 2/12, "feet"),
  34983. weight: math.unit(210, "lb"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/pera/front.svg",
  34987. extra: 1560/1531,
  34988. bottom: 165/1725
  34989. }
  34990. },
  34991. back: {
  34992. height: math.unit(5 + 2/12, "feet"),
  34993. weight: math.unit(210, "lb"),
  34994. name: "Back",
  34995. image: {
  34996. source: "./media/characters/pera/back.svg",
  34997. extra: 1523/1493,
  34998. bottom: 152/1675
  34999. }
  35000. },
  35001. dick: {
  35002. height: math.unit(2.4, "feet"),
  35003. name: "Dick",
  35004. image: {
  35005. source: "./media/characters/pera/dick.svg"
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(5 + 2/12, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35019. {
  35020. front: {
  35021. height: math.unit(12, "feet"),
  35022. weight: math.unit(3200, "lb"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/julian/front.svg",
  35026. extra: 2962/2701,
  35027. bottom: 184/3146
  35028. }
  35029. },
  35030. maw: {
  35031. height: math.unit(5.35, "feet"),
  35032. name: "Maw",
  35033. image: {
  35034. source: "./media/characters/julian/maw.svg"
  35035. }
  35036. },
  35037. paw: {
  35038. height: math.unit(3.07, "feet"),
  35039. name: "Paw",
  35040. image: {
  35041. source: "./media/characters/julian/paw.svg"
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Default",
  35048. height: math.unit(12, "feet"),
  35049. default: true
  35050. },
  35051. {
  35052. name: "Big",
  35053. height: math.unit(50, "feet")
  35054. },
  35055. {
  35056. name: "Really Big",
  35057. height: math.unit(1, "mile")
  35058. },
  35059. {
  35060. name: "Extremely Big",
  35061. height: math.unit(100, "miles")
  35062. },
  35063. {
  35064. name: "Planet Hugger",
  35065. height: math.unit(200, "megameters")
  35066. },
  35067. {
  35068. name: "Unreasonably Big",
  35069. height: math.unit(1e300, "meters")
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35075. {
  35076. solgooleo: {
  35077. height: math.unit(4, "meters"),
  35078. weight: math.unit(6000*1.5, "kg"),
  35079. volume: math.unit(6000, "liters"),
  35080. name: "Solgooleo",
  35081. image: {
  35082. source: "./media/characters/pi/solgooleo.svg",
  35083. extra: 388/331,
  35084. bottom: 29/417
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Normal",
  35091. height: math.unit(4, "meters"),
  35092. default: true
  35093. },
  35094. ]
  35095. ))
  35096. characterMakers.push(() => makeCharacter(
  35097. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35098. {
  35099. front: {
  35100. height: math.unit(8, "feet"),
  35101. weight: math.unit(4, "tons"),
  35102. name: "Front",
  35103. image: {
  35104. source: "./media/characters/shaun/front.svg",
  35105. extra: 503/495,
  35106. bottom: 20/523
  35107. }
  35108. },
  35109. back: {
  35110. height: math.unit(8, "feet"),
  35111. weight: math.unit(4, "tons"),
  35112. name: "Back",
  35113. image: {
  35114. source: "./media/characters/shaun/back.svg",
  35115. extra: 487/480,
  35116. bottom: 20/507
  35117. }
  35118. },
  35119. },
  35120. [
  35121. {
  35122. name: "Lorg",
  35123. height: math.unit(8, "feet"),
  35124. default: true
  35125. },
  35126. ]
  35127. ))
  35128. characterMakers.push(() => makeCharacter(
  35129. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35130. {
  35131. frontAnthro: {
  35132. height: math.unit(7, "feet"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/sini/front-anthro.svg",
  35136. extra: 726/678,
  35137. bottom: 35/761
  35138. },
  35139. form: "anthro",
  35140. default: true
  35141. },
  35142. backAnthro: {
  35143. height: math.unit(7, "feet"),
  35144. name: "Back",
  35145. image: {
  35146. source: "./media/characters/sini/back-anthro.svg",
  35147. extra: 743/701,
  35148. bottom: 12/755
  35149. },
  35150. form: "anthro",
  35151. },
  35152. frontAnthroNsfw: {
  35153. height: math.unit(7, "feet"),
  35154. name: "Front (NSFW)",
  35155. image: {
  35156. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35157. extra: 726/678,
  35158. bottom: 35/761
  35159. },
  35160. form: "anthro"
  35161. },
  35162. backAnthroNsfw: {
  35163. height: math.unit(7, "feet"),
  35164. name: "Back (NSFW)",
  35165. image: {
  35166. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35167. extra: 743/701,
  35168. bottom: 12/755
  35169. },
  35170. form: "anthro",
  35171. },
  35172. mawAnthro: {
  35173. height: math.unit(2.14, "feet"),
  35174. name: "Maw",
  35175. image: {
  35176. source: "./media/characters/sini/maw-anthro.svg"
  35177. },
  35178. form: "anthro"
  35179. },
  35180. dick: {
  35181. height: math.unit(1.45, "feet"),
  35182. name: "Dick",
  35183. image: {
  35184. source: "./media/characters/sini/dick-anthro.svg"
  35185. },
  35186. form: "anthro"
  35187. },
  35188. feral: {
  35189. height: math.unit(16, "feet"),
  35190. name: "Feral",
  35191. image: {
  35192. source: "./media/characters/sini/feral.svg",
  35193. extra: 814/605,
  35194. bottom: 11/825
  35195. },
  35196. form: "feral",
  35197. default: true
  35198. },
  35199. feralNsfw: {
  35200. height: math.unit(16, "feet"),
  35201. name: "Feral (NSFW)",
  35202. image: {
  35203. source: "./media/characters/sini/feral-nsfw.svg",
  35204. extra: 814/605,
  35205. bottom: 11/825
  35206. },
  35207. form: "feral"
  35208. },
  35209. mawFeral: {
  35210. height: math.unit(5.66, "feet"),
  35211. name: "Maw",
  35212. image: {
  35213. source: "./media/characters/sini/maw-feral.svg"
  35214. },
  35215. form: "feral",
  35216. },
  35217. pawFeral: {
  35218. height: math.unit(5.17, "feet"),
  35219. name: "Paw",
  35220. image: {
  35221. source: "./media/characters/sini/paw-feral.svg"
  35222. },
  35223. form: "feral",
  35224. },
  35225. rumpFeral: {
  35226. height: math.unit(13.11, "feet"),
  35227. name: "Rump",
  35228. image: {
  35229. source: "./media/characters/sini/rump-feral.svg"
  35230. },
  35231. form: "feral",
  35232. },
  35233. dickFeral: {
  35234. height: math.unit(1, "feet"),
  35235. name: "Dick",
  35236. image: {
  35237. source: "./media/characters/sini/dick-feral.svg"
  35238. },
  35239. form: "feral",
  35240. },
  35241. eyeFeral: {
  35242. height: math.unit(1.23, "feet"),
  35243. name: "Eye",
  35244. image: {
  35245. source: "./media/characters/sini/eye-feral.svg"
  35246. },
  35247. form: "feral",
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(7, "feet"),
  35254. default: true,
  35255. form: "anthro"
  35256. },
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(16, "feet"),
  35260. default: true,
  35261. form: "feral"
  35262. },
  35263. ],
  35264. {
  35265. "anthro": {
  35266. name: "Anthro",
  35267. default: true
  35268. },
  35269. "feral": {
  35270. name: "Feral",
  35271. }
  35272. }
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35276. {
  35277. side: {
  35278. height: math.unit(47.2, "meters"),
  35279. weight: math.unit(10000, "tons"),
  35280. name: "Side",
  35281. image: {
  35282. source: "./media/characters/raylldo/side.svg",
  35283. extra: 2363/642,
  35284. bottom: 221/2584
  35285. }
  35286. },
  35287. top: {
  35288. height: math.unit(240, "meters"),
  35289. weight: math.unit(10000, "tons"),
  35290. name: "Top",
  35291. image: {
  35292. source: "./media/characters/raylldo/top.svg"
  35293. }
  35294. },
  35295. bottom: {
  35296. height: math.unit(240, "meters"),
  35297. weight: math.unit(10000, "tons"),
  35298. name: "Bottom",
  35299. image: {
  35300. source: "./media/characters/raylldo/bottom.svg"
  35301. }
  35302. },
  35303. head: {
  35304. height: math.unit(38.6, "meters"),
  35305. name: "Head",
  35306. image: {
  35307. source: "./media/characters/raylldo/head.svg",
  35308. extra: 1335/1112,
  35309. bottom: 0/1335
  35310. }
  35311. },
  35312. maw: {
  35313. height: math.unit(16.37, "meters"),
  35314. name: "Maw",
  35315. image: {
  35316. source: "./media/characters/raylldo/maw.svg",
  35317. extra: 883/660,
  35318. bottom: 0/883
  35319. },
  35320. extraAttributes: {
  35321. preyCapacity: {
  35322. name: "Capacity",
  35323. power: 3,
  35324. type: "volume",
  35325. base: math.unit(1000, "people")
  35326. },
  35327. tongueSize: {
  35328. name: "Tongue Size",
  35329. power: 2,
  35330. type: "area",
  35331. base: math.unit(21, "m^2")
  35332. }
  35333. }
  35334. },
  35335. forepaw: {
  35336. height: math.unit(18, "meters"),
  35337. name: "Forepaw",
  35338. image: {
  35339. source: "./media/characters/raylldo/forepaw.svg"
  35340. }
  35341. },
  35342. hindpaw: {
  35343. height: math.unit(23, "meters"),
  35344. name: "Hindpaw",
  35345. image: {
  35346. source: "./media/characters/raylldo/hindpaw.svg"
  35347. }
  35348. },
  35349. genitals: {
  35350. height: math.unit(42, "meters"),
  35351. name: "Genitals",
  35352. image: {
  35353. source: "./media/characters/raylldo/genitals.svg"
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(47.2, "meters"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35367. {
  35368. anthroFront: {
  35369. height: math.unit(9, "feet"),
  35370. weight: math.unit(600, "lb"),
  35371. name: "Anthro (Front)",
  35372. image: {
  35373. source: "./media/characters/glint/anthro-front.svg",
  35374. extra: 1097/1018,
  35375. bottom: 28/1125
  35376. }
  35377. },
  35378. anthroBack: {
  35379. height: math.unit(9, "feet"),
  35380. weight: math.unit(600, "lb"),
  35381. name: "Anthro (Back)",
  35382. image: {
  35383. source: "./media/characters/glint/anthro-back.svg",
  35384. extra: 1154/997,
  35385. bottom: 36/1190
  35386. }
  35387. },
  35388. feral: {
  35389. height: math.unit(11, "feet"),
  35390. weight: math.unit(50000, "lb"),
  35391. name: "Feral",
  35392. image: {
  35393. source: "./media/characters/glint/feral.svg",
  35394. extra: 3035/1585,
  35395. bottom: 1169/4204
  35396. }
  35397. },
  35398. dickAnthro: {
  35399. height: math.unit(0.7, "meters"),
  35400. name: "Dick (Anthro)",
  35401. image: {
  35402. source: "./media/characters/glint/dick-anthro.svg"
  35403. }
  35404. },
  35405. dickFeral: {
  35406. height: math.unit(2.65, "meters"),
  35407. name: "Dick (Feral)",
  35408. image: {
  35409. source: "./media/characters/glint/dick-feral.svg"
  35410. }
  35411. },
  35412. slitHidden: {
  35413. height: math.unit(5.85, "meters"),
  35414. name: "Slit (Hidden)",
  35415. image: {
  35416. source: "./media/characters/glint/slit-hidden.svg"
  35417. }
  35418. },
  35419. slitErect: {
  35420. height: math.unit(5.85, "meters"),
  35421. name: "Slit (Erect)",
  35422. image: {
  35423. source: "./media/characters/glint/slit-erect.svg"
  35424. }
  35425. },
  35426. mawAnthro: {
  35427. height: math.unit(0.63, "meters"),
  35428. name: "Maw (Anthro)",
  35429. image: {
  35430. source: "./media/characters/glint/maw.svg"
  35431. }
  35432. },
  35433. mawFeral: {
  35434. height: math.unit(2.89, "meters"),
  35435. name: "Maw (Feral)",
  35436. image: {
  35437. source: "./media/characters/glint/maw.svg"
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(9, "feet"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35451. {
  35452. side: {
  35453. height: math.unit(15, "feet"),
  35454. weight: math.unit(5000, "kg"),
  35455. name: "Side",
  35456. image: {
  35457. source: "./media/characters/kairne/side.svg",
  35458. extra: 979/811,
  35459. bottom: 13/992
  35460. }
  35461. },
  35462. front: {
  35463. height: math.unit(15, "feet"),
  35464. weight: math.unit(5000, "kg"),
  35465. name: "Front",
  35466. image: {
  35467. source: "./media/characters/kairne/front.svg",
  35468. extra: 908/814,
  35469. bottom: 26/934
  35470. }
  35471. },
  35472. sideNsfw: {
  35473. height: math.unit(15, "feet"),
  35474. weight: math.unit(5000, "kg"),
  35475. name: "Side (NSFW)",
  35476. image: {
  35477. source: "./media/characters/kairne/side-nsfw.svg",
  35478. extra: 979/811,
  35479. bottom: 13/992
  35480. }
  35481. },
  35482. frontNsfw: {
  35483. height: math.unit(15, "feet"),
  35484. weight: math.unit(5000, "kg"),
  35485. name: "Front (NSFW)",
  35486. image: {
  35487. source: "./media/characters/kairne/front-nsfw.svg",
  35488. extra: 908/814,
  35489. bottom: 26/934
  35490. }
  35491. },
  35492. dickCaged: {
  35493. height: math.unit(0.65, "meters"),
  35494. name: "Dick-caged",
  35495. image: {
  35496. source: "./media/characters/kairne/dick-caged.svg"
  35497. }
  35498. },
  35499. dick: {
  35500. height: math.unit(0.79, "meters"),
  35501. name: "Dick",
  35502. image: {
  35503. source: "./media/characters/kairne/dick.svg"
  35504. }
  35505. },
  35506. genitals: {
  35507. height: math.unit(1.29, "meters"),
  35508. name: "Genitals",
  35509. image: {
  35510. source: "./media/characters/kairne/genitals.svg"
  35511. }
  35512. },
  35513. maw: {
  35514. height: math.unit(1.73, "meters"),
  35515. name: "Maw",
  35516. image: {
  35517. source: "./media/characters/kairne/maw.svg"
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(15, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(5 + 8/12, "feet"),
  35534. weight: math.unit(139, "lb"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/biscuit-jackal/front.svg",
  35538. extra: 2106/1961,
  35539. bottom: 58/2164
  35540. }
  35541. },
  35542. back: {
  35543. height: math.unit(5 + 8/12, "feet"),
  35544. weight: math.unit(139, "lb"),
  35545. name: "Back",
  35546. image: {
  35547. source: "./media/characters/biscuit-jackal/back.svg",
  35548. extra: 2132/1976,
  35549. bottom: 57/2189
  35550. }
  35551. },
  35552. werejackal: {
  35553. height: math.unit(6 + 3/12, "feet"),
  35554. weight: math.unit(188, "lb"),
  35555. name: "Werejackal",
  35556. image: {
  35557. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35558. extra: 2373/2178,
  35559. bottom: 53/2426
  35560. }
  35561. },
  35562. },
  35563. [
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(5 + 8/12, "feet"),
  35567. default: true
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35573. {
  35574. front: {
  35575. height: math.unit(140, "cm"),
  35576. weight: math.unit(45, "kg"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/tayra-white/front.svg",
  35580. extra: 2229/2192,
  35581. bottom: 75/2304
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(140, "cm"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(4 + 5/12, "feet"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/scoop/front.svg",
  35601. extra: 1257/1136,
  35602. bottom: 69/1326
  35603. }
  35604. },
  35605. back: {
  35606. height: math.unit(4 + 5/12, "feet"),
  35607. name: "Back",
  35608. image: {
  35609. source: "./media/characters/scoop/back.svg",
  35610. extra: 1321/1152,
  35611. bottom: 32/1353
  35612. }
  35613. },
  35614. maw: {
  35615. height: math.unit(0.68, "feet"),
  35616. name: "Maw",
  35617. image: {
  35618. source: "./media/characters/scoop/maw.svg"
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Really Small",
  35625. height: math.unit(1, "mm")
  35626. },
  35627. {
  35628. name: "Micro",
  35629. height: math.unit(1, "inch")
  35630. },
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(4 + 5/12, "feet"),
  35634. default: true
  35635. },
  35636. {
  35637. name: "Macro",
  35638. height: math.unit(200, "feet")
  35639. },
  35640. {
  35641. name: "Megamacro",
  35642. height: math.unit(3240, "feet")
  35643. },
  35644. {
  35645. name: "Teramacro",
  35646. height: math.unit(2500, "miles")
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(15 + 7/12, "feet"),
  35655. weight: math.unit(1150, "tons"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/saphinara/front.svg",
  35659. extra: 1837/1643,
  35660. bottom: 84/1921
  35661. },
  35662. form: "normal",
  35663. default: true
  35664. },
  35665. side: {
  35666. height: math.unit(15 + 7/12, "feet"),
  35667. weight: math.unit(1150, "tons"),
  35668. name: "Side",
  35669. image: {
  35670. source: "./media/characters/saphinara/side.svg",
  35671. extra: 605/547,
  35672. bottom: 6/611
  35673. },
  35674. form: "normal"
  35675. },
  35676. back: {
  35677. height: math.unit(15 + 7/12, "feet"),
  35678. weight: math.unit(1150, "tons"),
  35679. name: "Back",
  35680. image: {
  35681. source: "./media/characters/saphinara/back.svg",
  35682. extra: 591/531,
  35683. bottom: 13/604
  35684. },
  35685. form: "normal"
  35686. },
  35687. frontTail: {
  35688. height: math.unit(15 + 7/12, "feet"),
  35689. weight: math.unit(1150, "tons"),
  35690. name: "Front (Full Tail)",
  35691. image: {
  35692. source: "./media/characters/saphinara/front-tail.svg",
  35693. extra: 2256/1630,
  35694. bottom: 261/2517
  35695. },
  35696. form: "normal"
  35697. },
  35698. insides: {
  35699. height: math.unit(11.92, "feet"),
  35700. name: "Insides",
  35701. image: {
  35702. source: "./media/characters/saphinara/insides.svg"
  35703. },
  35704. form: "normal"
  35705. },
  35706. head: {
  35707. height: math.unit(4.17, "feet"),
  35708. name: "Head",
  35709. image: {
  35710. source: "./media/characters/saphinara/head.svg"
  35711. },
  35712. form: "normal"
  35713. },
  35714. tongue: {
  35715. height: math.unit(4.60, "feet"),
  35716. name: "Tongue",
  35717. image: {
  35718. source: "./media/characters/saphinara/tongue.svg"
  35719. },
  35720. form: "normal"
  35721. },
  35722. headEnraged: {
  35723. height: math.unit(5.55, "feet"),
  35724. name: "Head (Enraged)",
  35725. image: {
  35726. source: "./media/characters/saphinara/head-enraged.svg"
  35727. },
  35728. form: "normal"
  35729. },
  35730. wings: {
  35731. height: math.unit(11.95, "feet"),
  35732. name: "Wings",
  35733. image: {
  35734. source: "./media/characters/saphinara/wings.svg"
  35735. },
  35736. form: "normal"
  35737. },
  35738. feathers: {
  35739. height: math.unit(8.92, "feet"),
  35740. name: "Feathers",
  35741. image: {
  35742. source: "./media/characters/saphinara/feathers.svg"
  35743. },
  35744. form: "normal"
  35745. },
  35746. shackles: {
  35747. height: math.unit(2, "feet"),
  35748. name: "Shackles",
  35749. image: {
  35750. source: "./media/characters/saphinara/shackles.svg"
  35751. },
  35752. form: "normal"
  35753. },
  35754. eyes: {
  35755. height: math.unit(1.331, "feet"),
  35756. name: "Eyes",
  35757. image: {
  35758. source: "./media/characters/saphinara/eyes.svg"
  35759. },
  35760. form: "normal"
  35761. },
  35762. eyesEnraged: {
  35763. height: math.unit(1.331, "feet"),
  35764. name: "Eyes (Enraged)",
  35765. image: {
  35766. source: "./media/characters/saphinara/eyes-enraged.svg"
  35767. },
  35768. form: "normal"
  35769. },
  35770. trueFormSide: {
  35771. height: math.unit(200, "feet"),
  35772. weight: math.unit(1e7, "tons"),
  35773. name: "Side",
  35774. image: {
  35775. source: "./media/characters/saphinara/true-form-side.svg",
  35776. extra: 1399/770,
  35777. bottom: 97/1496
  35778. },
  35779. form: "true-form",
  35780. default: true
  35781. },
  35782. trueFormMaw: {
  35783. height: math.unit(71.5, "feet"),
  35784. name: "Maw",
  35785. image: {
  35786. source: "./media/characters/saphinara/true-form-maw.svg",
  35787. extra: 2302/1453,
  35788. bottom: 0/2302
  35789. },
  35790. form: "true-form"
  35791. },
  35792. meowberusSide: {
  35793. height: math.unit(75, "feet"),
  35794. weight: math.unit(180000, "kg"),
  35795. preyCapacity: math.unit(50000, "people"),
  35796. name: "Side",
  35797. image: {
  35798. source: "./media/characters/saphinara/meowberus-side.svg",
  35799. extra: 1400/711,
  35800. bottom: 126/1526
  35801. },
  35802. form: "meowberus",
  35803. extraAttributes: {
  35804. "pawArea": {
  35805. name: "Paw Size",
  35806. power: 2,
  35807. type: "area",
  35808. base: math.unit(35, "m^2")
  35809. }
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(15 + 7/12, "feet"),
  35817. default: true,
  35818. form: "normal"
  35819. },
  35820. {
  35821. name: "Angry",
  35822. height: math.unit(30 + 6/12, "feet"),
  35823. form: "normal"
  35824. },
  35825. {
  35826. name: "Enraged",
  35827. height: math.unit(102 + 1/12, "feet"),
  35828. form: "normal"
  35829. },
  35830. {
  35831. name: "True",
  35832. height: math.unit(200, "feet"),
  35833. default: true,
  35834. form: "true-form"
  35835. },
  35836. {
  35837. name: "Normal",
  35838. height: math.unit(75, "feet"),
  35839. default: true,
  35840. form: "meowberus"
  35841. },
  35842. ],
  35843. {
  35844. "normal": {
  35845. name: "Normal",
  35846. default: true
  35847. },
  35848. "true-form": {
  35849. name: "True Form"
  35850. },
  35851. "meowberus": {
  35852. name: "Meowberus",
  35853. },
  35854. }
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35858. {
  35859. front: {
  35860. height: math.unit(6 + 8/12, "feet"),
  35861. weight: math.unit(300, "lb"),
  35862. name: "Front",
  35863. image: {
  35864. source: "./media/characters/jrain/front.svg",
  35865. extra: 3039/2865,
  35866. bottom: 399/3438
  35867. }
  35868. },
  35869. back: {
  35870. height: math.unit(6 + 8/12, "feet"),
  35871. weight: math.unit(300, "lb"),
  35872. name: "Back",
  35873. image: {
  35874. source: "./media/characters/jrain/back.svg",
  35875. extra: 3089/2938,
  35876. bottom: 172/3261
  35877. }
  35878. },
  35879. head: {
  35880. height: math.unit(2.14, "feet"),
  35881. name: "Head",
  35882. image: {
  35883. source: "./media/characters/jrain/head.svg"
  35884. }
  35885. },
  35886. maw: {
  35887. height: math.unit(1.77, "feet"),
  35888. name: "Maw",
  35889. image: {
  35890. source: "./media/characters/jrain/maw.svg"
  35891. }
  35892. },
  35893. leftHand: {
  35894. height: math.unit(1.1, "feet"),
  35895. name: "Left Hand",
  35896. image: {
  35897. source: "./media/characters/jrain/left-hand.svg"
  35898. }
  35899. },
  35900. rightHand: {
  35901. height: math.unit(1.1, "feet"),
  35902. name: "Right Hand",
  35903. image: {
  35904. source: "./media/characters/jrain/right-hand.svg"
  35905. }
  35906. },
  35907. eye: {
  35908. height: math.unit(0.35, "feet"),
  35909. name: "Eye",
  35910. image: {
  35911. source: "./media/characters/jrain/eye.svg"
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(6 + 8/12, "feet"),
  35919. default: true
  35920. },
  35921. {
  35922. name: "Casually Large",
  35923. height: math.unit(25, "feet")
  35924. },
  35925. {
  35926. name: "Giant",
  35927. height: math.unit(100, "feet")
  35928. },
  35929. {
  35930. name: "Kaiju",
  35931. height: math.unit(300, "feet")
  35932. },
  35933. ]
  35934. ))
  35935. characterMakers.push(() => makeCharacter(
  35936. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35937. {
  35938. dragon: {
  35939. height: math.unit(5, "meters"),
  35940. name: "Dragon",
  35941. image: {
  35942. source: "./media/characters/sabrina/dragon.svg",
  35943. extra: 3670 / 2365,
  35944. bottom: 333 / 4003
  35945. }
  35946. },
  35947. gryphon: {
  35948. height: math.unit(3, "meters"),
  35949. name: "Gryphon",
  35950. image: {
  35951. source: "./media/characters/sabrina/gryphon.svg",
  35952. extra: 1576 / 945,
  35953. bottom: 71 / 1647
  35954. }
  35955. },
  35956. snake: {
  35957. height: math.unit(12, "meters"),
  35958. name: "Snake",
  35959. image: {
  35960. source: "./media/characters/sabrina/snake.svg",
  35961. extra: 1758 / 1320,
  35962. bottom: 186 / 1944
  35963. }
  35964. },
  35965. collar: {
  35966. height: math.unit(1.86, "meters"),
  35967. name: "Collar",
  35968. image: {
  35969. source: "./media/characters/sabrina/collar.svg"
  35970. }
  35971. },
  35972. eye: {
  35973. height: math.unit(0.53, "meters"),
  35974. name: "Eye",
  35975. image: {
  35976. source: "./media/characters/sabrina/eye.svg"
  35977. }
  35978. },
  35979. foot: {
  35980. height: math.unit(1.86, "meters"),
  35981. name: "Foot",
  35982. image: {
  35983. source: "./media/characters/sabrina/foot.svg"
  35984. }
  35985. },
  35986. hand: {
  35987. height: math.unit(1.32, "meters"),
  35988. name: "Hand",
  35989. image: {
  35990. source: "./media/characters/sabrina/hand.svg"
  35991. }
  35992. },
  35993. head: {
  35994. height: math.unit(2.44, "meters"),
  35995. name: "Head",
  35996. image: {
  35997. source: "./media/characters/sabrina/head.svg"
  35998. }
  35999. },
  36000. headAngry: {
  36001. height: math.unit(2.44, "meters"),
  36002. name: "Head (Angry))",
  36003. image: {
  36004. source: "./media/characters/sabrina/head-angry.svg"
  36005. }
  36006. },
  36007. maw: {
  36008. height: math.unit(1.65, "meters"),
  36009. name: "Maw",
  36010. image: {
  36011. source: "./media/characters/sabrina/maw.svg"
  36012. }
  36013. },
  36014. spikes: {
  36015. height: math.unit(1.69, "meters"),
  36016. name: "Spikes",
  36017. image: {
  36018. source: "./media/characters/sabrina/spikes.svg"
  36019. }
  36020. },
  36021. stomach: {
  36022. height: math.unit(1.15, "meters"),
  36023. name: "Stomach",
  36024. image: {
  36025. source: "./media/characters/sabrina/stomach.svg"
  36026. }
  36027. },
  36028. tongue: {
  36029. height: math.unit(1.27, "meters"),
  36030. name: "Tongue",
  36031. image: {
  36032. source: "./media/characters/sabrina/tongue.svg"
  36033. }
  36034. },
  36035. wingDorsal: {
  36036. height: math.unit(4.85, "meters"),
  36037. name: "Wing (Dorsal)",
  36038. image: {
  36039. source: "./media/characters/sabrina/wing-dorsal.svg"
  36040. }
  36041. },
  36042. wingVentral: {
  36043. height: math.unit(4.85, "meters"),
  36044. name: "Wing (Ventral)",
  36045. image: {
  36046. source: "./media/characters/sabrina/wing-ventral.svg"
  36047. }
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "Normal",
  36053. height: math.unit(5, "meters"),
  36054. default: true
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36060. {
  36061. frontMaid: {
  36062. height: math.unit(5 + 5/12, "feet"),
  36063. weight: math.unit(130, "lb"),
  36064. name: "Front (Maid)",
  36065. image: {
  36066. source: "./media/characters/midnight-tales/front-maid.svg",
  36067. extra: 489/454,
  36068. bottom: 61/550
  36069. }
  36070. },
  36071. frontFormal: {
  36072. height: math.unit(5 + 5/12, "feet"),
  36073. weight: math.unit(130, "lb"),
  36074. name: "Front (Formal)",
  36075. image: {
  36076. source: "./media/characters/midnight-tales/front-formal.svg",
  36077. extra: 489/454,
  36078. bottom: 61/550
  36079. }
  36080. },
  36081. back: {
  36082. height: math.unit(5 + 5/12, "feet"),
  36083. weight: math.unit(130, "lb"),
  36084. name: "Back",
  36085. image: {
  36086. source: "./media/characters/midnight-tales/back.svg",
  36087. extra: 498/456,
  36088. bottom: 33/531
  36089. }
  36090. },
  36091. frontBeast: {
  36092. height: math.unit(40, "feet"),
  36093. weight: math.unit(64000, "lb"),
  36094. name: "Front (Beast)",
  36095. image: {
  36096. source: "./media/characters/midnight-tales/front-beast.svg",
  36097. extra: 927/860,
  36098. bottom: 53/980
  36099. }
  36100. },
  36101. backBeast: {
  36102. height: math.unit(40, "feet"),
  36103. weight: math.unit(64000, "lb"),
  36104. name: "Back (Beast)",
  36105. image: {
  36106. source: "./media/characters/midnight-tales/back-beast.svg",
  36107. extra: 929/855,
  36108. bottom: 16/945
  36109. }
  36110. },
  36111. footBeast: {
  36112. height: math.unit(6.7, "feet"),
  36113. name: "Foot (Beast)",
  36114. image: {
  36115. source: "./media/characters/midnight-tales/foot-beast.svg"
  36116. }
  36117. },
  36118. headBeast: {
  36119. height: math.unit(8, "feet"),
  36120. name: "Head (Beast)",
  36121. image: {
  36122. source: "./media/characters/midnight-tales/head-beast.svg"
  36123. }
  36124. },
  36125. },
  36126. [
  36127. {
  36128. name: "Normal",
  36129. height: math.unit(5 + 5 / 12, "feet"),
  36130. default: true
  36131. },
  36132. {
  36133. name: "Macro",
  36134. height: math.unit(25, "feet")
  36135. },
  36136. ]
  36137. ))
  36138. characterMakers.push(() => makeCharacter(
  36139. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36140. {
  36141. front: {
  36142. height: math.unit(5 + 10/12, "feet"),
  36143. name: "Front",
  36144. image: {
  36145. source: "./media/characters/argon/front.svg",
  36146. extra: 2009/1935,
  36147. bottom: 118/2127
  36148. }
  36149. },
  36150. back: {
  36151. height: math.unit(5 + 10/12, "feet"),
  36152. name: "Back",
  36153. image: {
  36154. source: "./media/characters/argon/back.svg",
  36155. extra: 2047/1992,
  36156. bottom: 20/2067
  36157. }
  36158. },
  36159. frontDressed: {
  36160. height: math.unit(5 + 10/12, "feet"),
  36161. name: "Front (Dressed)",
  36162. image: {
  36163. source: "./media/characters/argon/front-dressed.svg",
  36164. extra: 2009/1935,
  36165. bottom: 118/2127
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(5 + 10/12, "feet"),
  36173. default: true
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36179. {
  36180. front: {
  36181. height: math.unit(8 + 6/12, "feet"),
  36182. weight: math.unit(1150, "lb"),
  36183. name: "Front",
  36184. image: {
  36185. source: "./media/characters/kichi/front.svg",
  36186. extra: 1267/1164,
  36187. bottom: 61/1328
  36188. }
  36189. },
  36190. back: {
  36191. height: math.unit(8 + 6/12, "feet"),
  36192. weight: math.unit(1150, "lb"),
  36193. name: "Back",
  36194. image: {
  36195. source: "./media/characters/kichi/back.svg",
  36196. extra: 1273/1166,
  36197. bottom: 33/1306
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(8 + 6/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6, "feet"),
  36214. weight: math.unit(210, "lb"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/manetel-greyscale/front.svg",
  36218. extra: 350/312,
  36219. bottom: 8/358
  36220. }
  36221. },
  36222. },
  36223. [
  36224. {
  36225. name: "Micro",
  36226. height: math.unit(2, "inches")
  36227. },
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(6, "feet"),
  36231. default: true
  36232. },
  36233. {
  36234. name: "Minimacro",
  36235. height: math.unit(17, "feet")
  36236. },
  36237. {
  36238. name: "Macro",
  36239. height: math.unit(117, "feet")
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36245. {
  36246. side: {
  36247. height: math.unit(5 + 1/12, "feet"),
  36248. weight: math.unit(418, "lb"),
  36249. name: "Side",
  36250. image: {
  36251. source: "./media/characters/softpurr/side.svg",
  36252. extra: 1993/1945,
  36253. bottom: 134/2127
  36254. }
  36255. },
  36256. front: {
  36257. height: math.unit(5 + 1/12, "feet"),
  36258. weight: math.unit(418, "lb"),
  36259. name: "Front",
  36260. image: {
  36261. source: "./media/characters/softpurr/front.svg",
  36262. extra: 1950/1856,
  36263. bottom: 174/2124
  36264. }
  36265. },
  36266. paw: {
  36267. height: math.unit(1, "feet"),
  36268. name: "Paw",
  36269. image: {
  36270. source: "./media/characters/softpurr/paw.svg"
  36271. }
  36272. },
  36273. },
  36274. [
  36275. {
  36276. name: "Normal",
  36277. height: math.unit(5 + 1/12, "feet"),
  36278. default: true
  36279. },
  36280. ]
  36281. ))
  36282. characterMakers.push(() => makeCharacter(
  36283. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36284. {
  36285. front: {
  36286. height: math.unit(260, "meters"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/anahita/front.svg",
  36290. extra: 665/635,
  36291. bottom: 89/754
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Macro",
  36298. height: math.unit(260, "meters"),
  36299. default: true
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36305. {
  36306. front: {
  36307. height: math.unit(4 + 10/12, "feet"),
  36308. weight: math.unit(160, "lb"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/chip-mouse/front.svg",
  36312. extra: 3528/3408,
  36313. bottom: 0/3528
  36314. }
  36315. },
  36316. frontNsfw: {
  36317. height: math.unit(4 + 10/12, "feet"),
  36318. weight: math.unit(160, "lb"),
  36319. name: "Front (NSFW)",
  36320. image: {
  36321. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36322. extra: 3528/3408,
  36323. bottom: 0/3528
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Normal",
  36330. height: math.unit(4 + 10/12, "feet"),
  36331. default: true
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36337. {
  36338. side: {
  36339. height: math.unit(10, "feet"),
  36340. weight: math.unit(14000, "lb"),
  36341. name: "Side",
  36342. image: {
  36343. source: "./media/characters/kremm/side.svg",
  36344. extra: 1390/1053,
  36345. bottom: 90/1480
  36346. }
  36347. },
  36348. gut: {
  36349. height: math.unit(5.8, "feet"),
  36350. name: "Gut",
  36351. image: {
  36352. source: "./media/characters/kremm/gut.svg"
  36353. }
  36354. },
  36355. ass: {
  36356. height: math.unit(6.1, "feet"),
  36357. name: "Ass",
  36358. image: {
  36359. source: "./media/characters/kremm/ass.svg"
  36360. }
  36361. },
  36362. jaws: {
  36363. height: math.unit(2.2, "feet"),
  36364. name: "Jaws",
  36365. image: {
  36366. source: "./media/characters/kremm/jaws.svg"
  36367. }
  36368. },
  36369. dick: {
  36370. height: math.unit(4.26, "feet"),
  36371. name: "Dick",
  36372. image: {
  36373. source: "./media/characters/kremm/dick.svg"
  36374. }
  36375. },
  36376. },
  36377. [
  36378. {
  36379. name: "Normal",
  36380. height: math.unit(10, "feet"),
  36381. default: true
  36382. },
  36383. ]
  36384. ))
  36385. characterMakers.push(() => makeCharacter(
  36386. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36387. {
  36388. front: {
  36389. height: math.unit(30, "stories"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/kai/front.svg",
  36393. extra: 1892/1718,
  36394. bottom: 162/2054
  36395. }
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "Macro",
  36401. height: math.unit(30, "stories"),
  36402. default: true
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(6 + 4/12, "feet"),
  36411. weight: math.unit(145, "lb"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/sykes/front.svg",
  36415. extra: 1321 / 1187,
  36416. bottom: 66 / 1387
  36417. }
  36418. },
  36419. back: {
  36420. height: math.unit(6 + 4/12, "feet"),
  36421. weight: math.unit(145, "lb"),
  36422. name: "Back",
  36423. image: {
  36424. source: "./media/characters/sykes/back.svg",
  36425. extra: 1326/1181,
  36426. bottom: 31/1357
  36427. }
  36428. },
  36429. traditionalOutfit: {
  36430. height: math.unit(6 + 4/12, "feet"),
  36431. weight: math.unit(145, "lb"),
  36432. name: "Traditional Outfit",
  36433. image: {
  36434. source: "./media/characters/sykes/traditional-outfit.svg",
  36435. extra: 1321 / 1187,
  36436. bottom: 66 / 1387
  36437. }
  36438. },
  36439. adventureOutfit: {
  36440. height: math.unit(6 + 4/12, "feet"),
  36441. weight: math.unit(145, "lb"),
  36442. name: "Adventure Outfit",
  36443. image: {
  36444. source: "./media/characters/sykes/adventure-outfit.svg",
  36445. extra: 1321 / 1187,
  36446. bottom: 66 / 1387
  36447. }
  36448. },
  36449. handLeft: {
  36450. height: math.unit(0.9, "feet"),
  36451. name: "Hand (Left)",
  36452. image: {
  36453. source: "./media/characters/sykes/hand-left.svg"
  36454. }
  36455. },
  36456. handRight: {
  36457. height: math.unit(0.839, "feet"),
  36458. name: "Hand (Right)",
  36459. image: {
  36460. source: "./media/characters/sykes/hand-right.svg"
  36461. }
  36462. },
  36463. leftFoot: {
  36464. height: math.unit(1.2, "feet"),
  36465. name: "Foot (Left)",
  36466. image: {
  36467. source: "./media/characters/sykes/foot-left.svg"
  36468. }
  36469. },
  36470. rightFoot: {
  36471. height: math.unit(1.2, "feet"),
  36472. name: "Foot (Right)",
  36473. image: {
  36474. source: "./media/characters/sykes/foot-right.svg"
  36475. }
  36476. },
  36477. maw: {
  36478. height: math.unit(1.93, "feet"),
  36479. name: "Maw",
  36480. image: {
  36481. source: "./media/characters/sykes/maw.svg"
  36482. }
  36483. },
  36484. teeth: {
  36485. height: math.unit(0.51, "feet"),
  36486. name: "Teeth",
  36487. image: {
  36488. source: "./media/characters/sykes/teeth.svg"
  36489. }
  36490. },
  36491. tongue: {
  36492. height: math.unit(2.13, "feet"),
  36493. name: "Tongue",
  36494. image: {
  36495. source: "./media/characters/sykes/tongue.svg"
  36496. }
  36497. },
  36498. uvula: {
  36499. height: math.unit(0.16, "feet"),
  36500. name: "Uvula",
  36501. image: {
  36502. source: "./media/characters/sykes/uvula.svg"
  36503. }
  36504. },
  36505. collar: {
  36506. height: math.unit(0.287, "feet"),
  36507. name: "Collar",
  36508. image: {
  36509. source: "./media/characters/sykes/collar.svg"
  36510. }
  36511. },
  36512. tail: {
  36513. height: math.unit(3.8, "feet"),
  36514. name: "Tail",
  36515. image: {
  36516. source: "./media/characters/sykes/tail.svg"
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Shrunken",
  36523. height: math.unit(5, "inches")
  36524. },
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(6 + 4 / 12, "feet"),
  36528. default: true
  36529. },
  36530. {
  36531. name: "Big",
  36532. height: math.unit(15, "feet")
  36533. },
  36534. ]
  36535. ))
  36536. characterMakers.push(() => makeCharacter(
  36537. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36538. {
  36539. front: {
  36540. height: math.unit(5 + 8/12, "feet"),
  36541. weight: math.unit(190, "lb"),
  36542. name: "Front",
  36543. image: {
  36544. source: "./media/characters/oven-otter/front.svg",
  36545. extra: 1809/1740,
  36546. bottom: 181/1990
  36547. }
  36548. },
  36549. back: {
  36550. height: math.unit(5 + 8/12, "feet"),
  36551. weight: math.unit(190, "lb"),
  36552. name: "Back",
  36553. image: {
  36554. source: "./media/characters/oven-otter/back.svg",
  36555. extra: 1709/1635,
  36556. bottom: 118/1827
  36557. }
  36558. },
  36559. hand: {
  36560. height: math.unit(1.07, "feet"),
  36561. name: "Hand",
  36562. image: {
  36563. source: "./media/characters/oven-otter/hand.svg"
  36564. }
  36565. },
  36566. beans: {
  36567. height: math.unit(1.74, "feet"),
  36568. name: "Beans",
  36569. image: {
  36570. source: "./media/characters/oven-otter/beans.svg"
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Micro",
  36577. height: math.unit(0.5, "inches")
  36578. },
  36579. {
  36580. name: "Normal",
  36581. height: math.unit(5 + 8/12, "feet"),
  36582. default: true
  36583. },
  36584. {
  36585. name: "Macro",
  36586. height: math.unit(250, "feet")
  36587. },
  36588. {
  36589. name: "Really High",
  36590. height: math.unit(420, "feet")
  36591. },
  36592. ]
  36593. ))
  36594. characterMakers.push(() => makeCharacter(
  36595. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36596. {
  36597. front: {
  36598. height: math.unit(5, "meters"),
  36599. weight: math.unit(292000000000000, "kg"),
  36600. name: "Front",
  36601. image: {
  36602. source: "./media/characters/devourer/front.svg",
  36603. extra: 1800/1733,
  36604. bottom: 211/2011
  36605. }
  36606. },
  36607. maw: {
  36608. height: math.unit(1.1, "meter"),
  36609. name: "Maw",
  36610. image: {
  36611. source: "./media/characters/devourer/maw.svg"
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Small",
  36618. height: math.unit(3, "meters")
  36619. },
  36620. {
  36621. name: "Large",
  36622. height: math.unit(5, "meters"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36629. {
  36630. front: {
  36631. height: math.unit(6, "feet"),
  36632. weight: math.unit(400, "lb"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/ellarby/front.svg",
  36636. extra: 1909/1763,
  36637. bottom: 80/1989
  36638. }
  36639. },
  36640. back: {
  36641. height: math.unit(6, "feet"),
  36642. weight: math.unit(400, "lb"),
  36643. name: "Back",
  36644. image: {
  36645. source: "./media/characters/ellarby/back.svg",
  36646. extra: 1914/1784,
  36647. bottom: 172/2086
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Mischief",
  36654. height: math.unit(18, "inches")
  36655. },
  36656. {
  36657. name: "Trouble",
  36658. height: math.unit(12, "feet")
  36659. },
  36660. {
  36661. name: "Havoc",
  36662. height: math.unit(200, "feet"),
  36663. default: true
  36664. },
  36665. {
  36666. name: "Pandemonium",
  36667. height: math.unit(1, "mile")
  36668. },
  36669. {
  36670. name: "Catastrophe",
  36671. height: math.unit(100, "miles")
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36677. {
  36678. front: {
  36679. height: math.unit(4.7, "meters"),
  36680. weight: math.unit(6500, "kg"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/vex/front.svg",
  36684. extra: 1288/1140,
  36685. bottom: 100/1388
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(4.7, "meters"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36699. {
  36700. normal: {
  36701. height: math.unit(6, "feet"),
  36702. weight: math.unit(350, "lb"),
  36703. name: "Normal",
  36704. image: {
  36705. source: "./media/characters/teshy/normal.svg",
  36706. extra: 1795/1735,
  36707. bottom: 16/1811
  36708. }
  36709. },
  36710. monsterFront: {
  36711. height: math.unit(12, "feet"),
  36712. weight: math.unit(4700, "lb"),
  36713. name: "Monster (Front)",
  36714. image: {
  36715. source: "./media/characters/teshy/monster-front.svg",
  36716. extra: 2042/2034,
  36717. bottom: 128/2170
  36718. }
  36719. },
  36720. monsterSide: {
  36721. height: math.unit(12, "feet"),
  36722. weight: math.unit(4700, "lb"),
  36723. name: "Monster (Side)",
  36724. image: {
  36725. source: "./media/characters/teshy/monster-side.svg",
  36726. extra: 2067/2056,
  36727. bottom: 70/2137
  36728. }
  36729. },
  36730. monsterBack: {
  36731. height: math.unit(12, "feet"),
  36732. weight: math.unit(4700, "lb"),
  36733. name: "Monster (Back)",
  36734. image: {
  36735. source: "./media/characters/teshy/monster-back.svg",
  36736. extra: 1921/1914,
  36737. bottom: 171/2092
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(6, "feet"),
  36745. default: true
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(6, "feet"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/ramey/front.svg",
  36757. extra: 790/787,
  36758. bottom: 27/817
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(6, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(5 + 5/12, "feet"),
  36775. weight: math.unit(120, "lb"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/phirae/front.svg",
  36779. extra: 2491/2436,
  36780. bottom: 38/2529
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(5 + 5/12, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36794. {
  36795. front: {
  36796. height: math.unit(5 + 3/12, "feet"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/stagglas/front.svg",
  36800. extra: 962/882,
  36801. bottom: 53/1015
  36802. }
  36803. },
  36804. feral: {
  36805. height: math.unit(335, "cm"),
  36806. name: "Feral",
  36807. image: {
  36808. source: "./media/characters/stagglas/feral.svg",
  36809. extra: 1732/1090,
  36810. bottom: 48/1780
  36811. }
  36812. },
  36813. },
  36814. [
  36815. {
  36816. name: "Normal",
  36817. height: math.unit(5 + 3/12, "feet"),
  36818. default: true
  36819. },
  36820. ]
  36821. ))
  36822. characterMakers.push(() => makeCharacter(
  36823. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36824. {
  36825. front: {
  36826. height: math.unit(5 + 4/12, "feet"),
  36827. weight: math.unit(145, "lb"),
  36828. name: "Front",
  36829. image: {
  36830. source: "./media/characters/starra/front.svg",
  36831. extra: 1790/1691,
  36832. bottom: 91/1881
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(5 + 4/12, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(3.5, "meters"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36852. extra: 1248/972,
  36853. bottom: 38/1286
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(3.5, "meters"),
  36861. default: true
  36862. },
  36863. ]
  36864. ))
  36865. characterMakers.push(() => makeCharacter(
  36866. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36867. {
  36868. side: {
  36869. height: math.unit(8 + 2/12, "feet"),
  36870. weight: math.unit(1240, "lb"),
  36871. name: "Side",
  36872. image: {
  36873. source: "./media/characters/mika-valentine/side.svg",
  36874. extra: 2670/2501,
  36875. bottom: 250/2920
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(8 + 2/12, "feet"),
  36883. default: true
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(7 + 2/12, "feet"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/xoltol/front.svg",
  36895. extra: 2212/2124,
  36896. bottom: 84/2296
  36897. }
  36898. },
  36899. side: {
  36900. height: math.unit(7 + 2/12, "feet"),
  36901. name: "Side",
  36902. image: {
  36903. source: "./media/characters/xoltol/side.svg",
  36904. extra: 2273/2197,
  36905. bottom: 26/2299
  36906. }
  36907. },
  36908. hand: {
  36909. height: math.unit(2.5, "feet"),
  36910. name: "Hand",
  36911. image: {
  36912. source: "./media/characters/xoltol/hand.svg"
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Small-ish",
  36919. height: math.unit(5 + 11/12, "feet")
  36920. },
  36921. {
  36922. name: "Normal",
  36923. height: math.unit(7 + 2/12, "feet")
  36924. },
  36925. {
  36926. name: "\"Macro\"",
  36927. height: math.unit(14 + 9/12, "feet"),
  36928. default: true
  36929. },
  36930. {
  36931. name: "Alternate Height",
  36932. height: math.unit(20, "feet")
  36933. },
  36934. {
  36935. name: "Actually Macro",
  36936. height: math.unit(100, "feet")
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36942. {
  36943. front: {
  36944. height: math.unit(5 + 2/12, "feet"),
  36945. weight: math.unit(75, "kg"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/kotetsu-redwood/front.svg",
  36949. extra: 1053/942,
  36950. bottom: 60/1113
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(5 + 2/12, "feet"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(2.4, "meters"),
  36967. weight: math.unit(125, "kg"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/lilith/front.svg",
  36971. extra: 1590/1513,
  36972. bottom: 203/1793
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Humanoid",
  36979. height: math.unit(2.4, "meters")
  36980. },
  36981. {
  36982. name: "Normal",
  36983. height: math.unit(6, "meters"),
  36984. default: true
  36985. },
  36986. {
  36987. name: "Largest",
  36988. height: math.unit(55, "meters")
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(8 + 4/12, "feet"),
  36997. weight: math.unit(535, "lb"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/beh'kah-bolger/front.svg",
  37001. extra: 1660/1603,
  37002. bottom: 37/1697
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(8 + 4/12, "feet"),
  37010. default: true
  37011. },
  37012. {
  37013. name: "Kaiju",
  37014. height: math.unit(250, "feet")
  37015. },
  37016. {
  37017. name: "Still Growing",
  37018. height: math.unit(10, "miles")
  37019. },
  37020. {
  37021. name: "Continental",
  37022. height: math.unit(5000, "miles")
  37023. },
  37024. {
  37025. name: "Final Form",
  37026. height: math.unit(2500000, "miles")
  37027. },
  37028. ]
  37029. ))
  37030. characterMakers.push(() => makeCharacter(
  37031. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37032. {
  37033. front: {
  37034. height: math.unit(7 + 2/12, "feet"),
  37035. weight: math.unit(230, "kg"),
  37036. name: "Front",
  37037. image: {
  37038. source: "./media/characters/tatyana-milewska/front.svg",
  37039. extra: 1199/1150,
  37040. bottom: 86/1285
  37041. }
  37042. },
  37043. },
  37044. [
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(7 + 2/12, "feet"),
  37048. default: true
  37049. },
  37050. {
  37051. name: "Big",
  37052. height: math.unit(12, "feet")
  37053. },
  37054. {
  37055. name: "Minimacro",
  37056. height: math.unit(20, "feet")
  37057. },
  37058. {
  37059. name: "Macro",
  37060. height: math.unit(120, "feet")
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37066. {
  37067. front: {
  37068. height: math.unit(7 + 8/12, "feet"),
  37069. weight: math.unit(152, "kg"),
  37070. name: "Front",
  37071. image: {
  37072. source: "./media/characters/helen-arri/front.svg",
  37073. extra: 440/423,
  37074. bottom: 14/454
  37075. }
  37076. },
  37077. back: {
  37078. height: math.unit(7 + 8/12, "feet"),
  37079. weight: math.unit(152, "kg"),
  37080. name: "Back",
  37081. image: {
  37082. source: "./media/characters/helen-arri/back.svg",
  37083. extra: 443/426,
  37084. bottom: 8/451
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(7 + 8/12, "feet"),
  37092. default: true
  37093. },
  37094. {
  37095. name: "Big",
  37096. height: math.unit(14, "feet")
  37097. },
  37098. {
  37099. name: "Minimacro",
  37100. height: math.unit(24, "feet")
  37101. },
  37102. {
  37103. name: "Macro",
  37104. height: math.unit(140, "feet")
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37110. {
  37111. front: {
  37112. height: math.unit(6, "meters"),
  37113. name: "Front",
  37114. image: {
  37115. source: "./media/characters/ehanu-rehu/front.svg",
  37116. extra: 1800/1800,
  37117. bottom: 59/1859
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Normal",
  37124. height: math.unit(6, "meters"),
  37125. default: true
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37131. {
  37132. front: {
  37133. height: math.unit(7 + 3/12, "feet"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/renholder/front.svg",
  37137. extra: 3096/2960,
  37138. bottom: 250/3346
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Normal Bat",
  37145. height: math.unit(7 + 3/12, "feet"),
  37146. default: true
  37147. },
  37148. {
  37149. name: "Slightly Tall Bat",
  37150. height: math.unit(100, "feet")
  37151. },
  37152. {
  37153. name: "Big Bat",
  37154. height: math.unit(1000, "feet")
  37155. },
  37156. {
  37157. name: "City-Sized Bat",
  37158. height: math.unit(200000, "feet")
  37159. },
  37160. {
  37161. name: "Bigger Bat",
  37162. height: math.unit(10000, "miles")
  37163. },
  37164. {
  37165. name: "Solar Sized Bat",
  37166. height: math.unit(100, "AU")
  37167. },
  37168. {
  37169. name: "Galactic Bat",
  37170. height: math.unit(200000, "lightyears")
  37171. },
  37172. {
  37173. name: "Universally Known Bat",
  37174. height: math.unit(1, "universe")
  37175. },
  37176. ]
  37177. ))
  37178. characterMakers.push(() => makeCharacter(
  37179. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37180. {
  37181. front: {
  37182. height: math.unit(6 + 11/12, "feet"),
  37183. weight: math.unit(250, "lb"),
  37184. name: "Front",
  37185. image: {
  37186. source: "./media/characters/cookiecat/front.svg",
  37187. extra: 893/827,
  37188. bottom: 14/907
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Micro",
  37195. height: math.unit(3, "inches")
  37196. },
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(6 + 11/12, "feet"),
  37200. default: true
  37201. },
  37202. {
  37203. name: "Macro",
  37204. height: math.unit(100, "feet")
  37205. },
  37206. {
  37207. name: "Macro+",
  37208. height: math.unit(404, "feet")
  37209. },
  37210. {
  37211. name: "Megamacro",
  37212. height: math.unit(165, "miles")
  37213. },
  37214. {
  37215. name: "Planetary",
  37216. height: math.unit(4600, "miles")
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(10 + 3/12, "feet"),
  37225. weight: math.unit(1500, "lb"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/tux-kusanagi/front.svg",
  37229. extra: 944/840,
  37230. bottom: 39/983
  37231. }
  37232. },
  37233. back: {
  37234. height: math.unit(10 + 3/12, "feet"),
  37235. weight: math.unit(1500, "lb"),
  37236. name: "Back",
  37237. image: {
  37238. source: "./media/characters/tux-kusanagi/back.svg",
  37239. extra: 941/842,
  37240. bottom: 28/969
  37241. }
  37242. },
  37243. rump: {
  37244. height: math.unit(5.25, "feet"),
  37245. name: "Rump",
  37246. image: {
  37247. source: "./media/characters/tux-kusanagi/rump.svg"
  37248. }
  37249. },
  37250. beak: {
  37251. height: math.unit(1.54, "feet"),
  37252. name: "Beak",
  37253. image: {
  37254. source: "./media/characters/tux-kusanagi/beak.svg"
  37255. }
  37256. },
  37257. },
  37258. [
  37259. {
  37260. name: "Normal",
  37261. height: math.unit(10 + 3/12, "feet"),
  37262. default: true
  37263. },
  37264. ]
  37265. ))
  37266. characterMakers.push(() => makeCharacter(
  37267. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37268. {
  37269. front: {
  37270. height: math.unit(58, "feet"),
  37271. weight: math.unit(200, "tons"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/uzarmazari/front.svg",
  37275. extra: 1575/1455,
  37276. bottom: 152/1727
  37277. }
  37278. },
  37279. back: {
  37280. height: math.unit(58, "feet"),
  37281. weight: math.unit(200, "tons"),
  37282. name: "Back",
  37283. image: {
  37284. source: "./media/characters/uzarmazari/back.svg",
  37285. extra: 1585/1510,
  37286. bottom: 157/1742
  37287. }
  37288. },
  37289. head: {
  37290. height: math.unit(26, "feet"),
  37291. name: "Head",
  37292. image: {
  37293. source: "./media/characters/uzarmazari/head.svg"
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(58, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37307. {
  37308. side: {
  37309. height: math.unit(15, "feet"),
  37310. name: "Side",
  37311. image: {
  37312. source: "./media/characters/akitu/side.svg",
  37313. extra: 1421/1321,
  37314. bottom: 157/1578
  37315. }
  37316. },
  37317. front: {
  37318. height: math.unit(15, "feet"),
  37319. name: "Front",
  37320. image: {
  37321. source: "./media/characters/akitu/front.svg",
  37322. extra: 1435/1326,
  37323. bottom: 232/1667
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Normal",
  37330. height: math.unit(15, "feet"),
  37331. default: true
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37337. {
  37338. front: {
  37339. height: math.unit(10 + 8/12, "feet"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/azalie-croixland/front.svg",
  37343. extra: 1972/1856,
  37344. bottom: 31/2003
  37345. }
  37346. },
  37347. },
  37348. [
  37349. {
  37350. name: "Original Height",
  37351. height: math.unit(5 + 4/12, "feet")
  37352. },
  37353. {
  37354. name: "Normal Height",
  37355. height: math.unit(10 + 8/12, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37362. {
  37363. side: {
  37364. height: math.unit(7 + 1/12, "feet"),
  37365. weight: math.unit(245, "lb"),
  37366. name: "Side",
  37367. image: {
  37368. source: "./media/characters/kavus-kazian/side.svg",
  37369. extra: 349/342,
  37370. bottom: 15/364
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Normal",
  37377. height: math.unit(7 + 1/12, "feet"),
  37378. default: true
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37384. {
  37385. normalFront: {
  37386. height: math.unit(5 + 11/12, "feet"),
  37387. name: "Front",
  37388. image: {
  37389. source: "./media/characters/moonlight-rose/normal-front.svg",
  37390. extra: 1980/1825,
  37391. bottom: 18/1998
  37392. },
  37393. form: "normal",
  37394. default: true
  37395. },
  37396. normalBack: {
  37397. height: math.unit(5 + 11/12, "feet"),
  37398. name: "Back",
  37399. image: {
  37400. source: "./media/characters/moonlight-rose/normal-back.svg",
  37401. extra: 2010/1839,
  37402. bottom: 10/2020
  37403. },
  37404. form: "normal"
  37405. },
  37406. demonFront: {
  37407. height: math.unit(1.5, "earths"),
  37408. name: "Front",
  37409. image: {
  37410. source: "./media/characters/moonlight-rose/demon.svg",
  37411. extra: 1400/1294,
  37412. bottom: 45/1445
  37413. },
  37414. form: "demon",
  37415. default: true
  37416. },
  37417. terraFront: {
  37418. height: math.unit(1.5, "earths"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/moonlight-rose/terra.svg"
  37422. },
  37423. form: "terra",
  37424. default: true
  37425. },
  37426. jupiterFront: {
  37427. height: math.unit(69911*2, "km"),
  37428. name: "Front",
  37429. image: {
  37430. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37431. extra: 1367/1286,
  37432. bottom: 55/1422
  37433. },
  37434. form: "jupiter",
  37435. default: true
  37436. },
  37437. neptuneFront: {
  37438. height: math.unit(24622*2, "feet"),
  37439. name: "Front",
  37440. image: {
  37441. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37442. extra: 1851/1712,
  37443. bottom: 0/1851
  37444. },
  37445. form: "neptune",
  37446. default: true
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "\"Natural\" Height",
  37452. height: math.unit(5 + 11/12, "feet"),
  37453. form: "normal"
  37454. },
  37455. {
  37456. name: "Smallest comfortable size",
  37457. height: math.unit(40, "meters"),
  37458. form: "normal"
  37459. },
  37460. {
  37461. name: "Common size",
  37462. height: math.unit(50, "km"),
  37463. form: "normal",
  37464. default: true
  37465. },
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(1.5, "earths"),
  37469. form: "demon",
  37470. default: true
  37471. },
  37472. {
  37473. name: "Universal",
  37474. height: math.unit(15, "universes"),
  37475. form: "demon"
  37476. },
  37477. {
  37478. name: "Earth",
  37479. height: math.unit(1.5, "earths"),
  37480. form: "terra",
  37481. default: true
  37482. },
  37483. {
  37484. name: "Super Earth",
  37485. height: math.unit(67.5, "earths"),
  37486. form: "terra"
  37487. },
  37488. {
  37489. name: "Doesn't fit in a solar system...",
  37490. height: math.unit(1, "galaxy"),
  37491. form: "terra"
  37492. },
  37493. {
  37494. name: "Saturn",
  37495. height: math.unit(58232*2, "km"),
  37496. form: "jupiter"
  37497. },
  37498. {
  37499. name: "Jupiter",
  37500. height: math.unit(69911*2, "km"),
  37501. form: "jupiter",
  37502. default: true
  37503. },
  37504. {
  37505. name: "HD 100546 b",
  37506. height: math.unit(482938, "km"),
  37507. form: "jupiter"
  37508. },
  37509. {
  37510. name: "Enceladus",
  37511. height: math.unit(513*2, "km"),
  37512. form: "neptune"
  37513. },
  37514. {
  37515. name: "Europe",
  37516. height: math.unit(1560*2, "km"),
  37517. form: "neptune"
  37518. },
  37519. {
  37520. name: "Neptune",
  37521. height: math.unit(24622*2, "km"),
  37522. form: "neptune",
  37523. default: true
  37524. },
  37525. {
  37526. name: "CoRoT-9b",
  37527. height: math.unit(75067*2, "km"),
  37528. form: "neptune"
  37529. },
  37530. ],
  37531. {
  37532. "normal": {
  37533. name: "Normal",
  37534. default: true
  37535. },
  37536. "demon": {
  37537. name: "Demon"
  37538. },
  37539. "terra": {
  37540. name: "Terra"
  37541. },
  37542. "jupiter": {
  37543. name: "Jupiter"
  37544. },
  37545. "neptune": {
  37546. name: "Neptune"
  37547. }
  37548. }
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37552. {
  37553. front: {
  37554. height: math.unit(16, "feet"),
  37555. weight: math.unit(610, "kg"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/huckle/front.svg",
  37559. extra: 1731/1625,
  37560. bottom: 33/1764
  37561. }
  37562. },
  37563. back: {
  37564. height: math.unit(16, "feet"),
  37565. weight: math.unit(610, "kg"),
  37566. name: "Back",
  37567. image: {
  37568. source: "./media/characters/huckle/back.svg",
  37569. extra: 1738/1651,
  37570. bottom: 37/1775
  37571. }
  37572. },
  37573. laughing: {
  37574. height: math.unit(3.75, "feet"),
  37575. name: "Laughing",
  37576. image: {
  37577. source: "./media/characters/huckle/laughing.svg"
  37578. }
  37579. },
  37580. angry: {
  37581. height: math.unit(4.15, "feet"),
  37582. name: "Angry",
  37583. image: {
  37584. source: "./media/characters/huckle/angry.svg"
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(16, "feet"),
  37592. default: true
  37593. },
  37594. {
  37595. name: "Mini Macro",
  37596. height: math.unit(463, "feet")
  37597. },
  37598. {
  37599. name: "Macro",
  37600. height: math.unit(1680, "meters")
  37601. },
  37602. {
  37603. name: "Mega Macro",
  37604. height: math.unit(175, "km")
  37605. },
  37606. {
  37607. name: "Terra Macro",
  37608. height: math.unit(32, "gigameters")
  37609. },
  37610. {
  37611. name: "Multiverse+",
  37612. height: math.unit(2.56e23, "yottameters")
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(6 + 9/12, "feet"),
  37621. weight: math.unit(280, "lb"),
  37622. name: "Front",
  37623. image: {
  37624. source: "./media/characters/candy/front.svg",
  37625. extra: 234/217,
  37626. bottom: 11/245
  37627. }
  37628. },
  37629. },
  37630. [
  37631. {
  37632. name: "Really Small",
  37633. height: math.unit(0.1, "nm")
  37634. },
  37635. {
  37636. name: "Micro",
  37637. height: math.unit(2, "inches")
  37638. },
  37639. {
  37640. name: "Normal",
  37641. height: math.unit(6 + 9/12, "feet"),
  37642. default: true
  37643. },
  37644. {
  37645. name: "Small Macro",
  37646. height: math.unit(69, "feet")
  37647. },
  37648. {
  37649. name: "Macro",
  37650. height: math.unit(160, "feet")
  37651. },
  37652. {
  37653. name: "Megamacro",
  37654. height: math.unit(22000, "miles")
  37655. },
  37656. {
  37657. name: "Gigamacro",
  37658. height: math.unit(50000, "miles")
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(4, "feet"),
  37667. weight: math.unit(90, "lb"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/joey-mcdonald/front.svg",
  37671. extra: 1059/852,
  37672. bottom: 33/1092
  37673. }
  37674. },
  37675. back: {
  37676. height: math.unit(4, "feet"),
  37677. weight: math.unit(90, "lb"),
  37678. name: "Back",
  37679. image: {
  37680. source: "./media/characters/joey-mcdonald/back.svg",
  37681. extra: 1077/879,
  37682. bottom: 5/1082
  37683. }
  37684. },
  37685. frontKobold: {
  37686. height: math.unit(4, "feet"),
  37687. weight: math.unit(100, "lb"),
  37688. name: "Front-kobold",
  37689. image: {
  37690. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37691. extra: 1480/1367,
  37692. bottom: 0/1480
  37693. }
  37694. },
  37695. backKobold: {
  37696. height: math.unit(4, "feet"),
  37697. weight: math.unit(100, "lb"),
  37698. name: "Back-kobold",
  37699. image: {
  37700. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37701. extra: 1449/1361,
  37702. bottom: 0/1449
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(4, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(12 + 6/12, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/kass-lockheed/front.svg",
  37722. extra: 354/343,
  37723. bottom: 9/363
  37724. }
  37725. },
  37726. back: {
  37727. height: math.unit(12 + 6/12, "feet"),
  37728. name: "Back",
  37729. image: {
  37730. source: "./media/characters/kass-lockheed/back.svg",
  37731. extra: 364/352,
  37732. bottom: 3/367
  37733. }
  37734. },
  37735. dick: {
  37736. height: math.unit(3.12, "feet"),
  37737. name: "Dick",
  37738. image: {
  37739. source: "./media/characters/kass-lockheed/dick.svg"
  37740. }
  37741. },
  37742. head: {
  37743. height: math.unit(2.6, "feet"),
  37744. name: "Head",
  37745. image: {
  37746. source: "./media/characters/kass-lockheed/head.svg"
  37747. }
  37748. },
  37749. bleh: {
  37750. height: math.unit(2.85, "feet"),
  37751. name: "Bleh",
  37752. image: {
  37753. source: "./media/characters/kass-lockheed/bleh.svg"
  37754. }
  37755. },
  37756. smug: {
  37757. height: math.unit(2.85, "feet"),
  37758. name: "Smug",
  37759. image: {
  37760. source: "./media/characters/kass-lockheed/smug.svg"
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Normal",
  37767. height: math.unit(12 + 6/12, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37774. {
  37775. front: {
  37776. height: math.unit(6 + 2/12, "feet"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/taylor/front.svg",
  37780. extra: 639/495,
  37781. bottom: 12/651
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(6 + 2/12, "feet"),
  37789. default: true
  37790. },
  37791. {
  37792. name: "Big",
  37793. height: math.unit(15, "feet")
  37794. },
  37795. {
  37796. name: "Lorg",
  37797. height: math.unit(80, "feet")
  37798. },
  37799. {
  37800. name: "Too Lorg",
  37801. height: math.unit(120, "feet")
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(15, "feet"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/kaizer/front.svg",
  37813. extra: 1612/1436,
  37814. bottom: 43/1655
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(15, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(2, "feet"),
  37831. weight: math.unit(30, "lb"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/sandy/front.svg",
  37835. extra: 1439/1307,
  37836. bottom: 194/1633
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(2, "feet"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37850. {
  37851. front: {
  37852. height: math.unit(3, "feet"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/mellvi/front.svg",
  37856. extra: 1831/1630,
  37857. bottom: 58/1889
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(3, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37871. {
  37872. front: {
  37873. height: math.unit(5 + 11/12, "feet"),
  37874. weight: math.unit(200, "lb"),
  37875. name: "Front",
  37876. image: {
  37877. source: "./media/characters/shirou/front.svg",
  37878. extra: 2491/2383,
  37879. bottom: 189/2680
  37880. }
  37881. },
  37882. back: {
  37883. height: math.unit(5 + 11/12, "feet"),
  37884. weight: math.unit(200, "lb"),
  37885. name: "Back",
  37886. image: {
  37887. source: "./media/characters/shirou/back.svg",
  37888. extra: 2554/2450,
  37889. bottom: 76/2630
  37890. }
  37891. },
  37892. },
  37893. [
  37894. {
  37895. name: "Normal",
  37896. height: math.unit(5 + 11/12, "feet"),
  37897. default: true
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37903. {
  37904. front: {
  37905. height: math.unit(6 + 3/12, "feet"),
  37906. weight: math.unit(177, "lb"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/noryu/front.svg",
  37910. extra: 973/885,
  37911. bottom: 10/983
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Normal",
  37918. height: math.unit(6 + 3/12, "feet"),
  37919. default: true
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(5 + 6/12, "feet"),
  37928. weight: math.unit(170, "lb"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/mevolas-rubenido/front.svg",
  37932. extra: 2109/1901,
  37933. bottom: 96/2205
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(5 + 6/12, "feet"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(100, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/dee/front.svg",
  37953. extra: 2153/2036,
  37954. bottom: 59/2212
  37955. }
  37956. },
  37957. back: {
  37958. height: math.unit(100, "feet"),
  37959. name: "Back",
  37960. image: {
  37961. source: "./media/characters/dee/back.svg",
  37962. extra: 2183/2058,
  37963. bottom: 75/2258
  37964. }
  37965. },
  37966. foot: {
  37967. height: math.unit(19.43, "feet"),
  37968. name: "Foot",
  37969. image: {
  37970. source: "./media/characters/dee/foot.svg"
  37971. }
  37972. },
  37973. hoof: {
  37974. height: math.unit(20.6, "feet"),
  37975. name: "Hoof",
  37976. image: {
  37977. source: "./media/characters/dee/hoof.svg"
  37978. }
  37979. },
  37980. },
  37981. [
  37982. {
  37983. name: "Macro",
  37984. height: math.unit(100, "feet"),
  37985. default: true
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(5 + 6/12, "feet"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/teh/front.svg",
  37997. extra: 1002/847,
  37998. bottom: 62/1064
  37999. }
  38000. },
  38001. },
  38002. [
  38003. {
  38004. name: "Normal",
  38005. height: math.unit(5 + 6/12, "feet"),
  38006. default: true
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38012. {
  38013. side: {
  38014. height: math.unit(6 + 1/12, "feet"),
  38015. weight: math.unit(204, "lb"),
  38016. name: "Side",
  38017. image: {
  38018. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38019. extra: 974/775,
  38020. bottom: 169/1143
  38021. }
  38022. },
  38023. sitting: {
  38024. height: math.unit(6 + 2/12, "feet"),
  38025. weight: math.unit(204, "lb"),
  38026. name: "Sitting",
  38027. image: {
  38028. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38029. extra: 1175/964,
  38030. bottom: 378/1553
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(6 + 1/12, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(6, "inches"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/tululi/front.svg",
  38050. extra: 1997/1876,
  38051. bottom: 20/2017
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(6, "inches"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38065. {
  38066. front: {
  38067. height: math.unit(4 + 1/12, "feet"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/star/front.svg",
  38071. extra: 1493/1189,
  38072. bottom: 48/1541
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(4 + 1/12, "feet"),
  38080. default: true
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(6 + 3/12, "feet"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/comet/front.svg",
  38092. extra: 1681/1462,
  38093. bottom: 26/1707
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(6 + 3/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(950, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/vortex/front.svg",
  38113. extra: 1497/1434,
  38114. bottom: 56/1553
  38115. }
  38116. },
  38117. maw: {
  38118. height: math.unit(285, "feet"),
  38119. name: "Maw",
  38120. image: {
  38121. source: "./media/characters/vortex/maw.svg"
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Macro",
  38128. height: math.unit(950, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(600, "feet"),
  38138. weight: math.unit(0.02, "grams"),
  38139. name: "Front",
  38140. image: {
  38141. source: "./media/characters/doodle/front.svg",
  38142. extra: 1578/1413,
  38143. bottom: 37/1615
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Macro",
  38150. height: math.unit(600, "feet"),
  38151. default: true
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38157. {
  38158. front: {
  38159. height: math.unit(6 + 6/12, "feet"),
  38160. name: "Front",
  38161. image: {
  38162. source: "./media/characters/jai/front.svg",
  38163. extra: 1645/1534,
  38164. bottom: 115/1760
  38165. }
  38166. },
  38167. },
  38168. [
  38169. {
  38170. name: "Normal",
  38171. height: math.unit(6 + 6/12, "feet"),
  38172. default: true
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(6 + 8/12, "feet"),
  38181. name: "Front",
  38182. image: {
  38183. source: "./media/characters/pixel/front.svg",
  38184. extra: 1900/1735,
  38185. bottom: 63/1963
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(6 + 8/12, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38199. {
  38200. back: {
  38201. height: math.unit(4 + 1/12, "feet"),
  38202. weight: math.unit(75, "lb"),
  38203. name: "Back",
  38204. image: {
  38205. source: "./media/characters/rhett/back.svg",
  38206. extra: 930/878,
  38207. bottom: 25/955
  38208. }
  38209. },
  38210. front: {
  38211. height: math.unit(4 + 1/12, "feet"),
  38212. weight: math.unit(75, "lb"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/rhett/front.svg",
  38216. extra: 1682/1586,
  38217. bottom: 92/1774
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Micro",
  38224. height: math.unit(8, "inches")
  38225. },
  38226. {
  38227. name: "Tiny",
  38228. height: math.unit(2, "feet")
  38229. },
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(4 + 1/12, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(3 + 3/12, "feet"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/penny/front.svg",
  38245. extra: 1406/1311,
  38246. bottom: 26/1432
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Normal",
  38253. height: math.unit(3 + 3/12, "feet"),
  38254. default: true
  38255. },
  38256. ]
  38257. ))
  38258. characterMakers.push(() => makeCharacter(
  38259. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38260. {
  38261. front: {
  38262. height: math.unit(4 + 11/12, "feet"),
  38263. name: "Front",
  38264. image: {
  38265. source: "./media/characters/monty/front.svg",
  38266. extra: 1479/1209,
  38267. bottom: 0/1479
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Normal",
  38274. height: math.unit(4 + 11/12, "feet"),
  38275. default: true
  38276. },
  38277. ]
  38278. ))
  38279. characterMakers.push(() => makeCharacter(
  38280. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38281. {
  38282. front: {
  38283. height: math.unit(8 + 4/12, "feet"),
  38284. name: "Front",
  38285. image: {
  38286. source: "./media/characters/sterling/front.svg",
  38287. extra: 1420/1236,
  38288. bottom: 27/1447
  38289. }
  38290. },
  38291. },
  38292. [
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(8 + 4/12, "feet"),
  38296. default: true
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38302. {
  38303. front: {
  38304. height: math.unit(15, "feet"),
  38305. name: "Front",
  38306. image: {
  38307. source: "./media/characters/marble/front.svg",
  38308. extra: 973/937,
  38309. bottom: 32/1005
  38310. }
  38311. },
  38312. },
  38313. [
  38314. {
  38315. name: "Normal",
  38316. height: math.unit(15, "feet"),
  38317. default: true
  38318. },
  38319. ]
  38320. ))
  38321. characterMakers.push(() => makeCharacter(
  38322. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38323. {
  38324. front: {
  38325. height: math.unit(3, "inches"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/powder/front.svg",
  38329. extra: 1504/1334,
  38330. bottom: 518/2022
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(3, "inches"),
  38338. default: true
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(4 + 5/12, "feet"),
  38347. name: "Front",
  38348. image: {
  38349. source: "./media/characters/joey-raccoon/front.svg",
  38350. extra: 1273/1197,
  38351. bottom: 0/1273
  38352. }
  38353. },
  38354. },
  38355. [
  38356. {
  38357. name: "Normal",
  38358. height: math.unit(4 + 5/12, "feet"),
  38359. default: true
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38365. {
  38366. front: {
  38367. height: math.unit(8 + 4/12, "feet"),
  38368. name: "Front",
  38369. image: {
  38370. source: "./media/characters/vick/front.svg",
  38371. extra: 2187/2118,
  38372. bottom: 47/2234
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Normal",
  38379. height: math.unit(8 + 4/12, "feet"),
  38380. default: true
  38381. },
  38382. ]
  38383. ))
  38384. characterMakers.push(() => makeCharacter(
  38385. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38386. {
  38387. front: {
  38388. height: math.unit(5 + 5/12, "feet"),
  38389. name: "Front",
  38390. image: {
  38391. source: "./media/characters/mitsy/front.svg",
  38392. extra: 1842/1695,
  38393. bottom: 0/1842
  38394. }
  38395. },
  38396. },
  38397. [
  38398. {
  38399. name: "Normal",
  38400. height: math.unit(5 + 5/12, "feet"),
  38401. default: true
  38402. },
  38403. ]
  38404. ))
  38405. characterMakers.push(() => makeCharacter(
  38406. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38407. {
  38408. front: {
  38409. height: math.unit(6 + 3/12, "feet"),
  38410. name: "Front",
  38411. image: {
  38412. source: "./media/characters/silvy/front.svg",
  38413. extra: 1995/1836,
  38414. bottom: 225/2220
  38415. }
  38416. },
  38417. },
  38418. [
  38419. {
  38420. name: "Normal",
  38421. height: math.unit(6 + 3/12, "feet"),
  38422. default: true
  38423. },
  38424. ]
  38425. ))
  38426. characterMakers.push(() => makeCharacter(
  38427. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38428. {
  38429. front: {
  38430. height: math.unit(3 + 8/12, "feet"),
  38431. name: "Front",
  38432. image: {
  38433. source: "./media/characters/rodney/front.svg",
  38434. extra: 1956/1747,
  38435. bottom: 31/1987
  38436. }
  38437. },
  38438. frontDressed: {
  38439. height: math.unit(2.9, "feet"),
  38440. name: "Front (Dressed)",
  38441. image: {
  38442. source: "./media/characters/rodney/front-dressed.svg",
  38443. extra: 1382/1241,
  38444. bottom: 385/1767
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "Normal",
  38451. height: math.unit(3 + 8/12, "feet"),
  38452. default: true
  38453. },
  38454. ]
  38455. ))
  38456. characterMakers.push(() => makeCharacter(
  38457. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38458. {
  38459. front: {
  38460. height: math.unit(5 + 9/12, "feet"),
  38461. weight: math.unit(194, "lbs"),
  38462. name: "Front",
  38463. image: {
  38464. source: "./media/characters/zakail-sudekai/front.svg",
  38465. extra: 2696/2533,
  38466. bottom: 248/2944
  38467. }
  38468. },
  38469. maw: {
  38470. height: math.unit(1.35, "feet"),
  38471. name: "Maw",
  38472. image: {
  38473. source: "./media/characters/zakail-sudekai/maw.svg"
  38474. }
  38475. },
  38476. },
  38477. [
  38478. {
  38479. name: "Normal",
  38480. height: math.unit(5 + 9/12, "feet"),
  38481. default: true
  38482. },
  38483. ]
  38484. ))
  38485. characterMakers.push(() => makeCharacter(
  38486. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38487. {
  38488. front: {
  38489. height: math.unit(8 + 4/12, "feet"),
  38490. weight: math.unit(1200, "lb"),
  38491. name: "Front",
  38492. image: {
  38493. source: "./media/characters/eleanor/front.svg",
  38494. extra: 1226/1192,
  38495. bottom: 52/1278
  38496. }
  38497. },
  38498. back: {
  38499. height: math.unit(8 + 4/12, "feet"),
  38500. weight: math.unit(1200, "lb"),
  38501. name: "Back",
  38502. image: {
  38503. source: "./media/characters/eleanor/back.svg",
  38504. extra: 1242/1184,
  38505. bottom: 60/1302
  38506. }
  38507. },
  38508. head: {
  38509. height: math.unit(2.62, "feet"),
  38510. name: "Head",
  38511. image: {
  38512. source: "./media/characters/eleanor/head.svg"
  38513. }
  38514. },
  38515. },
  38516. [
  38517. {
  38518. name: "Normal",
  38519. height: math.unit(8 + 4/12, "feet"),
  38520. default: true
  38521. },
  38522. ]
  38523. ))
  38524. characterMakers.push(() => makeCharacter(
  38525. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38526. {
  38527. front: {
  38528. height: math.unit(8 + 4/12, "feet"),
  38529. weight: math.unit(750, "lb"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/tanya/front.svg",
  38533. extra: 1749/1615,
  38534. bottom: 33/1782
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(8 + 4/12, "feet"),
  38542. default: true
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(5, "feet"),
  38551. weight: math.unit(225, "lb"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/cindy/front.svg",
  38555. extra: 1320/1250,
  38556. bottom: 42/1362
  38557. }
  38558. },
  38559. frontDressed: {
  38560. height: math.unit(5, "feet"),
  38561. weight: math.unit(225, "lb"),
  38562. name: "Front (Dressed)",
  38563. image: {
  38564. source: "./media/characters/cindy/front-dressed.svg",
  38565. extra: 1320/1250,
  38566. bottom: 42/1362
  38567. }
  38568. },
  38569. back: {
  38570. height: math.unit(5, "feet"),
  38571. weight: math.unit(225, "lb"),
  38572. name: "Back",
  38573. image: {
  38574. source: "./media/characters/cindy/back.svg",
  38575. extra: 1384/1346,
  38576. bottom: 14/1398
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(5, "feet"),
  38584. default: true
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(6 + 9/12, "feet"),
  38593. weight: math.unit(440, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/wilbur-owen/front.svg",
  38597. extra: 1575/1448,
  38598. bottom: 72/1647
  38599. }
  38600. },
  38601. back: {
  38602. height: math.unit(6 + 9/12, "feet"),
  38603. weight: math.unit(440, "lb"),
  38604. name: "Back",
  38605. image: {
  38606. source: "./media/characters/wilbur-owen/back.svg",
  38607. extra: 1578/1445,
  38608. bottom: 36/1614
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(6 + 9/12, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(6 + 5/12, "feet"),
  38625. weight: math.unit(650, "lb"),
  38626. name: "Front",
  38627. image: {
  38628. source: "./media/characters/keegan/front.svg",
  38629. extra: 2387/2198,
  38630. bottom: 33/2420
  38631. }
  38632. },
  38633. side: {
  38634. height: math.unit(6 + 5/12, "feet"),
  38635. weight: math.unit(650, "lb"),
  38636. name: "Side",
  38637. image: {
  38638. source: "./media/characters/keegan/side.svg",
  38639. extra: 2390/2202,
  38640. bottom: 47/2437
  38641. }
  38642. },
  38643. back: {
  38644. height: math.unit(6 + 5/12, "feet"),
  38645. weight: math.unit(650, "lb"),
  38646. name: "Back",
  38647. image: {
  38648. source: "./media/characters/keegan/back.svg",
  38649. extra: 2418/2268,
  38650. bottom: 15/2433
  38651. }
  38652. },
  38653. frontSfw: {
  38654. height: math.unit(6 + 5/12, "feet"),
  38655. weight: math.unit(650, "lb"),
  38656. name: "Front (SFW)",
  38657. image: {
  38658. source: "./media/characters/keegan/front-sfw.svg",
  38659. extra: 2387/2198,
  38660. bottom: 33/2420
  38661. }
  38662. },
  38663. beans: {
  38664. height: math.unit(1.85, "feet"),
  38665. name: "Beans",
  38666. image: {
  38667. source: "./media/characters/keegan/beans.svg"
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(6 + 5/12, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(9, "feet"),
  38684. name: "Front",
  38685. image: {
  38686. source: "./media/characters/colton/front.svg",
  38687. extra: 1589/1326,
  38688. bottom: 139/1728
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(9, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(2 + 9/12, "feet"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/bora/front.svg",
  38708. extra: 1265/1250,
  38709. bottom: 24/1289
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(2 + 9/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(8, "feet"),
  38726. name: "Front",
  38727. image: {
  38728. source: "./media/characters/myu-myu/front.svg",
  38729. extra: 1949/1857,
  38730. bottom: 90/2039
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(8, "feet"),
  38738. default: true
  38739. },
  38740. {
  38741. name: "Big",
  38742. height: math.unit(15, "feet")
  38743. },
  38744. {
  38745. name: "BIG",
  38746. height: math.unit(25, "feet")
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38752. {
  38753. side: {
  38754. height: math.unit(7 + 5/12, "feet"),
  38755. weight: math.unit(2800, "lb"),
  38756. name: "Side",
  38757. image: {
  38758. source: "./media/characters/haloren/side.svg",
  38759. extra: 1793/409,
  38760. bottom: 59/1852
  38761. }
  38762. },
  38763. frontPaw: {
  38764. height: math.unit(2.36, "feet"),
  38765. name: "Front paw",
  38766. image: {
  38767. source: "./media/characters/haloren/front-paw.svg"
  38768. }
  38769. },
  38770. hindPaw: {
  38771. height: math.unit(3.18, "feet"),
  38772. name: "Hind paw",
  38773. image: {
  38774. source: "./media/characters/haloren/hind-paw.svg"
  38775. }
  38776. },
  38777. maw: {
  38778. height: math.unit(5.05, "feet"),
  38779. name: "Maw",
  38780. image: {
  38781. source: "./media/characters/haloren/maw.svg"
  38782. }
  38783. },
  38784. dick: {
  38785. height: math.unit(2.90, "feet"),
  38786. name: "Dick",
  38787. image: {
  38788. source: "./media/characters/haloren/dick.svg"
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Normal",
  38795. height: math.unit(7 + 5/12, "feet"),
  38796. default: true
  38797. },
  38798. {
  38799. name: "Enhanced",
  38800. height: math.unit(14 + 3/12, "feet")
  38801. },
  38802. ]
  38803. ))
  38804. characterMakers.push(() => makeCharacter(
  38805. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38806. {
  38807. front: {
  38808. height: math.unit(171, "cm"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/kimmy/front.svg",
  38812. extra: 1491/1435,
  38813. bottom: 53/1544
  38814. }
  38815. },
  38816. },
  38817. [
  38818. {
  38819. name: "Small",
  38820. height: math.unit(9, "cm")
  38821. },
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(171, "cm"),
  38825. default: true
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(8, "feet"),
  38834. weight: math.unit(300, "lb"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/galeboomer/front.svg",
  38838. extra: 4651/4415,
  38839. bottom: 162/4813
  38840. }
  38841. },
  38842. back: {
  38843. height: math.unit(8, "feet"),
  38844. weight: math.unit(300, "lb"),
  38845. name: "Back",
  38846. image: {
  38847. source: "./media/characters/galeboomer/back.svg",
  38848. extra: 4544/4314,
  38849. bottom: 16/4560
  38850. }
  38851. },
  38852. frontAlt: {
  38853. height: math.unit(8, "feet"),
  38854. weight: math.unit(300, "lb"),
  38855. name: "Front (Alt)",
  38856. image: {
  38857. source: "./media/characters/galeboomer/front-alt.svg",
  38858. extra: 4458/4228,
  38859. bottom: 68/4526
  38860. }
  38861. },
  38862. maw: {
  38863. height: math.unit(1.2, "feet"),
  38864. name: "Maw",
  38865. image: {
  38866. source: "./media/characters/galeboomer/maw.svg"
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(8, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(5 + 9/12, "feet"),
  38883. weight: math.unit(120, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/chyr/front.svg",
  38887. extra: 1323/1254,
  38888. bottom: 63/1386
  38889. }
  38890. },
  38891. back: {
  38892. height: math.unit(5 + 9/12, "feet"),
  38893. weight: math.unit(120, "lb"),
  38894. name: "Back",
  38895. image: {
  38896. source: "./media/characters/chyr/back.svg",
  38897. extra: 1323/1252,
  38898. bottom: 48/1371
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(5 + 9/12, "feet"),
  38906. default: true
  38907. },
  38908. ]
  38909. ))
  38910. characterMakers.push(() => makeCharacter(
  38911. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38912. {
  38913. front: {
  38914. height: math.unit(7, "feet"),
  38915. weight: math.unit(310, "lb"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/solarus/front.svg",
  38919. extra: 2415/2021,
  38920. bottom: 103/2518
  38921. }
  38922. },
  38923. back: {
  38924. height: math.unit(7, "feet"),
  38925. weight: math.unit(310, "lb"),
  38926. name: "Back",
  38927. image: {
  38928. source: "./media/characters/solarus/back.svg",
  38929. extra: 2463/2089,
  38930. bottom: 79/2542
  38931. }
  38932. },
  38933. },
  38934. [
  38935. {
  38936. name: "Normal",
  38937. height: math.unit(7, "feet"),
  38938. default: true
  38939. },
  38940. ]
  38941. ))
  38942. characterMakers.push(() => makeCharacter(
  38943. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38944. {
  38945. front: {
  38946. height: math.unit(16, "feet"),
  38947. name: "Front",
  38948. image: {
  38949. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38950. extra: 1844/1780,
  38951. bottom: 58/1902
  38952. }
  38953. },
  38954. winterCoat: {
  38955. height: math.unit(16, "feet"),
  38956. name: "Winter Coat",
  38957. image: {
  38958. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38959. extra: 1807/1775,
  38960. bottom: 69/1876
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(16, "feet"),
  38968. default: true
  38969. },
  38970. {
  38971. name: "Chicago Size",
  38972. height: math.unit(560, "feet")
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(11 + 6/12, "feet"),
  38981. weight: math.unit(1366, "lb"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/lexor/front.svg",
  38985. extra: 1560/1481,
  38986. bottom: 211/1771
  38987. }
  38988. },
  38989. back: {
  38990. height: math.unit(11 + 6/12, "feet"),
  38991. weight: math.unit(1366, "lb"),
  38992. name: "Back",
  38993. image: {
  38994. source: "./media/characters/lexor/back.svg",
  38995. extra: 1614/1533,
  38996. bottom: 76/1690
  38997. }
  38998. },
  38999. maw: {
  39000. height: math.unit(3, "feet"),
  39001. name: "Maw",
  39002. image: {
  39003. source: "./media/characters/lexor/maw.svg"
  39004. }
  39005. },
  39006. dick: {
  39007. height: math.unit(2.59, "feet"),
  39008. name: "Dick",
  39009. image: {
  39010. source: "./media/characters/lexor/dick.svg"
  39011. }
  39012. },
  39013. },
  39014. [
  39015. {
  39016. name: "Normal",
  39017. height: math.unit(11 + 6/12, "feet"),
  39018. default: true
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(5 + 8/12, "feet"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/magnum/front.svg",
  39030. extra: 942/855,
  39031. bottom: 26/968
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Normal",
  39038. height: math.unit(5 + 8/12, "feet"),
  39039. default: true
  39040. },
  39041. ]
  39042. ))
  39043. characterMakers.push(() => makeCharacter(
  39044. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39045. {
  39046. front: {
  39047. height: math.unit(18 + 4/12, "feet"),
  39048. weight: math.unit(1500, "kg"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/solas-sharpsman/front.svg",
  39052. extra: 1698/1589,
  39053. bottom: 0/1698
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(18 + 4/12, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(5 + 5/12, "feet"),
  39070. weight: math.unit(180, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/october/front.svg",
  39074. extra: 1800/1650,
  39075. bottom: 0/1800
  39076. }
  39077. },
  39078. frontNsfw: {
  39079. height: math.unit(5 + 5/12, "feet"),
  39080. weight: math.unit(180, "lb"),
  39081. name: "Front (NSFW)",
  39082. image: {
  39083. source: "./media/characters/october/front-nsfw.svg",
  39084. extra: 1392/1307,
  39085. bottom: 42/1434
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(5 + 5/12, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(8 + 6/12, "feet"),
  39102. name: "Front",
  39103. image: {
  39104. source: "./media/characters/essynkardi/front.svg",
  39105. extra: 1541/1457,
  39106. bottom: 47/1588
  39107. }
  39108. },
  39109. },
  39110. [
  39111. {
  39112. name: "Normal",
  39113. height: math.unit(8 + 6/12, "feet"),
  39114. default: true
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(6 + 6/12, "feet"),
  39123. weight: math.unit(7, "lb"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/icky/front.svg",
  39127. extra: 813/782,
  39128. bottom: 66/879
  39129. }
  39130. },
  39131. back: {
  39132. height: math.unit(6 + 6/12, "feet"),
  39133. weight: math.unit(7, "lb"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/icky/back.svg",
  39137. extra: 754/735,
  39138. bottom: 56/810
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Normal",
  39145. height: math.unit(6 + 6/12, "feet"),
  39146. default: true
  39147. },
  39148. ]
  39149. ))
  39150. characterMakers.push(() => makeCharacter(
  39151. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39152. {
  39153. front: {
  39154. height: math.unit(15, "feet"),
  39155. name: "Front",
  39156. image: {
  39157. source: "./media/characters/rojas/front.svg",
  39158. extra: 1462/1408,
  39159. bottom: 95/1557
  39160. }
  39161. },
  39162. back: {
  39163. height: math.unit(15, "feet"),
  39164. name: "Back",
  39165. image: {
  39166. source: "./media/characters/rojas/back.svg",
  39167. extra: 1023/954,
  39168. bottom: 28/1051
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(15, "feet"),
  39176. default: true
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39182. {
  39183. frontHuman: {
  39184. height: math.unit(5 + 7/12, "feet"),
  39185. name: "Front (Human)",
  39186. image: {
  39187. source: "./media/characters/alek-dryagan/front-human.svg",
  39188. extra: 1687/1667,
  39189. bottom: 69/1756
  39190. }
  39191. },
  39192. backHuman: {
  39193. height: math.unit(5 + 7/12, "feet"),
  39194. name: "Back (Human)",
  39195. image: {
  39196. source: "./media/characters/alek-dryagan/back-human.svg",
  39197. extra: 1670/1649,
  39198. bottom: 65/1735
  39199. }
  39200. },
  39201. frontDemi: {
  39202. height: math.unit(65, "feet"),
  39203. name: "Front (Demi)",
  39204. image: {
  39205. source: "./media/characters/alek-dryagan/front-demi.svg",
  39206. extra: 1669/1642,
  39207. bottom: 49/1718
  39208. }
  39209. },
  39210. backDemi: {
  39211. height: math.unit(65, "feet"),
  39212. name: "Back (Demi)",
  39213. image: {
  39214. source: "./media/characters/alek-dryagan/back-demi.svg",
  39215. extra: 1658/1637,
  39216. bottom: 40/1698
  39217. }
  39218. },
  39219. mawHuman: {
  39220. height: math.unit(0.3, "feet"),
  39221. name: "Maw (Human)",
  39222. image: {
  39223. source: "./media/characters/alek-dryagan/maw-human.svg"
  39224. }
  39225. },
  39226. mawDemi: {
  39227. height: math.unit(3.8, "feet"),
  39228. name: "Maw (Demi)",
  39229. image: {
  39230. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(5 + 7/12, "feet"),
  39238. default: true
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39244. {
  39245. frontHuman: {
  39246. height: math.unit(5 + 2/12, "feet"),
  39247. name: "Front (Human)",
  39248. image: {
  39249. source: "./media/characters/gen/front-human.svg",
  39250. extra: 1627/1538,
  39251. bottom: 71/1698
  39252. }
  39253. },
  39254. backHuman: {
  39255. height: math.unit(5 + 2/12, "feet"),
  39256. name: "Back (Human)",
  39257. image: {
  39258. source: "./media/characters/gen/back-human.svg",
  39259. extra: 1638/1548,
  39260. bottom: 69/1707
  39261. }
  39262. },
  39263. frontDemi: {
  39264. height: math.unit(5 + 2/12, "feet"),
  39265. name: "Front (Demi)",
  39266. image: {
  39267. source: "./media/characters/gen/front-demi.svg",
  39268. extra: 1627/1538,
  39269. bottom: 71/1698
  39270. }
  39271. },
  39272. backDemi: {
  39273. height: math.unit(5 + 2/12, "feet"),
  39274. name: "Back (Demi)",
  39275. image: {
  39276. source: "./media/characters/gen/back-demi.svg",
  39277. extra: 1638/1548,
  39278. bottom: 69/1707
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(5 + 2/12, "feet"),
  39286. default: true
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39292. {
  39293. frontImp: {
  39294. height: math.unit(1 + 11/12, "feet"),
  39295. name: "Front (Imp)",
  39296. image: {
  39297. source: "./media/characters/max-kobold/front-imp.svg",
  39298. extra: 1238/1134,
  39299. bottom: 81/1319
  39300. }
  39301. },
  39302. backImp: {
  39303. height: math.unit(1 + 11/12, "feet"),
  39304. name: "Back (Imp)",
  39305. image: {
  39306. source: "./media/characters/max-kobold/back-imp.svg",
  39307. extra: 1334/1175,
  39308. bottom: 34/1368
  39309. }
  39310. },
  39311. frontDemi: {
  39312. height: math.unit(5 + 9/12, "feet"),
  39313. name: "Front (Demi)",
  39314. image: {
  39315. source: "./media/characters/max-kobold/front-demi.svg",
  39316. extra: 1715/1685,
  39317. bottom: 54/1769
  39318. }
  39319. },
  39320. backDemi: {
  39321. height: math.unit(5 + 9/12, "feet"),
  39322. name: "Back (Demi)",
  39323. image: {
  39324. source: "./media/characters/max-kobold/back-demi.svg",
  39325. extra: 1752/1729,
  39326. bottom: 41/1793
  39327. }
  39328. },
  39329. handImp: {
  39330. height: math.unit(0.45, "feet"),
  39331. name: "Hand (Imp)",
  39332. image: {
  39333. source: "./media/characters/max-kobold/hand.svg"
  39334. }
  39335. },
  39336. pawImp: {
  39337. height: math.unit(0.46, "feet"),
  39338. name: "Paw (Imp)",
  39339. image: {
  39340. source: "./media/characters/max-kobold/paw.svg"
  39341. }
  39342. },
  39343. handDemi: {
  39344. height: math.unit(0.80, "feet"),
  39345. name: "Hand (Demi)",
  39346. image: {
  39347. source: "./media/characters/max-kobold/hand.svg"
  39348. }
  39349. },
  39350. pawDemi: {
  39351. height: math.unit(1.1, "feet"),
  39352. name: "Paw (Demi)",
  39353. image: {
  39354. source: "./media/characters/max-kobold/paw.svg"
  39355. }
  39356. },
  39357. headImp: {
  39358. height: math.unit(1.33, "feet"),
  39359. name: "Head (Imp)",
  39360. image: {
  39361. source: "./media/characters/max-kobold/head-imp.svg"
  39362. }
  39363. },
  39364. mawImp: {
  39365. height: math.unit(0.75, "feet"),
  39366. name: "Maw (Imp)",
  39367. image: {
  39368. source: "./media/characters/max-kobold/maw-imp.svg"
  39369. }
  39370. },
  39371. mawDemi: {
  39372. height: math.unit(0.42, "feet"),
  39373. name: "Maw (Demi)",
  39374. image: {
  39375. source: "./media/characters/max-kobold/maw-demi.svg"
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "Normal",
  39382. height: math.unit(1 + 11/12, "feet"),
  39383. default: true
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(7 + 5/12, "feet"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/carbon/front.svg",
  39395. extra: 1754/1689,
  39396. bottom: 65/1819
  39397. }
  39398. },
  39399. back: {
  39400. height: math.unit(7 + 5/12, "feet"),
  39401. name: "Back",
  39402. image: {
  39403. source: "./media/characters/carbon/back.svg",
  39404. extra: 1762/1695,
  39405. bottom: 24/1786
  39406. }
  39407. },
  39408. frontGigantamax: {
  39409. height: math.unit(150, "feet"),
  39410. name: "Front (Gigantamax)",
  39411. image: {
  39412. source: "./media/characters/carbon/front-gigantamax.svg",
  39413. extra: 1826/1669,
  39414. bottom: 59/1885
  39415. }
  39416. },
  39417. backGigantamax: {
  39418. height: math.unit(150, "feet"),
  39419. name: "Back (Gigantamax)",
  39420. image: {
  39421. source: "./media/characters/carbon/back-gigantamax.svg",
  39422. extra: 1796/1653,
  39423. bottom: 53/1849
  39424. }
  39425. },
  39426. maw: {
  39427. height: math.unit(0.48, "feet"),
  39428. name: "Maw",
  39429. image: {
  39430. source: "./media/characters/carbon/maw.svg"
  39431. }
  39432. },
  39433. mawGigantamax: {
  39434. height: math.unit(7.5, "feet"),
  39435. name: "Maw (Gigantamax)",
  39436. image: {
  39437. source: "./media/characters/carbon/maw-gigantamax.svg"
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(7 + 5/12, "feet"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(6, "feet"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/maverick/front.svg",
  39457. extra: 1672/1661,
  39458. bottom: 85/1757
  39459. }
  39460. },
  39461. back: {
  39462. height: math.unit(6, "feet"),
  39463. name: "Back",
  39464. image: {
  39465. source: "./media/characters/maverick/back.svg",
  39466. extra: 1642/1631,
  39467. bottom: 38/1680
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Normal",
  39474. height: math.unit(6, "feet"),
  39475. default: true
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(15, "feet"),
  39484. weight: math.unit(615, "lb"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/grockle/front.svg",
  39488. extra: 1535/1427,
  39489. bottom: 56/1591
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(15, "feet"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "Large",
  39501. height: math.unit(150, "feet")
  39502. },
  39503. {
  39504. name: "Macro",
  39505. height: math.unit(1876, "feet")
  39506. },
  39507. {
  39508. name: "Mega Macro",
  39509. height: math.unit(121940, "feet")
  39510. },
  39511. {
  39512. name: "Giga Macro",
  39513. height: math.unit(750, "km")
  39514. },
  39515. {
  39516. name: "Tera Macro",
  39517. height: math.unit(750000, "km")
  39518. },
  39519. {
  39520. name: "Galactic",
  39521. height: math.unit(1.4e5, "km")
  39522. },
  39523. {
  39524. name: "Godlike",
  39525. height: math.unit(9.8e280, "galaxies")
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(11, "meters"),
  39534. weight: math.unit(20, "tonnes"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/alistair/front.svg",
  39538. extra: 1265/1009,
  39539. bottom: 93/1358
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(11, "meters"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39553. {
  39554. front: {
  39555. height: math.unit(5 + 8/12, "feet"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/haruka/front.svg",
  39559. extra: 2012/1952,
  39560. bottom: 0/2012
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Normal",
  39567. height: math.unit(5 + 8/12, "feet"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39574. {
  39575. back: {
  39576. height: math.unit(9, "feet"),
  39577. name: "Back",
  39578. image: {
  39579. source: "./media/characters/vivian-sylveon/back.svg",
  39580. extra: 1853/1714,
  39581. bottom: 0/1853
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Normal",
  39588. height: math.unit(9, "feet"),
  39589. default: true
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(500, "feet")
  39594. },
  39595. {
  39596. name: "Megamacro",
  39597. height: math.unit(600, "miles")
  39598. },
  39599. {
  39600. name: "Gigamacro",
  39601. height: math.unit(30000, "miles")
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39607. {
  39608. anthro: {
  39609. height: math.unit(5 + 10/12, "feet"),
  39610. weight: math.unit(100, "lb"),
  39611. name: "Anthro",
  39612. image: {
  39613. source: "./media/characters/daiki/anthro.svg",
  39614. extra: 1115/1027,
  39615. bottom: 69/1184
  39616. }
  39617. },
  39618. feral: {
  39619. height: math.unit(200, "feet"),
  39620. name: "Feral",
  39621. image: {
  39622. source: "./media/characters/daiki/feral.svg",
  39623. extra: 1256/313,
  39624. bottom: 39/1295
  39625. }
  39626. },
  39627. feralHead: {
  39628. height: math.unit(171, "feet"),
  39629. name: "Feral Head",
  39630. image: {
  39631. source: "./media/characters/daiki/feral-head.svg"
  39632. }
  39633. },
  39634. manaDragon: {
  39635. height: math.unit(170, "meters"),
  39636. name: "Mana-dragon",
  39637. image: {
  39638. source: "./media/characters/daiki/mana-dragon.svg",
  39639. extra: 763/420,
  39640. bottom: 97/860
  39641. }
  39642. },
  39643. },
  39644. [
  39645. {
  39646. name: "Normal",
  39647. height: math.unit(5 + 10/12, "feet"),
  39648. default: true
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39654. {
  39655. fullyEquippedFront: {
  39656. height: math.unit(3 + 1/12, "feet"),
  39657. weight: math.unit(24, "lb"),
  39658. name: "Fully Equipped (Front)",
  39659. image: {
  39660. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39661. extra: 687/605,
  39662. bottom: 18/705
  39663. }
  39664. },
  39665. fullyEquippedBack: {
  39666. height: math.unit(3 + 1/12, "feet"),
  39667. weight: math.unit(24, "lb"),
  39668. name: "Fully Equipped (Back)",
  39669. image: {
  39670. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39671. extra: 689/590,
  39672. bottom: 18/707
  39673. }
  39674. },
  39675. dailyWear: {
  39676. height: math.unit(3 + 1/12, "feet"),
  39677. weight: math.unit(24, "lb"),
  39678. name: "Daily Wear",
  39679. image: {
  39680. source: "./media/characters/tea-spot/daily-wear.svg",
  39681. extra: 701/620,
  39682. bottom: 21/722
  39683. }
  39684. },
  39685. maidWork: {
  39686. height: math.unit(3 + 1/12, "feet"),
  39687. weight: math.unit(24, "lb"),
  39688. name: "Maid Work",
  39689. image: {
  39690. source: "./media/characters/tea-spot/maid-work.svg",
  39691. extra: 693/609,
  39692. bottom: 15/708
  39693. }
  39694. },
  39695. },
  39696. [
  39697. {
  39698. name: "Normal",
  39699. height: math.unit(3 + 1/12, "feet"),
  39700. default: true
  39701. },
  39702. ]
  39703. ))
  39704. characterMakers.push(() => makeCharacter(
  39705. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39706. {
  39707. front: {
  39708. height: math.unit(175, "cm"),
  39709. weight: math.unit(75, "kg"),
  39710. name: "Front",
  39711. image: {
  39712. source: "./media/characters/chee/front.svg",
  39713. extra: 1796/1740,
  39714. bottom: 40/1836
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Micro-Micro",
  39721. height: math.unit(1, "nm")
  39722. },
  39723. {
  39724. name: "Micro-erst",
  39725. height: math.unit(1, "micrometer")
  39726. },
  39727. {
  39728. name: "Micro-er",
  39729. height: math.unit(1, "cm")
  39730. },
  39731. {
  39732. name: "Normal",
  39733. height: math.unit(175, "cm"),
  39734. default: true
  39735. },
  39736. {
  39737. name: "Macro",
  39738. height: math.unit(100, "m")
  39739. },
  39740. {
  39741. name: "Macro-er",
  39742. height: math.unit(1, "km")
  39743. },
  39744. {
  39745. name: "Macro-erst",
  39746. height: math.unit(10, "km")
  39747. },
  39748. {
  39749. name: "Macro-Macro",
  39750. height: math.unit(100, "km")
  39751. },
  39752. ]
  39753. ))
  39754. characterMakers.push(() => makeCharacter(
  39755. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39756. {
  39757. front: {
  39758. height: math.unit(11 + 9/12, "feet"),
  39759. weight: math.unit(935, "lb"),
  39760. name: "Front",
  39761. image: {
  39762. source: "./media/characters/kingsley/front.svg",
  39763. extra: 1803/1674,
  39764. bottom: 127/1930
  39765. }
  39766. },
  39767. frontNude: {
  39768. height: math.unit(11 + 9/12, "feet"),
  39769. weight: math.unit(935, "lb"),
  39770. name: "Front (Nude)",
  39771. image: {
  39772. source: "./media/characters/kingsley/front-nude.svg",
  39773. extra: 1803/1674,
  39774. bottom: 127/1930
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(11 + 9/12, "feet"),
  39782. default: true
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39788. {
  39789. side: {
  39790. height: math.unit(9, "feet"),
  39791. name: "Side",
  39792. image: {
  39793. source: "./media/characters/rymel/side.svg",
  39794. extra: 792/469,
  39795. bottom: 121/913
  39796. }
  39797. },
  39798. maw: {
  39799. height: math.unit(2.4, "meters"),
  39800. name: "Maw",
  39801. image: {
  39802. source: "./media/characters/rymel/maw.svg"
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "House Drake",
  39809. height: math.unit(2, "feet")
  39810. },
  39811. {
  39812. name: "Reduced",
  39813. height: math.unit(4.5, "feet")
  39814. },
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(9, "feet"),
  39818. default: true
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(1.74, "meters"),
  39827. weight: math.unit(55, "kg"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/rubus/front.svg",
  39831. extra: 1894/1742,
  39832. bottom: 44/1938
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Normal",
  39839. height: math.unit(1.74, "meters"),
  39840. default: true
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(5 + 2/12, "feet"),
  39849. weight: math.unit(112, "lb"),
  39850. name: "Front",
  39851. image: {
  39852. source: "./media/characters/cassie-kingston/front.svg",
  39853. extra: 1438/1390,
  39854. bottom: 47/1485
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Normal",
  39861. height: math.unit(5 + 2/12, "feet"),
  39862. default: true
  39863. },
  39864. {
  39865. name: "Macro",
  39866. height: math.unit(128, "feet")
  39867. },
  39868. {
  39869. name: "Megamacro",
  39870. height: math.unit(2.56, "miles")
  39871. },
  39872. ]
  39873. ))
  39874. characterMakers.push(() => makeCharacter(
  39875. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39876. {
  39877. front: {
  39878. height: math.unit(7, "feet"),
  39879. name: "Front",
  39880. image: {
  39881. source: "./media/characters/fox/front.svg",
  39882. extra: 1798/1703,
  39883. bottom: 55/1853
  39884. }
  39885. },
  39886. back: {
  39887. height: math.unit(7, "feet"),
  39888. name: "Back",
  39889. image: {
  39890. source: "./media/characters/fox/back.svg",
  39891. extra: 1748/1649,
  39892. bottom: 32/1780
  39893. }
  39894. },
  39895. head: {
  39896. height: math.unit(1.95, "feet"),
  39897. name: "Head",
  39898. image: {
  39899. source: "./media/characters/fox/head.svg"
  39900. }
  39901. },
  39902. dick: {
  39903. height: math.unit(1.33, "feet"),
  39904. name: "Dick",
  39905. image: {
  39906. source: "./media/characters/fox/dick.svg"
  39907. }
  39908. },
  39909. foot: {
  39910. height: math.unit(1, "feet"),
  39911. name: "Foot",
  39912. image: {
  39913. source: "./media/characters/fox/foot.svg"
  39914. }
  39915. },
  39916. paw: {
  39917. height: math.unit(0.92, "feet"),
  39918. name: "Paw",
  39919. image: {
  39920. source: "./media/characters/fox/paw.svg"
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Small",
  39927. height: math.unit(3, "inches")
  39928. },
  39929. {
  39930. name: "\"Realistic\"",
  39931. height: math.unit(7, "feet")
  39932. },
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(150, "feet"),
  39936. default: true
  39937. },
  39938. {
  39939. name: "BIG",
  39940. height: math.unit(1200, "feet")
  39941. },
  39942. {
  39943. name: "👀",
  39944. height: math.unit(5, "miles")
  39945. },
  39946. {
  39947. name: "👀👀👀",
  39948. height: math.unit(64, "miles")
  39949. },
  39950. ]
  39951. ))
  39952. characterMakers.push(() => makeCharacter(
  39953. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39954. {
  39955. front: {
  39956. height: math.unit(625, "feet"),
  39957. name: "Front",
  39958. image: {
  39959. source: "./media/characters/asonja-rossa/front.svg",
  39960. extra: 1833/1686,
  39961. bottom: 24/1857
  39962. }
  39963. },
  39964. back: {
  39965. height: math.unit(625, "feet"),
  39966. name: "Back",
  39967. image: {
  39968. source: "./media/characters/asonja-rossa/back.svg",
  39969. extra: 1852/1753,
  39970. bottom: 26/1878
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Macro",
  39977. height: math.unit(625, "feet"),
  39978. default: true
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39984. {
  39985. side: {
  39986. height: math.unit(8, "feet"),
  39987. name: "Side",
  39988. image: {
  39989. source: "./media/characters/rezukii/side.svg",
  39990. extra: 979/542,
  39991. bottom: 87/1066
  39992. }
  39993. },
  39994. sitting: {
  39995. height: math.unit(14.6, "feet"),
  39996. name: "Sitting",
  39997. image: {
  39998. source: "./media/characters/rezukii/sitting.svg",
  39999. extra: 1023/813,
  40000. bottom: 45/1068
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Tiny",
  40007. height: math.unit(2, "feet")
  40008. },
  40009. {
  40010. name: "Smol",
  40011. height: math.unit(4, "feet")
  40012. },
  40013. {
  40014. name: "Normal",
  40015. height: math.unit(8, "feet"),
  40016. default: true
  40017. },
  40018. {
  40019. name: "Big",
  40020. height: math.unit(12, "feet")
  40021. },
  40022. {
  40023. name: "Macro",
  40024. height: math.unit(30, "feet")
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(14, "feet"),
  40033. weight: math.unit(9.5, "tonnes"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/dawnheart/front.svg",
  40037. extra: 2792/2675,
  40038. bottom: 64/2856
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Normal",
  40045. height: math.unit(14, "feet"),
  40046. default: true
  40047. },
  40048. ]
  40049. ))
  40050. characterMakers.push(() => makeCharacter(
  40051. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40052. {
  40053. front: {
  40054. height: math.unit(1.7, "m"),
  40055. name: "Front",
  40056. image: {
  40057. source: "./media/characters/gladi/front.svg",
  40058. extra: 1460/1362,
  40059. bottom: 19/1479
  40060. }
  40061. },
  40062. back: {
  40063. height: math.unit(1.7, "m"),
  40064. name: "Back",
  40065. image: {
  40066. source: "./media/characters/gladi/back.svg",
  40067. extra: 1459/1357,
  40068. bottom: 12/1471
  40069. }
  40070. },
  40071. feral: {
  40072. height: math.unit(2.05, "m"),
  40073. name: "Feral",
  40074. image: {
  40075. source: "./media/characters/gladi/feral.svg",
  40076. extra: 821/557,
  40077. bottom: 91/912
  40078. }
  40079. },
  40080. },
  40081. [
  40082. {
  40083. name: "Shortest",
  40084. height: math.unit(70, "cm")
  40085. },
  40086. {
  40087. name: "Normal",
  40088. height: math.unit(1.7, "m")
  40089. },
  40090. {
  40091. name: "Macro",
  40092. height: math.unit(10, "m"),
  40093. default: true
  40094. },
  40095. {
  40096. name: "Tallest",
  40097. height: math.unit(200, "m")
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(5 + 7/12, "feet"),
  40106. weight: math.unit(2, "tons"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/erdno/front.svg",
  40110. extra: 1234/1129,
  40111. bottom: 35/1269
  40112. }
  40113. },
  40114. angled: {
  40115. height: math.unit(5 + 7/12, "feet"),
  40116. weight: math.unit(2, "tons"),
  40117. name: "Angled",
  40118. image: {
  40119. source: "./media/characters/erdno/angled.svg",
  40120. extra: 1185/1139,
  40121. bottom: 36/1221
  40122. }
  40123. },
  40124. side: {
  40125. height: math.unit(5 + 7/12, "feet"),
  40126. weight: math.unit(2, "tons"),
  40127. name: "Side",
  40128. image: {
  40129. source: "./media/characters/erdno/side.svg",
  40130. extra: 1191/1144,
  40131. bottom: 40/1231
  40132. }
  40133. },
  40134. back: {
  40135. height: math.unit(5 + 7/12, "feet"),
  40136. weight: math.unit(2, "tons"),
  40137. name: "Back",
  40138. image: {
  40139. source: "./media/characters/erdno/back.svg",
  40140. extra: 1202/1146,
  40141. bottom: 17/1219
  40142. }
  40143. },
  40144. frontNsfw: {
  40145. height: math.unit(5 + 7/12, "feet"),
  40146. weight: math.unit(2, "tons"),
  40147. name: "Front (NSFW)",
  40148. image: {
  40149. source: "./media/characters/erdno/front-nsfw.svg",
  40150. extra: 1234/1129,
  40151. bottom: 35/1269
  40152. }
  40153. },
  40154. angledNsfw: {
  40155. height: math.unit(5 + 7/12, "feet"),
  40156. weight: math.unit(2, "tons"),
  40157. name: "Angled (NSFW)",
  40158. image: {
  40159. source: "./media/characters/erdno/angled-nsfw.svg",
  40160. extra: 1185/1139,
  40161. bottom: 36/1221
  40162. }
  40163. },
  40164. sideNsfw: {
  40165. height: math.unit(5 + 7/12, "feet"),
  40166. weight: math.unit(2, "tons"),
  40167. name: "Side (NSFW)",
  40168. image: {
  40169. source: "./media/characters/erdno/side-nsfw.svg",
  40170. extra: 1191/1144,
  40171. bottom: 40/1231
  40172. }
  40173. },
  40174. backNsfw: {
  40175. height: math.unit(5 + 7/12, "feet"),
  40176. weight: math.unit(2, "tons"),
  40177. name: "Back (NSFW)",
  40178. image: {
  40179. source: "./media/characters/erdno/back-nsfw.svg",
  40180. extra: 1202/1146,
  40181. bottom: 17/1219
  40182. }
  40183. },
  40184. frontHyper: {
  40185. height: math.unit(5 + 7/12, "feet"),
  40186. weight: math.unit(2, "tons"),
  40187. name: "Front (Hyper)",
  40188. image: {
  40189. source: "./media/characters/erdno/front-hyper.svg",
  40190. extra: 1298/1136,
  40191. bottom: 35/1333
  40192. }
  40193. },
  40194. },
  40195. [
  40196. {
  40197. name: "Normal",
  40198. height: math.unit(5 + 7/12, "feet"),
  40199. default: true
  40200. },
  40201. {
  40202. name: "Big",
  40203. height: math.unit(5.7, "meters")
  40204. },
  40205. {
  40206. name: "Macro",
  40207. height: math.unit(5.7, "kilometers")
  40208. },
  40209. {
  40210. name: "Megamacro",
  40211. height: math.unit(5.7, "earths")
  40212. },
  40213. ]
  40214. ))
  40215. characterMakers.push(() => makeCharacter(
  40216. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40217. {
  40218. front: {
  40219. height: math.unit(5 + 10/12, "feet"),
  40220. weight: math.unit(150, "lb"),
  40221. name: "Front",
  40222. image: {
  40223. source: "./media/characters/jamie/front.svg",
  40224. extra: 1908/1768,
  40225. bottom: 19/1927
  40226. }
  40227. },
  40228. },
  40229. [
  40230. {
  40231. name: "Minimum",
  40232. height: math.unit(2, "cm")
  40233. },
  40234. {
  40235. name: "Micro",
  40236. height: math.unit(3, "inches")
  40237. },
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(5 + 10/12, "feet"),
  40241. default: true
  40242. },
  40243. {
  40244. name: "Macro",
  40245. height: math.unit(150, "feet")
  40246. },
  40247. {
  40248. name: "Megamacro",
  40249. height: math.unit(10000, "m")
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(2, "meters"),
  40258. weight: math.unit(100, "kg"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/shiron/front.svg",
  40262. extra: 2103/1985,
  40263. bottom: 98/2201
  40264. }
  40265. },
  40266. back: {
  40267. height: math.unit(2, "meters"),
  40268. weight: math.unit(100, "kg"),
  40269. name: "Back",
  40270. image: {
  40271. source: "./media/characters/shiron/back.svg",
  40272. extra: 2110/2015,
  40273. bottom: 89/2199
  40274. }
  40275. },
  40276. hand: {
  40277. height: math.unit(0.96, "feet"),
  40278. name: "Hand",
  40279. image: {
  40280. source: "./media/characters/shiron/hand.svg"
  40281. }
  40282. },
  40283. foot: {
  40284. height: math.unit(1.464, "feet"),
  40285. name: "Foot",
  40286. image: {
  40287. source: "./media/characters/shiron/foot.svg"
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Normal",
  40294. height: math.unit(2, "meters")
  40295. },
  40296. {
  40297. name: "Macro",
  40298. height: math.unit(500, "meters"),
  40299. default: true
  40300. },
  40301. {
  40302. name: "Megamacro",
  40303. height: math.unit(20, "km")
  40304. },
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(6, "feet"),
  40312. name: "Front",
  40313. image: {
  40314. source: "./media/characters/sam/front.svg",
  40315. extra: 849/826,
  40316. bottom: 19/868
  40317. }
  40318. },
  40319. },
  40320. [
  40321. {
  40322. name: "Normal",
  40323. height: math.unit(6, "feet"),
  40324. default: true
  40325. },
  40326. ]
  40327. ))
  40328. characterMakers.push(() => makeCharacter(
  40329. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40330. {
  40331. front: {
  40332. height: math.unit(8 + 4/12, "feet"),
  40333. weight: math.unit(122, "kg"),
  40334. name: "Front",
  40335. image: {
  40336. source: "./media/characters/namori-kurogawa/front.svg",
  40337. extra: 1894/1576,
  40338. bottom: 34/1928
  40339. }
  40340. },
  40341. },
  40342. [
  40343. {
  40344. name: "Normal",
  40345. height: math.unit(8 + 4/12, "feet"),
  40346. default: true
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(9, "feet"),
  40355. weight: math.unit(621, "lb"),
  40356. name: "Front",
  40357. image: {
  40358. source: "./media/characters/unmru/front.svg",
  40359. extra: 1853/1747,
  40360. bottom: 73/1926
  40361. }
  40362. },
  40363. side: {
  40364. height: math.unit(9, "feet"),
  40365. weight: math.unit(621, "lb"),
  40366. name: "Side",
  40367. image: {
  40368. source: "./media/characters/unmru/side.svg",
  40369. extra: 1781/1671,
  40370. bottom: 127/1908
  40371. }
  40372. },
  40373. back: {
  40374. height: math.unit(9, "feet"),
  40375. weight: math.unit(621, "lb"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/unmru/back.svg",
  40379. extra: 1894/1765,
  40380. bottom: 75/1969
  40381. }
  40382. },
  40383. dick: {
  40384. height: math.unit(3, "feet"),
  40385. weight: math.unit(35, "lb"),
  40386. name: "Dick",
  40387. image: {
  40388. source: "./media/characters/unmru/dick.svg"
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(9, "feet")
  40396. },
  40397. {
  40398. name: "Natural",
  40399. height: math.unit(27, "feet"),
  40400. default: true
  40401. },
  40402. {
  40403. name: "Giant",
  40404. height: math.unit(90, "feet")
  40405. },
  40406. {
  40407. name: "Kaiju",
  40408. height: math.unit(270, "feet")
  40409. },
  40410. {
  40411. name: "Macro",
  40412. height: math.unit(900, "feet")
  40413. },
  40414. {
  40415. name: "Macro+",
  40416. height: math.unit(2700, "feet")
  40417. },
  40418. {
  40419. name: "Megamacro",
  40420. height: math.unit(9000, "feet")
  40421. },
  40422. {
  40423. name: "City-Crushing",
  40424. height: math.unit(27000, "feet")
  40425. },
  40426. {
  40427. name: "Mountain-Mashing",
  40428. height: math.unit(90000, "feet")
  40429. },
  40430. {
  40431. name: "Earth-Eclipsing",
  40432. height: math.unit(2.7e8, "feet")
  40433. },
  40434. {
  40435. name: "Sol-Swallowing",
  40436. height: math.unit(9e10, "feet")
  40437. },
  40438. {
  40439. name: "Majoris-Munching",
  40440. height: math.unit(2.7e13, "feet")
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40446. {
  40447. front: {
  40448. height: math.unit(1, "inch"),
  40449. name: "Front",
  40450. image: {
  40451. source: "./media/characters/squeaks-mouse/front.svg",
  40452. extra: 352/308,
  40453. bottom: 25/377
  40454. }
  40455. },
  40456. },
  40457. [
  40458. {
  40459. name: "Micro",
  40460. height: math.unit(1, "inch"),
  40461. default: true
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40467. {
  40468. side: {
  40469. height: math.unit(35, "feet"),
  40470. name: "Side",
  40471. image: {
  40472. source: "./media/characters/sayko/side.svg",
  40473. extra: 1697/1021,
  40474. bottom: 82/1779
  40475. }
  40476. },
  40477. head: {
  40478. height: math.unit(16, "feet"),
  40479. name: "Head",
  40480. image: {
  40481. source: "./media/characters/sayko/head.svg"
  40482. }
  40483. },
  40484. forepaw: {
  40485. height: math.unit(7.85, "feet"),
  40486. name: "Forepaw",
  40487. image: {
  40488. source: "./media/characters/sayko/forepaw.svg"
  40489. }
  40490. },
  40491. hindpaw: {
  40492. height: math.unit(8.8, "feet"),
  40493. name: "Hindpaw",
  40494. image: {
  40495. source: "./media/characters/sayko/hindpaw.svg"
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Normal",
  40502. height: math.unit(35, "feet"),
  40503. default: true
  40504. },
  40505. {
  40506. name: "Colossus",
  40507. height: math.unit(100, "meters")
  40508. },
  40509. {
  40510. name: "\"Small\" Deity",
  40511. height: math.unit(1, "km")
  40512. },
  40513. {
  40514. name: "\"Large\" Deity",
  40515. height: math.unit(15, "km")
  40516. },
  40517. ]
  40518. ))
  40519. characterMakers.push(() => makeCharacter(
  40520. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40521. {
  40522. front: {
  40523. height: math.unit(6, "feet"),
  40524. weight: math.unit(250, "lb"),
  40525. name: "Front",
  40526. image: {
  40527. source: "./media/characters/mukiro/front.svg",
  40528. extra: 1368/1310,
  40529. bottom: 34/1402
  40530. }
  40531. },
  40532. },
  40533. [
  40534. {
  40535. name: "Normal",
  40536. height: math.unit(6, "feet"),
  40537. default: true
  40538. },
  40539. ]
  40540. ))
  40541. characterMakers.push(() => makeCharacter(
  40542. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40543. {
  40544. front: {
  40545. height: math.unit(12 + 4/12, "feet"),
  40546. name: "Front",
  40547. image: {
  40548. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40549. extra: 1346/1311,
  40550. bottom: 65/1411
  40551. }
  40552. },
  40553. },
  40554. [
  40555. {
  40556. name: "Base",
  40557. height: math.unit(12 + 4/12, "feet"),
  40558. default: true
  40559. },
  40560. {
  40561. name: "Macro",
  40562. height: math.unit(150, "feet")
  40563. },
  40564. {
  40565. name: "Mega",
  40566. height: math.unit(2, "miles")
  40567. },
  40568. {
  40569. name: "Demi God",
  40570. height: math.unit(4, "AU")
  40571. },
  40572. {
  40573. name: "God Size",
  40574. height: math.unit(1, "universe")
  40575. },
  40576. ]
  40577. ))
  40578. characterMakers.push(() => makeCharacter(
  40579. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40580. {
  40581. front: {
  40582. height: math.unit(3 + 3/12, "feet"),
  40583. weight: math.unit(88, "lb"),
  40584. name: "Front",
  40585. image: {
  40586. source: "./media/characters/trey/front.svg",
  40587. extra: 1815/1509,
  40588. bottom: 60/1875
  40589. }
  40590. },
  40591. },
  40592. [
  40593. {
  40594. name: "Normal",
  40595. height: math.unit(3 + 3/12, "feet"),
  40596. default: true
  40597. },
  40598. ]
  40599. ))
  40600. characterMakers.push(() => makeCharacter(
  40601. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40602. {
  40603. front: {
  40604. height: math.unit(4, "meters"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/adelonda/front.svg",
  40608. extra: 1077/982,
  40609. bottom: 39/1116
  40610. }
  40611. },
  40612. back: {
  40613. height: math.unit(4, "meters"),
  40614. name: "Back",
  40615. image: {
  40616. source: "./media/characters/adelonda/back.svg",
  40617. extra: 1105/1003,
  40618. bottom: 25/1130
  40619. }
  40620. },
  40621. feral: {
  40622. height: math.unit(40/1.5, "meters"),
  40623. name: "Feral",
  40624. image: {
  40625. source: "./media/characters/adelonda/feral.svg",
  40626. extra: 597/271,
  40627. bottom: 387/984
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(4, "meters"),
  40635. default: true
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40641. {
  40642. front: {
  40643. height: math.unit(8 + 4/12, "feet"),
  40644. weight: math.unit(670, "lb"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/acadiel/front.svg",
  40648. extra: 1901/1595,
  40649. bottom: 142/2043
  40650. }
  40651. },
  40652. },
  40653. [
  40654. {
  40655. name: "Normal",
  40656. height: math.unit(8 + 4/12, "feet"),
  40657. default: true
  40658. },
  40659. {
  40660. name: "Macro",
  40661. height: math.unit(200, "feet")
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40667. {
  40668. front: {
  40669. height: math.unit(6 + 2/12, "feet"),
  40670. weight: math.unit(185, "lb"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/kayne-ein/front.svg",
  40674. extra: 1780/1560,
  40675. bottom: 81/1861
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Normal",
  40682. height: math.unit(6 + 2/12, "feet"),
  40683. default: true
  40684. },
  40685. {
  40686. name: "Transformation Stage",
  40687. height: math.unit(15, "feet")
  40688. },
  40689. {
  40690. name: "Macro",
  40691. height: math.unit(150, "feet")
  40692. },
  40693. {
  40694. name: "Earth's Shadow",
  40695. height: math.unit(6200, "miles")
  40696. },
  40697. {
  40698. name: "Universal Demon",
  40699. height: math.unit(28e9, "parsecs")
  40700. },
  40701. {
  40702. name: "Multiverse God",
  40703. height: math.unit(3, "multiverses")
  40704. },
  40705. ]
  40706. ))
  40707. characterMakers.push(() => makeCharacter(
  40708. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40709. {
  40710. front: {
  40711. height: math.unit(5 + 5/12, "feet"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/fawn/front.svg",
  40715. extra: 1873/1731,
  40716. bottom: 95/1968
  40717. }
  40718. },
  40719. back: {
  40720. height: math.unit(5 + 5/12, "feet"),
  40721. name: "Back",
  40722. image: {
  40723. source: "./media/characters/fawn/back.svg",
  40724. extra: 1813/1700,
  40725. bottom: 14/1827
  40726. }
  40727. },
  40728. hoof: {
  40729. height: math.unit(1.45, "feet"),
  40730. name: "Hoof",
  40731. image: {
  40732. source: "./media/characters/fawn/hoof.svg"
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(5 + 5/12, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40746. {
  40747. front: {
  40748. height: math.unit(2 + 5/12, "feet"),
  40749. name: "Front",
  40750. image: {
  40751. source: "./media/characters/orion/front.svg",
  40752. extra: 1366/1304,
  40753. bottom: 43/1409
  40754. }
  40755. },
  40756. paw: {
  40757. height: math.unit(0.52, "feet"),
  40758. name: "Paw",
  40759. image: {
  40760. source: "./media/characters/orion/paw.svg"
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "Normal",
  40767. height: math.unit(2 + 5/12, "feet"),
  40768. default: true
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40774. {
  40775. front: {
  40776. height: math.unit(5 + 10/12, "feet"),
  40777. name: "Front",
  40778. image: {
  40779. source: "./media/characters/vera/front.svg",
  40780. extra: 1680/1575,
  40781. bottom: 49/1729
  40782. }
  40783. },
  40784. back: {
  40785. height: math.unit(5 + 10/12, "feet"),
  40786. name: "Back",
  40787. image: {
  40788. source: "./media/characters/vera/back.svg",
  40789. extra: 1700/1588,
  40790. bottom: 18/1718
  40791. }
  40792. },
  40793. arcanine: {
  40794. height: math.unit(6 + 8/12, "feet"),
  40795. name: "Arcanine",
  40796. image: {
  40797. source: "./media/characters/vera/arcanine.svg",
  40798. extra: 1590/1511,
  40799. bottom: 71/1661
  40800. }
  40801. },
  40802. maw: {
  40803. height: math.unit(0.82, "feet"),
  40804. name: "Maw",
  40805. image: {
  40806. source: "./media/characters/vera/maw.svg"
  40807. }
  40808. },
  40809. mawArcanine: {
  40810. height: math.unit(0.97, "feet"),
  40811. name: "Maw (Arcanine)",
  40812. image: {
  40813. source: "./media/characters/vera/maw-arcanine.svg"
  40814. }
  40815. },
  40816. paw: {
  40817. height: math.unit(0.75, "feet"),
  40818. name: "Paw",
  40819. image: {
  40820. source: "./media/characters/vera/paw.svg"
  40821. }
  40822. },
  40823. pawprint: {
  40824. height: math.unit(0.52, "feet"),
  40825. name: "Pawprint",
  40826. image: {
  40827. source: "./media/characters/vera/pawprint.svg"
  40828. }
  40829. },
  40830. },
  40831. [
  40832. {
  40833. name: "Normal",
  40834. height: math.unit(5 + 10/12, "feet"),
  40835. default: true
  40836. },
  40837. {
  40838. name: "Macro",
  40839. height: math.unit(75, "feet")
  40840. },
  40841. ]
  40842. ))
  40843. characterMakers.push(() => makeCharacter(
  40844. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40845. {
  40846. front: {
  40847. height: math.unit(4, "feet"),
  40848. weight: math.unit(40, "lb"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/orvan-rabbit/front.svg",
  40852. extra: 1896/1642,
  40853. bottom: 29/1925
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(4, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(6, "feet"),
  40870. weight: math.unit(168, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/lisa/front.svg",
  40874. extra: 2065/1867,
  40875. bottom: 46/2111
  40876. }
  40877. },
  40878. back: {
  40879. height: math.unit(6, "feet"),
  40880. weight: math.unit(168, "lb"),
  40881. name: "Back",
  40882. image: {
  40883. source: "./media/characters/lisa/back.svg",
  40884. extra: 1982/1838,
  40885. bottom: 29/2011
  40886. }
  40887. },
  40888. maw: {
  40889. height: math.unit(0.81, "feet"),
  40890. name: "Maw",
  40891. image: {
  40892. source: "./media/characters/lisa/maw.svg"
  40893. }
  40894. },
  40895. paw: {
  40896. height: math.unit(0.9, "feet"),
  40897. name: "Paw",
  40898. image: {
  40899. source: "./media/characters/lisa/paw.svg"
  40900. }
  40901. },
  40902. caribousune: {
  40903. height: math.unit(7 + 2/12, "feet"),
  40904. weight: math.unit(268, "lb"),
  40905. name: "Caribousune",
  40906. image: {
  40907. source: "./media/characters/lisa/caribousune.svg",
  40908. extra: 1843/1633,
  40909. bottom: 29/1872
  40910. }
  40911. },
  40912. frontCaribousune: {
  40913. height: math.unit(7 + 2/12, "feet"),
  40914. weight: math.unit(268, "lb"),
  40915. name: "Front (Caribousune)",
  40916. image: {
  40917. source: "./media/characters/lisa/front-caribousune.svg",
  40918. extra: 1818/1638,
  40919. bottom: 52/1870
  40920. }
  40921. },
  40922. sideCaribousune: {
  40923. height: math.unit(7 + 2/12, "feet"),
  40924. weight: math.unit(268, "lb"),
  40925. name: "Side (Caribousune)",
  40926. image: {
  40927. source: "./media/characters/lisa/side-caribousune.svg",
  40928. extra: 1851/1635,
  40929. bottom: 16/1867
  40930. }
  40931. },
  40932. backCaribousune: {
  40933. height: math.unit(7 + 2/12, "feet"),
  40934. weight: math.unit(268, "lb"),
  40935. name: "Back (Caribousune)",
  40936. image: {
  40937. source: "./media/characters/lisa/back-caribousune.svg",
  40938. extra: 1801/1604,
  40939. bottom: 44/1845
  40940. }
  40941. },
  40942. caribou: {
  40943. height: math.unit(7 + 2/12, "feet"),
  40944. weight: math.unit(268, "lb"),
  40945. name: "Caribou",
  40946. image: {
  40947. source: "./media/characters/lisa/caribou.svg",
  40948. extra: 1843/1633,
  40949. bottom: 29/1872
  40950. }
  40951. },
  40952. frontCaribou: {
  40953. height: math.unit(7 + 2/12, "feet"),
  40954. weight: math.unit(268, "lb"),
  40955. name: "Front (Caribou)",
  40956. image: {
  40957. source: "./media/characters/lisa/front-caribou.svg",
  40958. extra: 1818/1638,
  40959. bottom: 52/1870
  40960. }
  40961. },
  40962. sideCaribou: {
  40963. height: math.unit(7 + 2/12, "feet"),
  40964. weight: math.unit(268, "lb"),
  40965. name: "Side (Caribou)",
  40966. image: {
  40967. source: "./media/characters/lisa/side-caribou.svg",
  40968. extra: 1851/1635,
  40969. bottom: 16/1867
  40970. }
  40971. },
  40972. backCaribou: {
  40973. height: math.unit(7 + 2/12, "feet"),
  40974. weight: math.unit(268, "lb"),
  40975. name: "Back (Caribou)",
  40976. image: {
  40977. source: "./media/characters/lisa/back-caribou.svg",
  40978. extra: 1801/1604,
  40979. bottom: 44/1845
  40980. }
  40981. },
  40982. mawCaribou: {
  40983. height: math.unit(1.45, "feet"),
  40984. name: "Maw (Caribou)",
  40985. image: {
  40986. source: "./media/characters/lisa/maw-caribou.svg"
  40987. }
  40988. },
  40989. mawCaribousune: {
  40990. height: math.unit(1.45, "feet"),
  40991. name: "Maw (Caribousune)",
  40992. image: {
  40993. source: "./media/characters/lisa/maw-caribousune.svg"
  40994. }
  40995. },
  40996. pawCaribousune: {
  40997. height: math.unit(1.61, "feet"),
  40998. name: "Paw (Caribou)",
  40999. image: {
  41000. source: "./media/characters/lisa/paw-caribousune.svg"
  41001. }
  41002. },
  41003. },
  41004. [
  41005. {
  41006. name: "Normal",
  41007. height: math.unit(6, "feet")
  41008. },
  41009. {
  41010. name: "God Size",
  41011. height: math.unit(72, "feet"),
  41012. default: true
  41013. },
  41014. {
  41015. name: "Towering",
  41016. height: math.unit(288, "feet")
  41017. },
  41018. {
  41019. name: "City Size",
  41020. height: math.unit(48384, "feet")
  41021. },
  41022. {
  41023. name: "Continental",
  41024. height: math.unit(4200, "miles")
  41025. },
  41026. {
  41027. name: "Planet Eater",
  41028. height: math.unit(42, "earths")
  41029. },
  41030. {
  41031. name: "Star Swallower",
  41032. height: math.unit(42, "solarradii")
  41033. },
  41034. {
  41035. name: "System Swallower",
  41036. height: math.unit(84000, "AU")
  41037. },
  41038. {
  41039. name: "Galaxy Gobbler",
  41040. height: math.unit(42, "galaxies")
  41041. },
  41042. {
  41043. name: "Universe Devourer",
  41044. height: math.unit(42, "universes")
  41045. },
  41046. {
  41047. name: "Multiverse Muncher",
  41048. height: math.unit(42, "multiverses")
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(36, "feet"),
  41057. name: "Front",
  41058. image: {
  41059. source: "./media/characters/shadow-rat/front.svg",
  41060. extra: 1845/1758,
  41061. bottom: 83/1928
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Macro",
  41068. height: math.unit(36, "feet"),
  41069. default: true
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41075. {
  41076. side: {
  41077. height: math.unit(8, "feet"),
  41078. weight: math.unit(2630, "lb"),
  41079. name: "Side",
  41080. image: {
  41081. source: "./media/characters/torallia/side.svg",
  41082. extra: 2164/2021,
  41083. bottom: 371/2535
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Mortal Interaction",
  41090. height: math.unit(8, "feet")
  41091. },
  41092. {
  41093. name: "Natural",
  41094. height: math.unit(24, "feet"),
  41095. default: true
  41096. },
  41097. {
  41098. name: "Giant",
  41099. height: math.unit(80, "feet")
  41100. },
  41101. {
  41102. name: "Kaiju",
  41103. height: math.unit(240, "feet")
  41104. },
  41105. {
  41106. name: "Macro",
  41107. height: math.unit(800, "feet")
  41108. },
  41109. {
  41110. name: "Macro+",
  41111. height: math.unit(2400, "feet")
  41112. },
  41113. {
  41114. name: "Macro++",
  41115. height: math.unit(8000, "feet")
  41116. },
  41117. {
  41118. name: "City-Crushing",
  41119. height: math.unit(24000, "feet")
  41120. },
  41121. {
  41122. name: "Mountain-Mashing",
  41123. height: math.unit(80000, "feet")
  41124. },
  41125. {
  41126. name: "District Demolisher",
  41127. height: math.unit(240000, "feet")
  41128. },
  41129. {
  41130. name: "Tri-County Terror",
  41131. height: math.unit(800000, "feet")
  41132. },
  41133. {
  41134. name: "State Smasher",
  41135. height: math.unit(2.4e6, "feet")
  41136. },
  41137. {
  41138. name: "Nation Nemesis",
  41139. height: math.unit(8e6, "feet")
  41140. },
  41141. {
  41142. name: "Continent Cracker",
  41143. height: math.unit(2.4e7, "feet")
  41144. },
  41145. {
  41146. name: "Planet-Pillaging",
  41147. height: math.unit(8e7, "feet")
  41148. },
  41149. {
  41150. name: "Earth-Eclipsing",
  41151. height: math.unit(2.4e8, "feet")
  41152. },
  41153. {
  41154. name: "Jovian-Jostling",
  41155. height: math.unit(8e8, "feet")
  41156. },
  41157. {
  41158. name: "Gas Giant Gulper",
  41159. height: math.unit(2.4e9, "feet")
  41160. },
  41161. {
  41162. name: "Astral Annihilator",
  41163. height: math.unit(8e9, "feet")
  41164. },
  41165. {
  41166. name: "Celestial Conqueror",
  41167. height: math.unit(2.4e10, "feet")
  41168. },
  41169. {
  41170. name: "Sol-Swallowing",
  41171. height: math.unit(8e10, "feet")
  41172. },
  41173. {
  41174. name: "Hunter of the Heavens",
  41175. height: math.unit(2.4e13, "feet")
  41176. },
  41177. ]
  41178. ))
  41179. characterMakers.push(() => makeCharacter(
  41180. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41181. {
  41182. front: {
  41183. height: math.unit(6 + 8/12, "feet"),
  41184. weight: math.unit(250, "kilograms"),
  41185. volume: math.unit(28, "liters"),
  41186. name: "Front",
  41187. image: {
  41188. source: "./media/characters/rebecca-pawlson/front.svg",
  41189. extra: 1737/1596,
  41190. bottom: 107/1844
  41191. }
  41192. },
  41193. back: {
  41194. height: math.unit(6 + 8/12, "feet"),
  41195. weight: math.unit(250, "kilograms"),
  41196. volume: math.unit(28, "liters"),
  41197. name: "Back",
  41198. image: {
  41199. source: "./media/characters/rebecca-pawlson/back.svg",
  41200. extra: 1702/1523,
  41201. bottom: 86/1788
  41202. }
  41203. },
  41204. },
  41205. [
  41206. {
  41207. name: "Normal",
  41208. height: math.unit(6 + 8/12, "feet")
  41209. },
  41210. {
  41211. name: "Mini Macro",
  41212. height: math.unit(10, "feet"),
  41213. default: true
  41214. },
  41215. {
  41216. name: "Macro",
  41217. height: math.unit(100, "feet")
  41218. },
  41219. {
  41220. name: "Mega Macro",
  41221. height: math.unit(2500, "feet")
  41222. },
  41223. {
  41224. name: "Giga Macro",
  41225. height: math.unit(50, "miles")
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41231. {
  41232. front: {
  41233. height: math.unit(7 + 6/12, "feet"),
  41234. weight: math.unit(600, "lb"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/moxie-nova/front.svg",
  41238. extra: 1734/1652,
  41239. bottom: 41/1775
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Normal",
  41246. height: math.unit(7 + 6/12, "feet"),
  41247. default: true
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41253. {
  41254. goat: {
  41255. height: math.unit(4, "feet"),
  41256. weight: math.unit(180, "lb"),
  41257. name: "Goat",
  41258. image: {
  41259. source: "./media/characters/tiffany/goat.svg",
  41260. extra: 1845/1595,
  41261. bottom: 106/1951
  41262. }
  41263. },
  41264. front: {
  41265. height: math.unit(5, "feet"),
  41266. weight: math.unit(150, "lb"),
  41267. name: "Foxcoon",
  41268. image: {
  41269. source: "./media/characters/tiffany/foxcoon.svg",
  41270. extra: 1941/1845,
  41271. bottom: 58/1999
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(5, "feet"),
  41279. default: true
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41285. {
  41286. front: {
  41287. height: math.unit(8, "feet"),
  41288. weight: math.unit(300, "lb"),
  41289. name: "Front",
  41290. image: {
  41291. source: "./media/characters/raxinath/front.svg",
  41292. extra: 1407/1309,
  41293. bottom: 39/1446
  41294. }
  41295. },
  41296. back: {
  41297. height: math.unit(8, "feet"),
  41298. weight: math.unit(300, "lb"),
  41299. name: "Back",
  41300. image: {
  41301. source: "./media/characters/raxinath/back.svg",
  41302. extra: 1405/1315,
  41303. bottom: 9/1414
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Speck",
  41310. height: math.unit(0.5, "nm")
  41311. },
  41312. {
  41313. name: "Micro",
  41314. height: math.unit(3, "inches")
  41315. },
  41316. {
  41317. name: "Kobold",
  41318. height: math.unit(3, "feet")
  41319. },
  41320. {
  41321. name: "Normal",
  41322. height: math.unit(8, "feet"),
  41323. default: true
  41324. },
  41325. {
  41326. name: "Giant",
  41327. height: math.unit(50, "feet")
  41328. },
  41329. {
  41330. name: "Macro",
  41331. height: math.unit(1000, "feet")
  41332. },
  41333. {
  41334. name: "Megamacro",
  41335. height: math.unit(1, "mile")
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(10, "feet"),
  41344. weight: math.unit(1442, "lb"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/mal-dragon/front.svg",
  41348. extra: 1515/1444,
  41349. bottom: 113/1628
  41350. }
  41351. },
  41352. back: {
  41353. height: math.unit(10, "feet"),
  41354. weight: math.unit(1442, "lb"),
  41355. name: "Back",
  41356. image: {
  41357. source: "./media/characters/mal-dragon/back.svg",
  41358. extra: 1527/1434,
  41359. bottom: 25/1552
  41360. }
  41361. },
  41362. },
  41363. [
  41364. {
  41365. name: "Mortal Interaction",
  41366. height: math.unit(10, "feet"),
  41367. default: true
  41368. },
  41369. {
  41370. name: "Large",
  41371. height: math.unit(30, "feet")
  41372. },
  41373. {
  41374. name: "Kaiju",
  41375. height: math.unit(300, "feet")
  41376. },
  41377. {
  41378. name: "Megamacro",
  41379. height: math.unit(10000, "feet")
  41380. },
  41381. {
  41382. name: "Continent Cracker",
  41383. height: math.unit(30000000, "feet")
  41384. },
  41385. {
  41386. name: "Sol-Swallowing",
  41387. height: math.unit(1e11, "feet")
  41388. },
  41389. {
  41390. name: "Light Universal",
  41391. height: math.unit(5, "universes")
  41392. },
  41393. {
  41394. name: "Universe Atoms",
  41395. height: math.unit(1.829e9, "universes")
  41396. },
  41397. {
  41398. name: "Light Multiversal",
  41399. height: math.unit(5, "multiverses")
  41400. },
  41401. {
  41402. name: "Multiverse Atoms",
  41403. height: math.unit(1.829e9, "multiverses")
  41404. },
  41405. {
  41406. name: "Fabric of Time",
  41407. height: math.unit(1e262, "multiverses")
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41413. {
  41414. front: {
  41415. height: math.unit(9, "feet"),
  41416. weight: math.unit(1050, "lb"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/tabitha/front.svg",
  41420. extra: 2083/1994,
  41421. bottom: 68/2151
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Baseline",
  41428. height: math.unit(9, "feet"),
  41429. default: true
  41430. },
  41431. {
  41432. name: "Giant",
  41433. height: math.unit(90, "feet")
  41434. },
  41435. {
  41436. name: "Macro",
  41437. height: math.unit(900, "feet")
  41438. },
  41439. {
  41440. name: "Megamacro",
  41441. height: math.unit(9000, "feet")
  41442. },
  41443. {
  41444. name: "City-Crushing",
  41445. height: math.unit(27000, "feet")
  41446. },
  41447. {
  41448. name: "Mountain-Mashing",
  41449. height: math.unit(90000, "feet")
  41450. },
  41451. {
  41452. name: "Nation Nemesis",
  41453. height: math.unit(9e6, "feet")
  41454. },
  41455. {
  41456. name: "Continent Cracker",
  41457. height: math.unit(27e6, "feet")
  41458. },
  41459. {
  41460. name: "Earth-Eclipsing",
  41461. height: math.unit(2.7e8, "feet")
  41462. },
  41463. {
  41464. name: "Gas Giant Gulper",
  41465. height: math.unit(2.7e9, "feet")
  41466. },
  41467. {
  41468. name: "Sol-Swallowing",
  41469. height: math.unit(9e10, "feet")
  41470. },
  41471. {
  41472. name: "Galaxy Gulper",
  41473. height: math.unit(9, "galaxies")
  41474. },
  41475. {
  41476. name: "Cosmos Churner",
  41477. height: math.unit(9, "universes")
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(160, "cm"),
  41486. weight: math.unit(55, "kg"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/tow/front.svg",
  41490. extra: 1751/1722,
  41491. bottom: 74/1825
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Norm",
  41498. height: math.unit(160, "cm")
  41499. },
  41500. {
  41501. name: "Casual",
  41502. height: math.unit(3200, "m"),
  41503. default: true
  41504. },
  41505. {
  41506. name: "Show-Off",
  41507. height: math.unit(160, "km")
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41513. {
  41514. front: {
  41515. height: math.unit(7 + 11/12, "feet"),
  41516. weight: math.unit(342.8, "lb"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/vivian-orca-dragon/front.svg",
  41520. extra: 1890/1865,
  41521. bottom: 28/1918
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Micro",
  41528. height: math.unit(5, "inches")
  41529. },
  41530. {
  41531. name: "Normal",
  41532. height: math.unit(7 + 11/12, "feet"),
  41533. default: true
  41534. },
  41535. {
  41536. name: "Macro",
  41537. height: math.unit(395 + 7/12, "feet")
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41543. {
  41544. side: {
  41545. height: math.unit(10, "feet"),
  41546. weight: math.unit(1442, "lb"),
  41547. name: "Side",
  41548. image: {
  41549. source: "./media/characters/lotherakon/side.svg",
  41550. extra: 1604/1497,
  41551. bottom: 89/1693
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Mortal Interaction",
  41558. height: math.unit(10, "feet")
  41559. },
  41560. {
  41561. name: "Large",
  41562. height: math.unit(30, "feet"),
  41563. default: true
  41564. },
  41565. {
  41566. name: "Giant",
  41567. height: math.unit(100, "feet")
  41568. },
  41569. {
  41570. name: "Kaiju",
  41571. height: math.unit(300, "feet")
  41572. },
  41573. {
  41574. name: "Macro",
  41575. height: math.unit(1000, "feet")
  41576. },
  41577. {
  41578. name: "Macro+",
  41579. height: math.unit(3000, "feet")
  41580. },
  41581. {
  41582. name: "Megamacro",
  41583. height: math.unit(10000, "feet")
  41584. },
  41585. {
  41586. name: "City-Crushing",
  41587. height: math.unit(30000, "feet")
  41588. },
  41589. {
  41590. name: "Continent Cracker",
  41591. height: math.unit(30e6, "feet")
  41592. },
  41593. {
  41594. name: "Earth Eclipsing",
  41595. height: math.unit(3e8, "feet")
  41596. },
  41597. {
  41598. name: "Gas Giant Gulper",
  41599. height: math.unit(3e9, "feet")
  41600. },
  41601. {
  41602. name: "Sol-Swallowing",
  41603. height: math.unit(1e11, "feet")
  41604. },
  41605. {
  41606. name: "System Swallower",
  41607. height: math.unit(3e14, "feet")
  41608. },
  41609. {
  41610. name: "Galaxy Gulper",
  41611. height: math.unit(10, "galaxies")
  41612. },
  41613. {
  41614. name: "Light Universal",
  41615. height: math.unit(5, "universes")
  41616. },
  41617. {
  41618. name: "Universe Palm",
  41619. height: math.unit(20, "universes")
  41620. },
  41621. {
  41622. name: "Light Multiversal",
  41623. height: math.unit(5, "multiverses")
  41624. },
  41625. {
  41626. name: "Multiverse Palm",
  41627. height: math.unit(20, "multiverses")
  41628. },
  41629. {
  41630. name: "Inferno Incarnate",
  41631. height: math.unit(1e7, "multiverses")
  41632. },
  41633. ]
  41634. ))
  41635. characterMakers.push(() => makeCharacter(
  41636. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41637. {
  41638. front: {
  41639. height: math.unit(8, "feet"),
  41640. weight: math.unit(1200, "lb"),
  41641. name: "Front",
  41642. image: {
  41643. source: "./media/characters/malithee/front.svg",
  41644. extra: 1675/1640,
  41645. bottom: 162/1837
  41646. }
  41647. },
  41648. },
  41649. [
  41650. {
  41651. name: "Mortal Interaction",
  41652. height: math.unit(8, "feet"),
  41653. default: true
  41654. },
  41655. {
  41656. name: "Large",
  41657. height: math.unit(24, "feet")
  41658. },
  41659. {
  41660. name: "Kaiju",
  41661. height: math.unit(240, "feet")
  41662. },
  41663. {
  41664. name: "Megamacro",
  41665. height: math.unit(8000, "feet")
  41666. },
  41667. {
  41668. name: "Continent Cracker",
  41669. height: math.unit(24e6, "feet")
  41670. },
  41671. {
  41672. name: "Earth-Eclipsing",
  41673. height: math.unit(2.4e8, "feet")
  41674. },
  41675. {
  41676. name: "Sol-Swallowing",
  41677. height: math.unit(8e10, "feet")
  41678. },
  41679. {
  41680. name: "Galaxy Gulper",
  41681. height: math.unit(8, "galaxies")
  41682. },
  41683. {
  41684. name: "Light Universal",
  41685. height: math.unit(4, "universes")
  41686. },
  41687. {
  41688. name: "Universe Atoms",
  41689. height: math.unit(1.829e9, "universes")
  41690. },
  41691. {
  41692. name: "Light Multiversal",
  41693. height: math.unit(4, "multiverses")
  41694. },
  41695. {
  41696. name: "Multiverse Atoms",
  41697. height: math.unit(1.829e9, "multiverses")
  41698. },
  41699. {
  41700. name: "Nigh-Omnipresence",
  41701. height: math.unit(8e261, "multiverses")
  41702. },
  41703. ]
  41704. ))
  41705. characterMakers.push(() => makeCharacter(
  41706. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41707. {
  41708. front: {
  41709. height: math.unit(10, "feet"),
  41710. weight: math.unit(1500, "lb"),
  41711. name: "Front",
  41712. image: {
  41713. source: "./media/characters/miles-thestia/front.svg",
  41714. extra: 1812/1727,
  41715. bottom: 86/1898
  41716. }
  41717. },
  41718. back: {
  41719. height: math.unit(10, "feet"),
  41720. weight: math.unit(1500, "lb"),
  41721. name: "Back",
  41722. image: {
  41723. source: "./media/characters/miles-thestia/back.svg",
  41724. extra: 1799/1690,
  41725. bottom: 47/1846
  41726. }
  41727. },
  41728. frontNsfw: {
  41729. height: math.unit(10, "feet"),
  41730. weight: math.unit(1500, "lb"),
  41731. name: "Front (NSFW)",
  41732. image: {
  41733. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41734. extra: 1812/1727,
  41735. bottom: 86/1898
  41736. }
  41737. },
  41738. },
  41739. [
  41740. {
  41741. name: "Mini-Macro",
  41742. height: math.unit(10, "feet"),
  41743. default: true
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(25, "feet"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/titan-s-wulf/front.svg",
  41755. extra: 1560/1484,
  41756. bottom: 76/1636
  41757. }
  41758. },
  41759. },
  41760. [
  41761. {
  41762. name: "Smallest",
  41763. height: math.unit(25, "feet"),
  41764. default: true
  41765. },
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(200, "feet")
  41769. },
  41770. {
  41771. name: "Macro",
  41772. height: math.unit(200000, "feet")
  41773. },
  41774. {
  41775. name: "Multiversal Original",
  41776. height: math.unit(10000, "multiverses")
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41782. {
  41783. front: {
  41784. height: math.unit(8, "feet"),
  41785. weight: math.unit(553, "lb"),
  41786. name: "Front",
  41787. image: {
  41788. source: "./media/characters/tawendeh/front.svg",
  41789. extra: 2365/2268,
  41790. bottom: 83/2448
  41791. }
  41792. },
  41793. frontClothed: {
  41794. height: math.unit(8, "feet"),
  41795. weight: math.unit(553, "lb"),
  41796. name: "Front (Clothed)",
  41797. image: {
  41798. source: "./media/characters/tawendeh/front-clothed.svg",
  41799. extra: 2365/2268,
  41800. bottom: 83/2448
  41801. }
  41802. },
  41803. back: {
  41804. height: math.unit(8, "feet"),
  41805. weight: math.unit(553, "lb"),
  41806. name: "Back",
  41807. image: {
  41808. source: "./media/characters/tawendeh/back.svg",
  41809. extra: 2397/2294,
  41810. bottom: 42/2439
  41811. }
  41812. },
  41813. },
  41814. [
  41815. {
  41816. name: "Mortal Interaction",
  41817. height: math.unit(8, "feet"),
  41818. default: true
  41819. },
  41820. {
  41821. name: "Giant",
  41822. height: math.unit(80, "feet")
  41823. },
  41824. {
  41825. name: "Macro",
  41826. height: math.unit(800, "feet")
  41827. },
  41828. {
  41829. name: "Megamacro",
  41830. height: math.unit(8000, "feet")
  41831. },
  41832. {
  41833. name: "City-Crushing",
  41834. height: math.unit(24000, "feet")
  41835. },
  41836. {
  41837. name: "Mountain-Mashing",
  41838. height: math.unit(80000, "feet")
  41839. },
  41840. {
  41841. name: "Nation Nemesis",
  41842. height: math.unit(8e6, "feet")
  41843. },
  41844. {
  41845. name: "Continent Cracker",
  41846. height: math.unit(24e6, "feet")
  41847. },
  41848. {
  41849. name: "Earth-Eclipsing",
  41850. height: math.unit(2.4e8, "feet")
  41851. },
  41852. {
  41853. name: "Gas Giant Gulper",
  41854. height: math.unit(2.4e9, "feet")
  41855. },
  41856. {
  41857. name: "Sol-Swallowing",
  41858. height: math.unit(8e10, "feet")
  41859. },
  41860. {
  41861. name: "Galaxy Gulper",
  41862. height: math.unit(8, "galaxies")
  41863. },
  41864. {
  41865. name: "Cosmos Churner",
  41866. height: math.unit(8, "universes")
  41867. },
  41868. {
  41869. name: "Omnipotent Otter",
  41870. height: math.unit(80, "universes")
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41876. {
  41877. front: {
  41878. height: math.unit(2.6, "meters"),
  41879. weight: math.unit(900, "kg"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/neesha/front.svg",
  41883. extra: 1803/1653,
  41884. bottom: 128/1931
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(2.6, "meters"),
  41892. default: true
  41893. },
  41894. {
  41895. name: "Macro",
  41896. height: math.unit(50, "meters")
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41902. {
  41903. front: {
  41904. height: math.unit(5, "feet"),
  41905. weight: math.unit(185, "lb"),
  41906. name: "Front",
  41907. image: {
  41908. source: "./media/characters/kyera/front.svg",
  41909. extra: 1875/1790,
  41910. bottom: 96/1971
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(5, "feet"),
  41918. default: true
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(7 + 6/12, "feet"),
  41927. weight: math.unit(540, "lb"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/yuko/front.svg",
  41931. extra: 1282/1222,
  41932. bottom: 101/1383
  41933. }
  41934. },
  41935. frontClothed: {
  41936. height: math.unit(7 + 6/12, "feet"),
  41937. weight: math.unit(540, "lb"),
  41938. name: "Front (Clothed)",
  41939. image: {
  41940. source: "./media/characters/yuko/front-clothed.svg",
  41941. extra: 1282/1222,
  41942. bottom: 101/1383
  41943. }
  41944. },
  41945. },
  41946. [
  41947. {
  41948. name: "Normal",
  41949. height: math.unit(7 + 6/12, "feet"),
  41950. default: true
  41951. },
  41952. {
  41953. name: "Macro",
  41954. height: math.unit(26 + 9/12, "feet")
  41955. },
  41956. {
  41957. name: "Megamacro",
  41958. height: math.unit(300, "feet")
  41959. },
  41960. {
  41961. name: "Gigamacro",
  41962. height: math.unit(5000, "feet")
  41963. },
  41964. {
  41965. name: "Planetary",
  41966. height: math.unit(10000, "miles")
  41967. },
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41972. {
  41973. front: {
  41974. height: math.unit(8 + 2/12, "feet"),
  41975. weight: math.unit(600, "lb"),
  41976. name: "Front",
  41977. image: {
  41978. source: "./media/characters/deam-nitrel/front.svg",
  41979. extra: 1308/1234,
  41980. bottom: 125/1433
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Normal",
  41987. height: math.unit(8 + 2/12, "feet"),
  41988. default: true
  41989. },
  41990. ]
  41991. ))
  41992. characterMakers.push(() => makeCharacter(
  41993. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41994. {
  41995. front: {
  41996. height: math.unit(6.1, "feet"),
  41997. weight: math.unit(180, "lb"),
  41998. name: "Front",
  41999. image: {
  42000. source: "./media/characters/skyress/front.svg",
  42001. extra: 1045/915,
  42002. bottom: 28/1073
  42003. }
  42004. },
  42005. maw: {
  42006. height: math.unit(1, "feet"),
  42007. name: "Maw",
  42008. image: {
  42009. source: "./media/characters/skyress/maw.svg"
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Normal",
  42016. height: math.unit(6.1, "feet"),
  42017. default: true
  42018. },
  42019. {
  42020. name: "Macro",
  42021. height: math.unit(200, "feet")
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42027. {
  42028. front: {
  42029. height: math.unit(4 + 2/12, "feet"),
  42030. weight: math.unit(40, "kg"),
  42031. name: "Front",
  42032. image: {
  42033. source: "./media/characters/amethyst-jones/front.svg",
  42034. extra: 1220/1150,
  42035. bottom: 101/1321
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Normal",
  42042. height: math.unit(4 + 2/12, "feet"),
  42043. default: true
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(1.7, "m"),
  42052. weight: math.unit(135, "lb"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/jade/front.svg",
  42056. extra: 1818/1767,
  42057. bottom: 32/1850
  42058. }
  42059. },
  42060. back: {
  42061. height: math.unit(1.7, "m"),
  42062. weight: math.unit(135, "lb"),
  42063. name: "Back",
  42064. image: {
  42065. source: "./media/characters/jade/back.svg",
  42066. extra: 1869/1809,
  42067. bottom: 35/1904
  42068. }
  42069. },
  42070. hand: {
  42071. height: math.unit(0.24, "m"),
  42072. name: "Hand",
  42073. image: {
  42074. source: "./media/characters/jade/hand.svg"
  42075. }
  42076. },
  42077. foot: {
  42078. height: math.unit(0.263, "m"),
  42079. name: "Foot",
  42080. image: {
  42081. source: "./media/characters/jade/foot.svg"
  42082. }
  42083. },
  42084. dick: {
  42085. height: math.unit(0.47, "m"),
  42086. name: "Dick",
  42087. image: {
  42088. source: "./media/characters/jade/dick.svg"
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Micro",
  42095. height: math.unit(22, "cm")
  42096. },
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(1.7, "m"),
  42100. default: true
  42101. },
  42102. {
  42103. name: "Macro",
  42104. height: math.unit(152, "m")
  42105. },
  42106. ]
  42107. ))
  42108. characterMakers.push(() => makeCharacter(
  42109. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42110. {
  42111. front: {
  42112. height: math.unit(100, "miles"),
  42113. weight: math.unit(20000, "tons"),
  42114. name: "Front",
  42115. image: {
  42116. source: "./media/characters/cookie/front.svg",
  42117. extra: 1125/1070,
  42118. bottom: 30/1155
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Big",
  42125. height: math.unit(50, "feet")
  42126. },
  42127. {
  42128. name: "Macro",
  42129. height: math.unit(100, "miles"),
  42130. default: true
  42131. },
  42132. {
  42133. name: "Megamacro",
  42134. height: math.unit(90000, "miles")
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42140. {
  42141. front: {
  42142. height: math.unit(6, "feet"),
  42143. weight: math.unit(145, "lb"),
  42144. name: "Front",
  42145. image: {
  42146. source: "./media/characters/farzian/front.svg",
  42147. extra: 1902/1693,
  42148. bottom: 108/2010
  42149. }
  42150. },
  42151. },
  42152. [
  42153. {
  42154. name: "Macro",
  42155. height: math.unit(500, "feet"),
  42156. default: true
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(3 + 6/12, "feet"),
  42165. weight: math.unit(50, "lb"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/kimberly-tilson/front.svg",
  42169. extra: 1400/1322,
  42170. bottom: 36/1436
  42171. }
  42172. },
  42173. back: {
  42174. height: math.unit(3 + 6/12, "feet"),
  42175. weight: math.unit(50, "lb"),
  42176. name: "Back",
  42177. image: {
  42178. source: "./media/characters/kimberly-tilson/back.svg",
  42179. extra: 1370/1307,
  42180. bottom: 20/1390
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Normal",
  42187. height: math.unit(3 + 6/12, "feet"),
  42188. default: true
  42189. },
  42190. ]
  42191. ))
  42192. characterMakers.push(() => makeCharacter(
  42193. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42194. {
  42195. front: {
  42196. height: math.unit(1148, "feet"),
  42197. weight: math.unit(34057, "lb"),
  42198. name: "Front",
  42199. image: {
  42200. source: "./media/characters/harthos/front.svg",
  42201. extra: 1391/1339,
  42202. bottom: 13/1404
  42203. }
  42204. },
  42205. },
  42206. [
  42207. {
  42208. name: "Macro",
  42209. height: math.unit(1148, "feet"),
  42210. default: true
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(15, "feet"),
  42219. name: "Front",
  42220. image: {
  42221. source: "./media/characters/hypatia/front.svg",
  42222. extra: 1653/1591,
  42223. bottom: 79/1732
  42224. }
  42225. },
  42226. },
  42227. [
  42228. {
  42229. name: "Normal",
  42230. height: math.unit(15, "feet")
  42231. },
  42232. {
  42233. name: "Small",
  42234. height: math.unit(300, "feet")
  42235. },
  42236. {
  42237. name: "Macro",
  42238. height: math.unit(2500, "feet"),
  42239. default: true
  42240. },
  42241. {
  42242. name: "Mega Macro",
  42243. height: math.unit(1500, "miles")
  42244. },
  42245. {
  42246. name: "Giga Macro",
  42247. height: math.unit(1.5e6, "miles")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42253. {
  42254. front: {
  42255. height: math.unit(6, "feet"),
  42256. weight: math.unit(200, "lb"),
  42257. name: "Front",
  42258. image: {
  42259. source: "./media/characters/wulver/front.svg",
  42260. extra: 1724/1632,
  42261. bottom: 130/1854
  42262. }
  42263. },
  42264. frontNsfw: {
  42265. height: math.unit(6, "feet"),
  42266. weight: math.unit(200, "lb"),
  42267. name: "Front (NSFW)",
  42268. image: {
  42269. source: "./media/characters/wulver/front-nsfw.svg",
  42270. extra: 1724/1632,
  42271. bottom: 130/1854
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Human-Sized",
  42278. height: math.unit(6, "feet")
  42279. },
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(4, "meters"),
  42283. default: true
  42284. },
  42285. {
  42286. name: "Large",
  42287. height: math.unit(6, "m")
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42293. {
  42294. front: {
  42295. height: math.unit(7, "feet"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/maru/front.svg",
  42299. extra: 1595/1570,
  42300. bottom: 0/1595
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Normal",
  42307. height: math.unit(7, "feet"),
  42308. default: true
  42309. },
  42310. {
  42311. name: "Macro",
  42312. height: math.unit(700, "feet")
  42313. },
  42314. {
  42315. name: "Mega Macro",
  42316. height: math.unit(25, "miles")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(6, "feet"),
  42325. weight: math.unit(170, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/xenon/front.svg",
  42329. extra: 1376/1305,
  42330. bottom: 56/1432
  42331. }
  42332. },
  42333. back: {
  42334. height: math.unit(6, "feet"),
  42335. weight: math.unit(170, "lb"),
  42336. name: "Back",
  42337. image: {
  42338. source: "./media/characters/xenon/back.svg",
  42339. extra: 1328/1259,
  42340. bottom: 95/1423
  42341. }
  42342. },
  42343. maw: {
  42344. height: math.unit(0.52, "feet"),
  42345. name: "Maw",
  42346. image: {
  42347. source: "./media/characters/xenon/maw.svg"
  42348. }
  42349. },
  42350. handLeft: {
  42351. height: math.unit(0.82 * 169 / 153, "feet"),
  42352. name: "Hand (Left)",
  42353. image: {
  42354. source: "./media/characters/xenon/hand-left.svg"
  42355. }
  42356. },
  42357. handRight: {
  42358. height: math.unit(0.82, "feet"),
  42359. name: "Hand (Right)",
  42360. image: {
  42361. source: "./media/characters/xenon/hand-right.svg"
  42362. }
  42363. },
  42364. footLeft: {
  42365. height: math.unit(1.13, "feet"),
  42366. name: "Foot (Left)",
  42367. image: {
  42368. source: "./media/characters/xenon/foot-left.svg"
  42369. }
  42370. },
  42371. footRight: {
  42372. height: math.unit(1.13 * 194 / 196, "feet"),
  42373. name: "Foot (Right)",
  42374. image: {
  42375. source: "./media/characters/xenon/foot-right.svg"
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Micro",
  42382. height: math.unit(0.8, "inches")
  42383. },
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(6, "feet")
  42387. },
  42388. {
  42389. name: "Macro",
  42390. height: math.unit(50, "feet"),
  42391. default: true
  42392. },
  42393. {
  42394. name: "Macro+",
  42395. height: math.unit(250, "feet")
  42396. },
  42397. {
  42398. name: "Megamacro",
  42399. height: math.unit(1500, "feet")
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(7 + 5/12, "feet"),
  42408. name: "Front",
  42409. image: {
  42410. source: "./media/characters/zane/front.svg",
  42411. extra: 1260/1203,
  42412. bottom: 94/1354
  42413. }
  42414. },
  42415. back: {
  42416. height: math.unit(5.05, "feet"),
  42417. name: "Back",
  42418. image: {
  42419. source: "./media/characters/zane/back.svg",
  42420. extra: 893/829,
  42421. bottom: 30/923
  42422. }
  42423. },
  42424. werewolf: {
  42425. height: math.unit(11, "feet"),
  42426. name: "Werewolf",
  42427. image: {
  42428. source: "./media/characters/zane/werewolf.svg",
  42429. extra: 1383/1323,
  42430. bottom: 89/1472
  42431. }
  42432. },
  42433. foot: {
  42434. height: math.unit(1.46, "feet"),
  42435. name: "Foot",
  42436. image: {
  42437. source: "./media/characters/zane/foot.svg"
  42438. }
  42439. },
  42440. footFront: {
  42441. height: math.unit(0.784, "feet"),
  42442. name: "Foot (Front)",
  42443. image: {
  42444. source: "./media/characters/zane/foot-front.svg"
  42445. }
  42446. },
  42447. dick: {
  42448. height: math.unit(1.95, "feet"),
  42449. name: "Dick",
  42450. image: {
  42451. source: "./media/characters/zane/dick.svg"
  42452. }
  42453. },
  42454. dickWerewolf: {
  42455. height: math.unit(3.77, "feet"),
  42456. name: "Dick (Werewolf)",
  42457. image: {
  42458. source: "./media/characters/zane/dick.svg"
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Normal",
  42465. height: math.unit(7 + 5/12, "feet"),
  42466. default: true
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(6 + 2/12, "feet"),
  42475. weight: math.unit(284, "lb"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/benni-desparque/front.svg",
  42479. extra: 1353/1126,
  42480. bottom: 69/1422
  42481. }
  42482. },
  42483. },
  42484. [
  42485. {
  42486. name: "Civilian",
  42487. height: math.unit(6 + 2/12, "feet")
  42488. },
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(98, "feet"),
  42492. default: true
  42493. },
  42494. {
  42495. name: "Kaiju Fighter",
  42496. height: math.unit(268, "feet")
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42502. {
  42503. front: {
  42504. height: math.unit(5, "feet"),
  42505. weight: math.unit(105, "lb"),
  42506. name: "Front",
  42507. image: {
  42508. source: "./media/characters/maxine/front.svg",
  42509. extra: 1386/1250,
  42510. bottom: 71/1457
  42511. }
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Normal",
  42517. height: math.unit(5, "feet"),
  42518. default: true
  42519. },
  42520. ]
  42521. ))
  42522. characterMakers.push(() => makeCharacter(
  42523. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42524. {
  42525. front: {
  42526. height: math.unit(11 + 7/12, "feet"),
  42527. weight: math.unit(9576, "lb"),
  42528. name: "Front",
  42529. image: {
  42530. source: "./media/characters/scaly/front.svg",
  42531. extra: 888/867,
  42532. bottom: 36/924
  42533. }
  42534. },
  42535. },
  42536. [
  42537. {
  42538. name: "Normal",
  42539. height: math.unit(11 + 7/12, "feet"),
  42540. default: true
  42541. },
  42542. ]
  42543. ))
  42544. characterMakers.push(() => makeCharacter(
  42545. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42546. {
  42547. front: {
  42548. height: math.unit(6 + 3/12, "feet"),
  42549. name: "Front",
  42550. image: {
  42551. source: "./media/characters/saelria/front.svg",
  42552. extra: 1243/1138,
  42553. bottom: 46/1289
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Micro",
  42560. height: math.unit(6, "inches"),
  42561. },
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(6 + 3/12, "feet"),
  42565. default: true
  42566. },
  42567. {
  42568. name: "Macro",
  42569. height: math.unit(25, "feet")
  42570. },
  42571. ]
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42575. {
  42576. front: {
  42577. height: math.unit(80, "meters"),
  42578. weight: math.unit(7000, "tonnes"),
  42579. name: "Front",
  42580. image: {
  42581. source: "./media/characters/tef/front.svg",
  42582. extra: 2036/1991,
  42583. bottom: 54/2090
  42584. }
  42585. },
  42586. back: {
  42587. height: math.unit(80, "meters"),
  42588. weight: math.unit(7000, "tonnes"),
  42589. name: "Back",
  42590. image: {
  42591. source: "./media/characters/tef/back.svg",
  42592. extra: 2036/1991,
  42593. bottom: 54/2090
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Macro",
  42600. height: math.unit(80, "meters"),
  42601. default: true
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(13, "feet"),
  42610. weight: math.unit(6, "tons"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/rover/front.svg",
  42614. extra: 1233/1156,
  42615. bottom: 50/1283
  42616. }
  42617. },
  42618. back: {
  42619. height: math.unit(13, "feet"),
  42620. weight: math.unit(6, "tons"),
  42621. name: "Back",
  42622. image: {
  42623. source: "./media/characters/rover/back.svg",
  42624. extra: 1327/1258,
  42625. bottom: 39/1366
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(13, "feet"),
  42633. default: true
  42634. },
  42635. {
  42636. name: "Macro",
  42637. height: math.unit(1300, "feet")
  42638. },
  42639. {
  42640. name: "Megamacro",
  42641. height: math.unit(1300, "miles")
  42642. },
  42643. {
  42644. name: "Gigamacro",
  42645. height: math.unit(1300000, "miles")
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(6, "feet"),
  42654. weight: math.unit(150, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/ariz/front.svg",
  42658. extra: 1401/1346,
  42659. bottom: 5/1406
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(10, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(6, "feet"),
  42676. weight: math.unit(140, "lb"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/sigrun/front.svg",
  42680. extra: 1418/1359,
  42681. bottom: 27/1445
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Macro",
  42688. height: math.unit(35, "feet"),
  42689. default: true
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42695. {
  42696. front: {
  42697. height: math.unit(6, "feet"),
  42698. weight: math.unit(150, "lb"),
  42699. name: "Front",
  42700. image: {
  42701. source: "./media/characters/numin/front.svg",
  42702. extra: 1433/1388,
  42703. bottom: 12/1445
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Macro",
  42710. height: math.unit(21.5, "km"),
  42711. default: true
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(6, "feet"),
  42720. weight: math.unit(463, "lb"),
  42721. name: "Front",
  42722. image: {
  42723. source: "./media/characters/melwa/front.svg",
  42724. extra: 1307/1248,
  42725. bottom: 93/1400
  42726. }
  42727. },
  42728. },
  42729. [
  42730. {
  42731. name: "Macro",
  42732. height: math.unit(50, "meters"),
  42733. default: true
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(325, "feet"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/zorkaiju/front.svg",
  42745. extra: 1955/1814,
  42746. bottom: 40/1995
  42747. }
  42748. },
  42749. frontExtended: {
  42750. height: math.unit(325, "feet"),
  42751. name: "Front (Extended)",
  42752. image: {
  42753. source: "./media/characters/zorkaiju/front-extended.svg",
  42754. extra: 1955/1814,
  42755. bottom: 40/1995
  42756. }
  42757. },
  42758. side: {
  42759. height: math.unit(325, "feet"),
  42760. name: "Side",
  42761. image: {
  42762. source: "./media/characters/zorkaiju/side.svg",
  42763. extra: 1495/1396,
  42764. bottom: 17/1512
  42765. }
  42766. },
  42767. sideExtended: {
  42768. height: math.unit(325, "feet"),
  42769. name: "Side (Extended)",
  42770. image: {
  42771. source: "./media/characters/zorkaiju/side-extended.svg",
  42772. extra: 1495/1396,
  42773. bottom: 17/1512
  42774. }
  42775. },
  42776. back: {
  42777. height: math.unit(325, "feet"),
  42778. name: "Back",
  42779. image: {
  42780. source: "./media/characters/zorkaiju/back.svg",
  42781. extra: 1959/1821,
  42782. bottom: 31/1990
  42783. }
  42784. },
  42785. backExtended: {
  42786. height: math.unit(325, "feet"),
  42787. name: "Back (Extended)",
  42788. image: {
  42789. source: "./media/characters/zorkaiju/back-extended.svg",
  42790. extra: 1959/1821,
  42791. bottom: 31/1990
  42792. }
  42793. },
  42794. hand: {
  42795. height: math.unit(58.4, "feet"),
  42796. name: "Hand",
  42797. image: {
  42798. source: "./media/characters/zorkaiju/hand.svg"
  42799. }
  42800. },
  42801. handExtended: {
  42802. height: math.unit(61.4, "feet"),
  42803. name: "Hand (Extended)",
  42804. image: {
  42805. source: "./media/characters/zorkaiju/hand-extended.svg"
  42806. }
  42807. },
  42808. foot: {
  42809. height: math.unit(95, "feet"),
  42810. name: "Foot",
  42811. image: {
  42812. source: "./media/characters/zorkaiju/foot.svg"
  42813. }
  42814. },
  42815. leftArm: {
  42816. height: math.unit(59, "feet"),
  42817. name: "Left Arm",
  42818. image: {
  42819. source: "./media/characters/zorkaiju/left-arm.svg"
  42820. }
  42821. },
  42822. rightArm: {
  42823. height: math.unit(59, "feet"),
  42824. name: "Right Arm",
  42825. image: {
  42826. source: "./media/characters/zorkaiju/right-arm.svg"
  42827. }
  42828. },
  42829. leftArmExtended: {
  42830. height: math.unit(59 * 1.033546, "feet"),
  42831. name: "Left Arm (Extended)",
  42832. image: {
  42833. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42834. }
  42835. },
  42836. rightArmExtended: {
  42837. height: math.unit(59 * 1.0496, "feet"),
  42838. name: "Right Arm (Extended)",
  42839. image: {
  42840. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42841. }
  42842. },
  42843. tail: {
  42844. height: math.unit(104, "feet"),
  42845. name: "Tail",
  42846. image: {
  42847. source: "./media/characters/zorkaiju/tail.svg"
  42848. }
  42849. },
  42850. tailExtended: {
  42851. height: math.unit(104, "feet"),
  42852. name: "Tail (Extended)",
  42853. image: {
  42854. source: "./media/characters/zorkaiju/tail-extended.svg"
  42855. }
  42856. },
  42857. tailBottom: {
  42858. height: math.unit(104, "feet"),
  42859. name: "Tail Bottom",
  42860. image: {
  42861. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42862. }
  42863. },
  42864. crystal: {
  42865. height: math.unit(27.54, "feet"),
  42866. name: "Crystal",
  42867. image: {
  42868. source: "./media/characters/zorkaiju/crystal.svg"
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Kaiju",
  42875. height: math.unit(325, "feet"),
  42876. default: true
  42877. },
  42878. ]
  42879. ))
  42880. characterMakers.push(() => makeCharacter(
  42881. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42882. {
  42883. front: {
  42884. height: math.unit(6 + 1/12, "feet"),
  42885. weight: math.unit(115, "lb"),
  42886. name: "Front",
  42887. image: {
  42888. source: "./media/characters/bailey-belfry/front.svg",
  42889. extra: 1240/1121,
  42890. bottom: 101/1341
  42891. }
  42892. },
  42893. },
  42894. [
  42895. {
  42896. name: "Normal",
  42897. height: math.unit(6 + 1/12, "feet"),
  42898. default: true
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42904. {
  42905. side: {
  42906. height: math.unit(4, "meters"),
  42907. weight: math.unit(250, "kg"),
  42908. name: "Side",
  42909. image: {
  42910. source: "./media/characters/blacky/side.svg",
  42911. extra: 1027/919,
  42912. bottom: 43/1070
  42913. }
  42914. },
  42915. maw: {
  42916. height: math.unit(1, "meters"),
  42917. name: "Maw",
  42918. image: {
  42919. source: "./media/characters/blacky/maw.svg"
  42920. }
  42921. },
  42922. paw: {
  42923. height: math.unit(1, "meters"),
  42924. name: "Paw",
  42925. image: {
  42926. source: "./media/characters/blacky/paw.svg"
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(4, "meters"),
  42934. default: true
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(170, "cm"),
  42943. weight: math.unit(66, "kg"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/thux-ei/front.svg",
  42947. extra: 1109/1011,
  42948. bottom: 8/1117
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Normal",
  42955. height: math.unit(170, "cm"),
  42956. default: true
  42957. },
  42958. ]
  42959. ))
  42960. characterMakers.push(() => makeCharacter(
  42961. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42962. {
  42963. front: {
  42964. height: math.unit(5, "feet"),
  42965. weight: math.unit(120, "lb"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/roxanne-voltaire/front.svg",
  42969. extra: 1901/1779,
  42970. bottom: 53/1954
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Normal",
  42977. height: math.unit(5, "feet"),
  42978. default: true
  42979. },
  42980. {
  42981. name: "Giant",
  42982. height: math.unit(50, "feet")
  42983. },
  42984. {
  42985. name: "Titan",
  42986. height: math.unit(500, "feet")
  42987. },
  42988. {
  42989. name: "Macro",
  42990. height: math.unit(5000, "feet")
  42991. },
  42992. {
  42993. name: "Megamacro",
  42994. height: math.unit(50000, "feet")
  42995. },
  42996. {
  42997. name: "Gigamacro",
  42998. height: math.unit(500000, "feet")
  42999. },
  43000. {
  43001. name: "Teramacro",
  43002. height: math.unit(5e6, "feet")
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43008. {
  43009. front: {
  43010. height: math.unit(6 + 2/12, "feet"),
  43011. name: "Front",
  43012. image: {
  43013. source: "./media/characters/squeaks/front.svg",
  43014. extra: 1823/1768,
  43015. bottom: 138/1961
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Micro",
  43022. height: math.unit(0.5, "inches")
  43023. },
  43024. {
  43025. name: "Normal",
  43026. height: math.unit(6 + 2/12, "feet"),
  43027. default: true
  43028. },
  43029. {
  43030. name: "Macro",
  43031. height: math.unit(600, "feet")
  43032. },
  43033. ]
  43034. ))
  43035. characterMakers.push(() => makeCharacter(
  43036. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43037. {
  43038. front: {
  43039. height: math.unit(1.72, "meters"),
  43040. name: "Front",
  43041. image: {
  43042. source: "./media/characters/archinger/front.svg",
  43043. extra: 1861/1675,
  43044. bottom: 125/1986
  43045. }
  43046. },
  43047. back: {
  43048. height: math.unit(1.72, "meters"),
  43049. name: "Back",
  43050. image: {
  43051. source: "./media/characters/archinger/back.svg",
  43052. extra: 1844/1701,
  43053. bottom: 104/1948
  43054. }
  43055. },
  43056. cock: {
  43057. height: math.unit(0.59, "feet"),
  43058. name: "Cock",
  43059. image: {
  43060. source: "./media/characters/archinger/cock.svg"
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(1.72, "meters"),
  43068. default: true
  43069. },
  43070. {
  43071. name: "Macro",
  43072. height: math.unit(84, "meters")
  43073. },
  43074. {
  43075. name: "Macro+",
  43076. height: math.unit(112, "meters")
  43077. },
  43078. {
  43079. name: "Macro++",
  43080. height: math.unit(960, "meters")
  43081. },
  43082. {
  43083. name: "Macro+++",
  43084. height: math.unit(4, "km")
  43085. },
  43086. {
  43087. name: "Macro++++",
  43088. height: math.unit(48, "km")
  43089. },
  43090. {
  43091. name: "Macro+++++",
  43092. height: math.unit(4500, "km")
  43093. },
  43094. ]
  43095. ))
  43096. characterMakers.push(() => makeCharacter(
  43097. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43098. {
  43099. front: {
  43100. height: math.unit(5 + 5/12, "feet"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/alsnapz/front.svg",
  43104. extra: 1157/1065,
  43105. bottom: 42/1199
  43106. }
  43107. },
  43108. },
  43109. [
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(5 + 5/12, "feet"),
  43113. default: true
  43114. },
  43115. ]
  43116. ))
  43117. characterMakers.push(() => makeCharacter(
  43118. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43119. {
  43120. side: {
  43121. height: math.unit(3.2, "earths"),
  43122. name: "Side",
  43123. image: {
  43124. source: "./media/characters/mag/side.svg",
  43125. extra: 1331/1008,
  43126. bottom: 52/1383
  43127. }
  43128. },
  43129. wing: {
  43130. height: math.unit(1.94, "earths"),
  43131. name: "Wing",
  43132. image: {
  43133. source: "./media/characters/mag/wing.svg"
  43134. }
  43135. },
  43136. dick: {
  43137. height: math.unit(1.8, "earths"),
  43138. name: "Dick",
  43139. image: {
  43140. source: "./media/characters/mag/dick.svg"
  43141. }
  43142. },
  43143. ass: {
  43144. height: math.unit(1.33, "earths"),
  43145. name: "Ass",
  43146. image: {
  43147. source: "./media/characters/mag/ass.svg"
  43148. }
  43149. },
  43150. head: {
  43151. height: math.unit(1.1, "earths"),
  43152. name: "Head",
  43153. image: {
  43154. source: "./media/characters/mag/head.svg"
  43155. }
  43156. },
  43157. maw: {
  43158. height: math.unit(1.62, "earths"),
  43159. name: "Maw",
  43160. image: {
  43161. source: "./media/characters/mag/maw.svg"
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Small",
  43168. height: math.unit(162, "feet")
  43169. },
  43170. {
  43171. name: "Normal",
  43172. height: math.unit(3.2, "earths"),
  43173. default: true
  43174. },
  43175. ]
  43176. ))
  43177. characterMakers.push(() => makeCharacter(
  43178. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43179. {
  43180. front: {
  43181. height: math.unit(512, "feet"),
  43182. weight: math.unit(63509, "tonnes"),
  43183. name: "Front",
  43184. image: {
  43185. source: "./media/characters/vorrel-harroc/front.svg",
  43186. extra: 1075/1063,
  43187. bottom: 62/1137
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(10, "feet")
  43195. },
  43196. {
  43197. name: "Macro",
  43198. height: math.unit(512, "feet"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "Megamacro",
  43203. height: math.unit(256, "miles")
  43204. },
  43205. {
  43206. name: "Gigamacro",
  43207. height: math.unit(4096, "miles")
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43213. {
  43214. side: {
  43215. height: math.unit(50, "feet"),
  43216. name: "Side",
  43217. image: {
  43218. source: "./media/characters/froimar/side.svg",
  43219. extra: 855/638,
  43220. bottom: 99/954
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Macro",
  43227. height: math.unit(50, "feet"),
  43228. default: true
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43234. {
  43235. front: {
  43236. height: math.unit(210, "miles"),
  43237. name: "Front",
  43238. image: {
  43239. source: "./media/characters/timothy/front.svg",
  43240. extra: 1007/943,
  43241. bottom: 62/1069
  43242. }
  43243. },
  43244. frontSkirt: {
  43245. height: math.unit(210, "miles"),
  43246. name: "Front (Skirt)",
  43247. image: {
  43248. source: "./media/characters/timothy/front-skirt.svg",
  43249. extra: 1007/943,
  43250. bottom: 62/1069
  43251. }
  43252. },
  43253. frontCoat: {
  43254. height: math.unit(210, "miles"),
  43255. name: "Front (Coat)",
  43256. image: {
  43257. source: "./media/characters/timothy/front-coat.svg",
  43258. extra: 1007/943,
  43259. bottom: 62/1069
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Macro",
  43266. height: math.unit(210, "miles"),
  43267. default: true
  43268. },
  43269. {
  43270. name: "Megamacro",
  43271. height: math.unit(210000, "miles")
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(188, "feet"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/pyotr/front.svg",
  43283. extra: 1912/1826,
  43284. bottom: 18/1930
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Macro",
  43291. height: math.unit(188, "feet"),
  43292. default: true
  43293. },
  43294. {
  43295. name: "Megamacro",
  43296. height: math.unit(8, "miles")
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43302. {
  43303. side: {
  43304. height: math.unit(10, "feet"),
  43305. weight: math.unit(4500, "lb"),
  43306. name: "Side",
  43307. image: {
  43308. source: "./media/characters/ackart/side.svg",
  43309. extra: 1776/1668,
  43310. bottom: 116/1892
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(10, "feet"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43324. {
  43325. side: {
  43326. height: math.unit(21, "feet"),
  43327. name: "Side",
  43328. image: {
  43329. source: "./media/characters/nolow/side.svg",
  43330. extra: 1484/1434,
  43331. bottom: 85/1569
  43332. }
  43333. },
  43334. sideErect: {
  43335. height: math.unit(21, "feet"),
  43336. name: "Side-erect",
  43337. image: {
  43338. source: "./media/characters/nolow/side-erect.svg",
  43339. extra: 1484/1434,
  43340. bottom: 85/1569
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Regular",
  43347. height: math.unit(12, "feet")
  43348. },
  43349. {
  43350. name: "Big Chee",
  43351. height: math.unit(21, "feet"),
  43352. default: true
  43353. },
  43354. ]
  43355. ))
  43356. characterMakers.push(() => makeCharacter(
  43357. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43358. {
  43359. front: {
  43360. height: math.unit(7, "feet"),
  43361. weight: math.unit(250, "lb"),
  43362. name: "Front",
  43363. image: {
  43364. source: "./media/characters/nines/front.svg",
  43365. extra: 1741/1607,
  43366. bottom: 41/1782
  43367. }
  43368. },
  43369. side: {
  43370. height: math.unit(7, "feet"),
  43371. weight: math.unit(250, "lb"),
  43372. name: "Side",
  43373. image: {
  43374. source: "./media/characters/nines/side.svg",
  43375. extra: 1854/1735,
  43376. bottom: 93/1947
  43377. }
  43378. },
  43379. back: {
  43380. height: math.unit(7, "feet"),
  43381. weight: math.unit(250, "lb"),
  43382. name: "Back",
  43383. image: {
  43384. source: "./media/characters/nines/back.svg",
  43385. extra: 1748/1615,
  43386. bottom: 20/1768
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Megamacro",
  43393. height: math.unit(99, "km"),
  43394. default: true
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(5 + 10/12, "feet"),
  43403. weight: math.unit(210, "lb"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/zenith/front.svg",
  43407. extra: 1531/1452,
  43408. bottom: 198/1729
  43409. }
  43410. },
  43411. back: {
  43412. height: math.unit(5 + 10/12, "feet"),
  43413. weight: math.unit(210, "lb"),
  43414. name: "Back",
  43415. image: {
  43416. source: "./media/characters/zenith/back.svg",
  43417. extra: 1571/1487,
  43418. bottom: 75/1646
  43419. }
  43420. },
  43421. },
  43422. [
  43423. {
  43424. name: "Normal",
  43425. height: math.unit(5 + 10/12, "feet"),
  43426. default: true
  43427. }
  43428. ]
  43429. ))
  43430. characterMakers.push(() => makeCharacter(
  43431. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43432. {
  43433. front: {
  43434. height: math.unit(4, "feet"),
  43435. weight: math.unit(60, "lb"),
  43436. name: "Front",
  43437. image: {
  43438. source: "./media/characters/jasper/front.svg",
  43439. extra: 1450/1379,
  43440. bottom: 19/1469
  43441. }
  43442. },
  43443. },
  43444. [
  43445. {
  43446. name: "Normal",
  43447. height: math.unit(4, "feet"),
  43448. default: true
  43449. },
  43450. ]
  43451. ))
  43452. characterMakers.push(() => makeCharacter(
  43453. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43454. {
  43455. front: {
  43456. height: math.unit(6 + 5/12, "feet"),
  43457. weight: math.unit(290, "lb"),
  43458. name: "Front",
  43459. image: {
  43460. source: "./media/characters/tiberius-thyben/front.svg",
  43461. extra: 757/739,
  43462. bottom: 39/796
  43463. }
  43464. },
  43465. },
  43466. [
  43467. {
  43468. name: "Micro",
  43469. height: math.unit(1.5, "inches")
  43470. },
  43471. {
  43472. name: "Normal",
  43473. height: math.unit(6 + 5/12, "feet"),
  43474. default: true
  43475. },
  43476. {
  43477. name: "Macro",
  43478. height: math.unit(300, "feet")
  43479. },
  43480. ]
  43481. ))
  43482. characterMakers.push(() => makeCharacter(
  43483. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43484. {
  43485. front: {
  43486. height: math.unit(5 + 6/12, "feet"),
  43487. weight: math.unit(60, "kg"),
  43488. name: "Front",
  43489. image: {
  43490. source: "./media/characters/sabre/front.svg",
  43491. extra: 738/671,
  43492. bottom: 27/765
  43493. }
  43494. },
  43495. },
  43496. [
  43497. {
  43498. name: "Teeny",
  43499. height: math.unit(2, "inches")
  43500. },
  43501. {
  43502. name: "Smol",
  43503. height: math.unit(8, "inches")
  43504. },
  43505. {
  43506. name: "Normal",
  43507. height: math.unit(5 + 6/12, "feet"),
  43508. default: true
  43509. },
  43510. {
  43511. name: "Mini-Macro",
  43512. height: math.unit(15, "feet")
  43513. },
  43514. {
  43515. name: "Macro",
  43516. height: math.unit(50, "feet")
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43522. {
  43523. front: {
  43524. height: math.unit(6 + 4/12, "feet"),
  43525. weight: math.unit(170, "lb"),
  43526. name: "Front",
  43527. image: {
  43528. source: "./media/characters/charlie/front.svg",
  43529. extra: 1348/1228,
  43530. bottom: 15/1363
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(1700, "meters"),
  43538. default: true
  43539. },
  43540. {
  43541. name: "MegaMacro",
  43542. height: math.unit(20400, "meters")
  43543. },
  43544. ]
  43545. ))
  43546. characterMakers.push(() => makeCharacter(
  43547. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43548. {
  43549. front: {
  43550. height: math.unit(6 + 3/12, "feet"),
  43551. weight: math.unit(185, "lb"),
  43552. name: "Front",
  43553. image: {
  43554. source: "./media/characters/susan-grant/front.svg",
  43555. extra: 1351/1327,
  43556. bottom: 26/1377
  43557. }
  43558. },
  43559. },
  43560. [
  43561. {
  43562. name: "Normal",
  43563. height: math.unit(6 + 3/12, "feet"),
  43564. default: true
  43565. },
  43566. {
  43567. name: "Macro",
  43568. height: math.unit(225, "feet")
  43569. },
  43570. {
  43571. name: "Macro+",
  43572. height: math.unit(900, "feet")
  43573. },
  43574. {
  43575. name: "MegaMacro",
  43576. height: math.unit(14400, "feet")
  43577. },
  43578. ]
  43579. ))
  43580. characterMakers.push(() => makeCharacter(
  43581. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43582. {
  43583. front: {
  43584. height: math.unit(5 + 4/12, "feet"),
  43585. weight: math.unit(110, "lb"),
  43586. name: "Front",
  43587. image: {
  43588. source: "./media/characters/axel-isanov/front.svg",
  43589. extra: 1096/1065,
  43590. bottom: 13/1109
  43591. }
  43592. },
  43593. },
  43594. [
  43595. {
  43596. name: "Normal",
  43597. height: math.unit(5 + 4/12, "feet"),
  43598. default: true
  43599. },
  43600. ]
  43601. ))
  43602. characterMakers.push(() => makeCharacter(
  43603. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43604. {
  43605. front: {
  43606. height: math.unit(9, "feet"),
  43607. weight: math.unit(467, "lb"),
  43608. name: "Front",
  43609. image: {
  43610. source: "./media/characters/necahual/front.svg",
  43611. extra: 920/873,
  43612. bottom: 26/946
  43613. }
  43614. },
  43615. back: {
  43616. height: math.unit(9, "feet"),
  43617. weight: math.unit(467, "lb"),
  43618. name: "Back",
  43619. image: {
  43620. source: "./media/characters/necahual/back.svg",
  43621. extra: 930/884,
  43622. bottom: 16/946
  43623. }
  43624. },
  43625. frontUnderwear: {
  43626. height: math.unit(9, "feet"),
  43627. weight: math.unit(467, "lb"),
  43628. name: "Front (Underwear)",
  43629. image: {
  43630. source: "./media/characters/necahual/front-underwear.svg",
  43631. extra: 920/873,
  43632. bottom: 26/946
  43633. }
  43634. },
  43635. frontDressed: {
  43636. height: math.unit(9, "feet"),
  43637. weight: math.unit(467, "lb"),
  43638. name: "Front (Dressed)",
  43639. image: {
  43640. source: "./media/characters/necahual/front-dressed.svg",
  43641. extra: 920/873,
  43642. bottom: 26/946
  43643. }
  43644. },
  43645. },
  43646. [
  43647. {
  43648. name: "Comprsesed",
  43649. height: math.unit(9, "feet")
  43650. },
  43651. {
  43652. name: "Natural",
  43653. height: math.unit(15, "feet"),
  43654. default: true
  43655. },
  43656. {
  43657. name: "Boosted",
  43658. height: math.unit(50, "feet")
  43659. },
  43660. {
  43661. name: "Boosted+",
  43662. height: math.unit(150, "feet")
  43663. },
  43664. {
  43665. name: "Max",
  43666. height: math.unit(500, "feet")
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43672. {
  43673. front: {
  43674. height: math.unit(22 + 1/12, "feet"),
  43675. weight: math.unit(3200, "lb"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/theo-acacia/front.svg",
  43679. extra: 1796/1741,
  43680. bottom: 83/1879
  43681. }
  43682. },
  43683. frontUnderwear: {
  43684. height: math.unit(22 + 1/12, "feet"),
  43685. weight: math.unit(3200, "lb"),
  43686. name: "Front (Underwear)",
  43687. image: {
  43688. source: "./media/characters/theo-acacia/front-underwear.svg",
  43689. extra: 1796/1741,
  43690. bottom: 83/1879
  43691. }
  43692. },
  43693. frontNude: {
  43694. height: math.unit(22 + 1/12, "feet"),
  43695. weight: math.unit(3200, "lb"),
  43696. name: "Front (Nude)",
  43697. image: {
  43698. source: "./media/characters/theo-acacia/front-nude.svg",
  43699. extra: 1796/1741,
  43700. bottom: 83/1879
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Normal",
  43707. height: math.unit(22 + 1/12, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43714. {
  43715. front: {
  43716. height: math.unit(20, "feet"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/astra/front.svg",
  43720. extra: 1850/1714,
  43721. bottom: 106/1956
  43722. }
  43723. },
  43724. frontUndressed: {
  43725. height: math.unit(20, "feet"),
  43726. name: "Front (Undressed)",
  43727. image: {
  43728. source: "./media/characters/astra/front-undressed.svg",
  43729. extra: 1926/1749,
  43730. bottom: 0/1926
  43731. }
  43732. },
  43733. hand: {
  43734. height: math.unit(1.53, "feet"),
  43735. name: "Hand",
  43736. image: {
  43737. source: "./media/characters/astra/hand.svg"
  43738. }
  43739. },
  43740. paw: {
  43741. height: math.unit(1.53, "feet"),
  43742. name: "Paw",
  43743. image: {
  43744. source: "./media/characters/astra/paw.svg"
  43745. }
  43746. },
  43747. },
  43748. [
  43749. {
  43750. name: "Smallest",
  43751. height: math.unit(20, "feet")
  43752. },
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(1e9, "miles"),
  43756. default: true
  43757. },
  43758. {
  43759. name: "Larger",
  43760. height: math.unit(5, "multiverses")
  43761. },
  43762. {
  43763. name: "Largest",
  43764. height: math.unit(1e9, "multiverses")
  43765. },
  43766. ]
  43767. ))
  43768. characterMakers.push(() => makeCharacter(
  43769. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43770. {
  43771. front: {
  43772. height: math.unit(8, "feet"),
  43773. name: "Front",
  43774. image: {
  43775. source: "./media/characters/breanna/front.svg",
  43776. extra: 1912/1632,
  43777. bottom: 33/1945
  43778. }
  43779. },
  43780. },
  43781. [
  43782. {
  43783. name: "Smallest",
  43784. height: math.unit(8, "feet")
  43785. },
  43786. {
  43787. name: "Normal",
  43788. height: math.unit(1, "mile"),
  43789. default: true
  43790. },
  43791. {
  43792. name: "Maximum",
  43793. height: math.unit(1500000000000, "lightyears")
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43799. {
  43800. front: {
  43801. height: math.unit(5 + 11/12, "feet"),
  43802. weight: math.unit(155, "lb"),
  43803. name: "Front",
  43804. image: {
  43805. source: "./media/characters/cai/front.svg",
  43806. extra: 1823/1702,
  43807. bottom: 32/1855
  43808. }
  43809. },
  43810. back: {
  43811. height: math.unit(5 + 11/12, "feet"),
  43812. weight: math.unit(155, "lb"),
  43813. name: "Back",
  43814. image: {
  43815. source: "./media/characters/cai/back.svg",
  43816. extra: 1809/1708,
  43817. bottom: 31/1840
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(5 + 11/12, "feet"),
  43825. default: true
  43826. },
  43827. {
  43828. name: "Big",
  43829. height: math.unit(15, "feet")
  43830. },
  43831. {
  43832. name: "Macro",
  43833. height: math.unit(200, "feet")
  43834. },
  43835. ]
  43836. ))
  43837. characterMakers.push(() => makeCharacter(
  43838. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43839. {
  43840. front: {
  43841. height: math.unit(5 + 6/12, "feet"),
  43842. weight: math.unit(160, "lb"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43846. extra: 1227/1174,
  43847. bottom: 37/1264
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Macro",
  43854. height: math.unit(444, "meters"),
  43855. default: true
  43856. },
  43857. ]
  43858. ))
  43859. characterMakers.push(() => makeCharacter(
  43860. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43861. {
  43862. front: {
  43863. height: math.unit(18 + 7/12, "feet"),
  43864. name: "Front",
  43865. image: {
  43866. source: "./media/characters/rex/front.svg",
  43867. extra: 1941/1807,
  43868. bottom: 66/2007
  43869. }
  43870. },
  43871. back: {
  43872. height: math.unit(18 + 7/12, "feet"),
  43873. name: "Back",
  43874. image: {
  43875. source: "./media/characters/rex/back.svg",
  43876. extra: 1937/1822,
  43877. bottom: 42/1979
  43878. }
  43879. },
  43880. boot: {
  43881. height: math.unit(3.45, "feet"),
  43882. name: "Boot",
  43883. image: {
  43884. source: "./media/characters/rex/boot.svg"
  43885. }
  43886. },
  43887. paw: {
  43888. height: math.unit(4.17, "feet"),
  43889. name: "Paw",
  43890. image: {
  43891. source: "./media/characters/rex/paw.svg"
  43892. }
  43893. },
  43894. head: {
  43895. height: math.unit(6.728, "feet"),
  43896. name: "Head",
  43897. image: {
  43898. source: "./media/characters/rex/head.svg"
  43899. }
  43900. },
  43901. },
  43902. [
  43903. {
  43904. name: "Nano",
  43905. height: math.unit(18 + 7/12, "feet")
  43906. },
  43907. {
  43908. name: "Micro",
  43909. height: math.unit(1.5, "megameters")
  43910. },
  43911. {
  43912. name: "Normal",
  43913. height: math.unit(440, "megameters"),
  43914. default: true
  43915. },
  43916. {
  43917. name: "Macro",
  43918. height: math.unit(2.5, "gigameters")
  43919. },
  43920. {
  43921. name: "Gigamacro",
  43922. height: math.unit(2, "galaxies")
  43923. },
  43924. ]
  43925. ))
  43926. characterMakers.push(() => makeCharacter(
  43927. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43928. {
  43929. side: {
  43930. height: math.unit(32, "feet"),
  43931. weight: math.unit(250000, "lb"),
  43932. name: "Side",
  43933. image: {
  43934. source: "./media/characters/silverwing/side.svg",
  43935. extra: 1100/1019,
  43936. bottom: 204/1304
  43937. }
  43938. },
  43939. },
  43940. [
  43941. {
  43942. name: "Normal",
  43943. height: math.unit(32, "feet"),
  43944. default: true
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43950. {
  43951. front: {
  43952. height: math.unit(6 + 6/12, "feet"),
  43953. weight: math.unit(350, "lb"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/tristan-hawthorne/front.svg",
  43957. extra: 1159/1124,
  43958. bottom: 37/1196
  43959. },
  43960. form: "labrador",
  43961. default: true
  43962. },
  43963. skunkFront: {
  43964. height: math.unit(4 + 6/12, "feet"),
  43965. weight: math.unit(120, "lb"),
  43966. name: "Front",
  43967. image: {
  43968. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43969. extra: 1609/1551,
  43970. bottom: 169/1778
  43971. },
  43972. form: "skunk",
  43973. default: true
  43974. },
  43975. },
  43976. [
  43977. {
  43978. name: "Normal",
  43979. height: math.unit(6 + 6/12, "feet"),
  43980. form: "labrador",
  43981. default: true
  43982. },
  43983. {
  43984. name: "Normal",
  43985. height: math.unit(4 + 6/12, "feet"),
  43986. form: "skunk",
  43987. default: true
  43988. },
  43989. ],
  43990. {
  43991. "labrador": {
  43992. name: "Labrador",
  43993. default: true
  43994. },
  43995. "skunk": {
  43996. name: "Skunk"
  43997. }
  43998. }
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44002. {
  44003. front: {
  44004. height: math.unit(5 + 11/12, "feet"),
  44005. weight: math.unit(190, "lb"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/mizu/front.svg",
  44009. extra: 1988/1788,
  44010. bottom: 14/2002
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Normal",
  44017. height: math.unit(5 + 11/12, "feet"),
  44018. default: true
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(1.7, "feet"),
  44027. weight: math.unit(50, "lb"),
  44028. name: "Front",
  44029. image: {
  44030. source: "./media/characters/dechroma/front.svg",
  44031. extra: 1095/859,
  44032. bottom: 64/1159
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Normal",
  44039. height: math.unit(1.7, "feet"),
  44040. default: true
  44041. },
  44042. ]
  44043. ))
  44044. characterMakers.push(() => makeCharacter(
  44045. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44046. {
  44047. side: {
  44048. height: math.unit(30, "feet"),
  44049. name: "Side",
  44050. image: {
  44051. source: "./media/characters/veluren-thanazel/side.svg",
  44052. extra: 1611/633,
  44053. bottom: 118/1729
  44054. }
  44055. },
  44056. front: {
  44057. height: math.unit(30, "feet"),
  44058. name: "Front",
  44059. image: {
  44060. source: "./media/characters/veluren-thanazel/front.svg",
  44061. extra: 1486/636,
  44062. bottom: 238/1724
  44063. }
  44064. },
  44065. head: {
  44066. height: math.unit(21.4, "feet"),
  44067. name: "Head",
  44068. image: {
  44069. source: "./media/characters/veluren-thanazel/head.svg"
  44070. }
  44071. },
  44072. genitals: {
  44073. height: math.unit(19.4, "feet"),
  44074. name: "Genitals",
  44075. image: {
  44076. source: "./media/characters/veluren-thanazel/genitals.svg"
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Social",
  44083. height: math.unit(6, "feet")
  44084. },
  44085. {
  44086. name: "Play",
  44087. height: math.unit(12, "feet")
  44088. },
  44089. {
  44090. name: "True",
  44091. height: math.unit(30, "feet"),
  44092. default: true
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44098. {
  44099. front: {
  44100. height: math.unit(7 + 6/12, "feet"),
  44101. weight: math.unit(500, "kg"),
  44102. name: "Front",
  44103. image: {
  44104. source: "./media/characters/arcturas/front.svg",
  44105. extra: 1700/1500,
  44106. bottom: 145/1845
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Normal",
  44113. height: math.unit(7 + 6/12, "feet"),
  44114. default: true
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44120. {
  44121. side: {
  44122. height: math.unit(6, "feet"),
  44123. weight: math.unit(2, "tons"),
  44124. name: "Side",
  44125. image: {
  44126. source: "./media/characters/vitaen/side.svg",
  44127. extra: 1157/617,
  44128. bottom: 122/1279
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(6, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44142. {
  44143. front: {
  44144. height: math.unit(19, "feet"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/fia-dreamweaver/front.svg",
  44148. extra: 1630/1504,
  44149. bottom: 25/1655
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(19, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(5 + 4/12, "feet"),
  44166. name: "Front",
  44167. image: {
  44168. source: "./media/characters/artan/front.svg",
  44169. extra: 1618/1535,
  44170. bottom: 46/1664
  44171. }
  44172. },
  44173. back: {
  44174. height: math.unit(5 + 4/12, "feet"),
  44175. name: "Back",
  44176. image: {
  44177. source: "./media/characters/artan/back.svg",
  44178. extra: 1618/1543,
  44179. bottom: 31/1649
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Normal",
  44186. height: math.unit(5 + 4/12, "feet"),
  44187. default: true
  44188. },
  44189. ]
  44190. ))
  44191. characterMakers.push(() => makeCharacter(
  44192. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44193. {
  44194. side: {
  44195. height: math.unit(182, "cm"),
  44196. weight: math.unit(1000, "lb"),
  44197. name: "Side",
  44198. image: {
  44199. source: "./media/characters/silver-dragon/side.svg",
  44200. extra: 710/287,
  44201. bottom: 88/798
  44202. }
  44203. },
  44204. },
  44205. [
  44206. {
  44207. name: "Normal",
  44208. height: math.unit(182, "cm"),
  44209. default: true
  44210. },
  44211. ]
  44212. ))
  44213. characterMakers.push(() => makeCharacter(
  44214. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44215. {
  44216. side: {
  44217. height: math.unit(6 + 6/12, "feet"),
  44218. weight: math.unit(1.5, "tons"),
  44219. name: "Side",
  44220. image: {
  44221. source: "./media/characters/zephyr/side.svg",
  44222. extra: 1433/586,
  44223. bottom: 109/1542
  44224. }
  44225. },
  44226. },
  44227. [
  44228. {
  44229. name: "Normal",
  44230. height: math.unit(6 + 6/12, "feet"),
  44231. default: true
  44232. },
  44233. ]
  44234. ))
  44235. characterMakers.push(() => makeCharacter(
  44236. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44237. {
  44238. side: {
  44239. height: math.unit(1, "feet"),
  44240. name: "Side",
  44241. image: {
  44242. source: "./media/characters/vixye/side.svg",
  44243. extra: 632/541,
  44244. bottom: 0/632
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(1, "feet"),
  44252. default: true
  44253. },
  44254. {
  44255. name: "True",
  44256. height: math.unit(1e15, "multiverses")
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(8 + 2/12, "feet"),
  44265. weight: math.unit(650, "lb"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44269. extra: 1174/1137,
  44270. bottom: 82/1256
  44271. }
  44272. },
  44273. back: {
  44274. height: math.unit(8 + 2/12, "feet"),
  44275. weight: math.unit(650, "lb"),
  44276. name: "Back",
  44277. image: {
  44278. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44279. extra: 1204/1157,
  44280. bottom: 46/1250
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Wildform",
  44287. height: math.unit(8 + 2/12, "feet"),
  44288. default: true
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44294. {
  44295. front: {
  44296. height: math.unit(18, "feet"),
  44297. name: "Front",
  44298. image: {
  44299. source: "./media/characters/cyphin/front.svg",
  44300. extra: 970/886,
  44301. bottom: 42/1012
  44302. }
  44303. },
  44304. back: {
  44305. height: math.unit(18, "feet"),
  44306. name: "Back",
  44307. image: {
  44308. source: "./media/characters/cyphin/back.svg",
  44309. extra: 1009/894,
  44310. bottom: 24/1033
  44311. }
  44312. },
  44313. head: {
  44314. height: math.unit(5.05, "feet"),
  44315. name: "Head",
  44316. image: {
  44317. source: "./media/characters/cyphin/head.svg"
  44318. }
  44319. },
  44320. tailbud: {
  44321. height: math.unit(5, "feet"),
  44322. name: "Tailbud",
  44323. image: {
  44324. source: "./media/characters/cyphin/tailbud.svg"
  44325. }
  44326. },
  44327. },
  44328. [
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44333. {
  44334. side: {
  44335. height: math.unit(10, "feet"),
  44336. weight: math.unit(6, "tons"),
  44337. name: "Side",
  44338. image: {
  44339. source: "./media/characters/raijin/side.svg",
  44340. extra: 1529/613,
  44341. bottom: 337/1866
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(10, "feet"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44355. {
  44356. side: {
  44357. height: math.unit(9, "feet"),
  44358. name: "Side",
  44359. image: {
  44360. source: "./media/characters/nilghais/side.svg",
  44361. extra: 1047/744,
  44362. bottom: 91/1138
  44363. }
  44364. },
  44365. head: {
  44366. height: math.unit(3.14, "feet"),
  44367. name: "Head",
  44368. image: {
  44369. source: "./media/characters/nilghais/head.svg"
  44370. }
  44371. },
  44372. mouth: {
  44373. height: math.unit(4.6, "feet"),
  44374. name: "Mouth",
  44375. image: {
  44376. source: "./media/characters/nilghais/mouth.svg"
  44377. }
  44378. },
  44379. wings: {
  44380. height: math.unit(24, "feet"),
  44381. name: "Wings",
  44382. image: {
  44383. source: "./media/characters/nilghais/wings.svg"
  44384. }
  44385. },
  44386. ass: {
  44387. height: math.unit(6.12, "feet"),
  44388. name: "Ass",
  44389. image: {
  44390. source: "./media/characters/nilghais/ass.svg"
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Normal",
  44397. height: math.unit(9, "feet"),
  44398. default: true
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44404. {
  44405. regular: {
  44406. height: math.unit(16 + 2/12, "feet"),
  44407. weight: math.unit(2300, "lb"),
  44408. name: "Regular",
  44409. image: {
  44410. source: "./media/characters/zolgar/regular.svg",
  44411. extra: 1246/1004,
  44412. bottom: 124/1370
  44413. }
  44414. },
  44415. boxers: {
  44416. height: math.unit(16 + 2/12, "feet"),
  44417. weight: math.unit(2300, "lb"),
  44418. name: "Boxers",
  44419. image: {
  44420. source: "./media/characters/zolgar/boxers.svg",
  44421. extra: 1246/1004,
  44422. bottom: 124/1370
  44423. }
  44424. },
  44425. armored: {
  44426. height: math.unit(16 + 2/12, "feet"),
  44427. weight: math.unit(2300, "lb"),
  44428. name: "Armored",
  44429. image: {
  44430. source: "./media/characters/zolgar/armored.svg",
  44431. extra: 1246/1004,
  44432. bottom: 124/1370
  44433. }
  44434. },
  44435. goth: {
  44436. height: math.unit(16 + 2/12, "feet"),
  44437. weight: math.unit(2300, "lb"),
  44438. name: "Goth",
  44439. image: {
  44440. source: "./media/characters/zolgar/goth.svg",
  44441. extra: 1246/1004,
  44442. bottom: 124/1370
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Shrunken Down",
  44449. height: math.unit(9 + 2/12, "feet")
  44450. },
  44451. {
  44452. name: "Normal",
  44453. height: math.unit(16 + 2/12, "feet"),
  44454. default: true
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44460. {
  44461. front: {
  44462. height: math.unit(6, "feet"),
  44463. weight: math.unit(168, "lb"),
  44464. name: "Front",
  44465. image: {
  44466. source: "./media/characters/luca/front.svg",
  44467. extra: 841/667,
  44468. bottom: 102/943
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Normal",
  44475. height: math.unit(6, "feet"),
  44476. default: true
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44482. {
  44483. side: {
  44484. height: math.unit(7 + 3/12, "feet"),
  44485. weight: math.unit(312, "lb"),
  44486. name: "Side",
  44487. image: {
  44488. source: "./media/characters/zezo/side.svg",
  44489. extra: 1192/1067,
  44490. bottom: 63/1255
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(7 + 3/12, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(5 + 5/12, "feet"),
  44507. weight: math.unit(170, "lb"),
  44508. name: "Front",
  44509. image: {
  44510. source: "./media/characters/mayso/front.svg",
  44511. extra: 1215/1108,
  44512. bottom: 16/1231
  44513. }
  44514. },
  44515. },
  44516. [
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(5 + 5/12, "feet"),
  44520. default: true
  44521. },
  44522. ]
  44523. ))
  44524. characterMakers.push(() => makeCharacter(
  44525. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44526. {
  44527. front: {
  44528. height: math.unit(4 + 3/12, "feet"),
  44529. weight: math.unit(80, "lb"),
  44530. name: "Front",
  44531. image: {
  44532. source: "./media/characters/hess/front.svg",
  44533. extra: 1200/1123,
  44534. bottom: 16/1216
  44535. }
  44536. },
  44537. },
  44538. [
  44539. {
  44540. name: "Normal",
  44541. height: math.unit(4 + 3/12, "feet"),
  44542. default: true
  44543. },
  44544. ]
  44545. ))
  44546. characterMakers.push(() => makeCharacter(
  44547. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44548. {
  44549. front: {
  44550. height: math.unit(1.9, "meters"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/ashgar/front.svg",
  44554. extra: 1177/1146,
  44555. bottom: 99/1276
  44556. }
  44557. },
  44558. back: {
  44559. height: math.unit(1.9, "meters"),
  44560. name: "Back",
  44561. image: {
  44562. source: "./media/characters/ashgar/back.svg",
  44563. extra: 1201/1183,
  44564. bottom: 53/1254
  44565. }
  44566. },
  44567. feral: {
  44568. height: math.unit(1.4, "meters"),
  44569. name: "Feral",
  44570. image: {
  44571. source: "./media/characters/ashgar/feral.svg",
  44572. extra: 370/345,
  44573. bottom: 45/415
  44574. }
  44575. },
  44576. },
  44577. [
  44578. {
  44579. name: "Normal",
  44580. height: math.unit(1.9, "meters"),
  44581. default: true
  44582. },
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44587. {
  44588. regular: {
  44589. height: math.unit(6, "feet"),
  44590. weight: math.unit(220, "lb"),
  44591. name: "Regular",
  44592. image: {
  44593. source: "./media/characters/phillip/regular.svg",
  44594. extra: 1373/1277,
  44595. bottom: 75/1448
  44596. }
  44597. },
  44598. dressed: {
  44599. height: math.unit(6, "feet"),
  44600. weight: math.unit(220, "lb"),
  44601. name: "Dressed",
  44602. image: {
  44603. source: "./media/characters/phillip/dressed.svg",
  44604. extra: 1373/1277,
  44605. bottom: 75/1448
  44606. }
  44607. },
  44608. paw: {
  44609. height: math.unit(1.44, "feet"),
  44610. name: "Paw",
  44611. image: {
  44612. source: "./media/characters/phillip/paw.svg"
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(6, "feet"),
  44620. default: true
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44626. {
  44627. side: {
  44628. height: math.unit(42, "feet"),
  44629. name: "Side",
  44630. image: {
  44631. source: "./media/characters/uvula/side.svg",
  44632. extra: 683/586,
  44633. bottom: 60/743
  44634. }
  44635. },
  44636. front: {
  44637. height: math.unit(42, "feet"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/uvula/front.svg",
  44641. extra: 705/613,
  44642. bottom: 54/759
  44643. }
  44644. },
  44645. maw: {
  44646. height: math.unit(23.5, "feet"),
  44647. name: "Maw",
  44648. image: {
  44649. source: "./media/characters/uvula/maw.svg"
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Original Size",
  44656. height: math.unit(14, "inches")
  44657. },
  44658. {
  44659. name: "Human Size",
  44660. height: math.unit(6, "feet")
  44661. },
  44662. {
  44663. name: "Big",
  44664. height: math.unit(42, "feet"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Bigger",
  44669. height: math.unit(100, "feet")
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44675. {
  44676. front: {
  44677. height: math.unit(5 + 11/12, "feet"),
  44678. name: "Front",
  44679. image: {
  44680. source: "./media/characters/lannah/front.svg",
  44681. extra: 1208/1113,
  44682. bottom: 97/1305
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(5 + 11/12, "feet"),
  44690. default: true
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44696. {
  44697. front: {
  44698. height: math.unit(6 + 3/12, "feet"),
  44699. weight: math.unit(3.5, "tons"),
  44700. name: "Front",
  44701. image: {
  44702. source: "./media/characters/emberflame/front.svg",
  44703. extra: 1198/672,
  44704. bottom: 82/1280
  44705. }
  44706. },
  44707. side: {
  44708. height: math.unit(6 + 3/12, "feet"),
  44709. weight: math.unit(3.5, "tons"),
  44710. name: "Side",
  44711. image: {
  44712. source: "./media/characters/emberflame/side.svg",
  44713. extra: 938/527,
  44714. bottom: 56/994
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(6 + 3/12, "feet"),
  44722. default: true
  44723. },
  44724. ]
  44725. ))
  44726. characterMakers.push(() => makeCharacter(
  44727. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44728. {
  44729. side: {
  44730. height: math.unit(17.5, "feet"),
  44731. weight: math.unit(35, "tons"),
  44732. name: "Side",
  44733. image: {
  44734. source: "./media/characters/sophie-ambrose/side.svg",
  44735. extra: 1573/1242,
  44736. bottom: 71/1644
  44737. }
  44738. },
  44739. maw: {
  44740. height: math.unit(7.4, "feet"),
  44741. name: "Maw",
  44742. image: {
  44743. source: "./media/characters/sophie-ambrose/maw.svg"
  44744. }
  44745. },
  44746. },
  44747. [
  44748. {
  44749. name: "Normal",
  44750. height: math.unit(17.5, "feet"),
  44751. default: true
  44752. },
  44753. ]
  44754. ))
  44755. characterMakers.push(() => makeCharacter(
  44756. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44757. {
  44758. front: {
  44759. height: math.unit(280, "feet"),
  44760. weight: math.unit(550, "tons"),
  44761. name: "Front",
  44762. image: {
  44763. source: "./media/characters/king-mugi/front.svg",
  44764. extra: 1102/947,
  44765. bottom: 104/1206
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "King Mugi",
  44772. height: math.unit(280, "feet"),
  44773. default: true
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44779. {
  44780. front: {
  44781. height: math.unit(64, "meters"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/nova-fox/front.svg",
  44785. extra: 1310/1246,
  44786. bottom: 65/1375
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Macro",
  44793. height: math.unit(64, "meters"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44800. {
  44801. front: {
  44802. height: math.unit(6 + 3/12, "feet"),
  44803. weight: math.unit(170, "lb"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/sam-bat/front.svg",
  44807. extra: 1601/1411,
  44808. bottom: 125/1726
  44809. }
  44810. },
  44811. back: {
  44812. height: math.unit(6 + 3/12, "feet"),
  44813. weight: math.unit(170, "lb"),
  44814. name: "Back",
  44815. image: {
  44816. source: "./media/characters/sam-bat/back.svg",
  44817. extra: 1577/1405,
  44818. bottom: 58/1635
  44819. }
  44820. },
  44821. },
  44822. [
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(6 + 3/12, "feet"),
  44826. default: true
  44827. },
  44828. ]
  44829. ))
  44830. characterMakers.push(() => makeCharacter(
  44831. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44832. {
  44833. front: {
  44834. height: math.unit(59, "feet"),
  44835. weight: math.unit(40000, "lb"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/inari/front.svg",
  44839. extra: 1884/1350,
  44840. bottom: 95/1979
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Gigantamax",
  44847. height: math.unit(59, "feet"),
  44848. default: true
  44849. },
  44850. ]
  44851. ))
  44852. characterMakers.push(() => makeCharacter(
  44853. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44854. {
  44855. front: {
  44856. height: math.unit(5 + 8/12, "feet"),
  44857. name: "Front",
  44858. image: {
  44859. source: "./media/characters/elizabeth/front.svg",
  44860. extra: 1395/1298,
  44861. bottom: 54/1449
  44862. }
  44863. },
  44864. mouth: {
  44865. height: math.unit(1.97, "feet"),
  44866. name: "Mouth",
  44867. image: {
  44868. source: "./media/characters/elizabeth/mouth.svg"
  44869. }
  44870. },
  44871. foot: {
  44872. height: math.unit(1.17, "feet"),
  44873. name: "Foot",
  44874. image: {
  44875. source: "./media/characters/elizabeth/foot.svg"
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(5 + 8/12, "feet"),
  44883. default: true
  44884. },
  44885. {
  44886. name: "Minimacro",
  44887. height: math.unit(18, "feet")
  44888. },
  44889. {
  44890. name: "Macro",
  44891. height: math.unit(180, "feet")
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(5 + 2/12, "feet"),
  44900. name: "Front",
  44901. image: {
  44902. source: "./media/characters/october-gossamer/front.svg",
  44903. extra: 505/454,
  44904. bottom: 7/512
  44905. }
  44906. },
  44907. back: {
  44908. height: math.unit(5 + 2/12, "feet"),
  44909. name: "Back",
  44910. image: {
  44911. source: "./media/characters/october-gossamer/back.svg",
  44912. extra: 501/454,
  44913. bottom: 11/512
  44914. }
  44915. },
  44916. },
  44917. [
  44918. {
  44919. name: "Normal",
  44920. height: math.unit(5 + 2/12, "feet"),
  44921. default: true
  44922. },
  44923. ]
  44924. ))
  44925. characterMakers.push(() => makeCharacter(
  44926. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44927. {
  44928. front: {
  44929. height: math.unit(5, "feet"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/epiglottis/front.svg",
  44933. extra: 923/849,
  44934. bottom: 17/940
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Original Size",
  44941. height: math.unit(10, "inches")
  44942. },
  44943. {
  44944. name: "Human Size",
  44945. height: math.unit(5, "feet"),
  44946. default: true
  44947. },
  44948. {
  44949. name: "Big",
  44950. height: math.unit(25, "feet")
  44951. },
  44952. {
  44953. name: "Bigger",
  44954. height: math.unit(50, "feet")
  44955. },
  44956. {
  44957. name: "oh lawd",
  44958. height: math.unit(75, "feet")
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44964. {
  44965. front: {
  44966. height: math.unit(2 + 4/12, "feet"),
  44967. weight: math.unit(60, "lb"),
  44968. name: "Front",
  44969. image: {
  44970. source: "./media/characters/lerm/front.svg",
  44971. extra: 796/790,
  44972. bottom: 79/875
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Normal",
  44979. height: math.unit(2 + 4/12, "feet"),
  44980. default: true
  44981. },
  44982. ]
  44983. ))
  44984. characterMakers.push(() => makeCharacter(
  44985. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44986. {
  44987. front: {
  44988. height: math.unit(5.5, "feet"),
  44989. weight: math.unit(130, "lb"),
  44990. name: "Front",
  44991. image: {
  44992. source: "./media/characters/xena-nebadon/front.svg",
  44993. extra: 1828/1730,
  44994. bottom: 79/1907
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Tiny Puppy",
  45001. height: math.unit(3, "inches")
  45002. },
  45003. {
  45004. name: "Normal",
  45005. height: math.unit(5.5, "feet"),
  45006. default: true
  45007. },
  45008. {
  45009. name: "Lotta Lady",
  45010. height: math.unit(12, "feet")
  45011. },
  45012. {
  45013. name: "Pretty Big",
  45014. height: math.unit(100, "feet")
  45015. },
  45016. {
  45017. name: "Big",
  45018. height: math.unit(500, "feet")
  45019. },
  45020. {
  45021. name: "Skyscraper Toys",
  45022. height: math.unit(2500, "feet")
  45023. },
  45024. {
  45025. name: "Plane Catcher",
  45026. height: math.unit(8, "miles")
  45027. },
  45028. {
  45029. name: "Planet Toys",
  45030. height: math.unit(15, "earths")
  45031. },
  45032. {
  45033. name: "Stardust",
  45034. height: math.unit(0.25, "galaxies")
  45035. },
  45036. {
  45037. name: "Snacks",
  45038. height: math.unit(70, "universes")
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45044. {
  45045. front: {
  45046. height: math.unit(1.6, "meters"),
  45047. weight: math.unit(60, "kg"),
  45048. name: "Front",
  45049. image: {
  45050. source: "./media/characters/bounty/front.svg",
  45051. extra: 1426/1308,
  45052. bottom: 15/1441
  45053. }
  45054. },
  45055. back: {
  45056. height: math.unit(1.6, "meters"),
  45057. weight: math.unit(60, "kg"),
  45058. name: "Back",
  45059. image: {
  45060. source: "./media/characters/bounty/back.svg",
  45061. extra: 1417/1307,
  45062. bottom: 8/1425
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(1.6, "meters"),
  45070. default: true
  45071. },
  45072. {
  45073. name: "Macro",
  45074. height: math.unit(300, "meters")
  45075. },
  45076. ]
  45077. ))
  45078. characterMakers.push(() => makeCharacter(
  45079. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45080. {
  45081. front: {
  45082. height: math.unit(2 + 8/12, "feet"),
  45083. weight: math.unit(15, "lb"),
  45084. name: "Front",
  45085. image: {
  45086. source: "./media/characters/mochi/front.svg",
  45087. extra: 1022/852,
  45088. bottom: 435/1457
  45089. }
  45090. },
  45091. back: {
  45092. height: math.unit(2 + 8/12, "feet"),
  45093. weight: math.unit(15, "lb"),
  45094. name: "Back",
  45095. image: {
  45096. source: "./media/characters/mochi/back.svg",
  45097. extra: 1335/1119,
  45098. bottom: 39/1374
  45099. }
  45100. },
  45101. bird: {
  45102. height: math.unit(2 + 8/12, "feet"),
  45103. weight: math.unit(15, "lb"),
  45104. name: "Bird",
  45105. image: {
  45106. source: "./media/characters/mochi/bird.svg",
  45107. extra: 1251/1113,
  45108. bottom: 178/1429
  45109. }
  45110. },
  45111. kaiju: {
  45112. height: math.unit(154, "feet"),
  45113. weight: math.unit(1e7, "lb"),
  45114. name: "Kaiju",
  45115. image: {
  45116. source: "./media/characters/mochi/kaiju.svg",
  45117. extra: 460/324,
  45118. bottom: 40/500
  45119. }
  45120. },
  45121. head: {
  45122. height: math.unit(1.21, "feet"),
  45123. name: "Head",
  45124. image: {
  45125. source: "./media/characters/mochi/head.svg"
  45126. }
  45127. },
  45128. alternateTail: {
  45129. height: math.unit(2 + 8/12, "feet"),
  45130. weight: math.unit(45, "lb"),
  45131. name: "Alternate Tail",
  45132. image: {
  45133. source: "./media/characters/mochi/alternate-tail.svg",
  45134. extra: 139/76,
  45135. bottom: 45/184
  45136. }
  45137. },
  45138. },
  45139. [
  45140. {
  45141. name: "Micro",
  45142. height: math.unit(2, "inches")
  45143. },
  45144. {
  45145. name: "Normal",
  45146. height: math.unit(2 + 8/12, "feet"),
  45147. default: true
  45148. },
  45149. {
  45150. name: "Macro",
  45151. height: math.unit(106, "feet")
  45152. },
  45153. ]
  45154. ))
  45155. characterMakers.push(() => makeCharacter(
  45156. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45157. {
  45158. front: {
  45159. height: math.unit(5.67, "feet"),
  45160. weight: math.unit(135, "lb"),
  45161. name: "Front",
  45162. image: {
  45163. source: "./media/characters/sarel/front.svg",
  45164. extra: 865/788,
  45165. bottom: 97/962
  45166. }
  45167. },
  45168. back: {
  45169. height: math.unit(5.67, "feet"),
  45170. weight: math.unit(135, "lb"),
  45171. name: "Back",
  45172. image: {
  45173. source: "./media/characters/sarel/back.svg",
  45174. extra: 857/777,
  45175. bottom: 32/889
  45176. }
  45177. },
  45178. chozoan: {
  45179. height: math.unit(5.67, "feet"),
  45180. weight: math.unit(135, "lb"),
  45181. name: "Chozoan",
  45182. image: {
  45183. source: "./media/characters/sarel/chozoan.svg",
  45184. extra: 865/788,
  45185. bottom: 97/962
  45186. }
  45187. },
  45188. current: {
  45189. height: math.unit(5.67, "feet"),
  45190. weight: math.unit(135, "lb"),
  45191. name: "Current",
  45192. image: {
  45193. source: "./media/characters/sarel/current.svg",
  45194. extra: 865/788,
  45195. bottom: 97/962
  45196. }
  45197. },
  45198. head: {
  45199. height: math.unit(1.77, "feet"),
  45200. name: "Head",
  45201. image: {
  45202. source: "./media/characters/sarel/head.svg"
  45203. }
  45204. },
  45205. claws: {
  45206. height: math.unit(1.8, "feet"),
  45207. name: "Claws",
  45208. image: {
  45209. source: "./media/characters/sarel/claws.svg"
  45210. }
  45211. },
  45212. clawsAlt: {
  45213. height: math.unit(1.8, "feet"),
  45214. name: "Claws-alt",
  45215. image: {
  45216. source: "./media/characters/sarel/claws-alt.svg"
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(5.67, "feet"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45230. {
  45231. front: {
  45232. height: math.unit(5500, "feet"),
  45233. name: "Front",
  45234. image: {
  45235. source: "./media/characters/alyonia/front.svg",
  45236. extra: 1200/1135,
  45237. bottom: 29/1229
  45238. }
  45239. },
  45240. back: {
  45241. height: math.unit(5500, "feet"),
  45242. name: "Back",
  45243. image: {
  45244. source: "./media/characters/alyonia/back.svg",
  45245. extra: 1205/1138,
  45246. bottom: 10/1215
  45247. }
  45248. },
  45249. },
  45250. [
  45251. {
  45252. name: "Small",
  45253. height: math.unit(10, "feet")
  45254. },
  45255. {
  45256. name: "Macro",
  45257. height: math.unit(500, "feet")
  45258. },
  45259. {
  45260. name: "Mega Macro",
  45261. height: math.unit(5500, "feet"),
  45262. default: true
  45263. },
  45264. {
  45265. name: "Mega Macro+",
  45266. height: math.unit(500000, "feet")
  45267. },
  45268. {
  45269. name: "Giga Macro",
  45270. height: math.unit(3000, "miles")
  45271. },
  45272. {
  45273. name: "Tera Macro",
  45274. height: math.unit(2.8e6, "miles")
  45275. },
  45276. {
  45277. name: "Galactic",
  45278. height: math.unit(120000, "lightyears")
  45279. },
  45280. ]
  45281. ))
  45282. characterMakers.push(() => makeCharacter(
  45283. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45284. {
  45285. werewolf: {
  45286. height: math.unit(8, "feet"),
  45287. weight: math.unit(425, "lb"),
  45288. name: "Werewolf",
  45289. image: {
  45290. source: "./media/characters/autumn/werewolf.svg",
  45291. extra: 2154/2031,
  45292. bottom: 160/2314
  45293. }
  45294. },
  45295. human: {
  45296. height: math.unit(5 + 8/12, "feet"),
  45297. weight: math.unit(150, "lb"),
  45298. name: "Human",
  45299. image: {
  45300. source: "./media/characters/autumn/human.svg",
  45301. extra: 1200/1149,
  45302. bottom: 30/1230
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Normal",
  45309. height: math.unit(8, "feet"),
  45310. default: true
  45311. },
  45312. ]
  45313. ))
  45314. characterMakers.push(() => makeCharacter(
  45315. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45316. {
  45317. front: {
  45318. height: math.unit(8 + 5/12, "feet"),
  45319. weight: math.unit(825, "lb"),
  45320. name: "Front",
  45321. image: {
  45322. source: "./media/characters/cobalt-charizard/front.svg",
  45323. extra: 1268/1155,
  45324. bottom: 122/1390
  45325. }
  45326. },
  45327. side: {
  45328. height: math.unit(8 + 5/12, "feet"),
  45329. weight: math.unit(825, "lb"),
  45330. name: "Side",
  45331. image: {
  45332. source: "./media/characters/cobalt-charizard/side.svg",
  45333. extra: 1348/1257,
  45334. bottom: 58/1406
  45335. }
  45336. },
  45337. gMax: {
  45338. height: math.unit(134 + 11/12, "feet"),
  45339. name: "G-Max",
  45340. image: {
  45341. source: "./media/characters/cobalt-charizard/g-max.svg",
  45342. extra: 1835/1541,
  45343. bottom: 151/1986
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Normal",
  45350. height: math.unit(8 + 5/12, "feet"),
  45351. default: true
  45352. },
  45353. ]
  45354. ))
  45355. characterMakers.push(() => makeCharacter(
  45356. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45357. {
  45358. front: {
  45359. height: math.unit(6 + 3/12, "feet"),
  45360. weight: math.unit(210, "lb"),
  45361. name: "Front",
  45362. image: {
  45363. source: "./media/characters/stella/front.svg",
  45364. extra: 3549/3335,
  45365. bottom: 51/3600
  45366. }
  45367. },
  45368. },
  45369. [
  45370. {
  45371. name: "Normal",
  45372. height: math.unit(6 + 3/12, "feet"),
  45373. default: true
  45374. },
  45375. ]
  45376. ))
  45377. characterMakers.push(() => makeCharacter(
  45378. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45379. {
  45380. front: {
  45381. height: math.unit(5, "feet"),
  45382. weight: math.unit(90, "lb"),
  45383. name: "Front",
  45384. image: {
  45385. source: "./media/characters/riley-bishop/front.svg",
  45386. extra: 1450/1428,
  45387. bottom: 152/1602
  45388. }
  45389. },
  45390. },
  45391. [
  45392. {
  45393. name: "Normal",
  45394. height: math.unit(5, "feet"),
  45395. default: true
  45396. },
  45397. ]
  45398. ))
  45399. characterMakers.push(() => makeCharacter(
  45400. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45401. {
  45402. side: {
  45403. height: math.unit(8 + 2/12, "feet"),
  45404. weight: math.unit(500, "kg"),
  45405. name: "Side",
  45406. image: {
  45407. source: "./media/characters/theo-arcanine/side.svg",
  45408. extra: 1342/1074,
  45409. bottom: 111/1453
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal",
  45416. height: math.unit(8 + 2/12, "feet"),
  45417. default: true
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(4, "feet"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/kali/front.svg",
  45429. extra: 1921/1357,
  45430. bottom: 70/1991
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(4, "feet"),
  45438. default: true
  45439. },
  45440. {
  45441. name: "Macro",
  45442. height: math.unit(32, "meters")
  45443. },
  45444. {
  45445. name: "Macro+",
  45446. height: math.unit(150, "meters")
  45447. },
  45448. {
  45449. name: "Megamacro",
  45450. height: math.unit(7500, "meters")
  45451. },
  45452. {
  45453. name: "Megamacro+",
  45454. height: math.unit(80, "kilometers")
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45460. {
  45461. side: {
  45462. height: math.unit(5 + 11/12, "feet"),
  45463. weight: math.unit(236, "lb"),
  45464. name: "Side",
  45465. image: {
  45466. source: "./media/characters/gapp/side.svg",
  45467. extra: 775/340,
  45468. bottom: 58/833
  45469. }
  45470. },
  45471. mouth: {
  45472. height: math.unit(2.98, "feet"),
  45473. name: "Mouth",
  45474. image: {
  45475. source: "./media/characters/gapp/mouth.svg"
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(5 + 1/12, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45489. {
  45490. front: {
  45491. height: math.unit(6, "feet"),
  45492. name: "Front",
  45493. image: {
  45494. source: "./media/characters/persephone/front.svg",
  45495. extra: 1895/1717,
  45496. bottom: 96/1991
  45497. }
  45498. },
  45499. back: {
  45500. height: math.unit(6, "feet"),
  45501. name: "Back",
  45502. image: {
  45503. source: "./media/characters/persephone/back.svg",
  45504. extra: 1868/1679,
  45505. bottom: 26/1894
  45506. }
  45507. },
  45508. casual: {
  45509. height: math.unit(6, "feet"),
  45510. name: "Casual",
  45511. image: {
  45512. source: "./media/characters/persephone/casual.svg",
  45513. extra: 1713/1541,
  45514. bottom: 76/1789
  45515. }
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Human Size",
  45521. height: math.unit(6, "feet")
  45522. },
  45523. {
  45524. name: "Big Steppy",
  45525. height: math.unit(600, "meters"),
  45526. default: true
  45527. },
  45528. {
  45529. name: "Galaxy Brain",
  45530. height: math.unit(1, "zettameter")
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(1.85, "meters"),
  45539. name: "Front",
  45540. image: {
  45541. source: "./media/characters/riley-foxthing/front.svg",
  45542. extra: 1495/1354,
  45543. bottom: 122/1617
  45544. }
  45545. },
  45546. frontAlt: {
  45547. height: math.unit(1.85, "meters"),
  45548. name: "Front (Alt)",
  45549. image: {
  45550. source: "./media/characters/riley-foxthing/front-alt.svg",
  45551. extra: 1572/1389,
  45552. bottom: 116/1688
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Normal Sized",
  45559. height: math.unit(1.85, "meters"),
  45560. default: true
  45561. },
  45562. {
  45563. name: "Quite Sizable",
  45564. height: math.unit(5, "meters")
  45565. },
  45566. {
  45567. name: "Rather Large",
  45568. height: math.unit(20, "meters")
  45569. },
  45570. {
  45571. name: "Macro",
  45572. height: math.unit(450, "meters")
  45573. },
  45574. {
  45575. name: "Giga",
  45576. height: math.unit(5, "km")
  45577. },
  45578. ]
  45579. ))
  45580. characterMakers.push(() => makeCharacter(
  45581. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45582. {
  45583. front: {
  45584. height: math.unit(6, "feet"),
  45585. weight: math.unit(200, "lb"),
  45586. name: "Front",
  45587. image: {
  45588. source: "./media/characters/blizzard/front.svg",
  45589. extra: 1136/990,
  45590. bottom: 136/1272
  45591. }
  45592. },
  45593. back: {
  45594. height: math.unit(6, "feet"),
  45595. weight: math.unit(200, "lb"),
  45596. name: "Back",
  45597. image: {
  45598. source: "./media/characters/blizzard/back.svg",
  45599. extra: 1175/1034,
  45600. bottom: 97/1272
  45601. }
  45602. },
  45603. sitting: {
  45604. height: math.unit(3.725, "feet"),
  45605. weight: math.unit(200, "lb"),
  45606. name: "Sitting",
  45607. image: {
  45608. source: "./media/characters/blizzard/sitting.svg",
  45609. extra: 581/485,
  45610. bottom: 90/671
  45611. }
  45612. },
  45613. frontWizard: {
  45614. height: math.unit(7.9, "feet"),
  45615. weight: math.unit(200, "lb"),
  45616. name: "Front (Wizard)",
  45617. image: {
  45618. source: "./media/characters/blizzard/front-wizard.svg"
  45619. }
  45620. },
  45621. backWizard: {
  45622. height: math.unit(7.9, "feet"),
  45623. weight: math.unit(200, "lb"),
  45624. name: "Back (Wizard)",
  45625. image: {
  45626. source: "./media/characters/blizzard/back-wizard.svg"
  45627. }
  45628. },
  45629. frontNsfw: {
  45630. height: math.unit(6, "feet"),
  45631. weight: math.unit(200, "lb"),
  45632. name: "Front (NSFW)",
  45633. image: {
  45634. source: "./media/characters/blizzard/front-nsfw.svg",
  45635. extra: 1136/990,
  45636. bottom: 136/1272
  45637. }
  45638. },
  45639. backNsfw: {
  45640. height: math.unit(6, "feet"),
  45641. weight: math.unit(200, "lb"),
  45642. name: "Back (NSFW)",
  45643. image: {
  45644. source: "./media/characters/blizzard/back-nsfw.svg",
  45645. extra: 1175/1034,
  45646. bottom: 97/1272
  45647. }
  45648. },
  45649. sittingNsfw: {
  45650. height: math.unit(3.725, "feet"),
  45651. weight: math.unit(200, "lb"),
  45652. name: "Sitting (NSFW)",
  45653. image: {
  45654. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45655. extra: 581/485,
  45656. bottom: 90/671
  45657. }
  45658. },
  45659. wizardFrontNsfw: {
  45660. height: math.unit(7.9, "feet"),
  45661. weight: math.unit(200, "lb"),
  45662. name: "Wizard (Front, NSFW)",
  45663. image: {
  45664. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(6, "feet"),
  45672. default: true
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45678. {
  45679. front: {
  45680. height: math.unit(5 + 2/12, "feet"),
  45681. name: "Front",
  45682. image: {
  45683. source: "./media/characters/lumi/front.svg",
  45684. extra: 1328/1268,
  45685. bottom: 103/1431
  45686. }
  45687. },
  45688. back: {
  45689. height: math.unit(5 + 2/12, "feet"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/lumi/back.svg",
  45693. extra: 1381/1327,
  45694. bottom: 43/1424
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(5 + 2/12, "feet"),
  45702. default: true
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45708. {
  45709. front: {
  45710. height: math.unit(5 + 9/12, "feet"),
  45711. name: "Front",
  45712. image: {
  45713. source: "./media/characters/aliya-cotton/front.svg",
  45714. extra: 577/564,
  45715. bottom: 29/606
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Normal",
  45722. height: math.unit(5 + 9/12, "feet"),
  45723. default: true
  45724. },
  45725. ]
  45726. ))
  45727. characterMakers.push(() => makeCharacter(
  45728. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45729. {
  45730. front: {
  45731. height: math.unit(2.7, "meters"),
  45732. weight: math.unit(25000, "lb"),
  45733. name: "Front",
  45734. image: {
  45735. source: "./media/characters/noah-luxray/front.svg",
  45736. extra: 1644/825,
  45737. bottom: 339/1983
  45738. }
  45739. },
  45740. side: {
  45741. height: math.unit(2.97, "meters"),
  45742. weight: math.unit(25000, "lb"),
  45743. name: "Side",
  45744. image: {
  45745. source: "./media/characters/noah-luxray/side.svg",
  45746. extra: 1319/650,
  45747. bottom: 163/1482
  45748. }
  45749. },
  45750. dick: {
  45751. height: math.unit(7.4, "feet"),
  45752. weight: math.unit(2500, "lb"),
  45753. name: "Dick",
  45754. image: {
  45755. source: "./media/characters/noah-luxray/dick.svg"
  45756. }
  45757. },
  45758. dickAlt: {
  45759. height: math.unit(10.83, "feet"),
  45760. weight: math.unit(2500, "lb"),
  45761. name: "Dick-alt",
  45762. image: {
  45763. source: "./media/characters/noah-luxray/dick-alt.svg"
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "BIG",
  45770. height: math.unit(2.7, "meters"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45777. {
  45778. standing: {
  45779. height: math.unit(183, "cm"),
  45780. weight: math.unit(68, "kg"),
  45781. name: "Standing",
  45782. image: {
  45783. source: "./media/characters/arion/standing.svg",
  45784. extra: 1869/1807,
  45785. bottom: 93/1962
  45786. }
  45787. },
  45788. reclining: {
  45789. height: math.unit(70.5, "cm"),
  45790. weight: math.unit(68, "lb"),
  45791. name: "Reclining",
  45792. image: {
  45793. source: "./media/characters/arion/reclining.svg",
  45794. extra: 937/870,
  45795. bottom: 63/1000
  45796. }
  45797. },
  45798. },
  45799. [
  45800. {
  45801. name: "Colossus Size, Low",
  45802. height: math.unit(33, "meters"),
  45803. default: true
  45804. },
  45805. {
  45806. name: "Colossus Size, Mid",
  45807. height: math.unit(52, "meters")
  45808. },
  45809. {
  45810. name: "Colossus Size, High",
  45811. height: math.unit(60, "meters")
  45812. },
  45813. {
  45814. name: "Titan Size, Low",
  45815. height: math.unit(91, "meters"),
  45816. },
  45817. {
  45818. name: "Titan Size, Mid",
  45819. height: math.unit(122, "meters")
  45820. },
  45821. {
  45822. name: "Titan Size, High",
  45823. height: math.unit(162, "meters")
  45824. },
  45825. ]
  45826. ))
  45827. characterMakers.push(() => makeCharacter(
  45828. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45829. {
  45830. front: {
  45831. height: math.unit(53, "meters"),
  45832. name: "Front",
  45833. image: {
  45834. source: "./media/characters/stellar-marbey/front.svg",
  45835. extra: 1913/1805,
  45836. bottom: 92/2005
  45837. }
  45838. },
  45839. back: {
  45840. height: math.unit(53, "meters"),
  45841. name: "Back",
  45842. image: {
  45843. source: "./media/characters/stellar-marbey/back.svg",
  45844. extra: 1960/1851,
  45845. bottom: 28/1988
  45846. }
  45847. },
  45848. mouth: {
  45849. height: math.unit(3.5, "meters"),
  45850. name: "Mouth",
  45851. image: {
  45852. source: "./media/characters/stellar-marbey/mouth.svg"
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Macro",
  45859. height: math.unit(53, "meters"),
  45860. default: true
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(8 + 1/12, "feet"),
  45869. weight: math.unit(233, "lb"),
  45870. name: "Front",
  45871. image: {
  45872. source: "./media/characters/matsu/front.svg",
  45873. extra: 832/772,
  45874. bottom: 40/872
  45875. }
  45876. },
  45877. back: {
  45878. height: math.unit(8 + 1/12, "feet"),
  45879. weight: math.unit(233, "lb"),
  45880. name: "Back",
  45881. image: {
  45882. source: "./media/characters/matsu/back.svg",
  45883. extra: 839/780,
  45884. bottom: 47/886
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(8 + 1/12, "feet"),
  45892. default: true
  45893. },
  45894. ]
  45895. ))
  45896. characterMakers.push(() => makeCharacter(
  45897. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45898. {
  45899. front: {
  45900. height: math.unit(4, "feet"),
  45901. weight: math.unit(148, "lb"),
  45902. name: "Front",
  45903. image: {
  45904. source: "./media/characters/thiz/front.svg",
  45905. extra: 1913/1748,
  45906. bottom: 62/1975
  45907. }
  45908. },
  45909. },
  45910. [
  45911. {
  45912. name: "Normal",
  45913. height: math.unit(4, "feet"),
  45914. default: true
  45915. },
  45916. ]
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45920. {
  45921. front: {
  45922. height: math.unit(7 + 6/12, "feet"),
  45923. weight: math.unit(267, "lb"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/marcel/front.svg",
  45927. extra: 1221/1096,
  45928. bottom: 76/1297
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Normal",
  45935. height: math.unit(7 + 6/12, "feet"),
  45936. default: true
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45942. {
  45943. side: {
  45944. height: math.unit(42, "meters"),
  45945. name: "Side",
  45946. image: {
  45947. source: "./media/characters/flake/side.svg",
  45948. extra: 1525/1306,
  45949. bottom: 209/1734
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(42, "meters"),
  45957. default: true
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45963. {
  45964. dressed: {
  45965. height: math.unit(6 + 4/12, "feet"),
  45966. weight: math.unit(520, "lb"),
  45967. name: "Dressed",
  45968. image: {
  45969. source: "./media/characters/someonne/dressed.svg",
  45970. extra: 1020/1010,
  45971. bottom: 178/1198
  45972. }
  45973. },
  45974. undressed: {
  45975. height: math.unit(6 + 4/12, "feet"),
  45976. weight: math.unit(520, "lb"),
  45977. name: "Undressed",
  45978. image: {
  45979. source: "./media/characters/someonne/undressed.svg",
  45980. extra: 1019/1014,
  45981. bottom: 169/1188
  45982. }
  45983. },
  45984. },
  45985. [
  45986. {
  45987. name: "Normal",
  45988. height: math.unit(6 + 4/12, "feet"),
  45989. default: true
  45990. },
  45991. ]
  45992. ))
  45993. characterMakers.push(() => makeCharacter(
  45994. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45995. {
  45996. front: {
  45997. height: math.unit(3, "feet"),
  45998. weight: math.unit(30, "lb"),
  45999. name: "Front",
  46000. image: {
  46001. source: "./media/characters/till/front.svg",
  46002. extra: 892/823,
  46003. bottom: 55/947
  46004. }
  46005. },
  46006. },
  46007. [
  46008. {
  46009. name: "Normal",
  46010. height: math.unit(3, "feet"),
  46011. default: true
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(9 + 8/12, "feet"),
  46020. weight: math.unit(800, "lb"),
  46021. name: "Front",
  46022. image: {
  46023. source: "./media/characters/sydney-heki/front.svg",
  46024. extra: 1360/1300,
  46025. bottom: 22/1382
  46026. }
  46027. },
  46028. back: {
  46029. height: math.unit(9 + 8/12, "feet"),
  46030. weight: math.unit(800, "lb"),
  46031. name: "Back",
  46032. image: {
  46033. source: "./media/characters/sydney-heki/back.svg",
  46034. extra: 1356/1293,
  46035. bottom: 12/1368
  46036. }
  46037. },
  46038. frontDressed: {
  46039. height: math.unit(9 + 8/12, "feet"),
  46040. weight: math.unit(800, "lb"),
  46041. name: "Front-dressed",
  46042. image: {
  46043. source: "./media/characters/sydney-heki/front-dressed.svg",
  46044. extra: 1360/1300,
  46045. bottom: 22/1382
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(9 + 8/12, "feet"),
  46053. default: true
  46054. },
  46055. {
  46056. name: "Macro",
  46057. height: math.unit(500, "feet")
  46058. },
  46059. {
  46060. name: "Megamacro",
  46061. height: math.unit(3.6, "miles")
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(200, "cm"),
  46070. weight: math.unit(250, "lb"),
  46071. name: "Front",
  46072. image: {
  46073. source: "./media/characters/fowler-karlsson/front.svg",
  46074. extra: 897/845,
  46075. bottom: 123/1020
  46076. }
  46077. },
  46078. back: {
  46079. height: math.unit(200, "cm"),
  46080. weight: math.unit(250, "lb"),
  46081. name: "Back",
  46082. image: {
  46083. source: "./media/characters/fowler-karlsson/back.svg",
  46084. extra: 999/944,
  46085. bottom: 26/1025
  46086. }
  46087. },
  46088. dick: {
  46089. height: math.unit(1.92, "feet"),
  46090. weight: math.unit(150, "lb"),
  46091. name: "Dick",
  46092. image: {
  46093. source: "./media/characters/fowler-karlsson/dick.svg"
  46094. }
  46095. },
  46096. },
  46097. [
  46098. {
  46099. name: "Normal",
  46100. height: math.unit(200, "cm"),
  46101. default: true
  46102. },
  46103. {
  46104. name: "Smaller Macro",
  46105. height: math.unit(90, "m")
  46106. },
  46107. {
  46108. name: "Macro",
  46109. height: math.unit(150, "m")
  46110. },
  46111. {
  46112. name: "Bigger Macro",
  46113. height: math.unit(300, "m")
  46114. },
  46115. ]
  46116. ))
  46117. characterMakers.push(() => makeCharacter(
  46118. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46119. {
  46120. side: {
  46121. height: math.unit(8 + 2/12, "feet"),
  46122. weight: math.unit(1, "tonne"),
  46123. name: "Side",
  46124. image: {
  46125. source: "./media/characters/rylide/side.svg",
  46126. extra: 1318/1034,
  46127. bottom: 106/1424
  46128. }
  46129. },
  46130. sitting: {
  46131. height: math.unit(303, "cm"),
  46132. weight: math.unit(1, "tonne"),
  46133. name: "Sitting",
  46134. image: {
  46135. source: "./media/characters/rylide/sitting.svg",
  46136. extra: 1303/1103,
  46137. bottom: 36/1339
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Normal",
  46144. height: math.unit(8 + 2/12, "feet"),
  46145. default: true
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46151. {
  46152. front: {
  46153. height: math.unit(5 + 10/12, "feet"),
  46154. weight: math.unit(160, "lb"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/pudask/front.svg",
  46158. extra: 1616/1590,
  46159. bottom: 161/1777
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Ferret Height",
  46166. height: math.unit(2 + 5/12, "feet")
  46167. },
  46168. {
  46169. name: "Canon Height",
  46170. height: math.unit(5 + 10/12, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(3 + 6/12, "feet"),
  46180. weight: math.unit(60, "lb"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/ramita/front.svg",
  46184. extra: 1402/1232,
  46185. bottom: 62/1464
  46186. }
  46187. },
  46188. dressed: {
  46189. height: math.unit(3 + 6/12, "feet"),
  46190. weight: math.unit(60, "lb"),
  46191. name: "Dressed",
  46192. image: {
  46193. source: "./media/characters/ramita/dressed.svg",
  46194. extra: 1534/1249,
  46195. bottom: 50/1584
  46196. }
  46197. },
  46198. },
  46199. [
  46200. {
  46201. name: "Normal",
  46202. height: math.unit(3 + 6/12, "feet"),
  46203. default: true
  46204. },
  46205. ]
  46206. ))
  46207. characterMakers.push(() => makeCharacter(
  46208. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46209. {
  46210. front: {
  46211. height: math.unit(8, "feet"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/ark/front.svg",
  46215. extra: 772/693,
  46216. bottom: 45/817
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(8, "feet"),
  46224. default: true
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(6, "feet"),
  46233. weight: math.unit(250, "lb"),
  46234. volume: math.unit(5/8, "gallons"),
  46235. name: "Front",
  46236. image: {
  46237. source: "./media/characters/ludwig-horn/front.svg",
  46238. extra: 1782/1635,
  46239. bottom: 96/1878
  46240. }
  46241. },
  46242. back: {
  46243. height: math.unit(6, "feet"),
  46244. weight: math.unit(250, "lb"),
  46245. volume: math.unit(5/8, "gallons"),
  46246. name: "Back",
  46247. image: {
  46248. source: "./media/characters/ludwig-horn/back.svg",
  46249. extra: 1874/1729,
  46250. bottom: 27/1901
  46251. }
  46252. },
  46253. dick: {
  46254. height: math.unit(1.05, "feet"),
  46255. weight: math.unit(15, "lb"),
  46256. volume: math.unit(5/8, "gallons"),
  46257. name: "Dick",
  46258. image: {
  46259. source: "./media/characters/ludwig-horn/dick.svg"
  46260. }
  46261. },
  46262. },
  46263. [
  46264. {
  46265. name: "Small",
  46266. height: math.unit(6, "feet")
  46267. },
  46268. {
  46269. name: "Typical",
  46270. height: math.unit(12, "feet"),
  46271. default: true
  46272. },
  46273. {
  46274. name: "Building",
  46275. height: math.unit(80, "feet")
  46276. },
  46277. {
  46278. name: "Town",
  46279. height: math.unit(800, "feet")
  46280. },
  46281. {
  46282. name: "Kingdom",
  46283. height: math.unit(80000, "feet")
  46284. },
  46285. {
  46286. name: "Planet",
  46287. height: math.unit(8000000, "feet")
  46288. },
  46289. {
  46290. name: "Universe",
  46291. height: math.unit(8000000000, "feet")
  46292. },
  46293. {
  46294. name: "Transcended",
  46295. height: math.unit(8e27, "feet")
  46296. },
  46297. ]
  46298. ))
  46299. characterMakers.push(() => makeCharacter(
  46300. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46301. {
  46302. front: {
  46303. height: math.unit(5, "feet"),
  46304. weight: math.unit(50, "kg"),
  46305. name: "Front",
  46306. image: {
  46307. source: "./media/characters/biot-avery/front.svg",
  46308. extra: 1295/1232,
  46309. bottom: 86/1381
  46310. }
  46311. },
  46312. },
  46313. [
  46314. {
  46315. name: "Normal",
  46316. height: math.unit(5, "feet"),
  46317. default: true
  46318. },
  46319. ]
  46320. ))
  46321. characterMakers.push(() => makeCharacter(
  46322. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46323. {
  46324. front: {
  46325. height: math.unit(6, "feet"),
  46326. name: "Front",
  46327. image: {
  46328. source: "./media/characters/kitsune-kiro/front.svg",
  46329. extra: 1270/1158,
  46330. bottom: 42/1312
  46331. }
  46332. },
  46333. frontAlt: {
  46334. height: math.unit(6, "feet"),
  46335. name: "Front-alt",
  46336. image: {
  46337. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46338. extra: 1130/1081,
  46339. bottom: 36/1166
  46340. }
  46341. },
  46342. },
  46343. [
  46344. {
  46345. name: "Smol",
  46346. height: math.unit(3, "feet")
  46347. },
  46348. {
  46349. name: "Normal",
  46350. height: math.unit(6, "feet"),
  46351. default: true
  46352. },
  46353. ]
  46354. ))
  46355. characterMakers.push(() => makeCharacter(
  46356. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46357. {
  46358. front: {
  46359. height: math.unit(6, "feet"),
  46360. weight: math.unit(125, "lb"),
  46361. name: "Front",
  46362. image: {
  46363. source: "./media/characters/jack-thatcher/front.svg",
  46364. extra: 1474/1370,
  46365. bottom: 26/1500
  46366. }
  46367. },
  46368. back: {
  46369. height: math.unit(6, "feet"),
  46370. weight: math.unit(125, "lb"),
  46371. name: "Back",
  46372. image: {
  46373. source: "./media/characters/jack-thatcher/back.svg",
  46374. extra: 1489/1384,
  46375. bottom: 18/1507
  46376. }
  46377. },
  46378. },
  46379. [
  46380. {
  46381. name: "Normal",
  46382. height: math.unit(6, "feet"),
  46383. default: true
  46384. },
  46385. {
  46386. name: "Macro",
  46387. height: math.unit(75, "feet")
  46388. },
  46389. {
  46390. name: "Macro-er",
  46391. height: math.unit(250, "feet")
  46392. },
  46393. ]
  46394. ))
  46395. characterMakers.push(() => makeCharacter(
  46396. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46397. {
  46398. front: {
  46399. height: math.unit(7, "feet"),
  46400. weight: math.unit(110, "kg"),
  46401. name: "Front",
  46402. image: {
  46403. source: "./media/characters/max-hyper/front.svg",
  46404. extra: 1969/1881,
  46405. bottom: 49/2018
  46406. }
  46407. },
  46408. },
  46409. [
  46410. {
  46411. name: "Normal",
  46412. height: math.unit(7, "feet"),
  46413. default: true
  46414. },
  46415. ]
  46416. ))
  46417. characterMakers.push(() => makeCharacter(
  46418. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46419. {
  46420. front: {
  46421. height: math.unit(5 + 5/12, "feet"),
  46422. weight: math.unit(160, "lb"),
  46423. name: "Front",
  46424. image: {
  46425. source: "./media/characters/spook/front.svg",
  46426. extra: 794/791,
  46427. bottom: 54/848
  46428. }
  46429. },
  46430. back: {
  46431. height: math.unit(5 + 5/12, "feet"),
  46432. weight: math.unit(160, "lb"),
  46433. name: "Back",
  46434. image: {
  46435. source: "./media/characters/spook/back.svg",
  46436. extra: 812/798,
  46437. bottom: 32/844
  46438. }
  46439. },
  46440. },
  46441. [
  46442. {
  46443. name: "Normal",
  46444. height: math.unit(5 + 5/12, "feet"),
  46445. default: true
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46451. {
  46452. front: {
  46453. height: math.unit(18, "feet"),
  46454. name: "Front",
  46455. image: {
  46456. source: "./media/characters/xeaduulix/front.svg",
  46457. extra: 1380/1166,
  46458. bottom: 110/1490
  46459. }
  46460. },
  46461. back: {
  46462. height: math.unit(18, "feet"),
  46463. name: "Back",
  46464. image: {
  46465. source: "./media/characters/xeaduulix/back.svg",
  46466. extra: 1592/1170,
  46467. bottom: 128/1720
  46468. }
  46469. },
  46470. frontNsfw: {
  46471. height: math.unit(18, "feet"),
  46472. name: "Front (NSFW)",
  46473. image: {
  46474. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46475. extra: 1380/1166,
  46476. bottom: 110/1490
  46477. }
  46478. },
  46479. backNsfw: {
  46480. height: math.unit(18, "feet"),
  46481. name: "Back (NSFW)",
  46482. image: {
  46483. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46484. extra: 1592/1170,
  46485. bottom: 128/1720
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Normal",
  46492. height: math.unit(18, "feet"),
  46493. default: true
  46494. },
  46495. ]
  46496. ))
  46497. characterMakers.push(() => makeCharacter(
  46498. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46499. {
  46500. spreadWings: {
  46501. height: math.unit(20, "feet"),
  46502. name: "Spread Wings",
  46503. image: {
  46504. source: "./media/characters/fledge/spread-wings.svg",
  46505. extra: 693/635,
  46506. bottom: 26/719
  46507. }
  46508. },
  46509. front: {
  46510. height: math.unit(20, "feet"),
  46511. name: "Front",
  46512. image: {
  46513. source: "./media/characters/fledge/front.svg",
  46514. extra: 684/637,
  46515. bottom: 18/702
  46516. }
  46517. },
  46518. frontAlt: {
  46519. height: math.unit(20, "feet"),
  46520. name: "Front (Alt)",
  46521. image: {
  46522. source: "./media/characters/fledge/front-alt.svg",
  46523. extra: 708/664,
  46524. bottom: 13/721
  46525. }
  46526. },
  46527. back: {
  46528. height: math.unit(20, "feet"),
  46529. name: "Back",
  46530. image: {
  46531. source: "./media/characters/fledge/back.svg",
  46532. extra: 718/634,
  46533. bottom: 22/740
  46534. }
  46535. },
  46536. head: {
  46537. height: math.unit(5.55, "feet"),
  46538. name: "Head",
  46539. image: {
  46540. source: "./media/characters/fledge/head.svg"
  46541. }
  46542. },
  46543. headAlt: {
  46544. height: math.unit(5.1, "feet"),
  46545. name: "Head (Alt)",
  46546. image: {
  46547. source: "./media/characters/fledge/head-alt.svg"
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Small",
  46554. height: math.unit(6 + 2/12, "feet")
  46555. },
  46556. {
  46557. name: "Big",
  46558. height: math.unit(20, "feet"),
  46559. default: true
  46560. },
  46561. {
  46562. name: "Giant",
  46563. height: math.unit(100, "feet")
  46564. },
  46565. {
  46566. name: "Macro",
  46567. height: math.unit(200, "feet")
  46568. },
  46569. ]
  46570. ))
  46571. characterMakers.push(() => makeCharacter(
  46572. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46573. {
  46574. front: {
  46575. height: math.unit(1, "meter"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/atlas-morenai/front.svg",
  46579. extra: 1275/1043,
  46580. bottom: 19/1294
  46581. }
  46582. },
  46583. back: {
  46584. height: math.unit(1, "meter"),
  46585. name: "Back",
  46586. image: {
  46587. source: "./media/characters/atlas-morenai/back.svg",
  46588. extra: 1141/1001,
  46589. bottom: 25/1166
  46590. }
  46591. },
  46592. },
  46593. [
  46594. {
  46595. name: "Normal",
  46596. height: math.unit(1, "meter"),
  46597. default: true
  46598. },
  46599. {
  46600. name: "Magic-Infused",
  46601. height: math.unit(5, "meters")
  46602. },
  46603. ]
  46604. ))
  46605. characterMakers.push(() => makeCharacter(
  46606. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46607. {
  46608. front: {
  46609. height: math.unit(5, "meters"),
  46610. name: "Front",
  46611. image: {
  46612. source: "./media/characters/cintia/front.svg",
  46613. extra: 1312/1228,
  46614. bottom: 38/1350
  46615. }
  46616. },
  46617. back: {
  46618. height: math.unit(5, "meters"),
  46619. name: "Back",
  46620. image: {
  46621. source: "./media/characters/cintia/back.svg",
  46622. extra: 1260/1166,
  46623. bottom: 98/1358
  46624. }
  46625. },
  46626. frontDick: {
  46627. height: math.unit(5, "meters"),
  46628. name: "Front (Dick)",
  46629. image: {
  46630. source: "./media/characters/cintia/front-dick.svg",
  46631. extra: 1312/1228,
  46632. bottom: 38/1350
  46633. }
  46634. },
  46635. backDick: {
  46636. height: math.unit(5, "meters"),
  46637. name: "Back (Dick)",
  46638. image: {
  46639. source: "./media/characters/cintia/back-dick.svg",
  46640. extra: 1260/1166,
  46641. bottom: 98/1358
  46642. }
  46643. },
  46644. bust: {
  46645. height: math.unit(1.97, "meters"),
  46646. name: "Bust",
  46647. image: {
  46648. source: "./media/characters/cintia/bust.svg",
  46649. extra: 617/565,
  46650. bottom: 0/617
  46651. }
  46652. },
  46653. },
  46654. [
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(5, "meters"),
  46658. default: true
  46659. },
  46660. ]
  46661. ))
  46662. characterMakers.push(() => makeCharacter(
  46663. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46664. {
  46665. side: {
  46666. height: math.unit(100, "feet"),
  46667. name: "Side",
  46668. image: {
  46669. source: "./media/characters/denora/side.svg",
  46670. extra: 875/803,
  46671. bottom: 9/884
  46672. }
  46673. },
  46674. },
  46675. [
  46676. {
  46677. name: "Standard",
  46678. height: math.unit(100, "feet"),
  46679. default: true
  46680. },
  46681. {
  46682. name: "Grand",
  46683. height: math.unit(1000, "feet")
  46684. },
  46685. {
  46686. name: "Conquering",
  46687. height: math.unit(10000, "feet")
  46688. },
  46689. ]
  46690. ))
  46691. characterMakers.push(() => makeCharacter(
  46692. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46693. {
  46694. dressed: {
  46695. height: math.unit(8 + 5/12, "feet"),
  46696. weight: math.unit(700, "lb"),
  46697. name: "Dressed",
  46698. image: {
  46699. source: "./media/characters/kiva/dressed.svg",
  46700. extra: 1102/1055,
  46701. bottom: 60/1162
  46702. }
  46703. },
  46704. nude: {
  46705. height: math.unit(8 + 5/12, "feet"),
  46706. weight: math.unit(700, "lb"),
  46707. name: "Nude",
  46708. image: {
  46709. source: "./media/characters/kiva/nude.svg",
  46710. extra: 1102/1055,
  46711. bottom: 60/1162
  46712. }
  46713. },
  46714. },
  46715. [
  46716. {
  46717. name: "Base Height",
  46718. height: math.unit(8 + 5/12, "feet"),
  46719. default: true
  46720. },
  46721. {
  46722. name: "Macro",
  46723. height: math.unit(100, "feet")
  46724. },
  46725. {
  46726. name: "Max",
  46727. height: math.unit(3280, "feet")
  46728. },
  46729. ]
  46730. ))
  46731. characterMakers.push(() => makeCharacter(
  46732. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46733. {
  46734. front: {
  46735. height: math.unit(6 + 8/12, "feet"),
  46736. weight: math.unit(250, "lb"),
  46737. name: "Front",
  46738. image: {
  46739. source: "./media/characters/ztragon/front.svg",
  46740. extra: 1825/1684,
  46741. bottom: 98/1923
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Normal",
  46748. height: math.unit(6 + 8/12, "feet"),
  46749. default: true
  46750. },
  46751. {
  46752. name: "Macro",
  46753. height: math.unit(80, "feet")
  46754. },
  46755. ]
  46756. ))
  46757. characterMakers.push(() => makeCharacter(
  46758. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46759. {
  46760. front: {
  46761. height: math.unit(10.4, "feet"),
  46762. weight: math.unit(2, "tons"),
  46763. name: "Front",
  46764. image: {
  46765. source: "./media/characters/yesenia/front.svg",
  46766. extra: 1479/1474,
  46767. bottom: 233/1712
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(10.4, "feet"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46781. {
  46782. normal: {
  46783. height: math.unit(6 + 1/12, "feet"),
  46784. weight: math.unit(180, "lb"),
  46785. name: "Normal",
  46786. image: {
  46787. source: "./media/characters/leanne-lycheborne/normal.svg",
  46788. extra: 1748/1660,
  46789. bottom: 98/1846
  46790. }
  46791. },
  46792. were: {
  46793. height: math.unit(12, "feet"),
  46794. weight: math.unit(1600, "lb"),
  46795. name: "Were",
  46796. image: {
  46797. source: "./media/characters/leanne-lycheborne/were.svg",
  46798. extra: 1485/1432,
  46799. bottom: 66/1551
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(6 + 1/12, "feet"),
  46807. default: true
  46808. },
  46809. ]
  46810. ))
  46811. characterMakers.push(() => makeCharacter(
  46812. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46813. {
  46814. side: {
  46815. height: math.unit(13, "feet"),
  46816. name: "Side",
  46817. image: {
  46818. source: "./media/characters/kira-tyler/side.svg",
  46819. extra: 693/393,
  46820. bottom: 58/751
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Normal",
  46827. height: math.unit(13, "feet"),
  46828. default: true
  46829. },
  46830. ]
  46831. ))
  46832. characterMakers.push(() => makeCharacter(
  46833. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46834. {
  46835. front: {
  46836. height: math.unit(10.3, "feet"),
  46837. weight: math.unit(150, "lb"),
  46838. name: "Front",
  46839. image: {
  46840. source: "./media/characters/blaze/front.svg",
  46841. extra: 1378/1286,
  46842. bottom: 172/1550
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Normal",
  46849. height: math.unit(10.3, "feet"),
  46850. default: true
  46851. },
  46852. ]
  46853. ))
  46854. characterMakers.push(() => makeCharacter(
  46855. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46856. {
  46857. side: {
  46858. height: math.unit(2, "meters"),
  46859. weight: math.unit(400, "kg"),
  46860. name: "Side",
  46861. image: {
  46862. source: "./media/characters/anu/side.svg",
  46863. extra: 506/394,
  46864. bottom: 18/524
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Humanoid",
  46871. height: math.unit(2, "meters")
  46872. },
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(5, "meters"),
  46876. default: true
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46882. {
  46883. front: {
  46884. height: math.unit(5 + 5/12, "feet"),
  46885. weight: math.unit(170, "lb"),
  46886. name: "Front",
  46887. image: {
  46888. source: "./media/characters/synx-the-lynx/front.svg",
  46889. extra: 1893/1745,
  46890. bottom: 17/1910
  46891. }
  46892. },
  46893. side: {
  46894. height: math.unit(5 + 5/12, "feet"),
  46895. weight: math.unit(170, "lb"),
  46896. name: "Side",
  46897. image: {
  46898. source: "./media/characters/synx-the-lynx/side.svg",
  46899. extra: 1884/1740,
  46900. bottom: 39/1923
  46901. }
  46902. },
  46903. back: {
  46904. height: math.unit(5 + 5/12, "feet"),
  46905. weight: math.unit(170, "lb"),
  46906. name: "Back",
  46907. image: {
  46908. source: "./media/characters/synx-the-lynx/back.svg",
  46909. extra: 1903/1755,
  46910. bottom: 14/1917
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(5 + 5/12, "feet"),
  46918. default: true
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46924. {
  46925. back: {
  46926. height: math.unit(15, "feet"),
  46927. name: "Back",
  46928. image: {
  46929. source: "./media/characters/nadezda-fex/back.svg",
  46930. extra: 1695/1481,
  46931. bottom: 25/1720
  46932. }
  46933. },
  46934. },
  46935. [
  46936. {
  46937. name: "Normal",
  46938. height: math.unit(15, "feet"),
  46939. default: true
  46940. },
  46941. {
  46942. name: "Macro",
  46943. height: math.unit(2.5, "miles")
  46944. },
  46945. {
  46946. name: "Goddess",
  46947. height: math.unit(2, "multiverses")
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(216, "cm"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/lev/front.svg",
  46959. extra: 1728/1670,
  46960. bottom: 82/1810
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(216, "cm"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/lev/back.svg",
  46968. extra: 1738/1675,
  46969. bottom: 24/1762
  46970. }
  46971. },
  46972. dressed: {
  46973. height: math.unit(216, "cm"),
  46974. name: "Dressed",
  46975. image: {
  46976. source: "./media/characters/lev/dressed.svg",
  46977. extra: 1397/1351,
  46978. bottom: 73/1470
  46979. }
  46980. },
  46981. head: {
  46982. height: math.unit(0.51, "meter"),
  46983. name: "Head",
  46984. image: {
  46985. source: "./media/characters/lev/head.svg"
  46986. }
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(216, "cm"),
  46993. default: true
  46994. },
  46995. {
  46996. name: "Relatively Macro",
  46997. height: math.unit(80, "meters")
  46998. },
  46999. {
  47000. name: "Megamacro",
  47001. height: math.unit(21600, "meters")
  47002. },
  47003. {
  47004. name: "Megamacro+",
  47005. height: math.unit(64800, "meters")
  47006. },
  47007. ]
  47008. ))
  47009. characterMakers.push(() => makeCharacter(
  47010. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47011. {
  47012. front: {
  47013. height: math.unit(2, "meters"),
  47014. weight: math.unit(80, "kg"),
  47015. name: "Front",
  47016. image: {
  47017. source: "./media/characters/moka/front.svg",
  47018. extra: 1337/1255,
  47019. bottom: 58/1395
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Micro",
  47026. height: math.unit(15, "cm")
  47027. },
  47028. {
  47029. name: "Normal",
  47030. height: math.unit(2, "meters"),
  47031. default: true
  47032. },
  47033. {
  47034. name: "Macro",
  47035. height: math.unit(20, "meters"),
  47036. },
  47037. ]
  47038. ))
  47039. characterMakers.push(() => makeCharacter(
  47040. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47041. {
  47042. front: {
  47043. height: math.unit(9, "feet"),
  47044. weight: math.unit(240, "lb"),
  47045. name: "Front",
  47046. image: {
  47047. source: "./media/characters/kuzco/front.svg",
  47048. extra: 1593/1487,
  47049. bottom: 32/1625
  47050. }
  47051. },
  47052. side: {
  47053. height: math.unit(9, "feet"),
  47054. weight: math.unit(240, "lb"),
  47055. name: "Side",
  47056. image: {
  47057. source: "./media/characters/kuzco/side.svg",
  47058. extra: 1575/1485,
  47059. bottom: 30/1605
  47060. }
  47061. },
  47062. back: {
  47063. height: math.unit(9, "feet"),
  47064. weight: math.unit(240, "lb"),
  47065. name: "Back",
  47066. image: {
  47067. source: "./media/characters/kuzco/back.svg",
  47068. extra: 1603/1514,
  47069. bottom: 14/1617
  47070. }
  47071. },
  47072. },
  47073. [
  47074. {
  47075. name: "Normal",
  47076. height: math.unit(9, "feet"),
  47077. default: true
  47078. },
  47079. ]
  47080. ))
  47081. characterMakers.push(() => makeCharacter(
  47082. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47083. {
  47084. side: {
  47085. height: math.unit(2, "meters"),
  47086. weight: math.unit(300, "kg"),
  47087. name: "Side",
  47088. image: {
  47089. source: "./media/characters/ceruleus/side.svg",
  47090. extra: 1068/974,
  47091. bottom: 126/1194
  47092. }
  47093. },
  47094. maw: {
  47095. height: math.unit(0.8125, "meter"),
  47096. name: "Maw",
  47097. image: {
  47098. source: "./media/characters/ceruleus/maw.svg"
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Normal",
  47105. height: math.unit(16, "meters"),
  47106. default: true
  47107. },
  47108. ]
  47109. ))
  47110. characterMakers.push(() => makeCharacter(
  47111. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47112. {
  47113. front: {
  47114. height: math.unit(9, "feet"),
  47115. weight: math.unit(500, "kg"),
  47116. name: "Front",
  47117. image: {
  47118. source: "./media/characters/acouya/front.svg",
  47119. extra: 1660/1473,
  47120. bottom: 28/1688
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Normal",
  47127. height: math.unit(9, "feet"),
  47128. default: true
  47129. },
  47130. ]
  47131. ))
  47132. characterMakers.push(() => makeCharacter(
  47133. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47134. {
  47135. front: {
  47136. height: math.unit(5 + 6/12, "feet"),
  47137. weight: math.unit(195, "lb"),
  47138. name: "Front",
  47139. image: {
  47140. source: "./media/characters/vant/front.svg",
  47141. extra: 1396/1320,
  47142. bottom: 20/1416
  47143. }
  47144. },
  47145. back: {
  47146. height: math.unit(5 + 6/12, "feet"),
  47147. weight: math.unit(195, "lb"),
  47148. name: "Back",
  47149. image: {
  47150. source: "./media/characters/vant/back.svg",
  47151. extra: 1396/1320,
  47152. bottom: 20/1416
  47153. }
  47154. },
  47155. maw: {
  47156. height: math.unit(0.75, "feet"),
  47157. name: "Maw",
  47158. image: {
  47159. source: "./media/characters/vant/maw.svg"
  47160. }
  47161. },
  47162. paw: {
  47163. height: math.unit(1.07, "feet"),
  47164. name: "Paw",
  47165. image: {
  47166. source: "./media/characters/vant/paw.svg"
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Micro",
  47173. height: math.unit(0.25, "inches")
  47174. },
  47175. {
  47176. name: "Normal",
  47177. height: math.unit(5 + 6/12, "feet"),
  47178. default: true
  47179. },
  47180. {
  47181. name: "Macro",
  47182. height: math.unit(75, "feet")
  47183. },
  47184. ]
  47185. ))
  47186. characterMakers.push(() => makeCharacter(
  47187. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47188. {
  47189. front: {
  47190. height: math.unit(30, "meters"),
  47191. weight: math.unit(363, "tons"),
  47192. name: "Front",
  47193. image: {
  47194. source: "./media/characters/ahra/front.svg",
  47195. extra: 1914/1814,
  47196. bottom: 46/1960
  47197. }
  47198. },
  47199. },
  47200. [
  47201. {
  47202. name: "Macro",
  47203. height: math.unit(30, "meters"),
  47204. default: true
  47205. },
  47206. ]
  47207. ))
  47208. characterMakers.push(() => makeCharacter(
  47209. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47210. {
  47211. undressed: {
  47212. height: math.unit(2, "m"),
  47213. weight: math.unit(250, "kg"),
  47214. name: "Undressed",
  47215. image: {
  47216. source: "./media/characters/coriander/undressed.svg",
  47217. extra: 1757/1606,
  47218. bottom: 107/1864
  47219. }
  47220. },
  47221. dressed: {
  47222. height: math.unit(2, "m"),
  47223. weight: math.unit(250, "kg"),
  47224. name: "Dressed",
  47225. image: {
  47226. source: "./media/characters/coriander/dressed.svg",
  47227. extra: 1757/1606,
  47228. bottom: 107/1864
  47229. }
  47230. },
  47231. },
  47232. [
  47233. {
  47234. name: "Normal",
  47235. height: math.unit(4, "meters"),
  47236. default: true
  47237. },
  47238. {
  47239. name: "XL",
  47240. height: math.unit(6, "meters")
  47241. },
  47242. {
  47243. name: "XXL",
  47244. height: math.unit(8, "meters")
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47250. {
  47251. front: {
  47252. height: math.unit(6, "feet"),
  47253. name: "Front",
  47254. image: {
  47255. source: "./media/characters/syrinx/front.svg",
  47256. extra: 1557/1259,
  47257. bottom: 171/1728
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(6 + 3/12, "feet"),
  47265. default: true
  47266. },
  47267. ]
  47268. ))
  47269. characterMakers.push(() => makeCharacter(
  47270. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47271. {
  47272. front: {
  47273. height: math.unit(11 + 6/12, "feet"),
  47274. weight: math.unit(1.5, "tons"),
  47275. name: "Front",
  47276. image: {
  47277. source: "./media/characters/bor/front.svg",
  47278. extra: 1189/1109,
  47279. bottom: 170/1359
  47280. }
  47281. },
  47282. },
  47283. [
  47284. {
  47285. name: "Normal",
  47286. height: math.unit(11 + 6/12, "feet"),
  47287. default: true
  47288. },
  47289. {
  47290. name: "Macro",
  47291. height: math.unit(32 + 9/12, "feet")
  47292. },
  47293. ]
  47294. ))
  47295. characterMakers.push(() => makeCharacter(
  47296. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47297. {
  47298. anthro: {
  47299. height: math.unit(9, "feet"),
  47300. weight: math.unit(2076, "lb"),
  47301. name: "Anthro",
  47302. image: {
  47303. source: "./media/characters/abacus/anthro.svg",
  47304. extra: 1540/1494,
  47305. bottom: 233/1773
  47306. }
  47307. },
  47308. pigeon: {
  47309. height: math.unit(1, "feet"),
  47310. name: "Pigeon",
  47311. image: {
  47312. source: "./media/characters/abacus/pigeon.svg",
  47313. extra: 528/525,
  47314. bottom: 46/574
  47315. }
  47316. },
  47317. },
  47318. [
  47319. {
  47320. name: "Normal",
  47321. height: math.unit(9, "feet"),
  47322. default: true
  47323. },
  47324. ]
  47325. ))
  47326. characterMakers.push(() => makeCharacter(
  47327. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47328. {
  47329. side: {
  47330. height: math.unit(6, "feet"),
  47331. name: "Side",
  47332. image: {
  47333. source: "./media/characters/delkhan/side.svg",
  47334. extra: 1884/1786,
  47335. bottom: 308/2192
  47336. }
  47337. },
  47338. head: {
  47339. height: math.unit(3.38, "feet"),
  47340. name: "Head",
  47341. image: {
  47342. source: "./media/characters/delkhan/head.svg"
  47343. }
  47344. },
  47345. },
  47346. [
  47347. {
  47348. name: "Normal",
  47349. height: math.unit(72, "feet"),
  47350. default: true
  47351. },
  47352. {
  47353. name: "Giant",
  47354. height: math.unit(172, "feet")
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47360. {
  47361. standing: {
  47362. height: math.unit(6, "feet"),
  47363. name: "Standing",
  47364. image: {
  47365. source: "./media/characters/euchidat/standing.svg",
  47366. extra: 1612/1553,
  47367. bottom: 116/1728
  47368. }
  47369. },
  47370. leaning: {
  47371. height: math.unit(6, "feet"),
  47372. name: "Leaning",
  47373. image: {
  47374. source: "./media/characters/euchidat/leaning.svg",
  47375. extra: 1719/1674,
  47376. bottom: 27/1746
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(175, "feet"),
  47384. default: true
  47385. },
  47386. {
  47387. name: "Megamacro",
  47388. height: math.unit(190, "miles")
  47389. },
  47390. {
  47391. name: "Gigamacro",
  47392. height: math.unit(190000, "miles")
  47393. },
  47394. ]
  47395. ))
  47396. characterMakers.push(() => makeCharacter(
  47397. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47398. {
  47399. front: {
  47400. height: math.unit(6, "feet"),
  47401. weight: math.unit(150, "lb"),
  47402. name: "Front",
  47403. image: {
  47404. source: "./media/characters/rebecca-stack/front.svg",
  47405. extra: 1256/1201,
  47406. bottom: 18/1274
  47407. }
  47408. },
  47409. },
  47410. [
  47411. {
  47412. name: "Normal",
  47413. height: math.unit(5 + 8/12, "feet"),
  47414. default: true
  47415. },
  47416. {
  47417. name: "Demolitionist",
  47418. height: math.unit(200, "feet")
  47419. },
  47420. {
  47421. name: "Out of Control",
  47422. height: math.unit(2, "miles")
  47423. },
  47424. {
  47425. name: "Giga",
  47426. height: math.unit(7200, "miles")
  47427. },
  47428. ]
  47429. ))
  47430. characterMakers.push(() => makeCharacter(
  47431. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47432. {
  47433. front: {
  47434. height: math.unit(6, "feet"),
  47435. weight: math.unit(150, "lb"),
  47436. name: "Front",
  47437. image: {
  47438. source: "./media/characters/jenny-cartwright/front.svg",
  47439. extra: 1384/1376,
  47440. bottom: 58/1442
  47441. }
  47442. },
  47443. },
  47444. [
  47445. {
  47446. name: "Normal",
  47447. height: math.unit(6 + 7/12, "feet"),
  47448. default: true
  47449. },
  47450. {
  47451. name: "Librarian",
  47452. height: math.unit(55, "feet")
  47453. },
  47454. {
  47455. name: "Sightseer",
  47456. height: math.unit(50, "miles")
  47457. },
  47458. {
  47459. name: "Giga",
  47460. height: math.unit(30000, "miles")
  47461. },
  47462. ]
  47463. ))
  47464. characterMakers.push(() => makeCharacter(
  47465. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47466. {
  47467. nude: {
  47468. height: math.unit(8, "feet"),
  47469. weight: math.unit(225, "lb"),
  47470. name: "Nude",
  47471. image: {
  47472. source: "./media/characters/marvy/nude.svg",
  47473. extra: 1900/1683,
  47474. bottom: 89/1989
  47475. }
  47476. },
  47477. dressed: {
  47478. height: math.unit(8, "feet"),
  47479. weight: math.unit(225, "lb"),
  47480. name: "Dressed",
  47481. image: {
  47482. source: "./media/characters/marvy/dressed.svg",
  47483. extra: 1900/1683,
  47484. bottom: 89/1989
  47485. }
  47486. },
  47487. head: {
  47488. height: math.unit(2.85, "feet"),
  47489. name: "Head",
  47490. image: {
  47491. source: "./media/characters/marvy/head.svg"
  47492. }
  47493. },
  47494. },
  47495. [
  47496. {
  47497. name: "Normal",
  47498. height: math.unit(8, "feet"),
  47499. default: true
  47500. },
  47501. ]
  47502. ))
  47503. characterMakers.push(() => makeCharacter(
  47504. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47505. {
  47506. front: {
  47507. height: math.unit(8, "feet"),
  47508. weight: math.unit(250, "lb"),
  47509. name: "Front",
  47510. image: {
  47511. source: "./media/characters/leah/front.svg",
  47512. extra: 1257/1149,
  47513. bottom: 109/1366
  47514. }
  47515. },
  47516. },
  47517. [
  47518. {
  47519. name: "Normal",
  47520. height: math.unit(8, "feet"),
  47521. default: true
  47522. },
  47523. {
  47524. name: "Minimacro",
  47525. height: math.unit(40, "feet")
  47526. },
  47527. {
  47528. name: "Macro",
  47529. height: math.unit(124, "feet")
  47530. },
  47531. {
  47532. name: "Megamacro",
  47533. height: math.unit(850, "feet")
  47534. },
  47535. ]
  47536. ))
  47537. characterMakers.push(() => makeCharacter(
  47538. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47539. {
  47540. side: {
  47541. height: math.unit(13 + 6/12, "feet"),
  47542. weight: math.unit(3200, "lb"),
  47543. name: "Side",
  47544. image: {
  47545. source: "./media/characters/alvir/side.svg",
  47546. extra: 896/589,
  47547. bottom: 26/922
  47548. }
  47549. },
  47550. },
  47551. [
  47552. {
  47553. name: "Normal",
  47554. height: math.unit(13 + 6/12, "feet"),
  47555. default: true
  47556. },
  47557. ]
  47558. ))
  47559. characterMakers.push(() => makeCharacter(
  47560. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47561. {
  47562. front: {
  47563. height: math.unit(5 + 4/12, "feet"),
  47564. weight: math.unit(236, "lb"),
  47565. name: "Front",
  47566. image: {
  47567. source: "./media/characters/zaina-khalil/front.svg",
  47568. extra: 1533/1485,
  47569. bottom: 94/1627
  47570. }
  47571. },
  47572. side: {
  47573. height: math.unit(5 + 4/12, "feet"),
  47574. weight: math.unit(236, "lb"),
  47575. name: "Side",
  47576. image: {
  47577. source: "./media/characters/zaina-khalil/side.svg",
  47578. extra: 1537/1498,
  47579. bottom: 66/1603
  47580. }
  47581. },
  47582. back: {
  47583. height: math.unit(5 + 4/12, "feet"),
  47584. weight: math.unit(236, "lb"),
  47585. name: "Back",
  47586. image: {
  47587. source: "./media/characters/zaina-khalil/back.svg",
  47588. extra: 1546/1494,
  47589. bottom: 89/1635
  47590. }
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(5 + 4/12, "feet"),
  47597. default: true
  47598. },
  47599. ]
  47600. ))
  47601. characterMakers.push(() => makeCharacter(
  47602. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47603. {
  47604. side: {
  47605. height: math.unit(12, "feet"),
  47606. weight: math.unit(4000, "lb"),
  47607. name: "Side",
  47608. image: {
  47609. source: "./media/characters/terry/side.svg",
  47610. extra: 1518/1439,
  47611. bottom: 149/1667
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(12, "feet"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47625. {
  47626. front: {
  47627. height: math.unit(12, "feet"),
  47628. weight: math.unit(1500, "lb"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/kahea/front.svg",
  47632. extra: 1722/1617,
  47633. bottom: 179/1901
  47634. }
  47635. },
  47636. },
  47637. [
  47638. {
  47639. name: "Normal",
  47640. height: math.unit(12, "feet"),
  47641. default: true
  47642. },
  47643. ]
  47644. ))
  47645. characterMakers.push(() => makeCharacter(
  47646. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47647. {
  47648. demonFront: {
  47649. height: math.unit(36, "feet"),
  47650. name: "Front",
  47651. image: {
  47652. source: "./media/characters/alex-xuria/demon-front.svg",
  47653. extra: 1705/1673,
  47654. bottom: 198/1903
  47655. },
  47656. form: "demon",
  47657. default: true
  47658. },
  47659. demonBack: {
  47660. height: math.unit(36, "feet"),
  47661. name: "Back",
  47662. image: {
  47663. source: "./media/characters/alex-xuria/demon-back.svg",
  47664. extra: 1725/1693,
  47665. bottom: 70/1795
  47666. },
  47667. form: "demon"
  47668. },
  47669. demonHead: {
  47670. height: math.unit(2.14, "meters"),
  47671. name: "Head",
  47672. image: {
  47673. source: "./media/characters/alex-xuria/demon-head.svg"
  47674. },
  47675. form: "demon"
  47676. },
  47677. demonHand: {
  47678. height: math.unit(1.61, "meters"),
  47679. name: "Hand",
  47680. image: {
  47681. source: "./media/characters/alex-xuria/demon-hand.svg"
  47682. },
  47683. form: "demon"
  47684. },
  47685. demonPaw: {
  47686. height: math.unit(1.35, "meters"),
  47687. name: "Paw",
  47688. image: {
  47689. source: "./media/characters/alex-xuria/demon-paw.svg"
  47690. },
  47691. form: "demon"
  47692. },
  47693. demonFoot: {
  47694. height: math.unit(2.2, "meters"),
  47695. name: "Foot",
  47696. image: {
  47697. source: "./media/characters/alex-xuria/demon-foot.svg"
  47698. },
  47699. form: "demon"
  47700. },
  47701. demonCock: {
  47702. height: math.unit(1.74, "meters"),
  47703. name: "Cock",
  47704. image: {
  47705. source: "./media/characters/alex-xuria/demon-cock.svg"
  47706. },
  47707. form: "demon"
  47708. },
  47709. demonTailClosed: {
  47710. height: math.unit(1.47, "meters"),
  47711. name: "Tail (Closed)",
  47712. image: {
  47713. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47714. },
  47715. form: "demon"
  47716. },
  47717. demonTailOpen: {
  47718. height: math.unit(2.85, "meters"),
  47719. name: "Tail (Open)",
  47720. image: {
  47721. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47722. },
  47723. form: "demon"
  47724. },
  47725. incubusFront: {
  47726. height: math.unit(12, "feet"),
  47727. name: "Front",
  47728. image: {
  47729. source: "./media/characters/alex-xuria/incubus-front.svg",
  47730. extra: 1754/1677,
  47731. bottom: 125/1879
  47732. },
  47733. form: "incubus",
  47734. default: true
  47735. },
  47736. incubusBack: {
  47737. height: math.unit(12, "feet"),
  47738. name: "Back",
  47739. image: {
  47740. source: "./media/characters/alex-xuria/incubus-back.svg",
  47741. extra: 1702/1647,
  47742. bottom: 30/1732
  47743. },
  47744. form: "incubus"
  47745. },
  47746. incubusHead: {
  47747. height: math.unit(3.45, "feet"),
  47748. name: "Head",
  47749. image: {
  47750. source: "./media/characters/alex-xuria/incubus-head.svg"
  47751. },
  47752. form: "incubus"
  47753. },
  47754. rabbitFront: {
  47755. height: math.unit(6, "feet"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47759. extra: 1369/1349,
  47760. bottom: 45/1414
  47761. },
  47762. form: "rabbit",
  47763. default: true
  47764. },
  47765. rabbitSide: {
  47766. height: math.unit(6, "feet"),
  47767. name: "Side",
  47768. image: {
  47769. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47770. extra: 1370/1356,
  47771. bottom: 37/1407
  47772. },
  47773. form: "rabbit"
  47774. },
  47775. rabbitBack: {
  47776. height: math.unit(6, "feet"),
  47777. name: "Back",
  47778. image: {
  47779. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47780. extra: 1375/1358,
  47781. bottom: 43/1418
  47782. },
  47783. form: "rabbit"
  47784. },
  47785. },
  47786. [
  47787. {
  47788. name: "Normal",
  47789. height: math.unit(6, "feet"),
  47790. default: true,
  47791. form: "rabbit"
  47792. },
  47793. {
  47794. name: "Incubus",
  47795. height: math.unit(12, "feet"),
  47796. default: true,
  47797. form: "incubus"
  47798. },
  47799. {
  47800. name: "Demon",
  47801. height: math.unit(36, "feet"),
  47802. default: true,
  47803. form: "demon"
  47804. }
  47805. ],
  47806. {
  47807. "demon": {
  47808. name: "Demon",
  47809. default: true
  47810. },
  47811. "incubus": {
  47812. name: "Incubus",
  47813. },
  47814. "rabbit": {
  47815. name: "Rabbit"
  47816. }
  47817. }
  47818. ))
  47819. characterMakers.push(() => makeCharacter(
  47820. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47821. {
  47822. front: {
  47823. height: math.unit(7 + 5/12, "feet"),
  47824. weight: math.unit(510, "lb"),
  47825. name: "Front",
  47826. image: {
  47827. source: "./media/characters/syrup/front.svg",
  47828. extra: 932/916,
  47829. bottom: 26/958
  47830. }
  47831. },
  47832. },
  47833. [
  47834. {
  47835. name: "Normal",
  47836. height: math.unit(7 + 5/12, "feet"),
  47837. default: true
  47838. },
  47839. {
  47840. name: "Big",
  47841. height: math.unit(50, "feet")
  47842. },
  47843. {
  47844. name: "Macro",
  47845. height: math.unit(300, "feet")
  47846. },
  47847. {
  47848. name: "Megamacro",
  47849. height: math.unit(1, "mile")
  47850. },
  47851. ]
  47852. ))
  47853. characterMakers.push(() => makeCharacter(
  47854. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47855. {
  47856. front: {
  47857. height: math.unit(6 + 9/12, "feet"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/zeimne/front.svg",
  47861. extra: 1969/1806,
  47862. bottom: 53/2022
  47863. }
  47864. },
  47865. },
  47866. [
  47867. {
  47868. name: "Normal",
  47869. height: math.unit(6 + 9/12, "feet"),
  47870. default: true
  47871. },
  47872. {
  47873. name: "Giant",
  47874. height: math.unit(550, "feet")
  47875. },
  47876. {
  47877. name: "Mega",
  47878. height: math.unit(3, "miles")
  47879. },
  47880. {
  47881. name: "Giga",
  47882. height: math.unit(250, "miles")
  47883. },
  47884. {
  47885. name: "Tera",
  47886. height: math.unit(1, "AU")
  47887. },
  47888. ]
  47889. ))
  47890. characterMakers.push(() => makeCharacter(
  47891. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47892. {
  47893. front: {
  47894. height: math.unit(5 + 2/12, "feet"),
  47895. name: "Front",
  47896. image: {
  47897. source: "./media/characters/grar/front.svg",
  47898. extra: 1331/1119,
  47899. bottom: 60/1391
  47900. }
  47901. },
  47902. back: {
  47903. height: math.unit(5 + 2/12, "feet"),
  47904. name: "Back",
  47905. image: {
  47906. source: "./media/characters/grar/back.svg",
  47907. extra: 1385/1169,
  47908. bottom: 23/1408
  47909. }
  47910. },
  47911. },
  47912. [
  47913. {
  47914. name: "Normal",
  47915. height: math.unit(5 + 2/12, "feet"),
  47916. default: true
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(13 + 7/12, "feet"),
  47925. weight: math.unit(2200, "lb"),
  47926. name: "Front",
  47927. image: {
  47928. source: "./media/characters/endraya/front.svg",
  47929. extra: 1289/1215,
  47930. bottom: 50/1339
  47931. }
  47932. },
  47933. nude: {
  47934. height: math.unit(13 + 7/12, "feet"),
  47935. weight: math.unit(2200, "lb"),
  47936. name: "Nude",
  47937. image: {
  47938. source: "./media/characters/endraya/nude.svg",
  47939. extra: 1247/1171,
  47940. bottom: 40/1287
  47941. }
  47942. },
  47943. head: {
  47944. height: math.unit(2.6, "feet"),
  47945. name: "Head",
  47946. image: {
  47947. source: "./media/characters/endraya/head.svg"
  47948. }
  47949. },
  47950. slit: {
  47951. height: math.unit(3.4, "feet"),
  47952. name: "Slit",
  47953. image: {
  47954. source: "./media/characters/endraya/slit.svg"
  47955. }
  47956. },
  47957. },
  47958. [
  47959. {
  47960. name: "Normal",
  47961. height: math.unit(13 + 7/12, "feet"),
  47962. default: true
  47963. },
  47964. {
  47965. name: "Macro",
  47966. height: math.unit(200, "feet")
  47967. },
  47968. ]
  47969. ))
  47970. characterMakers.push(() => makeCharacter(
  47971. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47972. {
  47973. front: {
  47974. height: math.unit(1.81, "meters"),
  47975. weight: math.unit(69, "kg"),
  47976. name: "Front",
  47977. image: {
  47978. source: "./media/characters/rodryana/front.svg",
  47979. extra: 2002/1921,
  47980. bottom: 53/2055
  47981. }
  47982. },
  47983. back: {
  47984. height: math.unit(1.81, "meters"),
  47985. weight: math.unit(69, "kg"),
  47986. name: "Back",
  47987. image: {
  47988. source: "./media/characters/rodryana/back.svg",
  47989. extra: 1993/1926,
  47990. bottom: 48/2041
  47991. }
  47992. },
  47993. maw: {
  47994. height: math.unit(0.19769417475, "meters"),
  47995. name: "Maw",
  47996. image: {
  47997. source: "./media/characters/rodryana/maw.svg"
  47998. }
  47999. },
  48000. slit: {
  48001. height: math.unit(0.31631067961, "meters"),
  48002. name: "Slit",
  48003. image: {
  48004. source: "./media/characters/rodryana/slit.svg"
  48005. }
  48006. },
  48007. },
  48008. [
  48009. {
  48010. name: "Normal",
  48011. height: math.unit(1.81, "meters")
  48012. },
  48013. {
  48014. name: "Mini Macro",
  48015. height: math.unit(181, "meters")
  48016. },
  48017. {
  48018. name: "Macro",
  48019. height: math.unit(452, "meters"),
  48020. default: true
  48021. },
  48022. {
  48023. name: "Mega Macro",
  48024. height: math.unit(1.375, "km")
  48025. },
  48026. {
  48027. name: "Giga Macro",
  48028. height: math.unit(13.575, "km")
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(6, "feet"),
  48037. weight: math.unit(1000, "lb"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/asaya/front.svg",
  48041. extra: 1460/1200,
  48042. bottom: 71/1531
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Normal",
  48049. height: math.unit(8, "km"),
  48050. default: true
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48056. {
  48057. front: {
  48058. height: math.unit(3.5, "meters"),
  48059. name: "Front",
  48060. image: {
  48061. source: "./media/characters/sarzu-and-israz/front.svg",
  48062. extra: 1570/1558,
  48063. bottom: 150/1720
  48064. },
  48065. },
  48066. back: {
  48067. height: math.unit(3.5, "meters"),
  48068. name: "Back",
  48069. image: {
  48070. source: "./media/characters/sarzu-and-israz/back.svg",
  48071. extra: 1523/1509,
  48072. bottom: 132/1655
  48073. },
  48074. },
  48075. frontFemale: {
  48076. height: math.unit(3.5, "meters"),
  48077. name: "Front (Female)",
  48078. image: {
  48079. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48080. extra: 1570/1558,
  48081. bottom: 150/1720
  48082. },
  48083. },
  48084. frontHerm: {
  48085. height: math.unit(3.5, "meters"),
  48086. name: "Front (Herm)",
  48087. image: {
  48088. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48089. extra: 1570/1558,
  48090. bottom: 150/1720
  48091. },
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(3.5, "meters"),
  48098. default: true,
  48099. },
  48100. {
  48101. name: "Macro",
  48102. height: math.unit(65.5, "meters"),
  48103. },
  48104. ],
  48105. ))
  48106. characterMakers.push(() => makeCharacter(
  48107. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48108. {
  48109. front: {
  48110. height: math.unit(6, "feet"),
  48111. weight: math.unit(250, "lb"),
  48112. name: "Front",
  48113. image: {
  48114. source: "./media/characters/zenimma/front.svg",
  48115. extra: 1346/1320,
  48116. bottom: 58/1404
  48117. }
  48118. },
  48119. back: {
  48120. height: math.unit(6, "feet"),
  48121. weight: math.unit(250, "lb"),
  48122. name: "Back",
  48123. image: {
  48124. source: "./media/characters/zenimma/back.svg",
  48125. extra: 1324/1308,
  48126. bottom: 44/1368
  48127. }
  48128. },
  48129. dick: {
  48130. height: math.unit(1.44, "feet"),
  48131. name: "Dick",
  48132. image: {
  48133. source: "./media/characters/zenimma/dick.svg"
  48134. }
  48135. },
  48136. },
  48137. [
  48138. {
  48139. name: "Canon Height",
  48140. height: math.unit(66, "miles"),
  48141. default: true
  48142. },
  48143. ]
  48144. ))
  48145. characterMakers.push(() => makeCharacter(
  48146. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48147. {
  48148. nude: {
  48149. height: math.unit(6, "feet"),
  48150. weight: math.unit(150, "lb"),
  48151. name: "Nude",
  48152. image: {
  48153. source: "./media/characters/shavon/nude.svg",
  48154. extra: 1242/1096,
  48155. bottom: 98/1340
  48156. }
  48157. },
  48158. dressed: {
  48159. height: math.unit(6, "feet"),
  48160. weight: math.unit(150, "lb"),
  48161. name: "Dressed",
  48162. image: {
  48163. source: "./media/characters/shavon/dressed.svg",
  48164. extra: 1242/1096,
  48165. bottom: 98/1340
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Macro",
  48172. height: math.unit(255, "feet"),
  48173. default: true
  48174. },
  48175. ]
  48176. ))
  48177. characterMakers.push(() => makeCharacter(
  48178. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48179. {
  48180. front: {
  48181. height: math.unit(6, "feet"),
  48182. name: "Front",
  48183. image: {
  48184. source: "./media/characters/steph/front.svg",
  48185. extra: 1430/1330,
  48186. bottom: 54/1484
  48187. }
  48188. },
  48189. },
  48190. [
  48191. {
  48192. name: "Normal",
  48193. height: math.unit(6, "feet"),
  48194. default: true
  48195. },
  48196. ]
  48197. ))
  48198. characterMakers.push(() => makeCharacter(
  48199. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48200. {
  48201. front: {
  48202. height: math.unit(9, "feet"),
  48203. weight: math.unit(400, "lb"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/kil'aman/front.svg",
  48207. extra: 1210/1159,
  48208. bottom: 109/1319
  48209. }
  48210. },
  48211. head: {
  48212. height: math.unit(2.14, "feet"),
  48213. name: "Head",
  48214. image: {
  48215. source: "./media/characters/kil'aman/head.svg"
  48216. }
  48217. },
  48218. maw: {
  48219. height: math.unit(1.21, "feet"),
  48220. name: "Maw",
  48221. image: {
  48222. source: "./media/characters/kil'aman/maw.svg"
  48223. }
  48224. },
  48225. foot: {
  48226. height: math.unit(1.7, "feet"),
  48227. name: "Foot",
  48228. image: {
  48229. source: "./media/characters/kil'aman/foot.svg"
  48230. }
  48231. },
  48232. dick: {
  48233. height: math.unit(2.1, "feet"),
  48234. name: "Dick",
  48235. image: {
  48236. source: "./media/characters/kil'aman/dick.svg"
  48237. }
  48238. },
  48239. },
  48240. [
  48241. {
  48242. name: "Normal",
  48243. height: math.unit(9, "feet")
  48244. },
  48245. {
  48246. name: "Canon Height",
  48247. height: math.unit(10, "miles"),
  48248. default: true
  48249. },
  48250. {
  48251. name: "Maximum",
  48252. height: math.unit(6e9, "miles")
  48253. },
  48254. ]
  48255. ))
  48256. characterMakers.push(() => makeCharacter(
  48257. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48258. {
  48259. front: {
  48260. height: math.unit(90, "feet"),
  48261. weight: math.unit(675000, "lb"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/qadan/front.svg",
  48265. extra: 1012/1004,
  48266. bottom: 78/1090
  48267. }
  48268. },
  48269. back: {
  48270. height: math.unit(90, "feet"),
  48271. weight: math.unit(675000, "lb"),
  48272. name: "Back",
  48273. image: {
  48274. source: "./media/characters/qadan/back.svg",
  48275. extra: 1042/1031,
  48276. bottom: 55/1097
  48277. }
  48278. },
  48279. armored: {
  48280. height: math.unit(90, "feet"),
  48281. weight: math.unit(675000, "lb"),
  48282. name: "Armored",
  48283. image: {
  48284. source: "./media/characters/qadan/armored.svg",
  48285. extra: 1047/1037,
  48286. bottom: 48/1095
  48287. }
  48288. },
  48289. },
  48290. [
  48291. {
  48292. name: "Normal",
  48293. height: math.unit(90, "feet"),
  48294. default: true
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48300. {
  48301. front: {
  48302. height: math.unit(6, "feet"),
  48303. weight: math.unit(225, "lb"),
  48304. name: "Front",
  48305. image: {
  48306. source: "./media/characters/brooke/front.svg",
  48307. extra: 1050/1010,
  48308. bottom: 66/1116
  48309. }
  48310. },
  48311. back: {
  48312. height: math.unit(6, "feet"),
  48313. weight: math.unit(225, "lb"),
  48314. name: "Back",
  48315. image: {
  48316. source: "./media/characters/brooke/back.svg",
  48317. extra: 1053/1013,
  48318. bottom: 41/1094
  48319. }
  48320. },
  48321. dressed: {
  48322. height: math.unit(6, "feet"),
  48323. weight: math.unit(225, "lb"),
  48324. name: "Dressed",
  48325. image: {
  48326. source: "./media/characters/brooke/dressed.svg",
  48327. extra: 1050/1010,
  48328. bottom: 66/1116
  48329. }
  48330. },
  48331. },
  48332. [
  48333. {
  48334. name: "Canon Height",
  48335. height: math.unit(500, "miles"),
  48336. default: true
  48337. },
  48338. ]
  48339. ))
  48340. characterMakers.push(() => makeCharacter(
  48341. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48342. {
  48343. front: {
  48344. height: math.unit(6 + 2/12, "feet"),
  48345. weight: math.unit(210, "lb"),
  48346. name: "Front",
  48347. image: {
  48348. source: "./media/characters/wubs/front.svg",
  48349. extra: 1345/1325,
  48350. bottom: 70/1415
  48351. }
  48352. },
  48353. back: {
  48354. height: math.unit(6 + 2/12, "feet"),
  48355. weight: math.unit(210, "lb"),
  48356. name: "Back",
  48357. image: {
  48358. source: "./media/characters/wubs/back.svg",
  48359. extra: 1296/1275,
  48360. bottom: 58/1354
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(6 + 2/12, "feet"),
  48368. default: true
  48369. },
  48370. {
  48371. name: "Macro",
  48372. height: math.unit(1000, "feet")
  48373. },
  48374. {
  48375. name: "Megamacro",
  48376. height: math.unit(1, "mile")
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48382. {
  48383. front: {
  48384. height: math.unit(4, "feet"),
  48385. weight: math.unit(120, "lb"),
  48386. name: "Front",
  48387. image: {
  48388. source: "./media/characters/blue/front.svg",
  48389. extra: 1636/1525,
  48390. bottom: 43/1679
  48391. }
  48392. },
  48393. back: {
  48394. height: math.unit(4, "feet"),
  48395. weight: math.unit(120, "lb"),
  48396. name: "Back",
  48397. image: {
  48398. source: "./media/characters/blue/back.svg",
  48399. extra: 1660/1560,
  48400. bottom: 57/1717
  48401. }
  48402. },
  48403. paws: {
  48404. height: math.unit(0.826, "feet"),
  48405. name: "Paws",
  48406. image: {
  48407. source: "./media/characters/blue/paws.svg"
  48408. }
  48409. },
  48410. },
  48411. [
  48412. {
  48413. name: "Micro",
  48414. height: math.unit(3, "inches")
  48415. },
  48416. {
  48417. name: "Normal",
  48418. height: math.unit(4, "feet"),
  48419. default: true
  48420. },
  48421. {
  48422. name: "Femenine Form",
  48423. height: math.unit(14, "feet")
  48424. },
  48425. {
  48426. name: "Werebat Form",
  48427. height: math.unit(18, "feet")
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48433. {
  48434. female: {
  48435. height: math.unit(7 + 4/12, "feet"),
  48436. weight: math.unit(243, "lb"),
  48437. name: "Female",
  48438. image: {
  48439. source: "./media/characters/kaya/female.svg",
  48440. extra: 975/898,
  48441. bottom: 34/1009
  48442. }
  48443. },
  48444. herm: {
  48445. height: math.unit(7 + 4/12, "feet"),
  48446. weight: math.unit(243, "lb"),
  48447. name: "Herm",
  48448. image: {
  48449. source: "./media/characters/kaya/herm.svg",
  48450. extra: 975/898,
  48451. bottom: 34/1009
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Normal",
  48458. height: math.unit(7 + 4/12, "feet"),
  48459. default: true
  48460. },
  48461. ]
  48462. ))
  48463. characterMakers.push(() => makeCharacter(
  48464. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48465. {
  48466. female: {
  48467. height: math.unit(9 + 4/12, "feet"),
  48468. weight: math.unit(398, "lb"),
  48469. name: "Female",
  48470. image: {
  48471. source: "./media/characters/kassandra/female.svg",
  48472. extra: 908/839,
  48473. bottom: 61/969
  48474. }
  48475. },
  48476. intersex: {
  48477. height: math.unit(9 + 4/12, "feet"),
  48478. weight: math.unit(398, "lb"),
  48479. name: "Intersex",
  48480. image: {
  48481. source: "./media/characters/kassandra/intersex.svg",
  48482. extra: 908/839,
  48483. bottom: 61/969
  48484. }
  48485. },
  48486. },
  48487. [
  48488. {
  48489. name: "Normal",
  48490. height: math.unit(9 + 4/12, "feet"),
  48491. default: true
  48492. },
  48493. ]
  48494. ))
  48495. characterMakers.push(() => makeCharacter(
  48496. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48497. {
  48498. front: {
  48499. height: math.unit(3, "meters"),
  48500. name: "Front",
  48501. image: {
  48502. source: "./media/characters/amy/front.svg",
  48503. extra: 1380/1343,
  48504. bottom: 70/1450
  48505. }
  48506. },
  48507. back: {
  48508. height: math.unit(3, "meters"),
  48509. name: "Back",
  48510. image: {
  48511. source: "./media/characters/amy/back.svg",
  48512. extra: 1380/1347,
  48513. bottom: 66/1446
  48514. }
  48515. },
  48516. },
  48517. [
  48518. {
  48519. name: "Normal",
  48520. height: math.unit(3, "meters"),
  48521. default: true
  48522. },
  48523. ]
  48524. ))
  48525. characterMakers.push(() => makeCharacter(
  48526. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48527. {
  48528. side: {
  48529. height: math.unit(47, "cm"),
  48530. weight: math.unit(10.8, "kg"),
  48531. name: "Side",
  48532. image: {
  48533. source: "./media/characters/alphaschakal/side.svg",
  48534. extra: 1058/568,
  48535. bottom: 62/1120
  48536. }
  48537. },
  48538. back: {
  48539. height: math.unit(78, "cm"),
  48540. weight: math.unit(10.8, "kg"),
  48541. name: "Back",
  48542. image: {
  48543. source: "./media/characters/alphaschakal/back.svg",
  48544. extra: 1102/942,
  48545. bottom: 185/1287
  48546. }
  48547. },
  48548. head: {
  48549. height: math.unit(28, "cm"),
  48550. name: "Head",
  48551. image: {
  48552. source: "./media/characters/alphaschakal/head.svg",
  48553. extra: 696/508,
  48554. bottom: 0/696
  48555. }
  48556. },
  48557. paw: {
  48558. height: math.unit(16, "cm"),
  48559. name: "Paw",
  48560. image: {
  48561. source: "./media/characters/alphaschakal/paw.svg"
  48562. }
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Normal",
  48568. height: math.unit(47, "cm"),
  48569. default: true
  48570. },
  48571. {
  48572. name: "Macro",
  48573. height: math.unit(340, "cm")
  48574. },
  48575. ]
  48576. ))
  48577. characterMakers.push(() => makeCharacter(
  48578. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48579. {
  48580. front: {
  48581. height: math.unit(36, "earths"),
  48582. name: "Front",
  48583. image: {
  48584. source: "./media/characters/ecobyss/front.svg",
  48585. extra: 1282/1215,
  48586. bottom: 11/1293
  48587. }
  48588. },
  48589. back: {
  48590. height: math.unit(36, "earths"),
  48591. name: "Back",
  48592. image: {
  48593. source: "./media/characters/ecobyss/back.svg",
  48594. extra: 1291/1222,
  48595. bottom: 8/1299
  48596. }
  48597. },
  48598. },
  48599. [
  48600. {
  48601. name: "Normal",
  48602. height: math.unit(36, "earths"),
  48603. default: true
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48609. {
  48610. front: {
  48611. height: math.unit(12, "feet"),
  48612. name: "Front",
  48613. image: {
  48614. source: "./media/characters/vasuk/front.svg",
  48615. extra: 1326/1207,
  48616. bottom: 64/1390
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(12, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48630. {
  48631. side: {
  48632. height: math.unit(100, "feet"),
  48633. name: "Side",
  48634. image: {
  48635. source: "./media/characters/linneaus/side.svg",
  48636. extra: 987/807,
  48637. bottom: 47/1034
  48638. }
  48639. },
  48640. },
  48641. [
  48642. {
  48643. name: "Macro",
  48644. height: math.unit(100, "feet"),
  48645. default: true
  48646. },
  48647. ]
  48648. ))
  48649. characterMakers.push(() => makeCharacter(
  48650. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48651. {
  48652. front: {
  48653. height: math.unit(8, "feet"),
  48654. weight: math.unit(1200, "lb"),
  48655. name: "Front",
  48656. image: {
  48657. source: "./media/characters/nyterious-daligdig/front.svg",
  48658. extra: 1284/1094,
  48659. bottom: 84/1368
  48660. }
  48661. },
  48662. back: {
  48663. height: math.unit(8, "feet"),
  48664. weight: math.unit(1200, "lb"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/nyterious-daligdig/back.svg",
  48668. extra: 1301/1121,
  48669. bottom: 129/1430
  48670. }
  48671. },
  48672. mouth: {
  48673. height: math.unit(1.464, "feet"),
  48674. name: "Mouth",
  48675. image: {
  48676. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Small",
  48683. height: math.unit(8, "feet"),
  48684. default: true
  48685. },
  48686. {
  48687. name: "Normal",
  48688. height: math.unit(15, "feet")
  48689. },
  48690. {
  48691. name: "Macro",
  48692. height: math.unit(90, "feet")
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48698. {
  48699. front: {
  48700. height: math.unit(7 + 4/12, "feet"),
  48701. weight: math.unit(252, "lb"),
  48702. name: "Front",
  48703. image: {
  48704. source: "./media/characters/bandel/front.svg",
  48705. extra: 1946/1775,
  48706. bottom: 26/1972
  48707. }
  48708. },
  48709. back: {
  48710. height: math.unit(7 + 4/12, "feet"),
  48711. weight: math.unit(252, "lb"),
  48712. name: "Back",
  48713. image: {
  48714. source: "./media/characters/bandel/back.svg",
  48715. extra: 1940/1770,
  48716. bottom: 25/1965
  48717. }
  48718. },
  48719. maw: {
  48720. height: math.unit(2.15, "feet"),
  48721. name: "Maw",
  48722. image: {
  48723. source: "./media/characters/bandel/maw.svg"
  48724. }
  48725. },
  48726. stomach: {
  48727. height: math.unit(1.95, "feet"),
  48728. name: "Stomach",
  48729. image: {
  48730. source: "./media/characters/bandel/stomach.svg"
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(7 + 4/12, "feet"),
  48738. default: true
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48744. {
  48745. front: {
  48746. height: math.unit(10 + 5/12, "feet"),
  48747. weight: math.unit(773.5, "kg"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/zed/front.svg",
  48751. extra: 987/941,
  48752. bottom: 52/1039
  48753. }
  48754. },
  48755. },
  48756. [
  48757. {
  48758. name: "Short",
  48759. height: math.unit(5 + 4/12, "feet")
  48760. },
  48761. {
  48762. name: "Average",
  48763. height: math.unit(10 + 5/12, "feet"),
  48764. default: true
  48765. },
  48766. {
  48767. name: "Mini-Macro",
  48768. height: math.unit(24 + 9/12, "feet")
  48769. },
  48770. {
  48771. name: "Macro",
  48772. height: math.unit(249, "feet")
  48773. },
  48774. {
  48775. name: "Mega-Macro",
  48776. height: math.unit(12490, "feet")
  48777. },
  48778. {
  48779. name: "Giga-Macro",
  48780. height: math.unit(24.9, "miles")
  48781. },
  48782. {
  48783. name: "Tera-Macro",
  48784. height: math.unit(24900, "miles")
  48785. },
  48786. {
  48787. name: "Cosmic Scale",
  48788. height: math.unit(38.9, "lightyears")
  48789. },
  48790. {
  48791. name: "Universal Scale",
  48792. height: math.unit(138e12, "lightyears")
  48793. },
  48794. ]
  48795. ))
  48796. characterMakers.push(() => makeCharacter(
  48797. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48798. {
  48799. front: {
  48800. height: math.unit(1561, "inches"),
  48801. name: "Front",
  48802. image: {
  48803. source: "./media/characters/ivan/front.svg",
  48804. extra: 1126/1071,
  48805. bottom: 26/1152
  48806. }
  48807. },
  48808. back: {
  48809. height: math.unit(1561, "inches"),
  48810. name: "Back",
  48811. image: {
  48812. source: "./media/characters/ivan/back.svg",
  48813. extra: 1134/1079,
  48814. bottom: 30/1164
  48815. }
  48816. },
  48817. },
  48818. [
  48819. {
  48820. name: "Normal",
  48821. height: math.unit(1561, "inches"),
  48822. default: true
  48823. },
  48824. ]
  48825. ))
  48826. characterMakers.push(() => makeCharacter(
  48827. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48828. {
  48829. front: {
  48830. height: math.unit(5 + 7/12, "feet"),
  48831. weight: math.unit(150, "lb"),
  48832. name: "Front",
  48833. image: {
  48834. source: "./media/characters/robin-arctic-hare/front.svg",
  48835. extra: 1148/974,
  48836. bottom: 20/1168
  48837. }
  48838. },
  48839. },
  48840. [
  48841. {
  48842. name: "Normal",
  48843. height: math.unit(5 + 7/12, "feet"),
  48844. default: true
  48845. },
  48846. ]
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48850. {
  48851. side: {
  48852. height: math.unit(5, "feet"),
  48853. name: "Side",
  48854. image: {
  48855. source: "./media/characters/birch/side.svg",
  48856. extra: 985/796,
  48857. bottom: 111/1096
  48858. }
  48859. },
  48860. },
  48861. [
  48862. {
  48863. name: "Normal",
  48864. height: math.unit(5, "feet"),
  48865. default: true
  48866. },
  48867. ]
  48868. ))
  48869. characterMakers.push(() => makeCharacter(
  48870. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48871. {
  48872. front: {
  48873. height: math.unit(4, "feet"),
  48874. name: "Front",
  48875. image: {
  48876. source: "./media/characters/rasp/front.svg",
  48877. extra: 561/478,
  48878. bottom: 74/635
  48879. }
  48880. },
  48881. },
  48882. [
  48883. {
  48884. name: "Normal",
  48885. height: math.unit(4, "feet"),
  48886. default: true
  48887. },
  48888. ]
  48889. ))
  48890. characterMakers.push(() => makeCharacter(
  48891. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48892. {
  48893. front: {
  48894. height: math.unit(4 + 6/12, "feet"),
  48895. name: "Front",
  48896. image: {
  48897. source: "./media/characters/agatha/front.svg",
  48898. extra: 947/933,
  48899. bottom: 42/989
  48900. }
  48901. },
  48902. back: {
  48903. height: math.unit(4 + 6/12, "feet"),
  48904. name: "Back",
  48905. image: {
  48906. source: "./media/characters/agatha/back.svg",
  48907. extra: 935/922,
  48908. bottom: 48/983
  48909. }
  48910. },
  48911. },
  48912. [
  48913. {
  48914. name: "Normal",
  48915. height: math.unit(4 + 6 /12, "feet"),
  48916. default: true
  48917. },
  48918. {
  48919. name: "Max Size",
  48920. height: math.unit(500, "feet")
  48921. },
  48922. ]
  48923. ))
  48924. characterMakers.push(() => makeCharacter(
  48925. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48926. {
  48927. side: {
  48928. height: math.unit(30, "feet"),
  48929. name: "Side",
  48930. image: {
  48931. source: "./media/characters/roggy/side.svg",
  48932. extra: 909/643,
  48933. bottom: 63/972
  48934. }
  48935. },
  48936. lounging: {
  48937. height: math.unit(20, "feet"),
  48938. name: "Lounging",
  48939. image: {
  48940. source: "./media/characters/roggy/lounging.svg",
  48941. extra: 643/479,
  48942. bottom: 145/788
  48943. }
  48944. },
  48945. handpaw: {
  48946. height: math.unit(13.1, "feet"),
  48947. name: "Handpaw",
  48948. image: {
  48949. source: "./media/characters/roggy/handpaw.svg"
  48950. }
  48951. },
  48952. footpaw: {
  48953. height: math.unit(15.8, "feet"),
  48954. name: "Footpaw",
  48955. image: {
  48956. source: "./media/characters/roggy/footpaw.svg"
  48957. }
  48958. },
  48959. },
  48960. [
  48961. {
  48962. name: "Menacing",
  48963. height: math.unit(30, "feet"),
  48964. default: true
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48970. {
  48971. front: {
  48972. height: math.unit(5 + 7/12, "feet"),
  48973. weight: math.unit(135, "lb"),
  48974. name: "Front",
  48975. image: {
  48976. source: "./media/characters/naomi/front.svg",
  48977. extra: 1209/1154,
  48978. bottom: 129/1338
  48979. }
  48980. },
  48981. back: {
  48982. height: math.unit(5 + 7/12, "feet"),
  48983. weight: math.unit(135, "lb"),
  48984. name: "Back",
  48985. image: {
  48986. source: "./media/characters/naomi/back.svg",
  48987. extra: 1252/1190,
  48988. bottom: 23/1275
  48989. }
  48990. },
  48991. },
  48992. [
  48993. {
  48994. name: "Normal",
  48995. height: math.unit(5 + 7 /12, "feet"),
  48996. default: true
  48997. },
  48998. ]
  48999. ))
  49000. characterMakers.push(() => makeCharacter(
  49001. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49002. {
  49003. side: {
  49004. height: math.unit(35, "meters"),
  49005. name: "Side",
  49006. image: {
  49007. source: "./media/characters/kimpi/side.svg",
  49008. extra: 419/382,
  49009. bottom: 63/482
  49010. }
  49011. },
  49012. hand: {
  49013. height: math.unit(8.96, "meters"),
  49014. name: "Hand",
  49015. image: {
  49016. source: "./media/characters/kimpi/hand.svg"
  49017. }
  49018. },
  49019. },
  49020. [
  49021. {
  49022. name: "Normal",
  49023. height: math.unit(35, "meters"),
  49024. default: true
  49025. },
  49026. ]
  49027. ))
  49028. characterMakers.push(() => makeCharacter(
  49029. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49030. {
  49031. front: {
  49032. height: math.unit(4 + 4/12, "feet"),
  49033. name: "Front",
  49034. image: {
  49035. source: "./media/characters/pepper-purrloin/front.svg",
  49036. extra: 1141/1024,
  49037. bottom: 21/1162
  49038. }
  49039. },
  49040. },
  49041. [
  49042. {
  49043. name: "Normal",
  49044. height: math.unit(4 + 4/12, "feet"),
  49045. default: true
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49051. {
  49052. front: {
  49053. height: math.unit(6 + 2/12, "feet"),
  49054. name: "Front",
  49055. image: {
  49056. source: "./media/characters/raphael/front.svg",
  49057. extra: 1101/962,
  49058. bottom: 59/1160
  49059. }
  49060. },
  49061. },
  49062. [
  49063. {
  49064. name: "Normal",
  49065. height: math.unit(6 + 2/12, "feet"),
  49066. default: true
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(6, "feet"),
  49075. weight: math.unit(150, "lb"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/victor-williams/front.svg",
  49079. extra: 1894/1825,
  49080. bottom: 67/1961
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(6, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(5 + 8/12, "feet"),
  49097. weight: math.unit(150, "lb"),
  49098. name: "Front",
  49099. image: {
  49100. source: "./media/characters/rachel/front.svg",
  49101. extra: 1902/1787,
  49102. bottom: 46/1948
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Base Height",
  49109. height: math.unit(5 + 8/12, "feet"),
  49110. default: true
  49111. },
  49112. {
  49113. name: "Macro",
  49114. height: math.unit(200, "feet")
  49115. },
  49116. {
  49117. name: "Mega Macro",
  49118. height: math.unit(1, "mile")
  49119. },
  49120. {
  49121. name: "Giga Macro",
  49122. height: math.unit(1500, "miles")
  49123. },
  49124. {
  49125. name: "Tera Macro",
  49126. height: math.unit(8000, "miles")
  49127. },
  49128. {
  49129. name: "Tera Macro+",
  49130. height: math.unit(2e5, "miles")
  49131. },
  49132. ]
  49133. ))
  49134. characterMakers.push(() => makeCharacter(
  49135. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49136. {
  49137. front: {
  49138. height: math.unit(6.5, "feet"),
  49139. name: "Front",
  49140. image: {
  49141. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49142. extra: 860/819,
  49143. bottom: 307/1167
  49144. }
  49145. },
  49146. back: {
  49147. height: math.unit(6.5, "feet"),
  49148. name: "Back",
  49149. image: {
  49150. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49151. extra: 880/837,
  49152. bottom: 395/1275
  49153. }
  49154. },
  49155. sleeping: {
  49156. height: math.unit(2.79, "feet"),
  49157. name: "Sleeping",
  49158. image: {
  49159. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49160. extra: 465/383,
  49161. bottom: 263/728
  49162. }
  49163. },
  49164. maw: {
  49165. height: math.unit(2.52, "feet"),
  49166. name: "Maw",
  49167. image: {
  49168. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49169. }
  49170. },
  49171. },
  49172. [
  49173. {
  49174. name: "Normal",
  49175. height: math.unit(6.5, "feet"),
  49176. default: true
  49177. },
  49178. ]
  49179. ))
  49180. characterMakers.push(() => makeCharacter(
  49181. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49182. {
  49183. front: {
  49184. height: math.unit(5, "feet"),
  49185. name: "Front",
  49186. image: {
  49187. source: "./media/characters/nova-nerium/front.svg",
  49188. extra: 1548/1392,
  49189. bottom: 374/1922
  49190. }
  49191. },
  49192. back: {
  49193. height: math.unit(5, "feet"),
  49194. name: "Back",
  49195. image: {
  49196. source: "./media/characters/nova-nerium/back.svg",
  49197. extra: 1658/1468,
  49198. bottom: 257/1915
  49199. }
  49200. },
  49201. },
  49202. [
  49203. {
  49204. name: "Normal",
  49205. height: math.unit(5, "feet"),
  49206. default: true
  49207. },
  49208. ]
  49209. ))
  49210. characterMakers.push(() => makeCharacter(
  49211. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49212. {
  49213. front: {
  49214. height: math.unit(5 + 4/12, "feet"),
  49215. name: "Front",
  49216. image: {
  49217. source: "./media/characters/ashe-pyriph/front.svg",
  49218. extra: 1935/1747,
  49219. bottom: 60/1995
  49220. }
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Normal",
  49226. height: math.unit(5 + 4/12, "feet"),
  49227. default: true
  49228. },
  49229. ]
  49230. ))
  49231. characterMakers.push(() => makeCharacter(
  49232. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49233. {
  49234. front: {
  49235. height: math.unit(8.7, "feet"),
  49236. name: "Front",
  49237. image: {
  49238. source: "./media/characters/flicker-wisp/front.svg",
  49239. extra: 1835/1613,
  49240. bottom: 449/2284
  49241. }
  49242. },
  49243. side: {
  49244. height: math.unit(8.7, "feet"),
  49245. name: "Side",
  49246. image: {
  49247. source: "./media/characters/flicker-wisp/side.svg",
  49248. extra: 1841/1642,
  49249. bottom: 336/2177
  49250. },
  49251. default: true
  49252. },
  49253. maw: {
  49254. height: math.unit(3.35, "feet"),
  49255. name: "Maw",
  49256. image: {
  49257. source: "./media/characters/flicker-wisp/maw.svg",
  49258. extra: 2338/1506,
  49259. bottom: 0/2338
  49260. }
  49261. },
  49262. ovipositor: {
  49263. height: math.unit(4.95, "feet"),
  49264. name: "Ovipositor",
  49265. image: {
  49266. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49267. }
  49268. },
  49269. egg: {
  49270. height: math.unit(0.385, "feet"),
  49271. weight: math.unit(2, "lb"),
  49272. name: "Egg",
  49273. image: {
  49274. source: "./media/characters/flicker-wisp/egg.svg"
  49275. }
  49276. },
  49277. },
  49278. [
  49279. {
  49280. name: "Normal",
  49281. height: math.unit(8.7, "feet"),
  49282. default: true
  49283. },
  49284. ]
  49285. ))
  49286. characterMakers.push(() => makeCharacter(
  49287. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49288. {
  49289. side: {
  49290. height: math.unit(11, "feet"),
  49291. name: "Side",
  49292. image: {
  49293. source: "./media/characters/faefnul/side.svg",
  49294. extra: 1100/1007,
  49295. bottom: 0/1100
  49296. }
  49297. },
  49298. },
  49299. [
  49300. {
  49301. name: "Normal",
  49302. height: math.unit(11, "feet"),
  49303. default: true
  49304. },
  49305. ]
  49306. ))
  49307. characterMakers.push(() => makeCharacter(
  49308. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49309. {
  49310. front: {
  49311. height: math.unit(6 + 2/12, "feet"),
  49312. name: "Front",
  49313. image: {
  49314. source: "./media/characters/shady/front.svg",
  49315. extra: 502/461,
  49316. bottom: 9/511
  49317. }
  49318. },
  49319. kneeling: {
  49320. height: math.unit(4.6, "feet"),
  49321. name: "Kneeling",
  49322. image: {
  49323. source: "./media/characters/shady/kneeling.svg",
  49324. extra: 1328/1219,
  49325. bottom: 117/1445
  49326. }
  49327. },
  49328. maw: {
  49329. height: math.unit(2, "feet"),
  49330. name: "Maw",
  49331. image: {
  49332. source: "./media/characters/shady/maw.svg"
  49333. }
  49334. },
  49335. },
  49336. [
  49337. {
  49338. name: "Nano",
  49339. height: math.unit(1, "mm")
  49340. },
  49341. {
  49342. name: "Micro",
  49343. height: math.unit(12, "mm")
  49344. },
  49345. {
  49346. name: "Tiny",
  49347. height: math.unit(3, "inches")
  49348. },
  49349. {
  49350. name: "Normal",
  49351. height: math.unit(6 + 2/12, "feet"),
  49352. default: true
  49353. },
  49354. {
  49355. name: "Big",
  49356. height: math.unit(15, "feet")
  49357. },
  49358. {
  49359. name: "Macro",
  49360. height: math.unit(150, "feet")
  49361. },
  49362. {
  49363. name: "Titanic",
  49364. height: math.unit(500, "feet")
  49365. },
  49366. ]
  49367. ))
  49368. characterMakers.push(() => makeCharacter(
  49369. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49370. {
  49371. front: {
  49372. height: math.unit(12, "feet"),
  49373. name: "Front",
  49374. image: {
  49375. source: "./media/characters/fenrir/front.svg",
  49376. extra: 968/875,
  49377. bottom: 22/990
  49378. }
  49379. },
  49380. },
  49381. [
  49382. {
  49383. name: "Big",
  49384. height: math.unit(12, "feet"),
  49385. default: true
  49386. },
  49387. ]
  49388. ))
  49389. characterMakers.push(() => makeCharacter(
  49390. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49391. {
  49392. front: {
  49393. height: math.unit(5 + 4/12, "feet"),
  49394. name: "Front",
  49395. image: {
  49396. source: "./media/characters/makar/front.svg",
  49397. extra: 1181/1112,
  49398. bottom: 78/1259
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Normal",
  49405. height: math.unit(5 + 4/12, "feet"),
  49406. default: true
  49407. },
  49408. ]
  49409. ))
  49410. characterMakers.push(() => makeCharacter(
  49411. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49412. {
  49413. front: {
  49414. height: math.unit(5 + 7/12, "feet"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/callow/front.svg",
  49418. extra: 1482/1304,
  49419. bottom: 23/1505
  49420. }
  49421. },
  49422. back: {
  49423. height: math.unit(5 + 7/12, "feet"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/callow/back.svg",
  49427. extra: 1484/1296,
  49428. bottom: 25/1509
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Micro",
  49435. height: math.unit(3, "inches"),
  49436. default: true
  49437. },
  49438. {
  49439. name: "Normal",
  49440. height: math.unit(5 + 7/12, "feet")
  49441. },
  49442. ]
  49443. ))
  49444. characterMakers.push(() => makeCharacter(
  49445. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49446. {
  49447. front: {
  49448. height: math.unit(6 + 2/12, "feet"),
  49449. name: "Front",
  49450. image: {
  49451. source: "./media/characters/natel/front.svg",
  49452. extra: 1833/1692,
  49453. bottom: 166/1999
  49454. }
  49455. },
  49456. },
  49457. [
  49458. {
  49459. name: "Normal",
  49460. height: math.unit(6 + 2/12, "feet"),
  49461. default: true
  49462. },
  49463. ]
  49464. ))
  49465. characterMakers.push(() => makeCharacter(
  49466. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49467. {
  49468. front: {
  49469. height: math.unit(1.75, "meters"),
  49470. name: "Front",
  49471. image: {
  49472. source: "./media/characters/misu/front.svg",
  49473. extra: 1690/1558,
  49474. bottom: 234/1924
  49475. }
  49476. },
  49477. back: {
  49478. height: math.unit(1.75, "meters"),
  49479. name: "Back",
  49480. image: {
  49481. source: "./media/characters/misu/back.svg",
  49482. extra: 1762/1618,
  49483. bottom: 146/1908
  49484. }
  49485. },
  49486. frontNude: {
  49487. height: math.unit(1.75, "meters"),
  49488. name: "Front (Nude)",
  49489. image: {
  49490. source: "./media/characters/misu/front-nude.svg",
  49491. extra: 1690/1558,
  49492. bottom: 234/1924
  49493. }
  49494. },
  49495. backNude: {
  49496. height: math.unit(1.75, "meters"),
  49497. name: "Back (Nude)",
  49498. image: {
  49499. source: "./media/characters/misu/back-nude.svg",
  49500. extra: 1762/1618,
  49501. bottom: 146/1908
  49502. }
  49503. },
  49504. frontErect: {
  49505. height: math.unit(1.75, "meters"),
  49506. name: "Front (Erect)",
  49507. image: {
  49508. source: "./media/characters/misu/front-erect.svg",
  49509. extra: 1690/1558,
  49510. bottom: 234/1924
  49511. }
  49512. },
  49513. maw: {
  49514. height: math.unit(0.47, "meters"),
  49515. name: "Maw",
  49516. image: {
  49517. source: "./media/characters/misu/maw.svg"
  49518. }
  49519. },
  49520. head: {
  49521. height: math.unit(0.35, "meters"),
  49522. name: "Head",
  49523. image: {
  49524. source: "./media/characters/misu/head.svg"
  49525. }
  49526. },
  49527. rear: {
  49528. height: math.unit(0.47, "meters"),
  49529. name: "Rear",
  49530. image: {
  49531. source: "./media/characters/misu/rear.svg"
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Normal",
  49538. height: math.unit(1.75, "meters")
  49539. },
  49540. {
  49541. name: "Not good for the people",
  49542. height: math.unit(42, "meters")
  49543. },
  49544. {
  49545. name: "Not good for the neighborhood",
  49546. height: math.unit(135, "meters")
  49547. },
  49548. {
  49549. name: "Bit bigger problem",
  49550. height: math.unit(380, "meters"),
  49551. default: true
  49552. },
  49553. {
  49554. name: "Not good for the city",
  49555. height: math.unit(1.5, "km")
  49556. },
  49557. {
  49558. name: "Not good for the county",
  49559. height: math.unit(5.5, "km")
  49560. },
  49561. {
  49562. name: "Not good for the state",
  49563. height: math.unit(25, "km")
  49564. },
  49565. {
  49566. name: "Not good for the country",
  49567. height: math.unit(125, "km")
  49568. },
  49569. {
  49570. name: "Not good for the continent",
  49571. height: math.unit(2100, "km")
  49572. },
  49573. {
  49574. name: "Not good for the planet",
  49575. height: math.unit(35000, "km")
  49576. },
  49577. {
  49578. name: "Just no",
  49579. height: math.unit(8.5e18, "km")
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(6.5, "feet"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/poppy/front.svg",
  49591. extra: 1878/1812,
  49592. bottom: 43/1921
  49593. }
  49594. },
  49595. feet: {
  49596. height: math.unit(1.06, "feet"),
  49597. name: "Feet",
  49598. image: {
  49599. source: "./media/characters/poppy/feet.svg",
  49600. extra: 1083/1083,
  49601. bottom: 87/1170
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Human",
  49608. height: math.unit(6.5, "feet")
  49609. },
  49610. {
  49611. name: "Default",
  49612. height: math.unit(300, "feet"),
  49613. default: true
  49614. },
  49615. {
  49616. name: "Huge",
  49617. height: math.unit(850, "feet")
  49618. },
  49619. {
  49620. name: "Mega",
  49621. height: math.unit(8000, "feet")
  49622. },
  49623. {
  49624. name: "Giga",
  49625. height: math.unit(300, "miles")
  49626. },
  49627. ]
  49628. ))
  49629. characterMakers.push(() => makeCharacter(
  49630. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49631. {
  49632. bipedal: {
  49633. height: math.unit(7, "feet"),
  49634. name: "Bipedal",
  49635. image: {
  49636. source: "./media/characters/zener/bipedal.svg",
  49637. extra: 874/805,
  49638. bottom: 109/983
  49639. }
  49640. },
  49641. quadrupedal: {
  49642. height: math.unit(4.64, "feet"),
  49643. name: "Quadrupedal",
  49644. image: {
  49645. source: "./media/characters/zener/quadrupedal.svg",
  49646. extra: 638/507,
  49647. bottom: 190/828
  49648. }
  49649. },
  49650. cock: {
  49651. height: math.unit(18, "inches"),
  49652. name: "Cock",
  49653. image: {
  49654. source: "./media/characters/zener/cock.svg"
  49655. }
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Normal",
  49661. height: math.unit(7, "feet"),
  49662. default: true
  49663. },
  49664. ]
  49665. ))
  49666. characterMakers.push(() => makeCharacter(
  49667. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49668. {
  49669. nude: {
  49670. height: math.unit(5 + 6/12, "feet"),
  49671. name: "Nude",
  49672. image: {
  49673. source: "./media/characters/charlie-dog/nude.svg",
  49674. extra: 768/734,
  49675. bottom: 26/794
  49676. }
  49677. },
  49678. dressed: {
  49679. height: math.unit(5 + 6/12, "feet"),
  49680. name: "Dressed",
  49681. image: {
  49682. source: "./media/characters/charlie-dog/dressed.svg",
  49683. extra: 768/734,
  49684. bottom: 26/794
  49685. }
  49686. },
  49687. },
  49688. [
  49689. {
  49690. name: "Normal",
  49691. height: math.unit(5 + 6/12, "feet"),
  49692. default: true
  49693. },
  49694. ]
  49695. ))
  49696. characterMakers.push(() => makeCharacter(
  49697. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49698. {
  49699. front: {
  49700. height: math.unit(6 + 4/12, "feet"),
  49701. name: "Front",
  49702. image: {
  49703. source: "./media/characters/ir'istrasz/front.svg",
  49704. extra: 1014/977,
  49705. bottom: 65/1079
  49706. }
  49707. },
  49708. back: {
  49709. height: math.unit(6 + 4/12, "feet"),
  49710. name: "Back",
  49711. image: {
  49712. source: "./media/characters/ir'istrasz/back.svg",
  49713. extra: 1024/992,
  49714. bottom: 34/1058
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(6 + 4/12, "feet"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49728. {
  49729. front: {
  49730. height: math.unit(5 + 8/12, "feet"),
  49731. name: "Front",
  49732. image: {
  49733. source: "./media/characters/dee-ditto/front.svg",
  49734. extra: 1874/1785,
  49735. bottom: 68/1942
  49736. }
  49737. },
  49738. back: {
  49739. height: math.unit(5 + 8/12, "feet"),
  49740. name: "Back",
  49741. image: {
  49742. source: "./media/characters/dee-ditto/back.svg",
  49743. extra: 1870/1783,
  49744. bottom: 77/1947
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Normal",
  49751. height: math.unit(5 + 8/12, "feet"),
  49752. default: true
  49753. },
  49754. ]
  49755. ))
  49756. characterMakers.push(() => makeCharacter(
  49757. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49758. {
  49759. front: {
  49760. height: math.unit(7 + 6/12, "feet"),
  49761. name: "Front",
  49762. image: {
  49763. source: "./media/characters/fey/front.svg",
  49764. extra: 995/979,
  49765. bottom: 30/1025
  49766. }
  49767. },
  49768. back: {
  49769. height: math.unit(7 + 6/12, "feet"),
  49770. name: "Back",
  49771. image: {
  49772. source: "./media/characters/fey/back.svg",
  49773. extra: 1079/1008,
  49774. bottom: 5/1084
  49775. }
  49776. },
  49777. dressed: {
  49778. height: math.unit(7 + 6/12, "feet"),
  49779. name: "Dressed",
  49780. image: {
  49781. source: "./media/characters/fey/dressed.svg",
  49782. extra: 995/979,
  49783. bottom: 30/1025
  49784. }
  49785. },
  49786. },
  49787. [
  49788. {
  49789. name: "Normal",
  49790. height: math.unit(7 + 6/12, "feet"),
  49791. default: true
  49792. },
  49793. ]
  49794. ))
  49795. characterMakers.push(() => makeCharacter(
  49796. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49797. {
  49798. standing: {
  49799. height: math.unit(17, "feet"),
  49800. name: "Standing",
  49801. image: {
  49802. source: "./media/characters/aster/standing.svg",
  49803. extra: 1798/1598,
  49804. bottom: 117/1915
  49805. }
  49806. },
  49807. },
  49808. [
  49809. {
  49810. name: "Normal",
  49811. height: math.unit(17, "feet"),
  49812. default: true
  49813. },
  49814. {
  49815. name: "Homewrecker",
  49816. height: math.unit(95, "feet")
  49817. },
  49818. {
  49819. name: "Planet Devourer",
  49820. height: math.unit(1008000, "miles")
  49821. },
  49822. ]
  49823. ))
  49824. characterMakers.push(() => makeCharacter(
  49825. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49826. {
  49827. front: {
  49828. height: math.unit(6 + 5/12, "feet"),
  49829. weight: math.unit(265, "lb"),
  49830. name: "Front",
  49831. image: {
  49832. source: "./media/characters/devon-childs/front.svg",
  49833. extra: 1795/1721,
  49834. bottom: 41/1836
  49835. }
  49836. },
  49837. side: {
  49838. height: math.unit(6 + 5/12, "feet"),
  49839. weight: math.unit(265, "lb"),
  49840. name: "Side",
  49841. image: {
  49842. source: "./media/characters/devon-childs/side.svg",
  49843. extra: 1812/1738,
  49844. bottom: 30/1842
  49845. }
  49846. },
  49847. back: {
  49848. height: math.unit(6 + 5/12, "feet"),
  49849. weight: math.unit(265, "lb"),
  49850. name: "Back",
  49851. image: {
  49852. source: "./media/characters/devon-childs/back.svg",
  49853. extra: 1808/1735,
  49854. bottom: 23/1831
  49855. }
  49856. },
  49857. hand: {
  49858. height: math.unit(1.464, "feet"),
  49859. name: "Hand",
  49860. image: {
  49861. source: "./media/characters/devon-childs/hand.svg"
  49862. }
  49863. },
  49864. foot: {
  49865. height: math.unit(1.6, "feet"),
  49866. name: "Foot",
  49867. image: {
  49868. source: "./media/characters/devon-childs/foot.svg"
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Micro",
  49875. height: math.unit(7, "cm")
  49876. },
  49877. {
  49878. name: "Normal",
  49879. height: math.unit(6 + 5/12, "feet"),
  49880. default: true
  49881. },
  49882. {
  49883. name: "Macro",
  49884. height: math.unit(154, "feet")
  49885. },
  49886. ]
  49887. ))
  49888. characterMakers.push(() => makeCharacter(
  49889. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49890. {
  49891. front: {
  49892. height: math.unit(6, "feet"),
  49893. weight: math.unit(180, "lb"),
  49894. name: "Front",
  49895. image: {
  49896. source: "./media/characters/lydemox-vir/front.svg",
  49897. extra: 1632/1435,
  49898. bottom: 58/1690
  49899. }
  49900. },
  49901. frontSFW: {
  49902. height: math.unit(6, "feet"),
  49903. weight: math.unit(180, "lb"),
  49904. name: "Front (SFW)",
  49905. image: {
  49906. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49907. extra: 1632/1435,
  49908. bottom: 58/1690
  49909. }
  49910. },
  49911. back: {
  49912. height: math.unit(6, "feet"),
  49913. weight: math.unit(180, "lb"),
  49914. name: "Back",
  49915. image: {
  49916. source: "./media/characters/lydemox-vir/back.svg",
  49917. extra: 1593/1408,
  49918. bottom: 31/1624
  49919. }
  49920. },
  49921. paw: {
  49922. height: math.unit(1.85, "feet"),
  49923. name: "Paw",
  49924. image: {
  49925. source: "./media/characters/lydemox-vir/paw.svg"
  49926. }
  49927. },
  49928. dick: {
  49929. height: math.unit(1.8, "feet"),
  49930. name: "Dick",
  49931. image: {
  49932. source: "./media/characters/lydemox-vir/dick.svg"
  49933. }
  49934. },
  49935. },
  49936. [
  49937. {
  49938. name: "Macro",
  49939. height: math.unit(100, "feet"),
  49940. default: true
  49941. },
  49942. {
  49943. name: "Teramacro",
  49944. height: math.unit(1, "earth")
  49945. },
  49946. {
  49947. name: "Planetary",
  49948. height: math.unit(20, "earths")
  49949. },
  49950. ]
  49951. ))
  49952. characterMakers.push(() => makeCharacter(
  49953. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49954. {
  49955. front: {
  49956. height: math.unit(15 + 8/12, "feet"),
  49957. weight: math.unit(1237, "kg"),
  49958. name: "Front",
  49959. image: {
  49960. source: "./media/characters/mia/front.svg",
  49961. extra: 1573/1446,
  49962. bottom: 58/1631
  49963. }
  49964. },
  49965. },
  49966. [
  49967. {
  49968. name: "Small",
  49969. height: math.unit(9 + 5/12, "feet")
  49970. },
  49971. {
  49972. name: "Normal",
  49973. height: math.unit(15 + 8/12, "feet"),
  49974. default: true
  49975. },
  49976. ]
  49977. ))
  49978. characterMakers.push(() => makeCharacter(
  49979. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49980. {
  49981. front: {
  49982. height: math.unit(10 + 6/12, "feet"),
  49983. weight: math.unit(1.3, "tons"),
  49984. name: "Front",
  49985. image: {
  49986. source: "./media/characters/mr-graves/front.svg",
  49987. extra: 1779/1695,
  49988. bottom: 198/1977
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(10 + 6 /12, "feet"),
  49996. default: true
  49997. },
  49998. ]
  49999. ))
  50000. characterMakers.push(() => makeCharacter(
  50001. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50002. {
  50003. dressedFront: {
  50004. height: math.unit(5 + 8/12, "feet"),
  50005. weight: math.unit(125, "lb"),
  50006. name: "Dressed (Front)",
  50007. image: {
  50008. source: "./media/characters/jess/dressed-front.svg",
  50009. extra: 1176/1152,
  50010. bottom: 42/1218
  50011. }
  50012. },
  50013. dressedSide: {
  50014. height: math.unit(5 + 8/12, "feet"),
  50015. weight: math.unit(125, "lb"),
  50016. name: "Dressed (Side)",
  50017. image: {
  50018. source: "./media/characters/jess/dressed-side.svg",
  50019. extra: 1204/1190,
  50020. bottom: 6/1210
  50021. }
  50022. },
  50023. nudeFront: {
  50024. height: math.unit(5 + 8/12, "feet"),
  50025. weight: math.unit(125, "lb"),
  50026. name: "Nude (Front)",
  50027. image: {
  50028. source: "./media/characters/jess/nude-front.svg",
  50029. extra: 1176/1152,
  50030. bottom: 42/1218
  50031. }
  50032. },
  50033. nudeSide: {
  50034. height: math.unit(5 + 8/12, "feet"),
  50035. weight: math.unit(125, "lb"),
  50036. name: "Nude (Side)",
  50037. image: {
  50038. source: "./media/characters/jess/nude-side.svg",
  50039. extra: 1204/1190,
  50040. bottom: 6/1210
  50041. }
  50042. },
  50043. organsFront: {
  50044. height: math.unit(2.83799342105, "feet"),
  50045. name: "Organs (Front)",
  50046. image: {
  50047. source: "./media/characters/jess/organs-front.svg"
  50048. }
  50049. },
  50050. organsSide: {
  50051. height: math.unit(2.64225290474, "feet"),
  50052. name: "Organs (Side)",
  50053. image: {
  50054. source: "./media/characters/jess/organs-side.svg"
  50055. }
  50056. },
  50057. digestiveTractFront: {
  50058. height: math.unit(2.8106580871, "feet"),
  50059. name: "Digestive Tract (Front)",
  50060. image: {
  50061. source: "./media/characters/jess/digestive-tract-front.svg"
  50062. }
  50063. },
  50064. digestiveTractSide: {
  50065. height: math.unit(2.54365045014, "feet"),
  50066. name: "Digestive Tract (Side)",
  50067. image: {
  50068. source: "./media/characters/jess/digestive-tract-side.svg"
  50069. }
  50070. },
  50071. respiratorySystemFront: {
  50072. height: math.unit(1.11196233456, "feet"),
  50073. name: "Respiratory System (Front)",
  50074. image: {
  50075. source: "./media/characters/jess/respiratory-system-front.svg"
  50076. }
  50077. },
  50078. respiratorySystemSide: {
  50079. height: math.unit(0.89327966297, "feet"),
  50080. name: "Respiratory System (Side)",
  50081. image: {
  50082. source: "./media/characters/jess/respiratory-system-side.svg"
  50083. }
  50084. },
  50085. urinaryTractFront: {
  50086. height: math.unit(1.16126356186, "feet"),
  50087. name: "Urinary Tract (Front)",
  50088. image: {
  50089. source: "./media/characters/jess/urinary-tract-front.svg"
  50090. }
  50091. },
  50092. urinaryTractSide: {
  50093. height: math.unit(1.20910039627, "feet"),
  50094. name: "Urinary Tract (Side)",
  50095. image: {
  50096. source: "./media/characters/jess/urinary-tract-side.svg"
  50097. }
  50098. },
  50099. reproductiveOrgansFront: {
  50100. height: math.unit(0.48422591566, "feet"),
  50101. name: "Reproductive Organs (Front)",
  50102. image: {
  50103. source: "./media/characters/jess/reproductive-organs-front.svg"
  50104. }
  50105. },
  50106. reproductiveOrgansSide: {
  50107. height: math.unit(0.61553314481, "feet"),
  50108. name: "Reproductive Organs (Side)",
  50109. image: {
  50110. source: "./media/characters/jess/reproductive-organs-side.svg"
  50111. }
  50112. },
  50113. breastsFront: {
  50114. height: math.unit(0.47690395121, "feet"),
  50115. name: "Breasts (Front)",
  50116. image: {
  50117. source: "./media/characters/jess/breasts-front.svg"
  50118. }
  50119. },
  50120. breastsSide: {
  50121. height: math.unit(0.30556998307, "feet"),
  50122. name: "Breasts (Side)",
  50123. image: {
  50124. source: "./media/characters/jess/breasts-side.svg"
  50125. }
  50126. },
  50127. heartFront: {
  50128. height: math.unit(0.53011022622, "feet"),
  50129. name: "Heart (Front)",
  50130. image: {
  50131. source: "./media/characters/jess/heart-front.svg"
  50132. }
  50133. },
  50134. heartSide: {
  50135. height: math.unit(0.51790695213, "feet"),
  50136. name: "Heart (Side)",
  50137. image: {
  50138. source: "./media/characters/jess/heart-side.svg"
  50139. }
  50140. },
  50141. earsAndNoseFront: {
  50142. height: math.unit(0.29385483995, "feet"),
  50143. name: "Ears and Nose (Front)",
  50144. image: {
  50145. source: "./media/characters/jess/ears-and-nose-front.svg"
  50146. }
  50147. },
  50148. earsAndNoseSide: {
  50149. height: math.unit(0.18109658741, "feet"),
  50150. name: "Ears and Nose (Side)",
  50151. image: {
  50152. source: "./media/characters/jess/ears-and-nose-side.svg"
  50153. }
  50154. },
  50155. },
  50156. [
  50157. {
  50158. name: "Normal",
  50159. height: math.unit(5 + 8/12, "feet"),
  50160. default: true
  50161. },
  50162. ]
  50163. ))
  50164. characterMakers.push(() => makeCharacter(
  50165. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50166. {
  50167. front: {
  50168. height: math.unit(6, "feet"),
  50169. weight: math.unit(6.64467e-7, "grams"),
  50170. name: "Front",
  50171. image: {
  50172. source: "./media/characters/wimpering/front.svg",
  50173. extra: 597/587,
  50174. bottom: 34/631
  50175. }
  50176. },
  50177. },
  50178. [
  50179. {
  50180. name: "Micro",
  50181. height: math.unit(0.4, "mm"),
  50182. default: true
  50183. },
  50184. ]
  50185. ))
  50186. characterMakers.push(() => makeCharacter(
  50187. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50188. {
  50189. front: {
  50190. height: math.unit(5 + 2/12, "feet"),
  50191. weight: math.unit(110, "lb"),
  50192. name: "Front",
  50193. image: {
  50194. source: "./media/characters/keltre/front.svg",
  50195. extra: 1099/1057,
  50196. bottom: 22/1121
  50197. }
  50198. },
  50199. back: {
  50200. height: math.unit(5 + 2/12, "feet"),
  50201. weight: math.unit(110, "lb"),
  50202. name: "Back",
  50203. image: {
  50204. source: "./media/characters/keltre/back.svg",
  50205. extra: 1095/1053,
  50206. bottom: 17/1112
  50207. }
  50208. },
  50209. dressed: {
  50210. height: math.unit(5 + 2/12, "feet"),
  50211. weight: math.unit(110, "lb"),
  50212. name: "Dressed",
  50213. image: {
  50214. source: "./media/characters/keltre/dressed.svg",
  50215. extra: 1099/1057,
  50216. bottom: 22/1121
  50217. }
  50218. },
  50219. winter: {
  50220. height: math.unit(5 + 2/12, "feet"),
  50221. weight: math.unit(110, "lb"),
  50222. name: "Winter",
  50223. image: {
  50224. source: "./media/characters/keltre/winter.svg",
  50225. extra: 1099/1057,
  50226. bottom: 22/1121
  50227. }
  50228. },
  50229. head: {
  50230. height: math.unit(1.61 * 0.86, "feet"),
  50231. name: "Head",
  50232. image: {
  50233. source: "./media/characters/keltre/head.svg",
  50234. extra: 534/421,
  50235. bottom: 0/534
  50236. }
  50237. },
  50238. hand: {
  50239. height: math.unit(1.3 * 0.86, "feet"),
  50240. name: "Hand",
  50241. image: {
  50242. source: "./media/characters/keltre/hand.svg"
  50243. }
  50244. },
  50245. foot: {
  50246. height: math.unit(1.8 * 0.86, "feet"),
  50247. name: "Foot",
  50248. image: {
  50249. source: "./media/characters/keltre/foot.svg"
  50250. }
  50251. },
  50252. },
  50253. [
  50254. {
  50255. name: "Fine",
  50256. height: math.unit(1, "inch")
  50257. },
  50258. {
  50259. name: "Dimnutive",
  50260. height: math.unit(4, "inches")
  50261. },
  50262. {
  50263. name: "Tiny",
  50264. height: math.unit(1, "foot")
  50265. },
  50266. {
  50267. name: "Small",
  50268. height: math.unit(3, "feet")
  50269. },
  50270. {
  50271. name: "Normal",
  50272. height: math.unit(5 + 2/12, "feet"),
  50273. default: true
  50274. },
  50275. ]
  50276. ))
  50277. characterMakers.push(() => makeCharacter(
  50278. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50279. {
  50280. front: {
  50281. height: math.unit(6 + 2/12, "feet"),
  50282. name: "Front",
  50283. image: {
  50284. source: "./media/characters/nox/front.svg",
  50285. extra: 1917/1830,
  50286. bottom: 74/1991
  50287. }
  50288. },
  50289. back: {
  50290. height: math.unit(6 + 2/12, "feet"),
  50291. name: "Back",
  50292. image: {
  50293. source: "./media/characters/nox/back.svg",
  50294. extra: 1896/1815,
  50295. bottom: 21/1917
  50296. }
  50297. },
  50298. head: {
  50299. height: math.unit(1.1, "feet"),
  50300. name: "Head",
  50301. image: {
  50302. source: "./media/characters/nox/head.svg",
  50303. extra: 874/704,
  50304. bottom: 0/874
  50305. }
  50306. },
  50307. tattoo: {
  50308. height: math.unit(0.729, "feet"),
  50309. name: "Tattoo",
  50310. image: {
  50311. source: "./media/characters/nox/tattoo.svg"
  50312. }
  50313. },
  50314. },
  50315. [
  50316. {
  50317. name: "Normal",
  50318. height: math.unit(6 + 2/12, "feet")
  50319. },
  50320. {
  50321. name: "Gigamacro",
  50322. height: math.unit(2, "earths"),
  50323. default: true
  50324. },
  50325. {
  50326. name: "Cosmic",
  50327. height: math.unit(867, "yottameters")
  50328. },
  50329. ]
  50330. ))
  50331. characterMakers.push(() => makeCharacter(
  50332. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50333. {
  50334. front: {
  50335. height: math.unit(6, "feet"),
  50336. weight: math.unit(150, "lb"),
  50337. name: "Front",
  50338. image: {
  50339. source: "./media/characters/caspian/front.svg",
  50340. extra: 1443/1359,
  50341. bottom: 0/1443
  50342. }
  50343. },
  50344. back: {
  50345. height: math.unit(6, "feet"),
  50346. weight: math.unit(150, "lb"),
  50347. name: "Back",
  50348. image: {
  50349. source: "./media/characters/caspian/back.svg",
  50350. extra: 1379/1309,
  50351. bottom: 0/1379
  50352. }
  50353. },
  50354. head: {
  50355. height: math.unit(0.9, "feet"),
  50356. name: "Head",
  50357. image: {
  50358. source: "./media/characters/caspian/head.svg",
  50359. extra: 692/492,
  50360. bottom: 0/692
  50361. }
  50362. },
  50363. headAlt: {
  50364. height: math.unit(0.95, "feet"),
  50365. name: "Head (Alt)",
  50366. image: {
  50367. source: "./media/characters/caspian/head-alt.svg",
  50368. extra: 668/508,
  50369. bottom: 0/668
  50370. }
  50371. },
  50372. hand: {
  50373. height: math.unit(0.8, "feet"),
  50374. name: "Hand",
  50375. image: {
  50376. source: "./media/characters/caspian/hand.svg"
  50377. }
  50378. },
  50379. paw: {
  50380. height: math.unit(0.95, "feet"),
  50381. name: "Paw",
  50382. image: {
  50383. source: "./media/characters/caspian/paw.svg"
  50384. }
  50385. },
  50386. },
  50387. [
  50388. {
  50389. name: "Normal",
  50390. height: math.unit(162, "feet"),
  50391. default: true
  50392. },
  50393. ]
  50394. ))
  50395. characterMakers.push(() => makeCharacter(
  50396. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50397. {
  50398. front: {
  50399. height: math.unit(6, "feet"),
  50400. name: "Front",
  50401. image: {
  50402. source: "./media/characters/myra-aisling/front.svg",
  50403. extra: 1268/1166,
  50404. bottom: 73/1341
  50405. }
  50406. },
  50407. back: {
  50408. height: math.unit(6, "feet"),
  50409. name: "Back",
  50410. image: {
  50411. source: "./media/characters/myra-aisling/back.svg",
  50412. extra: 1249/1149,
  50413. bottom: 79/1328
  50414. }
  50415. },
  50416. dressed: {
  50417. height: math.unit(6, "feet"),
  50418. name: "Dressed",
  50419. image: {
  50420. source: "./media/characters/myra-aisling/dressed.svg",
  50421. extra: 1290/1189,
  50422. bottom: 47/1337
  50423. }
  50424. },
  50425. hand: {
  50426. height: math.unit(1.1, "feet"),
  50427. name: "Hand",
  50428. image: {
  50429. source: "./media/characters/myra-aisling/hand.svg"
  50430. }
  50431. },
  50432. paw: {
  50433. height: math.unit(1.23, "feet"),
  50434. name: "Paw",
  50435. image: {
  50436. source: "./media/characters/myra-aisling/paw.svg"
  50437. }
  50438. },
  50439. },
  50440. [
  50441. {
  50442. name: "Normal",
  50443. height: math.unit(160, "feet"),
  50444. default: true
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(6, "feet"),
  50453. name: "Front",
  50454. image: {
  50455. source: "./media/characters/tenley-sidero/front.svg",
  50456. extra: 1365/1276,
  50457. bottom: 47/1412
  50458. }
  50459. },
  50460. back: {
  50461. height: math.unit(6, "feet"),
  50462. name: "Back",
  50463. image: {
  50464. source: "./media/characters/tenley-sidero/back.svg",
  50465. extra: 1383/1283,
  50466. bottom: 35/1418
  50467. }
  50468. },
  50469. dressed: {
  50470. height: math.unit(6, "feet"),
  50471. name: "Dressed",
  50472. image: {
  50473. source: "./media/characters/tenley-sidero/dressed.svg",
  50474. extra: 1364/1275,
  50475. bottom: 42/1406
  50476. }
  50477. },
  50478. head: {
  50479. height: math.unit(1.47, "feet"),
  50480. name: "Head",
  50481. image: {
  50482. source: "./media/characters/tenley-sidero/head.svg",
  50483. extra: 610/490,
  50484. bottom: 0/610
  50485. }
  50486. },
  50487. },
  50488. [
  50489. {
  50490. name: "Normal",
  50491. height: math.unit(154, "feet"),
  50492. default: true
  50493. },
  50494. ]
  50495. ))
  50496. characterMakers.push(() => makeCharacter(
  50497. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50498. {
  50499. front: {
  50500. height: math.unit(5, "inches"),
  50501. name: "Front",
  50502. image: {
  50503. source: "./media/characters/mallory/front.svg",
  50504. extra: 1919/1678,
  50505. bottom: 29/1948
  50506. }
  50507. },
  50508. hand: {
  50509. height: math.unit(0.73, "inches"),
  50510. name: "Hand",
  50511. image: {
  50512. source: "./media/characters/mallory/hand.svg"
  50513. }
  50514. },
  50515. paw: {
  50516. height: math.unit(0.68, "inches"),
  50517. name: "Paw",
  50518. image: {
  50519. source: "./media/characters/mallory/paw.svg"
  50520. }
  50521. },
  50522. },
  50523. [
  50524. {
  50525. name: "Small",
  50526. height: math.unit(5, "inches"),
  50527. default: true
  50528. },
  50529. ]
  50530. ))
  50531. characterMakers.push(() => makeCharacter(
  50532. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50533. {
  50534. naked: {
  50535. height: math.unit(6, "feet"),
  50536. name: "Naked",
  50537. image: {
  50538. source: "./media/characters/mab/naked.svg",
  50539. extra: 1855/1757,
  50540. bottom: 208/2063
  50541. }
  50542. },
  50543. outside: {
  50544. height: math.unit(6, "feet"),
  50545. name: "Outside",
  50546. image: {
  50547. source: "./media/characters/mab/outside.svg",
  50548. extra: 1855/1757,
  50549. bottom: 208/2063
  50550. }
  50551. },
  50552. party: {
  50553. height: math.unit(6, "feet"),
  50554. name: "Party",
  50555. image: {
  50556. source: "./media/characters/mab/party.svg",
  50557. extra: 1855/1757,
  50558. bottom: 208/2063
  50559. }
  50560. },
  50561. },
  50562. [
  50563. {
  50564. name: "Normal",
  50565. height: math.unit(165, "feet"),
  50566. default: true
  50567. },
  50568. ]
  50569. ))
  50570. characterMakers.push(() => makeCharacter(
  50571. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50572. {
  50573. feral: {
  50574. height: math.unit(12, "feet"),
  50575. weight: math.unit(20000, "lb"),
  50576. name: "Side",
  50577. image: {
  50578. source: "./media/characters/winter/feral.svg",
  50579. extra: 1286/943,
  50580. bottom: 112/1398
  50581. },
  50582. form: "feral",
  50583. default: true
  50584. },
  50585. feralNsfw: {
  50586. height: math.unit(12, "feet"),
  50587. weight: math.unit(20000, "lb"),
  50588. name: "Side (NSFW)",
  50589. image: {
  50590. source: "./media/characters/winter/feral-nsfw.svg",
  50591. extra: 1286/943,
  50592. bottom: 112/1398
  50593. },
  50594. form: "feral"
  50595. },
  50596. dick: {
  50597. height: math.unit(3.79, "feet"),
  50598. name: "Dick",
  50599. image: {
  50600. source: "./media/characters/winter/dick.svg"
  50601. },
  50602. form: "feral"
  50603. },
  50604. anthro: {
  50605. height: math.unit(12, "feet"),
  50606. weight: math.unit(10, "tons"),
  50607. name: "Anthro",
  50608. image: {
  50609. source: "./media/characters/winter/anthro.svg",
  50610. extra: 1701/1553,
  50611. bottom: 64/1765
  50612. },
  50613. form: "anthro",
  50614. default: true
  50615. },
  50616. },
  50617. [
  50618. {
  50619. name: "Big",
  50620. height: math.unit(12, "feet"),
  50621. default: true,
  50622. form: "feral"
  50623. },
  50624. {
  50625. name: "Big",
  50626. height: math.unit(12, "feet"),
  50627. default: true,
  50628. form: "anthro"
  50629. },
  50630. ],
  50631. {
  50632. "feral": {
  50633. name: "Feral",
  50634. default: true
  50635. },
  50636. "anthro": {
  50637. name: "Anthro"
  50638. }
  50639. }
  50640. ))
  50641. characterMakers.push(() => makeCharacter(
  50642. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50643. {
  50644. front: {
  50645. height: math.unit(4.1, "inches"),
  50646. name: "Front",
  50647. image: {
  50648. source: "./media/characters/alto/front.svg",
  50649. extra: 736/627,
  50650. bottom: 90/826
  50651. }
  50652. },
  50653. },
  50654. [
  50655. {
  50656. name: "Normal",
  50657. height: math.unit(4.1, "inches"),
  50658. default: true
  50659. },
  50660. ]
  50661. ))
  50662. characterMakers.push(() => makeCharacter(
  50663. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50664. {
  50665. sitting: {
  50666. height: math.unit(3, "feet"),
  50667. name: "Sitting",
  50668. image: {
  50669. source: "./media/characters/ratstrid-v/sitting.svg",
  50670. extra: 355/310,
  50671. bottom: 136/491
  50672. }
  50673. },
  50674. },
  50675. [
  50676. {
  50677. name: "Normal",
  50678. height: math.unit(3, "feet"),
  50679. default: true
  50680. },
  50681. ]
  50682. ))
  50683. characterMakers.push(() => makeCharacter(
  50684. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50685. {
  50686. back: {
  50687. height: math.unit(6, "feet"),
  50688. weight: math.unit(450, "lb"),
  50689. name: "Back",
  50690. image: {
  50691. source: "./media/characters/siz/back.svg",
  50692. extra: 1449/1274,
  50693. bottom: 13/1462
  50694. }
  50695. },
  50696. },
  50697. [
  50698. {
  50699. name: "Smallest",
  50700. height: math.unit(18 + 3/12, "feet")
  50701. },
  50702. {
  50703. name: "Modest",
  50704. height: math.unit(56 + 8/12, "feet"),
  50705. default: true
  50706. },
  50707. {
  50708. name: "Largest",
  50709. height: math.unit(3590, "feet")
  50710. },
  50711. ]
  50712. ))
  50713. characterMakers.push(() => makeCharacter(
  50714. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50715. {
  50716. front: {
  50717. height: math.unit(5 + 9/12, "feet"),
  50718. weight: math.unit(150, "lb"),
  50719. name: "Front",
  50720. image: {
  50721. source: "./media/characters/ven/front.svg",
  50722. extra: 1372/1320,
  50723. bottom: 73/1445
  50724. }
  50725. },
  50726. side: {
  50727. height: math.unit(5 + 9/12, "feet"),
  50728. weight: math.unit(1150, "lb"),
  50729. name: "Side",
  50730. image: {
  50731. source: "./media/characters/ven/side.svg",
  50732. extra: 1119/1070,
  50733. bottom: 42/1161
  50734. },
  50735. default: true
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Normal",
  50741. height: math.unit(5 + 9/12, "feet"),
  50742. default: true
  50743. },
  50744. ]
  50745. ))
  50746. characterMakers.push(() => makeCharacter(
  50747. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50748. {
  50749. front: {
  50750. height: math.unit(12, "feet"),
  50751. weight: math.unit(1000, "kg"),
  50752. name: "Front",
  50753. image: {
  50754. source: "./media/characters/maple/front.svg",
  50755. extra: 1193/1081,
  50756. bottom: 22/1215
  50757. }
  50758. },
  50759. },
  50760. [
  50761. {
  50762. name: "Compressed",
  50763. height: math.unit(7, "feet")
  50764. },
  50765. {
  50766. name: "Normal",
  50767. height: math.unit(12, "feet"),
  50768. default: true
  50769. },
  50770. ]
  50771. ))
  50772. characterMakers.push(() => makeCharacter(
  50773. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50774. {
  50775. front: {
  50776. height: math.unit(9, "feet"),
  50777. weight: math.unit(1500, "lb"),
  50778. name: "Front",
  50779. image: {
  50780. source: "./media/characters/nora/front.svg",
  50781. extra: 1348/1286,
  50782. bottom: 218/1566
  50783. }
  50784. },
  50785. erect: {
  50786. height: math.unit(9, "feet"),
  50787. weight: math.unit(11500, "lb"),
  50788. name: "Erect",
  50789. image: {
  50790. source: "./media/characters/nora/erect.svg",
  50791. extra: 1488/1433,
  50792. bottom: 133/1621
  50793. }
  50794. },
  50795. },
  50796. [
  50797. {
  50798. name: "Normal",
  50799. height: math.unit(9, "feet"),
  50800. default: true
  50801. },
  50802. ]
  50803. ))
  50804. characterMakers.push(() => makeCharacter(
  50805. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50806. {
  50807. front: {
  50808. height: math.unit(25, "feet"),
  50809. weight: math.unit(27500, "lb"),
  50810. name: "Front",
  50811. image: {
  50812. source: "./media/characters/north-caudin/front.svg",
  50813. extra: 1184/1082,
  50814. bottom: 23/1207
  50815. }
  50816. },
  50817. },
  50818. [
  50819. {
  50820. name: "Compressed",
  50821. height: math.unit(10, "feet")
  50822. },
  50823. {
  50824. name: "Normal",
  50825. height: math.unit(25, "feet"),
  50826. default: true
  50827. },
  50828. ]
  50829. ))
  50830. characterMakers.push(() => makeCharacter(
  50831. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50832. {
  50833. front: {
  50834. height: math.unit(9, "feet"),
  50835. weight: math.unit(1250, "lb"),
  50836. name: "Front",
  50837. image: {
  50838. source: "./media/characters/merrian/front.svg",
  50839. extra: 2393/2304,
  50840. bottom: 40/2433
  50841. }
  50842. },
  50843. },
  50844. [
  50845. {
  50846. name: "Normal",
  50847. height: math.unit(9, "feet"),
  50848. default: true
  50849. },
  50850. ]
  50851. ))
  50852. characterMakers.push(() => makeCharacter(
  50853. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50854. {
  50855. front: {
  50856. height: math.unit(9, "feet"),
  50857. weight: math.unit(1000, "lb"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/hazel/front.svg",
  50861. extra: 2351/2298,
  50862. bottom: 38/2389
  50863. }
  50864. },
  50865. },
  50866. [
  50867. {
  50868. name: "Normal",
  50869. height: math.unit(9, "feet"),
  50870. default: true
  50871. },
  50872. ]
  50873. ))
  50874. characterMakers.push(() => makeCharacter(
  50875. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50876. {
  50877. front: {
  50878. height: math.unit(13, "feet"),
  50879. weight: math.unit(3200, "lb"),
  50880. name: "Front",
  50881. image: {
  50882. source: "./media/characters/emma/front.svg",
  50883. extra: 2263/2029,
  50884. bottom: 68/2331
  50885. }
  50886. },
  50887. },
  50888. [
  50889. {
  50890. name: "Normal",
  50891. height: math.unit(13, "feet"),
  50892. default: true
  50893. },
  50894. ]
  50895. ))
  50896. characterMakers.push(() => makeCharacter(
  50897. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50898. {
  50899. front: {
  50900. height: math.unit(11 + 9/12, "feet"),
  50901. weight: math.unit(2500, "lb"),
  50902. name: "Front",
  50903. image: {
  50904. source: "./media/characters/ilumina/front.svg",
  50905. extra: 2248/2209,
  50906. bottom: 164/2412
  50907. }
  50908. },
  50909. },
  50910. [
  50911. {
  50912. name: "Normal",
  50913. height: math.unit(11 + 9/12, "feet"),
  50914. default: true
  50915. },
  50916. ]
  50917. ))
  50918. characterMakers.push(() => makeCharacter(
  50919. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50920. {
  50921. front: {
  50922. height: math.unit(8 + 10/12, "feet"),
  50923. weight: math.unit(1350, "lb"),
  50924. name: "Front",
  50925. image: {
  50926. source: "./media/characters/moonshine/front.svg",
  50927. extra: 2395/2288,
  50928. bottom: 40/2435
  50929. }
  50930. },
  50931. },
  50932. [
  50933. {
  50934. name: "Normal",
  50935. height: math.unit(8 + 10/12, "feet"),
  50936. default: true
  50937. },
  50938. ]
  50939. ))
  50940. characterMakers.push(() => makeCharacter(
  50941. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50942. {
  50943. front: {
  50944. height: math.unit(14, "feet"),
  50945. weight: math.unit(3400, "lb"),
  50946. name: "Front",
  50947. image: {
  50948. source: "./media/characters/aletia/front.svg",
  50949. extra: 1185/1052,
  50950. bottom: 21/1206
  50951. }
  50952. },
  50953. },
  50954. [
  50955. {
  50956. name: "Compressed",
  50957. height: math.unit(8, "feet")
  50958. },
  50959. {
  50960. name: "Normal",
  50961. height: math.unit(14, "feet"),
  50962. default: true
  50963. },
  50964. ]
  50965. ))
  50966. characterMakers.push(() => makeCharacter(
  50967. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50968. {
  50969. front: {
  50970. height: math.unit(17, "feet"),
  50971. weight: math.unit(6500, "lb"),
  50972. name: "Front",
  50973. image: {
  50974. source: "./media/characters/deidra/front.svg",
  50975. extra: 1201/1081,
  50976. bottom: 16/1217
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Compressed",
  50983. height: math.unit(9 + 6/12, "feet")
  50984. },
  50985. {
  50986. name: "Normal",
  50987. height: math.unit(17, "feet"),
  50988. default: true
  50989. },
  50990. ]
  50991. ))
  50992. characterMakers.push(() => makeCharacter(
  50993. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50994. {
  50995. front: {
  50996. height: math.unit(7 + 4/12, "feet"),
  50997. weight: math.unit(280, "lb"),
  50998. name: "Front",
  50999. image: {
  51000. source: "./media/characters/freki-yrmori/front.svg",
  51001. extra: 1286/1182,
  51002. bottom: 29/1315
  51003. }
  51004. },
  51005. maw: {
  51006. height: math.unit(0.9, "feet"),
  51007. name: "Maw",
  51008. image: {
  51009. source: "./media/characters/freki-yrmori/maw.svg"
  51010. }
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(7 + 4/12, "feet"),
  51017. default: true
  51018. },
  51019. {
  51020. name: "Macro",
  51021. height: math.unit(38.5, "meters")
  51022. },
  51023. ]
  51024. ))
  51025. characterMakers.push(() => makeCharacter(
  51026. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51027. {
  51028. side: {
  51029. height: math.unit(47.2, "meters"),
  51030. weight: math.unit(10000, "tons"),
  51031. name: "Side",
  51032. image: {
  51033. source: "./media/characters/aetherios/side.svg",
  51034. extra: 2363/642,
  51035. bottom: 221/2584
  51036. }
  51037. },
  51038. top: {
  51039. height: math.unit(240, "meters"),
  51040. weight: math.unit(10000, "tons"),
  51041. name: "Top",
  51042. image: {
  51043. source: "./media/characters/aetherios/top.svg"
  51044. }
  51045. },
  51046. bottom: {
  51047. height: math.unit(240, "meters"),
  51048. weight: math.unit(10000, "tons"),
  51049. name: "Bottom",
  51050. image: {
  51051. source: "./media/characters/aetherios/bottom.svg"
  51052. }
  51053. },
  51054. head: {
  51055. height: math.unit(38.6, "meters"),
  51056. name: "Head",
  51057. image: {
  51058. source: "./media/characters/aetherios/head.svg",
  51059. extra: 1335/1112,
  51060. bottom: 0/1335
  51061. }
  51062. },
  51063. front: {
  51064. height: math.unit(29, "meters"),
  51065. name: "Front",
  51066. image: {
  51067. source: "./media/characters/aetherios/front.svg",
  51068. extra: 1266/953,
  51069. bottom: 158/1424
  51070. }
  51071. },
  51072. maw: {
  51073. height: math.unit(16.37, "meters"),
  51074. name: "Maw",
  51075. image: {
  51076. source: "./media/characters/aetherios/maw.svg",
  51077. extra: 748/637,
  51078. bottom: 0/748
  51079. },
  51080. extraAttributes: {
  51081. preyCapacity: {
  51082. name: "Capacity",
  51083. power: 3,
  51084. type: "volume",
  51085. base: math.unit(1000, "people")
  51086. },
  51087. tongueSize: {
  51088. name: "Tongue Size",
  51089. power: 2,
  51090. type: "area",
  51091. base: math.unit(21, "m^2")
  51092. }
  51093. }
  51094. },
  51095. forepaw: {
  51096. height: math.unit(18, "meters"),
  51097. name: "Forepaw",
  51098. image: {
  51099. source: "./media/characters/aetherios/forepaw.svg"
  51100. }
  51101. },
  51102. hindpaw: {
  51103. height: math.unit(23, "meters"),
  51104. name: "Hindpaw",
  51105. image: {
  51106. source: "./media/characters/aetherios/hindpaw.svg"
  51107. }
  51108. },
  51109. genitals: {
  51110. height: math.unit(42, "meters"),
  51111. name: "Genitals",
  51112. image: {
  51113. source: "./media/characters/aetherios/genitals.svg"
  51114. }
  51115. },
  51116. },
  51117. [
  51118. {
  51119. name: "Normal",
  51120. height: math.unit(47.2, "meters"),
  51121. default: true
  51122. },
  51123. {
  51124. name: "Macro",
  51125. height: math.unit(160, "meters")
  51126. },
  51127. {
  51128. name: "Mega",
  51129. height: math.unit(1.87, "km")
  51130. },
  51131. {
  51132. name: "Giga",
  51133. height: math.unit(40000, "km")
  51134. },
  51135. {
  51136. name: "Stellar",
  51137. height: math.unit(158000000, "km")
  51138. },
  51139. {
  51140. name: "Cosmic",
  51141. height: math.unit(9.46e12, "km")
  51142. },
  51143. ]
  51144. ))
  51145. characterMakers.push(() => makeCharacter(
  51146. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51147. {
  51148. front: {
  51149. height: math.unit(5 + 4/12, "feet"),
  51150. weight: math.unit(80, "lb"),
  51151. name: "Front",
  51152. image: {
  51153. source: "./media/characters/mizu-gieeg/front.svg",
  51154. extra: 850/709,
  51155. bottom: 52/902
  51156. }
  51157. },
  51158. back: {
  51159. height: math.unit(5 + 4/12, "feet"),
  51160. weight: math.unit(80, "lb"),
  51161. name: "Back",
  51162. image: {
  51163. source: "./media/characters/mizu-gieeg/back.svg",
  51164. extra: 882/745,
  51165. bottom: 25/907
  51166. }
  51167. },
  51168. },
  51169. [
  51170. {
  51171. name: "Normal",
  51172. height: math.unit(5 + 4/12, "feet"),
  51173. default: true
  51174. },
  51175. ]
  51176. ))
  51177. characterMakers.push(() => makeCharacter(
  51178. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51179. {
  51180. front: {
  51181. height: math.unit(6, "feet"),
  51182. name: "Front",
  51183. image: {
  51184. source: "./media/characters/roselle-st-papier/front.svg",
  51185. extra: 1430/1280,
  51186. bottom: 37/1467
  51187. }
  51188. },
  51189. back: {
  51190. height: math.unit(6, "feet"),
  51191. name: "Back",
  51192. image: {
  51193. source: "./media/characters/roselle-st-papier/back.svg",
  51194. extra: 1491/1296,
  51195. bottom: 23/1514
  51196. }
  51197. },
  51198. ear: {
  51199. height: math.unit(1.26, "feet"),
  51200. name: "Ear",
  51201. image: {
  51202. source: "./media/characters/roselle-st-papier/ear.svg"
  51203. }
  51204. },
  51205. },
  51206. [
  51207. {
  51208. name: "Normal",
  51209. height: math.unit(150, "feet"),
  51210. default: true
  51211. },
  51212. ]
  51213. ))
  51214. characterMakers.push(() => makeCharacter(
  51215. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51216. {
  51217. front: {
  51218. height: math.unit(1, "inches"),
  51219. name: "Front",
  51220. image: {
  51221. source: "./media/characters/valargent/front.svg",
  51222. extra: 1825/1694,
  51223. bottom: 62/1887
  51224. }
  51225. },
  51226. back: {
  51227. height: math.unit(1, "inches"),
  51228. name: "Back",
  51229. image: {
  51230. source: "./media/characters/valargent/back.svg",
  51231. extra: 1775/1682,
  51232. bottom: 88/1863
  51233. }
  51234. },
  51235. },
  51236. [
  51237. {
  51238. name: "Micro",
  51239. height: math.unit(1, "inch"),
  51240. default: true
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51246. {
  51247. front: {
  51248. height: math.unit(3.4, "meters"),
  51249. name: "Front",
  51250. image: {
  51251. source: "./media/characters/zarina/front.svg",
  51252. extra: 1733/1425,
  51253. bottom: 93/1826
  51254. }
  51255. },
  51256. squatting: {
  51257. height: math.unit(2.14, "meters"),
  51258. name: "Squatting",
  51259. image: {
  51260. source: "./media/characters/zarina/squatting.svg",
  51261. extra: 1073/788,
  51262. bottom: 63/1136
  51263. }
  51264. },
  51265. back: {
  51266. height: math.unit(2.14, "meters"),
  51267. name: "Back",
  51268. image: {
  51269. source: "./media/characters/zarina/back.svg",
  51270. extra: 1128/885,
  51271. bottom: 0/1128
  51272. }
  51273. },
  51274. },
  51275. [
  51276. {
  51277. name: "Normal",
  51278. height: math.unit(3.4, "meters"),
  51279. default: true
  51280. },
  51281. {
  51282. name: "Big",
  51283. height: math.unit(5, "meters")
  51284. },
  51285. {
  51286. name: "Macro",
  51287. height: math.unit(110, "meters")
  51288. },
  51289. ]
  51290. ))
  51291. characterMakers.push(() => makeCharacter(
  51292. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51293. {
  51294. front: {
  51295. height: math.unit(7, "feet"),
  51296. name: "Front",
  51297. image: {
  51298. source: "./media/characters/ventus-astro-fox/front.svg",
  51299. extra: 1792/1623,
  51300. bottom: 28/1820
  51301. }
  51302. },
  51303. back: {
  51304. height: math.unit(7, "feet"),
  51305. name: "Back",
  51306. image: {
  51307. source: "./media/characters/ventus-astro-fox/back.svg",
  51308. extra: 1789/1620,
  51309. bottom: 31/1820
  51310. }
  51311. },
  51312. outfit: {
  51313. height: math.unit(7, "feet"),
  51314. name: "Outfit",
  51315. image: {
  51316. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51317. extra: 1054/925,
  51318. bottom: 15/1069
  51319. }
  51320. },
  51321. head: {
  51322. height: math.unit(1.12, "feet"),
  51323. name: "Head",
  51324. image: {
  51325. source: "./media/characters/ventus-astro-fox/head.svg",
  51326. extra: 866/504,
  51327. bottom: 0/866
  51328. }
  51329. },
  51330. hand: {
  51331. height: math.unit(1, "feet"),
  51332. name: "Hand",
  51333. image: {
  51334. source: "./media/characters/ventus-astro-fox/hand.svg"
  51335. }
  51336. },
  51337. paw: {
  51338. height: math.unit(1.5, "feet"),
  51339. name: "Paw",
  51340. image: {
  51341. source: "./media/characters/ventus-astro-fox/paw.svg"
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(7, "feet"),
  51349. default: true
  51350. },
  51351. {
  51352. name: "Macro",
  51353. height: math.unit(200, "feet")
  51354. },
  51355. {
  51356. name: "Cosmic",
  51357. height: math.unit(3, "universes")
  51358. },
  51359. ]
  51360. ))
  51361. characterMakers.push(() => makeCharacter(
  51362. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51363. {
  51364. front: {
  51365. height: math.unit(3, "meters"),
  51366. weight: math.unit(7000, "lb"),
  51367. name: "Front",
  51368. image: {
  51369. source: "./media/characters/core-t/front.svg",
  51370. extra: 5729/4941,
  51371. bottom: 1129/6858
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Big",
  51378. height: math.unit(3, "meters"),
  51379. default: true
  51380. },
  51381. ]
  51382. ))
  51383. characterMakers.push(() => makeCharacter(
  51384. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51385. {
  51386. normal: {
  51387. height: math.unit(6 + 6/12, "feet"),
  51388. weight: math.unit(275, "lb"),
  51389. name: "Front",
  51390. image: {
  51391. source: "./media/characters/cadbunny/normal.svg",
  51392. extra: 1129/947,
  51393. bottom: 93/1222
  51394. },
  51395. default: true,
  51396. form: "normal"
  51397. },
  51398. gigantamax: {
  51399. height: math.unit(26, "feet"),
  51400. weight: math.unit(16000, "lb"),
  51401. name: "Front",
  51402. image: {
  51403. source: "./media/characters/cadbunny/gigantamax.svg",
  51404. extra: 1133/944,
  51405. bottom: 90/1223
  51406. },
  51407. default: true,
  51408. form: "gigantamax"
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Normal",
  51414. height: math.unit(6 + 6/12, "feet"),
  51415. default: true,
  51416. form: "normal"
  51417. },
  51418. {
  51419. name: "Small",
  51420. height: math.unit(26, "feet"),
  51421. default: true,
  51422. form: "gigantamax"
  51423. },
  51424. {
  51425. name: "Large",
  51426. height: math.unit(78, "feet"),
  51427. form: "gigantamax"
  51428. },
  51429. ],
  51430. {
  51431. "normal": {
  51432. name: "Normal",
  51433. default: true
  51434. },
  51435. "gigantamax": {
  51436. name: "Gigantamax"
  51437. }
  51438. }
  51439. ))
  51440. characterMakers.push(() => makeCharacter(
  51441. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51442. {
  51443. anthroFront: {
  51444. height: math.unit(8, "feet"),
  51445. weight: math.unit(300, "lb"),
  51446. name: "Front",
  51447. image: {
  51448. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51449. extra: 1272/1176,
  51450. bottom: 53/1325
  51451. },
  51452. form: "anthro",
  51453. default: true
  51454. },
  51455. feralSide: {
  51456. height: math.unit(4, "feet"),
  51457. weight: math.unit(250, "lb"),
  51458. name: "Side",
  51459. image: {
  51460. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51461. extra: 731/621,
  51462. bottom: 0/731
  51463. },
  51464. form: "feral",
  51465. default: true
  51466. },
  51467. },
  51468. [
  51469. {
  51470. name: "Regular",
  51471. height: math.unit(8, "feet"),
  51472. form: "anthro"
  51473. },
  51474. {
  51475. name: "Macro",
  51476. height: math.unit(250, "feet"),
  51477. form: "anthro",
  51478. default: true
  51479. },
  51480. {
  51481. name: "Regular",
  51482. height: math.unit(4, "feet"),
  51483. form: "feral"
  51484. },
  51485. {
  51486. name: "Macro",
  51487. height: math.unit(125, "feet"),
  51488. form: "feral",
  51489. default: true
  51490. },
  51491. ],
  51492. {
  51493. "anthro": {
  51494. name: "Anthro",
  51495. default: true
  51496. },
  51497. "feral": {
  51498. name: "Feral",
  51499. },
  51500. }
  51501. ))
  51502. characterMakers.push(() => makeCharacter(
  51503. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51504. {
  51505. front: {
  51506. height: math.unit(11 + 10/12, "feet"),
  51507. weight: math.unit(1587, "kg"),
  51508. name: "Front",
  51509. image: {
  51510. source: "./media/characters/maple-javira-dragon/front.svg",
  51511. extra: 1136/744,
  51512. bottom: 73/1209
  51513. }
  51514. },
  51515. side: {
  51516. height: math.unit(11 + 10/12, "feet"),
  51517. weight: math.unit(1587, "kg"),
  51518. name: "Side",
  51519. image: {
  51520. source: "./media/characters/maple-javira-dragon/side.svg",
  51521. extra: 712/505,
  51522. bottom: 17/729
  51523. }
  51524. },
  51525. head: {
  51526. height: math.unit(8.05, "feet"),
  51527. name: "Head",
  51528. image: {
  51529. source: "./media/characters/maple-javira-dragon/head.svg",
  51530. extra: 1420/1344,
  51531. bottom: 0/1420
  51532. }
  51533. },
  51534. },
  51535. [
  51536. {
  51537. name: "Normal",
  51538. height: math.unit(11 + 10/12, "feet"),
  51539. default: true
  51540. },
  51541. ]
  51542. ))
  51543. characterMakers.push(() => makeCharacter(
  51544. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51545. {
  51546. front: {
  51547. height: math.unit(117, "cm"),
  51548. weight: math.unit(50, "kg"),
  51549. name: "Front",
  51550. image: {
  51551. source: "./media/characters/sonia-wyverntail/front.svg",
  51552. extra: 708/592,
  51553. bottom: 25/733
  51554. }
  51555. },
  51556. },
  51557. [
  51558. {
  51559. name: "Normal",
  51560. height: math.unit(117, "cm"),
  51561. default: true
  51562. },
  51563. ]
  51564. ))
  51565. characterMakers.push(() => makeCharacter(
  51566. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51567. {
  51568. front: {
  51569. height: math.unit(6 + 5/12, "feet"),
  51570. name: "Front",
  51571. image: {
  51572. source: "./media/characters/micah/front.svg",
  51573. extra: 1758/1546,
  51574. bottom: 214/1972
  51575. }
  51576. },
  51577. },
  51578. [
  51579. {
  51580. name: "Normal",
  51581. height: math.unit(6 + 5/12, "feet"),
  51582. default: true
  51583. },
  51584. ]
  51585. ))
  51586. characterMakers.push(() => makeCharacter(
  51587. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51588. {
  51589. front: {
  51590. height: math.unit(1.75, "meters"),
  51591. weight: math.unit(100, "kg"),
  51592. name: "Front",
  51593. image: {
  51594. source: "./media/characters/zarya/front.svg",
  51595. extra: 741/735,
  51596. bottom: 44/785
  51597. },
  51598. extraAttributes: {
  51599. "tailLength": {
  51600. name: "Tail Length",
  51601. power: 1,
  51602. type: "length",
  51603. base: math.unit(180, "cm")
  51604. },
  51605. "pawLength": {
  51606. name: "Paw Length",
  51607. power: 1,
  51608. type: "length",
  51609. base: math.unit(31, "cm")
  51610. },
  51611. }
  51612. },
  51613. side: {
  51614. height: math.unit(1.75, "meters"),
  51615. weight: math.unit(100, "kg"),
  51616. name: "Side",
  51617. image: {
  51618. source: "./media/characters/zarya/side.svg",
  51619. extra: 776/770,
  51620. bottom: 17/793
  51621. },
  51622. extraAttributes: {
  51623. "tailLength": {
  51624. name: "Tail Length",
  51625. power: 1,
  51626. type: "length",
  51627. base: math.unit(180, "cm")
  51628. },
  51629. "pawLength": {
  51630. name: "Paw Length",
  51631. power: 1,
  51632. type: "length",
  51633. base: math.unit(31, "cm")
  51634. },
  51635. }
  51636. },
  51637. back: {
  51638. height: math.unit(1.75, "meters"),
  51639. weight: math.unit(100, "kg"),
  51640. name: "Back",
  51641. image: {
  51642. source: "./media/characters/zarya/back.svg",
  51643. extra: 741/735,
  51644. bottom: 44/785
  51645. },
  51646. extraAttributes: {
  51647. "tailLength": {
  51648. name: "Tail Length",
  51649. power: 1,
  51650. type: "length",
  51651. base: math.unit(180, "cm")
  51652. },
  51653. "pawLength": {
  51654. name: "Paw Length",
  51655. power: 1,
  51656. type: "length",
  51657. base: math.unit(31, "cm")
  51658. },
  51659. }
  51660. },
  51661. frontNoTail: {
  51662. height: math.unit(1.75, "meters"),
  51663. weight: math.unit(100, "kg"),
  51664. name: "Front (No Tail)",
  51665. image: {
  51666. source: "./media/characters/zarya/front-no-tail.svg",
  51667. extra: 741/735,
  51668. bottom: 44/785
  51669. },
  51670. extraAttributes: {
  51671. "tailLength": {
  51672. name: "Tail Length",
  51673. power: 1,
  51674. type: "length",
  51675. base: math.unit(180, "cm")
  51676. },
  51677. "pawLength": {
  51678. name: "Paw Length",
  51679. power: 1,
  51680. type: "length",
  51681. base: math.unit(31, "cm")
  51682. },
  51683. }
  51684. },
  51685. dressed: {
  51686. height: math.unit(1.75, "meters"),
  51687. weight: math.unit(100, "kg"),
  51688. name: "Dressed",
  51689. image: {
  51690. source: "./media/characters/zarya/dressed.svg",
  51691. extra: 683/672,
  51692. bottom: 79/762
  51693. },
  51694. extraAttributes: {
  51695. "tailLength": {
  51696. name: "Tail Length",
  51697. power: 1,
  51698. type: "length",
  51699. base: math.unit(180, "cm")
  51700. },
  51701. "pawLength": {
  51702. name: "Paw Length",
  51703. power: 1,
  51704. type: "length",
  51705. base: math.unit(31, "cm")
  51706. },
  51707. }
  51708. },
  51709. },
  51710. [
  51711. {
  51712. name: "Micro",
  51713. height: math.unit(5, "cm")
  51714. },
  51715. {
  51716. name: "Normal",
  51717. height: math.unit(1.75, "meters"),
  51718. default: true
  51719. },
  51720. {
  51721. name: "Macro",
  51722. height: math.unit(122, "meters")
  51723. },
  51724. ]
  51725. ))
  51726. characterMakers.push(() => makeCharacter(
  51727. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51728. {
  51729. front: {
  51730. height: math.unit(7.5, "feet"),
  51731. name: "Front",
  51732. image: {
  51733. source: "./media/characters/sven-hatisson/front.svg",
  51734. extra: 917/857,
  51735. bottom: 42/959
  51736. }
  51737. },
  51738. back: {
  51739. height: math.unit(7.5, "feet"),
  51740. name: "Back",
  51741. image: {
  51742. source: "./media/characters/sven-hatisson/back.svg",
  51743. extra: 903/856,
  51744. bottom: 15/918
  51745. }
  51746. },
  51747. },
  51748. [
  51749. {
  51750. name: "Base Height",
  51751. height: math.unit(7.5, "feet")
  51752. },
  51753. {
  51754. name: "Usual Height",
  51755. height: math.unit(13.5, "feet"),
  51756. default: true
  51757. },
  51758. {
  51759. name: "Smaller Macro",
  51760. height: math.unit(85, "feet")
  51761. },
  51762. {
  51763. name: "Moderate Macro",
  51764. height: math.unit(320, "feet")
  51765. },
  51766. {
  51767. name: "Large Macro",
  51768. height: math.unit(1000, "feet")
  51769. },
  51770. {
  51771. name: "Largest Size",
  51772. height: math.unit(2, "miles")
  51773. },
  51774. ]
  51775. ))
  51776. characterMakers.push(() => makeCharacter(
  51777. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51778. {
  51779. side: {
  51780. height: math.unit(1.8, "meters"),
  51781. weight: math.unit(275, "kg"),
  51782. name: "Side",
  51783. image: {
  51784. source: "./media/characters/terra/side.svg",
  51785. extra: 1273/1147,
  51786. bottom: 0/1273
  51787. }
  51788. },
  51789. },
  51790. [
  51791. {
  51792. name: "Normal",
  51793. height: math.unit(16.2, "meters"),
  51794. default: true
  51795. },
  51796. ]
  51797. ))
  51798. characterMakers.push(() => makeCharacter(
  51799. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51800. {
  51801. borzoiFront: {
  51802. height: math.unit(6 + 9/12, "feet"),
  51803. name: "Front",
  51804. image: {
  51805. source: "./media/characters/rae/borzoi-front.svg",
  51806. extra: 1161/1098,
  51807. bottom: 31/1192
  51808. },
  51809. form: "borzoi",
  51810. default: true
  51811. },
  51812. werewolfFront: {
  51813. height: math.unit(8 + 7/12, "feet"),
  51814. name: "Front",
  51815. image: {
  51816. source: "./media/characters/rae/werewolf-front.svg",
  51817. extra: 1411/1334,
  51818. bottom: 127/1538
  51819. },
  51820. form: "werewolf",
  51821. default: true
  51822. },
  51823. },
  51824. [
  51825. {
  51826. name: "Normal",
  51827. height: math.unit(6 + 9/12, "feet"),
  51828. default: true,
  51829. form: "borzoi"
  51830. },
  51831. {
  51832. name: "Normal",
  51833. height: math.unit(8 + 7/12, "feet"),
  51834. default: true,
  51835. form: "werewolf"
  51836. },
  51837. ],
  51838. {
  51839. "borzoi": {
  51840. name: "Borzoi",
  51841. default: true
  51842. },
  51843. "werewolf": {
  51844. name: "Werewolf",
  51845. },
  51846. }
  51847. ))
  51848. characterMakers.push(() => makeCharacter(
  51849. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51850. {
  51851. front: {
  51852. height: math.unit(8 + 7/12, "feet"),
  51853. weight: math.unit(482, "lb"),
  51854. name: "Front",
  51855. image: {
  51856. source: "./media/characters/kit/front.svg",
  51857. extra: 1247/1103,
  51858. bottom: 41/1288
  51859. }
  51860. },
  51861. back: {
  51862. height: math.unit(8 + 7/12, "feet"),
  51863. weight: math.unit(482, "lb"),
  51864. name: "Back",
  51865. image: {
  51866. source: "./media/characters/kit/back.svg",
  51867. extra: 1252/1123,
  51868. bottom: 21/1273
  51869. }
  51870. },
  51871. paw: {
  51872. height: math.unit(1.46, "feet"),
  51873. name: "Paw",
  51874. image: {
  51875. source: "./media/characters/kit/paw.svg"
  51876. }
  51877. },
  51878. },
  51879. [
  51880. {
  51881. name: "Normal",
  51882. height: math.unit(2.61, "meters"),
  51883. default: true
  51884. },
  51885. {
  51886. name: "\"Tall\"",
  51887. height: math.unit(8.21, "meters")
  51888. },
  51889. {
  51890. name: "Tall",
  51891. height: math.unit(19.6, "meters")
  51892. },
  51893. {
  51894. name: "Very Tall",
  51895. height: math.unit(57.91, "meters")
  51896. },
  51897. {
  51898. name: "Semi-Macro",
  51899. height: math.unit(138.64, "meters")
  51900. },
  51901. {
  51902. name: "Macro",
  51903. height: math.unit(831.99, "meters")
  51904. },
  51905. {
  51906. name: "EX-Macro",
  51907. height: math.unit(96451121, "meters")
  51908. },
  51909. {
  51910. name: "S1-Omnipotent",
  51911. height: math.unit(4.42074e+9, "meters")
  51912. },
  51913. {
  51914. name: "S2-Omnipotent",
  51915. height: math.unit(9.42074e+17, "meters")
  51916. },
  51917. {
  51918. name: "Omnipotent",
  51919. height: math.unit(4.23112e+24, "meters")
  51920. },
  51921. {
  51922. name: "Hypergod",
  51923. height: math.unit(5.05176e+27, "meters")
  51924. },
  51925. {
  51926. name: "Hypergod-EX",
  51927. height: math.unit(9.45532e+49, "meters")
  51928. },
  51929. {
  51930. name: "Hypergod-SP",
  51931. height: math.unit(9.45532e+195, "meters")
  51932. },
  51933. ]
  51934. ))
  51935. characterMakers.push(() => makeCharacter(
  51936. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51937. {
  51938. side: {
  51939. height: math.unit(0.6, "meters"),
  51940. weight: math.unit(24, "kg"),
  51941. name: "Side",
  51942. image: {
  51943. source: "./media/characters/celeste/side.svg",
  51944. extra: 810/517,
  51945. bottom: 53/863
  51946. }
  51947. },
  51948. },
  51949. [
  51950. {
  51951. name: "Velociraptor",
  51952. height: math.unit(0.6, "meters"),
  51953. default: true
  51954. },
  51955. {
  51956. name: "Utahraptor",
  51957. height: math.unit(1.8, "meters")
  51958. },
  51959. {
  51960. name: "Gallimimus",
  51961. height: math.unit(4.0, "meters")
  51962. },
  51963. {
  51964. name: "Large",
  51965. height: math.unit(20, "meters")
  51966. },
  51967. {
  51968. name: "Planetary",
  51969. height: math.unit(50, "megameters")
  51970. },
  51971. {
  51972. name: "Stellar",
  51973. height: math.unit(1.5, "gigameters")
  51974. },
  51975. {
  51976. name: "Galactic",
  51977. height: math.unit(100, "exameters")
  51978. },
  51979. ]
  51980. ))
  51981. characterMakers.push(() => makeCharacter(
  51982. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51983. {
  51984. front: {
  51985. height: math.unit(6, "feet"),
  51986. weight: math.unit(210, "lb"),
  51987. name: "Front",
  51988. image: {
  51989. source: "./media/characters/glacia/front.svg",
  51990. extra: 958/901,
  51991. bottom: 45/1003
  51992. }
  51993. },
  51994. },
  51995. [
  51996. {
  51997. name: "Macro",
  51998. height: math.unit(1000, "meters"),
  51999. default: true
  52000. },
  52001. ]
  52002. ))
  52003. characterMakers.push(() => makeCharacter(
  52004. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52005. {
  52006. front: {
  52007. height: math.unit(4, "meters"),
  52008. name: "Front",
  52009. image: {
  52010. source: "./media/characters/giri/front.svg",
  52011. extra: 966/894,
  52012. bottom: 21/987
  52013. }
  52014. },
  52015. },
  52016. [
  52017. {
  52018. name: "Normal",
  52019. height: math.unit(4, "meters"),
  52020. default: true
  52021. },
  52022. ]
  52023. ))
  52024. characterMakers.push(() => makeCharacter(
  52025. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52026. {
  52027. back: {
  52028. height: math.unit(4, "feet"),
  52029. weight: math.unit(37, "lb"),
  52030. name: "Back",
  52031. image: {
  52032. source: "./media/characters/tin/back.svg",
  52033. extra: 845/780,
  52034. bottom: 28/873
  52035. }
  52036. },
  52037. },
  52038. [
  52039. {
  52040. name: "Normal",
  52041. height: math.unit(4, "feet"),
  52042. default: true
  52043. },
  52044. ]
  52045. ))
  52046. characterMakers.push(() => makeCharacter(
  52047. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52048. {
  52049. front: {
  52050. height: math.unit(25, "feet"),
  52051. name: "Front",
  52052. image: {
  52053. source: "./media/characters/cadenza-vivace/front.svg",
  52054. extra: 1842/1578,
  52055. bottom: 30/1872
  52056. }
  52057. },
  52058. },
  52059. [
  52060. {
  52061. name: "Macro",
  52062. height: math.unit(25, "feet"),
  52063. default: true
  52064. },
  52065. ]
  52066. ))
  52067. characterMakers.push(() => makeCharacter(
  52068. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52069. {
  52070. front: {
  52071. height: math.unit(10, "feet"),
  52072. weight: math.unit(625, "kg"),
  52073. name: "Front",
  52074. image: {
  52075. source: "./media/characters/zain/front.svg",
  52076. extra: 1682/1498,
  52077. bottom: 223/1905
  52078. }
  52079. },
  52080. back: {
  52081. height: math.unit(10, "feet"),
  52082. weight: math.unit(625, "kg"),
  52083. name: "Back",
  52084. image: {
  52085. source: "./media/characters/zain/back.svg",
  52086. extra: 1814/1657,
  52087. bottom: 152/1966
  52088. }
  52089. },
  52090. head: {
  52091. height: math.unit(10, "feet"),
  52092. weight: math.unit(625, "kg"),
  52093. name: "Head",
  52094. image: {
  52095. source: "./media/characters/zain/head.svg",
  52096. extra: 1059/762,
  52097. bottom: 0/1059
  52098. }
  52099. },
  52100. },
  52101. [
  52102. {
  52103. name: "Normal",
  52104. height: math.unit(10, "feet"),
  52105. default: true
  52106. },
  52107. ]
  52108. ))
  52109. characterMakers.push(() => makeCharacter(
  52110. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52111. {
  52112. front: {
  52113. height: math.unit(6 + 5/12, "feet"),
  52114. weight: math.unit(750, "lb"),
  52115. name: "Front",
  52116. image: {
  52117. source: "./media/characters/ruchex/front.svg",
  52118. extra: 877/820,
  52119. bottom: 17/894
  52120. },
  52121. extraAttributes: {
  52122. "width": {
  52123. name: "Width",
  52124. power: 1,
  52125. type: "length",
  52126. base: math.unit(4.757, "feet")
  52127. },
  52128. }
  52129. },
  52130. },
  52131. [
  52132. {
  52133. name: "Normal",
  52134. height: math.unit(6 + 5/12, "feet"),
  52135. default: true
  52136. },
  52137. ]
  52138. ))
  52139. characterMakers.push(() => makeCharacter(
  52140. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52141. {
  52142. dressedFront: {
  52143. height: math.unit(191, "cm"),
  52144. weight: math.unit(80, "kg"),
  52145. name: "Front",
  52146. image: {
  52147. source: "./media/characters/buster/dressed-front.svg",
  52148. extra: 1022/973,
  52149. bottom: 69/1091
  52150. }
  52151. },
  52152. dressedBack: {
  52153. height: math.unit(191, "cm"),
  52154. weight: math.unit(80, "kg"),
  52155. name: "Back",
  52156. image: {
  52157. source: "./media/characters/buster/dressed-back.svg",
  52158. extra: 1018/970,
  52159. bottom: 55/1073
  52160. }
  52161. },
  52162. nudeFront: {
  52163. height: math.unit(191, "cm"),
  52164. weight: math.unit(80, "kg"),
  52165. name: "Front (Nude)",
  52166. image: {
  52167. source: "./media/characters/buster/nude-front.svg",
  52168. extra: 1022/973,
  52169. bottom: 69/1091
  52170. }
  52171. },
  52172. nudeBack: {
  52173. height: math.unit(191, "cm"),
  52174. weight: math.unit(80, "kg"),
  52175. name: "Back (Nude)",
  52176. image: {
  52177. source: "./media/characters/buster/nude-back.svg",
  52178. extra: 1018/970,
  52179. bottom: 55/1073
  52180. }
  52181. },
  52182. dick: {
  52183. height: math.unit(2.59, "feet"),
  52184. name: "Dick",
  52185. image: {
  52186. source: "./media/characters/buster/dick.svg"
  52187. }
  52188. },
  52189. ass: {
  52190. height: math.unit(1.2, "feet"),
  52191. name: "Ass",
  52192. image: {
  52193. source: "./media/characters/buster/ass.svg"
  52194. }
  52195. },
  52196. },
  52197. [
  52198. {
  52199. name: "Normal",
  52200. height: math.unit(191, "cm"),
  52201. default: true
  52202. },
  52203. ]
  52204. ))
  52205. characterMakers.push(() => makeCharacter(
  52206. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52207. {
  52208. side: {
  52209. height: math.unit(8.1, "feet"),
  52210. weight: math.unit(3500, "lb"),
  52211. name: "Side",
  52212. image: {
  52213. source: "./media/characters/sonya/side.svg",
  52214. extra: 1730/1317,
  52215. bottom: 86/1816
  52216. }
  52217. },
  52218. },
  52219. [
  52220. {
  52221. name: "Normal",
  52222. height: math.unit(8.1, "feet"),
  52223. default: true
  52224. },
  52225. ]
  52226. ))
  52227. characterMakers.push(() => makeCharacter(
  52228. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52229. {
  52230. front: {
  52231. height: math.unit(6, "feet"),
  52232. weight: math.unit(150, "lb"),
  52233. name: "Front",
  52234. image: {
  52235. source: "./media/characters/cadence-andrysiak/front.svg",
  52236. extra: 1164/1121,
  52237. bottom: 60/1224
  52238. }
  52239. },
  52240. back: {
  52241. height: math.unit(6, "feet"),
  52242. weight: math.unit(150, "lb"),
  52243. name: "Back",
  52244. image: {
  52245. source: "./media/characters/cadence-andrysiak/back.svg",
  52246. extra: 1200/1165,
  52247. bottom: 9/1209
  52248. }
  52249. },
  52250. dressed: {
  52251. height: math.unit(6, "feet"),
  52252. weight: math.unit(150, "lb"),
  52253. name: "Dressed",
  52254. image: {
  52255. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52256. extra: 1164/1121,
  52257. bottom: 60/1224
  52258. }
  52259. },
  52260. },
  52261. [
  52262. {
  52263. name: "Micro",
  52264. height: math.unit(1, "mm")
  52265. },
  52266. {
  52267. name: "Normal",
  52268. height: math.unit(6, "feet"),
  52269. default: true
  52270. },
  52271. ]
  52272. ))
  52273. characterMakers.push(() => makeCharacter(
  52274. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52275. {
  52276. front: {
  52277. height: math.unit(60, "inches"),
  52278. weight: math.unit(16, "lb"),
  52279. preyCapacity: math.unit(80, "liters"),
  52280. name: "Front",
  52281. image: {
  52282. source: "./media/characters/penny-lynx/front.svg",
  52283. extra: 1959/1769,
  52284. bottom: 49/2008
  52285. }
  52286. },
  52287. },
  52288. [
  52289. {
  52290. name: "Nokia",
  52291. height: math.unit(2, "inches")
  52292. },
  52293. {
  52294. name: "Desktop",
  52295. height: math.unit(24, "inches")
  52296. },
  52297. {
  52298. name: "TV",
  52299. height: math.unit(60, "inches")
  52300. },
  52301. {
  52302. name: "Jumbotron",
  52303. height: math.unit(12, "feet")
  52304. },
  52305. {
  52306. name: "Billboard",
  52307. height: math.unit(48, "feet"),
  52308. default: true
  52309. },
  52310. {
  52311. name: "IMAX",
  52312. height: math.unit(96, "feet")
  52313. },
  52314. {
  52315. name: "SINGULARITY",
  52316. height: math.unit(864938, "miles")
  52317. },
  52318. ]
  52319. ))
  52320. characterMakers.push(() => makeCharacter(
  52321. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52322. {
  52323. front: {
  52324. height: math.unit(5 + 4/12, "feet"),
  52325. weight: math.unit(230, "lb"),
  52326. name: "Front",
  52327. image: {
  52328. source: "./media/characters/sukebe/front.svg",
  52329. extra: 2130/2038,
  52330. bottom: 90/2220
  52331. }
  52332. },
  52333. back: {
  52334. height: math.unit(3.48, "feet"),
  52335. weight: math.unit(230, "lb"),
  52336. name: "Back",
  52337. image: {
  52338. source: "./media/characters/sukebe/back.svg",
  52339. extra: 1670/1604,
  52340. bottom: 0/1670
  52341. }
  52342. },
  52343. },
  52344. [
  52345. {
  52346. name: "Normal",
  52347. height: math.unit(5 + 4/12, "feet"),
  52348. default: true
  52349. },
  52350. ]
  52351. ))
  52352. characterMakers.push(() => makeCharacter(
  52353. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52354. {
  52355. front: {
  52356. height: math.unit(6, "feet"),
  52357. name: "Front",
  52358. image: {
  52359. source: "./media/characters/nylla/front.svg",
  52360. extra: 1868/1699,
  52361. bottom: 97/1965
  52362. }
  52363. },
  52364. back: {
  52365. height: math.unit(6, "feet"),
  52366. name: "Back",
  52367. image: {
  52368. source: "./media/characters/nylla/back.svg",
  52369. extra: 1889/1712,
  52370. bottom: 93/1982
  52371. }
  52372. },
  52373. frontNsfw: {
  52374. height: math.unit(6, "feet"),
  52375. name: "Front (NSFW)",
  52376. image: {
  52377. source: "./media/characters/nylla/front-nsfw.svg",
  52378. extra: 1868/1699,
  52379. bottom: 97/1965
  52380. },
  52381. extraAttributes: {
  52382. "dickLength": {
  52383. name: "Dick Length",
  52384. power: 1,
  52385. type: "length",
  52386. base: math.unit(1.4, "feet")
  52387. },
  52388. "cumVolume": {
  52389. name: "Cum Volume",
  52390. power: 3,
  52391. type: "volume",
  52392. base: math.unit(100, "mL")
  52393. },
  52394. }
  52395. },
  52396. backNsfw: {
  52397. height: math.unit(6, "feet"),
  52398. name: "Back (NSFW)",
  52399. image: {
  52400. source: "./media/characters/nylla/back-nsfw.svg",
  52401. extra: 1889/1712,
  52402. bottom: 93/1982
  52403. }
  52404. },
  52405. maw: {
  52406. height: math.unit(2.10, "feet"),
  52407. name: "Maw",
  52408. image: {
  52409. source: "./media/characters/nylla/maw.svg"
  52410. }
  52411. },
  52412. paws: {
  52413. height: math.unit(2.06, "feet"),
  52414. name: "Paws",
  52415. image: {
  52416. source: "./media/characters/nylla/paws.svg"
  52417. }
  52418. },
  52419. muzzle: {
  52420. height: math.unit(0.61, "feet"),
  52421. name: "Muzzle",
  52422. image: {
  52423. source: "./media/characters/nylla/muzzle.svg"
  52424. }
  52425. },
  52426. sheath: {
  52427. height: math.unit(1.305, "feet"),
  52428. name: "Sheath",
  52429. image: {
  52430. source: "./media/characters/nylla/sheath.svg"
  52431. }
  52432. },
  52433. },
  52434. [
  52435. {
  52436. name: "Micro",
  52437. height: math.unit(7.5, "inches")
  52438. },
  52439. {
  52440. name: "Normal",
  52441. height: math.unit(7, "feet"),
  52442. default: true
  52443. },
  52444. {
  52445. name: "Macro",
  52446. height: math.unit(60, "feet")
  52447. },
  52448. {
  52449. name: "Mega",
  52450. height: math.unit(200, "feet")
  52451. },
  52452. ]
  52453. ))
  52454. characterMakers.push(() => makeCharacter(
  52455. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52456. {
  52457. front: {
  52458. height: math.unit(10, "feet"),
  52459. weight: math.unit(2300, "lb"),
  52460. name: "Front",
  52461. image: {
  52462. source: "./media/characters/hunt3r/front.svg",
  52463. extra: 1909/1742,
  52464. bottom: 46/1955
  52465. }
  52466. },
  52467. },
  52468. [
  52469. {
  52470. name: "Normal",
  52471. height: math.unit(10, "feet"),
  52472. default: true
  52473. },
  52474. ]
  52475. ))
  52476. characterMakers.push(() => makeCharacter(
  52477. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52478. {
  52479. dressed: {
  52480. height: math.unit(11, "feet"),
  52481. weight: math.unit(18500, "lb"),
  52482. preyCapacity: math.unit(9, "people"),
  52483. name: "Dressed",
  52484. image: {
  52485. source: "./media/characters/cylphis/dressed.svg",
  52486. extra: 1028/1003,
  52487. bottom: 75/1103
  52488. },
  52489. },
  52490. undressed: {
  52491. height: math.unit(11, "feet"),
  52492. weight: math.unit(18500, "lb"),
  52493. preyCapacity: math.unit(9, "people"),
  52494. name: "Undressed",
  52495. image: {
  52496. source: "./media/characters/cylphis/undressed.svg",
  52497. extra: 1028/1003,
  52498. bottom: 75/1103
  52499. }
  52500. },
  52501. full: {
  52502. height: math.unit(11, "feet"),
  52503. weight: math.unit(18500 + 150*9, "lb"),
  52504. preyCapacity: math.unit(9, "people"),
  52505. name: "Full",
  52506. image: {
  52507. source: "./media/characters/cylphis/full.svg",
  52508. extra: 1028/1003,
  52509. bottom: 75/1103
  52510. }
  52511. },
  52512. },
  52513. [
  52514. {
  52515. name: "Small",
  52516. height: math.unit(8, "feet")
  52517. },
  52518. {
  52519. name: "Normal",
  52520. height: math.unit(11, "feet"),
  52521. default: true
  52522. },
  52523. ]
  52524. ))
  52525. characterMakers.push(() => makeCharacter(
  52526. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52527. {
  52528. front: {
  52529. height: math.unit(2 + 7/12, "feet"),
  52530. name: "Front",
  52531. image: {
  52532. source: "./media/characters/orishan/front.svg",
  52533. extra: 1058/1023,
  52534. bottom: 23/1081
  52535. }
  52536. },
  52537. back: {
  52538. height: math.unit(2 + 7/12, "feet"),
  52539. name: "Back",
  52540. image: {
  52541. source: "./media/characters/orishan/back.svg",
  52542. extra: 1058/1023,
  52543. bottom: 23/1081
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Micro",
  52550. height: math.unit(2, "cm")
  52551. },
  52552. {
  52553. name: "Normal",
  52554. height: math.unit(2 + 7/12, "feet"),
  52555. default: true
  52556. },
  52557. ]
  52558. ))
  52559. characterMakers.push(() => makeCharacter(
  52560. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52561. {
  52562. front: {
  52563. height: math.unit(3, "meters"),
  52564. weight: math.unit(508, "kg"),
  52565. name: "Front",
  52566. image: {
  52567. source: "./media/characters/seranis/front.svg",
  52568. extra: 1478/1454,
  52569. bottom: 41/1519
  52570. }
  52571. },
  52572. },
  52573. [
  52574. {
  52575. name: "Normal",
  52576. height: math.unit(3, "meters"),
  52577. default: true
  52578. },
  52579. {
  52580. name: "Macro",
  52581. height: math.unit(108, "meters")
  52582. },
  52583. {
  52584. name: "Megamacro",
  52585. height: math.unit(1250, "meters")
  52586. },
  52587. ]
  52588. ))
  52589. characterMakers.push(() => makeCharacter(
  52590. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52591. {
  52592. undressed: {
  52593. height: math.unit(5 + 3/12, "feet"),
  52594. name: "Undressed",
  52595. image: {
  52596. source: "./media/characters/ankou/undressed.svg",
  52597. extra: 1301/1213,
  52598. bottom: 87/1388
  52599. }
  52600. },
  52601. dressed: {
  52602. height: math.unit(5 + 3/12, "feet"),
  52603. name: "Dressed",
  52604. image: {
  52605. source: "./media/characters/ankou/dressed.svg",
  52606. extra: 1301/1213,
  52607. bottom: 87/1388
  52608. }
  52609. },
  52610. head: {
  52611. height: math.unit(1.61, "feet"),
  52612. name: "Head",
  52613. image: {
  52614. source: "./media/characters/ankou/head.svg"
  52615. }
  52616. },
  52617. },
  52618. [
  52619. {
  52620. name: "Normal",
  52621. height: math.unit(5 + 3/12, "feet"),
  52622. default: true
  52623. },
  52624. ]
  52625. ))
  52626. characterMakers.push(() => makeCharacter(
  52627. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52628. {
  52629. side: {
  52630. height: math.unit(6 + 3/12, "feet"),
  52631. weight: math.unit(200, "kg"),
  52632. name: "Side",
  52633. image: {
  52634. source: "./media/characters/juniper-skunktaur/side.svg",
  52635. extra: 1574/1229,
  52636. bottom: 38/1612
  52637. }
  52638. },
  52639. front: {
  52640. height: math.unit(6 + 3/12, "feet"),
  52641. weight: math.unit(200, "kg"),
  52642. name: "Front",
  52643. image: {
  52644. source: "./media/characters/juniper-skunktaur/front.svg",
  52645. extra: 1337/1278,
  52646. bottom: 22/1359
  52647. }
  52648. },
  52649. back: {
  52650. height: math.unit(6 + 3/12, "feet"),
  52651. weight: math.unit(200, "kg"),
  52652. name: "Back",
  52653. image: {
  52654. source: "./media/characters/juniper-skunktaur/back.svg",
  52655. extra: 1618/1273,
  52656. bottom: 13/1631
  52657. }
  52658. },
  52659. top: {
  52660. height: math.unit(2.62, "feet"),
  52661. weight: math.unit(200, "kg"),
  52662. name: "Top",
  52663. image: {
  52664. source: "./media/characters/juniper-skunktaur/top.svg"
  52665. }
  52666. },
  52667. },
  52668. [
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(6 + 3/12, "feet"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(20.5, "feet"),
  52681. name: "Front",
  52682. image: {
  52683. source: "./media/characters/rei/front.svg",
  52684. extra: 1349/1195,
  52685. bottom: 31/1380
  52686. }
  52687. },
  52688. back: {
  52689. height: math.unit(20.5, "feet"),
  52690. name: "Back",
  52691. image: {
  52692. source: "./media/characters/rei/back.svg",
  52693. extra: 1358/1204,
  52694. bottom: 22/1380
  52695. }
  52696. },
  52697. pawsDigi: {
  52698. height: math.unit(3.45, "feet"),
  52699. name: "Paws (Digi)",
  52700. image: {
  52701. source: "./media/characters/rei/paws-digi.svg"
  52702. }
  52703. },
  52704. pawsPlanti: {
  52705. height: math.unit(3.45, "feet"),
  52706. name: "Paws (Planti)",
  52707. image: {
  52708. source: "./media/characters/rei/paws-planti.svg"
  52709. }
  52710. },
  52711. },
  52712. [
  52713. {
  52714. name: "Normal",
  52715. height: math.unit(20.5, "feet"),
  52716. default: true
  52717. },
  52718. ]
  52719. ))
  52720. characterMakers.push(() => makeCharacter(
  52721. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52722. {
  52723. front: {
  52724. height: math.unit(5 + 11/12, "feet"),
  52725. name: "Front",
  52726. image: {
  52727. source: "./media/characters/carina/front.svg",
  52728. extra: 1720/1449,
  52729. bottom: 14/1734
  52730. }
  52731. },
  52732. back: {
  52733. height: math.unit(5 + 11/12, "feet"),
  52734. name: "Back",
  52735. image: {
  52736. source: "./media/characters/carina/back.svg",
  52737. extra: 1493/1445,
  52738. bottom: 17/1510
  52739. }
  52740. },
  52741. paw: {
  52742. height: math.unit(0.92, "feet"),
  52743. name: "Paw",
  52744. image: {
  52745. source: "./media/characters/carina/paw.svg"
  52746. }
  52747. },
  52748. },
  52749. [
  52750. {
  52751. name: "Normal",
  52752. height: math.unit(5 + 11/12, "feet"),
  52753. default: true
  52754. },
  52755. ]
  52756. ))
  52757. characterMakers.push(() => makeCharacter(
  52758. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52759. {
  52760. normal_front: {
  52761. height: math.unit(4.88, "meters"),
  52762. name: "Front",
  52763. image: {
  52764. source: "./media/characters/maya/normal-front.svg",
  52765. extra: 1222/1145,
  52766. bottom: 57/1279
  52767. },
  52768. form: "normal",
  52769. default: true
  52770. },
  52771. monstrous_front: {
  52772. height: math.unit(10, "meters"),
  52773. name: "Front",
  52774. image: {
  52775. source: "./media/characters/maya/monstrous-front.svg",
  52776. extra: 1523/1109,
  52777. bottom: 113/1636
  52778. },
  52779. form: "monstrous",
  52780. extraAttributes: {
  52781. "swallowSize": {
  52782. name: "Tailmaw Bite Size",
  52783. power: 3,
  52784. type: "volume",
  52785. base: math.unit(43000, "liters")
  52786. },
  52787. }
  52788. },
  52789. taur_front: {
  52790. height: math.unit(10, "meters"),
  52791. name: "Front",
  52792. image: {
  52793. source: "./media/characters/maya/taur-front.svg",
  52794. extra: 743/506,
  52795. bottom: 101/844
  52796. },
  52797. form: "taur",
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Normal",
  52803. height: math.unit(4.88, "meters"),
  52804. default: true,
  52805. form: "normal"
  52806. },
  52807. {
  52808. name: "Macro",
  52809. height: math.unit(38.1, "meters"),
  52810. form: "normal"
  52811. },
  52812. {
  52813. name: "Macro+",
  52814. height: math.unit(152.4, "meters"),
  52815. form: "normal"
  52816. },
  52817. {
  52818. name: "Macro++",
  52819. height: math.unit(16.09, "km"),
  52820. form: "normal"
  52821. },
  52822. {
  52823. name: "Mega-macro",
  52824. height: math.unit(700, "megameters"),
  52825. form: "normal"
  52826. },
  52827. {
  52828. name: "Satiated",
  52829. height: math.unit(10, "meters"),
  52830. default: true,
  52831. form: "monstrous"
  52832. },
  52833. {
  52834. name: "Hungry",
  52835. height: math.unit(75, "meters"),
  52836. form: "monstrous"
  52837. },
  52838. {
  52839. name: "Ravenous",
  52840. height: math.unit(500, "meters"),
  52841. form: "monstrous"
  52842. },
  52843. {
  52844. name: "\"Normal\"",
  52845. height: math.unit(10, "meters"),
  52846. form: "taur"
  52847. },
  52848. {
  52849. name: "Macro",
  52850. height: math.unit(50, "meters"),
  52851. form: "taur"
  52852. },
  52853. ],
  52854. {
  52855. "normal": {
  52856. name: "Normal",
  52857. default: true
  52858. },
  52859. "monstrous": {
  52860. name: "Monstrous",
  52861. },
  52862. "taur": {
  52863. name: "Taur",
  52864. },
  52865. }
  52866. ))
  52867. characterMakers.push(() => makeCharacter(
  52868. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52869. {
  52870. front: {
  52871. height: math.unit(6 + 2/12, "feet"),
  52872. weight: math.unit(500, "lb"),
  52873. preyCapacity: math.unit(4, "people"),
  52874. name: "Front",
  52875. image: {
  52876. source: "./media/characters/yepir/front.svg"
  52877. }
  52878. },
  52879. side: {
  52880. height: math.unit(6 + 2/12, "feet"),
  52881. weight: math.unit(500, "lb"),
  52882. preyCapacity: math.unit(4, "people"),
  52883. name: "Side",
  52884. image: {
  52885. source: "./media/characters/yepir/side.svg"
  52886. }
  52887. },
  52888. paw: {
  52889. height: math.unit(1.05, "feet"),
  52890. name: "Paw",
  52891. image: {
  52892. source: "./media/characters/yepir/paw.svg"
  52893. }
  52894. },
  52895. },
  52896. [
  52897. {
  52898. name: "Normal",
  52899. height: math.unit(6 + 2/12, "feet"),
  52900. default: true
  52901. },
  52902. ]
  52903. ))
  52904. characterMakers.push(() => makeCharacter(
  52905. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52906. {
  52907. front: {
  52908. height: math.unit(5 + 4/12, "feet"),
  52909. name: "Front",
  52910. image: {
  52911. source: "./media/characters/russec/front.svg",
  52912. extra: 1926/1626,
  52913. bottom: 72/1998
  52914. }
  52915. },
  52916. back: {
  52917. height: math.unit(5 + 4/12, "feet"),
  52918. name: "Back",
  52919. image: {
  52920. source: "./media/characters/russec/back.svg",
  52921. extra: 1910/1591,
  52922. bottom: 48/1958
  52923. }
  52924. },
  52925. },
  52926. [
  52927. {
  52928. name: "Small",
  52929. height: math.unit(5 + 4/12, "feet")
  52930. },
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(72, "feet"),
  52934. default: true
  52935. },
  52936. ]
  52937. ))
  52938. characterMakers.push(() => makeCharacter(
  52939. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52940. {
  52941. side: {
  52942. height: math.unit(12, "feet"),
  52943. name: "Side",
  52944. image: {
  52945. source: "./media/characters/cianus/side.svg",
  52946. extra: 808/526,
  52947. bottom: 61/869
  52948. }
  52949. },
  52950. },
  52951. [
  52952. {
  52953. name: "Normal",
  52954. height: math.unit(12, "feet"),
  52955. default: true
  52956. },
  52957. ]
  52958. ))
  52959. characterMakers.push(() => makeCharacter(
  52960. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52961. {
  52962. front: {
  52963. height: math.unit(9 + 6/12, "feet"),
  52964. weight: math.unit(300, "lb"),
  52965. name: "Front",
  52966. image: {
  52967. source: "./media/characters/ahab/front.svg",
  52968. extra: 1897/1868,
  52969. bottom: 121/2018
  52970. }
  52971. },
  52972. frontNsfw: {
  52973. height: math.unit(9 + 6/12, "feet"),
  52974. weight: math.unit(300, "lb"),
  52975. name: "Front-nsfw",
  52976. image: {
  52977. source: "./media/characters/ahab/front-nsfw.svg",
  52978. extra: 1897/1868,
  52979. bottom: 121/2018
  52980. }
  52981. },
  52982. },
  52983. [
  52984. {
  52985. name: "Normal",
  52986. height: math.unit(9 + 6/12, "feet")
  52987. },
  52988. {
  52989. name: "Macro",
  52990. height: math.unit(657, "feet"),
  52991. default: true
  52992. },
  52993. ]
  52994. ))
  52995. characterMakers.push(() => makeCharacter(
  52996. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52997. {
  52998. front: {
  52999. height: math.unit(2.69, "meters"),
  53000. weight: math.unit(132, "kg"),
  53001. name: "Front",
  53002. image: {
  53003. source: "./media/characters/aarkus/front.svg",
  53004. extra: 1400/1231,
  53005. bottom: 34/1434
  53006. }
  53007. },
  53008. back: {
  53009. height: math.unit(2.69, "meters"),
  53010. weight: math.unit(132, "kg"),
  53011. name: "Back",
  53012. image: {
  53013. source: "./media/characters/aarkus/back.svg",
  53014. extra: 1381/1218,
  53015. bottom: 30/1411
  53016. }
  53017. },
  53018. frontNsfw: {
  53019. height: math.unit(2.69, "meters"),
  53020. weight: math.unit(132, "kg"),
  53021. name: "Front (NSFW)",
  53022. image: {
  53023. source: "./media/characters/aarkus/front-nsfw.svg",
  53024. extra: 1400/1231,
  53025. bottom: 34/1434
  53026. }
  53027. },
  53028. foot: {
  53029. height: math.unit(1.45, "feet"),
  53030. name: "Foot",
  53031. image: {
  53032. source: "./media/characters/aarkus/foot.svg"
  53033. }
  53034. },
  53035. head: {
  53036. height: math.unit(2.85, "feet"),
  53037. name: "Head",
  53038. image: {
  53039. source: "./media/characters/aarkus/head.svg"
  53040. }
  53041. },
  53042. headAlt: {
  53043. height: math.unit(3.07, "feet"),
  53044. name: "Head (Alt)",
  53045. image: {
  53046. source: "./media/characters/aarkus/head-alt.svg"
  53047. }
  53048. },
  53049. mouth: {
  53050. height: math.unit(1.25, "feet"),
  53051. name: "Mouth",
  53052. image: {
  53053. source: "./media/characters/aarkus/mouth.svg"
  53054. }
  53055. },
  53056. dick: {
  53057. height: math.unit(1.77, "feet"),
  53058. name: "Dick",
  53059. image: {
  53060. source: "./media/characters/aarkus/dick.svg"
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Normal",
  53067. height: math.unit(2.69, "meters"),
  53068. default: true
  53069. },
  53070. {
  53071. name: "Macro",
  53072. height: math.unit(269, "meters")
  53073. },
  53074. {
  53075. name: "Macro+",
  53076. height: math.unit(672.5, "meters")
  53077. },
  53078. {
  53079. name: "Megamacro",
  53080. height: math.unit(2.017, "km")
  53081. },
  53082. ]
  53083. ))
  53084. characterMakers.push(() => makeCharacter(
  53085. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53086. {
  53087. front: {
  53088. height: math.unit(23.47, "cm"),
  53089. weight: math.unit(600, "grams"),
  53090. name: "Front",
  53091. image: {
  53092. source: "./media/characters/diode/front.svg",
  53093. extra: 1778/1396,
  53094. bottom: 95/1873
  53095. }
  53096. },
  53097. side: {
  53098. height: math.unit(23.47, "cm"),
  53099. weight: math.unit(600, "grams"),
  53100. name: "Side",
  53101. image: {
  53102. source: "./media/characters/diode/side.svg",
  53103. extra: 1831/1404,
  53104. bottom: 86/1917
  53105. }
  53106. },
  53107. wings: {
  53108. height: math.unit(0.683, "feet"),
  53109. name: "Wings",
  53110. image: {
  53111. source: "./media/characters/diode/wings.svg"
  53112. }
  53113. },
  53114. },
  53115. [
  53116. {
  53117. name: "Normal",
  53118. height: math.unit(23.47, "cm"),
  53119. default: true
  53120. },
  53121. ]
  53122. ))
  53123. characterMakers.push(() => makeCharacter(
  53124. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53125. {
  53126. front: {
  53127. height: math.unit(6 + 3/12, "feet"),
  53128. weight: math.unit(250, "lb"),
  53129. name: "Front",
  53130. image: {
  53131. source: "./media/characters/reika/front.svg",
  53132. extra: 1120/1078,
  53133. bottom: 86/1206
  53134. }
  53135. },
  53136. },
  53137. [
  53138. {
  53139. name: "Normal",
  53140. height: math.unit(6 + 3/12, "feet"),
  53141. default: true
  53142. },
  53143. ]
  53144. ))
  53145. characterMakers.push(() => makeCharacter(
  53146. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53147. {
  53148. front: {
  53149. height: math.unit(16 + 8/12, "feet"),
  53150. weight: math.unit(9000, "lb"),
  53151. name: "Front",
  53152. image: {
  53153. source: "./media/characters/lokuto-takama/front.svg",
  53154. extra: 1774/1632,
  53155. bottom: 147/1921
  53156. },
  53157. extraAttributes: {
  53158. "bustWidth": {
  53159. name: "Bust Width",
  53160. power: 1,
  53161. type: "length",
  53162. base: math.unit(2.4, "meters")
  53163. },
  53164. "breastWeight": {
  53165. name: "Breast Weight",
  53166. power: 3,
  53167. type: "mass",
  53168. base: math.unit(1000, "kg")
  53169. },
  53170. }
  53171. },
  53172. },
  53173. [
  53174. {
  53175. name: "Normal",
  53176. height: math.unit(16 + 8/12, "feet"),
  53177. default: true
  53178. },
  53179. ]
  53180. ))
  53181. characterMakers.push(() => makeCharacter(
  53182. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53183. {
  53184. front: {
  53185. height: math.unit(10, "cm"),
  53186. weight: math.unit(850, "grams"),
  53187. name: "Front",
  53188. image: {
  53189. source: "./media/characters/owak-bone/front.svg",
  53190. extra: 1965/1801,
  53191. bottom: 31/1996
  53192. }
  53193. },
  53194. },
  53195. [
  53196. {
  53197. name: "Normal",
  53198. height: math.unit(10, "cm"),
  53199. default: true
  53200. },
  53201. ]
  53202. ))
  53203. characterMakers.push(() => makeCharacter(
  53204. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53205. {
  53206. front: {
  53207. height: math.unit(2 + 6/12, "feet"),
  53208. weight: math.unit(9, "lb"),
  53209. name: "Front",
  53210. image: {
  53211. source: "./media/characters/muffin/front.svg",
  53212. extra: 1220/1195,
  53213. bottom: 84/1304
  53214. }
  53215. },
  53216. },
  53217. [
  53218. {
  53219. name: "Normal",
  53220. height: math.unit(2 + 6/12, "feet"),
  53221. default: true
  53222. },
  53223. ]
  53224. ))
  53225. characterMakers.push(() => makeCharacter(
  53226. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53227. {
  53228. front: {
  53229. height: math.unit(7, "feet"),
  53230. name: "Front",
  53231. image: {
  53232. source: "./media/characters/chimera/front.svg",
  53233. extra: 1752/1614,
  53234. bottom: 68/1820
  53235. }
  53236. },
  53237. },
  53238. [
  53239. {
  53240. name: "Normal",
  53241. height: math.unit(7, "feet")
  53242. },
  53243. {
  53244. name: "Gigamacro",
  53245. height: math.unit(2.9, "gigameters"),
  53246. default: true
  53247. },
  53248. {
  53249. name: "Universal",
  53250. height: math.unit(1.56e26, "yottameters")
  53251. },
  53252. ]
  53253. ))
  53254. characterMakers.push(() => makeCharacter(
  53255. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53256. {
  53257. front: {
  53258. height: math.unit(3, "feet"),
  53259. weight: math.unit(20, "lb"),
  53260. name: "Front",
  53261. image: {
  53262. source: "./media/characters/kit-fennec-fox/front.svg",
  53263. extra: 1027/932,
  53264. bottom: 16/1043
  53265. }
  53266. },
  53267. back: {
  53268. height: math.unit(3, "feet"),
  53269. weight: math.unit(20, "lb"),
  53270. name: "Back",
  53271. image: {
  53272. source: "./media/characters/kit-fennec-fox/back.svg",
  53273. extra: 1027/932,
  53274. bottom: 16/1043
  53275. }
  53276. },
  53277. },
  53278. [
  53279. {
  53280. name: "Normal",
  53281. height: math.unit(3, "feet"),
  53282. default: true
  53283. },
  53284. ]
  53285. ))
  53286. characterMakers.push(() => makeCharacter(
  53287. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53288. {
  53289. front: {
  53290. height: math.unit(167, "cm"),
  53291. name: "Front",
  53292. image: {
  53293. source: "./media/characters/blue-otter/front.svg",
  53294. extra: 1951/1920,
  53295. bottom: 31/1982
  53296. }
  53297. },
  53298. },
  53299. [
  53300. {
  53301. name: "Otter-Sized",
  53302. height: math.unit(100, "cm")
  53303. },
  53304. {
  53305. name: "Normal",
  53306. height: math.unit(167, "cm"),
  53307. default: true
  53308. },
  53309. ]
  53310. ))
  53311. characterMakers.push(() => makeCharacter(
  53312. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53313. {
  53314. front: {
  53315. height: math.unit(4 + 4/12, "feet"),
  53316. name: "Front",
  53317. image: {
  53318. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53319. extra: 1072/1067,
  53320. bottom: 117/1189
  53321. }
  53322. },
  53323. back: {
  53324. height: math.unit(4 + 4/12, "feet"),
  53325. name: "Back",
  53326. image: {
  53327. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53328. extra: 1135/1129,
  53329. bottom: 57/1192
  53330. }
  53331. },
  53332. head: {
  53333. height: math.unit(1.77, "feet"),
  53334. name: "Head",
  53335. image: {
  53336. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53337. }
  53338. },
  53339. },
  53340. [
  53341. {
  53342. name: "Normal",
  53343. height: math.unit(4 + 4/12, "feet"),
  53344. default: true
  53345. },
  53346. ]
  53347. ))
  53348. characterMakers.push(() => makeCharacter(
  53349. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53350. {
  53351. front: {
  53352. height: math.unit(2, "inches"),
  53353. name: "Front",
  53354. image: {
  53355. source: "./media/characters/carley-hartford/front.svg",
  53356. extra: 1035/988,
  53357. bottom: 23/1058
  53358. }
  53359. },
  53360. back: {
  53361. height: math.unit(2, "inches"),
  53362. name: "Back",
  53363. image: {
  53364. source: "./media/characters/carley-hartford/back.svg",
  53365. extra: 1035/988,
  53366. bottom: 23/1058
  53367. }
  53368. },
  53369. dressed: {
  53370. height: math.unit(2, "inches"),
  53371. name: "Dressed",
  53372. image: {
  53373. source: "./media/characters/carley-hartford/dressed.svg",
  53374. extra: 651/620,
  53375. bottom: 0/651
  53376. }
  53377. },
  53378. },
  53379. [
  53380. {
  53381. name: "Micro",
  53382. height: math.unit(2, "inches"),
  53383. default: true
  53384. },
  53385. {
  53386. name: "Macro",
  53387. height: math.unit(6 + 3/12, "feet")
  53388. },
  53389. ]
  53390. ))
  53391. characterMakers.push(() => makeCharacter(
  53392. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53393. {
  53394. front: {
  53395. height: math.unit(2 + 3/12, "feet"),
  53396. weight: math.unit(15 + 7/16, "lb"),
  53397. name: "Front",
  53398. image: {
  53399. source: "./media/characters/duke/front.svg",
  53400. extra: 910/815,
  53401. bottom: 30/940
  53402. }
  53403. },
  53404. },
  53405. [
  53406. {
  53407. name: "Normal",
  53408. height: math.unit(2 + 3/12, "feet"),
  53409. default: true
  53410. },
  53411. ]
  53412. ))
  53413. characterMakers.push(() => makeCharacter(
  53414. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53415. {
  53416. front: {
  53417. height: math.unit(5 + 4/12, "feet"),
  53418. weight: math.unit(156, "lb"),
  53419. name: "Front",
  53420. image: {
  53421. source: "./media/characters/dein/front.svg",
  53422. extra: 855/815,
  53423. bottom: 48/903
  53424. }
  53425. },
  53426. side: {
  53427. height: math.unit(5 + 4/12, "feet"),
  53428. weight: math.unit(156, "lb"),
  53429. name: "side",
  53430. image: {
  53431. source: "./media/characters/dein/side.svg",
  53432. extra: 846/803,
  53433. bottom: 25/871
  53434. }
  53435. },
  53436. maw: {
  53437. height: math.unit(1.45, "feet"),
  53438. name: "Maw",
  53439. image: {
  53440. source: "./media/characters/dein/maw.svg"
  53441. }
  53442. },
  53443. },
  53444. [
  53445. {
  53446. name: "Ferret Sized",
  53447. height: math.unit(2 + 5/12, "feet")
  53448. },
  53449. {
  53450. name: "Normal",
  53451. height: math.unit(5 + 4/12, "feet"),
  53452. default: true
  53453. },
  53454. ]
  53455. ))
  53456. characterMakers.push(() => makeCharacter(
  53457. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53458. {
  53459. front: {
  53460. height: math.unit(84 + 8/12, "feet"),
  53461. weight: math.unit(942180, "lb"),
  53462. name: "Front",
  53463. image: {
  53464. source: "./media/characters/daurine-arima/front.svg",
  53465. extra: 1989/1782,
  53466. bottom: 37/2026
  53467. }
  53468. },
  53469. side: {
  53470. height: math.unit(84 + 8/12, "feet"),
  53471. weight: math.unit(942180, "lb"),
  53472. name: "Side",
  53473. image: {
  53474. source: "./media/characters/daurine-arima/side.svg",
  53475. extra: 1997/1790,
  53476. bottom: 21/2018
  53477. }
  53478. },
  53479. back: {
  53480. height: math.unit(84 + 8/12, "feet"),
  53481. weight: math.unit(942180, "lb"),
  53482. name: "Back",
  53483. image: {
  53484. source: "./media/characters/daurine-arima/back.svg",
  53485. extra: 1992/1800,
  53486. bottom: 12/2004
  53487. }
  53488. },
  53489. head: {
  53490. height: math.unit(15.5, "feet"),
  53491. name: "Head",
  53492. image: {
  53493. source: "./media/characters/daurine-arima/head.svg"
  53494. }
  53495. },
  53496. headAlt: {
  53497. height: math.unit(19.19, "feet"),
  53498. name: "Head (Alt)",
  53499. image: {
  53500. source: "./media/characters/daurine-arima/head-alt.svg"
  53501. }
  53502. },
  53503. },
  53504. [
  53505. {
  53506. name: "Minimum height",
  53507. height: math.unit(8 + 10/12, "feet")
  53508. },
  53509. {
  53510. name: "Comfort height",
  53511. height: math.unit(19 + 6 /12, "feet")
  53512. },
  53513. {
  53514. name: "\"Normal\" height",
  53515. height: math.unit(28 + 10/12, "feet")
  53516. },
  53517. {
  53518. name: "Base height",
  53519. height: math.unit(84 + 8/12, "feet"),
  53520. default: true
  53521. },
  53522. {
  53523. name: "Mini-macro",
  53524. height: math.unit(2360, "feet")
  53525. },
  53526. {
  53527. name: "Macro",
  53528. height: math.unit(10, "miles")
  53529. },
  53530. {
  53531. name: "Goddess",
  53532. height: math.unit(9.99e40, "yottameters")
  53533. },
  53534. ]
  53535. ))
  53536. characterMakers.push(() => makeCharacter(
  53537. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53538. {
  53539. front: {
  53540. height: math.unit(2.3, "meters"),
  53541. name: "Front",
  53542. image: {
  53543. source: "./media/characters/cilenomon/front.svg",
  53544. extra: 1963/1778,
  53545. bottom: 54/2017
  53546. }
  53547. },
  53548. },
  53549. [
  53550. {
  53551. name: "Normal",
  53552. height: math.unit(2.3, "meters"),
  53553. default: true
  53554. },
  53555. {
  53556. name: "Big",
  53557. height: math.unit(5, "meters")
  53558. },
  53559. {
  53560. name: "Macro",
  53561. height: math.unit(30, "meters")
  53562. },
  53563. {
  53564. name: "True",
  53565. height: math.unit(1, "universe")
  53566. },
  53567. ]
  53568. ))
  53569. characterMakers.push(() => makeCharacter(
  53570. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53571. {
  53572. front: {
  53573. height: math.unit(5, "feet"),
  53574. name: "Front",
  53575. image: {
  53576. source: "./media/characters/sen-mink/front.svg",
  53577. extra: 1727/1675,
  53578. bottom: 35/1762
  53579. }
  53580. },
  53581. },
  53582. [
  53583. {
  53584. name: "Normal",
  53585. height: math.unit(5, "feet"),
  53586. default: true
  53587. },
  53588. ]
  53589. ))
  53590. characterMakers.push(() => makeCharacter(
  53591. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53592. {
  53593. front: {
  53594. height: math.unit(5.42999, "feet"),
  53595. weight: math.unit(100, "lb"),
  53596. name: "Front",
  53597. image: {
  53598. source: "./media/characters/ophois/front.svg",
  53599. extra: 1429/1286,
  53600. bottom: 60/1489
  53601. }
  53602. },
  53603. },
  53604. [
  53605. {
  53606. name: "Normal",
  53607. height: math.unit(5.42999, "feet"),
  53608. default: true
  53609. },
  53610. ]
  53611. ))
  53612. characterMakers.push(() => makeCharacter(
  53613. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53614. {
  53615. front: {
  53616. height: math.unit(2, "meters"),
  53617. name: "Front",
  53618. image: {
  53619. source: "./media/characters/riley/front.svg",
  53620. extra: 1779/1754,
  53621. bottom: 139/1918
  53622. }
  53623. },
  53624. },
  53625. [
  53626. {
  53627. name: "Normal",
  53628. height: math.unit(2, "meters"),
  53629. default: true
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(6 + 2/12, "feet"),
  53638. weight: math.unit(195, "lb"),
  53639. preyCapacity: math.unit(6, "people"),
  53640. name: "Front",
  53641. image: {
  53642. source: "./media/characters/shuken-flash/front.svg",
  53643. extra: 1905/1739,
  53644. bottom: 65/1970
  53645. }
  53646. },
  53647. back: {
  53648. height: math.unit(6 + 2/12, "feet"),
  53649. weight: math.unit(195, "lb"),
  53650. preyCapacity: math.unit(6, "people"),
  53651. name: "Back",
  53652. image: {
  53653. source: "./media/characters/shuken-flash/back.svg",
  53654. extra: 1912/1751,
  53655. bottom: 13/1925
  53656. }
  53657. },
  53658. },
  53659. [
  53660. {
  53661. name: "Normal",
  53662. height: math.unit(6 + 2/12, "feet"),
  53663. default: true
  53664. },
  53665. ]
  53666. ))
  53667. characterMakers.push(() => makeCharacter(
  53668. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53669. {
  53670. front: {
  53671. height: math.unit(5 + 9/12, "feet"),
  53672. weight: math.unit(150, "lb"),
  53673. name: "Front",
  53674. image: {
  53675. source: "./media/characters/plat/front.svg",
  53676. extra: 1816/1703,
  53677. bottom: 43/1859
  53678. }
  53679. },
  53680. side: {
  53681. height: math.unit(5 + 9/12, "feet"),
  53682. weight: math.unit(300, "lb"),
  53683. name: "Side",
  53684. image: {
  53685. source: "./media/characters/plat/side.svg",
  53686. extra: 1824/1699,
  53687. bottom: 18/1842
  53688. }
  53689. },
  53690. },
  53691. [
  53692. {
  53693. name: "Normal",
  53694. height: math.unit(5 + 9/12, "feet"),
  53695. default: true
  53696. },
  53697. ]
  53698. ))
  53699. characterMakers.push(() => makeCharacter(
  53700. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53701. {
  53702. front: {
  53703. height: math.unit(9, "feet"),
  53704. weight: math.unit(1800, "lb"),
  53705. name: "Front",
  53706. image: {
  53707. source: "./media/characters/elaine/front.svg",
  53708. extra: 1833/1354,
  53709. bottom: 25/1858
  53710. }
  53711. },
  53712. back: {
  53713. height: math.unit(8.8, "feet"),
  53714. weight: math.unit(1800, "lb"),
  53715. name: "Back",
  53716. image: {
  53717. source: "./media/characters/elaine/back.svg",
  53718. extra: 1641/1233,
  53719. bottom: 53/1694
  53720. }
  53721. },
  53722. },
  53723. [
  53724. {
  53725. name: "Normal",
  53726. height: math.unit(9, "feet"),
  53727. default: true
  53728. },
  53729. ]
  53730. ))
  53731. characterMakers.push(() => makeCharacter(
  53732. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53733. {
  53734. front: {
  53735. height: math.unit(17 + 9/12, "feet"),
  53736. weight: math.unit(8000, "lb"),
  53737. name: "Front",
  53738. image: {
  53739. source: "./media/characters/vera-raven/front.svg",
  53740. extra: 1457/1412,
  53741. bottom: 121/1578
  53742. }
  53743. },
  53744. side: {
  53745. height: math.unit(17 + 9/12, "feet"),
  53746. weight: math.unit(8000, "lb"),
  53747. name: "Side",
  53748. image: {
  53749. source: "./media/characters/vera-raven/side.svg",
  53750. extra: 1510/1464,
  53751. bottom: 54/1564
  53752. }
  53753. },
  53754. },
  53755. [
  53756. {
  53757. name: "Normal",
  53758. height: math.unit(17 + 9/12, "feet"),
  53759. default: true
  53760. },
  53761. ]
  53762. ))
  53763. characterMakers.push(() => makeCharacter(
  53764. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53765. {
  53766. dressed: {
  53767. height: math.unit(6 + 9/12, "feet"),
  53768. name: "Dressed",
  53769. image: {
  53770. source: "./media/characters/nakisha/dressed.svg",
  53771. extra: 1909/1757,
  53772. bottom: 48/1957
  53773. }
  53774. },
  53775. nude: {
  53776. height: math.unit(6 + 9/12, "feet"),
  53777. name: "Nude",
  53778. image: {
  53779. source: "./media/characters/nakisha/nude.svg",
  53780. extra: 1917/1765,
  53781. bottom: 34/1951
  53782. }
  53783. },
  53784. },
  53785. [
  53786. {
  53787. name: "Normal",
  53788. height: math.unit(6 + 9/12, "feet"),
  53789. default: true
  53790. },
  53791. ]
  53792. ))
  53793. characterMakers.push(() => makeCharacter(
  53794. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53795. {
  53796. front: {
  53797. height: math.unit(87, "meters"),
  53798. name: "Front",
  53799. image: {
  53800. source: "./media/characters/serafin/front.svg",
  53801. extra: 1919/1776,
  53802. bottom: 65/1984
  53803. }
  53804. },
  53805. },
  53806. [
  53807. {
  53808. name: "Normal",
  53809. height: math.unit(87, "meters"),
  53810. default: true
  53811. },
  53812. ]
  53813. ))
  53814. characterMakers.push(() => makeCharacter(
  53815. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53816. {
  53817. front: {
  53818. height: math.unit(6, "feet"),
  53819. weight: math.unit(200, "lb"),
  53820. name: "Front",
  53821. image: {
  53822. source: "./media/characters/poptart/front.svg",
  53823. extra: 615/583,
  53824. bottom: 23/638
  53825. }
  53826. },
  53827. back: {
  53828. height: math.unit(6, "feet"),
  53829. weight: math.unit(200, "lb"),
  53830. name: "Back",
  53831. image: {
  53832. source: "./media/characters/poptart/back.svg",
  53833. extra: 617/584,
  53834. bottom: 22/639
  53835. }
  53836. },
  53837. frontNsfw: {
  53838. height: math.unit(6, "feet"),
  53839. weight: math.unit(200, "lb"),
  53840. name: "Front (NSFW)",
  53841. image: {
  53842. source: "./media/characters/poptart/front-nsfw.svg",
  53843. extra: 615/583,
  53844. bottom: 23/638
  53845. }
  53846. },
  53847. backNsfw: {
  53848. height: math.unit(6, "feet"),
  53849. weight: math.unit(200, "lb"),
  53850. name: "Back (NSFW)",
  53851. image: {
  53852. source: "./media/characters/poptart/back-nsfw.svg",
  53853. extra: 617/584,
  53854. bottom: 22/639
  53855. }
  53856. },
  53857. hand: {
  53858. height: math.unit(1.14, "feet"),
  53859. name: "Hand",
  53860. image: {
  53861. source: "./media/characters/poptart/hand.svg"
  53862. }
  53863. },
  53864. foot: {
  53865. height: math.unit(1.5, "feet"),
  53866. name: "Foot",
  53867. image: {
  53868. source: "./media/characters/poptart/foot.svg"
  53869. }
  53870. },
  53871. },
  53872. [
  53873. {
  53874. name: "Normal",
  53875. height: math.unit(6, "feet"),
  53876. default: true
  53877. },
  53878. {
  53879. name: "Grande",
  53880. height: math.unit(350, "feet")
  53881. },
  53882. {
  53883. name: "Massif",
  53884. height: math.unit(967, "feet")
  53885. },
  53886. ]
  53887. ))
  53888. characterMakers.push(() => makeCharacter(
  53889. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53890. {
  53891. hyenaSide: {
  53892. height: math.unit(120, "cm"),
  53893. weight: math.unit(120, "lb"),
  53894. name: "Side",
  53895. image: {
  53896. source: "./media/characters/trance/hyena-side.svg",
  53897. extra: 998/904,
  53898. bottom: 76/1074
  53899. }
  53900. },
  53901. },
  53902. [
  53903. {
  53904. name: "Normal",
  53905. height: math.unit(120, "cm"),
  53906. default: true
  53907. },
  53908. {
  53909. name: "Dire",
  53910. height: math.unit(230, "cm")
  53911. },
  53912. {
  53913. name: "Macro",
  53914. height: math.unit(37, "feet")
  53915. },
  53916. ]
  53917. ))
  53918. characterMakers.push(() => makeCharacter(
  53919. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53920. {
  53921. front: {
  53922. height: math.unit(6 + 3/12, "feet"),
  53923. name: "Front",
  53924. image: {
  53925. source: "./media/characters/michael-berretta/front.svg",
  53926. extra: 515/494,
  53927. bottom: 20/535
  53928. }
  53929. },
  53930. back: {
  53931. height: math.unit(6 + 3/12, "feet"),
  53932. name: "Back",
  53933. image: {
  53934. source: "./media/characters/michael-berretta/back.svg",
  53935. extra: 520/497,
  53936. bottom: 21/541
  53937. }
  53938. },
  53939. frontNsfw: {
  53940. height: math.unit(6 + 3/12, "feet"),
  53941. name: "Front (NSFW)",
  53942. image: {
  53943. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53944. extra: 515/494,
  53945. bottom: 20/535
  53946. }
  53947. },
  53948. dick: {
  53949. height: math.unit(1, "feet"),
  53950. name: "Dick",
  53951. image: {
  53952. source: "./media/characters/michael-berretta/dick.svg"
  53953. }
  53954. },
  53955. },
  53956. [
  53957. {
  53958. name: "Normal",
  53959. height: math.unit(6 + 3/12, "feet"),
  53960. default: true
  53961. },
  53962. {
  53963. name: "Big",
  53964. height: math.unit(12, "feet")
  53965. },
  53966. {
  53967. name: "Macro",
  53968. height: math.unit(187.5, "feet")
  53969. },
  53970. ]
  53971. ))
  53972. characterMakers.push(() => makeCharacter(
  53973. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53974. {
  53975. front: {
  53976. height: math.unit(9 + 9/12, "feet"),
  53977. weight: math.unit(1244, "lb"),
  53978. name: "Front",
  53979. image: {
  53980. source: "./media/characters/stella-edgecomb/front.svg",
  53981. extra: 1835/1706,
  53982. bottom: 49/1884
  53983. }
  53984. },
  53985. pen: {
  53986. height: math.unit(0.95, "feet"),
  53987. name: "Pen",
  53988. image: {
  53989. source: "./media/characters/stella-edgecomb/pen.svg"
  53990. }
  53991. },
  53992. },
  53993. [
  53994. {
  53995. name: "Cozy Bear",
  53996. height: math.unit(0.5, "inches")
  53997. },
  53998. {
  53999. name: "Normal",
  54000. height: math.unit(9 + 9/12, "feet"),
  54001. default: true
  54002. },
  54003. {
  54004. name: "Giga Bear",
  54005. height: math.unit(1, "mile")
  54006. },
  54007. {
  54008. name: "Great Bear",
  54009. height: math.unit(53, "miles")
  54010. },
  54011. {
  54012. name: "Goddess Bear",
  54013. height: math.unit(40000, "miles")
  54014. },
  54015. {
  54016. name: "Sun Bear",
  54017. height: math.unit(900000, "miles")
  54018. },
  54019. ]
  54020. ))
  54021. characterMakers.push(() => makeCharacter(
  54022. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54023. {
  54024. anthroFront: {
  54025. height: math.unit(556, "cm"),
  54026. weight: math.unit(2650, "kg"),
  54027. preyCapacity: math.unit(3, "people"),
  54028. name: "Front",
  54029. image: {
  54030. source: "./media/characters/ash´iika/front.svg",
  54031. extra: 710/673,
  54032. bottom: 15/725
  54033. },
  54034. form: "anthro",
  54035. default: true
  54036. },
  54037. anthroSide: {
  54038. height: math.unit(556, "cm"),
  54039. weight: math.unit(2650, "kg"),
  54040. preyCapacity: math.unit(3, "people"),
  54041. name: "Side",
  54042. image: {
  54043. source: "./media/characters/ash´iika/side.svg",
  54044. extra: 696/676,
  54045. bottom: 13/709
  54046. },
  54047. form: "anthro"
  54048. },
  54049. anthroDressed: {
  54050. height: math.unit(556, "cm"),
  54051. weight: math.unit(2650, "kg"),
  54052. preyCapacity: math.unit(3, "people"),
  54053. name: "Dressed",
  54054. image: {
  54055. source: "./media/characters/ash´iika/dressed.svg",
  54056. extra: 710/673,
  54057. bottom: 15/725
  54058. },
  54059. form: "anthro"
  54060. },
  54061. anthroHead: {
  54062. height: math.unit(3.5, "feet"),
  54063. name: "Head",
  54064. image: {
  54065. source: "./media/characters/ash´iika/head.svg",
  54066. extra: 348/291,
  54067. bottom: 45/393
  54068. },
  54069. form: "anthro"
  54070. },
  54071. feralSide: {
  54072. height: math.unit(870, "cm"),
  54073. weight: math.unit(17500, "kg"),
  54074. preyCapacity: math.unit(15, "people"),
  54075. name: "Side",
  54076. image: {
  54077. source: "./media/characters/ash´iika/feral.svg",
  54078. extra: 595/199,
  54079. bottom: 7/602
  54080. },
  54081. form: "feral",
  54082. default: true,
  54083. },
  54084. },
  54085. [
  54086. {
  54087. name: "Normal",
  54088. height: math.unit(556, "cm"),
  54089. default: true,
  54090. form: "anthro"
  54091. },
  54092. {
  54093. name: "Macro",
  54094. height: math.unit(88, "meters"),
  54095. form: "anthro"
  54096. },
  54097. {
  54098. name: "Normal",
  54099. height: math.unit(870, "cm"),
  54100. default: true,
  54101. form: "feral"
  54102. },
  54103. {
  54104. name: "Large",
  54105. height: math.unit(25, "meters"),
  54106. form: "feral"
  54107. },
  54108. ],
  54109. {
  54110. "anthro": {
  54111. name: "Anthro",
  54112. default: true
  54113. },
  54114. "feral": {
  54115. name: "Feral",
  54116. },
  54117. }
  54118. ))
  54119. characterMakers.push(() => makeCharacter(
  54120. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54121. {
  54122. front: {
  54123. height: math.unit(10, "feet"),
  54124. weight: math.unit(800, "lb"),
  54125. name: "Front",
  54126. image: {
  54127. source: "./media/characters/yen/front.svg",
  54128. extra: 443/411,
  54129. bottom: 6/449
  54130. }
  54131. },
  54132. sleeping: {
  54133. height: math.unit(10, "feet"),
  54134. weight: math.unit(800, "lb"),
  54135. name: "Sleeping",
  54136. image: {
  54137. source: "./media/characters/yen/sleeping.svg",
  54138. extra: 470/422,
  54139. bottom: 0/470
  54140. }
  54141. },
  54142. head: {
  54143. height: math.unit(2.2, "feet"),
  54144. name: "Head",
  54145. image: {
  54146. source: "./media/characters/yen/head.svg"
  54147. }
  54148. },
  54149. headAlt: {
  54150. height: math.unit(2.1, "feet"),
  54151. name: "Head (Alt)",
  54152. image: {
  54153. source: "./media/characters/yen/head-alt.svg"
  54154. }
  54155. },
  54156. },
  54157. [
  54158. {
  54159. name: "Normal",
  54160. height: math.unit(10, "feet"),
  54161. default: true
  54162. },
  54163. ]
  54164. ))
  54165. characterMakers.push(() => makeCharacter(
  54166. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54167. {
  54168. front: {
  54169. height: math.unit(12, "feet"),
  54170. name: "Front",
  54171. image: {
  54172. source: "./media/characters/citra/front.svg",
  54173. extra: 1950/1710,
  54174. bottom: 47/1997
  54175. }
  54176. },
  54177. },
  54178. [
  54179. {
  54180. name: "Normal",
  54181. height: math.unit(12, "feet"),
  54182. default: true
  54183. },
  54184. ]
  54185. ))
  54186. characterMakers.push(() => makeCharacter(
  54187. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54188. {
  54189. side: {
  54190. height: math.unit(7 + 10/12, "feet"),
  54191. name: "Side",
  54192. image: {
  54193. source: "./media/characters/sholstim/side.svg",
  54194. extra: 786/682,
  54195. bottom: 40/826
  54196. }
  54197. },
  54198. },
  54199. [
  54200. {
  54201. name: "Normal",
  54202. height: math.unit(7 + 10/12, "feet"),
  54203. default: true
  54204. },
  54205. ]
  54206. ))
  54207. characterMakers.push(() => makeCharacter(
  54208. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54209. {
  54210. front: {
  54211. height: math.unit(3.10, "meters"),
  54212. name: "Front",
  54213. image: {
  54214. source: "./media/characters/aggyn/front.svg",
  54215. extra: 1188/963,
  54216. bottom: 24/1212
  54217. }
  54218. },
  54219. },
  54220. [
  54221. {
  54222. name: "Normal",
  54223. height: math.unit(3.10, "meters"),
  54224. default: true
  54225. },
  54226. ]
  54227. ))
  54228. characterMakers.push(() => makeCharacter(
  54229. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54230. {
  54231. front: {
  54232. height: math.unit(7 + 5/12, "feet"),
  54233. weight: math.unit(687, "lb"),
  54234. name: "Front",
  54235. image: {
  54236. source: "./media/characters/alsandair-hergenroether/front.svg",
  54237. extra: 1251/1186,
  54238. bottom: 75/1326
  54239. }
  54240. },
  54241. back: {
  54242. height: math.unit(7 + 5/12, "feet"),
  54243. weight: math.unit(687, "lb"),
  54244. name: "Back",
  54245. image: {
  54246. source: "./media/characters/alsandair-hergenroether/back.svg",
  54247. extra: 1290/1229,
  54248. bottom: 17/1307
  54249. }
  54250. },
  54251. },
  54252. [
  54253. {
  54254. name: "Max Compression",
  54255. height: math.unit(7 + 5/12, "feet"),
  54256. default: true
  54257. },
  54258. {
  54259. name: "\"Normal\"",
  54260. height: math.unit(2, "universes")
  54261. },
  54262. ]
  54263. ))
  54264. characterMakers.push(() => makeCharacter(
  54265. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54266. {
  54267. front: {
  54268. height: math.unit(4 + 1/12, "feet"),
  54269. weight: math.unit(92, "lb"),
  54270. name: "Front",
  54271. image: {
  54272. source: "./media/characters/ie/front.svg",
  54273. extra: 1585/1352,
  54274. bottom: 91/1676
  54275. }
  54276. },
  54277. },
  54278. [
  54279. {
  54280. name: "Normal",
  54281. height: math.unit(4 + 1/12, "feet"),
  54282. default: true
  54283. },
  54284. ]
  54285. ))
  54286. characterMakers.push(() => makeCharacter(
  54287. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54288. {
  54289. anthro: {
  54290. height: math.unit(6, "feet"),
  54291. weight: math.unit(150, "lb"),
  54292. name: "Front",
  54293. image: {
  54294. source: "./media/characters/willow/anthro.svg",
  54295. extra: 1073/986,
  54296. bottom: 34/1107
  54297. },
  54298. form: "anthro",
  54299. default: true
  54300. },
  54301. taur: {
  54302. height: math.unit(6, "feet"),
  54303. weight: math.unit(150, "lb"),
  54304. name: "Side",
  54305. image: {
  54306. source: "./media/characters/willow/taur.svg",
  54307. extra: 647/512,
  54308. bottom: 136/783
  54309. },
  54310. form: "taur",
  54311. default: true
  54312. },
  54313. },
  54314. [
  54315. {
  54316. name: "Humanoid",
  54317. height: math.unit(2.7, "meters"),
  54318. form: "anthro"
  54319. },
  54320. {
  54321. name: "Normal",
  54322. height: math.unit(9, "meters"),
  54323. form: "anthro",
  54324. default: true
  54325. },
  54326. {
  54327. name: "Humanoid",
  54328. height: math.unit(2.1, "meters"),
  54329. form: "taur"
  54330. },
  54331. {
  54332. name: "Normal",
  54333. height: math.unit(7, "meters"),
  54334. form: "taur",
  54335. default: true
  54336. },
  54337. ],
  54338. {
  54339. "anthro": {
  54340. name: "Anthro",
  54341. default: true
  54342. },
  54343. "taur": {
  54344. name: "Taur",
  54345. },
  54346. }
  54347. ))
  54348. characterMakers.push(() => makeCharacter(
  54349. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54350. {
  54351. front: {
  54352. height: math.unit(2 + 5/12, "feet"),
  54353. name: "Front",
  54354. image: {
  54355. source: "./media/characters/kyan/front.svg",
  54356. extra: 460/334,
  54357. bottom: 23/483
  54358. },
  54359. extraAttributes: {
  54360. "toeLength": {
  54361. name: "Toe Length",
  54362. power: 1,
  54363. type: "length",
  54364. base: math.unit(7, "cm")
  54365. },
  54366. "toeclawLength": {
  54367. name: "Toeclaw Length",
  54368. power: 1,
  54369. type: "length",
  54370. base: math.unit(4.7, "cm")
  54371. },
  54372. "earHeight": {
  54373. name: "Ear Height",
  54374. power: 1,
  54375. type: "length",
  54376. base: math.unit(14.1, "cm")
  54377. },
  54378. }
  54379. },
  54380. paws: {
  54381. height: math.unit(0.45, "feet"),
  54382. name: "Paws",
  54383. image: {
  54384. source: "./media/characters/kyan/paws.svg",
  54385. extra: 581/581,
  54386. bottom: 114/695
  54387. }
  54388. },
  54389. },
  54390. [
  54391. {
  54392. name: "Normal",
  54393. height: math.unit(2 + 5/12, "feet"),
  54394. default: true
  54395. },
  54396. ]
  54397. ))
  54398. characterMakers.push(() => makeCharacter(
  54399. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54400. {
  54401. front: {
  54402. height: math.unit(2 + 2/3, "feet"),
  54403. name: "Front",
  54404. image: {
  54405. source: "./media/characters/xazzon/front.svg",
  54406. extra: 1109/984,
  54407. bottom: 42/1151
  54408. }
  54409. },
  54410. back: {
  54411. height: math.unit(2 + 2/3, "feet"),
  54412. name: "Back",
  54413. image: {
  54414. source: "./media/characters/xazzon/back.svg",
  54415. extra: 1095/971,
  54416. bottom: 23/1118
  54417. }
  54418. },
  54419. },
  54420. [
  54421. {
  54422. name: "Normal",
  54423. height: math.unit(2 + 2/3, "feet"),
  54424. default: true
  54425. },
  54426. ]
  54427. ))
  54428. characterMakers.push(() => makeCharacter(
  54429. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54430. {
  54431. dressed: {
  54432. height: math.unit(5 + 7/12, "feet"),
  54433. weight: math.unit(173, "lb"),
  54434. name: "Dressed",
  54435. image: {
  54436. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54437. extra: 3262/2862,
  54438. bottom: 188/3450
  54439. }
  54440. },
  54441. undressed: {
  54442. height: math.unit(5 + 7/12, "feet"),
  54443. weight: math.unit(173, "lb"),
  54444. name: "Undressed",
  54445. image: {
  54446. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54447. extra: 3262/2862,
  54448. bottom: 188/3450
  54449. }
  54450. },
  54451. },
  54452. [
  54453. {
  54454. name: "The void",
  54455. height: math.unit(7.29193e-34, "angstroms")
  54456. },
  54457. {
  54458. name: "Uh-Oh.",
  54459. height: math.unit(5.734e-7, "angstroms")
  54460. },
  54461. {
  54462. name: "Pico",
  54463. height: math.unit(0.876, "angstroms")
  54464. },
  54465. {
  54466. name: "Nano",
  54467. height: math.unit(0.000134200, "mm")
  54468. },
  54469. {
  54470. name: "Micro",
  54471. height: math.unit(0.0673020, "mm")
  54472. },
  54473. {
  54474. name: "Tiny",
  54475. height: math.unit(2.4, "mm")
  54476. },
  54477. {
  54478. name: "Actual Normal",
  54479. height: math.unit(3, "inches"),
  54480. default: true
  54481. },
  54482. {
  54483. name: "Normal",
  54484. height: math.unit(5 + 8/12, "feet")
  54485. },
  54486. {
  54487. name: "Giant",
  54488. height: math.unit(12, "feet")
  54489. },
  54490. {
  54491. name: "City Ruler",
  54492. height: math.unit(270, "meters")
  54493. },
  54494. {
  54495. name: "Giga",
  54496. height: math.unit(1117.6, "km")
  54497. },
  54498. {
  54499. name: "All-Powerful Queen",
  54500. height: math.unit(70.8, "gigameters")
  54501. },
  54502. {
  54503. name: "'Goddess'",
  54504. height: math.unit(600, "yottameters")
  54505. },
  54506. {
  54507. name: "Biggest!",
  54508. height: math.unit(4.23e5, "yottameters")
  54509. },
  54510. ]
  54511. ))
  54512. characterMakers.push(() => makeCharacter(
  54513. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54514. {
  54515. front: {
  54516. height: math.unit(8, "feet"),
  54517. weight: math.unit(300, "lb"),
  54518. name: "Front",
  54519. image: {
  54520. source: "./media/characters/khyla-shadowsong/front.svg",
  54521. extra: 861/798,
  54522. bottom: 32/893
  54523. }
  54524. },
  54525. side: {
  54526. height: math.unit(8, "feet"),
  54527. weight: math.unit(300, "lb"),
  54528. name: "Side",
  54529. image: {
  54530. source: "./media/characters/khyla-shadowsong/side.svg",
  54531. extra: 790/750,
  54532. bottom: 87/877
  54533. }
  54534. },
  54535. back: {
  54536. height: math.unit(8, "feet"),
  54537. weight: math.unit(300, "lb"),
  54538. name: "Back",
  54539. image: {
  54540. source: "./media/characters/khyla-shadowsong/back.svg",
  54541. extra: 855/808,
  54542. bottom: 14/869
  54543. }
  54544. },
  54545. head: {
  54546. height: math.unit(2.7, "feet"),
  54547. name: "Head",
  54548. image: {
  54549. source: "./media/characters/khyla-shadowsong/head.svg"
  54550. }
  54551. },
  54552. },
  54553. [
  54554. {
  54555. name: "Micro",
  54556. height: math.unit(6, "inches")
  54557. },
  54558. {
  54559. name: "Normal",
  54560. height: math.unit(8, "feet"),
  54561. default: true
  54562. },
  54563. ]
  54564. ))
  54565. characterMakers.push(() => makeCharacter(
  54566. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54567. {
  54568. hyperFront: {
  54569. height: math.unit(9 + 4/12, "feet"),
  54570. weight: math.unit(2000, "lb"),
  54571. name: "Front",
  54572. image: {
  54573. source: "./media/characters/tiden/hyper-front.svg",
  54574. extra: 400/382,
  54575. bottom: 6/406
  54576. },
  54577. form: "hyper",
  54578. },
  54579. regularFront: {
  54580. height: math.unit(7 + 10/12, "feet"),
  54581. weight: math.unit(470, "lb"),
  54582. name: "Front",
  54583. image: {
  54584. source: "./media/characters/tiden/regular-front.svg",
  54585. extra: 468/442,
  54586. bottom: 6/474
  54587. },
  54588. form: "regular",
  54589. },
  54590. },
  54591. [
  54592. {
  54593. name: "Normal",
  54594. height: math.unit(9 + 4/12, "feet"),
  54595. default: true,
  54596. form: "hyper"
  54597. },
  54598. {
  54599. name: "Normal",
  54600. height: math.unit(7 + 10/12, "feet"),
  54601. default: true,
  54602. form: "regular"
  54603. },
  54604. ],
  54605. {
  54606. "hyper": {
  54607. name: "Hyper",
  54608. default: true
  54609. },
  54610. "regular": {
  54611. name: "Regular",
  54612. },
  54613. }
  54614. ))
  54615. characterMakers.push(() => makeCharacter(
  54616. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54617. {
  54618. side: {
  54619. height: math.unit(6, "feet"),
  54620. weight: math.unit(150, "lb"),
  54621. name: "Side",
  54622. image: {
  54623. source: "./media/characters/jason-crowe/side.svg",
  54624. extra: 1771/766,
  54625. bottom: 219/1990
  54626. }
  54627. },
  54628. },
  54629. [
  54630. {
  54631. name: "Pocket Gryphon",
  54632. height: math.unit(6, "cm")
  54633. },
  54634. {
  54635. name: "Raven",
  54636. height: math.unit(60, "cm")
  54637. },
  54638. {
  54639. name: "Normal",
  54640. height: math.unit(1, "meter"),
  54641. default: true
  54642. },
  54643. ]
  54644. ))
  54645. characterMakers.push(() => makeCharacter(
  54646. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54647. {
  54648. front: {
  54649. height: math.unit(9 + 6/12, "feet"),
  54650. weight: math.unit(1100, "lb"),
  54651. name: "Front",
  54652. image: {
  54653. source: "./media/characters/django/front.svg",
  54654. extra: 1231/1136,
  54655. bottom: 34/1265
  54656. }
  54657. },
  54658. side: {
  54659. height: math.unit(9 + 6/12, "feet"),
  54660. weight: math.unit(1100, "lb"),
  54661. name: "Side",
  54662. image: {
  54663. source: "./media/characters/django/side.svg",
  54664. extra: 1267/1174,
  54665. bottom: 9/1276
  54666. }
  54667. },
  54668. },
  54669. [
  54670. {
  54671. name: "Normal",
  54672. height: math.unit(9 + 6/12, "feet"),
  54673. default: true
  54674. },
  54675. {
  54676. name: "Macro 1",
  54677. height: math.unit(50, "feet")
  54678. },
  54679. {
  54680. name: "Macro 2",
  54681. height: math.unit(500, "feet")
  54682. },
  54683. {
  54684. name: "Mega Macro",
  54685. height: math.unit(5300, "feet")
  54686. },
  54687. ]
  54688. ))
  54689. characterMakers.push(() => makeCharacter(
  54690. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54691. {
  54692. frontSfw: {
  54693. height: math.unit(120, "cm"),
  54694. weight: math.unit(15, "kg"),
  54695. name: "Front (SFW)",
  54696. image: {
  54697. source: "./media/characters/eri/front-sfw.svg",
  54698. extra: 1014/939,
  54699. bottom: 37/1051
  54700. },
  54701. form: "moth",
  54702. },
  54703. frontNsfw: {
  54704. height: math.unit(120, "cm"),
  54705. weight: math.unit(15, "kg"),
  54706. name: "Front (NSFW)",
  54707. image: {
  54708. source: "./media/characters/eri/front-nsfw.svg",
  54709. extra: 1014/939,
  54710. bottom: 37/1051
  54711. },
  54712. form: "moth",
  54713. default: true
  54714. },
  54715. egg: {
  54716. height: math.unit(10, "cm"),
  54717. name: "Egg",
  54718. image: {
  54719. source: "./media/characters/eri/egg.svg"
  54720. },
  54721. form: "egg",
  54722. default: true
  54723. },
  54724. },
  54725. [
  54726. {
  54727. name: "Normal",
  54728. height: math.unit(120, "cm"),
  54729. default: true,
  54730. form: "moth"
  54731. },
  54732. {
  54733. name: "Normal",
  54734. height: math.unit(10, "cm"),
  54735. default: true,
  54736. form: "egg"
  54737. },
  54738. ],
  54739. {
  54740. "moth": {
  54741. name: "Moth",
  54742. default: true
  54743. },
  54744. "egg": {
  54745. name: "Egg",
  54746. },
  54747. }
  54748. ))
  54749. characterMakers.push(() => makeCharacter(
  54750. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54751. {
  54752. front: {
  54753. height: math.unit(200, "feet"),
  54754. name: "Front",
  54755. image: {
  54756. source: "./media/characters/bishop-dowser/front.svg",
  54757. extra: 933/868,
  54758. bottom: 106/1039
  54759. }
  54760. },
  54761. },
  54762. [
  54763. {
  54764. name: "Giant",
  54765. height: math.unit(200, "feet"),
  54766. default: true
  54767. },
  54768. ]
  54769. ))
  54770. characterMakers.push(() => makeCharacter(
  54771. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54772. {
  54773. front: {
  54774. height: math.unit(2, "meters"),
  54775. preyCapacity: math.unit(3, "people"),
  54776. name: "Front",
  54777. image: {
  54778. source: "./media/characters/fryra/front.svg",
  54779. extra: 1025/948,
  54780. bottom: 30/1055
  54781. },
  54782. extraAttributes: {
  54783. "breastVolume": {
  54784. name: "Breast Volume",
  54785. power: 3,
  54786. type: "volume",
  54787. base: math.unit(8, "liters")
  54788. },
  54789. }
  54790. },
  54791. back: {
  54792. height: math.unit(2, "meters"),
  54793. preyCapacity: math.unit(3, "people"),
  54794. name: "Back",
  54795. image: {
  54796. source: "./media/characters/fryra/back.svg",
  54797. extra: 993/938,
  54798. bottom: 38/1031
  54799. },
  54800. extraAttributes: {
  54801. "breastVolume": {
  54802. name: "Breast Volume",
  54803. power: 3,
  54804. type: "volume",
  54805. base: math.unit(8, "liters")
  54806. },
  54807. }
  54808. },
  54809. head: {
  54810. height: math.unit(1.33, "feet"),
  54811. name: "Head",
  54812. image: {
  54813. source: "./media/characters/fryra/head.svg"
  54814. }
  54815. },
  54816. maw: {
  54817. height: math.unit(0.56, "feet"),
  54818. name: "Maw",
  54819. image: {
  54820. source: "./media/characters/fryra/maw.svg"
  54821. }
  54822. },
  54823. },
  54824. [
  54825. {
  54826. name: "Micro",
  54827. height: math.unit(5, "cm")
  54828. },
  54829. {
  54830. name: "Normal",
  54831. height: math.unit(2, "meters"),
  54832. default: true
  54833. },
  54834. {
  54835. name: "Small Macro",
  54836. height: math.unit(8, "meters")
  54837. },
  54838. {
  54839. name: "Macro",
  54840. height: math.unit(50, "meters")
  54841. },
  54842. {
  54843. name: "Megamacro",
  54844. height: math.unit(1, "km")
  54845. },
  54846. {
  54847. name: "Planetary",
  54848. height: math.unit(300000, "km")
  54849. },
  54850. {
  54851. name: "Universal",
  54852. height: math.unit(250, "lightyears")
  54853. },
  54854. {
  54855. name: "Fabric of Reality",
  54856. height: math.unit(1000, "multiverses")
  54857. },
  54858. ]
  54859. ))
  54860. characterMakers.push(() => makeCharacter(
  54861. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54862. {
  54863. frontDressed: {
  54864. height: math.unit(6 + 2/12, "feet"),
  54865. name: "Front (Dressed)",
  54866. image: {
  54867. source: "./media/characters/fiera/front-dressed.svg",
  54868. extra: 1883/1793,
  54869. bottom: 70/1953
  54870. }
  54871. },
  54872. backDressed: {
  54873. height: math.unit(6 + 2/12, "feet"),
  54874. name: "Back (Dressed)",
  54875. image: {
  54876. source: "./media/characters/fiera/back-dressed.svg",
  54877. extra: 1847/1780,
  54878. bottom: 70/1917
  54879. }
  54880. },
  54881. frontNude: {
  54882. height: math.unit(6 + 2/12, "feet"),
  54883. name: "Front (Nude)",
  54884. image: {
  54885. source: "./media/characters/fiera/front-nude.svg",
  54886. extra: 1875/1785,
  54887. bottom: 66/1941
  54888. }
  54889. },
  54890. backNude: {
  54891. height: math.unit(6 + 2/12, "feet"),
  54892. name: "Back (Nude)",
  54893. image: {
  54894. source: "./media/characters/fiera/back-nude.svg",
  54895. extra: 1855/1788,
  54896. bottom: 44/1899
  54897. }
  54898. },
  54899. maw: {
  54900. height: math.unit(1.3, "feet"),
  54901. name: "Maw",
  54902. image: {
  54903. source: "./media/characters/fiera/maw.svg"
  54904. }
  54905. },
  54906. paw: {
  54907. height: math.unit(1, "feet"),
  54908. name: "Paw",
  54909. image: {
  54910. source: "./media/characters/fiera/paw.svg"
  54911. }
  54912. },
  54913. shoe: {
  54914. height: math.unit(1.05, "feet"),
  54915. name: "Shoe",
  54916. image: {
  54917. source: "./media/characters/fiera/shoe.svg"
  54918. }
  54919. },
  54920. },
  54921. [
  54922. {
  54923. name: "Normal",
  54924. height: math.unit(6 + 2/12, "feet"),
  54925. default: true
  54926. },
  54927. {
  54928. name: "Size Difference",
  54929. height: math.unit(13, "feet")
  54930. },
  54931. {
  54932. name: "Macro",
  54933. height: math.unit(60, "feet")
  54934. },
  54935. {
  54936. name: "Mega Macro",
  54937. height: math.unit(200, "feet")
  54938. },
  54939. ]
  54940. ))
  54941. characterMakers.push(() => makeCharacter(
  54942. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54943. {
  54944. back: {
  54945. height: math.unit(6, "feet"),
  54946. name: "Back",
  54947. image: {
  54948. source: "./media/characters/flare/back.svg",
  54949. extra: 1883/1765,
  54950. bottom: 32/1915
  54951. }
  54952. },
  54953. },
  54954. [
  54955. {
  54956. name: "Normal",
  54957. height: math.unit(6 + 2/12, "feet"),
  54958. default: true
  54959. },
  54960. {
  54961. name: "Size Difference",
  54962. height: math.unit(13, "feet")
  54963. },
  54964. {
  54965. name: "Macro",
  54966. height: math.unit(60, "feet")
  54967. },
  54968. {
  54969. name: "Macro 2",
  54970. height: math.unit(100, "feet")
  54971. },
  54972. {
  54973. name: "Mega Macro",
  54974. height: math.unit(200, "feet")
  54975. },
  54976. ]
  54977. ))
  54978. characterMakers.push(() => makeCharacter(
  54979. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54980. {
  54981. front: {
  54982. height: math.unit(2.2, "m"),
  54983. weight: math.unit(300, "kg"),
  54984. name: "Front",
  54985. image: {
  54986. source: "./media/characters/hanna/front.svg",
  54987. extra: 1696/1502,
  54988. bottom: 206/1902
  54989. }
  54990. },
  54991. },
  54992. [
  54993. {
  54994. name: "Humanoid",
  54995. height: math.unit(2.2, "meters")
  54996. },
  54997. {
  54998. name: "Normal",
  54999. height: math.unit(4.8, "meters"),
  55000. default: true
  55001. },
  55002. ]
  55003. ))
  55004. characterMakers.push(() => makeCharacter(
  55005. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55006. {
  55007. front: {
  55008. height: math.unit(2.8, "meters"),
  55009. name: "Front",
  55010. image: {
  55011. source: "./media/characters/argo/front.svg",
  55012. extra: 731/518,
  55013. bottom: 84/815
  55014. }
  55015. },
  55016. },
  55017. [
  55018. {
  55019. name: "Normal",
  55020. height: math.unit(3, "meters"),
  55021. default: true
  55022. },
  55023. ]
  55024. ))
  55025. characterMakers.push(() => makeCharacter(
  55026. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55027. {
  55028. side: {
  55029. height: math.unit(3.8, "meters"),
  55030. name: "Side",
  55031. image: {
  55032. source: "./media/characters/sybil/side.svg",
  55033. extra: 382/361,
  55034. bottom: 25/407
  55035. }
  55036. },
  55037. },
  55038. [
  55039. {
  55040. name: "Normal",
  55041. height: math.unit(3.8, "meters"),
  55042. default: true
  55043. },
  55044. ]
  55045. ))
  55046. characterMakers.push(() => makeCharacter(
  55047. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55048. {
  55049. side: {
  55050. height: math.unit(6, "meters"),
  55051. name: "Side",
  55052. image: {
  55053. source: "./media/characters/plum/side.svg",
  55054. extra: 858/755,
  55055. bottom: 45/903
  55056. },
  55057. form: "taur",
  55058. default: true
  55059. },
  55060. back: {
  55061. height: math.unit(6.3, "meters"),
  55062. name: "Back",
  55063. image: {
  55064. source: "./media/characters/plum/back.svg",
  55065. extra: 887/813,
  55066. bottom: 32/919
  55067. },
  55068. form: "taur",
  55069. },
  55070. feral: {
  55071. height: math.unit(5.5, "meter"),
  55072. name: "Front",
  55073. image: {
  55074. source: "./media/characters/plum/feral.svg",
  55075. extra: 568/403,
  55076. bottom: 51/619
  55077. },
  55078. form: "feral",
  55079. default: true
  55080. },
  55081. head: {
  55082. height: math.unit(1.46, "meter"),
  55083. name: "Head",
  55084. image: {
  55085. source: "./media/characters/plum/head.svg"
  55086. },
  55087. form: "taur"
  55088. },
  55089. tailTop: {
  55090. height: math.unit(5.6, "meter"),
  55091. name: "Tail (Top)",
  55092. image: {
  55093. source: "./media/characters/plum/tail-top.svg"
  55094. },
  55095. form: "taur",
  55096. },
  55097. tailBottom: {
  55098. height: math.unit(5.6, "meter"),
  55099. name: "Tail (Bottom)",
  55100. image: {
  55101. source: "./media/characters/plum/tail-bottom.svg"
  55102. },
  55103. form: "taur",
  55104. },
  55105. feralHead: {
  55106. height: math.unit(2.56549521, "meter"),
  55107. name: "Head",
  55108. image: {
  55109. source: "./media/characters/plum/head.svg"
  55110. },
  55111. form: "feral"
  55112. },
  55113. feralTailTop: {
  55114. height: math.unit(5.44728435, "meter"),
  55115. name: "Tail (Top)",
  55116. image: {
  55117. source: "./media/characters/plum/tail-top.svg"
  55118. },
  55119. form: "feral",
  55120. },
  55121. feralTailBottom: {
  55122. height: math.unit(5.44728435, "meter"),
  55123. name: "Tail (Bottom)",
  55124. image: {
  55125. source: "./media/characters/plum/tail-bottom.svg"
  55126. },
  55127. form: "feral",
  55128. },
  55129. },
  55130. [
  55131. {
  55132. name: "Normal",
  55133. height: math.unit(6, "meters"),
  55134. default: true,
  55135. form: "taur"
  55136. },
  55137. {
  55138. name: "Normal",
  55139. height: math.unit(5.5, "meters"),
  55140. default: true,
  55141. form: "feral"
  55142. },
  55143. ],
  55144. {
  55145. "taur": {
  55146. name: "Taur",
  55147. default: true
  55148. },
  55149. "feral": {
  55150. name: "Feral",
  55151. },
  55152. }
  55153. ))
  55154. characterMakers.push(() => makeCharacter(
  55155. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55156. {
  55157. front: {
  55158. height: math.unit(6, "feet"),
  55159. weight: math.unit(115, "lb"),
  55160. name: "Front",
  55161. image: {
  55162. source: "./media/characters/celeste-kitsune/front.svg",
  55163. extra: 393/366,
  55164. bottom: 7/400
  55165. }
  55166. },
  55167. side: {
  55168. height: math.unit(6, "feet"),
  55169. weight: math.unit(115, "lb"),
  55170. name: "Side",
  55171. image: {
  55172. source: "./media/characters/celeste-kitsune/side.svg",
  55173. extra: 818/765,
  55174. bottom: 40/858
  55175. }
  55176. },
  55177. },
  55178. [
  55179. {
  55180. name: "Megamacro",
  55181. height: math.unit(1500, "miles"),
  55182. default: true
  55183. },
  55184. ]
  55185. ))
  55186. characterMakers.push(() => makeCharacter(
  55187. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55188. {
  55189. front: {
  55190. height: math.unit(8, "meters"),
  55191. name: "Front",
  55192. image: {
  55193. source: "./media/characters/io/front.svg",
  55194. extra: 865/722,
  55195. bottom: 58/923
  55196. }
  55197. },
  55198. back: {
  55199. height: math.unit(8, "meters"),
  55200. name: "Back",
  55201. image: {
  55202. source: "./media/characters/io/back.svg",
  55203. extra: 920/776,
  55204. bottom: 42/962
  55205. }
  55206. },
  55207. head: {
  55208. height: math.unit(5.09, "meters"),
  55209. name: "Head",
  55210. image: {
  55211. source: "./media/characters/io/head.svg"
  55212. }
  55213. },
  55214. hand: {
  55215. height: math.unit(1.6, "meters"),
  55216. name: "Hand",
  55217. image: {
  55218. source: "./media/characters/io/hand.svg"
  55219. }
  55220. },
  55221. foot: {
  55222. height: math.unit(2.4, "meters"),
  55223. name: "Foot",
  55224. image: {
  55225. source: "./media/characters/io/foot.svg"
  55226. }
  55227. },
  55228. },
  55229. [
  55230. {
  55231. name: "Normal",
  55232. height: math.unit(8, "meters"),
  55233. default: true
  55234. },
  55235. ]
  55236. ))
  55237. characterMakers.push(() => makeCharacter(
  55238. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55239. {
  55240. side: {
  55241. height: math.unit(6 + 3/12, "feet"),
  55242. weight: math.unit(225, "lb"),
  55243. name: "Side",
  55244. image: {
  55245. source: "./media/characters/silas/side.svg",
  55246. extra: 703/653,
  55247. bottom: 23/726
  55248. },
  55249. extraAttributes: {
  55250. "pawLength": {
  55251. name: "Paw Length",
  55252. power: 1,
  55253. type: "length",
  55254. base: math.unit(12, "inches")
  55255. },
  55256. "pawWidth": {
  55257. name: "Paw Width",
  55258. power: 1,
  55259. type: "length",
  55260. base: math.unit(4.5, "inches")
  55261. },
  55262. "pawArea": {
  55263. name: "Paw Area",
  55264. power: 2,
  55265. type: "area",
  55266. base: math.unit(12 * 4.5, "inches^2")
  55267. },
  55268. }
  55269. },
  55270. },
  55271. [
  55272. {
  55273. name: "Normal",
  55274. height: math.unit(6 + 3/12, "feet"),
  55275. default: true
  55276. },
  55277. ]
  55278. ))
  55279. characterMakers.push(() => makeCharacter(
  55280. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55281. {
  55282. back: {
  55283. height: math.unit(1.6, "meters"),
  55284. weight: math.unit(150, "lb"),
  55285. name: "Back",
  55286. image: {
  55287. source: "./media/characters/zari/back.svg",
  55288. extra: 424/411,
  55289. bottom: 32/456
  55290. },
  55291. extraAttributes: {
  55292. "bladderCapacity": {
  55293. name: "Bladder Size",
  55294. power: 3,
  55295. type: "volume",
  55296. base: math.unit(500, "mL")
  55297. },
  55298. "bladderFlow": {
  55299. name: "Flow Rate",
  55300. power: 3,
  55301. type: "volume",
  55302. base: math.unit(25, "mL")
  55303. },
  55304. }
  55305. },
  55306. },
  55307. [
  55308. {
  55309. name: "Normal",
  55310. height: math.unit(1.6, "meters"),
  55311. default: true
  55312. },
  55313. ]
  55314. ))
  55315. characterMakers.push(() => makeCharacter(
  55316. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55317. {
  55318. front: {
  55319. height: math.unit(25, "feet"),
  55320. weight: math.unit(5, "tons"),
  55321. name: "Front",
  55322. image: {
  55323. source: "./media/characters/charlie-human/front.svg",
  55324. extra: 1870/1740,
  55325. bottom: 102/1972
  55326. },
  55327. extraAttributes: {
  55328. "dickLength": {
  55329. name: "Dick Length",
  55330. power: 1,
  55331. type: "length",
  55332. base: math.unit(9, "feet")
  55333. },
  55334. }
  55335. },
  55336. back: {
  55337. height: math.unit(25, "feet"),
  55338. weight: math.unit(5, "tons"),
  55339. name: "Back",
  55340. image: {
  55341. source: "./media/characters/charlie-human/back.svg",
  55342. extra: 1858/1733,
  55343. bottom: 105/1963
  55344. },
  55345. extraAttributes: {
  55346. "dickLength": {
  55347. name: "Dick Length",
  55348. power: 1,
  55349. type: "length",
  55350. base: math.unit(9, "feet")
  55351. },
  55352. }
  55353. },
  55354. },
  55355. [
  55356. {
  55357. name: "\"Normal\"",
  55358. height: math.unit(6 + 4/12, "feet")
  55359. },
  55360. {
  55361. name: "Big",
  55362. height: math.unit(25, "feet"),
  55363. default: true
  55364. },
  55365. ]
  55366. ))
  55367. characterMakers.push(() => makeCharacter(
  55368. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55369. {
  55370. front: {
  55371. height: math.unit(6 + 4/12, "feet"),
  55372. weight: math.unit(320, "lb"),
  55373. name: "Front",
  55374. image: {
  55375. source: "./media/characters/ookitsu/front.svg",
  55376. extra: 1160/976,
  55377. bottom: 38/1198
  55378. }
  55379. },
  55380. frontNsfw: {
  55381. height: math.unit(6 + 4/12, "feet"),
  55382. weight: math.unit(320, "lb"),
  55383. name: "Front (NSFW)",
  55384. image: {
  55385. source: "./media/characters/ookitsu/front-nsfw.svg",
  55386. extra: 1160/976,
  55387. bottom: 38/1198
  55388. }
  55389. },
  55390. back: {
  55391. height: math.unit(6 + 4/12, "feet"),
  55392. weight: math.unit(320, "lb"),
  55393. name: "Back",
  55394. image: {
  55395. source: "./media/characters/ookitsu/back.svg",
  55396. extra: 1030/975,
  55397. bottom: 70/1100
  55398. }
  55399. },
  55400. head: {
  55401. height: math.unit(1.79, "feet"),
  55402. name: "Head",
  55403. image: {
  55404. source: "./media/characters/ookitsu/head.svg"
  55405. }
  55406. },
  55407. hand: {
  55408. height: math.unit(0.92, "feet"),
  55409. name: "Hand",
  55410. image: {
  55411. source: "./media/characters/ookitsu/hand.svg"
  55412. }
  55413. },
  55414. tails: {
  55415. height: math.unit(3.3, "feet"),
  55416. name: "Tails",
  55417. image: {
  55418. source: "./media/characters/ookitsu/tails.svg"
  55419. }
  55420. },
  55421. dick: {
  55422. height: math.unit(1.10833, "feet"),
  55423. name: "Dick",
  55424. image: {
  55425. source: "./media/characters/ookitsu/dick.svg"
  55426. }
  55427. },
  55428. },
  55429. [
  55430. {
  55431. name: "Normal",
  55432. height: math.unit(6 + 4/12, "feet"),
  55433. default: true
  55434. },
  55435. {
  55436. name: "Macro",
  55437. height: math.unit(30, "feet")
  55438. },
  55439. ]
  55440. ))
  55441. characterMakers.push(() => makeCharacter(
  55442. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55443. {
  55444. anthroFront: {
  55445. height: math.unit(6, "feet"),
  55446. weight: math.unit(250, "lb"),
  55447. name: "Front",
  55448. image: {
  55449. source: "./media/characters/jhusky/anthro-front.svg",
  55450. extra: 474/439,
  55451. bottom: 7/481
  55452. },
  55453. form: "anthro",
  55454. default: true
  55455. },
  55456. taurSideSfw: {
  55457. height: math.unit(6 + 4/12, "feet"),
  55458. weight: math.unit(500, "lb"),
  55459. name: "Side (SFW)",
  55460. image: {
  55461. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55462. extra: 1741/1629,
  55463. bottom: 196/1937
  55464. },
  55465. form: "taur",
  55466. default: true
  55467. },
  55468. taurSideNsfw: {
  55469. height: math.unit(6 + 4/12, "feet"),
  55470. weight: math.unit(500, "lb"),
  55471. name: "Taur (NSFW)",
  55472. image: {
  55473. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55474. extra: 1741/1629,
  55475. bottom: 196/1937
  55476. },
  55477. form: "taur",
  55478. },
  55479. },
  55480. [
  55481. {
  55482. name: "Huge",
  55483. height: math.unit(500, "feet"),
  55484. form: "anthro"
  55485. },
  55486. {
  55487. name: "Macro",
  55488. height: math.unit(1000, "feet"),
  55489. default: true,
  55490. form: "anthro"
  55491. },
  55492. {
  55493. name: "Megamacro",
  55494. height: math.unit(10000, "feet"),
  55495. form: "anthro"
  55496. },
  55497. {
  55498. name: "Huge",
  55499. height: math.unit(528, "feet"),
  55500. form: "taur"
  55501. },
  55502. {
  55503. name: "Macro",
  55504. height: math.unit(1056, "feet"),
  55505. default: true,
  55506. form: "taur"
  55507. },
  55508. {
  55509. name: "Megamacro",
  55510. height: math.unit(10556, "feet"),
  55511. form: "taur"
  55512. },
  55513. ],
  55514. {
  55515. "anthro": {
  55516. name: "Anthro",
  55517. default: true
  55518. },
  55519. "taur": {
  55520. name: "Taur",
  55521. },
  55522. }
  55523. ))
  55524. characterMakers.push(() => makeCharacter(
  55525. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55526. {
  55527. front: {
  55528. height: math.unit(8, "feet"),
  55529. weight: math.unit(500, "lb"),
  55530. name: "Front",
  55531. image: {
  55532. source: "./media/characters/armail/front.svg",
  55533. extra: 1753/1669,
  55534. bottom: 155/1908
  55535. }
  55536. },
  55537. back: {
  55538. height: math.unit(8, "feet"),
  55539. weight: math.unit(500, "lb"),
  55540. name: "Back",
  55541. image: {
  55542. source: "./media/characters/armail/back.svg",
  55543. extra: 1872/1803,
  55544. bottom: 63/1935
  55545. }
  55546. },
  55547. },
  55548. [
  55549. {
  55550. name: "Micro",
  55551. height: math.unit(0.25, "feet")
  55552. },
  55553. {
  55554. name: "Normal",
  55555. height: math.unit(8, "feet"),
  55556. default: true
  55557. },
  55558. {
  55559. name: "Mini-macro",
  55560. height: math.unit(30, "feet")
  55561. },
  55562. {
  55563. name: "Macro",
  55564. height: math.unit(400, "feet")
  55565. },
  55566. {
  55567. name: "Mega-macro",
  55568. height: math.unit(6000, "feet")
  55569. },
  55570. ]
  55571. ))
  55572. characterMakers.push(() => makeCharacter(
  55573. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55574. {
  55575. front: {
  55576. height: math.unit(6 + 7/12, "feet"),
  55577. weight: math.unit(210, "lb"),
  55578. name: "Front",
  55579. image: {
  55580. source: "./media/characters/wilfred-t-buxton/front.svg",
  55581. extra: 1068/882,
  55582. bottom: 28/1096
  55583. }
  55584. },
  55585. },
  55586. [
  55587. {
  55588. name: "Normal",
  55589. height: math.unit(6 + 7/12, "feet"),
  55590. default: true
  55591. },
  55592. ]
  55593. ))
  55594. characterMakers.push(() => makeCharacter(
  55595. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55596. {
  55597. front: {
  55598. height: math.unit(5 + 2/12, "feet"),
  55599. weight: math.unit(120, "lb"),
  55600. name: "Front",
  55601. image: {
  55602. source: "./media/characters/leighton-marrow/front.svg",
  55603. extra: 441/409,
  55604. bottom: 37/478
  55605. }
  55606. },
  55607. },
  55608. [
  55609. {
  55610. name: "Normal",
  55611. height: math.unit(5 + 2/12, "feet"),
  55612. default: true
  55613. },
  55614. ]
  55615. ))
  55616. characterMakers.push(() => makeCharacter(
  55617. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55618. {
  55619. front: {
  55620. height: math.unit(4, "meters"),
  55621. weight: math.unit(1200, "kg"),
  55622. name: "Front",
  55623. image: {
  55624. source: "./media/characters/licos/front.svg",
  55625. extra: 1727/1604,
  55626. bottom: 101/1828
  55627. },
  55628. form: "anthro",
  55629. default: true
  55630. },
  55631. taur_side: {
  55632. height: math.unit(20, "meters"),
  55633. weight: math.unit(1100000, "kg"),
  55634. name: "Side",
  55635. image: {
  55636. source: "./media/characters/licos/taur.svg",
  55637. extra: 1158/1091,
  55638. bottom: 80/1238
  55639. },
  55640. form: "taur",
  55641. default: true
  55642. },
  55643. },
  55644. [
  55645. {
  55646. name: "Normal",
  55647. height: math.unit(4, "meters"),
  55648. default: true,
  55649. form: "anthro"
  55650. },
  55651. {
  55652. name: "Normal",
  55653. height: math.unit(20, "meters"),
  55654. default: true,
  55655. form: "taur"
  55656. },
  55657. ],
  55658. {
  55659. "anthro": {
  55660. name: "Anthro",
  55661. default: true
  55662. },
  55663. "taur": {
  55664. name: "Taur",
  55665. },
  55666. }
  55667. ))
  55668. characterMakers.push(() => makeCharacter(
  55669. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55670. {
  55671. front: {
  55672. height: math.unit(10 + 3/12, "feet"),
  55673. name: "Front",
  55674. image: {
  55675. source: "./media/characters/theo-monkey/front.svg",
  55676. extra: 1735/1658,
  55677. bottom: 73/1808
  55678. }
  55679. },
  55680. back: {
  55681. height: math.unit(10 + 3/12, "feet"),
  55682. name: "Back",
  55683. image: {
  55684. source: "./media/characters/theo-monkey/back.svg",
  55685. extra: 1742/1664,
  55686. bottom: 33/1775
  55687. }
  55688. },
  55689. head: {
  55690. height: math.unit(2.29, "feet"),
  55691. name: "Head",
  55692. image: {
  55693. source: "./media/characters/theo-monkey/head.svg"
  55694. }
  55695. },
  55696. handPalm: {
  55697. height: math.unit(1.73, "feet"),
  55698. name: "Hand (Palm)",
  55699. image: {
  55700. source: "./media/characters/theo-monkey/hand-palm.svg"
  55701. }
  55702. },
  55703. handBack: {
  55704. height: math.unit(1.63, "feet"),
  55705. name: "Hand (Back)",
  55706. image: {
  55707. source: "./media/characters/theo-monkey/hand-back.svg"
  55708. }
  55709. },
  55710. footSole: {
  55711. height: math.unit(2.15, "feet"),
  55712. name: "Foot (Sole)",
  55713. image: {
  55714. source: "./media/characters/theo-monkey/foot-sole.svg"
  55715. }
  55716. },
  55717. footSide: {
  55718. height: math.unit(1.6, "feet"),
  55719. name: "Foot (Side)",
  55720. image: {
  55721. source: "./media/characters/theo-monkey/foot-side.svg"
  55722. }
  55723. },
  55724. },
  55725. [
  55726. {
  55727. name: "Normal",
  55728. height: math.unit(10 + 3/12, "feet"),
  55729. default: true
  55730. },
  55731. ]
  55732. ))
  55733. characterMakers.push(() => makeCharacter(
  55734. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55735. {
  55736. front: {
  55737. height: math.unit(11, "feet"),
  55738. weight: math.unit(3000, "lb"),
  55739. preyCapacity: math.unit(10, "people"),
  55740. name: "Front",
  55741. image: {
  55742. source: "./media/characters/brook/front.svg",
  55743. extra: 909/835,
  55744. bottom: 108/1017
  55745. }
  55746. },
  55747. back: {
  55748. height: math.unit(11, "feet"),
  55749. weight: math.unit(3000, "lb"),
  55750. preyCapacity: math.unit(10, "people"),
  55751. name: "Back",
  55752. image: {
  55753. source: "./media/characters/brook/back.svg",
  55754. extra: 976/916,
  55755. bottom: 34/1010
  55756. }
  55757. },
  55758. backAlt: {
  55759. height: math.unit(11, "feet"),
  55760. weight: math.unit(3000, "lb"),
  55761. preyCapacity: math.unit(10, "people"),
  55762. name: "Back (Alt)",
  55763. image: {
  55764. source: "./media/characters/brook/back-alt.svg",
  55765. extra: 1283/1213,
  55766. bottom: 35/1318
  55767. }
  55768. },
  55769. bust: {
  55770. height: math.unit(9.0859030837, "feet"),
  55771. weight: math.unit(3000, "lb"),
  55772. preyCapacity: math.unit(10, "people"),
  55773. name: "Bust",
  55774. image: {
  55775. source: "./media/characters/brook/bust.svg",
  55776. extra: 2043/1923,
  55777. bottom: 0/2043
  55778. }
  55779. },
  55780. },
  55781. [
  55782. {
  55783. name: "Small",
  55784. height: math.unit(11, "feet"),
  55785. default: true
  55786. },
  55787. {
  55788. name: "Towering",
  55789. height: math.unit(5, "km")
  55790. },
  55791. {
  55792. name: "Enormous",
  55793. height: math.unit(25, "earths")
  55794. },
  55795. ]
  55796. ))
  55797. characterMakers.push(() => makeCharacter(
  55798. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55799. {
  55800. front: {
  55801. height: math.unit(4, "feet"),
  55802. weight: math.unit(150, "lb"),
  55803. name: "Front",
  55804. image: {
  55805. source: "./media/characters/squishi/front.svg",
  55806. extra: 1428/1271,
  55807. bottom: 30/1458
  55808. },
  55809. extraAttributes: {
  55810. "pawSize": {
  55811. name: "Paw Size",
  55812. power: 1,
  55813. type: "length",
  55814. base: math.unit(14, "ShoeSizeMensUS"),
  55815. defaultUnit: "ShoeSizeMensUS"
  55816. },
  55817. }
  55818. },
  55819. side: {
  55820. height: math.unit(4, "feet"),
  55821. weight: math.unit(150, "lb"),
  55822. name: "Side",
  55823. image: {
  55824. source: "./media/characters/squishi/side.svg",
  55825. extra: 1428/1271,
  55826. bottom: 30/1458
  55827. },
  55828. extraAttributes: {
  55829. "pawSize": {
  55830. name: "Paw Size",
  55831. power: 1,
  55832. type: "length",
  55833. base: math.unit(14, "ShoeSizeMensUS"),
  55834. defaultUnit: "ShoeSizeMensUS"
  55835. },
  55836. }
  55837. },
  55838. back: {
  55839. height: math.unit(4, "feet"),
  55840. weight: math.unit(150, "lb"),
  55841. name: "Back",
  55842. image: {
  55843. source: "./media/characters/squishi/back.svg",
  55844. extra: 1428/1271,
  55845. bottom: 30/1458
  55846. },
  55847. extraAttributes: {
  55848. "pawSize": {
  55849. name: "Paw Size",
  55850. power: 1,
  55851. type: "length",
  55852. base: math.unit(14, "ShoeSizeMensUS"),
  55853. defaultUnit: "ShoeSizeMensUS"
  55854. },
  55855. }
  55856. },
  55857. },
  55858. [
  55859. {
  55860. name: "Normal",
  55861. height: math.unit(4, "feet"),
  55862. default: true
  55863. },
  55864. ]
  55865. ))
  55866. characterMakers.push(() => makeCharacter(
  55867. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55868. {
  55869. front: {
  55870. height: math.unit(7 + 8/12, "feet"),
  55871. weight: math.unit(333, "lb"),
  55872. name: "Front",
  55873. image: {
  55874. source: "./media/characters/vincent-vasroc/front.svg",
  55875. extra: 1962/1860,
  55876. bottom: 41/2003
  55877. }
  55878. },
  55879. back: {
  55880. height: math.unit(7 + 8/12, "feet"),
  55881. weight: math.unit(333, "lb"),
  55882. name: "Back",
  55883. image: {
  55884. source: "./media/characters/vincent-vasroc/back.svg",
  55885. extra: 1952/1815,
  55886. bottom: 33/1985
  55887. }
  55888. },
  55889. paw: {
  55890. height: math.unit(1.24, "feet"),
  55891. name: "Paw",
  55892. image: {
  55893. source: "./media/characters/vincent-vasroc/paw.svg"
  55894. }
  55895. },
  55896. ear: {
  55897. height: math.unit(0.75, "feet"),
  55898. name: "Ear",
  55899. image: {
  55900. source: "./media/characters/vincent-vasroc/ear.svg"
  55901. }
  55902. },
  55903. },
  55904. [
  55905. {
  55906. name: "Nano",
  55907. height: math.unit(92, "micrometers")
  55908. },
  55909. {
  55910. name: "Normal",
  55911. height: math.unit(7 + 8/12, "feet"),
  55912. default: true
  55913. },
  55914. ]
  55915. ))
  55916. characterMakers.push(() => makeCharacter(
  55917. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55918. {
  55919. frontNsfw: {
  55920. height: math.unit(40, "feet"),
  55921. weight: math.unit(58, "tons"),
  55922. name: "Front (NSFW)",
  55923. image: {
  55924. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55925. extra: 1265/965,
  55926. bottom: 155/1420
  55927. }
  55928. },
  55929. frontSfw: {
  55930. height: math.unit(40, "feet"),
  55931. weight: math.unit(58, "tons"),
  55932. name: "Front (SFW)",
  55933. image: {
  55934. source: "./media/characters/ru-kahn/front-sfw.svg",
  55935. extra: 1265/965,
  55936. bottom: 80/1345
  55937. }
  55938. },
  55939. },
  55940. [
  55941. {
  55942. name: "Small",
  55943. height: math.unit(4, "feet")
  55944. },
  55945. {
  55946. name: "Normal",
  55947. height: math.unit(40, "feet"),
  55948. default: true
  55949. },
  55950. {
  55951. name: "Macro",
  55952. height: math.unit(400, "feet")
  55953. },
  55954. ]
  55955. ))
  55956. characterMakers.push(() => makeCharacter(
  55957. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55958. {
  55959. frontNude: {
  55960. height: math.unit(6 + 5/12, "feet"),
  55961. name: "Front (Nude)",
  55962. image: {
  55963. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55964. extra: 1369/1366,
  55965. bottom: 68/1437
  55966. }
  55967. },
  55968. frontDressed: {
  55969. height: math.unit(6 + 5/12, "feet"),
  55970. name: "Front (Dressed)",
  55971. image: {
  55972. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55973. extra: 1369/1366,
  55974. bottom: 68/1437
  55975. }
  55976. },
  55977. },
  55978. [
  55979. {
  55980. name: "Normal",
  55981. height: math.unit(6 + 5/12, "feet"),
  55982. default: true
  55983. },
  55984. {
  55985. name: "Maximum",
  55986. height: math.unit(1930, "feet")
  55987. },
  55988. ]
  55989. ))
  55990. characterMakers.push(() => makeCharacter(
  55991. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55992. {
  55993. front: {
  55994. height: math.unit(5 + 6/12, "feet"),
  55995. name: "Front",
  55996. image: {
  55997. source: "./media/characters/kaja/front.svg",
  55998. extra: 1874/1514,
  55999. bottom: 117/1991
  56000. }
  56001. },
  56002. },
  56003. [
  56004. {
  56005. name: "Normal",
  56006. height: math.unit(5 + 6/12, "feet"),
  56007. default: true
  56008. },
  56009. ]
  56010. ))
  56011. characterMakers.push(() => makeCharacter(
  56012. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56013. {
  56014. front: {
  56015. height: math.unit(5 + 9/12, "feet"),
  56016. weight: math.unit(200, "lb"),
  56017. name: "Front",
  56018. image: {
  56019. source: "./media/characters/mark-smith/front.svg",
  56020. extra: 1004/943,
  56021. bottom: 58/1062
  56022. }
  56023. },
  56024. back: {
  56025. height: math.unit(5 + 9/12, "feet"),
  56026. weight: math.unit(200, "lb"),
  56027. name: "Back",
  56028. image: {
  56029. source: "./media/characters/mark-smith/back.svg",
  56030. extra: 1023/953,
  56031. bottom: 24/1047
  56032. }
  56033. },
  56034. head: {
  56035. height: math.unit(1.82, "feet"),
  56036. name: "Head",
  56037. image: {
  56038. source: "./media/characters/mark-smith/head.svg"
  56039. }
  56040. },
  56041. hand: {
  56042. height: math.unit(1.4, "feet"),
  56043. name: "Hand",
  56044. image: {
  56045. source: "./media/characters/mark-smith/hand.svg"
  56046. }
  56047. },
  56048. paw: {
  56049. height: math.unit(1.69, "feet"),
  56050. name: "Paw",
  56051. image: {
  56052. source: "./media/characters/mark-smith/paw.svg"
  56053. }
  56054. },
  56055. },
  56056. [
  56057. {
  56058. name: "Micro",
  56059. height: math.unit(0.25, "inches")
  56060. },
  56061. {
  56062. name: "Normal",
  56063. height: math.unit(5 + 9/12, "feet"),
  56064. default: true
  56065. },
  56066. {
  56067. name: "Macro",
  56068. height: math.unit(500, "feet")
  56069. },
  56070. ]
  56071. ))
  56072. characterMakers.push(() => makeCharacter(
  56073. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56074. {
  56075. frontNude: {
  56076. height: math.unit(6, "feet"),
  56077. name: "Front (Nude)",
  56078. image: {
  56079. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56080. extra: 1384/1321,
  56081. bottom: 57/1441
  56082. }
  56083. },
  56084. frontDressed: {
  56085. height: math.unit(6, "feet"),
  56086. name: "Front (Dressed)",
  56087. image: {
  56088. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56089. extra: 1384/1321,
  56090. bottom: 57/1441
  56091. }
  56092. },
  56093. },
  56094. [
  56095. {
  56096. name: "Normal",
  56097. height: math.unit(6, "feet"),
  56098. default: true
  56099. },
  56100. {
  56101. name: "Maximum",
  56102. height: math.unit(1776, "feet")
  56103. },
  56104. ]
  56105. ))
  56106. characterMakers.push(() => makeCharacter(
  56107. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56108. {
  56109. front: {
  56110. height: math.unit(2 + 4/12, "feet"),
  56111. weight: math.unit(350, "lb"),
  56112. name: "Front",
  56113. image: {
  56114. source: "./media/characters/devos/front.svg",
  56115. extra: 958/852,
  56116. bottom: 143/1101
  56117. }
  56118. },
  56119. },
  56120. [
  56121. {
  56122. name: "Base",
  56123. height: math.unit(2 + 4/12, "feet"),
  56124. default: true
  56125. },
  56126. ]
  56127. ))
  56128. characterMakers.push(() => makeCharacter(
  56129. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56130. {
  56131. front: {
  56132. height: math.unit(9 + 2/12, "feet"),
  56133. name: "Front",
  56134. image: {
  56135. source: "./media/characters/hiveheart/front.svg",
  56136. extra: 394/364,
  56137. bottom: 65/459
  56138. }
  56139. },
  56140. back: {
  56141. height: math.unit(9 + 2/12, "feet"),
  56142. name: "Back",
  56143. image: {
  56144. source: "./media/characters/hiveheart/back.svg",
  56145. extra: 374/357,
  56146. bottom: 63/437
  56147. }
  56148. },
  56149. },
  56150. [
  56151. {
  56152. name: "Base",
  56153. height: math.unit(9 + 2/12, "feet"),
  56154. default: true
  56155. },
  56156. ]
  56157. ))
  56158. characterMakers.push(() => makeCharacter(
  56159. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56160. {
  56161. front: {
  56162. height: math.unit(2.5, "inches"),
  56163. weight: math.unit(0.6, "oz"),
  56164. name: "Front",
  56165. image: {
  56166. source: "./media/characters/bryn/front.svg",
  56167. extra: 1480/1205,
  56168. bottom: 27/1507
  56169. }
  56170. },
  56171. back: {
  56172. height: math.unit(2.5, "inches"),
  56173. weight: math.unit(0.6, "oz"),
  56174. name: "Back",
  56175. image: {
  56176. source: "./media/characters/bryn/back.svg",
  56177. extra: 1475/1201,
  56178. bottom: 39/1514
  56179. }
  56180. },
  56181. foot: {
  56182. height: math.unit(0.4, "inches"),
  56183. name: "Foot",
  56184. image: {
  56185. source: "./media/characters/bryn/foot.svg"
  56186. }
  56187. },
  56188. },
  56189. [
  56190. {
  56191. name: "Normal",
  56192. height: math.unit(2.5, "inches"),
  56193. default: true
  56194. },
  56195. ]
  56196. ))
  56197. characterMakers.push(() => makeCharacter(
  56198. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56199. {
  56200. side: {
  56201. height: math.unit(7, "feet"),
  56202. weight: math.unit(657, "kg"),
  56203. name: "Side",
  56204. image: {
  56205. source: "./media/characters/delta/side.svg",
  56206. extra: 781/212,
  56207. bottom: 7/788
  56208. },
  56209. extraAttributes: {
  56210. "wingspan": {
  56211. name: "Wingspan",
  56212. power: 1,
  56213. type: "length",
  56214. base: math.unit(48, "feet")
  56215. },
  56216. "length": {
  56217. name: "Length",
  56218. power: 1,
  56219. type: "length",
  56220. base: math.unit(21, "feet")
  56221. },
  56222. "pawSize": {
  56223. name: "Paw Size",
  56224. power: 2,
  56225. type: "area",
  56226. base: math.unit(1.5*1.4, "feet^2")
  56227. },
  56228. }
  56229. },
  56230. },
  56231. [
  56232. {
  56233. name: "Normal",
  56234. height: math.unit(6, "feet"),
  56235. default: true
  56236. },
  56237. ]
  56238. ))
  56239. characterMakers.push(() => makeCharacter(
  56240. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56241. {
  56242. front: {
  56243. height: math.unit(6, "feet"),
  56244. name: "Front",
  56245. image: {
  56246. source: "./media/characters/pyrow/front.svg",
  56247. extra: 513/486,
  56248. bottom: 14/527
  56249. }
  56250. },
  56251. frontWing: {
  56252. height: math.unit(6, "feet"),
  56253. name: "Front (Wing)",
  56254. image: {
  56255. source: "./media/characters/pyrow/front-wing.svg",
  56256. extra: 539/383,
  56257. bottom: 20/559
  56258. }
  56259. },
  56260. back: {
  56261. height: math.unit(6, "feet"),
  56262. name: "Back",
  56263. image: {
  56264. source: "./media/characters/pyrow/back.svg",
  56265. extra: 500/473,
  56266. bottom: 9/509
  56267. }
  56268. },
  56269. },
  56270. [
  56271. {
  56272. name: "Normal",
  56273. height: math.unit(6, "feet"),
  56274. default: true
  56275. },
  56276. ]
  56277. ))
  56278. characterMakers.push(() => makeCharacter(
  56279. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56280. {
  56281. front: {
  56282. height: math.unit(5, "meters"),
  56283. weight: math.unit(3, "tonnes"),
  56284. name: "Front",
  56285. image: {
  56286. source: "./media/characters/velikan/front.svg",
  56287. extra: 867/744,
  56288. bottom: 71/938
  56289. },
  56290. extraAttributes: {
  56291. "shoeSize": {
  56292. name: "Shoe Size",
  56293. power: 1,
  56294. type: "length",
  56295. base: math.unit(135, "ShoeSizeUK"),
  56296. defaultUnit: "ShoeSizeUK"
  56297. },
  56298. }
  56299. },
  56300. },
  56301. [
  56302. {
  56303. name: "Normal",
  56304. height: math.unit(5, "meters"),
  56305. default: true
  56306. },
  56307. {
  56308. name: "Macro",
  56309. height: math.unit(1, "km")
  56310. },
  56311. {
  56312. name: "Mega Macro",
  56313. height: math.unit(100, "km")
  56314. },
  56315. {
  56316. name: "Giga Macro",
  56317. height: math.unit(2, "megameters")
  56318. },
  56319. {
  56320. name: "Planetary",
  56321. height: math.unit(22, "megameters")
  56322. },
  56323. {
  56324. name: "Solar",
  56325. height: math.unit(8, "gigameters")
  56326. },
  56327. {
  56328. name: "Cosmic",
  56329. height: math.unit(10, "zettameters")
  56330. },
  56331. {
  56332. name: "Omni",
  56333. height: math.unit(9e260, "multiverses")
  56334. },
  56335. ]
  56336. ))
  56337. characterMakers.push(() => makeCharacter(
  56338. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56339. {
  56340. front: {
  56341. height: math.unit(4 + 3/12, "feet"),
  56342. weight: math.unit(90, "lb"),
  56343. name: "Front",
  56344. image: {
  56345. source: "./media/characters/sabiki/front.svg",
  56346. extra: 1662/1423,
  56347. bottom: 65/1727
  56348. }
  56349. },
  56350. },
  56351. [
  56352. {
  56353. name: "Normal",
  56354. height: math.unit(4 + 3/12, "feet"),
  56355. default: true
  56356. },
  56357. ]
  56358. ))
  56359. characterMakers.push(() => makeCharacter(
  56360. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56361. {
  56362. frontSfw: {
  56363. height: math.unit(2, "mm"),
  56364. name: "Front (SFW)",
  56365. image: {
  56366. source: "./media/characters/carmel/front-sfw.svg",
  56367. extra: 1131/1006,
  56368. bottom: 66/1197
  56369. }
  56370. },
  56371. frontNsfw: {
  56372. height: math.unit(2, "mm"),
  56373. name: "Front (NSFW)",
  56374. image: {
  56375. source: "./media/characters/carmel/front-nsfw.svg",
  56376. extra: 1131/1006,
  56377. bottom: 66/1197
  56378. }
  56379. },
  56380. foot: {
  56381. height: math.unit(0.3, "mm"),
  56382. name: "Foot",
  56383. image: {
  56384. source: "./media/characters/carmel/foot.svg"
  56385. }
  56386. },
  56387. tongue: {
  56388. height: math.unit(0.71, "mm"),
  56389. name: "Tongue",
  56390. image: {
  56391. source: "./media/characters/carmel/tongue.svg"
  56392. }
  56393. },
  56394. dick: {
  56395. height: math.unit(0.085, "mm"),
  56396. name: "Dick",
  56397. image: {
  56398. source: "./media/characters/carmel/dick.svg"
  56399. }
  56400. },
  56401. },
  56402. [
  56403. {
  56404. name: "Micro",
  56405. height: math.unit(2, "mm"),
  56406. default: true
  56407. },
  56408. {
  56409. name: "Normal",
  56410. height: math.unit(4 + 8/12, "feet")
  56411. },
  56412. {
  56413. name: "Mega Macro",
  56414. height: math.unit(250, "feet")
  56415. },
  56416. {
  56417. name: "BIGGER",
  56418. height: math.unit(1000, "feet")
  56419. },
  56420. {
  56421. name: "BIGGEST",
  56422. height: math.unit(2, "miles")
  56423. },
  56424. ]
  56425. ))
  56426. characterMakers.push(() => makeCharacter(
  56427. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56428. {
  56429. front: {
  56430. height: math.unit(6.5, "feet"),
  56431. weight: math.unit(198, "lb"),
  56432. name: "Front",
  56433. image: {
  56434. source: "./media/characters/tamani/anthro.svg",
  56435. extra: 930/890,
  56436. bottom: 34/964
  56437. },
  56438. form: "anthro",
  56439. default: true
  56440. },
  56441. side: {
  56442. height: math.unit(6, "feet"),
  56443. weight: math.unit(198*2, "lb"),
  56444. name: "Side",
  56445. image: {
  56446. source: "./media/characters/tamani/feral.svg",
  56447. extra: 559/519,
  56448. bottom: 43/602
  56449. },
  56450. form: "feral"
  56451. },
  56452. },
  56453. [
  56454. {
  56455. name: "Normal",
  56456. height: math.unit(6.5, "feet"),
  56457. default: true,
  56458. form: "anthro"
  56459. },
  56460. {
  56461. name: "Normal",
  56462. height: math.unit(6, "feet"),
  56463. default: true,
  56464. form: "feral"
  56465. },
  56466. ],
  56467. {
  56468. "anthro": {
  56469. name: "Anthro",
  56470. default: true
  56471. },
  56472. "feral": {
  56473. name: "Feral",
  56474. },
  56475. }
  56476. ))
  56477. characterMakers.push(() => makeCharacter(
  56478. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56479. {
  56480. front: {
  56481. height: math.unit(4 + 1/12, "feet"),
  56482. weight: math.unit(114, "lb"),
  56483. name: "Front",
  56484. image: {
  56485. source: "./media/characters/dex/front.svg",
  56486. extra: 787/680,
  56487. bottom: 18/805
  56488. }
  56489. },
  56490. side: {
  56491. height: math.unit(4 + 1/12, "feet"),
  56492. weight: math.unit(114, "lb"),
  56493. name: "Side",
  56494. image: {
  56495. source: "./media/characters/dex/side.svg",
  56496. extra: 785/680,
  56497. bottom: 12/797
  56498. }
  56499. },
  56500. back: {
  56501. height: math.unit(4 + 1/12, "feet"),
  56502. weight: math.unit(114, "lb"),
  56503. name: "Back",
  56504. image: {
  56505. source: "./media/characters/dex/back.svg",
  56506. extra: 785/681,
  56507. bottom: 17/802
  56508. }
  56509. },
  56510. loungewear: {
  56511. height: math.unit(4 + 1/12, "feet"),
  56512. weight: math.unit(114, "lb"),
  56513. name: "Loungewear",
  56514. image: {
  56515. source: "./media/characters/dex/loungewear.svg",
  56516. extra: 787/680,
  56517. bottom: 18/805
  56518. }
  56519. },
  56520. workout: {
  56521. height: math.unit(4 + 1/12, "feet"),
  56522. weight: math.unit(114, "lb"),
  56523. name: "Workout",
  56524. image: {
  56525. source: "./media/characters/dex/workout.svg",
  56526. extra: 787/680,
  56527. bottom: 18/805
  56528. }
  56529. },
  56530. schoolUniform: {
  56531. height: math.unit(4 + 1/12, "feet"),
  56532. weight: math.unit(114, "lb"),
  56533. name: "School-uniform",
  56534. image: {
  56535. source: "./media/characters/dex/school-uniform.svg",
  56536. extra: 787/680,
  56537. bottom: 18/805
  56538. }
  56539. },
  56540. maw: {
  56541. height: math.unit(0.55, "feet"),
  56542. name: "Maw",
  56543. image: {
  56544. source: "./media/characters/dex/maw.svg"
  56545. }
  56546. },
  56547. paw: {
  56548. height: math.unit(0.87, "feet"),
  56549. name: "Paw",
  56550. image: {
  56551. source: "./media/characters/dex/paw.svg"
  56552. }
  56553. },
  56554. bust: {
  56555. height: math.unit(1.67, "feet"),
  56556. name: "Bust",
  56557. image: {
  56558. source: "./media/characters/dex/bust.svg"
  56559. }
  56560. },
  56561. },
  56562. [
  56563. {
  56564. name: "Normal",
  56565. height: math.unit(4 + 1/12, "feet"),
  56566. default: true
  56567. },
  56568. ]
  56569. ))
  56570. characterMakers.push(() => makeCharacter(
  56571. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56572. {
  56573. front: {
  56574. height: math.unit(4 + 3/12, "feet"),
  56575. weight: math.unit(60, "lb"),
  56576. name: "Front",
  56577. image: {
  56578. source: "./media/characters/silke/front.svg",
  56579. extra: 1334/1122,
  56580. bottom: 21/1355
  56581. }
  56582. },
  56583. back: {
  56584. height: math.unit(4 + 3/12, "feet"),
  56585. weight: math.unit(60, "lb"),
  56586. name: "Back",
  56587. image: {
  56588. source: "./media/characters/silke/back.svg",
  56589. extra: 1328/1092,
  56590. bottom: 16/1344
  56591. }
  56592. },
  56593. dressed: {
  56594. height: math.unit(4 + 3/12, "feet"),
  56595. weight: math.unit(60, "lb"),
  56596. name: "Dressed",
  56597. image: {
  56598. source: "./media/characters/silke/dressed.svg",
  56599. extra: 1334/1122,
  56600. bottom: 43/1377
  56601. }
  56602. },
  56603. },
  56604. [
  56605. {
  56606. name: "Normal",
  56607. height: math.unit(4 + 3/12, "feet"),
  56608. default: true
  56609. },
  56610. ]
  56611. ))
  56612. characterMakers.push(() => makeCharacter(
  56613. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56614. {
  56615. front: {
  56616. height: math.unit(1.58, "meters"),
  56617. weight: math.unit(47, "kg"),
  56618. name: "Front",
  56619. image: {
  56620. source: "./media/characters/wireshark/front.svg",
  56621. extra: 883/838,
  56622. bottom: 66/949
  56623. }
  56624. },
  56625. },
  56626. [
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(1.58, "meters"),
  56630. default: true
  56631. },
  56632. ]
  56633. ))
  56634. characterMakers.push(() => makeCharacter(
  56635. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56636. {
  56637. front: {
  56638. height: math.unit(6, "meters"),
  56639. weight: math.unit(15000, "kg"),
  56640. name: "Front",
  56641. image: {
  56642. source: "./media/characters/gallagher/front.svg",
  56643. extra: 532/493,
  56644. bottom: 0/532
  56645. }
  56646. },
  56647. },
  56648. [
  56649. {
  56650. name: "Normal",
  56651. height: math.unit(6, "meters"),
  56652. default: true
  56653. },
  56654. ]
  56655. ))
  56656. characterMakers.push(() => makeCharacter(
  56657. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56658. {
  56659. front: {
  56660. height: math.unit(2.4, "meters"),
  56661. weight: math.unit(270, "kg"),
  56662. name: "Front",
  56663. image: {
  56664. source: "./media/characters/alice/front.svg",
  56665. extra: 950/900,
  56666. bottom: 36/986
  56667. }
  56668. },
  56669. side: {
  56670. height: math.unit(2.4, "meters"),
  56671. weight: math.unit(270, "kg"),
  56672. name: "Side",
  56673. image: {
  56674. source: "./media/characters/alice/side.svg",
  56675. extra: 921/876,
  56676. bottom: 19/940
  56677. }
  56678. },
  56679. dressed: {
  56680. height: math.unit(2.4, "meters"),
  56681. weight: math.unit(270, "kg"),
  56682. name: "Dressed",
  56683. image: {
  56684. source: "./media/characters/alice/dressed.svg",
  56685. extra: 905/850,
  56686. bottom: 81/986
  56687. }
  56688. },
  56689. fishnet: {
  56690. height: math.unit(2.4, "meters"),
  56691. weight: math.unit(270, "kg"),
  56692. name: "Fishnet",
  56693. image: {
  56694. source: "./media/characters/alice/fishnet.svg",
  56695. extra: 905/850,
  56696. bottom: 81/986
  56697. }
  56698. },
  56699. },
  56700. [
  56701. {
  56702. name: "Normal",
  56703. height: math.unit(2.4, "meters"),
  56704. default: true
  56705. },
  56706. ]
  56707. ))
  56708. characterMakers.push(() => makeCharacter(
  56709. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56710. {
  56711. front: {
  56712. height: math.unit(175.25, "feet"),
  56713. name: "Front",
  56714. image: {
  56715. source: "./media/characters/fio/front.svg",
  56716. extra: 1883/1591,
  56717. bottom: 34/1917
  56718. }
  56719. },
  56720. },
  56721. [
  56722. {
  56723. name: "Normal",
  56724. height: math.unit(175.25, "cm"),
  56725. default: true
  56726. },
  56727. ]
  56728. ))
  56729. characterMakers.push(() => makeCharacter(
  56730. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56731. {
  56732. side: {
  56733. height: math.unit(6, "meters"),
  56734. weight: math.unit(3400, "kg"),
  56735. preyCapacity: math.unit(1700, "liters"),
  56736. name: "Side",
  56737. image: {
  56738. source: "./media/characters/hass/side.svg",
  56739. extra: 1058/997,
  56740. bottom: 177/1235
  56741. }
  56742. },
  56743. feeding: {
  56744. height: math.unit(6*0.63, "meters"),
  56745. weight: math.unit(3400, "kg"),
  56746. preyCapacity: math.unit(1700, "liters"),
  56747. name: "Feeding",
  56748. image: {
  56749. source: "./media/characters/hass/feeding.svg",
  56750. extra: 689/579,
  56751. bottom: 146/835
  56752. }
  56753. },
  56754. guts: {
  56755. height: math.unit(6, "meters"),
  56756. weight: math.unit(3400, "kg"),
  56757. name: "Guts",
  56758. image: {
  56759. source: "./media/characters/hass/guts.svg",
  56760. extra: 1223/1198,
  56761. bottom: 182/1405
  56762. }
  56763. },
  56764. dickFront: {
  56765. height: math.unit(1.4, "meters"),
  56766. name: "Dick (Front)",
  56767. image: {
  56768. source: "./media/characters/hass/dick-front.svg"
  56769. }
  56770. },
  56771. dickSide: {
  56772. height: math.unit(1.3, "meters"),
  56773. name: "Dick (Side)",
  56774. image: {
  56775. source: "./media/characters/hass/dick-side.svg"
  56776. }
  56777. },
  56778. dickBack: {
  56779. height: math.unit(1.4, "meters"),
  56780. name: "Dick (Back)",
  56781. image: {
  56782. source: "./media/characters/hass/dick-back.svg"
  56783. }
  56784. },
  56785. },
  56786. [
  56787. {
  56788. name: "Normal",
  56789. height: math.unit(6, "meters"),
  56790. default: true
  56791. },
  56792. ]
  56793. ))
  56794. characterMakers.push(() => makeCharacter(
  56795. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56796. {
  56797. front: {
  56798. height: math.unit(4, "feet"),
  56799. weight: math.unit(60, "lb"),
  56800. name: "Front",
  56801. image: {
  56802. source: "./media/characters/hickory-finnegan/front.svg",
  56803. extra: 444/411,
  56804. bottom: 10/454
  56805. }
  56806. },
  56807. side: {
  56808. height: math.unit(4, "feet"),
  56809. weight: math.unit(60, "lb"),
  56810. name: "Side",
  56811. image: {
  56812. source: "./media/characters/hickory-finnegan/side.svg",
  56813. extra: 444/411,
  56814. bottom: 10/454
  56815. }
  56816. },
  56817. back: {
  56818. height: math.unit(4, "feet"),
  56819. weight: math.unit(60, "lb"),
  56820. name: "Back",
  56821. image: {
  56822. source: "./media/characters/hickory-finnegan/back.svg",
  56823. extra: 444/411,
  56824. bottom: 10/454
  56825. }
  56826. },
  56827. },
  56828. [
  56829. {
  56830. name: "Normal",
  56831. height: math.unit(4, "feet"),
  56832. default: true
  56833. },
  56834. ]
  56835. ))
  56836. characterMakers.push(() => makeCharacter(
  56837. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56838. {
  56839. snivy_front: {
  56840. height: math.unit(2, "feet"),
  56841. weight: math.unit(17.9, "lb"),
  56842. name: "Front",
  56843. image: {
  56844. source: "./media/characters/robin-phox/snivy-front.svg",
  56845. extra: 569/504,
  56846. bottom: 33/602
  56847. },
  56848. form: "snivy",
  56849. default: true
  56850. },
  56851. snivy_frontNsfw: {
  56852. height: math.unit(2, "feet"),
  56853. weight: math.unit(17.9, "lb"),
  56854. name: "Front (NSFW)",
  56855. image: {
  56856. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56857. extra: 569/504,
  56858. bottom: 33/602
  56859. },
  56860. form: "snivy",
  56861. },
  56862. snivy_back: {
  56863. height: math.unit(2, "feet"),
  56864. weight: math.unit(17.9, "lb"),
  56865. name: "Back",
  56866. image: {
  56867. source: "./media/characters/robin-phox/snivy-back.svg",
  56868. extra: 577/508,
  56869. bottom: 21/598
  56870. },
  56871. form: "snivy",
  56872. },
  56873. snivy_foot: {
  56874. height: math.unit(0.68, "feet"),
  56875. name: "Foot",
  56876. image: {
  56877. source: "./media/characters/robin-phox/snivy-foot.svg"
  56878. },
  56879. form: "snivy",
  56880. },
  56881. snivy_sole: {
  56882. height: math.unit(0.68, "feet"),
  56883. name: "Sole",
  56884. image: {
  56885. source: "./media/characters/robin-phox/snivy-sole.svg"
  56886. },
  56887. form: "snivy",
  56888. },
  56889. yoshi_front: {
  56890. height: math.unit(6, "feet"),
  56891. weight: math.unit(150, "lb"),
  56892. name: "Front",
  56893. image: {
  56894. source: "./media/characters/robin-phox/yoshi-front.svg",
  56895. extra: 890/792,
  56896. bottom: 29/919
  56897. },
  56898. form: "yoshi",
  56899. default: true
  56900. },
  56901. yoshi_frontNsfw: {
  56902. height: math.unit(6, "feet"),
  56903. weight: math.unit(150, "lb"),
  56904. name: "Front (NSFW)",
  56905. image: {
  56906. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56907. extra: 890/792,
  56908. bottom: 29/919
  56909. },
  56910. form: "yoshi",
  56911. },
  56912. yoshi_back: {
  56913. height: math.unit(6, "feet"),
  56914. weight: math.unit(150, "lb"),
  56915. name: "Back",
  56916. image: {
  56917. source: "./media/characters/robin-phox/yoshi-back.svg",
  56918. extra: 890/792,
  56919. bottom: 29/919
  56920. },
  56921. form: "yoshi",
  56922. },
  56923. yoshi_foot: {
  56924. height: math.unit(1.5, "feet"),
  56925. name: "Foot",
  56926. image: {
  56927. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56928. },
  56929. form: "yoshi",
  56930. },
  56931. delphox_front: {
  56932. height: math.unit(4 + 11/12, "feet"),
  56933. weight: math.unit(86, "lb"),
  56934. name: "Front",
  56935. image: {
  56936. source: "./media/characters/robin-phox/delphox-front.svg",
  56937. extra: 1266/1069,
  56938. bottom: 32/1298
  56939. },
  56940. form: "delphox",
  56941. default: true
  56942. },
  56943. delphox_frontNsfw: {
  56944. height: math.unit(4 + 11/12, "feet"),
  56945. weight: math.unit(86, "lb"),
  56946. name: "Front (NSFW)",
  56947. image: {
  56948. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56949. extra: 1266/1069,
  56950. bottom: 32/1298
  56951. },
  56952. form: "delphox",
  56953. },
  56954. delphox_back: {
  56955. height: math.unit(4 + 11/12, "feet"),
  56956. weight: math.unit(86, "lb"),
  56957. name: "Back",
  56958. image: {
  56959. source: "./media/characters/robin-phox/delphox-back.svg",
  56960. extra: 1269/1083,
  56961. bottom: 15/1284
  56962. },
  56963. form: "delphox",
  56964. },
  56965. mienshao_front: {
  56966. height: math.unit(4 + 7/12, "feet"),
  56967. weight: math.unit(78.3, "lb"),
  56968. name: "Front",
  56969. image: {
  56970. source: "./media/characters/robin-phox/mienshao-front.svg",
  56971. extra: 1052/970,
  56972. bottom: 108/1160
  56973. },
  56974. form: "mienshao",
  56975. default: true
  56976. },
  56977. mienshao_frontNsfw: {
  56978. height: math.unit(4 + 7/12, "feet"),
  56979. weight: math.unit(78.3, "lb"),
  56980. name: "Front (NSFW)",
  56981. image: {
  56982. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56983. extra: 1052/970,
  56984. bottom: 108/1160
  56985. },
  56986. form: "mienshao",
  56987. },
  56988. mienshao_back: {
  56989. height: math.unit(4 + 7/12, "feet"),
  56990. weight: math.unit(78.3, "lb"),
  56991. name: "Back",
  56992. image: {
  56993. source: "./media/characters/robin-phox/mienshao-back.svg",
  56994. extra: 1102/982,
  56995. bottom: 32/1134
  56996. },
  56997. form: "mienshao",
  56998. },
  56999. inteleon_front: {
  57000. height: math.unit(6 + 3/12, "feet"),
  57001. weight: math.unit(99.6, "lb"),
  57002. name: "Front",
  57003. image: {
  57004. source: "./media/characters/robin-phox/inteleon-front.svg",
  57005. extra: 910/799,
  57006. bottom: 76/986
  57007. },
  57008. form: "inteleon",
  57009. default: true
  57010. },
  57011. inteleon_frontNsfw: {
  57012. height: math.unit(6 + 3/12, "feet"),
  57013. weight: math.unit(99.6, "lb"),
  57014. name: "Front (NSFW)",
  57015. image: {
  57016. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57017. extra: 910/799,
  57018. bottom: 76/986
  57019. },
  57020. form: "inteleon",
  57021. },
  57022. inteleon_back: {
  57023. height: math.unit(6 + 3/12, "feet"),
  57024. weight: math.unit(99.6, "lb"),
  57025. name: "Back",
  57026. image: {
  57027. source: "./media/characters/robin-phox/inteleon-back.svg",
  57028. extra: 907/796,
  57029. bottom: 25/932
  57030. },
  57031. form: "inteleon",
  57032. },
  57033. reshiram_front: {
  57034. height: math.unit(10 + 6/12, "feet"),
  57035. weight: math.unit(727.5, "lb"),
  57036. name: "Front",
  57037. image: {
  57038. source: "./media/characters/robin-phox/reshiram-front.svg",
  57039. extra: 1198/940,
  57040. bottom: 123/1321
  57041. },
  57042. form: "reshiram",
  57043. },
  57044. reshiram_frontNsfw: {
  57045. height: math.unit(10 + 6/12, "feet"),
  57046. weight: math.unit(727.5, "lb"),
  57047. name: "Front-nsfw",
  57048. image: {
  57049. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57050. extra: 1198/940,
  57051. bottom: 123/1321
  57052. },
  57053. form: "reshiram",
  57054. },
  57055. reshiram_back: {
  57056. height: math.unit(10 + 6/12, "feet"),
  57057. weight: math.unit(727.5, "lb"),
  57058. name: "Back",
  57059. image: {
  57060. source: "./media/characters/robin-phox/reshiram-back.svg",
  57061. extra: 1024/904,
  57062. bottom: 85/1109
  57063. },
  57064. form: "reshiram",
  57065. },
  57066. samurott_front: {
  57067. height: math.unit(8, "feet"),
  57068. weight: math.unit(208.6, "lb"),
  57069. name: "Front",
  57070. image: {
  57071. source: "./media/characters/robin-phox/samurott-front.svg",
  57072. extra: 1048/984,
  57073. bottom: 100/1148
  57074. },
  57075. form: "samurott",
  57076. },
  57077. samurott_frontNsfw: {
  57078. height: math.unit(8, "feet"),
  57079. weight: math.unit(208.6, "lb"),
  57080. name: "Front-nsfw",
  57081. image: {
  57082. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57083. extra: 1048/984,
  57084. bottom: 100/1148
  57085. },
  57086. form: "samurott",
  57087. },
  57088. samurott_back: {
  57089. height: math.unit(8, "feet"),
  57090. weight: math.unit(208.6, "lb"),
  57091. name: "Back",
  57092. image: {
  57093. source: "./media/characters/robin-phox/samurott-back.svg",
  57094. extra: 1110/1042,
  57095. bottom: 12/1122
  57096. },
  57097. form: "samurott",
  57098. },
  57099. samurott_feral: {
  57100. height: math.unit(4 + 11/12, "feet"),
  57101. weight: math.unit(208.6, "lb"),
  57102. name: "Feral",
  57103. image: {
  57104. source: "./media/characters/robin-phox/samurott-feral.svg",
  57105. extra: 766/681,
  57106. bottom: 108/874
  57107. },
  57108. form: "samurott",
  57109. },
  57110. },
  57111. [
  57112. {
  57113. name: "Normal",
  57114. height: math.unit(2, "feet"),
  57115. default: true,
  57116. form: "snivy"
  57117. },
  57118. {
  57119. name: "Normal",
  57120. height: math.unit(6, "feet"),
  57121. default: true,
  57122. form: "yoshi"
  57123. },
  57124. {
  57125. name: "Normal",
  57126. height: math.unit(4 + 11/12, "feet"),
  57127. default: true,
  57128. form: "delphox"
  57129. },
  57130. {
  57131. name: "Normal",
  57132. height: math.unit(4 + 7/12, "feet"),
  57133. default: true,
  57134. form: "mienshao"
  57135. },
  57136. {
  57137. name: "Normal",
  57138. height: math.unit(6 + 3/12, "feet"),
  57139. default: true,
  57140. form: "inteleon"
  57141. },
  57142. {
  57143. name: "Normal",
  57144. height: math.unit(10 + 6/12, "feet"),
  57145. default: true,
  57146. form: "reshiram"
  57147. },
  57148. {
  57149. name: "Normal",
  57150. height: math.unit(8, "feet"),
  57151. default: true,
  57152. form: "samurott"
  57153. },
  57154. {
  57155. name: "Macro",
  57156. height: math.unit(500, "feet"),
  57157. allForms: true
  57158. },
  57159. {
  57160. name: "Mega Macro",
  57161. height: math.unit(10, "earths"),
  57162. allForms: true
  57163. },
  57164. {
  57165. name: "Giga Macro",
  57166. height: math.unit(1, "galaxy"),
  57167. allForms: true
  57168. },
  57169. {
  57170. name: "Godly Macro",
  57171. height: math.unit(1e10, "multiverses"),
  57172. allForms: true
  57173. },
  57174. ],
  57175. {
  57176. "snivy": {
  57177. name: "Snivy",
  57178. default: true
  57179. },
  57180. "yoshi": {
  57181. name: "Yoshi",
  57182. },
  57183. "delphox": {
  57184. name: "Delphox",
  57185. },
  57186. "mienshao": {
  57187. name: "Mienshao",
  57188. },
  57189. "inteleon": {
  57190. name: "Inteleon",
  57191. },
  57192. "reshiram": {
  57193. name: "Reshiram",
  57194. },
  57195. "samurott": {
  57196. name: "Samurott",
  57197. },
  57198. }
  57199. ))
  57200. characterMakers.push(() => makeCharacter(
  57201. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57202. {
  57203. front: {
  57204. height: math.unit(4, "feet"),
  57205. name: "Front",
  57206. image: {
  57207. source: "./media/characters/ash-leung/front.svg",
  57208. extra: 1916/1792,
  57209. bottom: 50/1966
  57210. }
  57211. },
  57212. },
  57213. [
  57214. {
  57215. name: "Atomic",
  57216. height: math.unit(1, "angstrom")
  57217. },
  57218. {
  57219. name: "Microscopic",
  57220. height: math.unit(4000, "angstroms")
  57221. },
  57222. {
  57223. name: "Speck",
  57224. height: math.unit(1, "mm")
  57225. },
  57226. {
  57227. name: "Small",
  57228. height: math.unit(1, "inch")
  57229. },
  57230. {
  57231. name: "Normal",
  57232. height: math.unit(4, "feet"),
  57233. default: true
  57234. },
  57235. ]
  57236. ))
  57237. characterMakers.push(() => makeCharacter(
  57238. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57239. {
  57240. frontDressed: {
  57241. height: math.unit(2.08, "meters"),
  57242. weight: math.unit(175, "lb"),
  57243. name: "Front (Dressed)",
  57244. image: {
  57245. source: "./media/characters/carie/front-dressed.svg",
  57246. extra: 456/417,
  57247. bottom: 7/463
  57248. }
  57249. },
  57250. backDressed: {
  57251. height: math.unit(2.08, "meters"),
  57252. weight: math.unit(175, "lb"),
  57253. name: "Back (Dressed)",
  57254. image: {
  57255. source: "./media/characters/carie/back-dressed.svg",
  57256. extra: 455/414,
  57257. bottom: 11/466
  57258. }
  57259. },
  57260. front: {
  57261. height: math.unit(2, "meters"),
  57262. weight: math.unit(175, "lb"),
  57263. name: "Front",
  57264. image: {
  57265. source: "./media/characters/carie/front.svg",
  57266. extra: 438/399,
  57267. bottom: 12/450
  57268. }
  57269. },
  57270. back: {
  57271. height: math.unit(2, "meters"),
  57272. weight: math.unit(175, "lb"),
  57273. name: "Back",
  57274. image: {
  57275. source: "./media/characters/carie/back.svg",
  57276. extra: 438/397,
  57277. bottom: 7/445
  57278. }
  57279. },
  57280. },
  57281. [
  57282. {
  57283. name: "Normal",
  57284. height: math.unit(2.08, "meters"),
  57285. default: true
  57286. },
  57287. {
  57288. name: "Macro",
  57289. height: math.unit(2.08e3, "meters")
  57290. },
  57291. {
  57292. name: "Mega Macro",
  57293. height: math.unit(2.08e6, "meters")
  57294. },
  57295. {
  57296. name: "Giga Macro",
  57297. height: math.unit(2.08e9, "meters")
  57298. },
  57299. {
  57300. name: "Tera Macro",
  57301. height: math.unit(2.08e12, "meters")
  57302. },
  57303. {
  57304. name: "Peta Macro",
  57305. height: math.unit(2.08e15, "meters")
  57306. },
  57307. {
  57308. name: "Exa Macro",
  57309. height: math.unit(2.08e18, "meters")
  57310. },
  57311. {
  57312. name: "Zetta Macro",
  57313. height: math.unit(2.08e21, "meters")
  57314. },
  57315. {
  57316. name: "Yotta Macro",
  57317. height: math.unit(2.08e24, "meters")
  57318. },
  57319. ]
  57320. ))
  57321. characterMakers.push(() => makeCharacter(
  57322. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57323. {
  57324. front: {
  57325. height: math.unit(5 + 2/12, "feet"),
  57326. weight: math.unit(120, "lb"),
  57327. name: "Front",
  57328. image: {
  57329. source: "./media/characters/sai-bree/front.svg",
  57330. extra: 1843/1702,
  57331. bottom: 91/1934
  57332. }
  57333. },
  57334. back: {
  57335. height: math.unit(5 + 2/12, "feet"),
  57336. weight: math.unit(120, "lb"),
  57337. name: "Back",
  57338. image: {
  57339. source: "./media/characters/sai-bree/back.svg",
  57340. extra: 1809/1637,
  57341. bottom: 56/1865
  57342. }
  57343. },
  57344. },
  57345. [
  57346. {
  57347. name: "Normal",
  57348. height: math.unit(5 + 2/12, "feet"),
  57349. default: true
  57350. },
  57351. {
  57352. name: "Macro",
  57353. height: math.unit(500, "feet")
  57354. },
  57355. ]
  57356. ))
  57357. characterMakers.push(() => makeCharacter(
  57358. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57359. {
  57360. side: {
  57361. height: math.unit(0.77, "meters"),
  57362. weight: math.unit(120, "lb"),
  57363. name: "Side",
  57364. image: {
  57365. source: "./media/characters/davwyn/side.svg",
  57366. extra: 1557/1225,
  57367. bottom: 131/1688
  57368. }
  57369. },
  57370. front: {
  57371. height: math.unit(0.835410, "meters"),
  57372. weight: math.unit(120, "lb"),
  57373. name: "Front",
  57374. image: {
  57375. source: "./media/characters/davwyn/front.svg",
  57376. extra: 870/843,
  57377. bottom: 175/1045
  57378. }
  57379. },
  57380. },
  57381. [
  57382. {
  57383. name: "Minidrake",
  57384. height: math.unit(0.77/4, "meters")
  57385. },
  57386. {
  57387. name: "Normal",
  57388. height: math.unit(0.77, "meters"),
  57389. default: true
  57390. },
  57391. ]
  57392. ))
  57393. characterMakers.push(() => makeCharacter(
  57394. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57395. {
  57396. front: {
  57397. height: math.unit(10 + 3/12, "feet"),
  57398. weight: math.unit(2857, "lb"),
  57399. name: "Front",
  57400. image: {
  57401. source: "./media/characters/balans/front.svg",
  57402. extra: 427/402,
  57403. bottom: 26/453
  57404. }
  57405. },
  57406. side: {
  57407. height: math.unit(10 + 3/12, "feet"),
  57408. weight: math.unit(2857, "lb"),
  57409. name: "Side",
  57410. image: {
  57411. source: "./media/characters/balans/side.svg",
  57412. extra: 397/371,
  57413. bottom: 17/414
  57414. }
  57415. },
  57416. back: {
  57417. height: math.unit(10 + 3/12, "feet"),
  57418. weight: math.unit(2857, "lb"),
  57419. name: "Back",
  57420. image: {
  57421. source: "./media/characters/balans/back.svg",
  57422. extra: 408/381,
  57423. bottom: 14/422
  57424. }
  57425. },
  57426. hand: {
  57427. height: math.unit(1.15, "feet"),
  57428. name: "Hand",
  57429. image: {
  57430. source: "./media/characters/balans/hand.svg"
  57431. }
  57432. },
  57433. footRest: {
  57434. height: math.unit(3.1, "feet"),
  57435. name: "Foot (Rest)",
  57436. image: {
  57437. source: "./media/characters/balans/foot-rest.svg"
  57438. }
  57439. },
  57440. footActive: {
  57441. height: math.unit(3.5, "feet"),
  57442. name: "Foot (Active)",
  57443. image: {
  57444. source: "./media/characters/balans/foot-active.svg"
  57445. }
  57446. },
  57447. },
  57448. [
  57449. {
  57450. name: "Normal",
  57451. height: math.unit(10 + 3/12, "feet"),
  57452. default: true
  57453. },
  57454. ]
  57455. ))
  57456. characterMakers.push(() => makeCharacter(
  57457. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57458. {
  57459. side: {
  57460. height: math.unit(9, "meters"),
  57461. weight: math.unit(114, "tonnes"),
  57462. name: "Side",
  57463. image: {
  57464. source: "./media/characters/eldkveikir/side.svg",
  57465. extra: 1927/338,
  57466. bottom: 42/1969
  57467. }
  57468. },
  57469. sitting: {
  57470. height: math.unit(13.4, "meters"),
  57471. weight: math.unit(114, "tonnes"),
  57472. name: "Sitting",
  57473. image: {
  57474. source: "./media/characters/eldkveikir/sitting.svg",
  57475. extra: 1108/963,
  57476. bottom: 610/1718
  57477. }
  57478. },
  57479. maw: {
  57480. height: math.unit(8.36, "meters"),
  57481. name: "Maw",
  57482. image: {
  57483. source: "./media/characters/eldkveikir/maw.svg"
  57484. }
  57485. },
  57486. hand: {
  57487. height: math.unit(4.84, "meters"),
  57488. name: "Hand",
  57489. image: {
  57490. source: "./media/characters/eldkveikir/hand.svg"
  57491. }
  57492. },
  57493. foot: {
  57494. height: math.unit(6.9, "meters"),
  57495. name: "Foot",
  57496. image: {
  57497. source: "./media/characters/eldkveikir/foot.svg"
  57498. }
  57499. },
  57500. genitals: {
  57501. height: math.unit(9.6, "meters"),
  57502. name: "Genitals",
  57503. image: {
  57504. source: "./media/characters/eldkveikir/genitals.svg"
  57505. }
  57506. },
  57507. },
  57508. [
  57509. {
  57510. name: "Normal",
  57511. height: math.unit(9, "meters"),
  57512. default: true
  57513. },
  57514. ]
  57515. ))
  57516. characterMakers.push(() => makeCharacter(
  57517. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57518. {
  57519. front: {
  57520. height: math.unit(14, "feet"),
  57521. weight: math.unit(4100, "lb"),
  57522. name: "Front",
  57523. image: {
  57524. source: "./media/characters/arrow/front.svg",
  57525. extra: 330/318,
  57526. bottom: 56/386
  57527. }
  57528. },
  57529. },
  57530. [
  57531. {
  57532. name: "Normal",
  57533. height: math.unit(14, "feet"),
  57534. default: true
  57535. },
  57536. {
  57537. name: "Minimacro",
  57538. height: math.unit(63, "feet")
  57539. },
  57540. {
  57541. name: "Macro",
  57542. height: math.unit(630, "feet")
  57543. },
  57544. {
  57545. name: "Megamacro",
  57546. height: math.unit(12600, "feet")
  57547. },
  57548. {
  57549. name: "Gigamacro",
  57550. height: math.unit(18000, "miles")
  57551. },
  57552. ]
  57553. ))
  57554. characterMakers.push(() => makeCharacter(
  57555. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57556. {
  57557. front: {
  57558. height: math.unit(10, "feet"),
  57559. weight: math.unit(2.4, "tons"),
  57560. name: "Front",
  57561. image: {
  57562. source: "./media/characters/3yk-k0-unit/front.svg",
  57563. extra: 573/561,
  57564. bottom: 33/606
  57565. }
  57566. },
  57567. back: {
  57568. height: math.unit(10, "feet"),
  57569. weight: math.unit(2.4, "tons"),
  57570. name: "Back",
  57571. image: {
  57572. source: "./media/characters/3yk-k0-unit/back.svg",
  57573. extra: 614/573,
  57574. bottom: 32/646
  57575. }
  57576. },
  57577. maw: {
  57578. height: math.unit(2.15, "feet"),
  57579. name: "Maw",
  57580. image: {
  57581. source: "./media/characters/3yk-k0-unit/maw.svg"
  57582. }
  57583. },
  57584. },
  57585. [
  57586. {
  57587. name: "Normal",
  57588. height: math.unit(10, "feet"),
  57589. default: true
  57590. },
  57591. ]
  57592. ))
  57593. characterMakers.push(() => makeCharacter(
  57594. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57595. {
  57596. front: {
  57597. height: math.unit(8 + 8/12, "feet"),
  57598. name: "Front",
  57599. image: {
  57600. source: "./media/characters/nemo/front.svg",
  57601. extra: 1308/1217,
  57602. bottom: 57/1365
  57603. }
  57604. },
  57605. },
  57606. [
  57607. {
  57608. name: "Normal",
  57609. height: math.unit(8 + 8/12, "feet"),
  57610. default: true
  57611. },
  57612. ]
  57613. ))
  57614. characterMakers.push(() => makeCharacter(
  57615. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57616. {
  57617. front: {
  57618. height: math.unit(8, "feet"),
  57619. weight: math.unit(760, "lb"),
  57620. name: "Front",
  57621. image: {
  57622. source: "./media/characters/rexx/front.svg",
  57623. extra: 786/750,
  57624. bottom: 17/803
  57625. },
  57626. extraAttributes: {
  57627. "pawLength": {
  57628. name: "Paw Length",
  57629. power: 1,
  57630. type: "length",
  57631. base: math.unit(27, "inches")
  57632. },
  57633. }
  57634. },
  57635. },
  57636. [
  57637. {
  57638. name: "Micro",
  57639. height: math.unit(2, "inches")
  57640. },
  57641. {
  57642. name: "Normal",
  57643. height: math.unit(8, "feet"),
  57644. default: true
  57645. },
  57646. {
  57647. name: "Macro",
  57648. height: math.unit(150, "feet")
  57649. },
  57650. ]
  57651. ))
  57652. characterMakers.push(() => makeCharacter(
  57653. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57654. {
  57655. front: {
  57656. height: math.unit(18, "feet"),
  57657. weight: math.unit(1975, "lb"),
  57658. name: "Front",
  57659. image: {
  57660. source: "./media/characters/draco/front.svg",
  57661. extra: 1325/1241,
  57662. bottom: 83/1408
  57663. }
  57664. },
  57665. back: {
  57666. height: math.unit(18, "feet"),
  57667. weight: math.unit(1975, "lb"),
  57668. name: "Back",
  57669. image: {
  57670. source: "./media/characters/draco/back.svg",
  57671. extra: 1332/1250,
  57672. bottom: 43/1375
  57673. }
  57674. },
  57675. dick: {
  57676. height: math.unit(7.5, "feet"),
  57677. name: "Dick",
  57678. image: {
  57679. source: "./media/characters/draco/dick.svg"
  57680. }
  57681. },
  57682. },
  57683. [
  57684. {
  57685. name: "Normal",
  57686. height: math.unit(18, "feet"),
  57687. default: true
  57688. },
  57689. ]
  57690. ))
  57691. characterMakers.push(() => makeCharacter(
  57692. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57693. {
  57694. front: {
  57695. height: math.unit(3.2, "meters"),
  57696. name: "Front",
  57697. image: {
  57698. source: "./media/characters/harriett/front.svg",
  57699. extra: 1966/1915,
  57700. bottom: 9/1975
  57701. }
  57702. },
  57703. },
  57704. [
  57705. {
  57706. name: "Normal",
  57707. height: math.unit(3.2, "meters"),
  57708. default: true
  57709. },
  57710. ]
  57711. ))
  57712. characterMakers.push(() => makeCharacter(
  57713. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57714. {
  57715. sitting: {
  57716. height: math.unit(0.8, "meter"),
  57717. name: "Sitting",
  57718. image: {
  57719. source: "./media/characters/serpentus/sitting.svg",
  57720. extra: 293/290,
  57721. bottom: 140/433
  57722. }
  57723. },
  57724. },
  57725. [
  57726. {
  57727. name: "Normal",
  57728. height: math.unit(0.8, "meter"),
  57729. default: true
  57730. },
  57731. ]
  57732. ))
  57733. characterMakers.push(() => makeCharacter(
  57734. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57735. {
  57736. front: {
  57737. height: math.unit(5.7174385736, "feet"),
  57738. name: "Front",
  57739. image: {
  57740. source: "./media/characters/nova-polecat/front.svg",
  57741. extra: 1317/1216,
  57742. bottom: 92/1409
  57743. }
  57744. },
  57745. },
  57746. [
  57747. {
  57748. name: "Normal",
  57749. height: math.unit(5.7174385736, "feet"),
  57750. default: true
  57751. },
  57752. ]
  57753. ))
  57754. characterMakers.push(() => makeCharacter(
  57755. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57756. {
  57757. front: {
  57758. height: math.unit(5 + 4/12, "feet"),
  57759. weight: math.unit(250, "lb"),
  57760. name: "Front",
  57761. image: {
  57762. source: "./media/characters/mook/front.svg",
  57763. extra: 1088/1037,
  57764. bottom: 132/1220
  57765. }
  57766. },
  57767. back: {
  57768. height: math.unit(5 + 1/12, "feet"),
  57769. weight: math.unit(250, "lb"),
  57770. name: "Back",
  57771. image: {
  57772. source: "./media/characters/mook/back.svg",
  57773. extra: 1184/905,
  57774. bottom: 96/1280
  57775. }
  57776. },
  57777. head: {
  57778. height: math.unit(1.85, "feet"),
  57779. name: "Head",
  57780. image: {
  57781. source: "./media/characters/mook/head.svg"
  57782. }
  57783. },
  57784. hand: {
  57785. height: math.unit(1.9, "feet"),
  57786. name: "Hand",
  57787. image: {
  57788. source: "./media/characters/mook/hand.svg"
  57789. }
  57790. },
  57791. palm: {
  57792. height: math.unit(1.84, "feet"),
  57793. name: "Palm",
  57794. image: {
  57795. source: "./media/characters/mook/palm.svg"
  57796. }
  57797. },
  57798. foot: {
  57799. height: math.unit(1.44, "feet"),
  57800. name: "Foot",
  57801. image: {
  57802. source: "./media/characters/mook/foot.svg"
  57803. }
  57804. },
  57805. sole: {
  57806. height: math.unit(1.44, "feet"),
  57807. name: "Sole",
  57808. image: {
  57809. source: "./media/characters/mook/sole.svg"
  57810. }
  57811. },
  57812. },
  57813. [
  57814. {
  57815. name: "Normal",
  57816. height: math.unit(5 + 4/12, "feet"),
  57817. default: true
  57818. },
  57819. {
  57820. name: "Big",
  57821. height: math.unit(12, "feet")
  57822. },
  57823. ]
  57824. ))
  57825. characterMakers.push(() => makeCharacter(
  57826. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57827. {
  57828. front: {
  57829. height: math.unit(6 + 10/12, "feet"),
  57830. weight: math.unit(233, "lb"),
  57831. name: "Front",
  57832. image: {
  57833. source: "./media/characters/kayla/front.svg",
  57834. extra: 1850/1775,
  57835. bottom: 65/1915
  57836. }
  57837. },
  57838. },
  57839. [
  57840. {
  57841. name: "Normal",
  57842. height: math.unit(6 + 10/12, "feet"),
  57843. default: true
  57844. },
  57845. {
  57846. name: "Amazonian",
  57847. height: math.unit(12 + 5/12, "feet")
  57848. },
  57849. {
  57850. name: "Mini Giantess",
  57851. height: math.unit(26, "feet")
  57852. },
  57853. {
  57854. name: "Giantess",
  57855. height: math.unit(200, "feet")
  57856. },
  57857. {
  57858. name: "Mega Giantess",
  57859. height: math.unit(2500, "feet")
  57860. },
  57861. {
  57862. name: "City Sized",
  57863. height: math.unit(50, "miles")
  57864. },
  57865. {
  57866. name: "Country Sized",
  57867. height: math.unit(500, "miles")
  57868. },
  57869. {
  57870. name: "Continent Sized",
  57871. height: math.unit(2500, "miles")
  57872. },
  57873. {
  57874. name: "Planet Sized",
  57875. height: math.unit(10000, "miles")
  57876. },
  57877. {
  57878. name: "Star Sized",
  57879. height: math.unit(5e6, "miles")
  57880. },
  57881. {
  57882. name: "Solar System Sized",
  57883. height: math.unit(125, "AU")
  57884. },
  57885. {
  57886. name: "Galaxy Sized",
  57887. height: math.unit(300e3, "lightyears")
  57888. },
  57889. {
  57890. name: "Universe Sized",
  57891. height: math.unit(200e9, "lightyears")
  57892. },
  57893. {
  57894. name: "Multiverse Sized",
  57895. height: math.unit(20, "exauniverses")
  57896. },
  57897. {
  57898. name: "Mother of Existence",
  57899. height: math.unit(1e6, "yottauniverses")
  57900. },
  57901. ]
  57902. ))
  57903. characterMakers.push(() => makeCharacter(
  57904. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57905. {
  57906. side: {
  57907. height: math.unit(9.5, "meters"),
  57908. name: "Side",
  57909. image: {
  57910. source: "./media/characters/kulve-ragnarok/side.svg",
  57911. extra: 364/326,
  57912. bottom: 50/414
  57913. }
  57914. },
  57915. },
  57916. [
  57917. {
  57918. name: "Normal",
  57919. height: math.unit(9.5, "meters"),
  57920. default: true
  57921. },
  57922. ]
  57923. ))
  57924. characterMakers.push(() => makeCharacter(
  57925. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57926. {
  57927. front: {
  57928. height: math.unit(8 + 9/12, "feet"),
  57929. name: "Front",
  57930. image: {
  57931. source: "./media/characters/atlas-goat/front.svg",
  57932. extra: 1462/1323,
  57933. bottom: 12/1474
  57934. }
  57935. },
  57936. },
  57937. [
  57938. {
  57939. name: "Normal",
  57940. height: math.unit(8 + 9/12, "feet"),
  57941. default: true
  57942. },
  57943. {
  57944. name: "Skyline",
  57945. height: math.unit(845, "feet")
  57946. },
  57947. {
  57948. name: "Orbital",
  57949. height: math.unit(93000, "miles")
  57950. },
  57951. {
  57952. name: "Constellation",
  57953. height: math.unit(27000, "lightyears")
  57954. },
  57955. ]
  57956. ))
  57957. characterMakers.push(() => makeCharacter(
  57958. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57959. {
  57960. side: {
  57961. height: math.unit(1.8, "meters"),
  57962. weight: math.unit(120, "kg"),
  57963. name: "Side",
  57964. image: {
  57965. source: "./media/characters/xie-ling/side.svg",
  57966. extra: 646/574,
  57967. bottom: 44/690
  57968. }
  57969. },
  57970. },
  57971. [
  57972. {
  57973. name: "Tiny",
  57974. height: math.unit(1.80, "meters")
  57975. },
  57976. {
  57977. name: "Small",
  57978. height: math.unit(6, "meters")
  57979. },
  57980. {
  57981. name: "Medium",
  57982. height: math.unit(15, "meters")
  57983. },
  57984. {
  57985. name: "Normal",
  57986. height: math.unit(30, "meters"),
  57987. default: true
  57988. },
  57989. {
  57990. name: "Above Normal",
  57991. height: math.unit(60, "meters")
  57992. },
  57993. {
  57994. name: "Big",
  57995. height: math.unit(220, "meters")
  57996. },
  57997. {
  57998. name: "Giant",
  57999. height: math.unit(2.2, "km")
  58000. },
  58001. {
  58002. name: "Macro",
  58003. height: math.unit(25, "km")
  58004. },
  58005. {
  58006. name: "Mega Macro",
  58007. height: math.unit(350, "km")
  58008. },
  58009. {
  58010. name: "Mega Macro+",
  58011. height: math.unit(5000, "km")
  58012. },
  58013. {
  58014. name: "Goddess",
  58015. height: math.unit(3, "multiverses")
  58016. },
  58017. ]
  58018. ))
  58019. characterMakers.push(() => makeCharacter(
  58020. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58021. {
  58022. frontSfw: {
  58023. height: math.unit(5 + 11/12, "feet"),
  58024. weight: math.unit(210, "lb"),
  58025. name: "Front",
  58026. image: {
  58027. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58028. extra: 1928/1821,
  58029. bottom: 45/1973
  58030. }
  58031. },
  58032. backSfw: {
  58033. height: math.unit(5 + 11/12, "feet"),
  58034. weight: math.unit(210, "lb"),
  58035. name: "Back",
  58036. image: {
  58037. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58038. extra: 1920/1813,
  58039. bottom: 34/1954
  58040. }
  58041. },
  58042. frontNsfw: {
  58043. height: math.unit(5 + 11/12, "feet"),
  58044. weight: math.unit(210, "lb"),
  58045. name: "Front (NSFW)",
  58046. image: {
  58047. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58048. extra: 1928/1821,
  58049. bottom: 45/1973
  58050. }
  58051. },
  58052. backNsfw: {
  58053. height: math.unit(5 + 11/12, "feet"),
  58054. weight: math.unit(210, "lb"),
  58055. name: "Back (NSFW)",
  58056. image: {
  58057. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58058. extra: 1920/1813,
  58059. bottom: 34/1954
  58060. }
  58061. },
  58062. },
  58063. [
  58064. {
  58065. name: "Normal",
  58066. height: math.unit(5 + 11/12, "feet"),
  58067. default: true
  58068. },
  58069. {
  58070. name: "Goddess",
  58071. height: math.unit(20 + 3/12, "feet")
  58072. },
  58073. {
  58074. name: "Breaker of Man",
  58075. height: math.unit(329 + 9/12, "feet")
  58076. },
  58077. {
  58078. name: "Solar Justice",
  58079. height: math.unit(0.6, "solarradii")
  58080. },
  58081. {
  58082. name: "She Who Judges",
  58083. height: math.unit(1, "universe")
  58084. },
  58085. ]
  58086. ))
  58087. characterMakers.push(() => makeCharacter(
  58088. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58089. {
  58090. casual_front: {
  58091. height: math.unit(6 + 1/12, "feet"),
  58092. weight: math.unit(190, "lb"),
  58093. preyCapacity: math.unit(1, "people"),
  58094. name: "Front",
  58095. image: {
  58096. source: "./media/characters/managarmr/casual-front.svg",
  58097. extra: 411/381,
  58098. bottom: 15/426
  58099. },
  58100. extraAttributes: {
  58101. "pawSize": {
  58102. name: "Paw Size",
  58103. power: 1,
  58104. type: "length",
  58105. base: math.unit(0.2, "meters")
  58106. },
  58107. },
  58108. form: "casual",
  58109. },
  58110. casual_back: {
  58111. height: math.unit(6 + 1/12, "feet"),
  58112. weight: math.unit(190, "lb"),
  58113. preyCapacity: math.unit(1, "people"),
  58114. name: "Back",
  58115. image: {
  58116. source: "./media/characters/managarmr/casual-back.svg",
  58117. extra: 413/383,
  58118. bottom: 13/426
  58119. },
  58120. extraAttributes: {
  58121. "pawSize": {
  58122. name: "Paw Size",
  58123. power: 1,
  58124. type: "length",
  58125. base: math.unit(0.2, "meters")
  58126. },
  58127. },
  58128. form: "casual",
  58129. },
  58130. base_front: {
  58131. height: math.unit(7, "feet"),
  58132. weight: math.unit(210, "lb"),
  58133. preyCapacity: math.unit(2, "people"),
  58134. name: "Front",
  58135. image: {
  58136. source: "./media/characters/managarmr/base-front.svg",
  58137. extra: 580/485,
  58138. bottom: 32/612
  58139. },
  58140. extraAttributes: {
  58141. "wingspan": {
  58142. name: "Wingspan",
  58143. power: 1,
  58144. type: "length",
  58145. base: math.unit(4, "meters")
  58146. },
  58147. "pawSize": {
  58148. name: "Paw Size",
  58149. power: 1,
  58150. type: "length",
  58151. base: math.unit(0.2, "meters")
  58152. },
  58153. },
  58154. form: "base",
  58155. },
  58156. "true-divine_front": {
  58157. height: math.unit(40, "feet"),
  58158. weight: math.unit(39000, "lb"),
  58159. preyCapacity: math.unit(375, "people"),
  58160. name: "Front",
  58161. image: {
  58162. source: "./media/characters/managarmr/true-divine-front.svg",
  58163. extra: 725/573,
  58164. bottom: 120/845
  58165. },
  58166. extraAttributes: {
  58167. "wingspan": {
  58168. name: "Wingspan",
  58169. power: 1,
  58170. type: "length",
  58171. base: math.unit(20, "meters")
  58172. },
  58173. "pawSize": {
  58174. name: "Paw Size",
  58175. power: 1,
  58176. type: "length",
  58177. base: math.unit(1.5, "meters")
  58178. },
  58179. },
  58180. form: "true-divine",
  58181. },
  58182. },
  58183. [
  58184. {
  58185. name: "Normal",
  58186. height: math.unit(6 + 1/12, "feet"),
  58187. form: "casual",
  58188. default: true
  58189. },
  58190. {
  58191. name: "Normal",
  58192. height: math.unit(7, "feet"),
  58193. form: "base",
  58194. default: true
  58195. },
  58196. ],
  58197. {
  58198. "casual": {
  58199. name: "Casual",
  58200. default: true
  58201. },
  58202. "base": {
  58203. name: "Base",
  58204. },
  58205. "true-divine": {
  58206. name: "True Divine",
  58207. },
  58208. }
  58209. ))
  58210. characterMakers.push(() => makeCharacter(
  58211. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58212. {
  58213. front: {
  58214. height: math.unit(1.8, "meters"),
  58215. weight: math.unit(110, "kg"),
  58216. name: "Front",
  58217. image: {
  58218. source: "./media/characters/mystra/front.svg",
  58219. extra: 529/442,
  58220. bottom: 31/560
  58221. }
  58222. },
  58223. frontLewd: {
  58224. height: math.unit(1.8, "meters"),
  58225. weight: math.unit(110, "kg"),
  58226. name: "Front (Lewd)",
  58227. image: {
  58228. source: "./media/characters/mystra/front-lewd.svg",
  58229. extra: 529/442,
  58230. bottom: 31/560
  58231. }
  58232. },
  58233. head: {
  58234. height: math.unit(1.63, "feet"),
  58235. name: "Head",
  58236. image: {
  58237. source: "./media/characters/mystra/head.svg"
  58238. }
  58239. },
  58240. paw: {
  58241. height: math.unit(1.9, "feet"),
  58242. name: "Paw",
  58243. image: {
  58244. source: "./media/characters/mystra/paw.svg"
  58245. }
  58246. },
  58247. },
  58248. [
  58249. {
  58250. name: "Incognito",
  58251. height: math.unit(2.3, "meters")
  58252. },
  58253. {
  58254. name: "Small Macro",
  58255. height: math.unit(300, "meters")
  58256. },
  58257. {
  58258. name: "Small Mega",
  58259. height: math.unit(2, "km")
  58260. },
  58261. {
  58262. name: "Mega",
  58263. height: math.unit(30, "km")
  58264. },
  58265. {
  58266. name: "Small Giga",
  58267. height: math.unit(100, "km")
  58268. },
  58269. {
  58270. name: "Giga",
  58271. height: math.unit(1000, "km"),
  58272. default: true
  58273. },
  58274. {
  58275. name: "Continental",
  58276. height: math.unit(5000, "km")
  58277. },
  58278. {
  58279. name: "Terra",
  58280. height: math.unit(20000, "km")
  58281. },
  58282. {
  58283. name: "Solar",
  58284. height: math.unit(2e6, "km")
  58285. },
  58286. {
  58287. name: "Galactic",
  58288. height: math.unit(528502, "lightyears")
  58289. },
  58290. {
  58291. name: "Universal",
  58292. height: math.unit(20, "universes")
  58293. },
  58294. ]
  58295. ))
  58296. characterMakers.push(() => makeCharacter(
  58297. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58298. {
  58299. front: {
  58300. height: math.unit(2, "meters"),
  58301. weight: math.unit(140, "kg"),
  58302. name: "Front",
  58303. image: {
  58304. source: "./media/characters/caleb/front.svg",
  58305. extra: 873/817,
  58306. bottom: 47/920
  58307. }
  58308. },
  58309. back: {
  58310. height: math.unit(2, "meters"),
  58311. weight: math.unit(140, "kg"),
  58312. name: "Back",
  58313. image: {
  58314. source: "./media/characters/caleb/back.svg",
  58315. extra: 877/828,
  58316. bottom: 24/901
  58317. }
  58318. },
  58319. snakeTail: {
  58320. height: math.unit(1.44, "feet"),
  58321. name: "Snake Tail",
  58322. image: {
  58323. source: "./media/characters/caleb/snake-tail.svg"
  58324. }
  58325. },
  58326. dick: {
  58327. height: math.unit(2.6, "feet"),
  58328. name: "Dick",
  58329. image: {
  58330. source: "./media/characters/caleb/dick.svg"
  58331. }
  58332. },
  58333. },
  58334. [
  58335. {
  58336. name: "Incognito",
  58337. height: math.unit(3, "meters")
  58338. },
  58339. {
  58340. name: "Home Size",
  58341. height: math.unit(200, "meters"),
  58342. default: true
  58343. },
  58344. {
  58345. name: "Macro",
  58346. height: math.unit(500, "meters")
  58347. },
  58348. {
  58349. name: "Big Macro",
  58350. height: math.unit(5, "km")
  58351. },
  58352. {
  58353. name: "Giga",
  58354. height: math.unit(250, "km")
  58355. },
  58356. {
  58357. name: "Giga+",
  58358. height: math.unit(5000, "km")
  58359. },
  58360. {
  58361. name: "Small Terra",
  58362. height: math.unit(35e3, "km")
  58363. },
  58364. {
  58365. name: "Terra",
  58366. height: math.unit(2e6, "km")
  58367. },
  58368. {
  58369. name: "Terra+",
  58370. height: math.unit(1.5e6, "km")
  58371. },
  58372. ]
  58373. ))
  58374. characterMakers.push(() => makeCharacter(
  58375. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58376. {
  58377. front: {
  58378. height: math.unit(2, "meters"),
  58379. weight: math.unit(120, "kg"),
  58380. name: "Front",
  58381. image: {
  58382. source: "./media/characters/gilirian/front.svg",
  58383. extra: 805/737,
  58384. bottom: 13/818
  58385. }
  58386. },
  58387. side: {
  58388. height: math.unit(2, "meters"),
  58389. weight: math.unit(120, "kg"),
  58390. name: "Side",
  58391. image: {
  58392. source: "./media/characters/gilirian/side.svg",
  58393. extra: 810/746,
  58394. bottom: 6/816
  58395. }
  58396. },
  58397. back: {
  58398. height: math.unit(2, "meters"),
  58399. weight: math.unit(120, "kg"),
  58400. name: "Back",
  58401. image: {
  58402. source: "./media/characters/gilirian/back.svg",
  58403. extra: 815/745,
  58404. bottom: 15/830
  58405. }
  58406. },
  58407. frontNsfw: {
  58408. height: math.unit(2, "meters"),
  58409. weight: math.unit(120, "kg"),
  58410. name: "Front (NSFW)",
  58411. image: {
  58412. source: "./media/characters/gilirian/front-nsfw.svg",
  58413. extra: 805/737,
  58414. bottom: 13/818
  58415. }
  58416. },
  58417. sideNsfw: {
  58418. height: math.unit(2, "meters"),
  58419. weight: math.unit(120, "kg"),
  58420. name: "Side (NSFW)",
  58421. image: {
  58422. source: "./media/characters/gilirian/side-nsfw.svg",
  58423. extra: 810/746,
  58424. bottom: 6/816
  58425. }
  58426. },
  58427. },
  58428. [
  58429. {
  58430. name: "Incognito",
  58431. height: math.unit(2, "meters"),
  58432. default: true
  58433. },
  58434. {
  58435. name: "Macro",
  58436. height: math.unit(250, "meters")
  58437. },
  58438. {
  58439. name: "Big Macro",
  58440. height: math.unit(1500, "meters")
  58441. },
  58442. {
  58443. name: "Mega",
  58444. height: math.unit(40, "km")
  58445. },
  58446. {
  58447. name: "Giga",
  58448. height: math.unit(300, "km")
  58449. },
  58450. {
  58451. name: "Extra Giga",
  58452. height: math.unit(5000, "km")
  58453. },
  58454. {
  58455. name: "Small Terra",
  58456. height: math.unit(10e3, "km")
  58457. },
  58458. {
  58459. name: "Terra",
  58460. height: math.unit(3e5, "km")
  58461. },
  58462. {
  58463. name: "Galactic",
  58464. height: math.unit(369950, "lightyears")
  58465. },
  58466. ]
  58467. ))
  58468. characterMakers.push(() => makeCharacter(
  58469. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58470. {
  58471. front: {
  58472. height: math.unit(2.5, "meters"),
  58473. weight: math.unit(230, "lb"),
  58474. name: "Front",
  58475. image: {
  58476. source: "./media/characters/tarken/front.svg",
  58477. extra: 764/720,
  58478. bottom: 49/813
  58479. }
  58480. },
  58481. back: {
  58482. height: math.unit(2.5, "meters"),
  58483. weight: math.unit(230, "lb"),
  58484. name: "Back",
  58485. image: {
  58486. source: "./media/characters/tarken/back.svg",
  58487. extra: 756/720,
  58488. bottom: 35/791
  58489. }
  58490. },
  58491. frontNsfw: {
  58492. height: math.unit(2.5, "meters"),
  58493. weight: math.unit(230, "lb"),
  58494. name: "Front (NSFW)",
  58495. image: {
  58496. source: "./media/characters/tarken/front-nsfw.svg",
  58497. extra: 764/720,
  58498. bottom: 49/813
  58499. }
  58500. },
  58501. backNsfw: {
  58502. height: math.unit(2.5, "meters"),
  58503. weight: math.unit(230, "lb"),
  58504. name: "Back (NSFW)",
  58505. image: {
  58506. source: "./media/characters/tarken/back-nsfw.svg",
  58507. extra: 756/720,
  58508. bottom: 35/791
  58509. }
  58510. },
  58511. head: {
  58512. height: math.unit(2.22, "feet"),
  58513. name: "Head",
  58514. image: {
  58515. source: "./media/characters/tarken/head.svg"
  58516. }
  58517. },
  58518. tail: {
  58519. height: math.unit(5.25, "feet"),
  58520. name: "Tail",
  58521. image: {
  58522. source: "./media/characters/tarken/tail.svg"
  58523. }
  58524. },
  58525. dick: {
  58526. height: math.unit(1.95, "feet"),
  58527. name: "Dick",
  58528. image: {
  58529. source: "./media/characters/tarken/dick.svg"
  58530. }
  58531. },
  58532. hand: {
  58533. height: math.unit(1.78, "feet"),
  58534. name: "Hand",
  58535. image: {
  58536. source: "./media/characters/tarken/hand.svg"
  58537. }
  58538. },
  58539. beam: {
  58540. height: math.unit(1.5, "feet"),
  58541. name: "Beam",
  58542. image: {
  58543. source: "./media/characters/tarken/beam.svg"
  58544. }
  58545. },
  58546. },
  58547. [
  58548. {
  58549. name: "Original Size",
  58550. height: math.unit(2.5, "meters")
  58551. },
  58552. {
  58553. name: "Macro",
  58554. height: math.unit(150, "meters"),
  58555. default: true
  58556. },
  58557. {
  58558. name: "Macro+",
  58559. height: math.unit(300, "meters")
  58560. },
  58561. {
  58562. name: "Mega",
  58563. height: math.unit(2, "km")
  58564. },
  58565. {
  58566. name: "Mega+",
  58567. height: math.unit(35, "km")
  58568. },
  58569.  {
  58570. name: "Mega++",
  58571. height: math.unit(60, "km")
  58572. },
  58573. {
  58574. name: "Giga",
  58575. height: math.unit(200, "km")
  58576. },
  58577. {
  58578. name: "Giga+",
  58579. height: math.unit(2500, "km")
  58580. },
  58581. {
  58582. name: "Giga++",
  58583. height: math.unit(6600, "km")
  58584. },
  58585. {
  58586. name: "Terra",
  58587. height: math.unit(20000, "km")
  58588. },
  58589. {
  58590. name: "Terra+",
  58591. height: math.unit(300000, "km")
  58592. },
  58593. ]
  58594. ))
  58595. characterMakers.push(() => makeCharacter(
  58596. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58597. {
  58598. magpie_dressed: {
  58599. height: math.unit(1.7, "meters"),
  58600. weight: math.unit(70, "kg"),
  58601. name: "Dressed",
  58602. image: {
  58603. source: "./media/characters/otreus/magpie-dressed.svg",
  58604. extra: 691/672,
  58605. bottom: 116/807
  58606. },
  58607. form: "magpie",
  58608. default: true
  58609. },
  58610. magpie_nude: {
  58611. height: math.unit(1.7, "meters"),
  58612. weight: math.unit(70, "kg"),
  58613. name: "Nude",
  58614. image: {
  58615. source: "./media/characters/otreus/magpie-nude.svg",
  58616. extra: 691/672,
  58617. bottom: 116/807
  58618. },
  58619. form: "magpie",
  58620. },
  58621. magpie_dressedLewd: {
  58622. height: math.unit(1.7, "meters"),
  58623. weight: math.unit(70, "kg"),
  58624. name: "Dressed (Lewd)",
  58625. image: {
  58626. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58627. extra: 691/672,
  58628. bottom: 116/807
  58629. },
  58630. form: "magpie",
  58631. },
  58632. magpie_nudeLewd: {
  58633. height: math.unit(1.7, "meters"),
  58634. weight: math.unit(70, "kg"),
  58635. name: "Nude (Lewd)",
  58636. image: {
  58637. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58638. extra: 691/672,
  58639. bottom: 116/807
  58640. },
  58641. form: "magpie",
  58642. },
  58643. magpie_leftFoot: {
  58644. height: math.unit(1.58, "feet"),
  58645. name: "Left Foot",
  58646. image: {
  58647. source: "./media/characters/otreus/magpie-left-foot.svg"
  58648. },
  58649. form: "magpie",
  58650. },
  58651. magpie_rightFoot: {
  58652. height: math.unit(1.58, "feet"),
  58653. name: "Right Foot",
  58654. image: {
  58655. source: "./media/characters/otreus/magpie-right-foot.svg"
  58656. },
  58657. form: "magpie",
  58658. },
  58659. magpie_wingspan: {
  58660. height: math.unit(2, "meters"),
  58661. weight: math.unit(70, "kg"),
  58662. name: "Wingspan",
  58663. image: {
  58664. source: "./media/characters/otreus/magpie-wingspan.svg"
  58665. },
  58666. extraAttributes: {
  58667. "wingspan": {
  58668. name: "Wingspan",
  58669. power: 1,
  58670. type: "length",
  58671. base: math.unit(3.35, "meters")
  58672. },
  58673. },
  58674. form: "magpie",
  58675. },
  58676. hippogriff_dressed: {
  58677. height: math.unit(1.7, "meters"),
  58678. weight: math.unit(70, "kg"),
  58679. name: "Dressed",
  58680. image: {
  58681. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58682. extra: 710/689,
  58683. bottom: 67/777
  58684. },
  58685. form: "hippogriff",
  58686. default: true
  58687. },
  58688. hippogriff_nude: {
  58689. height: math.unit(1.7, "meters"),
  58690. weight: math.unit(70, "kg"),
  58691. name: "Nude",
  58692. image: {
  58693. source: "./media/characters/otreus/hippogriff-nude.svg",
  58694. extra: 710/689,
  58695. bottom: 67/777
  58696. },
  58697. form: "hippogriff",
  58698. },
  58699. hippogriff_dressedLewd: {
  58700. height: math.unit(1.7, "meters"),
  58701. weight: math.unit(70, "kg"),
  58702. name: "Dressed (Lewd)",
  58703. image: {
  58704. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58705. extra: 710/689,
  58706. bottom: 67/777
  58707. },
  58708. form: "hippogriff",
  58709. },
  58710. hippogriff_nudeLewd: {
  58711. height: math.unit(1.7, "meters"),
  58712. weight: math.unit(70, "kg"),
  58713. name: "Nude (Lewd)",
  58714. image: {
  58715. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58716. extra: 710/689,
  58717. bottom: 67/777
  58718. },
  58719. form: "hippogriff",
  58720. },
  58721. },
  58722. [
  58723. {
  58724. name: "Original Size",
  58725. height: math.unit(1.7, "meters"),
  58726. allForms: true
  58727. },
  58728. {
  58729. name: "Incognito Size",
  58730. height: math.unit(2, "meters"),
  58731. allForms: true
  58732. },
  58733. {
  58734. name: "Mega",
  58735. height: math.unit(2, "km"),
  58736. allForms: true
  58737. },
  58738. {
  58739. name: "Mega+",
  58740. height: math.unit(40, "km"),
  58741. allForms: true
  58742. },
  58743. {
  58744. name: "Giga",
  58745. height: math.unit(250, "km"),
  58746. allForms: true
  58747. },
  58748. {
  58749. name: "Giga+",
  58750. height: math.unit(3000, "km"),
  58751. allForms: true
  58752. },
  58753. {
  58754. name: "Terra",
  58755. height: math.unit(20000, "km"),
  58756. allForms: true
  58757. },
  58758. {
  58759. name: "Solar (Home Size)",
  58760. height: math.unit(3e6, "km"),
  58761. allForms: true,
  58762. default: true
  58763. },
  58764. ],
  58765. {
  58766. "magpie": {
  58767. name: "Magpie",
  58768. default: true
  58769. },
  58770. "hippogriff": {
  58771. name: "Hippogriff",
  58772. },
  58773. }
  58774. ))
  58775. characterMakers.push(() => makeCharacter(
  58776. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58777. {
  58778. frontDressed: {
  58779. height: math.unit(1.8, "meters"),
  58780. weight: math.unit(90, "kg"),
  58781. name: "Front (Dressed)",
  58782. image: {
  58783. source: "./media/characters/thalia/front-dressed.svg",
  58784. extra: 478/402,
  58785. bottom: 55/533
  58786. }
  58787. },
  58788. backDressed: {
  58789. height: math.unit(1.8, "meters"),
  58790. weight: math.unit(90, "kg"),
  58791. name: "Back (Dressed)",
  58792. image: {
  58793. source: "./media/characters/thalia/back-dressed.svg",
  58794. extra: 500/424,
  58795. bottom: 15/515
  58796. }
  58797. },
  58798. frontNude: {
  58799. height: math.unit(1.8, "meters"),
  58800. weight: math.unit(90, "kg"),
  58801. name: "Front (Nude)",
  58802. image: {
  58803. source: "./media/characters/thalia/front-nude.svg",
  58804. extra: 478/402,
  58805. bottom: 55/533
  58806. }
  58807. },
  58808. backNude: {
  58809. height: math.unit(1.8, "meters"),
  58810. weight: math.unit(90, "kg"),
  58811. name: "Back (Nude)",
  58812. image: {
  58813. source: "./media/characters/thalia/back-nude.svg",
  58814. extra: 500/424,
  58815. bottom: 15/515
  58816. }
  58817. },
  58818. },
  58819. [
  58820. {
  58821. name: "Incognito",
  58822. height: math.unit(3, "meters")
  58823. },
  58824. {
  58825. name: "Macro",
  58826. height: math.unit(500, "meters")
  58827. },
  58828. {
  58829. name: "Mega",
  58830. height: math.unit(5, "km")
  58831. },
  58832. {
  58833. name: "Mega+",
  58834. height: math.unit(30, "km")
  58835. },
  58836. {
  58837. name: "Giga",
  58838. height: math.unit(350, "km")
  58839. },
  58840. {
  58841. name: "Giga+",
  58842. height: math.unit(4000, "km")
  58843. },
  58844. {
  58845. name: "Terra",
  58846. height: math.unit(35000, "km")
  58847. },
  58848. {
  58849. name: "Original Size",
  58850. height: math.unit(130000, "km")
  58851. },
  58852. {
  58853. name: "Solar (Home Size)",
  58854. height: math.unit(4e6, "km"),
  58855. default: true
  58856. },
  58857. ]
  58858. ))
  58859. characterMakers.push(() => makeCharacter(
  58860. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58861. {
  58862. front: {
  58863. height: math.unit(1.8, "meters"),
  58864. weight: math.unit(95, "kg"),
  58865. name: "Front",
  58866. image: {
  58867. source: "./media/characters/shango/front.svg",
  58868. extra: 1925/1774,
  58869. bottom: 67/1992
  58870. }
  58871. },
  58872. back: {
  58873. height: math.unit(1.8, "meters"),
  58874. weight: math.unit(95, "kg"),
  58875. name: "Back",
  58876. image: {
  58877. source: "./media/characters/shango/back.svg",
  58878. extra: 1915/1766,
  58879. bottom: 52/1967
  58880. }
  58881. },
  58882. frontLewd: {
  58883. height: math.unit(1.8, "meters"),
  58884. weight: math.unit(95, "kg"),
  58885. name: "Front (Lewd)",
  58886. image: {
  58887. source: "./media/characters/shango/front-lewd.svg",
  58888. extra: 1925/1774,
  58889. bottom: 67/1992
  58890. }
  58891. },
  58892. backLewd: {
  58893. height: math.unit(1.8, "meters"),
  58894. weight: math.unit(95, "kg"),
  58895. name: "Back (Lewd)",
  58896. image: {
  58897. source: "./media/characters/shango/back-lewd.svg",
  58898. extra: 1915/1766,
  58899. bottom: 52/1967
  58900. }
  58901. },
  58902. maw: {
  58903. height: math.unit(1.64, "feet"),
  58904. name: "Maw",
  58905. image: {
  58906. source: "./media/characters/shango/maw.svg"
  58907. }
  58908. },
  58909. dick: {
  58910. height: math.unit(2.14, "feet"),
  58911. name: "Dick",
  58912. image: {
  58913. source: "./media/characters/shango/dick.svg"
  58914. }
  58915. },
  58916. },
  58917. [
  58918. {
  58919. name: "Incognito",
  58920. height: math.unit(1.8, "meters")
  58921. },
  58922. {
  58923. name: "Home Size",
  58924. height: math.unit(60, "meters"),
  58925. default: true
  58926. },
  58927. {
  58928. name: "Macro",
  58929. height: math.unit(450, "meters")
  58930. },
  58931. {
  58932. name: "Mega",
  58933. height: math.unit(6, "km")
  58934. },
  58935. {
  58936. name: "Mega+",
  58937. height: math.unit(35, "km")
  58938. },
  58939. {
  58940. name: "Giga",
  58941. height: math.unit(500, "km")
  58942. },
  58943. {
  58944. name: "Giga+",
  58945. height: math.unit(5000, "km")
  58946. },
  58947. {
  58948. name: "Terra",
  58949. height: math.unit(60000, "km")
  58950. },
  58951. {
  58952. name: "Terra+",
  58953. height: math.unit(400000, "km")
  58954. },
  58955. ]
  58956. ))
  58957. characterMakers.push(() => makeCharacter(
  58958. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58959. {
  58960. front: {
  58961. height: math.unit(2, "meters"),
  58962. weight: math.unit(95, "kg"),
  58963. name: "Front",
  58964. image: {
  58965. source: "./media/characters/osiris-gryphon/front.svg",
  58966. extra: 1508/1313,
  58967. bottom: 87/1595
  58968. }
  58969. },
  58970. back: {
  58971. height: math.unit(2, "meters"),
  58972. weight: math.unit(95, "kg"),
  58973. name: "Back",
  58974. image: {
  58975. source: "./media/characters/osiris-gryphon/back.svg",
  58976. extra: 1436/1309,
  58977. bottom: 64/1500
  58978. }
  58979. },
  58980. frontLewd: {
  58981. height: math.unit(2, "meters"),
  58982. weight: math.unit(95, "kg"),
  58983. name: "Front-lewd",
  58984. image: {
  58985. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58986. extra: 1508/1313,
  58987. bottom: 87/1595
  58988. }
  58989. },
  58990. wing: {
  58991. height: math.unit(6.3333, "feet"),
  58992. name: "Wing",
  58993. image: {
  58994. source: "./media/characters/osiris-gryphon/wing.svg"
  58995. }
  58996. },
  58997. },
  58998. [
  58999. {
  59000. name: "Incognito",
  59001. height: math.unit(2, "meters")
  59002. },
  59003. {
  59004. name: "Home Size",
  59005. height: math.unit(30, "meters"),
  59006. default: true
  59007. },
  59008. {
  59009. name: "Macro",
  59010. height: math.unit(100, "meters")
  59011. },
  59012. {
  59013. name: "Macro+",
  59014. height: math.unit(350, "meters")
  59015. },
  59016. {
  59017. name: "Mega",
  59018. height: math.unit(40, "km")
  59019. },
  59020. {
  59021. name: "Giga",
  59022. height: math.unit(300, "km")
  59023. },
  59024. {
  59025. name: "Giga+",
  59026. height: math.unit(2000, "km")
  59027. },
  59028. {
  59029. name: "Terra",
  59030. height: math.unit(30000, "km")
  59031. },
  59032. ]
  59033. ))
  59034. characterMakers.push(() => makeCharacter(
  59035. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59036. {
  59037. front: {
  59038. height: math.unit(2.5, "meters"),
  59039. weight: math.unit(200, "kg"),
  59040. name: "Front",
  59041. image: {
  59042. source: "./media/characters/atlas-dragon/front.svg",
  59043. extra: 745/462,
  59044. bottom: 36/781
  59045. }
  59046. },
  59047. back: {
  59048. height: math.unit(2.5, "meters"),
  59049. weight: math.unit(200, "kg"),
  59050. name: "Back",
  59051. image: {
  59052. source: "./media/characters/atlas-dragon/back.svg",
  59053. extra: 848/822,
  59054. bottom: 57/905
  59055. }
  59056. },
  59057. frontLewd: {
  59058. height: math.unit(2.5, "meters"),
  59059. weight: math.unit(200, "kg"),
  59060. name: "Front (Lewd)",
  59061. image: {
  59062. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59063. extra: 745/462,
  59064. bottom: 36/781
  59065. }
  59066. },
  59067. backLewd: {
  59068. height: math.unit(2.5, "meters"),
  59069. weight: math.unit(200, "kg"),
  59070. name: "Back (Lewd)",
  59071. image: {
  59072. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59073. extra: 848/822,
  59074. bottom: 57/905
  59075. }
  59076. },
  59077. },
  59078. [
  59079. {
  59080. name: "Incognito",
  59081. height: math.unit(2.5, "meters")
  59082. },
  59083. {
  59084. name: "Small Macro",
  59085. height: math.unit(50, "meters")
  59086. },
  59087. {
  59088. name: "Macro",
  59089. height: math.unit(350, "meters")
  59090. },
  59091. {
  59092. name: "Mega",
  59093. height: math.unit(5.5, "kilometers")
  59094. },
  59095. {
  59096. name: "Mega+",
  59097. height: math.unit(50, "km")
  59098. },
  59099. {
  59100. name: "Giga",
  59101. height: math.unit(350, "km")
  59102. },
  59103. {
  59104. name: "Giga+",
  59105. height: math.unit(2000, "km")
  59106. },
  59107. {
  59108. name: "Giga++",
  59109. height: math.unit(6500, "km")
  59110. },
  59111. {
  59112. name: "Terra",
  59113. height: math.unit(30000, "km")
  59114. },
  59115. {
  59116. name: "Terra+",
  59117. height: math.unit(250000, "km")
  59118. },
  59119. {
  59120. name: "True Size",
  59121. height: math.unit(100, "multiverses"),
  59122. default: true
  59123. },
  59124. ]
  59125. ))
  59126. characterMakers.push(() => makeCharacter(
  59127. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59128. {
  59129. front: {
  59130. height: math.unit(1.8, "m"),
  59131. weight: math.unit(120, "kg"),
  59132. name: "Front",
  59133. image: {
  59134. source: "./media/characters/chey/front.svg",
  59135. extra: 1359/1270,
  59136. bottom: 18/1377
  59137. }
  59138. },
  59139. arm: {
  59140. height: math.unit(2.05, "feet"),
  59141. name: "Arm",
  59142. image: {
  59143. source: "./media/characters/chey/arm.svg"
  59144. }
  59145. },
  59146. head: {
  59147. height: math.unit(1.89, "feet"),
  59148. name: "Head",
  59149. image: {
  59150. source: "./media/characters/chey/head.svg"
  59151. }
  59152. },
  59153. },
  59154. [
  59155. {
  59156. name: "Original Size",
  59157. height: math.unit(5, "cm")
  59158. },
  59159. {
  59160. name: "Incognito Size",
  59161. height: math.unit(2.4, "m")
  59162. },
  59163. {
  59164. name: "Home Size",
  59165. height: math.unit(200, "meters"),
  59166. default: true
  59167. },
  59168. {
  59169. name: "Mega",
  59170. height: math.unit(2, "km")
  59171. },
  59172. {
  59173. name: "Giga (Preferred Size)",
  59174. height: math.unit(2000, "km")
  59175. },
  59176. {
  59177. name: "Giga+",
  59178. height: math.unit(6000, "km")
  59179. },
  59180. {
  59181. name: "Terra",
  59182. height: math.unit(17000, "km")
  59183. },
  59184. {
  59185. name: "Terra+",
  59186. height: math.unit(75000, "km")
  59187. },
  59188. {
  59189. name: "Terra++",
  59190. height: math.unit(225000, "km")
  59191. },
  59192. ]
  59193. ))
  59194. characterMakers.push(() => makeCharacter(
  59195. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59196. {
  59197. side: {
  59198. height: math.unit(7.8, "meters"),
  59199. name: "Side",
  59200. image: {
  59201. source: "./media/characters/ragnarok/side.svg",
  59202. extra: 725/621,
  59203. bottom: 72/797
  59204. }
  59205. },
  59206. },
  59207. [
  59208. {
  59209. name: "Normal",
  59210. height: math.unit(7.8, "meters"),
  59211. default: true
  59212. },
  59213. ]
  59214. ))
  59215. characterMakers.push(() => makeCharacter(
  59216. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59217. {
  59218. hyena_front: {
  59219. height: math.unit(2.1, "meters"),
  59220. weight: math.unit(110, "kg"),
  59221. name: "Front",
  59222. image: {
  59223. source: "./media/characters/nima/hyena-front.svg",
  59224. extra: 1904/1796,
  59225. bottom: 67/1971
  59226. },
  59227. form: "hyena",
  59228. },
  59229. hyena_back: {
  59230. height: math.unit(2.1, "meters"),
  59231. weight: math.unit(110, "kg"),
  59232. name: "Back",
  59233. image: {
  59234. source: "./media/characters/nima/hyena-back.svg",
  59235. extra: 1964/1884,
  59236. bottom: 35/1999
  59237. },
  59238. form: "hyena",
  59239. },
  59240. shark_front: {
  59241. height: math.unit(1.95, "meters"),
  59242. weight: math.unit(110, "kg"),
  59243. name: "Front",
  59244. image: {
  59245. source: "./media/characters/nima/shark-front.svg",
  59246. extra: 2238/2013,
  59247. bottom: 0/223
  59248. },
  59249. form: "shark",
  59250. },
  59251. paw: {
  59252. height: math.unit(1, "feet"),
  59253. name: "Paw",
  59254. image: {
  59255. source: "./media/characters/nima/paw.svg"
  59256. }
  59257. },
  59258. circlet: {
  59259. height: math.unit(0.3, "feet"),
  59260. name: "Circlet",
  59261. image: {
  59262. source: "./media/characters/nima/circlet.svg"
  59263. }
  59264. },
  59265. necklace: {
  59266. height: math.unit(1.2, "feet"),
  59267. name: "Necklace",
  59268. image: {
  59269. source: "./media/characters/nima/necklace.svg"
  59270. }
  59271. },
  59272. bracelet: {
  59273. height: math.unit(0.51, "feet"),
  59274. name: "Bracelet",
  59275. image: {
  59276. source: "./media/characters/nima/bracelet.svg"
  59277. }
  59278. },
  59279. armband: {
  59280. height: math.unit(1.3, "feet"),
  59281. name: "Armband",
  59282. image: {
  59283. source: "./media/characters/nima/armband.svg"
  59284. }
  59285. },
  59286. },
  59287. [
  59288. {
  59289. name: "Incognito",
  59290. height: math.unit(2.1, "meters"),
  59291. allForms: true
  59292. },
  59293. {
  59294. name: "Small Macro",
  59295. height: math.unit(50, "meters"),
  59296. allForms: true
  59297. },
  59298. {
  59299. name: "Macro",
  59300. height: math.unit(200, "meters"),
  59301. allForms: true
  59302. },
  59303. {
  59304. name: "Mega",
  59305. height: math.unit(2.5, "km"),
  59306. allForms: true
  59307. },
  59308. {
  59309. name: "Mega+",
  59310. height: math.unit(30, "km"),
  59311. allForms: true
  59312. },
  59313. {
  59314. name: "Giga (Home Size)",
  59315. height: math.unit(400, "km"),
  59316. allForms: true,
  59317. default: true
  59318. },
  59319. {
  59320. name: "Giga+",
  59321. height: math.unit(2500, "km"),
  59322. allForms: true
  59323. },
  59324. {
  59325. name: "Giga++",
  59326. height: math.unit(8000, "km"),
  59327. allForms: true
  59328. },
  59329. {
  59330. name: "Terra",
  59331. height: math.unit(20000, "km"),
  59332. allForms: true
  59333. },
  59334. {
  59335. name: "Terra+",
  59336. height: math.unit(70000, "km"),
  59337. allForms: true
  59338. },
  59339. {
  59340. name: "Terra++",
  59341. height: math.unit(600000, "km"),
  59342. allForms: true
  59343. },
  59344. {
  59345. name: "Galactic",
  59346. height: math.unit(40, "galaxies"),
  59347. allForms: true
  59348. },
  59349. {
  59350. name: "Universal",
  59351. height: math.unit(40, "universes"),
  59352. allForms: true
  59353. },
  59354. ],
  59355. {
  59356. "hyena": {
  59357. name: "Hyena",
  59358. default: true
  59359. },
  59360. "shark": {
  59361. name: "Shark",
  59362. },
  59363. }
  59364. ))
  59365. characterMakers.push(() => makeCharacter(
  59366. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59367. {
  59368. anthro_front: {
  59369. height: math.unit(1.5, "meters"),
  59370. name: "Front",
  59371. image: {
  59372. source: "./media/characters/adelaide/anthro-front.svg",
  59373. extra: 860/783,
  59374. bottom: 60/920
  59375. },
  59376. form: "anthro",
  59377. default: true
  59378. },
  59379. hand: {
  59380. height: math.unit(0.65, "feet"),
  59381. name: "Hand",
  59382. image: {
  59383. source: "./media/characters/adelaide/hand.svg"
  59384. },
  59385. form: "anthro"
  59386. },
  59387. foot: {
  59388. height: math.unit(1.38 * 259 / 314, "feet"),
  59389. name: "Foot",
  59390. image: {
  59391. source: "./media/characters/adelaide/foot.svg",
  59392. extra: 259/259,
  59393. bottom: 55/314
  59394. },
  59395. form: "anthro"
  59396. },
  59397. feather: {
  59398. height: math.unit(0.85, "feet"),
  59399. name: "Feather",
  59400. image: {
  59401. source: "./media/characters/adelaide/feather.svg"
  59402. },
  59403. form: "anthro"
  59404. },
  59405. feral_side: {
  59406. height: math.unit(1, "meters"),
  59407. name: "Side",
  59408. image: {
  59409. source: "./media/characters/adelaide/feral-side.svg",
  59410. extra: 550/467,
  59411. bottom: 37/587
  59412. },
  59413. form: "feral",
  59414. default: true
  59415. },
  59416. feral_hand: {
  59417. height: math.unit(0.58, "feet"),
  59418. name: "Hand",
  59419. image: {
  59420. source: "./media/characters/adelaide/hand.svg"
  59421. },
  59422. form: "feral"
  59423. },
  59424. feral_foot: {
  59425. height: math.unit(1.2 * 259 / 314, "feet"),
  59426. name: "Foot",
  59427. image: {
  59428. source: "./media/characters/adelaide/foot.svg",
  59429. extra: 259/259,
  59430. bottom: 55/314
  59431. },
  59432. form: "feral"
  59433. },
  59434. feral_feather: {
  59435. height: math.unit(0.63, "feet"),
  59436. name: "Feather",
  59437. image: {
  59438. source: "./media/characters/adelaide/feather.svg"
  59439. },
  59440. form: "feral"
  59441. },
  59442. },
  59443. [
  59444. {
  59445. name: "Normal",
  59446. height: math.unit(1.5, "meters"),
  59447. form: "anthro",
  59448. default: true
  59449. },
  59450. {
  59451. name: "Normal",
  59452. height: math.unit(1, "meters"),
  59453. form: "feral",
  59454. default: true
  59455. },
  59456. ],
  59457. {
  59458. "anthro": {
  59459. name: "Anthro",
  59460. default: true
  59461. },
  59462. "feral": {
  59463. name: "Feral",
  59464. },
  59465. }
  59466. ))
  59467. characterMakers.push(() => makeCharacter(
  59468. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59469. {
  59470. front: {
  59471. height: math.unit(2.5, "meters"),
  59472. name: "Front",
  59473. image: {
  59474. source: "./media/characters/goa/front.svg",
  59475. extra: 1109/1013,
  59476. bottom: 150/1259
  59477. }
  59478. },
  59479. },
  59480. [
  59481. {
  59482. name: "Normal",
  59483. height: math.unit(2.5, "meters"),
  59484. default: true
  59485. },
  59486. ]
  59487. ))
  59488. characterMakers.push(() => makeCharacter(
  59489. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59490. {
  59491. front: {
  59492. height: math.unit(2, "meters"),
  59493. weight: math.unit(100, "kg"),
  59494. name: "Front",
  59495. image: {
  59496. source: "./media/characters/kiki-weavile/front.svg",
  59497. extra: 357/332,
  59498. bottom: 60/417
  59499. }
  59500. },
  59501. },
  59502. [
  59503. {
  59504. name: "Normal",
  59505. height: math.unit(2, "meters"),
  59506. default: true
  59507. },
  59508. ]
  59509. ))
  59510. characterMakers.push(() => makeCharacter(
  59511. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59512. {
  59513. side: {
  59514. height: math.unit(1.6, "meters"),
  59515. name: "Side",
  59516. image: {
  59517. source: "./media/characters/liza/side.svg",
  59518. extra: 943/915,
  59519. bottom: 72/1015
  59520. }
  59521. },
  59522. },
  59523. [
  59524. {
  59525. name: "Normal",
  59526. height: math.unit(1.6, "meters"),
  59527. default: true
  59528. },
  59529. ]
  59530. ))
  59531. characterMakers.push(() => makeCharacter(
  59532. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59533. {
  59534. side: {
  59535. height: math.unit(2.5, "meters"),
  59536. preyCapacity: math.unit(1, "people"),
  59537. name: "Side",
  59538. image: {
  59539. source: "./media/characters/persephone-sweetbreath/side.svg",
  59540. extra: 796/700,
  59541. bottom: 44/840
  59542. }
  59543. },
  59544. sideVore: {
  59545. height: math.unit(2.5, "meters"),
  59546. preyCapacity: math.unit(1, "people"),
  59547. name: "Side (Full)",
  59548. image: {
  59549. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59550. extra: 796/700,
  59551. bottom: 44/840
  59552. }
  59553. },
  59554. },
  59555. [
  59556. {
  59557. name: "Normal",
  59558. height: math.unit(2.5, "meters"),
  59559. default: true
  59560. },
  59561. ]
  59562. ))
  59563. characterMakers.push(() => makeCharacter(
  59564. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59565. {
  59566. front: {
  59567. height: math.unit(32, "meters"),
  59568. name: "Front",
  59569. image: {
  59570. source: "./media/characters/pierce/front.svg",
  59571. extra: 1695/1475,
  59572. bottom: 185/1880
  59573. }
  59574. },
  59575. side: {
  59576. height: math.unit(32, "meters"),
  59577. name: "Side",
  59578. image: {
  59579. source: "./media/characters/pierce/side.svg",
  59580. extra: 974/859,
  59581. bottom: 43/1017
  59582. }
  59583. },
  59584. frontWingless: {
  59585. height: math.unit(32, "meters"),
  59586. name: "Front (Wingless)",
  59587. image: {
  59588. source: "./media/characters/pierce/front-wingless.svg",
  59589. extra: 1695/1475,
  59590. bottom: 185/1880
  59591. }
  59592. },
  59593. sideWingless: {
  59594. height: math.unit(32, "meters"),
  59595. name: "Side (Wingless)",
  59596. image: {
  59597. source: "./media/characters/pierce/side-wingless.svg",
  59598. extra: 974/859,
  59599. bottom: 43/1017
  59600. }
  59601. },
  59602. maw: {
  59603. height: math.unit(19.3, "meters"),
  59604. name: "Maw",
  59605. image: {
  59606. source: "./media/characters/pierce/maw.svg"
  59607. }
  59608. },
  59609. },
  59610. [
  59611. {
  59612. name: "Small",
  59613. height: math.unit(8.5, "meters")
  59614. },
  59615. {
  59616. name: "Normal",
  59617. height: math.unit(32, "meters"),
  59618. default: true
  59619. },
  59620. ]
  59621. ))
  59622. characterMakers.push(() => makeCharacter(
  59623. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59624. {
  59625. front: {
  59626. height: math.unit(2.3, "meters"),
  59627. weight: math.unit(165, "kg"),
  59628. name: "Front",
  59629. image: {
  59630. source: "./media/characters/shira/front.svg",
  59631. extra: 924/919,
  59632. bottom: 17/941
  59633. },
  59634. form: "cobra",
  59635. default: true
  59636. },
  59637. back: {
  59638. height: math.unit(2.3, "meters"),
  59639. weight: math.unit(165, "kg"),
  59640. name: "Back",
  59641. image: {
  59642. source: "./media/characters/shira/back.svg",
  59643. extra: 928/922,
  59644. bottom: 18/946
  59645. },
  59646. form: "cobra"
  59647. },
  59648. frontLewd: {
  59649. height: math.unit(2.3, "meters"),
  59650. weight: math.unit(165, "kg"),
  59651. name: "Front (Lewd)",
  59652. image: {
  59653. source: "./media/characters/shira/front-lewd.svg",
  59654. extra: 924/919,
  59655. bottom: 17/941
  59656. },
  59657. form: "cobra"
  59658. },
  59659. backLewd: {
  59660. height: math.unit(2.3, "meters"),
  59661. weight: math.unit(165, "kg"),
  59662. name: "Back (Lewd)",
  59663. image: {
  59664. source: "./media/characters/shira/back-lewd.svg",
  59665. extra: 928/922,
  59666. bottom: 18/946
  59667. },
  59668. form: "cobra"
  59669. },
  59670. maw: {
  59671. height: math.unit(1.14, "feet"),
  59672. name: "Maw",
  59673. image: {
  59674. source: "./media/characters/shira/maw.svg"
  59675. },
  59676. form: "cobra"
  59677. },
  59678. magma_front: {
  59679. height: math.unit(2.3, "meters"),
  59680. weight: math.unit(165, "kg"),
  59681. name: "Front",
  59682. image: {
  59683. source: "./media/characters/shira/magma-front.svg",
  59684. extra: 1870/1693,
  59685. bottom: 24/1894
  59686. },
  59687. form: "magma",
  59688. },
  59689. magma_back: {
  59690. height: math.unit(2.3, "meters"),
  59691. weight: math.unit(165, "kg"),
  59692. name: "Back",
  59693. image: {
  59694. source: "./media/characters/shira/magma-back.svg",
  59695. extra: 1918/1756,
  59696. bottom: 46/1964
  59697. },
  59698. form: "magma",
  59699. },
  59700. },
  59701. [
  59702. {
  59703. name: "Incognito",
  59704. height: math.unit(2.3, "meters"),
  59705. allForms: true
  59706. },
  59707. {
  59708. name: "Home Size",
  59709. height: math.unit(150, "meters"),
  59710. default: true,
  59711. allForms: true
  59712. },
  59713. {
  59714. name: "Macro",
  59715. height: math.unit(2, "km"),
  59716. allForms: true
  59717. },
  59718. {
  59719. name: "Mega",
  59720. height: math.unit(30, "km"),
  59721. allForms: true
  59722. },
  59723. {
  59724. name: "Giga",
  59725. height: math.unit(450, "km"),
  59726. allForms: true
  59727. },
  59728. {
  59729. name: "Giga+",
  59730. height: math.unit(3000, "km"),
  59731. allForms: true
  59732. },
  59733. {
  59734. name: "Giga++",
  59735. height: math.unit(6000, "km"),
  59736. allForms: true
  59737. },
  59738. {
  59739. name: "Terra",
  59740. height: math.unit(80000, "km"),
  59741. allForms: true
  59742. },
  59743. {
  59744. name: "Terra+",
  59745. height: math.unit(350000, "km"),
  59746. allForms: true
  59747. },
  59748. {
  59749. name: "Solar",
  59750. height: math.unit(1e6, "km"),
  59751. allForms: true
  59752. },
  59753. ],
  59754. {
  59755. "cobra": {
  59756. name: "Cobra",
  59757. default: true
  59758. },
  59759. "magma": {
  59760. name: "Magma Dragon",
  59761. },
  59762. }
  59763. ))
  59764. characterMakers.push(() => makeCharacter(
  59765. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59766. {
  59767. front: {
  59768. height: math.unit(2, "meters"),
  59769. weight: math.unit(160, "kg"),
  59770. name: "Front",
  59771. image: {
  59772. source: "./media/characters/daxerios/front.svg",
  59773. extra: 1334/1277,
  59774. bottom: 45/1379
  59775. }
  59776. },
  59777. frontLewd: {
  59778. height: math.unit(2, "meters"),
  59779. weight: math.unit(160, "kg"),
  59780. name: "Front (Lewd)",
  59781. image: {
  59782. source: "./media/characters/daxerios/front-lewd.svg",
  59783. extra: 1334/1277,
  59784. bottom: 45/1379
  59785. }
  59786. },
  59787. dick: {
  59788. height: math.unit(2.35, "feet"),
  59789. name: "Dick",
  59790. image: {
  59791. source: "./media/characters/daxerios/dick.svg"
  59792. }
  59793. },
  59794. },
  59795. [
  59796. {
  59797. name: "\"Small\"",
  59798. height: math.unit(5, "meters")
  59799. },
  59800. {
  59801. name: "Original Size",
  59802. height: math.unit(500, "meters"),
  59803. default: true
  59804. },
  59805. {
  59806. name: "Mega",
  59807. height: math.unit(2, "km")
  59808. },
  59809. {
  59810. name: "Mega+",
  59811. height: math.unit(35, "km")
  59812. },
  59813. {
  59814. name: "Giga",
  59815. height: math.unit(250, "km")
  59816. },
  59817. {
  59818. name: "Giga+",
  59819. height: math.unit(3000, "km")
  59820. },
  59821. {
  59822. name: "Terra",
  59823. height: math.unit(25000, "km")
  59824. },
  59825. {
  59826. name: "Terra+",
  59827. height: math.unit(300000, "km")
  59828. },
  59829. {
  59830. name: "Solar",
  59831. height: math.unit(1e6, "km")
  59832. },
  59833. ]
  59834. ))
  59835. characterMakers.push(() => makeCharacter(
  59836. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59837. {
  59838. front: {
  59839. height: math.unit(8 + 4/12, "feet"),
  59840. weight: math.unit(464, "lb"),
  59841. name: "Front",
  59842. image: {
  59843. source: "./media/characters/caveat/front.svg",
  59844. extra: 1861/1678,
  59845. bottom: 40/1901
  59846. }
  59847. },
  59848. },
  59849. [
  59850. {
  59851. name: "Normal",
  59852. height: math.unit(8 + 4/12, "feet"),
  59853. default: true
  59854. },
  59855. ]
  59856. ))
  59857. characterMakers.push(() => makeCharacter(
  59858. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59859. {
  59860. front: {
  59861. height: math.unit(12, "feet"),
  59862. weight: math.unit(1800, "lb"),
  59863. name: "Front",
  59864. image: {
  59865. source: "./media/characters/centbair/front.svg",
  59866. extra: 781/663,
  59867. bottom: 25/806
  59868. }
  59869. },
  59870. frontNsfw: {
  59871. height: math.unit(12, "feet"),
  59872. weight: math.unit(1800, "lb"),
  59873. name: "Front (NSFW)",
  59874. image: {
  59875. source: "./media/characters/centbair/front-nsfw.svg",
  59876. extra: 781/663,
  59877. bottom: 25/806
  59878. }
  59879. },
  59880. back: {
  59881. height: math.unit(12, "feet"),
  59882. weight: math.unit(1800, "lb"),
  59883. name: "Back",
  59884. image: {
  59885. source: "./media/characters/centbair/back.svg",
  59886. extra: 808/761,
  59887. bottom: 19/827
  59888. }
  59889. },
  59890. dick: {
  59891. height: math.unit(6.5, "feet"),
  59892. name: "Dick",
  59893. image: {
  59894. source: "./media/characters/centbair/dick.svg"
  59895. }
  59896. },
  59897. slit: {
  59898. height: math.unit(3.25, "feet"),
  59899. name: "Slit",
  59900. image: {
  59901. source: "./media/characters/centbair/slit.svg"
  59902. }
  59903. },
  59904. },
  59905. [
  59906. {
  59907. name: "Normal",
  59908. height: math.unit(12, "feet"),
  59909. default: true
  59910. },
  59911. ]
  59912. ))
  59913. characterMakers.push(() => makeCharacter(
  59914. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59915. {
  59916. front: {
  59917. height: math.unit(5 + 7/12, "feet"),
  59918. name: "Front",
  59919. image: {
  59920. source: "./media/characters/andy/front.svg",
  59921. extra: 634/588,
  59922. bottom: 36/670
  59923. },
  59924. extraAttributes: {
  59925. "pawLength": {
  59926. name: "Paw Length",
  59927. power: 1,
  59928. type: "length",
  59929. base: math.unit(1, "feet")
  59930. },
  59931. }
  59932. },
  59933. side: {
  59934. height: math.unit(5 + 7/12, "feet"),
  59935. name: "Side",
  59936. image: {
  59937. source: "./media/characters/andy/side.svg",
  59938. extra: 641/596,
  59939. bottom: 34/675
  59940. },
  59941. extraAttributes: {
  59942. "pawLength": {
  59943. name: "Paw Length",
  59944. power: 1,
  59945. type: "length",
  59946. base: math.unit(1, "feet")
  59947. },
  59948. }
  59949. },
  59950. back: {
  59951. height: math.unit(5 + 7/12, "feet"),
  59952. name: "Back",
  59953. image: {
  59954. source: "./media/characters/andy/back.svg",
  59955. extra: 618/583,
  59956. bottom: 39/657
  59957. },
  59958. extraAttributes: {
  59959. "pawLength": {
  59960. name: "Paw Length",
  59961. power: 1,
  59962. type: "length",
  59963. base: math.unit(1, "feet")
  59964. },
  59965. }
  59966. },
  59967. paw: {
  59968. height: math.unit(1.13, "feet"),
  59969. name: "Paw",
  59970. image: {
  59971. source: "./media/characters/andy/paw.svg"
  59972. }
  59973. },
  59974. },
  59975. [
  59976. {
  59977. name: "Micro",
  59978. height: math.unit(4, "inches")
  59979. },
  59980. {
  59981. name: "Normal",
  59982. height: math.unit(5 + 7/12, "feet"),
  59983. default: true
  59984. },
  59985. {
  59986. name: "Macro",
  59987. height: math.unit(390.42, "feet")
  59988. },
  59989. ]
  59990. ))
  59991. characterMakers.push(() => makeCharacter(
  59992. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59993. {
  59994. front: {
  59995. height: math.unit(7, "feet"),
  59996. weight: math.unit(250, "lb"),
  59997. name: "Front",
  59998. image: {
  59999. source: "./media/characters/vix-titan/front.svg",
  60000. extra: 460/428,
  60001. bottom: 15/475
  60002. },
  60003. extraAttributes: {
  60004. "pawWidth": {
  60005. name: "Paw Width",
  60006. power: 1,
  60007. type: "length",
  60008. base: math.unit(0.75, "feet")
  60009. },
  60010. }
  60011. },
  60012. },
  60013. [
  60014. {
  60015. name: "Normal",
  60016. height: math.unit(7, "feet"),
  60017. default: true
  60018. },
  60019. {
  60020. name: "Giant",
  60021. height: math.unit(1500, "feet")
  60022. },
  60023. {
  60024. name: "Mega",
  60025. height: math.unit(10, "miles")
  60026. },
  60027. {
  60028. name: "Giga",
  60029. height: math.unit(150, "miles")
  60030. },
  60031. {
  60032. name: "Tera",
  60033. height: math.unit(144000, "miles")
  60034. },
  60035. ]
  60036. ))
  60037. characterMakers.push(() => makeCharacter(
  60038. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60039. {
  60040. front: {
  60041. height: math.unit(6 + 2/12, "feet"),
  60042. name: "Front",
  60043. image: {
  60044. source: "./media/characters/reiku/front.svg",
  60045. extra: 1910/1757,
  60046. bottom: 103/2013
  60047. },
  60048. extraAttributes: {
  60049. "thighThickness": {
  60050. name: "Thigh Thickness",
  60051. power: 1,
  60052. type: "length",
  60053. base: math.unit(1.12, "feet")
  60054. },
  60055. "assThickness": {
  60056. name: "Ass Thickness",
  60057. power: 1,
  60058. type: "length",
  60059. base: math.unit(1.12*2, "feet")
  60060. },
  60061. }
  60062. },
  60063. side: {
  60064. height: math.unit(6 + 2/12, "feet"),
  60065. name: "Side",
  60066. image: {
  60067. source: "./media/characters/reiku/side.svg",
  60068. extra: 1846/1748,
  60069. bottom: 99/1945
  60070. },
  60071. extraAttributes: {
  60072. "thighThickness": {
  60073. name: "Thigh Thickness",
  60074. power: 1,
  60075. type: "length",
  60076. base: math.unit(1.12, "feet")
  60077. },
  60078. "assThickness": {
  60079. name: "Ass Thickness",
  60080. power: 1,
  60081. type: "length",
  60082. base: math.unit(1.12*2, "feet")
  60083. },
  60084. }
  60085. },
  60086. back: {
  60087. height: math.unit(6 + 2/12, "feet"),
  60088. name: "Back",
  60089. image: {
  60090. source: "./media/characters/reiku/back.svg",
  60091. extra: 1941/1786,
  60092. bottom: 34/1975
  60093. },
  60094. extraAttributes: {
  60095. "thighThickness": {
  60096. name: "Thigh Thickness",
  60097. power: 1,
  60098. type: "length",
  60099. base: math.unit(1.12, "feet")
  60100. },
  60101. "assThickness": {
  60102. name: "Ass Thickness",
  60103. power: 1,
  60104. type: "length",
  60105. base: math.unit(1.12*2, "feet")
  60106. },
  60107. }
  60108. },
  60109. head: {
  60110. height: math.unit(1.8, "feet"),
  60111. name: "Head",
  60112. image: {
  60113. source: "./media/characters/reiku/head.svg"
  60114. }
  60115. },
  60116. tailTop: {
  60117. height: math.unit(8.4, "feet"),
  60118. name: "Tail (Top)",
  60119. image: {
  60120. source: "./media/characters/reiku/tail-top.svg"
  60121. }
  60122. },
  60123. tailBottom: {
  60124. height: math.unit(8.4, "feet"),
  60125. name: "Tail (Bottom)",
  60126. image: {
  60127. source: "./media/characters/reiku/tail-bottom.svg"
  60128. }
  60129. },
  60130. foot: {
  60131. height: math.unit(2.6, "feet"),
  60132. name: "Foot",
  60133. image: {
  60134. source: "./media/characters/reiku/foot.svg"
  60135. }
  60136. },
  60137. footCurled: {
  60138. height: math.unit(2.3, "feet"),
  60139. name: "Foot (Curled)",
  60140. image: {
  60141. source: "./media/characters/reiku/foot-curled.svg"
  60142. }
  60143. },
  60144. footSide: {
  60145. height: math.unit(1.26, "feet"),
  60146. name: "Foot (Side)",
  60147. image: {
  60148. source: "./media/characters/reiku/foot-side.svg"
  60149. }
  60150. },
  60151. },
  60152. [
  60153. {
  60154. name: "Normal",
  60155. height: math.unit(6 + 2/12, "feet"),
  60156. default: true
  60157. },
  60158. ]
  60159. ))
  60160. characterMakers.push(() => makeCharacter(
  60161. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60162. {
  60163. front: {
  60164. height: math.unit(7, "feet"),
  60165. weight: math.unit(500, "kg"),
  60166. name: "Front",
  60167. image: {
  60168. source: "./media/characters/cialda/front.svg",
  60169. extra: 912/745,
  60170. bottom: 55/967
  60171. }
  60172. },
  60173. },
  60174. [
  60175. {
  60176. name: "Normal",
  60177. height: math.unit(7, "feet"),
  60178. default: true
  60179. },
  60180. ]
  60181. ))
  60182. characterMakers.push(() => makeCharacter(
  60183. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60184. {
  60185. side: {
  60186. height: math.unit(6, "feet"),
  60187. weight: math.unit(600, "lb"),
  60188. preyCapacity: math.unit(25, "liters"),
  60189. name: "Side",
  60190. image: {
  60191. source: "./media/characters/darkkin/side.svg",
  60192. extra: 1597/1447,
  60193. bottom: 101/1698
  60194. }
  60195. },
  60196. },
  60197. [
  60198. {
  60199. name: "Canon Height",
  60200. height: math.unit(568, "feet"),
  60201. default: true
  60202. },
  60203. ]
  60204. ))
  60205. characterMakers.push(() => makeCharacter(
  60206. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60207. {
  60208. front: {
  60209. height: math.unit(6, "feet"),
  60210. weight: math.unit(1500, "lb"),
  60211. preyCapacity: math.unit(3, "people"),
  60212. name: "Front",
  60213. image: {
  60214. source: "./media/characters/livnia/front.svg",
  60215. extra: 934/932,
  60216. bottom: 83/1017
  60217. }
  60218. },
  60219. back: {
  60220. height: math.unit(6, "feet"),
  60221. weight: math.unit(1500, "lb"),
  60222. preyCapacity: math.unit(3, "people"),
  60223. name: "Back",
  60224. image: {
  60225. source: "./media/characters/livnia/back.svg",
  60226. extra: 916/915,
  60227. bottom: 58/974
  60228. }
  60229. },
  60230. head: {
  60231. height: math.unit(1.53, "feet"),
  60232. name: "Head",
  60233. image: {
  60234. source: "./media/characters/livnia/head.svg"
  60235. }
  60236. },
  60237. maw: {
  60238. height: math.unit(0.78, "feet"),
  60239. name: "Maw",
  60240. image: {
  60241. source: "./media/characters/livnia/maw.svg"
  60242. }
  60243. },
  60244. genitals: {
  60245. height: math.unit(0.35, "feet"),
  60246. name: "Genitals",
  60247. image: {
  60248. source: "./media/characters/livnia/genitals.svg"
  60249. }
  60250. },
  60251. },
  60252. [
  60253. {
  60254. name: "Normal",
  60255. height: math.unit(1000, "feet"),
  60256. default: true
  60257. },
  60258. ]
  60259. ))
  60260. characterMakers.push(() => makeCharacter(
  60261. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60262. {
  60263. front: {
  60264. height: math.unit(4, "feet"),
  60265. weight: math.unit(73, "lb"),
  60266. name: "Front",
  60267. image: {
  60268. source: "./media/characters/hayaku/front.svg",
  60269. extra: 1011/888,
  60270. bottom: 33/1044
  60271. }
  60272. },
  60273. back: {
  60274. height: math.unit(4, "feet"),
  60275. weight: math.unit(73, "lb"),
  60276. name: "Back",
  60277. image: {
  60278. source: "./media/characters/hayaku/back.svg",
  60279. extra: 1040/930,
  60280. bottom: 20/1060
  60281. }
  60282. },
  60283. },
  60284. [
  60285. {
  60286. name: "Normal",
  60287. height: math.unit(4, "feet"),
  60288. default: true
  60289. },
  60290. ]
  60291. ))
  60292. characterMakers.push(() => makeCharacter(
  60293. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60294. {
  60295. front: {
  60296. height: math.unit(6 + 7/12, "feet"),
  60297. weight: math.unit(300, "lb"),
  60298. name: "Front",
  60299. image: {
  60300. source: "./media/characters/athena-bryzant/front.svg",
  60301. extra: 870/835,
  60302. bottom: 33/903
  60303. }
  60304. },
  60305. back: {
  60306. height: math.unit(6 + 7/12, "feet"),
  60307. weight: math.unit(300, "lb"),
  60308. name: "Back",
  60309. image: {
  60310. source: "./media/characters/athena-bryzant/back.svg",
  60311. extra: 858/823,
  60312. bottom: 30/888
  60313. }
  60314. },
  60315. head: {
  60316. height: math.unit(2.38, "feet"),
  60317. name: "Head",
  60318. image: {
  60319. source: "./media/characters/athena-bryzant/head.svg"
  60320. }
  60321. },
  60322. wings: {
  60323. height: math.unit(2.85, "feet"),
  60324. name: "Wings",
  60325. image: {
  60326. source: "./media/characters/athena-bryzant/wings.svg"
  60327. }
  60328. },
  60329. },
  60330. [
  60331. {
  60332. name: "Normal",
  60333. height: math.unit(6 + 7/12, "feet"),
  60334. default: true
  60335. },
  60336. {
  60337. name: "Big",
  60338. height: math.unit(8, "feet")
  60339. },
  60340. {
  60341. name: "Very Big",
  60342. height: math.unit(11, "feet")
  60343. },
  60344. ]
  60345. ))
  60346. characterMakers.push(() => makeCharacter(
  60347. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60348. {
  60349. side: {
  60350. height: math.unit(3, "meters"),
  60351. weight: math.unit(7500, "kg"),
  60352. preyCapacity: math.unit(1e12, "people"),
  60353. name: "Side",
  60354. image: {
  60355. source: "./media/characters/zel-kesh/side.svg",
  60356. extra: 910/407,
  60357. bottom: 147/1057
  60358. }
  60359. },
  60360. },
  60361. [
  60362. {
  60363. name: "Normal",
  60364. height: math.unit(3, "meters"),
  60365. default: true
  60366. },
  60367. ]
  60368. ))
  60369. characterMakers.push(() => makeCharacter(
  60370. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60371. {
  60372. front: {
  60373. height: math.unit(2, "meters"),
  60374. weight: math.unit(95, "kg"),
  60375. name: "Front",
  60376. image: {
  60377. source: "./media/characters/kane-fox/front.svg",
  60378. extra: 945/888,
  60379. bottom: 27/972
  60380. }
  60381. },
  60382. back: {
  60383. height: math.unit(2, "meters"),
  60384. weight: math.unit(95, "kg"),
  60385. name: "Back",
  60386. image: {
  60387. source: "./media/characters/kane-fox/back.svg",
  60388. extra: 959/914,
  60389. bottom: 15/974
  60390. }
  60391. },
  60392. frontLewd: {
  60393. height: math.unit(2, "meters"),
  60394. weight: math.unit(95, "kg"),
  60395. name: "Front (Lewd)",
  60396. image: {
  60397. source: "./media/characters/kane-fox/front-lewd.svg",
  60398. extra: 945/888,
  60399. bottom: 27/972
  60400. }
  60401. },
  60402. },
  60403. [
  60404. {
  60405. name: "Home Size",
  60406. height: math.unit(2, "meters"),
  60407. default: true
  60408. },
  60409. {
  60410. name: "Macro",
  60411. height: math.unit(200, "meters")
  60412. },
  60413. {
  60414. name: "Small Mega",
  60415. height: math.unit(3, "km")
  60416. },
  60417. {
  60418. name: "Mega",
  60419. height: math.unit(50, "km")
  60420. },
  60421. {
  60422. name: "Giga",
  60423. height: math.unit(200, "km")
  60424. },
  60425. {
  60426. name: "Giga+",
  60427. height: math.unit(2500, "km")
  60428. },
  60429. {
  60430. name: "Terra",
  60431. height: math.unit(70000, "km")
  60432. },
  60433. {
  60434. name: "Terra+",
  60435. height: math.unit(150000, "km")
  60436. },
  60437. {
  60438. name: "Terra++",
  60439. height: math.unit(400000, "km")
  60440. },
  60441. ]
  60442. ))
  60443. characterMakers.push(() => makeCharacter(
  60444. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60445. {
  60446. otter_front: {
  60447. height: math.unit(1.8, "meters"),
  60448. weight: math.unit(90, "kg"),
  60449. name: "Front",
  60450. image: {
  60451. source: "./media/characters/ayranus/otter-front.svg",
  60452. extra: 468/452,
  60453. bottom: 43/511
  60454. },
  60455. form: "otter",
  60456. },
  60457. otter_frontLewd: {
  60458. height: math.unit(1.8, "meters"),
  60459. weight: math.unit(90, "kg"),
  60460. name: "Front (Lewd)",
  60461. image: {
  60462. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60463. extra: 468/452,
  60464. bottom: 43/511
  60465. },
  60466. form: "otter",
  60467. },
  60468. lionbat_front: {
  60469. height: math.unit(1.8, "meters"),
  60470. weight: math.unit(90, "kg"),
  60471. name: "Front (Lewd)",
  60472. image: {
  60473. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60474. extra: 797/740,
  60475. bottom: 78/875
  60476. },
  60477. form: "lionbat",
  60478. },
  60479. paw: {
  60480. height: math.unit(1.5, "feet"),
  60481. name: "Paw",
  60482. image: {
  60483. source: "./media/characters/ayranus/paw.svg"
  60484. },
  60485. },
  60486. },
  60487. [
  60488. {
  60489. name: "Incognito",
  60490. height: math.unit(1.8, "meters"),
  60491. allForms: true
  60492. },
  60493. {
  60494. name: "Macro",
  60495. height: math.unit(60, "meters"),
  60496. allForms: true
  60497. },
  60498. {
  60499. name: "Macro+",
  60500. height: math.unit(200, "meters"),
  60501. allForms: true
  60502. },
  60503. {
  60504. name: "Mega",
  60505. height: math.unit(35, "km"),
  60506. allForms: true
  60507. },
  60508. {
  60509. name: "Giga",
  60510. height: math.unit(220, "km"),
  60511. allForms: true
  60512. },
  60513. {
  60514. name: "Giga+",
  60515. height: math.unit(1500, "km"),
  60516. allForms: true
  60517. },
  60518. {
  60519. name: "Terra",
  60520. height: math.unit(13000, "km"),
  60521. allForms: true
  60522. },
  60523. {
  60524. name: "Terra+",
  60525. height: math.unit(500000, "km"),
  60526. allForms: true
  60527. },
  60528. {
  60529. name: "Galactic",
  60530. height: math.unit(486080, "parsecs"),
  60531. default: true,
  60532. allForms: true
  60533. },
  60534. ],
  60535. {
  60536. "otter": {
  60537. name: "Otter",
  60538. default: true
  60539. },
  60540. "lionbat": {
  60541. name: "Lionbat",
  60542. },
  60543. }
  60544. ))
  60545. characterMakers.push(() => makeCharacter(
  60546. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60547. {
  60548. front: {
  60549. height: math.unit(7 + 4/12, "feet"),
  60550. weight: math.unit(400, "lb"),
  60551. name: "Front",
  60552. image: {
  60553. source: "./media/characters/proxy/front.svg",
  60554. extra: 1605/1542,
  60555. bottom: 55/1660
  60556. }
  60557. },
  60558. side: {
  60559. height: math.unit(7 + 4/12, "feet"),
  60560. weight: math.unit(400, "lb"),
  60561. name: "Side",
  60562. image: {
  60563. source: "./media/characters/proxy/side.svg",
  60564. extra: 794/759,
  60565. bottom: 6/800
  60566. }
  60567. },
  60568. hand: {
  60569. height: math.unit(1.54, "feet"),
  60570. name: "Hand",
  60571. image: {
  60572. source: "./media/characters/proxy/hand.svg"
  60573. }
  60574. },
  60575. paw: {
  60576. height: math.unit(1.53, "feet"),
  60577. name: "Paw",
  60578. image: {
  60579. source: "./media/characters/proxy/paw.svg"
  60580. }
  60581. },
  60582. maw: {
  60583. height: math.unit(1.9, "feet"),
  60584. name: "Maw",
  60585. image: {
  60586. source: "./media/characters/proxy/maw.svg"
  60587. }
  60588. },
  60589. },
  60590. [
  60591. {
  60592. name: "Normal",
  60593. height: math.unit(7 + 4/12, "feet"),
  60594. default: true
  60595. },
  60596. ]
  60597. ))
  60598. characterMakers.push(() => makeCharacter(
  60599. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60600. {
  60601. front: {
  60602. height: math.unit(4, "meters"),
  60603. name: "Front",
  60604. image: {
  60605. source: "./media/characters/crocozilla/front.svg",
  60606. extra: 1790/1742,
  60607. bottom: 78/1868
  60608. }
  60609. },
  60610. },
  60611. [
  60612. {
  60613. name: "Normal",
  60614. height: math.unit(4, "meters"),
  60615. default: true
  60616. },
  60617. ]
  60618. ))
  60619. characterMakers.push(() => makeCharacter(
  60620. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60621. {
  60622. front: {
  60623. height: math.unit(1.8, "meters"),
  60624. weight: math.unit(120, "kg"),
  60625. name: "Front",
  60626. image: {
  60627. source: "./media/characters/kurz/front.svg",
  60628. extra: 1960/1824,
  60629. bottom: 41/2001
  60630. }
  60631. },
  60632. back: {
  60633. height: math.unit(1.8, "meters"),
  60634. weight: math.unit(120, "kg"),
  60635. name: "Back",
  60636. image: {
  60637. source: "./media/characters/kurz/back.svg",
  60638. extra: 1906/1787,
  60639. bottom: 60/1966
  60640. }
  60641. },
  60642. frontLewd: {
  60643. height: math.unit(1.8, "meters"),
  60644. weight: math.unit(120, "kg"),
  60645. name: "Front (Lewd)",
  60646. image: {
  60647. source: "./media/characters/kurz/front-lewd.svg",
  60648. extra: 1960/1824,
  60649. bottom: 41/2001
  60650. }
  60651. },
  60652. maw: {
  60653. height: math.unit(0.69, "meters"),
  60654. name: "Maw",
  60655. image: {
  60656. source: "./media/characters/kurz/maw.svg"
  60657. }
  60658. },
  60659. },
  60660. [
  60661. {
  60662. name: "Original Size",
  60663. height: math.unit(1.8, "meters")
  60664. },
  60665. {
  60666. name: "Incognito Size",
  60667. height: math.unit(2.4, "meters"),
  60668. default: true
  60669. },
  60670. {
  60671. name: "Macro",
  60672. height: math.unit(30, "meters")
  60673. },
  60674. {
  60675. name: "Macro+",
  60676. height: math.unit(250, "meters")
  60677. },
  60678. {
  60679. name: "Mega",
  60680. height: math.unit(2, "km")
  60681. },
  60682. {
  60683. name: "Mega+",
  60684. height: math.unit(35, "km")
  60685. },
  60686. {
  60687. name: "Mega++",
  60688. height: math.unit(75, "km")
  60689. },
  60690. {
  60691. name: "Giga",
  60692. height: math.unit(250, "km")
  60693. },
  60694. {
  60695. name: "Terra",
  60696. height: math.unit(15000, "km")
  60697. },
  60698. {
  60699. name: "Terra+",
  60700. height: math.unit(2250000, "km")
  60701. },
  60702. ]
  60703. ))
  60704. characterMakers.push(() => makeCharacter(
  60705. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60706. {
  60707. front: {
  60708. height: math.unit(16 + 3/12, "feet"),
  60709. weight: math.unit(3575, "lb"),
  60710. name: "Front",
  60711. image: {
  60712. source: "./media/characters/nikita/front.svg",
  60713. extra: 1064/955,
  60714. bottom: 47/1111
  60715. }
  60716. },
  60717. },
  60718. [
  60719. {
  60720. name: "Normal",
  60721. height: math.unit(16 + 3/12, "feet"),
  60722. default: true
  60723. },
  60724. {
  60725. name: "Big",
  60726. height: math.unit(21, "feet")
  60727. },
  60728. {
  60729. name: "Biggest",
  60730. height: math.unit(50, "feet")
  60731. },
  60732. ]
  60733. ))
  60734. characterMakers.push(() => makeCharacter(
  60735. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60736. {
  60737. front: {
  60738. height: math.unit(1.92, "m"),
  60739. weight: math.unit(76, "kg"),
  60740. name: "Front",
  60741. image: {
  60742. source: "./media/characters/kyara/front.svg",
  60743. extra: 1550/1438,
  60744. bottom: 139/1689
  60745. }
  60746. },
  60747. back: {
  60748. height: math.unit(1.92, "m"),
  60749. weight: math.unit(76, "kg"),
  60750. name: "Back",
  60751. image: {
  60752. source: "./media/characters/kyara/back.svg",
  60753. extra: 1523/1427,
  60754. bottom: 83/1606
  60755. }
  60756. },
  60757. head: {
  60758. height: math.unit(1.22, "feet"),
  60759. name: "Head",
  60760. image: {
  60761. source: "./media/characters/kyara/head.svg"
  60762. }
  60763. },
  60764. maw: {
  60765. height: math.unit(0.73, "feet"),
  60766. name: "Maw",
  60767. image: {
  60768. source: "./media/characters/kyara/maw.svg"
  60769. }
  60770. },
  60771. paws: {
  60772. height: math.unit(0.95, "feet"),
  60773. name: "Paws",
  60774. image: {
  60775. source: "./media/characters/kyara/paws.svg"
  60776. }
  60777. },
  60778. },
  60779. [
  60780. {
  60781. name: "Normal",
  60782. height: math.unit(1.92, "meters"),
  60783. default: true
  60784. },
  60785. {
  60786. name: "Mini Macro",
  60787. height: math.unit(192, "meters")
  60788. },
  60789. {
  60790. name: "Macro",
  60791. height: math.unit(480, "meters")
  60792. },
  60793. {
  60794. name: "Mega Macro",
  60795. height: math.unit(1440, "meters")
  60796. },
  60797. ]
  60798. ))
  60799. characterMakers.push(() => makeCharacter(
  60800. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60801. {
  60802. front: {
  60803. height: math.unit(6, "feet"),
  60804. weight: math.unit(160, "lbs"),
  60805. preyCapacity: math.unit(0.05, "people"),
  60806. name: "Front",
  60807. image: {
  60808. source: "./media/characters/layla-amari/front.svg",
  60809. extra: 1922/1723,
  60810. bottom: 90/2012
  60811. }
  60812. },
  60813. back: {
  60814. height: math.unit(6, "feet"),
  60815. weight: math.unit(160, "lbs"),
  60816. preyCapacity: math.unit(0.05, "people"),
  60817. name: "Back",
  60818. image: {
  60819. source: "./media/characters/layla-amari/back.svg",
  60820. extra: 1917/1718,
  60821. bottom: 50/1967
  60822. }
  60823. },
  60824. frontDressed: {
  60825. height: math.unit(6, "feet"),
  60826. weight: math.unit(160, "lbs"),
  60827. preyCapacity: math.unit(0.05, "people"),
  60828. name: "Front (Dressed)",
  60829. image: {
  60830. source: "./media/characters/layla-amari/front-dressed.svg",
  60831. extra: 1922/1723,
  60832. bottom: 90/2012
  60833. }
  60834. },
  60835. face: {
  60836. height: math.unit(0.93, "feet"),
  60837. name: "Face",
  60838. image: {
  60839. source: "./media/characters/layla-amari/face.svg"
  60840. }
  60841. },
  60842. hand: {
  60843. height: math.unit(0.66 , "feet"),
  60844. name: "Hand",
  60845. image: {
  60846. source: "./media/characters/layla-amari/hand.svg"
  60847. }
  60848. },
  60849. foot: {
  60850. height: math.unit(1, "feet"),
  60851. name: "Foot",
  60852. image: {
  60853. source: "./media/characters/layla-amari/foot.svg"
  60854. }
  60855. },
  60856. necklace: {
  60857. height: math.unit(0.32, "feet"),
  60858. name: "Necklace",
  60859. image: {
  60860. source: "./media/characters/layla-amari/necklace.svg"
  60861. }
  60862. },
  60863. nipple: {
  60864. height: math.unit(0.2, "feet"),
  60865. name: "Nipple",
  60866. image: {
  60867. source: "./media/characters/layla-amari/nipple.svg"
  60868. }
  60869. },
  60870. slit: {
  60871. height: math.unit(0.26, "feet"),
  60872. name: "Slit",
  60873. image: {
  60874. source: "./media/characters/layla-amari/slit.svg"
  60875. }
  60876. },
  60877. },
  60878. [
  60879. {
  60880. name: "Natural",
  60881. height: math.unit(825, "feet"),
  60882. default: true
  60883. },
  60884. {
  60885. name: "Enhanced",
  60886. height: math.unit(8250, "feet")
  60887. },
  60888. {
  60889. name: "Apparent Size",
  60890. height: math.unit(9.04363e+8, "meters")
  60891. },
  60892. ]
  60893. ))
  60894. characterMakers.push(() => makeCharacter(
  60895. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60896. {
  60897. front: {
  60898. height: math.unit(1.3, "meters"),
  60899. name: "Front",
  60900. image: {
  60901. source: "./media/characters/percy/front.svg",
  60902. extra: 1444/1289,
  60903. bottom: 54/1498
  60904. }
  60905. },
  60906. },
  60907. [
  60908. {
  60909. name: "Normal",
  60910. height: math.unit(1.3, "meters"),
  60911. default: true
  60912. },
  60913. ]
  60914. ))
  60915. characterMakers.push(() => makeCharacter(
  60916. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60917. {
  60918. side: {
  60919. height: math.unit(10, "meters"),
  60920. name: "Side",
  60921. image: {
  60922. source: "./media/characters/grev/side.svg",
  60923. extra: 653/266,
  60924. bottom: 77/730
  60925. }
  60926. },
  60927. head: {
  60928. height: math.unit(16.2, "m"),
  60929. name: "Head",
  60930. image: {
  60931. source: "./media/characters/grev/head.svg"
  60932. }
  60933. },
  60934. dick: {
  60935. height: math.unit(2.8135932034, "m"),
  60936. name: "Dick",
  60937. image: {
  60938. source: "./media/characters/grev/dick.svg"
  60939. }
  60940. },
  60941. },
  60942. [
  60943. {
  60944. name: "Friend-Sized",
  60945. height: math.unit(80, "cm")
  60946. },
  60947. {
  60948. name: "Normal",
  60949. height: math.unit(10, "meters"),
  60950. default: true
  60951. },
  60952. {
  60953. name: "Macro",
  60954. height: math.unit(200, "meters")
  60955. },
  60956. ]
  60957. ))
  60958. characterMakers.push(() => makeCharacter(
  60959. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  60960. {
  60961. front: {
  60962. height: math.unit(19.75, "feet"),
  60963. weight: math.unit(20000, "lb"),
  60964. name: "Front",
  60965. image: {
  60966. source: "./media/characters/azuuca/front.svg",
  60967. extra: 1593/1511,
  60968. bottom: 55/1648
  60969. }
  60970. },
  60971. },
  60972. [
  60973. {
  60974. name: "Normal",
  60975. height: math.unit(19.75, "feet"),
  60976. default: true
  60977. },
  60978. ]
  60979. ))
  60980. characterMakers.push(() => makeCharacter(
  60981. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  60982. {
  60983. front: {
  60984. height: math.unit(15, "feet"),
  60985. weight: math.unit(1500, "lb"),
  60986. name: "Front",
  60987. image: {
  60988. source: "./media/characters/valuria/front.svg",
  60989. extra: 1588/1486,
  60990. bottom: 31/1619
  60991. }
  60992. },
  60993. },
  60994. [
  60995. {
  60996. name: "Normal",
  60997. height: math.unit(15, "feet"),
  60998. default: true
  60999. },
  61000. {
  61001. name: "Small",
  61002. height: math.unit(500, "feet")
  61003. },
  61004. {
  61005. name: "Macro",
  61006. height: math.unit(4000, "feet")
  61007. },
  61008. {
  61009. name: "Mega Macro",
  61010. height: math.unit(2000, "miles")
  61011. },
  61012. {
  61013. name: "Giga Macro",
  61014. height: math.unit(3e6, "miles")
  61015. },
  61016. ]
  61017. ))
  61018. //characters
  61019. function makeCharacters() {
  61020. const results = [];
  61021. characterMakers.forEach(character => {
  61022. results.push(character());
  61023. });
  61024. return results;
  61025. }