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.
 
 
 

63408 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. }
  2319. //species
  2320. function getSpeciesInfo(speciesList) {
  2321. let result = new Set();
  2322. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2323. result.add(entry)
  2324. });
  2325. return Array.from(result);
  2326. };
  2327. function getSpeciesInfoHelper(species) {
  2328. if (!speciesData[species]) {
  2329. console.warn(species + " doesn't exist");
  2330. return [];
  2331. }
  2332. if (speciesData[species].parents) {
  2333. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2334. } else {
  2335. return [species];
  2336. }
  2337. }
  2338. characterMakers.push(() => makeCharacter(
  2339. {
  2340. name: "Fen",
  2341. species: ["crux"],
  2342. description: {
  2343. title: "Bio",
  2344. text: "Very furry. Sheds on everything."
  2345. },
  2346. tags: [
  2347. "anthro",
  2348. "goo"
  2349. ]
  2350. },
  2351. {
  2352. front: {
  2353. height: math.unit(12, "feet"),
  2354. weight: math.unit(2400, "lb"),
  2355. preyCapacity: math.unit(1, "people"),
  2356. name: "Front",
  2357. image: {
  2358. source: "./media/characters/fen/front.svg",
  2359. extra: 1804/1562,
  2360. bottom: 205/2009
  2361. },
  2362. extraAttributes: {
  2363. pawSize: {
  2364. name: "Paw Size",
  2365. power: 2,
  2366. type: "area",
  2367. base: math.unit(0.35, "m^2")
  2368. }
  2369. }
  2370. },
  2371. diving: {
  2372. height: math.unit(4.9, "meters"),
  2373. weight: math.unit(2400, "lb"),
  2374. name: "Diving",
  2375. image: {
  2376. source: "./media/characters/fen/diving.svg"
  2377. }
  2378. },
  2379. sleeby: {
  2380. height: math.unit(3.45, "meters"),
  2381. weight: math.unit(2400, "lb"),
  2382. name: "Sleeby",
  2383. image: {
  2384. source: "./media/characters/fen/sleeby.svg"
  2385. }
  2386. },
  2387. goo: {
  2388. height: math.unit(12, "feet"),
  2389. weight: math.unit(3600, "lb"),
  2390. volume: math.unit(1000, "liters"),
  2391. preyCapacity: math.unit(6, "people"),
  2392. name: "Goo",
  2393. image: {
  2394. source: "./media/characters/fen/goo.svg",
  2395. extra: 1307/1071,
  2396. bottom: 134/1441
  2397. }
  2398. },
  2399. horror: {
  2400. height: math.unit(13.6, "feet"),
  2401. weight: math.unit(2400, "lb"),
  2402. preyCapacity: math.unit(1, "people"),
  2403. name: "Horror",
  2404. image: {
  2405. source: "./media/characters/fen/horror.svg",
  2406. extra: 893/797,
  2407. bottom: 0/893
  2408. }
  2409. },
  2410. gooNsfw: {
  2411. height: math.unit(12, "feet"),
  2412. weight: math.unit(3750, "lb"),
  2413. volume: math.unit(1000, "liters"),
  2414. preyCapacity: math.unit(6, "people"),
  2415. name: "Goo (NSFW)",
  2416. image: {
  2417. source: "./media/characters/fen/goo-nsfw.svg",
  2418. extra: 1875/1734,
  2419. bottom: 122/1997
  2420. }
  2421. },
  2422. maw: {
  2423. height: math.unit(5.03, "feet"),
  2424. name: "Maw",
  2425. image: {
  2426. source: "./media/characters/fen/maw.svg"
  2427. }
  2428. },
  2429. gooCeiling: {
  2430. height: math.unit(6.6, "feet"),
  2431. weight: math.unit(3000, "lb"),
  2432. volume: math.unit(1000, "liters"),
  2433. preyCapacity: math.unit(6, "people"),
  2434. name: "Maw (Goo)",
  2435. image: {
  2436. source: "./media/characters/fen/goo-maw.svg"
  2437. }
  2438. },
  2439. paw: {
  2440. height: math.unit(3.77, "feet"),
  2441. name: "Paw",
  2442. image: {
  2443. source: "./media/characters/fen/paw.svg"
  2444. },
  2445. extraAttributes: {
  2446. "toeSize": {
  2447. name: "Toe Size",
  2448. power: 2,
  2449. type: "area",
  2450. base: math.unit(0.02875, "m^2")
  2451. },
  2452. "pawSize": {
  2453. name: "Paw Size",
  2454. power: 2,
  2455. type: "area",
  2456. base: math.unit(0.378, "m^2")
  2457. },
  2458. }
  2459. },
  2460. tail: {
  2461. height: math.unit(12.1, "feet"),
  2462. name: "Tail",
  2463. image: {
  2464. source: "./media/characters/fen/tail.svg"
  2465. }
  2466. },
  2467. tailFull: {
  2468. height: math.unit(12.1, "feet"),
  2469. name: "Full Tail",
  2470. image: {
  2471. source: "./media/characters/fen/tail-full.svg"
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(12, "feet"),
  2476. weight: math.unit(2400, "lb"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/fen/back.svg",
  2480. },
  2481. info: {
  2482. description: {
  2483. mode: "append",
  2484. text: "\n\nHe is not currently looking at you."
  2485. }
  2486. }
  2487. },
  2488. full: {
  2489. height: math.unit(1.85, "meter"),
  2490. weight: math.unit(3200, "lb"),
  2491. preyCapacity: math.unit(3, "people"),
  2492. name: "Full",
  2493. image: {
  2494. source: "./media/characters/fen/full.svg",
  2495. extra: 1133/859,
  2496. bottom: 145/1278
  2497. },
  2498. info: {
  2499. description: {
  2500. mode: "append",
  2501. text: "\n\nMunch."
  2502. }
  2503. }
  2504. },
  2505. gooLounging: {
  2506. height: math.unit(4.53, "feet"),
  2507. weight: math.unit(3000, "lb"),
  2508. preyCapacity: math.unit(6, "people"),
  2509. name: "Goo (Lounging)",
  2510. image: {
  2511. source: "./media/characters/fen/goo-lounging.svg",
  2512. bottom: 116 / 613
  2513. }
  2514. },
  2515. lounging: {
  2516. height: math.unit(10.52, "feet"),
  2517. weight: math.unit(2400, "lb"),
  2518. name: "Lounging",
  2519. image: {
  2520. source: "./media/characters/fen/lounging.svg"
  2521. }
  2522. },
  2523. },
  2524. [
  2525. {
  2526. name: "Small",
  2527. height: math.unit(2.2428, "meter")
  2528. },
  2529. {
  2530. name: "Normal",
  2531. height: math.unit(12, "feet"),
  2532. default: true,
  2533. },
  2534. {
  2535. name: "Big",
  2536. height: math.unit(20, "feet")
  2537. },
  2538. {
  2539. name: "Minimacro",
  2540. height: math.unit(40, "feet"),
  2541. info: {
  2542. description: {
  2543. mode: "append",
  2544. text: "\n\nTOO DAMN BIG"
  2545. }
  2546. }
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(100, "feet"),
  2551. info: {
  2552. description: {
  2553. mode: "append",
  2554. text: "\n\nTOO DAMN BIG"
  2555. }
  2556. }
  2557. },
  2558. {
  2559. name: "Megamacro",
  2560. height: math.unit(2, "miles")
  2561. },
  2562. {
  2563. name: "Gigamacro",
  2564. height: math.unit(10, "earths")
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(183, "cm"),
  2573. weight: math.unit(80, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/sofia-fluttertail/front.svg",
  2577. bottom: 0.01,
  2578. extra: 2154 / 2081
  2579. }
  2580. },
  2581. frontAlt: {
  2582. height: math.unit(183, "cm"),
  2583. weight: math.unit(80, "kg"),
  2584. name: "Front (alt)",
  2585. image: {
  2586. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2587. }
  2588. },
  2589. back: {
  2590. height: math.unit(183, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Back",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/back.svg"
  2595. }
  2596. },
  2597. kneeling: {
  2598. height: math.unit(125, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Kneeling",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2603. extra: 1033 / 977,
  2604. bottom: 23.7 / 1057
  2605. }
  2606. },
  2607. maw: {
  2608. height: math.unit(183 / 5, "cm"),
  2609. name: "Maw",
  2610. image: {
  2611. source: "./media/characters/sofia-fluttertail/maw.svg"
  2612. }
  2613. },
  2614. mawcloseup: {
  2615. height: math.unit(183 / 5 * 0.41, "cm"),
  2616. name: "Maw (Closeup)",
  2617. image: {
  2618. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2619. }
  2620. },
  2621. paws: {
  2622. height: math.unit(1.17, "feet"),
  2623. name: "Paws",
  2624. image: {
  2625. source: "./media/characters/sofia-fluttertail/paws.svg",
  2626. extra: 851 / 851,
  2627. bottom: 17 / 868
  2628. }
  2629. },
  2630. },
  2631. [
  2632. {
  2633. name: "Normal",
  2634. height: math.unit(1.83, "meter")
  2635. },
  2636. {
  2637. name: "Size Thief",
  2638. height: math.unit(18, "feet")
  2639. },
  2640. {
  2641. name: "50 Foot Collie",
  2642. height: math.unit(50, "feet")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(96, "feet"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Megamerger",
  2651. height: math.unit(650, "feet")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(7, "feet"),
  2660. weight: math.unit(100, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/march/front.svg",
  2664. extra: 1992/1851,
  2665. bottom: 39/2031
  2666. }
  2667. },
  2668. foot: {
  2669. height: math.unit(0.9, "feet"),
  2670. name: "Foot",
  2671. image: {
  2672. source: "./media/characters/march/foot.svg"
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7.9, "feet")
  2680. },
  2681. {
  2682. name: "Macro",
  2683. height: math.unit(220, "meters")
  2684. },
  2685. {
  2686. name: "Megamacro",
  2687. height: math.unit(2.98, "km"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Gigamacro",
  2692. height: math.unit(15963, "km")
  2693. },
  2694. {
  2695. name: "Teramacro",
  2696. height: math.unit(2980000000, "km")
  2697. },
  2698. {
  2699. name: "Examacro",
  2700. height: math.unit(250, "parsecs")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(60, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/noir/front.svg",
  2713. extra: 1,
  2714. bottom: 0.032
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Normal",
  2721. height: math.unit(6.6, "feet")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(500, "feet")
  2726. },
  2727. {
  2728. name: "Megamacro",
  2729. height: math.unit(2.5, "km"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Gigamacro",
  2734. height: math.unit(22500, "km")
  2735. },
  2736. {
  2737. name: "Teramacro",
  2738. height: math.unit(2500000000, "km")
  2739. },
  2740. {
  2741. name: "Examacro",
  2742. height: math.unit(200, "parsecs")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7, "feet"),
  2751. weight: math.unit(100, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/okuri/front.svg",
  2755. extra: 739/665,
  2756. bottom: 39/778
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(7, "feet"),
  2761. weight: math.unit(100, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/okuri/back.svg",
  2765. extra: 734/653,
  2766. bottom: 13/747
  2767. }
  2768. },
  2769. sitting: {
  2770. height: math.unit(2.95, "feet"),
  2771. weight: math.unit(100, "kg"),
  2772. name: "Sitting",
  2773. image: {
  2774. source: "./media/characters/okuri/sitting.svg",
  2775. extra: 370/318,
  2776. bottom: 99/469
  2777. }
  2778. },
  2779. },
  2780. [
  2781. {
  2782. name: "Smallest",
  2783. height: math.unit(5 + 2/12, "feet")
  2784. },
  2785. {
  2786. name: "Smaller",
  2787. height: math.unit(300, "feet")
  2788. },
  2789. {
  2790. name: "Small",
  2791. height: math.unit(1000, "feet")
  2792. },
  2793. {
  2794. name: "Macro",
  2795. height: math.unit(1, "mile")
  2796. },
  2797. {
  2798. name: "Mega Macro (Small)",
  2799. height: math.unit(20, "km")
  2800. },
  2801. {
  2802. name: "Mega Macro (Large)",
  2803. height: math.unit(600, "km")
  2804. },
  2805. {
  2806. name: "Giga Macro",
  2807. height: math.unit(10000, "km")
  2808. },
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(577560, "km"),
  2812. default: true
  2813. },
  2814. {
  2815. name: "Large",
  2816. height: math.unit(4, "galaxies")
  2817. },
  2818. {
  2819. name: "Largest",
  2820. height: math.unit(15, "multiverses")
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(7, "feet"),
  2829. weight: math.unit(100, "kg"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/manny/front.svg",
  2833. extra: 1,
  2834. bottom: 0.06
  2835. }
  2836. },
  2837. back: {
  2838. height: math.unit(7, "feet"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Back",
  2841. image: {
  2842. source: "./media/characters/manny/back.svg",
  2843. extra: 1,
  2844. bottom: 0.014
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(7, "feet"),
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(78, "feet"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro+",
  2860. height: math.unit(300, "meters")
  2861. },
  2862. {
  2863. name: "Macro++",
  2864. height: math.unit(2400, "meters")
  2865. },
  2866. {
  2867. name: "Megamacro",
  2868. height: math.unit(5167, "meters")
  2869. },
  2870. {
  2871. name: "Gigamacro",
  2872. height: math.unit(41769, "miles")
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/adake/front-1.svg"
  2885. }
  2886. },
  2887. frontAlt: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Front (Alt)",
  2891. image: {
  2892. source: "./media/characters/adake/front-2.svg",
  2893. extra: 1,
  2894. bottom: 0.01
  2895. }
  2896. },
  2897. back: {
  2898. height: math.unit(7, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Back",
  2901. image: {
  2902. source: "./media/characters/adake/back.svg",
  2903. }
  2904. },
  2905. kneel: {
  2906. height: math.unit(5.385, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Kneeling",
  2909. image: {
  2910. source: "./media/characters/adake/kneel.svg",
  2911. bottom: 0.052
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(7, "feet"),
  2919. },
  2920. {
  2921. name: "Macro",
  2922. height: math.unit(78, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "meters")
  2928. },
  2929. {
  2930. name: "Macro++",
  2931. height: math.unit(2400, "meters")
  2932. },
  2933. {
  2934. name: "Megamacro",
  2935. height: math.unit(5167, "meters")
  2936. },
  2937. {
  2938. name: "Gigamacro",
  2939. height: math.unit(41769, "miles")
  2940. },
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(1.65, "meters"),
  2948. weight: math.unit(50, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/elijah/front.svg",
  2952. extra: 858 / 830,
  2953. bottom: 95.5 / 953.8559
  2954. }
  2955. },
  2956. back: {
  2957. height: math.unit(1.65, "meters"),
  2958. weight: math.unit(50, "kg"),
  2959. name: "Back",
  2960. image: {
  2961. source: "./media/characters/elijah/back.svg",
  2962. extra: 895 / 850,
  2963. bottom: 5.3 / 897.956
  2964. }
  2965. },
  2966. frontNsfw: {
  2967. height: math.unit(1.65, "meters"),
  2968. weight: math.unit(50, "kg"),
  2969. name: "Front (NSFW)",
  2970. image: {
  2971. source: "./media/characters/elijah/front-nsfw.svg",
  2972. extra: 858 / 830,
  2973. bottom: 95.5 / 953.8559
  2974. }
  2975. },
  2976. backNsfw: {
  2977. height: math.unit(1.65, "meters"),
  2978. weight: math.unit(50, "kg"),
  2979. name: "Back (NSFW)",
  2980. image: {
  2981. source: "./media/characters/elijah/back-nsfw.svg",
  2982. extra: 895 / 850,
  2983. bottom: 5.3 / 897.956
  2984. }
  2985. },
  2986. dick: {
  2987. height: math.unit(1, "feet"),
  2988. name: "Dick",
  2989. image: {
  2990. source: "./media/characters/elijah/dick.svg"
  2991. }
  2992. },
  2993. beakOpen: {
  2994. height: math.unit(1.25, "feet"),
  2995. name: "Beak (Open)",
  2996. image: {
  2997. source: "./media/characters/elijah/beak-open.svg"
  2998. }
  2999. },
  3000. beakShut: {
  3001. height: math.unit(1.25, "feet"),
  3002. name: "Beak (Shut)",
  3003. image: {
  3004. source: "./media/characters/elijah/beak-shut.svg"
  3005. }
  3006. },
  3007. footFlexing: {
  3008. height: math.unit(1.61, "feet"),
  3009. name: "Foot (Flexing)",
  3010. image: {
  3011. source: "./media/characters/elijah/foot-flexing.svg"
  3012. }
  3013. },
  3014. footStepping: {
  3015. height: math.unit(1.44, "feet"),
  3016. name: "Foot (Stepping)",
  3017. image: {
  3018. source: "./media/characters/elijah/foot-stepping.svg"
  3019. }
  3020. },
  3021. plantigradeLeg: {
  3022. height: math.unit(2.34, "feet"),
  3023. name: "Plantigrade Leg",
  3024. image: {
  3025. source: "./media/characters/elijah/plantigrade-leg.svg"
  3026. }
  3027. },
  3028. plantigradeFootLeft: {
  3029. height: math.unit(0.9, "feet"),
  3030. name: "Plantigrade Foot (Left)",
  3031. image: {
  3032. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3033. }
  3034. },
  3035. plantigradeFootRight: {
  3036. height: math.unit(0.9, "feet"),
  3037. name: "Plantigrade Foot (Right)",
  3038. image: {
  3039. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(1.65, "meters")
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(55, "meters"),
  3051. default: true
  3052. },
  3053. {
  3054. name: "Macro+",
  3055. height: math.unit(105, "meters")
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(7 + 2/12, "feet"),
  3064. weight: math.unit(320, "kg"),
  3065. preyCapacity: math.unit(0.276549935, "people"),
  3066. name: "Front",
  3067. image: {
  3068. source: "./media/characters/rai/front.svg",
  3069. extra: 1802/1696,
  3070. bottom: 68/1870
  3071. },
  3072. form: "anthro",
  3073. default: true
  3074. },
  3075. frontDressed: {
  3076. height: math.unit(7 + 2/12, "feet"),
  3077. weight: math.unit(320, "kg"),
  3078. preyCapacity: math.unit(0.276549935, "people"),
  3079. name: "Front (Dressed)",
  3080. image: {
  3081. source: "./media/characters/rai/front-dressed.svg",
  3082. extra: 1802/1696,
  3083. bottom: 68/1870
  3084. },
  3085. form: "anthro"
  3086. },
  3087. side: {
  3088. height: math.unit(7 + 2/12, "feet"),
  3089. weight: math.unit(320, "kg"),
  3090. preyCapacity: math.unit(0.276549935, "people"),
  3091. name: "Side",
  3092. image: {
  3093. source: "./media/characters/rai/side.svg",
  3094. extra: 1789/1710,
  3095. bottom: 115/1904
  3096. },
  3097. form: "anthro"
  3098. },
  3099. back: {
  3100. height: math.unit(7 + 2/12, "feet"),
  3101. weight: math.unit(320, "kg"),
  3102. preyCapacity: math.unit(0.276549935, "people"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/rai/back.svg",
  3106. extra: 1770/1707,
  3107. bottom: 28/1798
  3108. },
  3109. form: "anthro"
  3110. },
  3111. feral: {
  3112. height: math.unit(9.5, "feet"),
  3113. weight: math.unit(640, "kg"),
  3114. preyCapacity: math.unit(4, "people"),
  3115. name: "Feral",
  3116. image: {
  3117. source: "./media/characters/rai/feral.svg",
  3118. extra: 945/553,
  3119. bottom: 176/1121
  3120. },
  3121. form: "feral",
  3122. default: true
  3123. },
  3124. dragon: {
  3125. height: math.unit(23, "feet"),
  3126. weight: math.unit(50000, "lb"),
  3127. name: "Dragon",
  3128. image: {
  3129. source: "./media/characters/rai/dragon.svg",
  3130. extra: 2498 / 2030,
  3131. bottom: 85.2 / 2584
  3132. },
  3133. form: "dragon",
  3134. default: true
  3135. },
  3136. maw: {
  3137. height: math.unit(1.69, "feet"),
  3138. name: "Maw",
  3139. image: {
  3140. source: "./media/characters/rai/maw.svg"
  3141. },
  3142. form: "anthro"
  3143. },
  3144. },
  3145. [
  3146. {
  3147. name: "Normal",
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. form: "anthro"
  3150. },
  3151. {
  3152. name: "Big",
  3153. height: math.unit(11, "feet"),
  3154. form: "anthro"
  3155. },
  3156. {
  3157. name: "Minimacro",
  3158. height: math.unit(77, "feet"),
  3159. form: "anthro"
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(302, "feet"),
  3164. default: true,
  3165. form: "anthro"
  3166. },
  3167. {
  3168. name: "Normal",
  3169. height: math.unit(9.5, "feet"),
  3170. form: "feral",
  3171. default: true
  3172. },
  3173. {
  3174. name: "Normal",
  3175. height: math.unit(23, "feet"),
  3176. form: "dragon",
  3177. default: true
  3178. }
  3179. ],
  3180. {
  3181. "anthro": {
  3182. name: "Anthro",
  3183. default: true
  3184. },
  3185. "feral": {
  3186. name: "Feral",
  3187. },
  3188. "dragon": {
  3189. name: "Dragon",
  3190. },
  3191. }
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3195. {
  3196. frontDressed: {
  3197. height: math.unit(216, "feet"),
  3198. weight: math.unit(7000000, "lb"),
  3199. preyCapacity: math.unit(1321, "people"),
  3200. name: "Front (Dressed)",
  3201. image: {
  3202. source: "./media/characters/jazzy/front-dressed.svg",
  3203. extra: 2738 / 2651,
  3204. bottom: 41.8 / 2786
  3205. }
  3206. },
  3207. backDressed: {
  3208. height: math.unit(216, "feet"),
  3209. weight: math.unit(7000000, "lb"),
  3210. preyCapacity: math.unit(1321, "people"),
  3211. name: "Back (Dressed)",
  3212. image: {
  3213. source: "./media/characters/jazzy/back-dressed.svg",
  3214. extra: 2775 / 2673,
  3215. bottom: 36.8 / 2817
  3216. }
  3217. },
  3218. front: {
  3219. height: math.unit(216, "feet"),
  3220. weight: math.unit(7000000, "lb"),
  3221. preyCapacity: math.unit(1321, "people"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/jazzy/front.svg",
  3225. extra: 2738 / 2651,
  3226. bottom: 41.8 / 2786
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(216, "feet"),
  3231. weight: math.unit(7000000, "lb"),
  3232. preyCapacity: math.unit(1321, "people"),
  3233. name: "Back",
  3234. image: {
  3235. source: "./media/characters/jazzy/back.svg",
  3236. extra: 2775 / 2673,
  3237. bottom: 36.8 / 2817
  3238. }
  3239. },
  3240. maw: {
  3241. height: math.unit(20, "feet"),
  3242. name: "Maw",
  3243. image: {
  3244. source: "./media/characters/jazzy/maw.svg"
  3245. }
  3246. },
  3247. paws: {
  3248. height: math.unit(27.5, "feet"),
  3249. name: "Paws",
  3250. image: {
  3251. source: "./media/characters/jazzy/paws.svg"
  3252. }
  3253. },
  3254. eye: {
  3255. height: math.unit(4.4, "feet"),
  3256. name: "Eye",
  3257. image: {
  3258. source: "./media/characters/jazzy/eye.svg"
  3259. }
  3260. },
  3261. droneOffense: {
  3262. height: math.unit(9.5, "inches"),
  3263. name: "Drone (Offense)",
  3264. image: {
  3265. source: "./media/characters/jazzy/drone-offense.svg"
  3266. }
  3267. },
  3268. droneRecon: {
  3269. height: math.unit(9.5, "inches"),
  3270. name: "Drone (Recon)",
  3271. image: {
  3272. source: "./media/characters/jazzy/drone-recon.svg"
  3273. }
  3274. },
  3275. droneDefense: {
  3276. height: math.unit(9.5, "inches"),
  3277. name: "Drone (Defense)",
  3278. image: {
  3279. source: "./media/characters/jazzy/drone-defense.svg"
  3280. }
  3281. },
  3282. },
  3283. [
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(216, "feet"),
  3287. default: true
  3288. },
  3289. ]
  3290. ))
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3293. {
  3294. front: {
  3295. height: math.unit(9 + 6/12, "feet"),
  3296. weight: math.unit(700, "lb"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/flamm/front.svg",
  3300. extra: 1736/1596,
  3301. bottom: 93/1829
  3302. }
  3303. },
  3304. buff: {
  3305. height: math.unit(9 + 6/12, "feet"),
  3306. weight: math.unit(950, "lb"),
  3307. name: "Buff",
  3308. image: {
  3309. source: "./media/characters/flamm/buff.svg",
  3310. extra: 3018/2874,
  3311. bottom: 221/3239
  3312. }
  3313. },
  3314. },
  3315. [
  3316. {
  3317. name: "Normal",
  3318. height: math.unit(9.5, "feet")
  3319. },
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(200, "feet"),
  3323. default: true
  3324. },
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(5 + 3/12, "feet"),
  3332. weight: math.unit(60, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/zephiro/front.svg",
  3336. extra: 1873/1761,
  3337. bottom: 147/2020
  3338. }
  3339. },
  3340. side: {
  3341. height: math.unit(5 + 3/12, "feet"),
  3342. weight: math.unit(60, "kg"),
  3343. name: "Side",
  3344. image: {
  3345. source: "./media/characters/zephiro/side.svg",
  3346. extra: 1929/1827,
  3347. bottom: 65/1994
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(5 + 3/12, "feet"),
  3352. weight: math.unit(60, "kg"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/zephiro/back.svg",
  3356. extra: 1926/1816,
  3357. bottom: 41/1967
  3358. }
  3359. },
  3360. hand: {
  3361. height: math.unit(0.68, "feet"),
  3362. name: "Hand",
  3363. image: {
  3364. source: "./media/characters/zephiro/hand.svg"
  3365. }
  3366. },
  3367. paw: {
  3368. height: math.unit(1, "feet"),
  3369. name: "Paw",
  3370. image: {
  3371. source: "./media/characters/zephiro/paw.svg"
  3372. }
  3373. },
  3374. beans: {
  3375. height: math.unit(0.93, "feet"),
  3376. name: "Beans",
  3377. image: {
  3378. source: "./media/characters/zephiro/beans.svg"
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Micro",
  3385. height: math.unit(3, "inches")
  3386. },
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(5 + 3 / 12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(118, "feet")
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(5, "feet"),
  3403. weight: math.unit(90, "kg"),
  3404. preyCapacity: math.unit(14, "people"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/fory/front.svg",
  3408. extra: 2862 / 2674,
  3409. bottom: 180 / 3043.8
  3410. },
  3411. form: "weaselbun",
  3412. default: true,
  3413. extraAttributes: {
  3414. "pawSize": {
  3415. name: "Paw Size",
  3416. power: 2,
  3417. type: "area",
  3418. base: math.unit(0.1596, "m^2")
  3419. },
  3420. "pawLength": {
  3421. name: "Paw Length",
  3422. power: 1,
  3423. type: "length",
  3424. base: math.unit(0.7, "m")
  3425. }
  3426. }
  3427. },
  3428. back: {
  3429. height: math.unit(5, "feet"),
  3430. weight: math.unit(90, "kg"),
  3431. preyCapacity: math.unit(14, "people"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/fory/back.svg",
  3435. extra: 1790/1672,
  3436. bottom: 84/1874
  3437. },
  3438. form: "weaselbun",
  3439. extraAttributes: {
  3440. "pawSize": {
  3441. name: "Paw Size",
  3442. power: 2,
  3443. type: "area",
  3444. base: math.unit(0.1596, "m^2")
  3445. },
  3446. "pawLength": {
  3447. name: "Paw Length",
  3448. power: 1,
  3449. type: "length",
  3450. base: math.unit(0.7, "m")
  3451. }
  3452. }
  3453. },
  3454. paw: {
  3455. height: math.unit(2.14, "feet"),
  3456. name: "Paw",
  3457. image: {
  3458. source: "./media/characters/fory/paw.svg"
  3459. },
  3460. form: "weaselbun",
  3461. extraAttributes: {
  3462. "pawSize": {
  3463. name: "Paw Size",
  3464. power: 2,
  3465. type: "area",
  3466. base: math.unit(0.1596, "m^2")
  3467. },
  3468. "pawLength": {
  3469. name: "Paw Length",
  3470. power: 1,
  3471. type: "length",
  3472. base: math.unit(0.48, "m")
  3473. }
  3474. }
  3475. },
  3476. bunBack: {
  3477. height: math.unit(3, "feet"),
  3478. weight: math.unit(20, "kg"),
  3479. preyCapacity: math.unit(3, "people"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/fory/bun-back.svg",
  3483. extra: 1749/1564,
  3484. bottom: 246/1995
  3485. },
  3486. form: "bun",
  3487. default: true,
  3488. extraAttributes: {
  3489. "pawSize": {
  3490. name: "Paw Size",
  3491. power: 2,
  3492. type: "area",
  3493. base: math.unit(0.072, "m^2")
  3494. },
  3495. "pawLength": {
  3496. name: "Paw Length",
  3497. power: 1,
  3498. type: "length",
  3499. base: math.unit(0.45, "m")
  3500. }
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(5, "feet"),
  3508. form: "weaselbun"
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(50, "feet"),
  3513. default: true,
  3514. form: "weaselbun"
  3515. },
  3516. {
  3517. name: "Megamacro",
  3518. height: math.unit(10, "miles"),
  3519. form: "weaselbun"
  3520. },
  3521. {
  3522. name: "Gigamacro",
  3523. height: math.unit(5, "earths"),
  3524. form: "weaselbun"
  3525. },
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(3, "feet"),
  3529. default: true,
  3530. form: "bun"
  3531. },
  3532. {
  3533. name: "Fun-Size",
  3534. height: math.unit(12, "feet"),
  3535. form: "bun"
  3536. },
  3537. {
  3538. name: "Macro",
  3539. height: math.unit(100, "feet"),
  3540. form: "bun"
  3541. },
  3542. {
  3543. name: "Planetary",
  3544. height: math.unit(3, "earths"),
  3545. form: "bun"
  3546. },
  3547. ],
  3548. {
  3549. "weaselbun": {
  3550. name: "Weaselbun",
  3551. default: true
  3552. },
  3553. "bun": {
  3554. name: "Bun",
  3555. },
  3556. }
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(7, "feet"),
  3563. weight: math.unit(90, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/kurrikage/front.svg",
  3567. extra: 1845/1733,
  3568. bottom: 119/1964
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(7, "feet"),
  3573. weight: math.unit(90, "kg"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/kurrikage/back.svg",
  3577. extra: 1790/1677,
  3578. bottom: 61/1851
  3579. }
  3580. },
  3581. dressed: {
  3582. height: math.unit(7, "feet"),
  3583. weight: math.unit(90, "kg"),
  3584. name: "Dressed",
  3585. image: {
  3586. source: "./media/characters/kurrikage/dressed.svg",
  3587. extra: 1845/1733,
  3588. bottom: 119/1964
  3589. }
  3590. },
  3591. foot: {
  3592. height: math.unit(1.5, "feet"),
  3593. name: "Foot",
  3594. image: {
  3595. source: "./media/characters/kurrikage/foot.svg"
  3596. }
  3597. },
  3598. staff: {
  3599. height: math.unit(6.7, "feet"),
  3600. name: "Staff",
  3601. image: {
  3602. source: "./media/characters/kurrikage/staff.svg"
  3603. }
  3604. },
  3605. peek: {
  3606. height: math.unit(1.05, "feet"),
  3607. name: "Peeking",
  3608. image: {
  3609. source: "./media/characters/kurrikage/peek.svg",
  3610. bottom: 0.08
  3611. }
  3612. },
  3613. },
  3614. [
  3615. {
  3616. name: "Normal",
  3617. height: math.unit(12, "feet"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Big",
  3622. height: math.unit(20, "feet")
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(500, "feet")
  3627. },
  3628. {
  3629. name: "Megamacro",
  3630. height: math.unit(20, "miles")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(75, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/shingo/front.svg",
  3643. extra: 1900/1825,
  3644. bottom: 82/1982
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(6, "feet"),
  3649. weight: math.unit(75, "kg"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/shingo/side.svg",
  3653. extra: 1930/1865,
  3654. bottom: 16/1946
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(6, "feet"),
  3659. weight: math.unit(75, "kg"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/shingo/back.svg",
  3663. extra: 1922/1852,
  3664. bottom: 16/1938
  3665. }
  3666. },
  3667. frontDressed: {
  3668. height: math.unit(6, "feet"),
  3669. weight: math.unit(150, "lb"),
  3670. name: "Front-dressed",
  3671. image: {
  3672. source: "./media/characters/shingo/front-dressed.svg",
  3673. extra: 1900/1825,
  3674. bottom: 82/1982
  3675. }
  3676. },
  3677. paw: {
  3678. height: math.unit(1.29, "feet"),
  3679. name: "Paw",
  3680. image: {
  3681. source: "./media/characters/shingo/paw.svg"
  3682. }
  3683. },
  3684. hand: {
  3685. height: math.unit(1.07, "feet"),
  3686. name: "Hand",
  3687. image: {
  3688. source: "./media/characters/shingo/hand.svg"
  3689. }
  3690. },
  3691. frontAlt: {
  3692. height: math.unit(6, "feet"),
  3693. weight: math.unit(75, "kg"),
  3694. name: "Front (Alt)",
  3695. image: {
  3696. source: "./media/characters/shingo/front-alt.svg",
  3697. extra: 3511 / 3338,
  3698. bottom: 0.005
  3699. }
  3700. },
  3701. frontAlt2: {
  3702. height: math.unit(6, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Front (Alt 2)",
  3705. image: {
  3706. source: "./media/characters/shingo/front-alt-2.svg",
  3707. extra: 706/681,
  3708. bottom: 11/717
  3709. }
  3710. },
  3711. pawAlt: {
  3712. height: math.unit(1, "feet"),
  3713. name: "Paw (Alt)",
  3714. image: {
  3715. source: "./media/characters/shingo/paw-alt.svg"
  3716. }
  3717. },
  3718. },
  3719. [
  3720. {
  3721. name: "Micro",
  3722. height: math.unit(4, "inches")
  3723. },
  3724. {
  3725. name: "Normal",
  3726. height: math.unit(6, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(108, "feet")
  3732. },
  3733. {
  3734. name: "Macro+",
  3735. height: math.unit(1500, "feet")
  3736. },
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3741. {
  3742. side: {
  3743. height: math.unit(6, "feet"),
  3744. weight: math.unit(75, "kg"),
  3745. name: "Side",
  3746. image: {
  3747. source: "./media/characters/aigey/side.svg"
  3748. }
  3749. },
  3750. },
  3751. [
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(200, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(100, "miles")
  3760. },
  3761. ]
  3762. )
  3763. )
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(5 + 5 / 12, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/natasha/front.svg",
  3773. extra: 859 / 824,
  3774. bottom: 23 / 879.6
  3775. }
  3776. },
  3777. frontNsfw: {
  3778. height: math.unit(5 + 5 / 12, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front (NSFW)",
  3781. image: {
  3782. source: "./media/characters/natasha/front-nsfw.svg",
  3783. extra: 859 / 824,
  3784. bottom: 23 / 879.6
  3785. }
  3786. },
  3787. frontErect: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Front (Erect)",
  3791. image: {
  3792. source: "./media/characters/natasha/front-erect.svg",
  3793. extra: 859 / 824,
  3794. bottom: 23 / 879.6
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(5 + 5 / 12, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/natasha/back.svg",
  3803. extra: 887.9 / 852.6,
  3804. bottom: 9.7 / 896.4
  3805. }
  3806. },
  3807. backAlt: {
  3808. height: math.unit(5 + 5 / 12, "feet"),
  3809. weight: math.unit(75, "kg"),
  3810. name: "Back (Alt)",
  3811. image: {
  3812. source: "./media/characters/natasha/back-alt.svg",
  3813. extra: 1236.7 / 1192,
  3814. bottom: 22.3 / 1258.2
  3815. }
  3816. },
  3817. dick: {
  3818. height: math.unit(1.772, "feet"),
  3819. name: "Dick",
  3820. image: {
  3821. source: "./media/characters/natasha/dick.svg"
  3822. }
  3823. },
  3824. paw: {
  3825. height: math.unit(0.250, "meters"),
  3826. name: "Paw",
  3827. image: {
  3828. source: "./media/characters/natasha/paw.svg"
  3829. },
  3830. extraAttributes: {
  3831. "toeSize": {
  3832. name: "Toe Size",
  3833. power: 2,
  3834. type: "area",
  3835. base: math.unit(0.0024, "m^2")
  3836. },
  3837. "padSize": {
  3838. name: "Pad Size",
  3839. power: 2,
  3840. type: "area",
  3841. base: math.unit(0.00889, "m^2")
  3842. },
  3843. "pawSize": {
  3844. name: "Paw Size",
  3845. power: 2,
  3846. type: "area",
  3847. base: math.unit(0.023667, "m^2")
  3848. },
  3849. }
  3850. },
  3851. },
  3852. [
  3853. {
  3854. name: "Shortstack",
  3855. height: math.unit(3, "feet"),
  3856. default: true
  3857. },
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(5 + 5 / 12, "feet")
  3861. },
  3862. {
  3863. name: "Large",
  3864. height: math.unit(12, "feet")
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(100, "feet")
  3869. },
  3870. {
  3871. name: "Macro+",
  3872. height: math.unit(260, "feet")
  3873. },
  3874. {
  3875. name: "Macro++",
  3876. height: math.unit(1, "mile")
  3877. },
  3878. ]
  3879. ))
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3882. {
  3883. front: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(75, "kg"),
  3886. name: "Front",
  3887. image: {
  3888. source: "./media/characters/malik/front.svg",
  3889. extra: 1750/1561,
  3890. bottom: 80/1830
  3891. },
  3892. extraAttributes: {
  3893. "toeSize": {
  3894. name: "Toe Size",
  3895. power: 2,
  3896. type: "area",
  3897. base: math.unit(0.0159, "m^2")
  3898. },
  3899. "pawSize": {
  3900. name: "Paw Size",
  3901. power: 2,
  3902. type: "area",
  3903. base: math.unit(0.09834, "m^2")
  3904. },
  3905. }
  3906. },
  3907. side: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(75, "kg"),
  3910. name: "Side",
  3911. image: {
  3912. source: "./media/characters/malik/side.svg",
  3913. extra: 1802/1685,
  3914. bottom: 42/1844
  3915. },
  3916. extraAttributes: {
  3917. "toeSize": {
  3918. name: "Toe Size",
  3919. power: 2,
  3920. type: "area",
  3921. base: math.unit(0.0159, "m^2")
  3922. },
  3923. "pawSize": {
  3924. name: "Paw Size",
  3925. power: 2,
  3926. type: "area",
  3927. base: math.unit(0.09834, "m^2")
  3928. },
  3929. }
  3930. },
  3931. back: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Back",
  3935. image: {
  3936. source: "./media/characters/malik/back.svg",
  3937. extra: 1803/1607,
  3938. bottom: 33/1836
  3939. },
  3940. extraAttributes: {
  3941. "toeSize": {
  3942. name: "Toe Size",
  3943. power: 2,
  3944. type: "area",
  3945. base: math.unit(0.0159, "m^2")
  3946. },
  3947. "pawSize": {
  3948. name: "Paw Size",
  3949. power: 2,
  3950. type: "area",
  3951. base: math.unit(0.09834, "m^2")
  3952. },
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(156, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Macro+",
  3964. height: math.unit(1188, "feet")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(75, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/sefer/front.svg",
  3977. extra: 848 / 659,
  3978. bottom: 28.3 / 876.442
  3979. }
  3980. },
  3981. back: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(75, "kg"),
  3984. name: "Back",
  3985. image: {
  3986. source: "./media/characters/sefer/back.svg",
  3987. extra: 864 / 695,
  3988. bottom: 10 / 871
  3989. }
  3990. },
  3991. frontDressed: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(75, "kg"),
  3994. name: "Dressed",
  3995. image: {
  3996. source: "./media/characters/sefer/dressed.svg",
  3997. extra: 839 / 653,
  3998. bottom: 37.6 / 878
  3999. }
  4000. },
  4001. },
  4002. [
  4003. {
  4004. name: "Normal",
  4005. height: math.unit(6, "feet"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Big",
  4010. height: math.unit(8, "meters")
  4011. },
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4016. {
  4017. body: {
  4018. height: math.unit(2.2428, "meter"),
  4019. weight: math.unit(124.738, "kg"),
  4020. name: "Body",
  4021. image: {
  4022. extra: 1225 / 1050,
  4023. source: "./media/characters/north/front.svg"
  4024. }
  4025. }
  4026. },
  4027. [
  4028. {
  4029. name: "Micro",
  4030. height: math.unit(4, "inches")
  4031. },
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(63, "meters")
  4035. },
  4036. {
  4037. name: "Megamacro",
  4038. height: math.unit(101, "miles"),
  4039. default: true
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4045. {
  4046. angled: {
  4047. height: math.unit(4, "meter"),
  4048. weight: math.unit(150, "kg"),
  4049. name: "Angled",
  4050. image: {
  4051. source: "./media/characters/talan/angled-sfw.svg",
  4052. bottom: 29 / 3734
  4053. }
  4054. },
  4055. angledNsfw: {
  4056. height: math.unit(4, "meter"),
  4057. weight: math.unit(150, "kg"),
  4058. name: "Angled (NSFW)",
  4059. image: {
  4060. source: "./media/characters/talan/angled-nsfw.svg",
  4061. bottom: 29 / 3734
  4062. }
  4063. },
  4064. frontNsfw: {
  4065. height: math.unit(4, "meter"),
  4066. weight: math.unit(150, "kg"),
  4067. name: "Front (NSFW)",
  4068. image: {
  4069. source: "./media/characters/talan/front-nsfw.svg",
  4070. bottom: 29 / 3734
  4071. }
  4072. },
  4073. sideNsfw: {
  4074. height: math.unit(4, "meter"),
  4075. weight: math.unit(150, "kg"),
  4076. name: "Side (NSFW)",
  4077. image: {
  4078. source: "./media/characters/talan/side-nsfw.svg",
  4079. bottom: 29 / 3734
  4080. }
  4081. },
  4082. back: {
  4083. height: math.unit(4, "meter"),
  4084. weight: math.unit(150, "kg"),
  4085. name: "Back",
  4086. image: {
  4087. source: "./media/characters/talan/back.svg"
  4088. }
  4089. },
  4090. dickBottom: {
  4091. height: math.unit(0.621, "meter"),
  4092. name: "Dick (Bottom)",
  4093. image: {
  4094. source: "./media/characters/talan/dick-bottom.svg"
  4095. }
  4096. },
  4097. dickTop: {
  4098. height: math.unit(0.621, "meter"),
  4099. name: "Dick (Top)",
  4100. image: {
  4101. source: "./media/characters/talan/dick-top.svg"
  4102. }
  4103. },
  4104. dickSide: {
  4105. height: math.unit(0.305, "meter"),
  4106. name: "Dick (Side)",
  4107. image: {
  4108. source: "./media/characters/talan/dick-side.svg"
  4109. }
  4110. },
  4111. dickFront: {
  4112. height: math.unit(0.305, "meter"),
  4113. name: "Dick (Front)",
  4114. image: {
  4115. source: "./media/characters/talan/dick-front.svg"
  4116. }
  4117. },
  4118. },
  4119. [
  4120. {
  4121. name: "Normal",
  4122. height: math.unit(4, "meters")
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(100, "meters")
  4127. },
  4128. {
  4129. name: "Megamacro",
  4130. height: math.unit(2, "miles"),
  4131. default: true
  4132. },
  4133. {
  4134. name: "Gigamacro",
  4135. height: math.unit(5000, "miles")
  4136. },
  4137. {
  4138. name: "Teramacro",
  4139. height: math.unit(100, "parsecs")
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4145. {
  4146. front: {
  4147. height: math.unit(2, "meter"),
  4148. weight: math.unit(90, "kg"),
  4149. name: "Front",
  4150. image: {
  4151. source: "./media/characters/gael'rathus/front.svg"
  4152. }
  4153. },
  4154. frontAlt: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front (alt)",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front-alt.svg"
  4160. }
  4161. },
  4162. frontAlt2: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front (alt 2)",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(9, "feet"),
  4175. default: true
  4176. },
  4177. {
  4178. name: "Large",
  4179. height: math.unit(25, "feet")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(0.25, "miles")
  4184. },
  4185. {
  4186. name: "Megamacro",
  4187. height: math.unit(10, "miles")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4193. {
  4194. side: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(140, "kg"),
  4197. name: "Side",
  4198. image: {
  4199. source: "./media/characters/sosha/side.svg",
  4200. extra: 1170/1006,
  4201. bottom: 94/1264
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(2.87, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/sosha/maw.svg",
  4209. extra: 966/865,
  4210. bottom: 0/966
  4211. }
  4212. },
  4213. cooch: {
  4214. height: math.unit(5.6, "feet"),
  4215. name: "Cooch",
  4216. image: {
  4217. source: "./media/characters/sosha/cooch.svg"
  4218. }
  4219. },
  4220. },
  4221. [
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(12, "feet"),
  4225. default: true
  4226. }
  4227. ]
  4228. ))
  4229. characterMakers.push(() => makeCharacter(
  4230. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4231. {
  4232. side: {
  4233. height: math.unit(5 + 5 / 12, "feet"),
  4234. weight: math.unit(170, "kg"),
  4235. name: "Side",
  4236. image: {
  4237. source: "./media/characters/runnola/side.svg",
  4238. extra: 741 / 448,
  4239. bottom: 0.05
  4240. }
  4241. },
  4242. },
  4243. [
  4244. {
  4245. name: "Small",
  4246. height: math.unit(3, "feet")
  4247. },
  4248. {
  4249. name: "Normal",
  4250. height: math.unit(5 + 5 / 12, "feet"),
  4251. default: true
  4252. },
  4253. {
  4254. name: "Big",
  4255. height: math.unit(10, "feet")
  4256. },
  4257. ]
  4258. ))
  4259. characterMakers.push(() => makeCharacter(
  4260. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4261. {
  4262. front: {
  4263. height: math.unit(2, "meter"),
  4264. weight: math.unit(50, "kg"),
  4265. name: "Front",
  4266. image: {
  4267. source: "./media/characters/kurribird/front.svg",
  4268. bottom: 0.015
  4269. }
  4270. },
  4271. frontAlt: {
  4272. height: math.unit(1.5, "meter"),
  4273. weight: math.unit(50, "kg"),
  4274. name: "Front (Alt)",
  4275. image: {
  4276. source: "./media/characters/kurribird/front-alt.svg",
  4277. extra: 1.45
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(7, "feet")
  4285. },
  4286. {
  4287. name: "Big",
  4288. height: math.unit(12, "feet"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Macro",
  4293. height: math.unit(1500, "feet")
  4294. },
  4295. {
  4296. name: "Megamacro",
  4297. height: math.unit(2, "miles")
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(80, "kg"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/elbial/front.svg",
  4310. extra: 1643 / 1556,
  4311. bottom: 60.2 / 1696
  4312. }
  4313. },
  4314. side: {
  4315. height: math.unit(2, "meter"),
  4316. weight: math.unit(80, "kg"),
  4317. name: "Side",
  4318. image: {
  4319. source: "./media/characters/elbial/side.svg",
  4320. extra: 1601/1528,
  4321. bottom: 97/1698
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(80, "kg"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/elbial/back.svg",
  4330. extra: 1653/1569,
  4331. bottom: 20/1673
  4332. }
  4333. },
  4334. frontDressed: {
  4335. height: math.unit(2, "meter"),
  4336. weight: math.unit(80, "kg"),
  4337. name: "Front (Dressed)",
  4338. image: {
  4339. source: "./media/characters/elbial/front-dressed.svg",
  4340. extra: 1638/1569,
  4341. bottom: 70/1708
  4342. }
  4343. },
  4344. genitals: {
  4345. height: math.unit(2 / 3.367, "meter"),
  4346. name: "Genitals",
  4347. image: {
  4348. source: "./media/characters/elbial/genitals.svg"
  4349. }
  4350. },
  4351. },
  4352. [
  4353. {
  4354. name: "Large",
  4355. height: math.unit(100, "feet")
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(500, "feet"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Megamacro",
  4364. height: math.unit(10, "miles")
  4365. },
  4366. {
  4367. name: "Gigamacro",
  4368. height: math.unit(25000, "miles")
  4369. },
  4370. {
  4371. name: "Full-Size",
  4372. height: math.unit(8000000, "gigaparsecs")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(2, "meter"),
  4381. weight: math.unit(60, "kg"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/noah/front.svg",
  4385. extra: 1383/1313,
  4386. bottom: 104/1487
  4387. }
  4388. },
  4389. hand: {
  4390. height: math.unit(0.6, "feet"),
  4391. name: "Hand",
  4392. image: {
  4393. source: "./media/characters/noah/hand.svg"
  4394. }
  4395. },
  4396. talons: {
  4397. height: math.unit(1.385, "feet"),
  4398. name: "Talons",
  4399. image: {
  4400. source: "./media/characters/noah/talons.svg"
  4401. }
  4402. },
  4403. beak: {
  4404. height: math.unit(0.43, "feet"),
  4405. name: "Beak",
  4406. image: {
  4407. source: "./media/characters/noah/beak.svg"
  4408. }
  4409. },
  4410. collar: {
  4411. height: math.unit(0.88, "feet"),
  4412. name: "Collar",
  4413. image: {
  4414. source: "./media/characters/noah/collar.svg"
  4415. }
  4416. },
  4417. eyeNarrow: {
  4418. height: math.unit(0.18, "feet"),
  4419. name: "Eye (Narrow)",
  4420. image: {
  4421. source: "./media/characters/noah/eye-narrow.svg"
  4422. }
  4423. },
  4424. eyeNormal: {
  4425. height: math.unit(0.18, "feet"),
  4426. name: "Eye (Normal)",
  4427. image: {
  4428. source: "./media/characters/noah/eye-normal.svg"
  4429. }
  4430. },
  4431. eyeWide: {
  4432. height: math.unit(0.18, "feet"),
  4433. name: "Eye (Wide)",
  4434. image: {
  4435. source: "./media/characters/noah/eye-wide.svg"
  4436. }
  4437. },
  4438. ear: {
  4439. height: math.unit(0.64, "feet"),
  4440. name: "Ear",
  4441. image: {
  4442. source: "./media/characters/noah/ear.svg"
  4443. }
  4444. },
  4445. },
  4446. [
  4447. {
  4448. name: "Large",
  4449. height: math.unit(50, "feet")
  4450. },
  4451. {
  4452. name: "Macro",
  4453. height: math.unit(750, "feet"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Megamacro",
  4458. height: math.unit(50, "miles")
  4459. },
  4460. {
  4461. name: "Gigamacro",
  4462. height: math.unit(100000, "miles")
  4463. },
  4464. {
  4465. name: "Full-Size",
  4466. height: math.unit(3000000000, "miles")
  4467. }
  4468. ]
  4469. ))
  4470. characterMakers.push(() => makeCharacter(
  4471. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4472. {
  4473. front: {
  4474. height: math.unit(2, "meter"),
  4475. weight: math.unit(80, "kg"),
  4476. name: "Front",
  4477. image: {
  4478. source: "./media/characters/natalya/front.svg"
  4479. }
  4480. },
  4481. back: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(80, "kg"),
  4484. name: "Back",
  4485. image: {
  4486. source: "./media/characters/natalya/back.svg"
  4487. }
  4488. }
  4489. },
  4490. [
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(150, "feet"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(5, "miles")
  4499. },
  4500. {
  4501. name: "Full-Size",
  4502. height: math.unit(600, "kiloparsecs")
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(2, "meter"),
  4511. weight: math.unit(50, "kg"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/erestrebah/front.svg",
  4515. extra: 1262/1162,
  4516. bottom: 96/1358
  4517. }
  4518. },
  4519. back: {
  4520. height: math.unit(2, "meter"),
  4521. weight: math.unit(50, "kg"),
  4522. name: "Back",
  4523. image: {
  4524. source: "./media/characters/erestrebah/back.svg",
  4525. extra: 1257/1139,
  4526. bottom: 13/1270
  4527. }
  4528. },
  4529. wing: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(50, "kg"),
  4532. name: "Wing",
  4533. image: {
  4534. source: "./media/characters/erestrebah/wing.svg",
  4535. extra: 1262/1162,
  4536. bottom: 96/1358
  4537. }
  4538. },
  4539. mouth: {
  4540. height: math.unit(0.39, "feet"),
  4541. name: "Mouth",
  4542. image: {
  4543. source: "./media/characters/erestrebah/mouth.svg"
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(10, "feet")
  4551. },
  4552. {
  4553. name: "Large",
  4554. height: math.unit(50, "feet"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(300, "feet")
  4560. },
  4561. {
  4562. name: "Macro+",
  4563. height: math.unit(750, "feet")
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(3, "miles")
  4568. }
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4573. {
  4574. front: {
  4575. height: math.unit(2, "meter"),
  4576. weight: math.unit(80, "kg"),
  4577. name: "Front",
  4578. image: {
  4579. source: "./media/characters/jennifer/front.svg",
  4580. bottom: 0.11,
  4581. extra: 1.16
  4582. }
  4583. },
  4584. frontAlt: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(80, "kg"),
  4587. name: "Front (Alt)",
  4588. image: {
  4589. source: "./media/characters/jennifer/front-alt.svg"
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Canon Height",
  4596. height: math.unit(120, "feet"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Macro+",
  4601. height: math.unit(300, "feet")
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(20000, "feet")
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(2, "meter"),
  4614. weight: math.unit(50, "kg"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/kalista/front.svg",
  4618. extra: 1314/1145,
  4619. bottom: 101/1415
  4620. }
  4621. },
  4622. back: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(50, "kg"),
  4625. name: "Back",
  4626. image: {
  4627. source: "./media/characters/kalista/back.svg",
  4628. extra: 1366 / 1156,
  4629. bottom: 33.9 / 1362.78
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Uncomfortably Small",
  4636. height: math.unit(10, "feet")
  4637. },
  4638. {
  4639. name: "Small",
  4640. height: math.unit(30, "feet")
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(100, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Macro+",
  4649. height: math.unit(2000, "feet")
  4650. },
  4651. {
  4652. name: "True Form",
  4653. height: math.unit(8924, "miles")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(120, "kg"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/ggv/front.svg"
  4666. }
  4667. },
  4668. side: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(120, "kg"),
  4671. name: "Side",
  4672. image: {
  4673. source: "./media/characters/ggv/side.svg"
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Extremely Puny",
  4680. height: math.unit(9 + 5 / 12, "feet")
  4681. },
  4682. {
  4683. name: "Horribly Small",
  4684. height: math.unit(47.7, "miles"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Reasonably Sized",
  4689. height: math.unit(25000, "parsecs")
  4690. },
  4691. {
  4692. name: "Slightly Uncompressed",
  4693. height: math.unit(7.77e31, "parsecs")
  4694. },
  4695. {
  4696. name: "Omniversal",
  4697. height: math.unit(1e300, "meters")
  4698. },
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(2, "meter"),
  4706. weight: math.unit(75, "lb"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/napalm/front.svg"
  4710. }
  4711. },
  4712. back: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(75, "lb"),
  4715. name: "Back",
  4716. image: {
  4717. source: "./media/characters/napalm/back.svg"
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Standard",
  4724. height: math.unit(55, "feet"),
  4725. default: true
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(7 + 5 / 6, "feet"),
  4734. weight: math.unit(325, "lb"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/asana/front.svg",
  4738. extra: 1133 / 1060,
  4739. bottom: 15.2 / 1148.6
  4740. }
  4741. },
  4742. back: {
  4743. height: math.unit(7 + 5 / 6, "feet"),
  4744. weight: math.unit(325, "lb"),
  4745. name: "Back",
  4746. image: {
  4747. source: "./media/characters/asana/back.svg",
  4748. extra: 1114 / 1043,
  4749. bottom: 5 / 1120
  4750. }
  4751. },
  4752. dressedDark: {
  4753. height: math.unit(7 + 5 / 6, "feet"),
  4754. weight: math.unit(325, "lb"),
  4755. name: "Dressed (Dark)",
  4756. image: {
  4757. source: "./media/characters/asana/dressed-dark.svg",
  4758. extra: 1133 / 1060,
  4759. bottom: 15.2 / 1148.6
  4760. }
  4761. },
  4762. dressedLight: {
  4763. height: math.unit(7 + 5 / 6, "feet"),
  4764. weight: math.unit(325, "lb"),
  4765. name: "Dressed (Light)",
  4766. image: {
  4767. source: "./media/characters/asana/dressed-light.svg",
  4768. extra: 1133 / 1060,
  4769. bottom: 15.2 / 1148.6
  4770. }
  4771. },
  4772. },
  4773. [
  4774. {
  4775. name: "Standard",
  4776. height: math.unit(7 + 5 / 6, "feet"),
  4777. default: true
  4778. },
  4779. {
  4780. name: "Large",
  4781. height: math.unit(10, "meters")
  4782. },
  4783. {
  4784. name: "Macro",
  4785. height: math.unit(2500, "meters")
  4786. },
  4787. {
  4788. name: "Megamacro",
  4789. height: math.unit(5e6, "meters")
  4790. },
  4791. {
  4792. name: "Examacro",
  4793. height: math.unit(5e12, "lightyears")
  4794. },
  4795. {
  4796. name: "Max Size",
  4797. height: math.unit(1e31, "lightyears")
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(2, "meter"),
  4806. weight: math.unit(60, "kg"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/ebony/front.svg",
  4810. bottom: 0.03,
  4811. extra: 1045 / 810 + 0.03
  4812. }
  4813. },
  4814. side: {
  4815. height: math.unit(2, "meter"),
  4816. weight: math.unit(60, "kg"),
  4817. name: "Side",
  4818. image: {
  4819. source: "./media/characters/ebony/side.svg",
  4820. bottom: 0.03,
  4821. extra: 1045 / 810 + 0.03
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(2, "meter"),
  4826. weight: math.unit(60, "kg"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/ebony/back.svg",
  4830. bottom: 0.01,
  4831. extra: 1045 / 810 + 0.01
  4832. }
  4833. },
  4834. },
  4835. [
  4836. // TODO check why I did this lol
  4837. {
  4838. name: "Standard",
  4839. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Macro",
  4844. height: math.unit(200, "feet")
  4845. },
  4846. {
  4847. name: "Gigamacro",
  4848. height: math.unit(13000, "km")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(175, "lb"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/mountain/front.svg",
  4861. extra: 972 / 955,
  4862. bottom: 64 / 1036.6
  4863. }
  4864. },
  4865. back: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(175, "lb"),
  4868. name: "Back",
  4869. image: {
  4870. source: "./media/characters/mountain/back.svg",
  4871. extra: 970 / 950,
  4872. bottom: 28.25 / 999
  4873. }
  4874. },
  4875. },
  4876. [
  4877. {
  4878. name: "Large",
  4879. height: math.unit(20, "meters")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(300, "meters")
  4884. },
  4885. {
  4886. name: "Gigamacro",
  4887. height: math.unit(10000, "km"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Examacro",
  4892. height: math.unit(10e9, "lightyears")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(8, "feet"),
  4901. weight: math.unit(500, "lb"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rick/front.svg"
  4905. }
  4906. }
  4907. },
  4908. [
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(8, "feet"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Macro",
  4916. height: math.unit(5, "km")
  4917. }
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4922. {
  4923. front: {
  4924. height: math.unit(8, "feet"),
  4925. weight: math.unit(120, "lb"),
  4926. name: "Front",
  4927. image: {
  4928. source: "./media/characters/ona/front.svg"
  4929. }
  4930. },
  4931. frontAlt: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Front (Alt)",
  4935. image: {
  4936. source: "./media/characters/ona/front-alt.svg"
  4937. }
  4938. },
  4939. back: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Back",
  4943. image: {
  4944. source: "./media/characters/ona/back.svg"
  4945. }
  4946. },
  4947. foot: {
  4948. height: math.unit(1.1, "feet"),
  4949. name: "Foot",
  4950. image: {
  4951. source: "./media/characters/ona/foot.svg"
  4952. }
  4953. }
  4954. },
  4955. [
  4956. {
  4957. name: "Megamacro",
  4958. height: math.unit(70, "km"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(681818, "miles")
  4964. },
  4965. {
  4966. name: "Examacro",
  4967. height: math.unit(3800000, "lightyears")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(12, "feet"),
  4976. weight: math.unit(3000, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/mech/front.svg",
  4980. extra: 2900 / 2770,
  4981. bottom: 110 / 3010
  4982. }
  4983. },
  4984. back: {
  4985. height: math.unit(12, "feet"),
  4986. weight: math.unit(3000, "lb"),
  4987. name: "Back",
  4988. image: {
  4989. source: "./media/characters/mech/back.svg",
  4990. extra: 3011 / 2890,
  4991. bottom: 94 / 3105
  4992. }
  4993. },
  4994. maw: {
  4995. height: math.unit(3.07, "feet"),
  4996. name: "Maw",
  4997. image: {
  4998. source: "./media/characters/mech/maw.svg"
  4999. }
  5000. },
  5001. head: {
  5002. height: math.unit(3.07, "feet"),
  5003. name: "Head",
  5004. image: {
  5005. source: "./media/characters/mech/head.svg"
  5006. }
  5007. },
  5008. dick: {
  5009. height: math.unit(1.43, "feet"),
  5010. name: "Dick",
  5011. image: {
  5012. source: "./media/characters/mech/dick.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(12, "feet")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(300, "feet"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Macro+",
  5028. height: math.unit(1500, "feet")
  5029. },
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(1.3, "meter"),
  5037. weight: math.unit(30, "kg"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/gregory/front.svg",
  5041. }
  5042. }
  5043. },
  5044. [
  5045. {
  5046. name: "Normal",
  5047. height: math.unit(1.3, "meter"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Macro",
  5052. height: math.unit(20, "meter")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5058. {
  5059. front: {
  5060. height: math.unit(2.8, "meter"),
  5061. weight: math.unit(200, "kg"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/elory/front.svg",
  5065. }
  5066. }
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(2.8, "meter"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro",
  5076. height: math.unit(38, "meter")
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(470, "feet"),
  5085. weight: math.unit(924, "tons"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/angelpatamon/front.svg",
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(470, "feet"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Deity Size I",
  5100. height: math.unit(28651.2, "km")
  5101. },
  5102. {
  5103. name: "Deity Size II",
  5104. height: math.unit(171907.2, "km")
  5105. }
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5110. {
  5111. side: {
  5112. height: math.unit(7.2, "meter"),
  5113. weight: math.unit(8.2, "tons"),
  5114. name: "Side",
  5115. image: {
  5116. source: "./media/characters/cryae/side.svg",
  5117. extra: 3500 / 1500
  5118. }
  5119. }
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(7.2, "meter"),
  5125. default: true
  5126. }
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5131. {
  5132. front: {
  5133. height: math.unit(6, "feet"),
  5134. weight: math.unit(175, "lb"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/xera/front.svg",
  5138. extra: 2377 / 1972,
  5139. bottom: 75.5 / 2452
  5140. }
  5141. },
  5142. side: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(175, "lb"),
  5145. name: "Side",
  5146. image: {
  5147. source: "./media/characters/xera/side.svg",
  5148. extra: 2345 / 2019,
  5149. bottom: 39.7 / 2384
  5150. }
  5151. },
  5152. back: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(175, "lb"),
  5155. name: "Back",
  5156. image: {
  5157. source: "./media/characters/xera/back.svg",
  5158. extra: 2095 / 1984,
  5159. bottom: 67 / 2166
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Small",
  5166. height: math.unit(10, "feet")
  5167. },
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(500, "meters"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Macro+",
  5175. height: math.unit(10, "km")
  5176. },
  5177. {
  5178. name: "Gigamacro",
  5179. height: math.unit(25000, "km")
  5180. },
  5181. {
  5182. name: "Teramacro",
  5183. height: math.unit(3e6, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/nebula/front.svg",
  5196. extra: 2566 / 2362,
  5197. bottom: 81 / 2644
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Small",
  5204. height: math.unit(4.5, "meters")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(1500, "meters"),
  5209. default: true
  5210. },
  5211. {
  5212. name: "Megamacro",
  5213. height: math.unit(150, "km")
  5214. },
  5215. {
  5216. name: "Gigamacro",
  5217. height: math.unit(27000, "km")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5223. {
  5224. front: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(225, "lb"),
  5227. name: "Front",
  5228. image: {
  5229. source: "./media/characters/abysgar/front.svg",
  5230. extra: 1739/1614,
  5231. bottom: 71/1810
  5232. }
  5233. },
  5234. frontNsfw: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(225, "lb"),
  5237. name: "Front (NSFW)",
  5238. image: {
  5239. source: "./media/characters/abysgar/front-nsfw.svg",
  5240. extra: 1739/1614,
  5241. bottom: 71/1810
  5242. }
  5243. },
  5244. back: {
  5245. height: math.unit(4.6, "feet"),
  5246. weight: math.unit(225, "lb"),
  5247. name: "Back",
  5248. image: {
  5249. source: "./media/characters/abysgar/back.svg",
  5250. extra: 1384/1327,
  5251. bottom: 0/1384
  5252. }
  5253. },
  5254. head: {
  5255. height: math.unit(1.25, "feet"),
  5256. name: "Head",
  5257. image: {
  5258. source: "./media/characters/abysgar/head.svg",
  5259. extra: 669/569,
  5260. bottom: 0/669
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Small",
  5267. height: math.unit(4.5, "meters")
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(1250, "meters"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Megamacro",
  5276. height: math.unit(125, "km")
  5277. },
  5278. {
  5279. name: "Gigamacro",
  5280. height: math.unit(26000, "km")
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(180, "lb"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/yakuz/front.svg"
  5293. }
  5294. }
  5295. },
  5296. [
  5297. {
  5298. name: "Small",
  5299. height: math.unit(5, "meters")
  5300. },
  5301. {
  5302. name: "Macro",
  5303. height: math.unit(1500, "meters"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Megamacro",
  5308. height: math.unit(200, "km")
  5309. },
  5310. {
  5311. name: "Gigamacro",
  5312. height: math.unit(100000, "km")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(175, "lb"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/mirova/front.svg",
  5325. extra: 3334 / 3071,
  5326. bottom: 42 / 3375.6
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Small",
  5333. height: math.unit(5, "meters")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(900, "meters"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Megamacro",
  5342. height: math.unit(135, "km")
  5343. },
  5344. {
  5345. name: "Gigamacro",
  5346. height: math.unit(20000, "km")
  5347. }
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5352. {
  5353. side: {
  5354. height: math.unit(28.35, "feet"),
  5355. weight: math.unit(99.75, "tons"),
  5356. name: "Side",
  5357. image: {
  5358. source: "./media/characters/asana-mech/side.svg",
  5359. extra: 923 / 699,
  5360. bottom: 50 / 975
  5361. }
  5362. },
  5363. chaingun: {
  5364. height: math.unit(7, "feet"),
  5365. weight: math.unit(2400, "lb"),
  5366. name: "Chaingun",
  5367. image: {
  5368. source: "./media/characters/asana-mech/chaingun.svg"
  5369. }
  5370. },
  5371. laser: {
  5372. height: math.unit(7.12, "feet"),
  5373. weight: math.unit(2000, "lb"),
  5374. name: "Laser",
  5375. image: {
  5376. source: "./media/characters/asana-mech/laser.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(28.35, "feet"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(2500, "feet")
  5389. },
  5390. {
  5391. name: "Megamacro",
  5392. height: math.unit(25, "miles")
  5393. },
  5394. {
  5395. name: "Examacro",
  5396. height: math.unit(6e8, "lightyears")
  5397. },
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5402. {
  5403. front: {
  5404. height: math.unit(5, "meters"),
  5405. weight: math.unit(1000, "kg"),
  5406. name: "Front",
  5407. image: {
  5408. source: "./media/characters/asche/front.svg",
  5409. extra: 1258 / 1190,
  5410. bottom: 47 / 1305
  5411. }
  5412. },
  5413. frontUnderwear: {
  5414. height: math.unit(5, "meters"),
  5415. weight: math.unit(1000, "kg"),
  5416. name: "Front (Underwear)",
  5417. image: {
  5418. source: "./media/characters/asche/front-underwear.svg",
  5419. extra: 1258 / 1190,
  5420. bottom: 47 / 1305
  5421. }
  5422. },
  5423. frontDressed: {
  5424. height: math.unit(5, "meters"),
  5425. weight: math.unit(1000, "kg"),
  5426. name: "Front (Dressed)",
  5427. image: {
  5428. source: "./media/characters/asche/front-dressed.svg",
  5429. extra: 1258 / 1190,
  5430. bottom: 47 / 1305
  5431. }
  5432. },
  5433. frontArmor: {
  5434. height: math.unit(5, "meters"),
  5435. weight: math.unit(1000, "kg"),
  5436. name: "Front (Armored)",
  5437. image: {
  5438. source: "./media/characters/asche/front-armored.svg",
  5439. extra: 1374 / 1308,
  5440. bottom: 23 / 1397
  5441. }
  5442. },
  5443. mp724: {
  5444. height: math.unit(0.96, "meters"),
  5445. weight: math.unit(38, "kg"),
  5446. name: "H&K MP724",
  5447. image: {
  5448. source: "./media/characters/asche/h&k-mp724.svg"
  5449. }
  5450. },
  5451. side: {
  5452. height: math.unit(5, "meters"),
  5453. weight: math.unit(1000, "kg"),
  5454. name: "Side",
  5455. image: {
  5456. source: "./media/characters/asche/side.svg",
  5457. extra: 1717 / 1609,
  5458. bottom: 0.005
  5459. }
  5460. },
  5461. back: {
  5462. height: math.unit(5, "meters"),
  5463. weight: math.unit(1000, "kg"),
  5464. name: "Back",
  5465. image: {
  5466. source: "./media/characters/asche/back.svg",
  5467. extra: 1570 / 1501
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "DEFCON 5",
  5474. height: math.unit(5, "meters")
  5475. },
  5476. {
  5477. name: "DEFCON 4",
  5478. height: math.unit(500, "meters"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "DEFCON 3",
  5483. height: math.unit(5, "km")
  5484. },
  5485. {
  5486. name: "DEFCON 2",
  5487. height: math.unit(500, "km")
  5488. },
  5489. {
  5490. name: "DEFCON 1",
  5491. height: math.unit(500000, "km")
  5492. },
  5493. {
  5494. name: "DEFCON 0",
  5495. height: math.unit(3, "gigaparsecs")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(7, "feet"),
  5504. weight: math.unit(92.7, "kg"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/gale/front.svg",
  5508. extra: 977/919,
  5509. bottom: 105/1082
  5510. }
  5511. },
  5512. side: {
  5513. height: math.unit(6.7, "feet"),
  5514. weight: math.unit(92.7, "kg"),
  5515. name: "Side",
  5516. image: {
  5517. source: "./media/characters/gale/side.svg",
  5518. extra: 978/922,
  5519. bottom: 140/1118
  5520. }
  5521. },
  5522. back: {
  5523. height: math.unit(7, "feet"),
  5524. weight: math.unit(92.7, "kg"),
  5525. name: "Back",
  5526. image: {
  5527. source: "./media/characters/gale/back.svg",
  5528. extra: 966/920,
  5529. bottom: 61/1027
  5530. }
  5531. },
  5532. maw: {
  5533. height: math.unit(2.23, "feet"),
  5534. name: "Maw",
  5535. image: {
  5536. source: "./media/characters/gale/maw.svg"
  5537. }
  5538. },
  5539. foot: {
  5540. height: math.unit(2.1, "feet"),
  5541. name: "Foot",
  5542. image: {
  5543. source: "./media/characters/gale/foot.svg"
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(7, "feet")
  5551. },
  5552. {
  5553. name: "Macro",
  5554. height: math.unit(150, "feet"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Macro+",
  5559. height: math.unit(300, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(5 + 10/12, "feet"),
  5568. weight: math.unit(67, "kg"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/draylen/front.svg",
  5572. extra: 832/777,
  5573. bottom: 85/917
  5574. }
  5575. }
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(5 + 10/12, "feet")
  5581. },
  5582. {
  5583. name: "Macro",
  5584. height: math.unit(150, "feet"),
  5585. default: true
  5586. }
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(7 + 9 / 12, "feet"),
  5594. weight: math.unit(379, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/chez/front.svg"
  5598. }
  5599. },
  5600. side: {
  5601. height: math.unit(7 + 9 / 12, "feet"),
  5602. weight: math.unit(379, "lbs"),
  5603. name: "Side",
  5604. image: {
  5605. source: "./media/characters/chez/side.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(7 + 9 / 12, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "God King",
  5617. height: math.unit(9750000, "meters")
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(275, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/kaylum/front.svg",
  5630. bottom: 0.01,
  5631. extra: 1166 / 1031
  5632. }
  5633. },
  5634. frontWingless: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(275, "lbs"),
  5637. name: "Front (Wingless)",
  5638. image: {
  5639. source: "./media/characters/kaylum/front-wingless.svg",
  5640. bottom: 0.01,
  5641. extra: 1117 / 1031
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(3.05, "meters")
  5649. },
  5650. {
  5651. name: "Master",
  5652. height: math.unit(5.5, "meters")
  5653. },
  5654. {
  5655. name: "Rampage",
  5656. height: math.unit(19, "meters")
  5657. },
  5658. {
  5659. name: "Macro Lite",
  5660. height: math.unit(37, "meters")
  5661. },
  5662. {
  5663. name: "Hyper Predator",
  5664. height: math.unit(61, "meters")
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(138, "meters"),
  5669. default: true
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5675. {
  5676. front: {
  5677. height: math.unit(5 + 5 / 12, "feet"),
  5678. weight: math.unit(120, "lbs"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/geta/front.svg",
  5682. extra: 1003/933,
  5683. bottom: 21/1024
  5684. }
  5685. },
  5686. paw: {
  5687. height: math.unit(0.35, "feet"),
  5688. name: "Paw",
  5689. image: {
  5690. source: "./media/characters/geta/paw.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Micro",
  5697. height: math.unit(3, "inches"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(5 + 5 / 12, "feet")
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(300, "lbs"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/tyrnn/front.svg"
  5715. }
  5716. }
  5717. },
  5718. [
  5719. {
  5720. name: "Main Height",
  5721. height: math.unit(355, "feet"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Fave. Height",
  5726. height: math.unit(2400, "feet")
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5732. {
  5733. front: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(300, "lbs"),
  5736. name: "Front",
  5737. image: {
  5738. source: "./media/characters/appledectomy/front.svg"
  5739. }
  5740. }
  5741. },
  5742. [
  5743. {
  5744. name: "Macro",
  5745. height: math.unit(2500, "feet")
  5746. },
  5747. {
  5748. name: "Megamacro",
  5749. height: math.unit(50, "miles"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Gigamacro",
  5754. height: math.unit(5000, "miles")
  5755. },
  5756. {
  5757. name: "Teramacro",
  5758. height: math.unit(250000, "miles")
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(200, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/vulpes/front.svg",
  5771. extra: 573 / 543,
  5772. bottom: 0.033
  5773. }
  5774. },
  5775. side: {
  5776. height: math.unit(6, "feet"),
  5777. weight: math.unit(200, "lbs"),
  5778. name: "Side",
  5779. image: {
  5780. source: "./media/characters/vulpes/side.svg",
  5781. extra: 577 / 549,
  5782. bottom: 11 / 588
  5783. }
  5784. },
  5785. back: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(200, "lbs"),
  5788. name: "Back",
  5789. image: {
  5790. source: "./media/characters/vulpes/back.svg",
  5791. extra: 573 / 549,
  5792. bottom: 20 / 593
  5793. }
  5794. },
  5795. feet: {
  5796. height: math.unit(1.276, "feet"),
  5797. name: "Feet",
  5798. image: {
  5799. source: "./media/characters/vulpes/feet.svg"
  5800. }
  5801. },
  5802. maw: {
  5803. height: math.unit(1.18, "feet"),
  5804. name: "Maw",
  5805. image: {
  5806. source: "./media/characters/vulpes/maw.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(2, "inches")
  5814. },
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(6.3, "feet")
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(850, "feet")
  5822. },
  5823. {
  5824. name: "Megamacro",
  5825. height: math.unit(7500, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Gigamacro",
  5830. height: math.unit(570000, "miles")
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(210, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rain-fallen/front.svg"
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/side.svg"
  5851. }
  5852. },
  5853. back: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Back",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/back.svg"
  5859. }
  5860. },
  5861. feral: {
  5862. height: math.unit(9, "feet"),
  5863. weight: math.unit(700, "lbs"),
  5864. name: "Feral",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/feral.svg"
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Meddling with Mortals",
  5873. height: math.unit(8 + 8/12, "feet")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(5, "meter")
  5878. },
  5879. {
  5880. name: "Macro",
  5881. height: math.unit(150, "meter"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Megamacro",
  5886. height: math.unit(278e6, "meter")
  5887. },
  5888. {
  5889. name: "Gigamacro",
  5890. height: math.unit(2e9, "meter")
  5891. },
  5892. {
  5893. name: "Teramacro",
  5894. height: math.unit(8e12, "meter")
  5895. },
  5896. {
  5897. name: "Devourer",
  5898. height: math.unit(14, "zettameters")
  5899. },
  5900. {
  5901. name: "Scarlet King",
  5902. height: math.unit(18, "yottameters")
  5903. },
  5904. {
  5905. name: "Void",
  5906. height: math.unit(1e88, "yottameters")
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5912. {
  5913. standing: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(180, "lbs"),
  5916. name: "Standing",
  5917. image: {
  5918. source: "./media/characters/zaakira/standing.svg",
  5919. extra: 1599/1504,
  5920. bottom: 39/1638
  5921. }
  5922. },
  5923. laying: {
  5924. height: math.unit(3.3, "feet"),
  5925. weight: math.unit(180, "lbs"),
  5926. name: "Laying",
  5927. image: {
  5928. source: "./media/characters/zaakira/laying.svg"
  5929. }
  5930. },
  5931. },
  5932. [
  5933. {
  5934. name: "Normal",
  5935. height: math.unit(12, "feet")
  5936. },
  5937. {
  5938. name: "Macro",
  5939. height: math.unit(279, "feet"),
  5940. default: true
  5941. }
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5946. {
  5947. femSfw: {
  5948. height: math.unit(8, "feet"),
  5949. weight: math.unit(350, "lb"),
  5950. name: "Fem",
  5951. image: {
  5952. source: "./media/characters/sigvald/fem-sfw.svg",
  5953. extra: 182 / 164,
  5954. bottom: 8.7 / 190.5
  5955. }
  5956. },
  5957. femNsfw: {
  5958. height: math.unit(8, "feet"),
  5959. weight: math.unit(350, "lb"),
  5960. name: "Fem (NSFW)",
  5961. image: {
  5962. source: "./media/characters/sigvald/fem-nsfw.svg",
  5963. extra: 182 / 164,
  5964. bottom: 8.7 / 190.5
  5965. }
  5966. },
  5967. maleNsfw: {
  5968. height: math.unit(8, "feet"),
  5969. weight: math.unit(350, "lb"),
  5970. name: "Male (NSFW)",
  5971. image: {
  5972. source: "./media/characters/sigvald/male-nsfw.svg",
  5973. extra: 182 / 164,
  5974. bottom: 8.7 / 190.5
  5975. }
  5976. },
  5977. hermNsfw: {
  5978. height: math.unit(8, "feet"),
  5979. weight: math.unit(350, "lb"),
  5980. name: "Herm (NSFW)",
  5981. image: {
  5982. source: "./media/characters/sigvald/herm-nsfw.svg",
  5983. extra: 182 / 164,
  5984. bottom: 8.7 / 190.5
  5985. }
  5986. },
  5987. dick: {
  5988. height: math.unit(2.36, "feet"),
  5989. name: "Dick",
  5990. image: {
  5991. source: "./media/characters/sigvald/dick.svg"
  5992. }
  5993. },
  5994. eye: {
  5995. height: math.unit(0.31, "feet"),
  5996. name: "Eye",
  5997. image: {
  5998. source: "./media/characters/sigvald/eye.svg"
  5999. }
  6000. },
  6001. mouth: {
  6002. height: math.unit(0.92, "feet"),
  6003. name: "Mouth",
  6004. image: {
  6005. source: "./media/characters/sigvald/mouth.svg"
  6006. }
  6007. },
  6008. paws: {
  6009. height: math.unit(2.2, "feet"),
  6010. name: "Paws",
  6011. image: {
  6012. source: "./media/characters/sigvald/paws.svg"
  6013. }
  6014. }
  6015. },
  6016. [
  6017. {
  6018. name: "Normal",
  6019. height: math.unit(8, "feet")
  6020. },
  6021. {
  6022. name: "Large",
  6023. height: math.unit(12, "feet")
  6024. },
  6025. {
  6026. name: "Larger",
  6027. height: math.unit(20, "feet")
  6028. },
  6029. {
  6030. name: "Macro",
  6031. height: math.unit(150, "feet")
  6032. },
  6033. {
  6034. name: "Macro+",
  6035. height: math.unit(200, "feet"),
  6036. default: true
  6037. },
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6042. {
  6043. side: {
  6044. height: math.unit(12, "feet"),
  6045. weight: math.unit(2000, "kg"),
  6046. name: "Side",
  6047. image: {
  6048. source: "./media/characters/scott/side.svg",
  6049. extra: 754 / 724,
  6050. bottom: 0.069
  6051. }
  6052. },
  6053. upright: {
  6054. height: math.unit(12, "feet"),
  6055. weight: math.unit(2000, "kg"),
  6056. name: "Upright",
  6057. image: {
  6058. source: "./media/characters/scott/upright.svg",
  6059. extra: 3881 / 3722,
  6060. bottom: 0.05
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(12, "feet"),
  6068. default: true
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6074. {
  6075. side: {
  6076. height: math.unit(8, "meters"),
  6077. weight: math.unit(84755, "lbs"),
  6078. name: "Side",
  6079. image: {
  6080. source: "./media/characters/tobias/side.svg",
  6081. extra: 1474 / 1096,
  6082. bottom: 38.9 / 1513.1235
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(8, "meters"),
  6090. default: true
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6096. {
  6097. front: {
  6098. height: math.unit(5.5, "feet"),
  6099. weight: math.unit(400, "lbs"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/kieran/front.svg",
  6103. extra: 2694 / 2364,
  6104. bottom: 217 / 2908
  6105. }
  6106. },
  6107. side: {
  6108. height: math.unit(5.5, "feet"),
  6109. weight: math.unit(400, "lbs"),
  6110. name: "Side",
  6111. image: {
  6112. source: "./media/characters/kieran/side.svg",
  6113. extra: 875 / 777,
  6114. bottom: 84.6 / 959
  6115. }
  6116. },
  6117. },
  6118. [
  6119. {
  6120. name: "Normal",
  6121. height: math.unit(5.5, "feet"),
  6122. default: true
  6123. },
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6128. {
  6129. side: {
  6130. height: math.unit(2, "meters"),
  6131. weight: math.unit(70, "kg"),
  6132. name: "Side",
  6133. image: {
  6134. source: "./media/characters/sanya/side.svg",
  6135. bottom: 0.02,
  6136. extra: 1.02
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Small",
  6143. height: math.unit(2, "meters")
  6144. },
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(3, "meters")
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(16, "meters"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(2, "meters"),
  6161. weight: math.unit(120, "kg"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/miranda/front.svg",
  6165. extra: 195 / 185,
  6166. bottom: 10.9 / 206.5
  6167. }
  6168. },
  6169. back: {
  6170. height: math.unit(2, "meters"),
  6171. weight: math.unit(120, "kg"),
  6172. name: "Back",
  6173. image: {
  6174. source: "./media/characters/miranda/back.svg",
  6175. extra: 201 / 193,
  6176. bottom: 2.3 / 203.7
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(10, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "James", species: ["deer"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(100, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/james/front.svg",
  6197. extra: 10 / 8.5
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(8.5, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6211. {
  6212. side: {
  6213. height: math.unit(9.5, "feet"),
  6214. weight: math.unit(2500, "lbs"),
  6215. name: "Side",
  6216. image: {
  6217. source: "./media/characters/heather/side.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(9.5, "feet"),
  6225. default: true
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6231. {
  6232. side: {
  6233. height: math.unit(6.5, "feet"),
  6234. weight: math.unit(400, "lbs"),
  6235. name: "Side",
  6236. image: {
  6237. source: "./media/characters/lukas/side.svg",
  6238. extra: 7.25 / 6.5
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6.5, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6252. {
  6253. side: {
  6254. height: math.unit(5, "feet"),
  6255. weight: math.unit(3000, "lbs"),
  6256. name: "Side",
  6257. image: {
  6258. source: "./media/characters/louise/side.svg"
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(5, "feet"),
  6266. default: true
  6267. }
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6272. {
  6273. side: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(150, "lbs"),
  6276. name: "Side",
  6277. image: {
  6278. source: "./media/characters/ramona/side.svg",
  6279. extra: 871/854,
  6280. bottom: 41/912
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(6 + 4/12, "feet")
  6288. },
  6289. {
  6290. name: "Minimacro",
  6291. height: math.unit(5.3, "meters"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(20, "stories")
  6297. },
  6298. {
  6299. name: "Macro+",
  6300. height: math.unit(50, "stories")
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6306. {
  6307. standing: {
  6308. height: math.unit(5.75, "feet"),
  6309. weight: math.unit(160, "lbs"),
  6310. name: "Standing",
  6311. image: {
  6312. source: "./media/characters/deerpuff/standing.svg",
  6313. extra: 682 / 624
  6314. }
  6315. },
  6316. sitting: {
  6317. height: math.unit(5.75 / 1.79, "feet"),
  6318. weight: math.unit(160, "lbs"),
  6319. name: "Sitting",
  6320. image: {
  6321. source: "./media/characters/deerpuff/sitting.svg",
  6322. bottom: 44 / 400,
  6323. extra: 1
  6324. }
  6325. },
  6326. taurLaying: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(400, "lbs"),
  6329. name: "Taur (Laying)",
  6330. image: {
  6331. source: "./media/characters/deerpuff/taur-laying.svg"
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Puffball",
  6338. height: math.unit(6, "inches")
  6339. },
  6340. {
  6341. name: "Normalpuff",
  6342. height: math.unit(5.75, "feet")
  6343. },
  6344. {
  6345. name: "Macropuff",
  6346. height: math.unit(1500, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Megapuff",
  6351. height: math.unit(500, "miles")
  6352. },
  6353. {
  6354. name: "Gigapuff",
  6355. height: math.unit(250000, "miles")
  6356. },
  6357. {
  6358. name: "Omegapuff",
  6359. height: math.unit(1000, "lightyears")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6365. {
  6366. stomping: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(170, "lbs"),
  6369. name: "Stomping",
  6370. image: {
  6371. source: "./media/characters/vivian/stomping.svg"
  6372. }
  6373. },
  6374. sitting: {
  6375. height: math.unit(6 / 1.75, "feet"),
  6376. weight: math.unit(170, "lbs"),
  6377. name: "Sitting",
  6378. image: {
  6379. source: "./media/characters/vivian/sitting.svg",
  6380. bottom: 1 / 6.4,
  6381. extra: 1,
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(7, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(10, "stories")
  6394. },
  6395. {
  6396. name: "Macro+",
  6397. height: math.unit(30, "stories")
  6398. },
  6399. {
  6400. name: "Megamacro",
  6401. height: math.unit(10, "miles")
  6402. },
  6403. {
  6404. name: "Megamacro+",
  6405. height: math.unit(2750000, "meters")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(160, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/prince/front.svg",
  6418. extra: 1938/1682,
  6419. bottom: 45/1983
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(160, "lbs"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/prince/back.svg",
  6428. extra: 1955/1726,
  6429. bottom: 6/1961
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(7.75, "feet"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Not cute",
  6441. height: math.unit(17, "feet")
  6442. },
  6443. {
  6444. name: "I said NOT",
  6445. height: math.unit(91, "feet")
  6446. },
  6447. {
  6448. name: "Please stop",
  6449. height: math.unit(560, "feet")
  6450. },
  6451. {
  6452. name: "What have you done",
  6453. height: math.unit(2200, "feet")
  6454. },
  6455. {
  6456. name: "Deer God",
  6457. height: math.unit(3.6, "miles")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6463. {
  6464. standing: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(300, "lbs"),
  6467. name: "Standing",
  6468. image: {
  6469. source: "./media/characters/psymon/standing.svg",
  6470. extra: 1888 / 1810,
  6471. bottom: 0.05
  6472. }
  6473. },
  6474. slithering: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(300, "lbs"),
  6477. name: "Slithering",
  6478. image: {
  6479. source: "./media/characters/psymon/slithering.svg",
  6480. extra: 1330 / 1224
  6481. }
  6482. },
  6483. slitheringAlt: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(300, "lbs"),
  6486. name: "Slithering (Alt)",
  6487. image: {
  6488. source: "./media/characters/psymon/slithering-alt.svg",
  6489. extra: 1330 / 1224
  6490. }
  6491. },
  6492. },
  6493. [
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(11.25, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Large",
  6501. height: math.unit(27, "feet")
  6502. },
  6503. {
  6504. name: "Giant",
  6505. height: math.unit(87, "feet")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(365, "feet")
  6510. },
  6511. {
  6512. name: "Megamacro",
  6513. height: math.unit(3, "miles")
  6514. },
  6515. {
  6516. name: "World Serpent",
  6517. height: math.unit(8000, "miles")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6523. {
  6524. front: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(180, "lbs"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/daimos/front.svg",
  6530. extra: 4160 / 3897,
  6531. bottom: 0.021
  6532. }
  6533. }
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(8, "feet"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Big Dog",
  6543. height: math.unit(22, "feet")
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(127, "feet")
  6548. },
  6549. {
  6550. name: "Megamacro",
  6551. height: math.unit(3600, "feet")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6557. {
  6558. side: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(180, "lbs"),
  6561. name: "Side",
  6562. image: {
  6563. source: "./media/characters/blake/side.svg",
  6564. extra: 1212 / 1120,
  6565. bottom: 0.05
  6566. }
  6567. },
  6568. crouched: {
  6569. height: math.unit(6 * 0.57, "feet"),
  6570. weight: math.unit(180, "lbs"),
  6571. name: "Crouched",
  6572. image: {
  6573. source: "./media/characters/blake/crouched.svg",
  6574. extra: 840 / 587,
  6575. bottom: 0.04
  6576. }
  6577. },
  6578. bent: {
  6579. height: math.unit(6 * 0.75, "feet"),
  6580. weight: math.unit(180, "lbs"),
  6581. name: "Bent",
  6582. image: {
  6583. source: "./media/characters/blake/bent.svg",
  6584. extra: 592 / 544,
  6585. bottom: 0.035
  6586. }
  6587. },
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(8 + 1 / 6, "feet"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Big Backside",
  6597. height: math.unit(37, "feet")
  6598. },
  6599. {
  6600. name: "Subway Shredder",
  6601. height: math.unit(72, "feet")
  6602. },
  6603. {
  6604. name: "City Carver",
  6605. height: math.unit(1675, "feet")
  6606. },
  6607. {
  6608. name: "Tectonic Tweaker",
  6609. height: math.unit(2300, "miles")
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(6, "feet"),
  6618. weight: math.unit(180, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/guisetto/front.svg",
  6622. extra: 856 / 817,
  6623. bottom: 0.06
  6624. }
  6625. },
  6626. airborne: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(180, "lbs"),
  6629. name: "Airborne",
  6630. image: {
  6631. source: "./media/characters/guisetto/airborne.svg",
  6632. extra: 584 / 525
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(10 + 11 / 12, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Large",
  6644. height: math.unit(35, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(475, "feet")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(180, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/luxor/front.svg",
  6661. extra: 2940 / 2152
  6662. }
  6663. },
  6664. back: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(180, "lbs"),
  6667. name: "Back",
  6668. image: {
  6669. source: "./media/characters/luxor/back.svg",
  6670. extra: 1083 / 960
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(5 + 5 / 6, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Lamp",
  6682. height: math.unit(50, "feet")
  6683. },
  6684. {
  6685. name: "Lämp",
  6686. height: math.unit(300, "feet")
  6687. },
  6688. {
  6689. name: "The sun is a lamp",
  6690. height: math.unit(250000, "miles")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(50, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/huoyan/front.svg"
  6703. }
  6704. },
  6705. side: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(180, "lbs"),
  6708. name: "Side",
  6709. image: {
  6710. source: "./media/characters/huoyan/side.svg"
  6711. }
  6712. },
  6713. },
  6714. [
  6715. {
  6716. name: "Chef",
  6717. height: math.unit(9, "feet")
  6718. },
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(65, "feet"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(780, "feet")
  6727. },
  6728. {
  6729. name: "Flaming Mountain",
  6730. height: math.unit(4.8, "miles")
  6731. },
  6732. {
  6733. name: "Celestial",
  6734. height: math.unit(765000, "miles")
  6735. },
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(5 + 3 / 4, "feet"),
  6743. weight: math.unit(120, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/tails/front.svg"
  6747. }
  6748. }
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(5 + 3 / 4, "feet"),
  6754. default: true
  6755. }
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(4, "feet"),
  6763. weight: math.unit(50, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/rainy/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(800, "feet"),
  6774. default: true
  6775. }
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6780. {
  6781. front: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(150, "lbs"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/rainier/front.svg"
  6787. }
  6788. }
  6789. },
  6790. [
  6791. {
  6792. name: "Micro",
  6793. height: math.unit(2, "mm"),
  6794. default: true
  6795. }
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(8 + 4/12, "feet"),
  6803. weight: math.unit(450, "kilograms"),
  6804. volume: math.unit(5, "cups"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/andy-renard/front.svg",
  6808. extra: 1839/1726,
  6809. bottom: 134/1973
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(8 + 4/12, "feet"),
  6814. weight: math.unit(450, "kilograms"),
  6815. volume: math.unit(5, "cups"),
  6816. name: "Back",
  6817. image: {
  6818. source: "./media/characters/andy-renard/back.svg",
  6819. extra: 1838/1710,
  6820. bottom: 105/1943
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Tall",
  6827. height: math.unit(8 + 4/12, "feet")
  6828. },
  6829. {
  6830. name: "Mini Macro",
  6831. height: math.unit(15, "feet"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(100, "feet")
  6837. },
  6838. {
  6839. name: "Mega Macro",
  6840. height: math.unit(1000, "feet")
  6841. },
  6842. {
  6843. name: "Giga Macro",
  6844. height: math.unit(10, "miles")
  6845. },
  6846. {
  6847. name: "God Macro",
  6848. height: math.unit(1, "multiverse")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(210, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/cimmaron/front-sfw.svg",
  6861. extra: 701 / 676,
  6862. bottom: 0.046
  6863. }
  6864. },
  6865. back: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(210, "lbs"),
  6868. name: "Back",
  6869. image: {
  6870. source: "./media/characters/cimmaron/back-sfw.svg",
  6871. extra: 701 / 676,
  6872. bottom: 0.046
  6873. }
  6874. },
  6875. frontNsfw: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(210, "lbs"),
  6878. name: "Front (NSFW)",
  6879. image: {
  6880. source: "./media/characters/cimmaron/front-nsfw.svg",
  6881. extra: 701 / 676,
  6882. bottom: 0.046
  6883. }
  6884. },
  6885. backNsfw: {
  6886. height: math.unit(6, "feet"),
  6887. weight: math.unit(210, "lbs"),
  6888. name: "Back (NSFW)",
  6889. image: {
  6890. source: "./media/characters/cimmaron/back-nsfw.svg",
  6891. extra: 701 / 676,
  6892. bottom: 0.046
  6893. }
  6894. },
  6895. dick: {
  6896. height: math.unit(1.714, "feet"),
  6897. name: "Dick",
  6898. image: {
  6899. source: "./media/characters/cimmaron/dick.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(6, "feet"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro Mayor",
  6911. height: math.unit(350, "meters")
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(200, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/akari/front.svg",
  6924. extra: 962 / 901,
  6925. bottom: 0.04
  6926. }
  6927. }
  6928. },
  6929. [
  6930. {
  6931. name: "Micro",
  6932. height: math.unit(5, "inches"),
  6933. default: true
  6934. },
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(7, "feet")
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6943. {
  6944. front: {
  6945. height: math.unit(6, "feet"),
  6946. weight: math.unit(140, "lbs"),
  6947. name: "Front",
  6948. image: {
  6949. source: "./media/characters/cynosura/front.svg",
  6950. extra: 437/410,
  6951. bottom: 9/446
  6952. }
  6953. },
  6954. back: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(140, "lbs"),
  6957. name: "Back",
  6958. image: {
  6959. source: "./media/characters/cynosura/back.svg",
  6960. extra: 1304/1160,
  6961. bottom: 71/1375
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Micro",
  6968. height: math.unit(4, "inches")
  6969. },
  6970. {
  6971. name: "Normal",
  6972. height: math.unit(5.75, "feet"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Tall",
  6977. height: math.unit(10, "feet")
  6978. },
  6979. {
  6980. name: "Big",
  6981. height: math.unit(20, "feet")
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(50, "feet")
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6991. {
  6992. front: {
  6993. height: math.unit(13 + 2/12, "feet"),
  6994. weight: math.unit(800, "kg"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/gin/front.svg",
  6998. extra: 1312/1191,
  6999. bottom: 45/1357
  7000. }
  7001. },
  7002. mouth: {
  7003. height: math.unit(2.39 * 1.8, "feet"),
  7004. name: "Mouth",
  7005. image: {
  7006. source: "./media/characters/gin/mouth.svg"
  7007. }
  7008. },
  7009. hand: {
  7010. height: math.unit(1.57 * 2.19, "feet"),
  7011. name: "Hand",
  7012. image: {
  7013. source: "./media/characters/gin/hand.svg"
  7014. }
  7015. },
  7016. foot: {
  7017. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7018. name: "Foot",
  7019. image: {
  7020. source: "./media/characters/gin/foot.svg"
  7021. }
  7022. },
  7023. sole: {
  7024. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7025. name: "Sole",
  7026. image: {
  7027. source: "./media/characters/gin/sole.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Very Small",
  7034. height: math.unit(13 + 2 / 12, "feet")
  7035. },
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(600, "miles")
  7039. },
  7040. {
  7041. name: "Regular",
  7042. height: math.unit(20, "earths"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(2.2, "solarradii")
  7048. },
  7049. {
  7050. name: "Teramacro",
  7051. height: math.unit(1.2, "galaxies")
  7052. },
  7053. {
  7054. name: "Omegamacro",
  7055. height: math.unit(200, "universes")
  7056. },
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(6 + 1 / 6, "feet"),
  7064. weight: math.unit(178, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/guy/front.svg"
  7068. }
  7069. }
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(6 + 1 / 6, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Large",
  7079. height: math.unit(25 + 7 / 12, "feet")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(60 + 9 / 12, "feet")
  7084. },
  7085. {
  7086. name: "Macro+",
  7087. height: math.unit(246, "feet")
  7088. },
  7089. {
  7090. name: "Macro++",
  7091. height: math.unit(878, "feet")
  7092. }
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(9, "feet"),
  7100. weight: math.unit(800, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/tiberius/front.svg",
  7104. extra: 2295 / 2071
  7105. }
  7106. },
  7107. back: {
  7108. height: math.unit(9, "feet"),
  7109. weight: math.unit(800, "lbs"),
  7110. name: "Back",
  7111. image: {
  7112. source: "./media/characters/tiberius/back.svg",
  7113. extra: 2373 / 2160
  7114. }
  7115. },
  7116. },
  7117. [
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(9, "feet"),
  7121. default: true
  7122. }
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(600, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/surgo/front.svg",
  7134. extra: 3591 / 2227
  7135. }
  7136. },
  7137. back: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(600, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/surgo/back.svg",
  7143. extra: 3557 / 2228
  7144. }
  7145. },
  7146. laying: {
  7147. height: math.unit(6 * 0.85, "feet"),
  7148. weight: math.unit(600, "lbs"),
  7149. name: "Laying",
  7150. image: {
  7151. source: "./media/characters/surgo/laying.svg"
  7152. }
  7153. },
  7154. },
  7155. [
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(6, "feet"),
  7159. default: true
  7160. }
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7165. {
  7166. side: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(150, "lbs"),
  7169. name: "Side",
  7170. image: {
  7171. source: "./media/characters/cibus/side.svg",
  7172. extra: 800 / 400
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(6, "feet"),
  7180. default: true
  7181. }
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(240, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/nibbles/front.svg"
  7193. }
  7194. },
  7195. side: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(240, "lbs"),
  7198. name: "Side",
  7199. image: {
  7200. source: "./media/characters/nibbles/side.svg"
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(9, "feet"),
  7208. default: true
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7214. {
  7215. side: {
  7216. height: math.unit(5 + 1 / 6, "feet"),
  7217. weight: math.unit(130, "lbs"),
  7218. name: "Side",
  7219. image: {
  7220. source: "./media/characters/rikky/side.svg",
  7221. extra: 851 / 801
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5 + 1 / 6, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(152, "feet"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(7, "miles")
  7238. }
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7243. {
  7244. side: {
  7245. height: math.unit(370, "cm"),
  7246. weight: math.unit(350, "lbs"),
  7247. name: "Side",
  7248. image: {
  7249. source: "./media/characters/malfressa/side.svg"
  7250. }
  7251. },
  7252. walking: {
  7253. height: math.unit(370, "cm"),
  7254. weight: math.unit(350, "lbs"),
  7255. name: "Walking",
  7256. image: {
  7257. source: "./media/characters/malfressa/walking.svg"
  7258. }
  7259. },
  7260. feral: {
  7261. height: math.unit(2500, "cm"),
  7262. weight: math.unit(100000, "lbs"),
  7263. name: "Feral",
  7264. image: {
  7265. source: "./media/characters/malfressa/feral.svg",
  7266. extra: 2108 / 837,
  7267. bottom: 0.02
  7268. }
  7269. },
  7270. },
  7271. [
  7272. {
  7273. name: "Normal",
  7274. height: math.unit(370, "cm")
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(300, "meters"),
  7279. default: true
  7280. }
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(60, "kg"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/jaro/front.svg",
  7292. extra: 845/817,
  7293. bottom: 45/890
  7294. }
  7295. },
  7296. back: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(60, "kg"),
  7299. name: "Back",
  7300. image: {
  7301. source: "./media/characters/jaro/back.svg",
  7302. extra: 847/817,
  7303. bottom: 34/881
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Micro",
  7310. height: math.unit(7, "inches")
  7311. },
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(5.5, "feet"),
  7315. default: true
  7316. },
  7317. {
  7318. name: "Minimacro",
  7319. height: math.unit(20, "feet")
  7320. },
  7321. {
  7322. name: "Macro",
  7323. height: math.unit(200, "meters")
  7324. }
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(195, "lb"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/rogue/front.svg"
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(90, "feet"),
  7343. default: true
  7344. },
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7349. {
  7350. standing: {
  7351. height: math.unit(5 + 8 / 12, "feet"),
  7352. weight: math.unit(140, "lb"),
  7353. name: "Standing",
  7354. image: {
  7355. source: "./media/characters/piper/standing.svg",
  7356. extra: 1440/1284,
  7357. bottom: 66/1506
  7358. }
  7359. },
  7360. running: {
  7361. height: math.unit(5 + 8 / 12, "feet"),
  7362. weight: math.unit(140, "lb"),
  7363. name: "Running",
  7364. image: {
  7365. source: "./media/characters/piper/running.svg",
  7366. extra: 3948/3655,
  7367. bottom: 0/3948
  7368. }
  7369. },
  7370. sole: {
  7371. height: math.unit(0.81, "feet"),
  7372. weight: math.unit(2, "kg"),
  7373. name: "Sole",
  7374. image: {
  7375. source: "./media/characters/piper/sole.svg"
  7376. }
  7377. },
  7378. nipple: {
  7379. height: math.unit(0.25, "feet"),
  7380. weight: math.unit(1.5, "lb"),
  7381. name: "Nipple",
  7382. image: {
  7383. source: "./media/characters/piper/nipple.svg"
  7384. }
  7385. },
  7386. head: {
  7387. height: math.unit(1.1, "feet"),
  7388. name: "Head",
  7389. image: {
  7390. source: "./media/characters/piper/head.svg"
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Micro",
  7397. height: math.unit(2, "inches")
  7398. },
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(5 + 8 / 12, "feet")
  7402. },
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(250, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Megamacro",
  7410. height: math.unit(7, "miles")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7416. {
  7417. front: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(220, "lb"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/gemini/front.svg"
  7423. }
  7424. },
  7425. back: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(220, "lb"),
  7428. name: "Back",
  7429. image: {
  7430. source: "./media/characters/gemini/back.svg"
  7431. }
  7432. },
  7433. kneeling: {
  7434. height: math.unit(6 / 1.5, "feet"),
  7435. weight: math.unit(220, "lb"),
  7436. name: "Kneeling",
  7437. image: {
  7438. source: "./media/characters/gemini/kneeling.svg",
  7439. bottom: 0.02
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(300, "meters"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Megamacro",
  7451. height: math.unit(6900, "meters")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7457. {
  7458. anthro: {
  7459. height: math.unit(2.35, "meters"),
  7460. weight: math.unit(73, "kg"),
  7461. name: "Anthro",
  7462. image: {
  7463. source: "./media/characters/alicia/anthro.svg",
  7464. extra: 2571 / 2385,
  7465. bottom: 75 / 2648
  7466. }
  7467. },
  7468. paw: {
  7469. height: math.unit(1.32, "feet"),
  7470. name: "Paw",
  7471. image: {
  7472. source: "./media/characters/alicia/paw.svg"
  7473. }
  7474. },
  7475. feral: {
  7476. height: math.unit(1.69, "meters"),
  7477. weight: math.unit(73, "kg"),
  7478. name: "Feral",
  7479. image: {
  7480. source: "./media/characters/alicia/feral.svg",
  7481. extra: 2123 / 1715,
  7482. bottom: 222 / 2349
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(2.35, "meters")
  7490. },
  7491. {
  7492. name: "Macro",
  7493. height: math.unit(60, "meters"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(10000, "kilometers")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(7, "feet"),
  7507. weight: math.unit(250, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/archy/front.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Micro",
  7517. height: math.unit(1, "inch")
  7518. },
  7519. {
  7520. name: "Shorty",
  7521. height: math.unit(5, "feet")
  7522. },
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(7, "feet")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(600, "meters"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Megamacro",
  7534. height: math.unit(1, "mile")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(1.65, "meters"),
  7543. weight: math.unit(74, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/berri/front.svg",
  7547. extra: 857 / 837,
  7548. bottom: 18 / 877
  7549. }
  7550. },
  7551. bum: {
  7552. height: math.unit(1.46, "feet"),
  7553. name: "Bum",
  7554. image: {
  7555. source: "./media/characters/berri/bum.svg"
  7556. }
  7557. },
  7558. mouth: {
  7559. height: math.unit(0.44, "feet"),
  7560. name: "Mouth",
  7561. image: {
  7562. source: "./media/characters/berri/mouth.svg"
  7563. }
  7564. },
  7565. paw: {
  7566. height: math.unit(0.826, "feet"),
  7567. name: "Paw",
  7568. image: {
  7569. source: "./media/characters/berri/paw.svg"
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.65, "meters")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(60, "m"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(9.213, "km")
  7586. },
  7587. {
  7588. name: "Planet Eater",
  7589. height: math.unit(489, "megameters")
  7590. },
  7591. {
  7592. name: "Teramacro",
  7593. height: math.unit(2471635000000, "meters")
  7594. },
  7595. {
  7596. name: "Examacro",
  7597. height: math.unit(8.0624e+26, "meters")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(1.72, "meters"),
  7606. weight: math.unit(68, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/lexi/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Very Smol",
  7616. height: math.unit(10, "mm")
  7617. },
  7618. {
  7619. name: "Micro",
  7620. height: math.unit(6.8, "cm"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(1.72, "m")
  7626. }
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(1.69, "meters"),
  7634. weight: math.unit(68, "kg"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/martin/front.svg",
  7638. extra: 596 / 581
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Micro",
  7645. height: math.unit(6.85, "cm"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(1.69, "m")
  7651. }
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(1.69, "meters"),
  7659. weight: math.unit(68, "kg"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/juno/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(7, "cm")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(1.89, "m")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(353, "meters"),
  7678. default: true
  7679. }
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(1.93, "meters"),
  7687. weight: math.unit(83, "kg"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/samantha/front.svg"
  7691. }
  7692. },
  7693. frontClothed: {
  7694. height: math.unit(1.93, "meters"),
  7695. weight: math.unit(83, "kg"),
  7696. name: "Front (Clothed)",
  7697. image: {
  7698. source: "./media/characters/samantha/front-clothed.svg"
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(1.93, "meters"),
  7703. weight: math.unit(83, "kg"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/samantha/back.svg"
  7707. }
  7708. },
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(1.93, "m")
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(74, "meters"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Macro+",
  7722. height: math.unit(223, "meters"),
  7723. },
  7724. {
  7725. name: "Megamacro",
  7726. height: math.unit(8381, "meters"),
  7727. },
  7728. {
  7729. name: "Megamacro+",
  7730. height: math.unit(12000, "kilometers")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(1.92, "meters"),
  7739. weight: math.unit(80, "kg"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/dr-clay/front.svg"
  7743. }
  7744. },
  7745. frontClothed: {
  7746. height: math.unit(1.92, "meters"),
  7747. weight: math.unit(80, "kg"),
  7748. name: "Front (Clothed)",
  7749. image: {
  7750. source: "./media/characters/dr-clay/front-clothed.svg"
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(1.92, "m")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(214, "meters"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro+",
  7766. height: math.unit(12.237, "meters"),
  7767. },
  7768. {
  7769. name: "Megamacro",
  7770. height: math.unit(557, "megameters"),
  7771. },
  7772. {
  7773. name: "Unimaginable",
  7774. height: math.unit(120e9, "lightyears")
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(2, "meters"),
  7783. weight: math.unit(80, "kg"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7787. }
  7788. }
  7789. },
  7790. [
  7791. {
  7792. name: "Teramacro",
  7793. height: math.unit(500000, "lightyears"),
  7794. default: true
  7795. },
  7796. ]
  7797. ))
  7798. characterMakers.push(() => makeCharacter(
  7799. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7800. {
  7801. crux: {
  7802. height: math.unit(2, "meters"),
  7803. weight: math.unit(150, "kg"),
  7804. name: "Crux",
  7805. image: {
  7806. source: "./media/characters/vemus/crux.svg",
  7807. extra: 1074/936,
  7808. bottom: 23/1097
  7809. }
  7810. },
  7811. skunkTanuki: {
  7812. height: math.unit(2, "meters"),
  7813. weight: math.unit(150, "kg"),
  7814. name: "Skunk-Tanuki",
  7815. image: {
  7816. source: "./media/characters/vemus/skunk-tanuki.svg",
  7817. extra: 926/893,
  7818. bottom: 20/946
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(4, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Big",
  7830. height: math.unit(8, "meters")
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(100, "meters")
  7835. },
  7836. {
  7837. name: "Macro+",
  7838. height: math.unit(1500, "meters")
  7839. },
  7840. {
  7841. name: "Stellar",
  7842. height: math.unit(14e8, "meters")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(2, "meters"),
  7851. weight: math.unit(70, "kg"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/beherit/front.svg",
  7855. extra: 1234/1109,
  7856. bottom: 55/1289
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(6, "feet")
  7864. },
  7865. {
  7866. name: "Lorg",
  7867. height: math.unit(25, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Lorger",
  7872. height: math.unit(75, "feet")
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(200, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(2, "meters"),
  7885. weight: math.unit(150, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/everett/front.svg",
  7889. extra: 1017/866,
  7890. bottom: 86/1103
  7891. }
  7892. },
  7893. paw: {
  7894. height: math.unit(2 / 3.6, "meters"),
  7895. name: "Paw",
  7896. image: {
  7897. source: "./media/characters/everett/paw.svg"
  7898. }
  7899. },
  7900. },
  7901. [
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(15, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Lorg",
  7909. height: math.unit(70, "feet"),
  7910. default: true
  7911. },
  7912. {
  7913. name: "Lorger",
  7914. height: math.unit(250, "feet")
  7915. },
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(500, "meters")
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(2, "meters"),
  7927. weight: math.unit(86, "kg"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/rose/front.svg",
  7931. extra: 1785/1636,
  7932. bottom: 30/1815
  7933. },
  7934. form: "liom",
  7935. default: true
  7936. },
  7937. frontSporty: {
  7938. height: math.unit(2, "meters"),
  7939. weight: math.unit(86, "kg"),
  7940. name: "Front (Sporty)",
  7941. image: {
  7942. source: "./media/characters/rose/front-sporty.svg",
  7943. extra: 350/335,
  7944. bottom: 10/360
  7945. },
  7946. form: "liom"
  7947. },
  7948. frontAlt: {
  7949. height: math.unit(1.6, "meters"),
  7950. weight: math.unit(86, "kg"),
  7951. name: "Front (Alt)",
  7952. image: {
  7953. source: "./media/characters/rose/front-alt.svg",
  7954. extra: 299/283,
  7955. bottom: 3/302
  7956. },
  7957. form: "liom"
  7958. },
  7959. plush: {
  7960. height: math.unit(2, "meters"),
  7961. weight: math.unit(86/3, "kg"),
  7962. name: "Plush",
  7963. image: {
  7964. source: "./media/characters/rose/plush.svg",
  7965. extra: 361/337,
  7966. bottom: 11/372
  7967. },
  7968. form: "plush",
  7969. default: true
  7970. },
  7971. faeStanding: {
  7972. height: math.unit(10, "cm"),
  7973. weight: math.unit(10, "grams"),
  7974. name: "Standing",
  7975. image: {
  7976. source: "./media/characters/rose/fae-standing.svg",
  7977. extra: 1189/1060,
  7978. bottom: 27/1216
  7979. },
  7980. form: "fae",
  7981. default: true
  7982. },
  7983. faeSitting: {
  7984. height: math.unit(5, "cm"),
  7985. weight: math.unit(10, "grams"),
  7986. name: "Sitting",
  7987. image: {
  7988. source: "./media/characters/rose/fae-sitting.svg",
  7989. extra: 737/577,
  7990. bottom: 356/1093
  7991. },
  7992. form: "fae"
  7993. },
  7994. faePaw: {
  7995. height: math.unit(1.35, "cm"),
  7996. name: "Paw",
  7997. image: {
  7998. source: "./media/characters/rose/fae-paw.svg"
  7999. },
  8000. form: "fae"
  8001. },
  8002. },
  8003. [
  8004. {
  8005. name: "True Micro",
  8006. height: math.unit(9, "cm"),
  8007. form: "liom"
  8008. },
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(16, "cm"),
  8012. form: "liom"
  8013. },
  8014. {
  8015. name: "Normal",
  8016. height: math.unit(1.85, "meters"),
  8017. default: true,
  8018. form: "liom"
  8019. },
  8020. {
  8021. name: "Mini-Macro",
  8022. height: math.unit(5, "meters"),
  8023. form: "liom"
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(15, "meters"),
  8028. form: "liom"
  8029. },
  8030. {
  8031. name: "True Macro",
  8032. height: math.unit(40, "meters"),
  8033. form: "liom"
  8034. },
  8035. {
  8036. name: "City Scale",
  8037. height: math.unit(1, "km"),
  8038. form: "liom"
  8039. },
  8040. {
  8041. name: "Plushie",
  8042. height: math.unit(9, "cm"),
  8043. form: "plush",
  8044. default: true
  8045. },
  8046. {
  8047. name: "Fae",
  8048. height: math.unit(10, "cm"),
  8049. form: "fae",
  8050. default: true
  8051. },
  8052. ],
  8053. {
  8054. "liom": {
  8055. name: "Liom"
  8056. },
  8057. "plush": {
  8058. name: "Plush"
  8059. },
  8060. "fae": {
  8061. name: "Fae Fox",
  8062. default: true
  8063. }
  8064. }
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(2, "meters"),
  8071. weight: math.unit(350, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/regal/front.svg"
  8075. }
  8076. },
  8077. back: {
  8078. height: math.unit(2, "meters"),
  8079. weight: math.unit(350, "lbs"),
  8080. name: "Back",
  8081. image: {
  8082. source: "./media/characters/regal/back.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(350, "feet"),
  8090. default: true
  8091. }
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(4 + 11 / 12, "feet"),
  8099. weight: math.unit(100, "lbs"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/opal/front.svg"
  8103. }
  8104. },
  8105. frontAlt: {
  8106. height: math.unit(4 + 11 / 12, "feet"),
  8107. weight: math.unit(100, "lbs"),
  8108. name: "Front (Alt)",
  8109. image: {
  8110. source: "./media/characters/opal/front-alt.svg"
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Small",
  8117. height: math.unit(4 + 11 / 12, "feet")
  8118. },
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(20, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(120, "feet")
  8127. },
  8128. {
  8129. name: "Megamacro",
  8130. height: math.unit(80, "miles")
  8131. },
  8132. {
  8133. name: "True Size",
  8134. height: math.unit(100000, "lightyears")
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(200, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/vector-wuff/front.svg"
  8147. }
  8148. }
  8149. },
  8150. [
  8151. {
  8152. name: "Normal",
  8153. height: math.unit(2.8, "meters")
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(450, "meters"),
  8158. default: true
  8159. },
  8160. {
  8161. name: "Megamacro",
  8162. height: math.unit(15, "kilometers")
  8163. }
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(256, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/dannik/front.svg"
  8175. }
  8176. }
  8177. },
  8178. [
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(69.57, "meters"),
  8182. default: true
  8183. },
  8184. ]
  8185. ))
  8186. characterMakers.push(() => makeCharacter(
  8187. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8188. {
  8189. front: {
  8190. height: math.unit(6, "feet"),
  8191. weight: math.unit(120, "lbs"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/azura-saharah/front.svg"
  8195. }
  8196. },
  8197. back: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(120, "lbs"),
  8200. name: "Back",
  8201. image: {
  8202. source: "./media/characters/azura-saharah/back.svg"
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(100, "feet"),
  8210. default: true
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8216. {
  8217. side: {
  8218. height: math.unit(5 + 4 / 12, "feet"),
  8219. weight: math.unit(163, "lbs"),
  8220. name: "Side",
  8221. image: {
  8222. source: "./media/characters/kennedy/side.svg"
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Standard Doggo",
  8229. height: math.unit(5 + 4 / 12, "feet")
  8230. },
  8231. {
  8232. name: "Big Doggo",
  8233. height: math.unit(25 + 3 / 12, "feet"),
  8234. default: true
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(5 + 5/12, "feet"),
  8243. weight: math.unit(100, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/odios-de-lunar/front.svg",
  8247. extra: 1468/1323,
  8248. bottom: 22/1490
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Micro",
  8255. height: math.unit(3, "inches")
  8256. },
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(5.5, "feet"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(100, "feet")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8270. {
  8271. back: {
  8272. height: math.unit(6, "feet"),
  8273. weight: math.unit(220, "lbs"),
  8274. name: "Back",
  8275. image: {
  8276. source: "./media/characters/mandake/back.svg"
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(7, "feet"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(78, "feet")
  8289. },
  8290. {
  8291. name: "Macro+",
  8292. height: math.unit(300, "meters")
  8293. },
  8294. {
  8295. name: "Macro++",
  8296. height: math.unit(2400, "feet")
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(5167, "meters")
  8301. },
  8302. {
  8303. name: "Gigamacro",
  8304. height: math.unit(41769, "miles")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(120, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/yozey/front.svg"
  8317. }
  8318. },
  8319. frontAlt: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Front (Alt)",
  8323. image: {
  8324. source: "./media/characters/yozey/front-alt.svg"
  8325. }
  8326. },
  8327. side: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(120, "lbs"),
  8330. name: "Side",
  8331. image: {
  8332. source: "./media/characters/yozey/side.svg"
  8333. }
  8334. },
  8335. },
  8336. [
  8337. {
  8338. name: "Micro",
  8339. height: math.unit(3, "inches"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Normal",
  8344. height: math.unit(6, "feet")
  8345. }
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(103, "lbs"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/valeska-voss/front.svg"
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Mini-Sized Sub",
  8363. height: math.unit(3.1, "inches")
  8364. },
  8365. {
  8366. name: "Mid-Sized Sub",
  8367. height: math.unit(6.2, "inches")
  8368. },
  8369. {
  8370. name: "Full-Sized Sub",
  8371. height: math.unit(9.3, "inches")
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 2 / 12, "foot"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(160, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/gene-zeta/front.svg",
  8389. extra: 3006 / 2826,
  8390. bottom: 182 / 3188
  8391. }
  8392. }
  8393. },
  8394. [
  8395. {
  8396. name: "Micro",
  8397. height: math.unit(6, "inches")
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(5 + 11 / 12, "foot"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(140, "feet")
  8407. },
  8408. {
  8409. name: "Supercharged",
  8410. height: math.unit(2500, "feet")
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(350, "lbs"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/razinox/front.svg",
  8423. extra: 1686 / 1548,
  8424. bottom: 28.2 / 1868
  8425. }
  8426. },
  8427. back: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(350, "lbs"),
  8430. name: "Back",
  8431. image: {
  8432. source: "./media/characters/razinox/back.svg",
  8433. extra: 1660 / 1590,
  8434. bottom: 15 / 1665
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(10 + 8 / 12, "foot")
  8442. },
  8443. {
  8444. name: "Minimacro",
  8445. height: math.unit(15, "foot")
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(60, "foot"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Megamacro",
  8454. height: math.unit(5, "miles")
  8455. },
  8456. {
  8457. name: "Gigamacro",
  8458. height: math.unit(6000, "miles")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(6, "feet"),
  8467. weight: math.unit(150, "lbs"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/cobalt/front.svg"
  8471. }
  8472. }
  8473. },
  8474. [
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(8 + 1 / 12, "foot")
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(111, "foot"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Supracosmic",
  8486. height: math.unit(1e42, "feet")
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(5, "inches"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/amanda/front.svg",
  8498. extra: 926/791,
  8499. bottom: 38/964
  8500. }
  8501. },
  8502. back: {
  8503. height: math.unit(5, "inches"),
  8504. name: "Back",
  8505. image: {
  8506. source: "./media/characters/amanda/back.svg",
  8507. extra: 909/805,
  8508. bottom: 43/952
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Micro",
  8515. height: math.unit(5, "inches"),
  8516. default: true
  8517. },
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(2.75, "meters"),
  8525. weight: math.unit(1200, "lb"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/teal/front.svg",
  8529. extra: 2463 / 2320,
  8530. bottom: 166 / 2629
  8531. }
  8532. },
  8533. back: {
  8534. height: math.unit(2.75, "meters"),
  8535. weight: math.unit(1200, "lb"),
  8536. name: "Back",
  8537. image: {
  8538. source: "./media/characters/teal/back.svg",
  8539. extra: 2580 / 2489,
  8540. bottom: 151 / 2731
  8541. }
  8542. },
  8543. sitting: {
  8544. height: math.unit(1.9, "meters"),
  8545. weight: math.unit(1200, "lb"),
  8546. name: "Sitting",
  8547. image: {
  8548. source: "./media/characters/teal/sitting.svg",
  8549. extra: 623 / 590,
  8550. bottom: 121 / 744
  8551. }
  8552. },
  8553. standing: {
  8554. height: math.unit(2.75, "meters"),
  8555. weight: math.unit(1200, "lb"),
  8556. name: "Standing",
  8557. image: {
  8558. source: "./media/characters/teal/standing.svg",
  8559. extra: 923 / 893,
  8560. bottom: 60 / 983
  8561. }
  8562. },
  8563. stretching: {
  8564. height: math.unit(3.65, "meters"),
  8565. weight: math.unit(1200, "lb"),
  8566. name: "Stretching",
  8567. image: {
  8568. source: "./media/characters/teal/stretching.svg",
  8569. extra: 1276 / 1244,
  8570. bottom: 0 / 1276
  8571. }
  8572. },
  8573. legged: {
  8574. height: math.unit(1.3, "meters"),
  8575. weight: math.unit(100, "lb"),
  8576. name: "Legged",
  8577. image: {
  8578. source: "./media/characters/teal/legged.svg",
  8579. extra: 462 / 437,
  8580. bottom: 24 / 486
  8581. }
  8582. },
  8583. naga: {
  8584. height: math.unit(5.4, "meters"),
  8585. weight: math.unit(4000, "lb"),
  8586. name: "Naga",
  8587. image: {
  8588. source: "./media/characters/teal/naga.svg",
  8589. extra: 1902 / 1858,
  8590. bottom: 0 / 1902
  8591. }
  8592. },
  8593. hand: {
  8594. height: math.unit(0.52, "meters"),
  8595. name: "Hand",
  8596. image: {
  8597. source: "./media/characters/teal/hand.svg"
  8598. }
  8599. },
  8600. maw: {
  8601. height: math.unit(0.43, "meters"),
  8602. name: "Maw",
  8603. image: {
  8604. source: "./media/characters/teal/maw.svg"
  8605. }
  8606. },
  8607. slit: {
  8608. height: math.unit(0.25, "meters"),
  8609. name: "Slit",
  8610. image: {
  8611. source: "./media/characters/teal/slit.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(2.75, "meters"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(300, "feet")
  8624. },
  8625. {
  8626. name: "Macro+",
  8627. height: math.unit(2000, "feet")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8633. {
  8634. frontCat: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(180, "lbs"),
  8637. name: "Front (Cat)",
  8638. image: {
  8639. source: "./media/characters/ravin-amulet/front-cat.svg"
  8640. }
  8641. },
  8642. frontCatAlt: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(180, "lbs"),
  8645. name: "Front (Alt, Cat)",
  8646. image: {
  8647. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8648. }
  8649. },
  8650. frontWerewolf: {
  8651. height: math.unit(6 * 1.2, "feet"),
  8652. weight: math.unit(225, "lbs"),
  8653. name: "Front (Werewolf)",
  8654. image: {
  8655. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8656. }
  8657. },
  8658. backWerewolf: {
  8659. height: math.unit(6 * 1.2, "feet"),
  8660. weight: math.unit(225, "lbs"),
  8661. name: "Back (Werewolf)",
  8662. image: {
  8663. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Nano",
  8670. height: math.unit(1, "micrometer")
  8671. },
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(1, "inch")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(6, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(60, "feet")
  8684. }
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(165, "lbs"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/fluoresce/front.svg"
  8696. }
  8697. }
  8698. },
  8699. [
  8700. {
  8701. name: "Micro",
  8702. height: math.unit(6, "cm")
  8703. },
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 7 / 12, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Macro",
  8711. height: math.unit(56, "feet")
  8712. },
  8713. {
  8714. name: "Megamacro",
  8715. height: math.unit(1.9, "miles")
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(9 + 6 / 12, "feet"),
  8724. weight: math.unit(523, "lbs"),
  8725. name: "Side",
  8726. image: {
  8727. source: "./media/characters/aurora/side.svg",
  8728. extra: 474/393,
  8729. bottom: 5/479
  8730. }
  8731. }
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(9 + 6 / 12, "feet")
  8737. },
  8738. {
  8739. name: "Macro",
  8740. height: math.unit(96, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro+",
  8745. height: math.unit(243, "feet")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(194, "cm"),
  8754. weight: math.unit(90, "kg"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/ranek/front.svg",
  8758. extra: 1862/1791,
  8759. bottom: 80/1942
  8760. }
  8761. },
  8762. back: {
  8763. height: math.unit(194, "cm"),
  8764. weight: math.unit(90, "kg"),
  8765. name: "Back",
  8766. image: {
  8767. source: "./media/characters/ranek/back.svg",
  8768. extra: 1853/1787,
  8769. bottom: 74/1927
  8770. }
  8771. },
  8772. feral: {
  8773. height: math.unit(30, "cm"),
  8774. weight: math.unit(1.6, "lbs"),
  8775. name: "Feral",
  8776. image: {
  8777. source: "./media/characters/ranek/feral.svg",
  8778. extra: 990/631,
  8779. bottom: 29/1019
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(194, "cm"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(100, "meters")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(5 + 6 / 12, "feet"),
  8800. weight: math.unit(153, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/andrew-cooper/front.svg"
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Nano",
  8810. height: math.unit(1, "mm")
  8811. },
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(2, "inches")
  8815. },
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(5 + 6 / 12, "feet"),
  8819. default: true
  8820. }
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(180, "lbs"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/akane-sato/front.svg",
  8832. extra: 1219 / 1140
  8833. }
  8834. },
  8835. back: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(180, "lbs"),
  8838. name: "Back",
  8839. image: {
  8840. source: "./media/characters/akane-sato/back.svg",
  8841. extra: 1219 / 1170
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(2.5, "meters")
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(250, "meters"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Megamacro",
  8857. height: math.unit(25, "km")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(65, "kg"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/rook/front.svg",
  8870. extra: 960 / 950
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(8.8, "feet")
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(88, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Megamacro",
  8886. height: math.unit(8, "miles")
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(12 + 2 / 12, "feet"),
  8895. weight: math.unit(808, "lbs"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/prodigy/front.svg"
  8899. }
  8900. }
  8901. },
  8902. [
  8903. {
  8904. name: "Normal",
  8905. height: math.unit(12 + 2 / 12, "feet"),
  8906. default: true
  8907. },
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(143, "feet")
  8911. },
  8912. {
  8913. name: "Macro+",
  8914. height: math.unit(400, "feet")
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(225, "lbs"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/daniel/front.svg"
  8927. }
  8928. },
  8929. leaning: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(225, "lbs"),
  8932. name: "Leaning",
  8933. image: {
  8934. source: "./media/characters/daniel/leaning.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(1000, "feet"),
  8942. default: true
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(6, "feet"),
  8951. weight: math.unit(88, "lbs"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/chiros/front.svg",
  8955. extra: 306 / 226
  8956. }
  8957. },
  8958. side: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(88, "lbs"),
  8961. name: "Side",
  8962. image: {
  8963. source: "./media/characters/chiros/side.svg",
  8964. extra: 306 / 226
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(6, "cm"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8978. {
  8979. front: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(100, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/selka/front.svg",
  8985. extra: 947 / 887
  8986. }
  8987. }
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(5, "cm"),
  8993. default: true
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(8 + 3 / 12, "feet"),
  9002. weight: math.unit(424, "lbs"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/verin/front.svg",
  9006. extra: 1845 / 1550
  9007. }
  9008. },
  9009. frontArmored: {
  9010. height: math.unit(8 + 3 / 12, "feet"),
  9011. weight: math.unit(424, "lbs"),
  9012. name: "Front (Armored)",
  9013. image: {
  9014. source: "./media/characters/verin/front-armor.svg",
  9015. extra: 1845 / 1550,
  9016. bottom: 0.01
  9017. }
  9018. },
  9019. back: {
  9020. height: math.unit(8 + 3 / 12, "feet"),
  9021. weight: math.unit(424, "lbs"),
  9022. name: "Back",
  9023. image: {
  9024. source: "./media/characters/verin/back.svg",
  9025. bottom: 0.1,
  9026. extra: 1
  9027. }
  9028. },
  9029. foot: {
  9030. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9031. name: "Foot",
  9032. image: {
  9033. source: "./media/characters/verin/foot.svg"
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(8 + 3 / 12, "feet")
  9041. },
  9042. {
  9043. name: "Minimacro",
  9044. height: math.unit(21, "feet"),
  9045. default: true
  9046. },
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(626, "feet")
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(2.718, "meters"),
  9058. weight: math.unit(150, "lbs"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/sovrim-terraquian/front.svg",
  9062. extra: 1752/1689,
  9063. bottom: 36/1788
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(2.718, "meters"),
  9068. weight: math.unit(150, "lbs"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/sovrim-terraquian/back.svg",
  9072. extra: 1698/1657,
  9073. bottom: 58/1756
  9074. }
  9075. },
  9076. tongue: {
  9077. height: math.unit(2.865, "feet"),
  9078. name: "Tongue",
  9079. image: {
  9080. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9081. }
  9082. },
  9083. hand: {
  9084. height: math.unit(1.61, "feet"),
  9085. name: "Hand",
  9086. image: {
  9087. source: "./media/characters/sovrim-terraquian/hand.svg"
  9088. }
  9089. },
  9090. foot: {
  9091. height: math.unit(1.05, "feet"),
  9092. name: "Foot",
  9093. image: {
  9094. source: "./media/characters/sovrim-terraquian/foot.svg"
  9095. }
  9096. },
  9097. footAlt: {
  9098. height: math.unit(0.88, "feet"),
  9099. name: "Foot (Alt)",
  9100. image: {
  9101. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(2, "inches")
  9109. },
  9110. {
  9111. name: "Small",
  9112. height: math.unit(1, "meter")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(Math.E, "meters"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(20, "meters")
  9122. },
  9123. {
  9124. name: "Macro+",
  9125. height: math.unit(400, "meters")
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(7, "feet"),
  9134. weight: math.unit(489, "lbs"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/reece-silvermane/front.svg",
  9138. bottom: 0.02,
  9139. extra: 1
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(1.5, "miles"),
  9147. default: true
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(6, "feet"),
  9156. weight: math.unit(78, "kg"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/kane/front.svg",
  9160. extra: 978 / 899
  9161. }
  9162. },
  9163. back: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(78, "kg"),
  9166. name: "Back",
  9167. image: {
  9168. source: "./media/characters/kane/back.svg",
  9169. extra: 1966/1800,
  9170. bottom: 0/1966
  9171. }
  9172. },
  9173. head: {
  9174. height: math.unit(1.4, "feet"),
  9175. name: "Head",
  9176. image: {
  9177. source: "./media/characters/kane/head.svg"
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(2.1, "m"),
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(1, "km"),
  9189. default: true
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9195. {
  9196. front: {
  9197. height: math.unit(6, "feet"),
  9198. weight: math.unit(200, "kg"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/tegon/front.svg",
  9202. bottom: 0.01,
  9203. extra: 1
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Micro",
  9210. height: math.unit(1, "inch")
  9211. },
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(6 + 3 / 12, "feet"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(300, "feet")
  9220. },
  9221. {
  9222. name: "Megamacro",
  9223. height: math.unit(69, "miles")
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9229. {
  9230. side: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(2304, "lbs"),
  9233. name: "Side",
  9234. image: {
  9235. source: "./media/characters/arcturax/side.svg",
  9236. extra: 790 / 376,
  9237. bottom: 0.01
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Micro",
  9244. height: math.unit(2, "inch")
  9245. },
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(6, "feet")
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(39, "feet"),
  9253. default: true
  9254. },
  9255. {
  9256. name: "Megamacro",
  9257. height: math.unit(7, "miles")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(50, "lbs"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/sentri/front.svg",
  9270. extra: 1750 / 1570,
  9271. bottom: 0.025
  9272. }
  9273. },
  9274. frontAlt: {
  9275. height: math.unit(6, "feet"),
  9276. weight: math.unit(50, "lbs"),
  9277. name: "Front (Alt)",
  9278. image: {
  9279. source: "./media/characters/sentri/front-alt.svg",
  9280. extra: 1750 / 1570,
  9281. bottom: 0.025
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(15, "feet"),
  9289. default: true
  9290. },
  9291. {
  9292. name: "Macro",
  9293. height: math.unit(2500, "feet")
  9294. }
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(5 + 8 / 12, "feet"),
  9302. weight: math.unit(130, "lbs"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/corvin/front.svg",
  9306. extra: 1803 / 1629
  9307. }
  9308. },
  9309. frontShirt: {
  9310. height: math.unit(5 + 8 / 12, "feet"),
  9311. weight: math.unit(130, "lbs"),
  9312. name: "Front (Shirt)",
  9313. image: {
  9314. source: "./media/characters/corvin/front-shirt.svg",
  9315. extra: 1803 / 1629
  9316. }
  9317. },
  9318. frontPoncho: {
  9319. height: math.unit(5 + 8 / 12, "feet"),
  9320. weight: math.unit(130, "lbs"),
  9321. name: "Front (Poncho)",
  9322. image: {
  9323. source: "./media/characters/corvin/front-poncho.svg",
  9324. extra: 1803 / 1629
  9325. }
  9326. },
  9327. side: {
  9328. height: math.unit(5 + 8 / 12, "feet"),
  9329. weight: math.unit(130, "lbs"),
  9330. name: "Side",
  9331. image: {
  9332. source: "./media/characters/corvin/side.svg",
  9333. extra: 1012 / 945
  9334. }
  9335. },
  9336. back: {
  9337. height: math.unit(5 + 8 / 12, "feet"),
  9338. weight: math.unit(130, "lbs"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/corvin/back.svg",
  9342. extra: 1803 / 1629
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Micro",
  9349. height: math.unit(3, "inches")
  9350. },
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(5 + 8 / 12, "feet")
  9354. },
  9355. {
  9356. name: "Macro",
  9357. height: math.unit(300, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Megamacro",
  9362. height: math.unit(500, "miles")
  9363. }
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(135, "lbs"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/q/front.svg",
  9375. extra: 854 / 752,
  9376. bottom: 0.005
  9377. }
  9378. },
  9379. back: {
  9380. height: math.unit(6, "feet"),
  9381. weight: math.unit(130, "lbs"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/q/back.svg",
  9385. extra: 854 / 752
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Macro",
  9392. height: math.unit(90, "feet"),
  9393. default: true
  9394. },
  9395. {
  9396. name: "Extra Macro",
  9397. height: math.unit(300, "feet"),
  9398. },
  9399. {
  9400. name: "BIG WALF",
  9401. height: math.unit(750, "feet"),
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(3, "feet"),
  9410. weight: math.unit(28, "lbs"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/citrine/front.svg"
  9414. }
  9415. }
  9416. },
  9417. [
  9418. {
  9419. name: "Normal",
  9420. height: math.unit(3, "feet"),
  9421. default: true
  9422. }
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9427. {
  9428. front: {
  9429. height: math.unit(14, "feet"),
  9430. weight: math.unit(1450, "kg"),
  9431. preyCapacity: math.unit(15, "people"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/aura-starwind/front.svg",
  9435. extra: 1440/1327,
  9436. bottom: 11/1451
  9437. }
  9438. },
  9439. side: {
  9440. height: math.unit(14, "feet"),
  9441. weight: math.unit(1450, "kg"),
  9442. preyCapacity: math.unit(15, "people"),
  9443. name: "Side",
  9444. image: {
  9445. source: "./media/characters/aura-starwind/side.svg",
  9446. extra: 1654 / 1497
  9447. }
  9448. },
  9449. taur: {
  9450. height: math.unit(18, "feet"),
  9451. weight: math.unit(5500, "kg"),
  9452. preyCapacity: math.unit(50, "people"),
  9453. name: "Taur",
  9454. image: {
  9455. source: "./media/characters/aura-starwind/taur.svg",
  9456. extra: 1760 / 1650
  9457. }
  9458. },
  9459. feral: {
  9460. height: math.unit(46, "feet"),
  9461. weight: math.unit(25000, "kg"),
  9462. preyCapacity: math.unit(120, "people"),
  9463. name: "Feral",
  9464. image: {
  9465. source: "./media/characters/aura-starwind/feral.svg"
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(14, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(50, "meters")
  9478. },
  9479. {
  9480. name: "Megamacro",
  9481. height: math.unit(5000, "meters")
  9482. },
  9483. {
  9484. name: "Gigamacro",
  9485. height: math.unit(100000, "kilometers")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(2 + 7 / 12, "feet"),
  9494. weight: math.unit(32, "lbs"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/rivet/front.svg",
  9498. extra: 1716 / 1658,
  9499. bottom: 0.03
  9500. }
  9501. },
  9502. foot: {
  9503. height: math.unit(0.551, "feet"),
  9504. name: "Rivet's Foot",
  9505. image: {
  9506. source: "./media/characters/rivet/foot.svg"
  9507. },
  9508. rename: true
  9509. }
  9510. },
  9511. [
  9512. {
  9513. name: "Micro",
  9514. height: math.unit(1.5, "inches"),
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(2 + 7 / 12, "feet"),
  9519. default: true
  9520. },
  9521. {
  9522. name: "Macro",
  9523. height: math.unit(85, "feet")
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(2.2, "km")
  9528. }
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(5 + 9 / 12, "feet"),
  9536. weight: math.unit(150, "lbs"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/coffee/front.svg",
  9540. extra: 946/880,
  9541. bottom: 66/1012
  9542. }
  9543. },
  9544. foot: {
  9545. height: math.unit(1.29, "feet"),
  9546. name: "Foot",
  9547. image: {
  9548. source: "./media/characters/coffee/foot.svg"
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Micro",
  9555. height: math.unit(2, "inches"),
  9556. },
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(5 + 9 / 12, "feet"),
  9560. default: true
  9561. },
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(800, "feet")
  9565. },
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(25, "miles")
  9569. }
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9574. {
  9575. front: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(200, "lbs"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/chari-gal/front.svg",
  9581. extra: 735/649,
  9582. bottom: 55/790
  9583. },
  9584. form: "normal",
  9585. default: true
  9586. },
  9587. back: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(200, "lb"),
  9590. name: "Back",
  9591. image: {
  9592. source: "./media/characters/chari-gal/back.svg",
  9593. extra: 762/666,
  9594. bottom: 31/793
  9595. },
  9596. form: "normal"
  9597. },
  9598. mouth: {
  9599. height: math.unit(1.35, "feet"),
  9600. name: "Mouth",
  9601. image: {
  9602. source: "./media/characters/chari-gal/mouth.svg"
  9603. },
  9604. form: "normal"
  9605. },
  9606. gigantamax: {
  9607. height: math.unit(6 * 16, "feet"),
  9608. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9609. name: "Gigantamax",
  9610. image: {
  9611. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9612. extra: 1507/1149,
  9613. bottom: 254/1761
  9614. },
  9615. form: "gigantamax",
  9616. default: true
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 7 / 12, "feet"),
  9623. form: "normal",
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(200, "feet"),
  9628. default: true,
  9629. form: "normal"
  9630. },
  9631. {
  9632. name: "Normal",
  9633. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9634. form: "gigantamax",
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(16 * 200, "feet"),
  9639. default: true,
  9640. form: "gigantamax"
  9641. },
  9642. ],
  9643. {
  9644. "normal": {
  9645. name: "Normal",
  9646. default: true
  9647. },
  9648. "gigantamax": {
  9649. name: "Gigantamax",
  9650. },
  9651. }
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9655. {
  9656. front: {
  9657. height: math.unit(6, "feet"),
  9658. weight: math.unit(150, "lbs"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/nova/front.svg",
  9662. extra: 5000 / 4722,
  9663. bottom: 0.02
  9664. }
  9665. }
  9666. },
  9667. [
  9668. {
  9669. name: "Micro-",
  9670. height: math.unit(0.8, "inches")
  9671. },
  9672. {
  9673. name: "Micro",
  9674. height: math.unit(2, "inches"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9681. {
  9682. koboldFront: {
  9683. height: math.unit(3 + 1 / 12, "feet"),
  9684. weight: math.unit(21.7, "lbs"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/argent/kobold-front.svg",
  9688. extra: 1471 / 1331,
  9689. bottom: 100.8 / 1575.5
  9690. },
  9691. form: "kobold",
  9692. default: true
  9693. },
  9694. dragonFront: {
  9695. height: math.unit(75, "inches"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/argent/dragon-front.svg",
  9699. extra: 1389/1248,
  9700. bottom: 54/1443
  9701. },
  9702. form: "dragon",
  9703. },
  9704. dragonBack: {
  9705. height: math.unit(75, "inches"),
  9706. name: "Back",
  9707. image: {
  9708. source: "./media/characters/argent/dragon-back.svg",
  9709. extra: 1399/1271,
  9710. bottom: 23/1422
  9711. },
  9712. form: "dragon",
  9713. },
  9714. dragonDressed: {
  9715. height: math.unit(75, "inches"),
  9716. name: "Dressed",
  9717. image: {
  9718. source: "./media/characters/argent/dragon-dressed.svg",
  9719. extra: 1350/1215,
  9720. bottom: 26/1376
  9721. },
  9722. form: "dragon"
  9723. },
  9724. dragonHead: {
  9725. height: math.unit(23.5, "inches"),
  9726. name: "Head",
  9727. image: {
  9728. source: "./media/characters/argent/dragon-head.svg"
  9729. },
  9730. form: "dragon",
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(2, "inches"),
  9737. form: "kobold",
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(3 + 1 / 12, "feet"),
  9742. form: "kobold",
  9743. default: true
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(120, "feet"),
  9748. form: "kobold",
  9749. },
  9750. {
  9751. name: "Speck",
  9752. height: math.unit(1, "mm"),
  9753. form: "dragon",
  9754. },
  9755. {
  9756. name: "Tiny",
  9757. height: math.unit(1, "cm"),
  9758. form: "dragon",
  9759. },
  9760. {
  9761. name: "Micro",
  9762. height: math.unit(5, "cm"),
  9763. form: "dragon",
  9764. },
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(75, "inches"),
  9768. form: "dragon",
  9769. default: true
  9770. },
  9771. {
  9772. name: "Extra Tall",
  9773. height: math.unit(9, "feet"),
  9774. form: "dragon",
  9775. },
  9776. {
  9777. name: "Inconvenient",
  9778. height: math.unit(5, "meters"),
  9779. form: "dragon",
  9780. },
  9781. {
  9782. name: "Macro",
  9783. height: math.unit(70, "meters"),
  9784. form: "dragon",
  9785. },
  9786. {
  9787. name: "Macro+",
  9788. height: math.unit(250, "meters"),
  9789. form: "dragon",
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(20, "km"),
  9794. form: "dragon",
  9795. },
  9796. {
  9797. name: "Mountainous",
  9798. height: math.unit(100, "km"),
  9799. form: "dragon",
  9800. },
  9801. {
  9802. name: "Continental",
  9803. height: math.unit(2, "megameters"),
  9804. form: "dragon",
  9805. },
  9806. {
  9807. name: "Too Big",
  9808. height: math.unit(900, "megameters"),
  9809. form: "dragon",
  9810. },
  9811. ],
  9812. {
  9813. "kobold": {
  9814. name: "Kobold",
  9815. default: true
  9816. },
  9817. "dragon": {
  9818. name: "Dragon",
  9819. },
  9820. }
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9824. {
  9825. lamp: {
  9826. height: math.unit(7 * 1559 / 989, "feet"),
  9827. name: "Magic Lamp",
  9828. image: {
  9829. source: "./media/characters/mira-al-cul/lamp.svg",
  9830. extra: 1617 / 1559
  9831. }
  9832. },
  9833. front: {
  9834. height: math.unit(7, "feet"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/mira-al-cul/front.svg",
  9838. extra: 1044 / 990
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Heavily Restricted",
  9845. height: math.unit(7 * 1559 / 989, "feet")
  9846. },
  9847. {
  9848. name: "Freshly Freed",
  9849. height: math.unit(50 * 1559 / 989, "feet")
  9850. },
  9851. {
  9852. name: "World Encompassing",
  9853. height: math.unit(10000 * 1559 / 989, "miles")
  9854. },
  9855. {
  9856. name: "Galactic",
  9857. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9858. },
  9859. {
  9860. name: "Palmed Universe",
  9861. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Multiversal Matriarch",
  9866. height: math.unit(8.87e10, "yottameters")
  9867. },
  9868. {
  9869. name: "Void Mother",
  9870. height: math.unit(3.14e110, "yottaparsecs")
  9871. },
  9872. {
  9873. name: "Toying with Transcendence",
  9874. height: math.unit(1e307, "meters")
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9880. {
  9881. front: {
  9882. height: math.unit(17 + 1 / 12, "feet"),
  9883. weight: math.unit(476.2 * 5, "lbs"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/kuro-shi-uchū/front.svg",
  9887. extra: 2329 / 1835,
  9888. bottom: 0.02
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Micro",
  9895. height: math.unit(2, "inches")
  9896. },
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(12, "meters")
  9900. },
  9901. {
  9902. name: "Planetary",
  9903. height: math.unit(0.00929, "AU"),
  9904. default: true
  9905. },
  9906. {
  9907. name: "Universal",
  9908. height: math.unit(20, "gigaparsecs")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(5 + 2 / 12, "feet"),
  9917. weight: math.unit(120, "lbs"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/katherine/front.svg",
  9921. extra: 2075 / 1969
  9922. }
  9923. },
  9924. dress: {
  9925. height: math.unit(5 + 2 / 12, "feet"),
  9926. weight: math.unit(120, "lbs"),
  9927. name: "Dress",
  9928. image: {
  9929. source: "./media/characters/katherine/dress.svg",
  9930. extra: 2258 / 2064
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Micro",
  9937. height: math.unit(1, "inches"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(5 + 2 / 12, "feet")
  9943. },
  9944. {
  9945. name: "Macro",
  9946. height: math.unit(100, "meters")
  9947. },
  9948. {
  9949. name: "Megamacro",
  9950. height: math.unit(80, "miles")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(7 + 8 / 12, "feet"),
  9959. weight: math.unit(250, "lbs"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/yevis/front.svg",
  9963. extra: 1938 / 1755
  9964. }
  9965. }
  9966. },
  9967. [
  9968. {
  9969. name: "Mortal",
  9970. height: math.unit(7 + 8 / 12, "feet")
  9971. },
  9972. {
  9973. name: "Battle",
  9974. height: math.unit(25 + 11 / 12, "feet")
  9975. },
  9976. {
  9977. name: "Wrath",
  9978. height: math.unit(1654 + 11 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Planet Destroyer",
  9982. height: math.unit(12000, "miles")
  9983. },
  9984. {
  9985. name: "Galaxy Conqueror",
  9986. height: math.unit(1.45, "zettameters"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Universal War",
  9991. height: math.unit(184, "gigaparsecs")
  9992. },
  9993. {
  9994. name: "Eternity War",
  9995. height: math.unit(1.98e55, "yottaparsecs")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(5 + 8 / 12, "feet"),
  10004. weight: math.unit(63, "kg"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/xavier/front.svg",
  10008. extra: 944 / 883
  10009. }
  10010. },
  10011. frontStretch: {
  10012. height: math.unit(5 + 8 / 12, "feet"),
  10013. weight: math.unit(63, "kg"),
  10014. name: "Stretching",
  10015. image: {
  10016. source: "./media/characters/xavier/front-stretch.svg",
  10017. extra: 962 / 820
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(5 + 8 / 12, "feet")
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(100, "meters"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "McLargeHuge",
  10033. height: math.unit(10, "miles")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(5 + 5 / 12, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/joshii/front.svg",
  10046. extra: 765 / 653,
  10047. bottom: 51 / 816
  10048. }
  10049. },
  10050. foot: {
  10051. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10052. name: "Foot",
  10053. image: {
  10054. source: "./media/characters/joshii/foot.svg"
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Micro",
  10061. height: math.unit(2, "inches")
  10062. },
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(5 + 5 / 12, "feet")
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(785, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(24.5, "miles")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(6, "feet"),
  10083. weight: math.unit(150, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/goddess-elizabeth/front.svg",
  10087. extra: 1800 / 1525,
  10088. bottom: 0.005
  10089. }
  10090. },
  10091. foot: {
  10092. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10093. name: "Foot",
  10094. image: {
  10095. source: "./media/characters/goddess-elizabeth/foot.svg"
  10096. }
  10097. },
  10098. mouth: {
  10099. height: math.unit(6, "feet"),
  10100. name: "Mouth",
  10101. image: {
  10102. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(12, "feet")
  10110. },
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(80, "miles"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(15000, "parsecs")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(5 + 9 / 12, "feet"),
  10127. weight: math.unit(144, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/kara/front.svg"
  10131. }
  10132. },
  10133. feet: {
  10134. height: math.unit(6 / 6.765, "feet"),
  10135. name: "Kara's Feet",
  10136. rename: true,
  10137. image: {
  10138. source: "./media/characters/kara/feet.svg"
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(5 + 9 / 12, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(174, "feet"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(18, "feet"),
  10159. weight: math.unit(4050, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/tyrone/front.svg",
  10163. extra: 2405 / 2270,
  10164. bottom: 182 / 2587
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(18, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(300, "feet")
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(15, "km")
  10181. },
  10182. {
  10183. name: "Gigamacro",
  10184. height: math.unit(500, "km")
  10185. },
  10186. {
  10187. name: "Teramacro",
  10188. height: math.unit(0.5, "gigameters")
  10189. },
  10190. {
  10191. name: "Omnimacro",
  10192. height: math.unit(1e252, "yottauniverse")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(7 + 8 / 12, "feet"),
  10201. weight: math.unit(120, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/danny/front.svg",
  10205. extra: 1490 / 1350
  10206. }
  10207. },
  10208. back: {
  10209. height: math.unit(7 + 8 / 12, "feet"),
  10210. weight: math.unit(120, "lb"),
  10211. name: "Back",
  10212. image: {
  10213. source: "./media/characters/danny/back.svg",
  10214. extra: 1490 / 1350
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(7 + 8 / 12, "feet"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(3.5, "inches"),
  10231. weight: math.unit(19, "grams"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/mallow/front.svg",
  10235. extra: 471 / 431
  10236. }
  10237. },
  10238. back: {
  10239. height: math.unit(3.5, "inches"),
  10240. weight: math.unit(19, "grams"),
  10241. name: "Back",
  10242. image: {
  10243. source: "./media/characters/mallow/back.svg",
  10244. extra: 471 / 431
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(3.5, "inches"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(9, "feet"),
  10261. weight: math.unit(230, "kg"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/starry-aqua/front.svg"
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(9, "feet"),
  10269. weight: math.unit(230, "kg"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/starry-aqua/back.svg"
  10273. }
  10274. },
  10275. hand: {
  10276. height: math.unit(9 * 0.1168, "feet"),
  10277. name: "Hand",
  10278. image: {
  10279. source: "./media/characters/starry-aqua/hand.svg"
  10280. }
  10281. },
  10282. foot: {
  10283. height: math.unit(9 * 0.18, "feet"),
  10284. name: "Foot",
  10285. image: {
  10286. source: "./media/characters/starry-aqua/foot.svg"
  10287. }
  10288. }
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(3, "inches")
  10294. },
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(9, "feet")
  10298. },
  10299. {
  10300. name: "Macro",
  10301. height: math.unit(300, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Megamacro",
  10306. height: math.unit(3200, "feet")
  10307. }
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(15, "feet"),
  10315. weight: math.unit(5026, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/luka-towers/front.svg",
  10319. extra: 1269/1133,
  10320. bottom: 51/1320
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(15, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Minimacro",
  10332. height: math.unit(25, "feet")
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(320, "feet")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(35000, "feet")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(4000, "miles")
  10345. },
  10346. {
  10347. name: "Teramacro",
  10348. height: math.unit(15000, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/natalie-nightring/front.svg",
  10361. extra: 1,
  10362. bottom: 0.06
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Uh Oh",
  10369. height: math.unit(0.1, "mm")
  10370. },
  10371. {
  10372. name: "Small",
  10373. height: math.unit(3, "inches")
  10374. },
  10375. {
  10376. name: "Human Scale",
  10377. height: math.unit(6, "feet")
  10378. },
  10379. {
  10380. name: "Librarian",
  10381. height: math.unit(50, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Immense",
  10386. height: math.unit(200, "miles")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(180, "lbs"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/danni-rosie/front.svg",
  10399. extra: 1260 / 1128,
  10400. bottom: 0.022
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Micro",
  10407. height: math.unit(2, "inches"),
  10408. default: true
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(5 + 9 / 12, "feet"),
  10417. weight: math.unit(220, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/samantha-kruse/front.svg",
  10421. extra: (985 / 935),
  10422. bottom: 0.03
  10423. }
  10424. },
  10425. frontUndressed: {
  10426. height: math.unit(5 + 9 / 12, "feet"),
  10427. weight: math.unit(220, "lb"),
  10428. name: "Front (Undressed)",
  10429. image: {
  10430. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10431. extra: (973 / 923),
  10432. bottom: 0.025
  10433. }
  10434. },
  10435. fat: {
  10436. height: math.unit(5 + 9 / 12, "feet"),
  10437. weight: math.unit(900, "lb"),
  10438. name: "Front (Fat)",
  10439. image: {
  10440. source: "./media/characters/samantha-kruse/fat.svg",
  10441. extra: 2688 / 2561
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(5 + 9 / 12, "feet"),
  10449. default: true
  10450. }
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10455. {
  10456. back: {
  10457. height: math.unit(5 + 4 / 12, "feet"),
  10458. weight: math.unit(4963, "lb"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/amelia-rosie/back.svg",
  10462. extra: 1113 / 963,
  10463. bottom: 0.01
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Level 0",
  10470. height: math.unit(5 + 4 / 12, "feet")
  10471. },
  10472. {
  10473. name: "Level 1",
  10474. height: math.unit(164597, "feet"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Level 2",
  10479. height: math.unit(956243, "miles")
  10480. },
  10481. {
  10482. name: "Level 3",
  10483. height: math.unit(29421709423, "miles")
  10484. },
  10485. {
  10486. name: "Level 4",
  10487. height: math.unit(154, "lightyears")
  10488. },
  10489. {
  10490. name: "Level 5",
  10491. height: math.unit(4738272, "lightyears")
  10492. },
  10493. {
  10494. name: "Level 6",
  10495. height: math.unit(145787152896, "lightyears")
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(5 + 11 / 12, "feet"),
  10504. weight: math.unit(65, "kg"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/rook-kitara/front.svg",
  10508. extra: 1347 / 1274,
  10509. bottom: 0.005
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Totally Unfair",
  10516. height: math.unit(1.8, "mm")
  10517. },
  10518. {
  10519. name: "Lap Rookie",
  10520. height: math.unit(1.4, "feet")
  10521. },
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(5 + 11 / 12, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "How Did This Happen",
  10529. height: math.unit(80, "miles")
  10530. }
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(7, "feet"),
  10538. weight: math.unit(300, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/pisces/front.svg",
  10542. extra: 2255 / 2115,
  10543. bottom: 0.03
  10544. }
  10545. },
  10546. back: {
  10547. height: math.unit(7, "feet"),
  10548. weight: math.unit(300, "lb"),
  10549. name: "Back",
  10550. image: {
  10551. source: "./media/characters/pisces/back.svg",
  10552. extra: 2146 / 2055,
  10553. bottom: 0.04
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Normal",
  10560. height: math.unit(7, "feet"),
  10561. default: true
  10562. },
  10563. {
  10564. name: "Swimming Pool",
  10565. height: math.unit(12.2, "meters")
  10566. },
  10567. {
  10568. name: "Olympic Swimming Pool",
  10569. height: math.unit(56.3, "meters")
  10570. },
  10571. {
  10572. name: "Lake Superior",
  10573. height: math.unit(93900, "meters")
  10574. },
  10575. {
  10576. name: "Mediterranean Sea",
  10577. height: math.unit(644457, "meters")
  10578. },
  10579. {
  10580. name: "World's Oceans",
  10581. height: math.unit(4567491, "meters")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(2.3, "meters"),
  10590. weight: math.unit(120, "kg"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/zelas/front.svg"
  10594. }
  10595. },
  10596. side: {
  10597. height: math.unit(2.3, "meters"),
  10598. weight: math.unit(120, "kg"),
  10599. name: "Side",
  10600. image: {
  10601. source: "./media/characters/zelas/side.svg"
  10602. }
  10603. },
  10604. back: {
  10605. height: math.unit(2.3, "meters"),
  10606. weight: math.unit(120, "kg"),
  10607. name: "Back",
  10608. image: {
  10609. source: "./media/characters/zelas/back.svg"
  10610. }
  10611. },
  10612. foot: {
  10613. height: math.unit(1.116, "feet"),
  10614. name: "Foot",
  10615. image: {
  10616. source: "./media/characters/zelas/foot.svg"
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(2.3, "meters")
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(30, "meters"),
  10628. default: true
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(1, "inch"),
  10637. weight: math.unit(0.21, "grams"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/talbot/front.svg",
  10641. extra: 594 / 544
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Micro",
  10648. height: math.unit(1, "inch"),
  10649. default: true
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10655. {
  10656. front: {
  10657. height: math.unit(3 + 3 / 12, "feet"),
  10658. weight: math.unit(51.8, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/fliss/front.svg",
  10662. extra: 840 / 640
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Teeny Tiny",
  10669. height: math.unit(1, "mm")
  10670. },
  10671. {
  10672. name: "Small",
  10673. height: math.unit(1, "inch"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Standard Sylveon",
  10678. height: math.unit(3 + 3 / 12, "feet")
  10679. },
  10680. {
  10681. name: "Large Nuisance",
  10682. height: math.unit(33, "feet")
  10683. },
  10684. {
  10685. name: "City Filler",
  10686. height: math.unit(3000, "feet")
  10687. },
  10688. {
  10689. name: "New Horizon",
  10690. height: math.unit(6000, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(5, "cm"),
  10699. weight: math.unit(1.94, "g"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/fleta/front.svg",
  10703. extra: 835 / 803
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(5, "cm"),
  10708. weight: math.unit(1.94, "g"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/fleta/back.svg",
  10712. extra: 835 / 803
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Micro",
  10719. height: math.unit(5, "cm"),
  10720. default: true
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(225, "lb"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/dominic/front.svg",
  10733. extra: 1770 / 1620,
  10734. bottom: 0.025
  10735. }
  10736. },
  10737. back: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(225, "lb"),
  10740. name: "Back",
  10741. image: {
  10742. source: "./media/characters/dominic/back.svg",
  10743. extra: 1745 / 1620,
  10744. bottom: 0.065
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Nano",
  10751. height: math.unit(0.1, "mm")
  10752. },
  10753. {
  10754. name: "Micro-",
  10755. height: math.unit(1, "mm")
  10756. },
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(4, "inches")
  10760. },
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(6 + 4 / 12, "feet"),
  10764. default: true
  10765. },
  10766. {
  10767. name: "Macro",
  10768. height: math.unit(115, "feet")
  10769. },
  10770. {
  10771. name: "Macro+",
  10772. height: math.unit(955, "feet")
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(8990, "feet")
  10777. },
  10778. {
  10779. name: "Gigmacro",
  10780. height: math.unit(9310, "miles")
  10781. },
  10782. {
  10783. name: "Teramacro",
  10784. height: math.unit(1567005010, "miles")
  10785. },
  10786. {
  10787. name: "Examacro",
  10788. height: math.unit(1425, "parsecs")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(400, "feet"),
  10797. weight: math.unit(44444444, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/major-colonel/front.svg"
  10801. }
  10802. },
  10803. back: {
  10804. height: math.unit(400, "feet"),
  10805. weight: math.unit(44444444, "lb"),
  10806. name: "Back",
  10807. image: {
  10808. source: "./media/characters/major-colonel/back.svg"
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Macro",
  10815. height: math.unit(400, "feet"),
  10816. default: true
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10822. {
  10823. catFront: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(120, "lb"),
  10826. name: "Front (Cat Side)",
  10827. image: {
  10828. source: "./media/characters/axel-lycan/cat-front.svg",
  10829. extra: 430 / 402,
  10830. bottom: 43 / 472.35
  10831. }
  10832. },
  10833. catBack: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Back (Cat Side)",
  10837. image: {
  10838. source: "./media/characters/axel-lycan/cat-back.svg",
  10839. extra: 447 / 419,
  10840. bottom: 23.3 / 469
  10841. }
  10842. },
  10843. wolfFront: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(120, "lb"),
  10846. name: "Front (Wolf Side)",
  10847. image: {
  10848. source: "./media/characters/axel-lycan/wolf-front.svg",
  10849. extra: 485 / 456,
  10850. bottom: 19 / 504
  10851. }
  10852. },
  10853. wolfBack: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Back (Wolf Side)",
  10857. image: {
  10858. source: "./media/characters/axel-lycan/wolf-back.svg",
  10859. extra: 475 / 438,
  10860. bottom: 39.2 / 514
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Macro",
  10867. height: math.unit(1, "km"),
  10868. default: true
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(5 + 9 / 12, "feet"),
  10877. weight: math.unit(175, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/vanrel-hyena/front.svg",
  10881. extra: 1086 / 1010,
  10882. bottom: 0.04
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(5 + 9 / 12, "feet"),
  10890. default: true
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(6, "feet"),
  10899. weight: math.unit(103, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/abbott-absol/front.svg",
  10903. extra: 765/694,
  10904. bottom: 47/812
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Megamicro",
  10911. height: math.unit(0.1, "mm")
  10912. },
  10913. {
  10914. name: "Micro",
  10915. height: math.unit(1, "inch")
  10916. },
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(6, "feet"),
  10920. default: true
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(264, "lb"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/hector/front.svg",
  10933. extra: 2280 / 2130,
  10934. bottom: 0.07
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(12.25, "foot"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(160, "feet")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(150, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/sal/front.svg",
  10959. extra: 1846 / 1699,
  10960. bottom: 0.04
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(10, "miles"),
  10968. default: true
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10974. {
  10975. front: {
  10976. height: math.unit(3, "meters"),
  10977. weight: math.unit(450, "kg"),
  10978. name: "front",
  10979. image: {
  10980. source: "./media/characters/ranger/front.svg",
  10981. extra: 2401 / 2243,
  10982. bottom: 0.05
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(3, "meters"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(14, "feet"),
  10999. weight: math.unit(800, "kg"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/theresa/front.svg",
  11003. extra: 3575 / 3346,
  11004. bottom: 0.03
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(14, "feet"),
  11012. default: true
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(3, "kg"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/ine/front.svg",
  11025. extra: 678 / 539,
  11026. bottom: 0.023
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(2.265, "feet"),
  11034. default: true
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(5, "feet"),
  11043. weight: math.unit(30, "kg"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/vial/front.svg",
  11047. extra: 1365 / 1277,
  11048. bottom: 0.04
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(5, "feet"),
  11056. default: true
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11062. {
  11063. side: {
  11064. height: math.unit(3.4, "meters"),
  11065. weight: math.unit(1000, "lb"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/rovoska/side.svg",
  11069. extra: 4403 / 1515
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(3.4, "meters"),
  11077. default: true
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11083. {
  11084. front: {
  11085. height: math.unit(8, "feet"),
  11086. weight: math.unit(315, "lb"),
  11087. name: "Front",
  11088. image: {
  11089. source: "./media/characters/gunner-rotthbauer/front.svg"
  11090. }
  11091. },
  11092. back: {
  11093. height: math.unit(8, "feet"),
  11094. weight: math.unit(315, "lb"),
  11095. name: "Back",
  11096. image: {
  11097. source: "./media/characters/gunner-rotthbauer/back.svg"
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Micro",
  11104. height: math.unit(3.5, "inches")
  11105. },
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(8, "feet"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(250, "feet")
  11114. },
  11115. {
  11116. name: "Megamacro",
  11117. height: math.unit(1, "AU")
  11118. },
  11119. ]
  11120. ))
  11121. characterMakers.push(() => makeCharacter(
  11122. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11123. {
  11124. front: {
  11125. height: math.unit(5 + 5 / 12, "feet"),
  11126. weight: math.unit(140, "lb"),
  11127. name: "Front",
  11128. image: {
  11129. source: "./media/characters/allatia/front.svg",
  11130. extra: 1227 / 1180,
  11131. bottom: 0.027
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(5 + 5 / 12, "feet")
  11139. },
  11140. {
  11141. name: "Macro",
  11142. height: math.unit(250, "feet"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Megamacro",
  11147. height: math.unit(8, "miles")
  11148. }
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(120, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/tene/front.svg",
  11160. extra: 814/750,
  11161. bottom: 36/850
  11162. }
  11163. },
  11164. stomping: {
  11165. height: math.unit(2.025, "meters"),
  11166. weight: math.unit(120, "lb"),
  11167. name: "Stomping",
  11168. image: {
  11169. source: "./media/characters/tene/stomping.svg",
  11170. extra: 885/821,
  11171. bottom: 15/900
  11172. }
  11173. },
  11174. sitting: {
  11175. height: math.unit(1, "meter"),
  11176. weight: math.unit(120, "lb"),
  11177. name: "Sitting",
  11178. image: {
  11179. source: "./media/characters/tene/sitting.svg",
  11180. extra: 396/366,
  11181. bottom: 79/475
  11182. }
  11183. },
  11184. smiling: {
  11185. height: math.unit(1.2, "feet"),
  11186. name: "Smiling",
  11187. image: {
  11188. source: "./media/characters/tene/smiling.svg",
  11189. extra: 1364/1071,
  11190. bottom: 0/1364
  11191. }
  11192. },
  11193. smug: {
  11194. height: math.unit(1.3, "feet"),
  11195. name: "Smug",
  11196. image: {
  11197. source: "./media/characters/tene/smug.svg",
  11198. extra: 1323/1082,
  11199. bottom: 0/1323
  11200. }
  11201. },
  11202. feral: {
  11203. height: math.unit(3.9, "feet"),
  11204. weight: math.unit(250, "lb"),
  11205. name: "Feral",
  11206. image: {
  11207. source: "./media/characters/tene/feral.svg",
  11208. extra: 717 / 458,
  11209. bottom: 0.179
  11210. }
  11211. },
  11212. },
  11213. [
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(6, "feet")
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(300, "feet"),
  11221. default: true
  11222. },
  11223. {
  11224. name: "Megamacro",
  11225. height: math.unit(5, "miles")
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11231. {
  11232. side: {
  11233. height: math.unit(6, "feet"),
  11234. name: "Side",
  11235. image: {
  11236. source: "./media/characters/evander/side.svg",
  11237. extra: 877 / 477
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(0.83, "meters"),
  11245. default: true
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11251. {
  11252. front: {
  11253. height: math.unit(12, "feet"),
  11254. weight: math.unit(1000, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11258. extra: 1762 / 1611
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(12, "feet"),
  11263. weight: math.unit(1000, "lb"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11267. extra: 1762 / 1611
  11268. }
  11269. },
  11270. },
  11271. [
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(12, "feet"),
  11275. default: true
  11276. },
  11277. {
  11278. name: "Kaiju",
  11279. height: math.unit(150, "feet")
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(6, "feet"),
  11288. weight: math.unit(150, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/zero-alurus/front.svg"
  11292. }
  11293. },
  11294. back: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(150, "lb"),
  11297. name: "Back",
  11298. image: {
  11299. source: "./media/characters/zero-alurus/back.svg"
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(5 + 10 / 12, "feet")
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(60, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Macro+",
  11315. height: math.unit(450, "feet")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(200, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/mega-shi/front.svg",
  11328. extra: 1279 / 1250,
  11329. bottom: 0.02
  11330. }
  11331. },
  11332. back: {
  11333. height: math.unit(6, "feet"),
  11334. weight: math.unit(200, "lb"),
  11335. name: "Back",
  11336. image: {
  11337. source: "./media/characters/mega-shi/back.svg",
  11338. extra: 1279 / 1250,
  11339. bottom: 0.02
  11340. }
  11341. },
  11342. },
  11343. [
  11344. {
  11345. name: "Micro",
  11346. height: math.unit(16 + 6 / 12, "feet")
  11347. },
  11348. {
  11349. name: "Third Dimension",
  11350. height: math.unit(40, "meters")
  11351. },
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(660, "feet"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Megamacro",
  11359. height: math.unit(10, "miles")
  11360. },
  11361. {
  11362. name: "Planetary Launch",
  11363. height: math.unit(500, "miles")
  11364. },
  11365. {
  11366. name: "Interstellar",
  11367. height: math.unit(1e9, "miles")
  11368. },
  11369. {
  11370. name: "Leaving the Universe",
  11371. height: math.unit(1, "gigaparsec")
  11372. },
  11373. {
  11374. name: "Travelling Universes",
  11375. height: math.unit(30e15, "parsecs")
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(5 + 4/12, "feet"),
  11384. weight: math.unit(120, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/odyssey/front.svg",
  11388. extra: 1747/1571,
  11389. bottom: 47/1794
  11390. }
  11391. },
  11392. side: {
  11393. height: math.unit(5.1, "feet"),
  11394. weight: math.unit(120, "lb"),
  11395. name: "Side",
  11396. image: {
  11397. source: "./media/characters/odyssey/side.svg",
  11398. extra: 1847/1619,
  11399. bottom: 47/1894
  11400. }
  11401. },
  11402. lounging: {
  11403. height: math.unit(1.464, "feet"),
  11404. weight: math.unit(120, "lb"),
  11405. name: "Lounging",
  11406. image: {
  11407. source: "./media/characters/odyssey/lounging.svg",
  11408. extra: 1235/837,
  11409. bottom: 551/1786
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(5 + 4 / 12, "feet")
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(1, "km")
  11421. },
  11422. {
  11423. name: "Megamacro",
  11424. height: math.unit(3000, "km")
  11425. },
  11426. {
  11427. name: "Gigamacro",
  11428. height: math.unit(1, "AU"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Omniversal",
  11433. height: math.unit(100e14, "lightyears")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(5 + 10/12, "feet"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/mekuto/front.svg",
  11445. extra: 875/835,
  11446. bottom: 46/921
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Minimicro",
  11453. height: math.unit(0.2, "inches")
  11454. },
  11455. {
  11456. name: "Micro",
  11457. height: math.unit(1.5, "inches")
  11458. },
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(5 + 10 / 12, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Minimacro",
  11466. height: math.unit(17 + 9 / 12, "feet")
  11467. },
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(177.5, "feet")
  11471. },
  11472. {
  11473. name: "Megamacro",
  11474. height: math.unit(152, "miles")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(6.5, "inches"),
  11483. weight: math.unit(13, "oz"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/dafydd-tomos/front.svg",
  11487. extra: 2990 / 2603,
  11488. bottom: 0.03
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(6.5, "inches"),
  11496. default: true
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(150, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/splinter/front.svg",
  11509. extra: 2990 / 2882,
  11510. bottom: 0.04
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(150, "lb"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/splinter/back.svg",
  11519. extra: 2990 / 2882,
  11520. bottom: 0.04
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Normal",
  11527. height: math.unit(6, "feet")
  11528. },
  11529. {
  11530. name: "Macro",
  11531. height: math.unit(230, "meters"),
  11532. default: true
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(4 + 10 / 12, "feet"),
  11541. weight: math.unit(480, "lb"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/snow-gabumon/front.svg",
  11545. extra: 1140 / 963,
  11546. bottom: 0.058
  11547. }
  11548. },
  11549. back: {
  11550. height: math.unit(4 + 10 / 12, "feet"),
  11551. weight: math.unit(480, "lb"),
  11552. name: "Back",
  11553. image: {
  11554. source: "./media/characters/snow-gabumon/back.svg",
  11555. extra: 1115 / 962,
  11556. bottom: 0.041
  11557. }
  11558. },
  11559. frontUndresed: {
  11560. height: math.unit(4 + 10 / 12, "feet"),
  11561. weight: math.unit(480, "lb"),
  11562. name: "Front (Undressed)",
  11563. image: {
  11564. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11565. extra: 1061 / 960,
  11566. bottom: 0.045
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Micro",
  11573. height: math.unit(1, "inch")
  11574. },
  11575. {
  11576. name: "Normal",
  11577. height: math.unit(4 + 10 / 12, "feet"),
  11578. default: true
  11579. },
  11580. {
  11581. name: "Macro",
  11582. height: math.unit(200, "feet")
  11583. },
  11584. {
  11585. name: "Megamacro",
  11586. height: math.unit(120, "miles")
  11587. },
  11588. {
  11589. name: "Gigamacro",
  11590. height: math.unit(9800, "miles")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(1.7, "meters"),
  11599. weight: math.unit(140, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/moody/front.svg",
  11603. extra: 3226 / 3007,
  11604. bottom: 0.087
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Micro",
  11611. height: math.unit(1, "mm")
  11612. },
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(1.7, "meters"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro",
  11620. height: math.unit(80, "meters")
  11621. },
  11622. {
  11623. name: "Macro+",
  11624. height: math.unit(500, "meters")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/zyas/front.svg",
  11637. extra: 1180 / 1120,
  11638. bottom: 0.045
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(10, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(500, "feet")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(5, "miles")
  11655. },
  11656. {
  11657. name: "Teramacro",
  11658. height: math.unit(150000, "miles")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/cuon/front.svg",
  11671. extra: 1390 / 1320,
  11672. bottom: 0.008
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Micro",
  11679. height: math.unit(3, "inches")
  11680. },
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(18 + 9 / 12, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(360, "feet")
  11689. },
  11690. {
  11691. name: "Megamacro",
  11692. height: math.unit(360, "miles")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11698. {
  11699. front: {
  11700. height: math.unit(2.4, "meters"),
  11701. weight: math.unit(70, "kg"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/nyanuxk/front.svg",
  11705. extra: 1172 / 1084,
  11706. bottom: 0.065
  11707. }
  11708. },
  11709. side: {
  11710. height: math.unit(2.4, "meters"),
  11711. weight: math.unit(70, "kg"),
  11712. name: "Side",
  11713. image: {
  11714. source: "./media/characters/nyanuxk/side.svg",
  11715. extra: 1190 / 1132,
  11716. bottom: 0.007
  11717. }
  11718. },
  11719. back: {
  11720. height: math.unit(2.4, "meters"),
  11721. weight: math.unit(70, "kg"),
  11722. name: "Back",
  11723. image: {
  11724. source: "./media/characters/nyanuxk/back.svg",
  11725. extra: 1200 / 1141,
  11726. bottom: 0.015
  11727. }
  11728. },
  11729. foot: {
  11730. height: math.unit(0.52, "meters"),
  11731. name: "Foot",
  11732. image: {
  11733. source: "./media/characters/nyanuxk/foot.svg"
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Micro",
  11740. height: math.unit(2, "cm")
  11741. },
  11742. {
  11743. name: "Normal",
  11744. height: math.unit(2.4, "meters"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Smaller Macro",
  11749. height: math.unit(120, "meters")
  11750. },
  11751. {
  11752. name: "Bigger Macro",
  11753. height: math.unit(1.2, "km")
  11754. },
  11755. {
  11756. name: "Megamacro",
  11757. height: math.unit(15, "kilometers")
  11758. },
  11759. {
  11760. name: "Gigamacro",
  11761. height: math.unit(2000, "km")
  11762. },
  11763. {
  11764. name: "Teramacro",
  11765. height: math.unit(500000, "km")
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11771. {
  11772. side: {
  11773. height: math.unit(6, "feet"),
  11774. name: "Side",
  11775. image: {
  11776. source: "./media/characters/ailbhe/side.svg",
  11777. extra: 757 / 464,
  11778. bottom: 0.041
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(1.07, "meters"),
  11786. default: true
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11792. {
  11793. front: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(120, "kg"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/zevulfius/front.svg",
  11799. extra: 965 / 903
  11800. }
  11801. },
  11802. side: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(120, "kg"),
  11805. name: "Side",
  11806. image: {
  11807. source: "./media/characters/zevulfius/side.svg",
  11808. extra: 939 / 900
  11809. }
  11810. },
  11811. back: {
  11812. height: math.unit(6, "feet"),
  11813. weight: math.unit(120, "kg"),
  11814. name: "Back",
  11815. image: {
  11816. source: "./media/characters/zevulfius/back.svg",
  11817. extra: 918 / 854,
  11818. bottom: 0.005
  11819. }
  11820. },
  11821. foot: {
  11822. height: math.unit(6 / 3.72, "feet"),
  11823. name: "Foot",
  11824. image: {
  11825. source: "./media/characters/zevulfius/foot.svg"
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(750, "meters")
  11833. },
  11834. {
  11835. name: "Megamacro",
  11836. height: math.unit(20, "km"),
  11837. default: true
  11838. },
  11839. {
  11840. name: "Gigamacro",
  11841. height: math.unit(2000, "km")
  11842. },
  11843. {
  11844. name: "Teramacro",
  11845. height: math.unit(250000, "km")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11851. {
  11852. front: {
  11853. height: math.unit(100, "feet"),
  11854. weight: math.unit(350, "kg"),
  11855. name: "Front",
  11856. image: {
  11857. source: "./media/characters/rikes/front.svg",
  11858. extra: 1565 / 1483,
  11859. bottom: 0.017
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(100, "feet"),
  11867. default: true
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(8, "feet"),
  11876. weight: math.unit(356, "lb"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/adam-silver-mane/front.svg",
  11880. extra: 1036/937,
  11881. bottom: 63/1099
  11882. }
  11883. },
  11884. side: {
  11885. height: math.unit(8, "feet"),
  11886. weight: math.unit(356, "lb"),
  11887. name: "Side",
  11888. image: {
  11889. source: "./media/characters/adam-silver-mane/side.svg",
  11890. extra: 997/901,
  11891. bottom: 59/1056
  11892. }
  11893. },
  11894. frontNsfw: {
  11895. height: math.unit(8, "feet"),
  11896. weight: math.unit(356, "lb"),
  11897. name: "Front (NSFW)",
  11898. image: {
  11899. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11900. extra: 1036/937,
  11901. bottom: 63/1099
  11902. }
  11903. },
  11904. sideNsfw: {
  11905. height: math.unit(8, "feet"),
  11906. weight: math.unit(356, "lb"),
  11907. name: "Side (NSFW)",
  11908. image: {
  11909. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11910. extra: 997/901,
  11911. bottom: 59/1056
  11912. }
  11913. },
  11914. dick: {
  11915. height: math.unit(2.1, "feet"),
  11916. name: "Dick",
  11917. image: {
  11918. source: "./media/characters/adam-silver-mane/dick.svg"
  11919. }
  11920. },
  11921. taur: {
  11922. height: math.unit(16, "feet"),
  11923. weight: math.unit(1500, "kg"),
  11924. name: "Taur",
  11925. image: {
  11926. source: "./media/characters/adam-silver-mane/taur.svg",
  11927. extra: 1713 / 1571,
  11928. bottom: 0.01
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(8, "feet")
  11936. },
  11937. {
  11938. name: "Minimacro",
  11939. height: math.unit(80, "feet")
  11940. },
  11941. {
  11942. name: "MDA",
  11943. height: math.unit(80, "meters")
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(800, "feet"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(8000, "feet")
  11953. },
  11954. {
  11955. name: "Gigamacro",
  11956. height: math.unit(800, "miles")
  11957. },
  11958. {
  11959. name: "Teramacro",
  11960. height: math.unit(80000, "miles")
  11961. },
  11962. {
  11963. name: "Celestial",
  11964. height: math.unit(8e6, "miles")
  11965. },
  11966. {
  11967. name: "Star Dragon",
  11968. height: math.unit(800000, "parsecs")
  11969. },
  11970. {
  11971. name: "Godly",
  11972. height: math.unit(800, "teraparsecs")
  11973. },
  11974. ]
  11975. ))
  11976. characterMakers.push(() => makeCharacter(
  11977. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11978. {
  11979. front: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(150, "lb"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/ky'owin/front.svg",
  11985. extra: 3862/3053,
  11986. bottom: 74/3936
  11987. }
  11988. },
  11989. },
  11990. [
  11991. {
  11992. name: "Normal",
  11993. height: math.unit(6 + 8 / 12, "feet")
  11994. },
  11995. {
  11996. name: "Large",
  11997. height: math.unit(68, "feet")
  11998. },
  11999. {
  12000. name: "Macro",
  12001. height: math.unit(132, "feet")
  12002. },
  12003. {
  12004. name: "Macro+",
  12005. height: math.unit(340, "feet")
  12006. },
  12007. {
  12008. name: "Macro++",
  12009. height: math.unit(680, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Megamacro",
  12014. height: math.unit(1, "mile")
  12015. },
  12016. {
  12017. name: "Megamacro+",
  12018. height: math.unit(10, "miles")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12024. {
  12025. front: {
  12026. height: math.unit(4, "feet"),
  12027. weight: math.unit(50, "lb"),
  12028. name: "Front",
  12029. image: {
  12030. source: "./media/characters/mal/front.svg",
  12031. extra: 785 / 724,
  12032. bottom: 0.07
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Micro",
  12039. height: math.unit(4, "inches")
  12040. },
  12041. {
  12042. name: "Normal",
  12043. height: math.unit(4, "feet"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(200, "feet")
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12054. {
  12055. front: {
  12056. height: math.unit(6, "feet"),
  12057. weight: math.unit(150, "lb"),
  12058. name: "Front",
  12059. image: {
  12060. source: "./media/characters/jordan-deware/front.svg",
  12061. extra: 1191 / 1012
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Nano",
  12068. height: math.unit(0.01, "mm")
  12069. },
  12070. {
  12071. name: "Minimicro",
  12072. height: math.unit(1, "mm")
  12073. },
  12074. {
  12075. name: "Micro",
  12076. height: math.unit(0.5, "inches")
  12077. },
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(4, "feet"),
  12081. default: true
  12082. },
  12083. {
  12084. name: "Minimacro",
  12085. height: math.unit(40, "meters")
  12086. },
  12087. {
  12088. name: "Small Macro",
  12089. height: math.unit(400, "meters")
  12090. },
  12091. {
  12092. name: "Macro",
  12093. height: math.unit(4, "miles")
  12094. },
  12095. {
  12096. name: "Megamacro",
  12097. height: math.unit(40, "miles")
  12098. },
  12099. {
  12100. name: "Megamacro+",
  12101. height: math.unit(400, "miles")
  12102. },
  12103. {
  12104. name: "Gigamacro",
  12105. height: math.unit(400000, "miles")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12111. {
  12112. side: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Side",
  12116. image: {
  12117. source: "./media/characters/kimiko/side.svg",
  12118. extra: 600 / 358
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(15, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(220, "feet")
  12131. },
  12132. {
  12133. name: "Macro+",
  12134. height: math.unit(1450, "feet")
  12135. },
  12136. {
  12137. name: "Megamacro",
  12138. height: math.unit(11500, "feet")
  12139. },
  12140. {
  12141. name: "Gigamacro",
  12142. height: math.unit(9500, "miles")
  12143. },
  12144. {
  12145. name: "Teramacro",
  12146. height: math.unit(2208005005, "miles")
  12147. },
  12148. {
  12149. name: "Examacro",
  12150. height: math.unit(2750, "parsecs")
  12151. },
  12152. {
  12153. name: "Zettamacro",
  12154. height: math.unit(101500, "parsecs")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6, "feet"),
  12163. weight: math.unit(70, "kg"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/andrew-sleepy/front.svg"
  12167. }
  12168. },
  12169. side: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(70, "kg"),
  12172. name: "Side",
  12173. image: {
  12174. source: "./media/characters/andrew-sleepy/side.svg"
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Micro",
  12181. height: math.unit(1, "mm"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(150, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/judio/front.svg",
  12195. extra: 1258 / 1110
  12196. }
  12197. },
  12198. },
  12199. [
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(5 + 6 / 12, "feet")
  12203. },
  12204. {
  12205. name: "Macro",
  12206. height: math.unit(1000, "feet"),
  12207. default: true
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(10, "miles")
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12217. {
  12218. frontDressed: {
  12219. height: math.unit(6, "feet"),
  12220. weight: math.unit(68, "kg"),
  12221. name: "Front (Dressed)",
  12222. image: {
  12223. source: "./media/characters/nomaxice/front-dressed.svg",
  12224. extra: 1137/824,
  12225. bottom: 74/1211
  12226. }
  12227. },
  12228. frontShorts: {
  12229. height: math.unit(6, "feet"),
  12230. weight: math.unit(68, "kg"),
  12231. name: "Front (Shorts)",
  12232. image: {
  12233. source: "./media/characters/nomaxice/front-shorts.svg",
  12234. extra: 1137/824,
  12235. bottom: 74/1211
  12236. }
  12237. },
  12238. back: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(68, "kg"),
  12241. name: "Back",
  12242. image: {
  12243. source: "./media/characters/nomaxice/back.svg",
  12244. extra: 822/786,
  12245. bottom: 39/861
  12246. }
  12247. },
  12248. hand: {
  12249. height: math.unit(0.565, "feet"),
  12250. name: "Hand",
  12251. image: {
  12252. source: "./media/characters/nomaxice/hand.svg"
  12253. }
  12254. },
  12255. foot: {
  12256. height: math.unit(1, "feet"),
  12257. name: "Foot",
  12258. image: {
  12259. source: "./media/characters/nomaxice/foot.svg"
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(8, "cm")
  12267. },
  12268. {
  12269. name: "Norm",
  12270. height: math.unit(1.82, "m")
  12271. },
  12272. {
  12273. name: "Norm+",
  12274. height: math.unit(8.8, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Big",
  12279. height: math.unit(8, "meters")
  12280. },
  12281. {
  12282. name: "Macro",
  12283. height: math.unit(18, "meters")
  12284. },
  12285. {
  12286. name: "Macro+",
  12287. height: math.unit(88, "meters")
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12293. {
  12294. front: {
  12295. height: math.unit(12, "feet"),
  12296. weight: math.unit(1.5, "tons"),
  12297. name: "Front",
  12298. image: {
  12299. source: "./media/characters/dydros/front.svg",
  12300. extra: 863 / 800,
  12301. bottom: 0.015
  12302. }
  12303. },
  12304. back: {
  12305. height: math.unit(12, "feet"),
  12306. weight: math.unit(1.5, "tons"),
  12307. name: "Back",
  12308. image: {
  12309. source: "./media/characters/dydros/back.svg",
  12310. extra: 900 / 843,
  12311. bottom: 0.005
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(12, "feet"),
  12319. default: true
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12325. {
  12326. front: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(100, "kg"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/riggi/front.svg",
  12332. extra: 5787 / 5303
  12333. }
  12334. },
  12335. hyper: {
  12336. height: math.unit(6 * 5 / 3, "feet"),
  12337. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12338. name: "Hyper",
  12339. image: {
  12340. source: "./media/characters/riggi/hyper.svg",
  12341. extra: 3595 / 3485
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Small Macro",
  12348. height: math.unit(50, "feet")
  12349. },
  12350. {
  12351. name: "Default",
  12352. height: math.unit(200, "feet"),
  12353. default: true
  12354. },
  12355. {
  12356. name: "Loom",
  12357. height: math.unit(10000, "feet")
  12358. },
  12359. {
  12360. name: "Cruising Altitude",
  12361. height: math.unit(30000, "feet")
  12362. },
  12363. {
  12364. name: "Megamacro",
  12365. height: math.unit(100, "miles")
  12366. },
  12367. {
  12368. name: "Continent Sized",
  12369. height: math.unit(2800, "miles")
  12370. },
  12371. {
  12372. name: "Earth Sized",
  12373. height: math.unit(8000, "miles")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(250, "lb"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/alexi/front.svg",
  12386. extra: 3483 / 3291,
  12387. bottom: 0.04
  12388. }
  12389. },
  12390. back: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(250, "lb"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/alexi/back.svg",
  12396. extra: 3533 / 3356,
  12397. bottom: 0.021
  12398. }
  12399. },
  12400. frontTransforming: {
  12401. height: math.unit(8.58, "feet"),
  12402. weight: math.unit(1300, "lb"),
  12403. name: "Transforming",
  12404. image: {
  12405. source: "./media/characters/alexi/front-transforming.svg",
  12406. extra: 437 / 409,
  12407. bottom: 19 / 458.66
  12408. }
  12409. },
  12410. frontTransformed: {
  12411. height: math.unit(12.5, "feet"),
  12412. weight: math.unit(4000, "lb"),
  12413. name: "Transformed",
  12414. image: {
  12415. source: "./media/characters/alexi/front-transformed.svg",
  12416. extra: 639 / 614,
  12417. bottom: 30.55 / 671
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Normal",
  12424. height: math.unit(14, "feet"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Minimacro",
  12429. height: math.unit(30, "meters")
  12430. },
  12431. {
  12432. name: "Macro",
  12433. height: math.unit(500, "meters")
  12434. },
  12435. {
  12436. name: "Megamacro",
  12437. height: math.unit(9000, "km")
  12438. },
  12439. {
  12440. name: "Teramacro",
  12441. height: math.unit(384000, "km")
  12442. },
  12443. ]
  12444. ))
  12445. characterMakers.push(() => makeCharacter(
  12446. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12447. {
  12448. front: {
  12449. height: math.unit(6, "feet"),
  12450. weight: math.unit(150, "lb"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/kayroo/front.svg",
  12454. extra: 1153 / 1038,
  12455. bottom: 0.06
  12456. }
  12457. },
  12458. foot: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(150, "lb"),
  12461. name: "Foot",
  12462. image: {
  12463. source: "./media/characters/kayroo/foot.svg"
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(8, "feet"),
  12471. default: true
  12472. },
  12473. {
  12474. name: "Minimacro",
  12475. height: math.unit(250, "feet")
  12476. },
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(2800, "feet")
  12480. },
  12481. {
  12482. name: "Megamacro",
  12483. height: math.unit(5200, "feet")
  12484. },
  12485. {
  12486. name: "Gigamacro",
  12487. height: math.unit(27000, "feet")
  12488. },
  12489. {
  12490. name: "Omega",
  12491. height: math.unit(45000, "feet")
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12497. {
  12498. front: {
  12499. height: math.unit(18, "feet"),
  12500. weight: math.unit(5800, "lb"),
  12501. name: "Front",
  12502. image: {
  12503. source: "./media/characters/rhys/front.svg",
  12504. extra: 3386 / 3090,
  12505. bottom: 0.07
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(18, "feet"),
  12513. default: true
  12514. },
  12515. {
  12516. name: "Working Size",
  12517. height: math.unit(200, "feet")
  12518. },
  12519. {
  12520. name: "Demolition Size",
  12521. height: math.unit(2000, "feet")
  12522. },
  12523. {
  12524. name: "Maximum Licensed Size",
  12525. height: math.unit(5, "miles")
  12526. },
  12527. {
  12528. name: "Maximum Observed Size",
  12529. height: math.unit(10, "yottameters")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(6, "feet"),
  12538. weight: math.unit(250, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/toto/front.svg",
  12542. extra: 527 / 479,
  12543. bottom: 0.05
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Micro",
  12550. height: math.unit(3, "feet")
  12551. },
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(10, "feet")
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(150, "feet"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Megamacro",
  12563. height: math.unit(1200, "feet")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "King", species: ["lion"], tags: ["anthro"] },
  12569. {
  12570. back: {
  12571. height: math.unit(6, "feet"),
  12572. weight: math.unit(150, "lb"),
  12573. name: "Back",
  12574. image: {
  12575. source: "./media/characters/king/back.svg"
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Micro",
  12582. height: math.unit(2, "inches")
  12583. },
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(8, "feet")
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(200, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(50, "miles")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(11, "feet"),
  12604. weight: math.unit(1400, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/cordite/front.svg",
  12608. extra: 1919/1827,
  12609. bottom: 40/1959
  12610. }
  12611. },
  12612. side: {
  12613. height: math.unit(11, "feet"),
  12614. weight: math.unit(1400, "lb"),
  12615. name: "Side",
  12616. image: {
  12617. source: "./media/characters/cordite/side.svg",
  12618. extra: 1908/1793,
  12619. bottom: 38/1946
  12620. }
  12621. },
  12622. back: {
  12623. height: math.unit(11, "feet"),
  12624. weight: math.unit(1400, "lb"),
  12625. name: "Back",
  12626. image: {
  12627. source: "./media/characters/cordite/back.svg",
  12628. extra: 1938/1837,
  12629. bottom: 10/1948
  12630. }
  12631. },
  12632. feral: {
  12633. height: math.unit(2, "feet"),
  12634. weight: math.unit(90, "lb"),
  12635. name: "Feral",
  12636. image: {
  12637. source: "./media/characters/cordite/feral.svg",
  12638. extra: 1260 / 755,
  12639. bottom: 0.05
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(11, "feet"),
  12647. default: true
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/pianostrong/front.svg",
  12660. extra: 6577 / 6254,
  12661. bottom: 0.02
  12662. }
  12663. },
  12664. side: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(150, "lb"),
  12667. name: "Side",
  12668. image: {
  12669. source: "./media/characters/pianostrong/side.svg",
  12670. extra: 6106 / 5730
  12671. }
  12672. },
  12673. back: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(150, "lb"),
  12676. name: "Back",
  12677. image: {
  12678. source: "./media/characters/pianostrong/back.svg",
  12679. extra: 6085 / 5733,
  12680. bottom: 0.01
  12681. }
  12682. },
  12683. },
  12684. [
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(100, "feet")
  12688. },
  12689. {
  12690. name: "Macro+",
  12691. height: math.unit(300, "feet"),
  12692. default: true
  12693. },
  12694. {
  12695. name: "Macro++",
  12696. height: math.unit(1000, "feet")
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(150, "lb"),
  12706. name: "Front",
  12707. image: {
  12708. source: "./media/characters/kona/front.svg",
  12709. extra: 2960 / 2629,
  12710. bottom: 0.005
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(11 + 8 / 12, "feet")
  12718. },
  12719. {
  12720. name: "Macro",
  12721. height: math.unit(850, "feet"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Macro+",
  12726. height: math.unit(1.5, "km"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(80, "miles")
  12732. },
  12733. {
  12734. name: "Gigamacro",
  12735. height: math.unit(3500, "miles")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12741. {
  12742. side: {
  12743. height: math.unit(1.9, "meters"),
  12744. weight: math.unit(326, "kg"),
  12745. name: "Side",
  12746. image: {
  12747. source: "./media/characters/levi/side.svg",
  12748. extra: 1704 / 1334,
  12749. bottom: 0.02
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(1.9, "meters"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Macro",
  12761. height: math.unit(20, "meters")
  12762. },
  12763. {
  12764. name: "Macro+",
  12765. height: math.unit(200, "meters")
  12766. },
  12767. {
  12768. name: "Megamacro",
  12769. height: math.unit(2, "km")
  12770. },
  12771. {
  12772. name: "Megamacro+",
  12773. height: math.unit(20, "km")
  12774. },
  12775. {
  12776. name: "Gigamacro",
  12777. height: math.unit(2500, "km")
  12778. },
  12779. {
  12780. name: "Gigamacro+",
  12781. height: math.unit(120000, "km")
  12782. },
  12783. {
  12784. name: "Teramacro",
  12785. height: math.unit(7.77e6, "km")
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(6 + 4/12, "feet"),
  12794. weight: math.unit(190, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/bmc/front.svg",
  12798. extra: 1626/1472,
  12799. bottom: 79/1705
  12800. }
  12801. },
  12802. back: {
  12803. height: math.unit(6 + 4/12, "feet"),
  12804. weight: math.unit(190, "lb"),
  12805. name: "Back",
  12806. image: {
  12807. source: "./media/characters/bmc/back.svg",
  12808. extra: 1640/1479,
  12809. bottom: 45/1685
  12810. }
  12811. },
  12812. frontArmor: {
  12813. height: math.unit(6 + 4/12, "feet"),
  12814. weight: math.unit(190, "lb"),
  12815. name: "Front-armor",
  12816. image: {
  12817. source: "./media/characters/bmc/front-armor.svg",
  12818. extra: 1538/1468,
  12819. bottom: 79/1617
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Human-sized",
  12826. height: math.unit(6 + 4 / 12, "feet")
  12827. },
  12828. {
  12829. name: "Interactive Size",
  12830. height: math.unit(25, "feet")
  12831. },
  12832. {
  12833. name: "Small",
  12834. height: math.unit(250, "feet")
  12835. },
  12836. {
  12837. name: "Normal",
  12838. height: math.unit(1250, "feet"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Good Day",
  12843. height: math.unit(88, "miles")
  12844. },
  12845. {
  12846. name: "Largest Measured Size",
  12847. height: math.unit(105.960, "galaxies")
  12848. },
  12849. ]
  12850. ))
  12851. characterMakers.push(() => makeCharacter(
  12852. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12853. {
  12854. front: {
  12855. height: math.unit(20, "feet"),
  12856. weight: math.unit(2016, "kg"),
  12857. name: "Front",
  12858. image: {
  12859. source: "./media/characters/sven-the-kaiju/front.svg",
  12860. extra: 1277/1250,
  12861. bottom: 35/1312
  12862. }
  12863. },
  12864. mouth: {
  12865. height: math.unit(1.85, "feet"),
  12866. name: "Mouth",
  12867. image: {
  12868. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Fairy",
  12875. height: math.unit(6, "inches")
  12876. },
  12877. {
  12878. name: "Normal",
  12879. height: math.unit(20, "feet"),
  12880. default: true
  12881. },
  12882. {
  12883. name: "Rampage",
  12884. height: math.unit(200, "feet")
  12885. },
  12886. {
  12887. name: "Archfey Forest Guardian",
  12888. height: math.unit(1, "mile")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(4, "meters"),
  12897. weight: math.unit(2, "tons"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/marik/front.svg",
  12901. extra: 1057 / 1003,
  12902. bottom: 0.08
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(4, "meters"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(20, "meters")
  12915. },
  12916. {
  12917. name: "Megamacro",
  12918. height: math.unit(50, "km")
  12919. },
  12920. {
  12921. name: "Gigamacro",
  12922. height: math.unit(100, "km")
  12923. },
  12924. {
  12925. name: "Alpha Macro",
  12926. height: math.unit(7.88e7, "yottameters")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(110, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/mel/front.svg",
  12939. extra: 736 / 617,
  12940. bottom: 0.017
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Pico",
  12947. height: math.unit(3, "pm")
  12948. },
  12949. {
  12950. name: "Nano",
  12951. height: math.unit(3, "nm")
  12952. },
  12953. {
  12954. name: "Micro",
  12955. height: math.unit(0.3, "mm"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Micro+",
  12960. height: math.unit(3, "mm")
  12961. },
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(5 + 10.5 / 12, "feet")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12970. {
  12971. kaiju: {
  12972. height: math.unit(1.75, "meters"),
  12973. weight: math.unit(55, "kg"),
  12974. name: "Kaiju",
  12975. image: {
  12976. source: "./media/characters/lykonous/kaiju.svg",
  12977. extra: 1055 / 946,
  12978. bottom: 0.135
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(2.5, "meters"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Kaiju Dragon",
  12990. height: math.unit(60, "meters")
  12991. },
  12992. {
  12993. name: "Mega Kaiju",
  12994. height: math.unit(120, "km")
  12995. },
  12996. {
  12997. name: "Giga Kaiju",
  12998. height: math.unit(200, "megameters")
  12999. },
  13000. {
  13001. name: "Terra Kaiju",
  13002. height: math.unit(400, "gigameters")
  13003. },
  13004. {
  13005. name: "Kaiju Dragon God",
  13006. height: math.unit(13000, "exaparsecs")
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(6, "feet"),
  13015. weight: math.unit(150, "lb"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/blü/front.svg",
  13019. extra: 1883 / 1564,
  13020. bottom: 0.031
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(13, "feet"),
  13028. default: true
  13029. },
  13030. {
  13031. name: "Big Boi",
  13032. height: math.unit(150, "meters")
  13033. },
  13034. {
  13035. name: "Mini Stomper",
  13036. height: math.unit(300, "meters")
  13037. },
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(1000, "meters")
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(11000, "meters")
  13045. },
  13046. {
  13047. name: "Gigamacro",
  13048. height: math.unit(11000, "km")
  13049. },
  13050. {
  13051. name: "Teramacro",
  13052. height: math.unit(420000, "km")
  13053. },
  13054. {
  13055. name: "Examacro",
  13056. height: math.unit(120, "parsecs")
  13057. },
  13058. {
  13059. name: "God Tho",
  13060. height: math.unit(98000000000, "parsecs")
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13066. {
  13067. taurFront: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(200, "lb"),
  13070. name: "Taur (Front)",
  13071. image: {
  13072. source: "./media/characters/scales/taur-front.svg",
  13073. extra: 1,
  13074. bottom: 0.05
  13075. }
  13076. },
  13077. taurBack: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(200, "lb"),
  13080. name: "Taur (Back)",
  13081. image: {
  13082. source: "./media/characters/scales/taur-back.svg",
  13083. extra: 1,
  13084. bottom: 0.08
  13085. }
  13086. },
  13087. anthro: {
  13088. height: math.unit(6 * 7 / 12, "feet"),
  13089. weight: math.unit(100, "lb"),
  13090. name: "Anthro",
  13091. image: {
  13092. source: "./media/characters/scales/anthro.svg",
  13093. extra: 1,
  13094. bottom: 0.06
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(12, "feet"),
  13102. default: true
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/koragos/front.svg",
  13115. extra: 841 / 794,
  13116. bottom: 0.035
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6, "feet"),
  13121. weight: math.unit(150, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/koragos/back.svg",
  13125. extra: 841 / 810,
  13126. bottom: 0.022
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Normal",
  13133. height: math.unit(6 + 11 / 12, "feet"),
  13134. default: true
  13135. },
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(490, "feet")
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(10, "miles")
  13143. },
  13144. {
  13145. name: "Gigamacro",
  13146. height: math.unit(50, "miles")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(250, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/xylrem/front.svg",
  13159. extra: 3323 / 3050,
  13160. bottom: 0.065
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Micro",
  13167. height: math.unit(4, "feet")
  13168. },
  13169. {
  13170. name: "Normal",
  13171. height: math.unit(16, "feet"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Macro",
  13176. height: math.unit(2720, "feet")
  13177. },
  13178. {
  13179. name: "Megamacro",
  13180. height: math.unit(25000, "miles")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(8, "feet"),
  13189. weight: math.unit(250, "kg"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/ikideru/front.svg",
  13193. extra: 930 / 870,
  13194. bottom: 0.087
  13195. }
  13196. },
  13197. back: {
  13198. height: math.unit(8, "feet"),
  13199. weight: math.unit(250, "kg"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/ikideru/back.svg",
  13203. extra: 919 / 852,
  13204. bottom: 0.055
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Rare",
  13211. height: math.unit(8, "feet"),
  13212. default: true
  13213. },
  13214. {
  13215. name: "Playful Loom",
  13216. height: math.unit(80, "feet")
  13217. },
  13218. {
  13219. name: "City Leaner",
  13220. height: math.unit(230, "feet")
  13221. },
  13222. {
  13223. name: "Megamacro",
  13224. height: math.unit(2500, "feet")
  13225. },
  13226. {
  13227. name: "Gigamacro",
  13228. height: math.unit(26400, "feet")
  13229. },
  13230. {
  13231. name: "Tectonic Shifter",
  13232. height: math.unit(1.7, "megameters")
  13233. },
  13234. {
  13235. name: "Planet Carer",
  13236. height: math.unit(21, "megameters")
  13237. },
  13238. {
  13239. name: "God",
  13240. height: math.unit(11157.22, "parsecs")
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(120, "lb"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/neo/front.svg"
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Micro",
  13259. height: math.unit(2, "inches"),
  13260. default: true
  13261. },
  13262. {
  13263. name: "Human Size",
  13264. height: math.unit(5 + 8 / 12, "feet")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(13 + 10 / 12, "feet"),
  13273. weight: math.unit(5320, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/chauncey-chantz/front.svg",
  13277. extra: 1587 / 1435,
  13278. bottom: 0.02
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(13 + 10 / 12, "feet"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Macro",
  13290. height: math.unit(45, "feet")
  13291. },
  13292. {
  13293. name: "Megamacro",
  13294. height: math.unit(250, "miles")
  13295. },
  13296. {
  13297. name: "Planetary",
  13298. height: math.unit(10000, "miles")
  13299. },
  13300. {
  13301. name: "Galactic",
  13302. height: math.unit(40000, "parsecs")
  13303. },
  13304. {
  13305. name: "Universal",
  13306. height: math.unit(1, "yottameter")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13312. {
  13313. front: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(150, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/epifox/front.svg",
  13319. extra: 1,
  13320. bottom: 0.075
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Micro",
  13327. height: math.unit(6, "inches")
  13328. },
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(12, "feet"),
  13332. default: true
  13333. },
  13334. {
  13335. name: "Macro",
  13336. height: math.unit(3810, "feet")
  13337. },
  13338. {
  13339. name: "Megamacro",
  13340. height: math.unit(500, "miles")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(1.8796, "m"),
  13349. weight: math.unit(230, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/colin-t/front.svg",
  13353. extra: 1272 / 1193,
  13354. bottom: 0.07
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Micro",
  13361. height: math.unit(0.571, "meters")
  13362. },
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(1.8796, "meters"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Tall",
  13370. height: math.unit(4, "meters")
  13371. },
  13372. {
  13373. name: "Macro",
  13374. height: math.unit(67.241, "meters")
  13375. },
  13376. {
  13377. name: "Megamacro",
  13378. height: math.unit(371.856, "meters")
  13379. },
  13380. {
  13381. name: "Planetary",
  13382. height: math.unit(12631.5689, "km")
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(1.85, "meters"),
  13391. weight: math.unit(80, "kg"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/matvei/front.svg",
  13395. extra: 456/447,
  13396. bottom: 8/464
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(1.85, "meters"),
  13401. weight: math.unit(80, "kg"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/matvei/back.svg",
  13405. extra: 434/427,
  13406. bottom: 11/445
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Normal",
  13413. height: math.unit(1.85, "meters"),
  13414. default: true
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(5 + 9 / 12, "feet"),
  13423. weight: math.unit(70, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/quincy/front.svg",
  13427. extra: 3041 / 2751
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(5 + 9 / 12, "feet"),
  13432. weight: math.unit(70, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/quincy/back.svg",
  13436. extra: 3041 / 2751
  13437. }
  13438. },
  13439. flying: {
  13440. height: math.unit(5 + 4 / 12, "feet"),
  13441. weight: math.unit(70, "lb"),
  13442. name: "Flying",
  13443. image: {
  13444. source: "./media/characters/quincy/flying.svg",
  13445. extra: 1044 / 930
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Micro",
  13452. height: math.unit(3, "cm")
  13453. },
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(5 + 9 / 12, "feet")
  13457. },
  13458. {
  13459. name: "Macro",
  13460. height: math.unit(200, "meters"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Megamacro",
  13465. height: math.unit(1000, "meters")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(3 + 11/12, "feet"),
  13474. weight: math.unit(50, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/vanrel/front.svg",
  13478. extra: 1104/949,
  13479. bottom: 52/1156
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(3 + 11/12, "feet"),
  13484. weight: math.unit(50, "lb"),
  13485. name: "Back",
  13486. image: {
  13487. source: "./media/characters/vanrel/back.svg",
  13488. extra: 1119/976,
  13489. bottom: 37/1156
  13490. }
  13491. },
  13492. tome: {
  13493. height: math.unit(1.35, "feet"),
  13494. weight: math.unit(10, "lb"),
  13495. name: "Vanrel's Tome",
  13496. rename: true,
  13497. image: {
  13498. source: "./media/characters/vanrel/tome.svg"
  13499. }
  13500. },
  13501. beans: {
  13502. height: math.unit(0.89, "feet"),
  13503. name: "Beans",
  13504. image: {
  13505. source: "./media/characters/vanrel/beans.svg"
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(3 + 11/12, "feet"),
  13513. default: true
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(7 + 5 / 12, "feet"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/kuiper-vanrel/front.svg",
  13525. extra: 1219/1169,
  13526. bottom: 69/1288
  13527. }
  13528. },
  13529. back: {
  13530. height: math.unit(7 + 5 / 12, "feet"),
  13531. name: "Back",
  13532. image: {
  13533. source: "./media/characters/kuiper-vanrel/back.svg",
  13534. extra: 1236/1193,
  13535. bottom: 27/1263
  13536. }
  13537. },
  13538. foot: {
  13539. height: math.unit(0.55, "meters"),
  13540. name: "Foot",
  13541. image: {
  13542. source: "./media/characters/kuiper-vanrel/foot.svg",
  13543. }
  13544. },
  13545. battle: {
  13546. height: math.unit(6.824, "feet"),
  13547. name: "Battle",
  13548. image: {
  13549. source: "./media/characters/kuiper-vanrel/battle.svg",
  13550. extra: 1466 / 1327,
  13551. bottom: 29 / 1492.5
  13552. }
  13553. },
  13554. meerkui: {
  13555. height: math.unit(18, "inches"),
  13556. name: "Meerkui",
  13557. image: {
  13558. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13559. extra: 1354/1289,
  13560. bottom: 69/1423
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(7 + 5 / 12, "feet"),
  13568. default: true
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(8 + 5 / 12, "feet"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/keset-vanrel/front.svg",
  13580. extra: 1231/1148,
  13581. bottom: 82/1313
  13582. }
  13583. },
  13584. back: {
  13585. height: math.unit(8 + 5 / 12, "feet"),
  13586. name: "Back",
  13587. image: {
  13588. source: "./media/characters/keset-vanrel/back.svg",
  13589. extra: 1240/1174,
  13590. bottom: 33/1273
  13591. }
  13592. },
  13593. hand: {
  13594. height: math.unit(0.6, "meters"),
  13595. name: "Hand",
  13596. image: {
  13597. source: "./media/characters/keset-vanrel/hand.svg"
  13598. }
  13599. },
  13600. foot: {
  13601. height: math.unit(0.94978, "meters"),
  13602. name: "Foot",
  13603. image: {
  13604. source: "./media/characters/keset-vanrel/foot.svg"
  13605. }
  13606. },
  13607. battle: {
  13608. height: math.unit(7.408, "feet"),
  13609. name: "Battle",
  13610. image: {
  13611. source: "./media/characters/keset-vanrel/battle.svg",
  13612. extra: 1890 / 1386,
  13613. bottom: 73.28 / 1970
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(8 + 5 / 12, "feet"),
  13621. default: true
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13627. {
  13628. front: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(150, "lb"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/neos/front.svg",
  13634. extra: 1696 / 992,
  13635. bottom: 0.14
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Normal",
  13642. height: math.unit(54, "cm"),
  13643. default: true
  13644. },
  13645. {
  13646. name: "Macro",
  13647. height: math.unit(100, "m")
  13648. },
  13649. {
  13650. name: "Megamacro",
  13651. height: math.unit(10, "km")
  13652. },
  13653. {
  13654. name: "Megamacro+",
  13655. height: math.unit(100, "km")
  13656. },
  13657. {
  13658. name: "Gigamacro",
  13659. height: math.unit(100, "Mm")
  13660. },
  13661. {
  13662. name: "Teramacro",
  13663. height: math.unit(100, "Gm")
  13664. },
  13665. {
  13666. name: "Examacro",
  13667. height: math.unit(100, "Em")
  13668. },
  13669. {
  13670. name: "Godly",
  13671. height: math.unit(10000, "Ym")
  13672. },
  13673. {
  13674. name: "Beyond Godly",
  13675. height: math.unit(25, "multiverses")
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13681. {
  13682. feminine: {
  13683. height: math.unit(5, "feet"),
  13684. weight: math.unit(100, "lb"),
  13685. name: "Feminine",
  13686. image: {
  13687. source: "./media/characters/sammy-mouse/feminine.svg",
  13688. extra: 2526 / 2425,
  13689. bottom: 0.123
  13690. }
  13691. },
  13692. masculine: {
  13693. height: math.unit(5, "feet"),
  13694. weight: math.unit(100, "lb"),
  13695. name: "Masculine",
  13696. image: {
  13697. source: "./media/characters/sammy-mouse/masculine.svg",
  13698. extra: 2526 / 2425,
  13699. bottom: 0.123
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Micro",
  13706. height: math.unit(5, "inches")
  13707. },
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(5, "feet"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(60, "feet")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(4, "feet"),
  13724. weight: math.unit(50, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/kole/front.svg",
  13728. extra: 1423 / 1303,
  13729. bottom: 0.025
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(4, "feet"),
  13734. weight: math.unit(50, "lb"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/kole/back.svg",
  13738. extra: 1426 / 1280,
  13739. bottom: 0.02
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(4, "feet"),
  13747. default: true
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(2.5, "feet"),
  13756. weight: math.unit(32, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/rufran/front.svg",
  13760. extra: 1313/885,
  13761. bottom: 94/1407
  13762. }
  13763. },
  13764. side: {
  13765. height: math.unit(2.5, "feet"),
  13766. weight: math.unit(32, "lb"),
  13767. name: "Side",
  13768. image: {
  13769. source: "./media/characters/rufran/side.svg",
  13770. extra: 1109/852,
  13771. bottom: 118/1227
  13772. }
  13773. },
  13774. back: {
  13775. height: math.unit(2.5, "feet"),
  13776. weight: math.unit(32, "lb"),
  13777. name: "Back",
  13778. image: {
  13779. source: "./media/characters/rufran/back.svg",
  13780. extra: 1280/878,
  13781. bottom: 131/1411
  13782. }
  13783. },
  13784. mouth: {
  13785. height: math.unit(1.13, "feet"),
  13786. name: "Mouth",
  13787. image: {
  13788. source: "./media/characters/rufran/mouth.svg"
  13789. }
  13790. },
  13791. foot: {
  13792. height: math.unit(1.33, "feet"),
  13793. name: "Foot",
  13794. image: {
  13795. source: "./media/characters/rufran/foot.svg"
  13796. }
  13797. },
  13798. koboldFront: {
  13799. height: math.unit(2 + 6 / 12, "feet"),
  13800. weight: math.unit(20, "lb"),
  13801. name: "Front (Kobold)",
  13802. image: {
  13803. source: "./media/characters/rufran/kobold-front.svg",
  13804. extra: 2041 / 1839,
  13805. bottom: 0.055
  13806. }
  13807. },
  13808. koboldBack: {
  13809. height: math.unit(2 + 6 / 12, "feet"),
  13810. weight: math.unit(20, "lb"),
  13811. name: "Back (Kobold)",
  13812. image: {
  13813. source: "./media/characters/rufran/kobold-back.svg",
  13814. extra: 2054 / 1839,
  13815. bottom: 0.01
  13816. }
  13817. },
  13818. koboldHand: {
  13819. height: math.unit(0.2166, "meters"),
  13820. name: "Hand (Kobold)",
  13821. image: {
  13822. source: "./media/characters/rufran/kobold-hand.svg"
  13823. }
  13824. },
  13825. koboldFoot: {
  13826. height: math.unit(0.185, "meters"),
  13827. name: "Foot (Kobold)",
  13828. image: {
  13829. source: "./media/characters/rufran/kobold-foot.svg"
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Micro",
  13836. height: math.unit(1, "inch")
  13837. },
  13838. {
  13839. name: "Normal",
  13840. height: math.unit(2 + 6 / 12, "feet"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Big",
  13845. height: math.unit(60, "feet")
  13846. },
  13847. {
  13848. name: "Macro",
  13849. height: math.unit(325, "feet")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(0.3, "meters"),
  13858. weight: math.unit(3.5, "kg"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/chip/front.svg",
  13862. extra: 748 / 674
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Micro",
  13869. height: math.unit(1, "inch"),
  13870. default: true
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13876. {
  13877. side: {
  13878. height: math.unit(2.3, "meters"),
  13879. weight: math.unit(3500, "lb"),
  13880. name: "Side",
  13881. image: {
  13882. source: "./media/characters/torvid/side.svg",
  13883. extra: 1972 / 722,
  13884. bottom: 0.035
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Normal",
  13891. height: math.unit(2.3, "meters"),
  13892. default: true
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13898. {
  13899. front: {
  13900. height: math.unit(2, "meters"),
  13901. weight: math.unit(150.5, "kg"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/susan/front.svg",
  13905. extra: 693 / 635,
  13906. bottom: 0.05
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Megamacro",
  13913. height: math.unit(505, "miles"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(6, "feet"),
  13923. weight: math.unit(150, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/raindrops/front.svg",
  13927. extra: 2655 / 2461,
  13928. bottom: 49 / 2705
  13929. }
  13930. },
  13931. back: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Back",
  13935. image: {
  13936. source: "./media/characters/raindrops/back.svg",
  13937. extra: 2574 / 2400,
  13938. bottom: 65 / 2634
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(6, "inches")
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(6 + 2 / 12, "feet")
  13950. },
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(131, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Megamacro",
  13958. height: math.unit(15, "miles")
  13959. },
  13960. {
  13961. name: "Gigamacro",
  13962. height: math.unit(4000, "miles")
  13963. },
  13964. {
  13965. name: "Teramacro",
  13966. height: math.unit(315000, "miles")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(2.794, "meters"),
  13975. weight: math.unit(325, "kg"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/tezwa/front.svg",
  13979. extra: 2083 / 1906,
  13980. bottom: 0.031
  13981. }
  13982. },
  13983. foot: {
  13984. height: math.unit(0.687, "meters"),
  13985. name: "Foot",
  13986. image: {
  13987. source: "./media/characters/tezwa/foot.svg"
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Normal",
  13994. height: math.unit(9 + 2 / 12, "feet"),
  13995. default: true
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(58, "feet"),
  14004. weight: math.unit(89000, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/typhus/front.svg",
  14008. extra: 816 / 800,
  14009. bottom: 0.065
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(58, "feet"),
  14017. default: true
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(12, "feet"),
  14026. weight: math.unit(6, "tonnes"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/lyra-von-wulf/front.svg",
  14030. extra: 1,
  14031. bottom: 0.10
  14032. }
  14033. },
  14034. frontMecha: {
  14035. height: math.unit(12, "feet"),
  14036. weight: math.unit(12, "tonnes"),
  14037. name: "Front (Mecha)",
  14038. image: {
  14039. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14040. extra: 1,
  14041. bottom: 0.042
  14042. }
  14043. },
  14044. maw: {
  14045. height: math.unit(2.2, "feet"),
  14046. name: "Maw",
  14047. image: {
  14048. source: "./media/characters/lyra-von-wulf/maw.svg"
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(12, "feet"),
  14056. default: true
  14057. },
  14058. {
  14059. name: "Classic",
  14060. height: math.unit(50, "feet")
  14061. },
  14062. {
  14063. name: "Macro",
  14064. height: math.unit(500, "feet")
  14065. },
  14066. {
  14067. name: "Megamacro",
  14068. height: math.unit(1, "mile")
  14069. },
  14070. {
  14071. name: "Gigamacro",
  14072. height: math.unit(400, "miles")
  14073. },
  14074. {
  14075. name: "Teramacro",
  14076. height: math.unit(22000, "miles")
  14077. },
  14078. {
  14079. name: "Solarmacro",
  14080. height: math.unit(8600000, "miles")
  14081. },
  14082. {
  14083. name: "Galactic",
  14084. height: math.unit(1057000, "lightyears")
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(6 + 10 / 12, "feet"),
  14093. weight: math.unit(150, "lb"),
  14094. name: "Front",
  14095. image: {
  14096. source: "./media/characters/dixon/front.svg",
  14097. extra: 3361 / 3209,
  14098. bottom: 0.01
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(6 + 10 / 12, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Big",
  14110. height: math.unit(12, "meters")
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(500, "meters")
  14115. },
  14116. {
  14117. name: "Megamacro",
  14118. height: math.unit(2, "km")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(185, "cm"),
  14127. weight: math.unit(68, "kg"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/kauko/front.svg",
  14131. extra: 1455 / 1421,
  14132. bottom: 0.03
  14133. }
  14134. },
  14135. back: {
  14136. height: math.unit(185, "cm"),
  14137. weight: math.unit(68, "kg"),
  14138. name: "Back",
  14139. image: {
  14140. source: "./media/characters/kauko/back.svg",
  14141. extra: 1455 / 1421,
  14142. bottom: 0.004
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(185, "cm"),
  14150. default: true
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14156. {
  14157. frontSfw: {
  14158. height: math.unit(5, "meters"),
  14159. weight: math.unit(4250, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/varg/front-sfw.svg",
  14163. extra: 1103/1010,
  14164. bottom: 50/1153
  14165. },
  14166. form: "anthro",
  14167. default: true
  14168. },
  14169. backSfw: {
  14170. height: math.unit(5, "meters"),
  14171. weight: math.unit(4250, "lb"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/varg/back-sfw.svg",
  14175. extra: 1038/1022,
  14176. bottom: 36/1074
  14177. },
  14178. form: "anthro"
  14179. },
  14180. frontNsfw: {
  14181. height: math.unit(5, "meters"),
  14182. weight: math.unit(4250, "lb"),
  14183. name: "Front (NSFW)",
  14184. image: {
  14185. source: "./media/characters/varg/front-nsfw.svg",
  14186. extra: 1103/1010,
  14187. bottom: 50/1153
  14188. },
  14189. form: "anthro"
  14190. },
  14191. sheath: {
  14192. height: math.unit(3.8, "feet"),
  14193. weight: math.unit(90, "kilograms"),
  14194. name: "Sheath",
  14195. image: {
  14196. source: "./media/characters/varg/sheath.svg"
  14197. },
  14198. form: "anthro"
  14199. },
  14200. dick: {
  14201. height: math.unit(4.6, "feet"),
  14202. weight: math.unit(451, "kilograms"),
  14203. name: "Dick",
  14204. image: {
  14205. source: "./media/characters/varg/dick.svg"
  14206. },
  14207. form: "anthro"
  14208. },
  14209. feralSfw: {
  14210. height: math.unit(5, "meters"),
  14211. weight: math.unit(100000, "lb"),
  14212. name: "Side",
  14213. image: {
  14214. source: "./media/characters/varg/feral-sfw.svg",
  14215. extra: 1065/511,
  14216. bottom: 211/1276
  14217. },
  14218. form: "feral",
  14219. default: true
  14220. },
  14221. feralNsfw: {
  14222. height: math.unit(5, "meters"),
  14223. weight: math.unit(100000, "lb"),
  14224. name: "Side (NSFW)",
  14225. image: {
  14226. source: "./media/characters/varg/feral-nsfw.svg",
  14227. extra: 1065/511,
  14228. bottom: 211/1276
  14229. },
  14230. form: "feral",
  14231. },
  14232. feralSheath: {
  14233. height: math.unit(9.8, "feet"),
  14234. weight: math.unit(2000, "kilograms"),
  14235. name: "Sheath",
  14236. image: {
  14237. source: "./media/characters/varg/sheath.svg"
  14238. },
  14239. form: "feral"
  14240. },
  14241. feralDick: {
  14242. height: math.unit(13.11, "feet"),
  14243. weight: math.unit(10440, "kilograms"),
  14244. name: "Dick",
  14245. image: {
  14246. source: "./media/characters/varg/dick.svg"
  14247. },
  14248. form: "feral"
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(5, "meters"),
  14255. form: "anthro"
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(200, "meters"),
  14260. form: "anthro"
  14261. },
  14262. {
  14263. name: "Megamacro",
  14264. height: math.unit(20, "kilometers"),
  14265. form: "anthro"
  14266. },
  14267. {
  14268. name: "True Size",
  14269. height: math.unit(211, "km"),
  14270. form: "anthro",
  14271. default: true
  14272. },
  14273. {
  14274. name: "Gigamacro",
  14275. height: math.unit(1000, "km"),
  14276. form: "anthro"
  14277. },
  14278. {
  14279. name: "Gigamacro+",
  14280. height: math.unit(8000, "km"),
  14281. form: "anthro"
  14282. },
  14283. {
  14284. name: "Teramacro",
  14285. height: math.unit(1000000, "km"),
  14286. form: "anthro"
  14287. },
  14288. {
  14289. name: "Normal",
  14290. height: math.unit(5, "meters"),
  14291. form: "feral"
  14292. },
  14293. {
  14294. name: "Macro",
  14295. height: math.unit(200, "meters"),
  14296. form: "feral"
  14297. },
  14298. {
  14299. name: "Megamacro",
  14300. height: math.unit(20, "kilometers"),
  14301. form: "feral"
  14302. },
  14303. {
  14304. name: "True Size",
  14305. height: math.unit(211, "km"),
  14306. form: "feral",
  14307. default: true
  14308. },
  14309. {
  14310. name: "Gigamacro",
  14311. height: math.unit(1000, "km"),
  14312. form: "feral"
  14313. },
  14314. {
  14315. name: "Gigamacro+",
  14316. height: math.unit(8000, "km"),
  14317. form: "feral"
  14318. },
  14319. {
  14320. name: "Teramacro",
  14321. height: math.unit(1000000, "km"),
  14322. form: "feral"
  14323. },
  14324. ],
  14325. {
  14326. "anthro": {
  14327. name: "Anthro",
  14328. default: true
  14329. },
  14330. "feral": {
  14331. name: "Feral",
  14332. },
  14333. }
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(7 + 7 / 12, "feet"),
  14340. weight: math.unit(267, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/dayza/front.svg",
  14344. extra: 1262 / 1200,
  14345. bottom: 0.035
  14346. }
  14347. },
  14348. side: {
  14349. height: math.unit(7 + 7 / 12, "feet"),
  14350. weight: math.unit(267, "lb"),
  14351. name: "Side",
  14352. image: {
  14353. source: "./media/characters/dayza/side.svg",
  14354. extra: 1295 / 1245,
  14355. bottom: 0.05
  14356. }
  14357. },
  14358. back: {
  14359. height: math.unit(7 + 7 / 12, "feet"),
  14360. weight: math.unit(267, "lb"),
  14361. name: "Back",
  14362. image: {
  14363. source: "./media/characters/dayza/back.svg",
  14364. extra: 1241 / 1170
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(7 + 7 / 12, "feet"),
  14372. default: true
  14373. },
  14374. {
  14375. name: "Macro",
  14376. height: math.unit(155, "feet")
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(6 + 5 / 12, "feet"),
  14385. weight: math.unit(160, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/xanthos/front.svg",
  14389. extra: 1,
  14390. bottom: 0.04
  14391. }
  14392. },
  14393. back: {
  14394. height: math.unit(6 + 5 / 12, "feet"),
  14395. weight: math.unit(160, "lb"),
  14396. name: "Back",
  14397. image: {
  14398. source: "./media/characters/xanthos/back.svg",
  14399. extra: 1,
  14400. bottom: 0.03
  14401. }
  14402. },
  14403. hand: {
  14404. height: math.unit(0.928, "feet"),
  14405. name: "Hand",
  14406. image: {
  14407. source: "./media/characters/xanthos/hand.svg"
  14408. }
  14409. },
  14410. foot: {
  14411. height: math.unit(1.286, "feet"),
  14412. name: "Foot",
  14413. image: {
  14414. source: "./media/characters/xanthos/foot.svg"
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(6 + 5 / 12, "feet"),
  14422. default: true
  14423. },
  14424. {
  14425. name: "Normal+",
  14426. height: math.unit(6, "meters")
  14427. },
  14428. {
  14429. name: "Macro",
  14430. height: math.unit(40, "feet")
  14431. },
  14432. {
  14433. name: "Macro+",
  14434. height: math.unit(200, "meters")
  14435. },
  14436. {
  14437. name: "Megamacro",
  14438. height: math.unit(20, "km")
  14439. },
  14440. {
  14441. name: "Megamacro+",
  14442. height: math.unit(100, "km")
  14443. },
  14444. {
  14445. name: "Gigamacro",
  14446. height: math.unit(200, "megameters")
  14447. },
  14448. {
  14449. name: "Gigamacro+",
  14450. height: math.unit(1.5, "gigameters")
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(6 + 3 / 12, "feet"),
  14459. weight: math.unit(215, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/grynn/front.svg",
  14463. extra: 4627 / 4209,
  14464. bottom: 0.047
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Micro",
  14471. height: math.unit(6, "inches")
  14472. },
  14473. {
  14474. name: "Normal",
  14475. height: math.unit(6 + 3 / 12, "feet"),
  14476. default: true
  14477. },
  14478. {
  14479. name: "Big",
  14480. height: math.unit(104, "feet")
  14481. },
  14482. {
  14483. name: "Macro",
  14484. height: math.unit(944, "feet")
  14485. },
  14486. {
  14487. name: "Macro+",
  14488. height: math.unit(9480, "feet")
  14489. },
  14490. {
  14491. name: "Megamacro",
  14492. height: math.unit(78752, "feet")
  14493. },
  14494. {
  14495. name: "Megamacro+",
  14496. height: math.unit(630128, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro++",
  14500. height: math.unit(3150695, "feet")
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(7 + 5 / 12, "feet"),
  14509. weight: math.unit(450, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/mocha-aura/front.svg",
  14513. extra: 1907 / 1817,
  14514. bottom: 0.04
  14515. }
  14516. },
  14517. back: {
  14518. height: math.unit(7 + 5 / 12, "feet"),
  14519. weight: math.unit(450, "lb"),
  14520. name: "Back",
  14521. image: {
  14522. source: "./media/characters/mocha-aura/back.svg",
  14523. extra: 1900 / 1825,
  14524. bottom: 0.045
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Nano",
  14531. height: math.unit(1, "nm")
  14532. },
  14533. {
  14534. name: "Megamicro",
  14535. height: math.unit(1, "mm")
  14536. },
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(3, "inches")
  14540. },
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(7 + 5 / 12, "feet"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Macro",
  14548. height: math.unit(30, "feet")
  14549. },
  14550. {
  14551. name: "Megamacro",
  14552. height: math.unit(3500, "feet")
  14553. },
  14554. {
  14555. name: "Teramacro",
  14556. height: math.unit(500000, "miles")
  14557. },
  14558. {
  14559. name: "Petamacro",
  14560. height: math.unit(50000000000000000, "parsecs")
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(150, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/ilisha-devya/front.svg",
  14573. extra: 1053/1049,
  14574. bottom: 270/1323
  14575. }
  14576. },
  14577. back: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(150, "lb"),
  14580. name: "Back",
  14581. image: {
  14582. source: "./media/characters/ilisha-devya/back.svg",
  14583. extra: 1131/1128,
  14584. bottom: 39/1170
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Macro",
  14591. height: math.unit(500, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Megamacro",
  14596. height: math.unit(10, "miles")
  14597. },
  14598. {
  14599. name: "Gigamacro",
  14600. height: math.unit(100000, "miles")
  14601. },
  14602. {
  14603. name: "Examacro",
  14604. height: math.unit(1e9, "lightyears")
  14605. },
  14606. {
  14607. name: "Omniversal",
  14608. height: math.unit(1e33, "lightyears")
  14609. },
  14610. {
  14611. name: "Beyond Infinite",
  14612. height: math.unit(1e100, "lightyears")
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14618. {
  14619. Side: {
  14620. height: math.unit(6, "feet"),
  14621. weight: math.unit(150, "lb"),
  14622. name: "Side",
  14623. image: {
  14624. source: "./media/characters/mira/side.svg",
  14625. extra: 900 / 799,
  14626. bottom: 0.02
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Human Size",
  14633. height: math.unit(6, "feet")
  14634. },
  14635. {
  14636. name: "Macro",
  14637. height: math.unit(100, "feet"),
  14638. default: true
  14639. },
  14640. {
  14641. name: "Megamacro",
  14642. height: math.unit(10, "miles")
  14643. },
  14644. {
  14645. name: "Gigamacro",
  14646. height: math.unit(25000, "miles")
  14647. },
  14648. {
  14649. name: "Teramacro",
  14650. height: math.unit(300, "AU")
  14651. },
  14652. {
  14653. name: "Full Size",
  14654. height: math.unit(4.5e10, "lightyears")
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(150, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/holly/front.svg",
  14667. extra: 639 / 606
  14668. }
  14669. },
  14670. back: {
  14671. height: math.unit(6, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Back",
  14674. image: {
  14675. source: "./media/characters/holly/back.svg",
  14676. extra: 623 / 598
  14677. }
  14678. },
  14679. frontWorking: {
  14680. height: math.unit(6, "feet"),
  14681. weight: math.unit(150, "lb"),
  14682. name: "Front (Working)",
  14683. image: {
  14684. source: "./media/characters/holly/front-working.svg",
  14685. extra: 607 / 577,
  14686. bottom: 0.048
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(12 + 3 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(150, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/porter/front.svg",
  14707. extra: 1,
  14708. bottom: 0.01
  14709. }
  14710. },
  14711. frontRobes: {
  14712. height: math.unit(6, "feet"),
  14713. weight: math.unit(150, "lb"),
  14714. name: "Front (Robes)",
  14715. image: {
  14716. source: "./media/characters/porter/front-robes.svg",
  14717. extra: 1.01,
  14718. bottom: 0.01
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(11 + 9 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14732. {
  14733. legendary: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(150, "lb"),
  14736. name: "Legendary",
  14737. image: {
  14738. source: "./media/characters/lucy/legendary.svg",
  14739. extra: 1355 / 1100,
  14740. bottom: 0.045
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Legendary",
  14747. height: math.unit(86882 * 2, "miles"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/drusilla/front.svg",
  14761. extra: 678 / 635,
  14762. bottom: 0.03
  14763. }
  14764. },
  14765. back: {
  14766. height: math.unit(6, "feet"),
  14767. weight: math.unit(150, "lb"),
  14768. name: "Back",
  14769. image: {
  14770. source: "./media/characters/drusilla/back.svg",
  14771. extra: 678 / 635,
  14772. bottom: 0.005
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Macro",
  14779. height: math.unit(100, "feet")
  14780. },
  14781. {
  14782. name: "Canon Height",
  14783. height: math.unit(2000, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(180, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/renard-thatch/front.svg",
  14797. extra: 2411 / 2275,
  14798. bottom: 0.01
  14799. }
  14800. },
  14801. frontPosing: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(180, "lb"),
  14804. name: "Front (Posing)",
  14805. image: {
  14806. source: "./media/characters/renard-thatch/front-posing.svg",
  14807. extra: 2381 / 2261,
  14808. bottom: 0.01
  14809. }
  14810. },
  14811. back: {
  14812. height: math.unit(6, "feet"),
  14813. weight: math.unit(180, "lb"),
  14814. name: "Back",
  14815. image: {
  14816. source: "./media/characters/renard-thatch/back.svg",
  14817. extra: 2428 / 2288
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Micro",
  14824. height: math.unit(3, "inches")
  14825. },
  14826. {
  14827. name: "Default",
  14828. height: math.unit(6, "feet"),
  14829. default: true
  14830. },
  14831. {
  14832. name: "Macro",
  14833. height: math.unit(75, "feet")
  14834. },
  14835. ]
  14836. ))
  14837. characterMakers.push(() => makeCharacter(
  14838. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14839. {
  14840. front: {
  14841. height: math.unit(1450, "feet"),
  14842. weight: math.unit(1.21e6, "tons"),
  14843. name: "Front",
  14844. image: {
  14845. source: "./media/characters/sekvra/front.svg",
  14846. extra: 1193/1190,
  14847. bottom: 78/1271
  14848. }
  14849. },
  14850. side: {
  14851. height: math.unit(1450, "feet"),
  14852. weight: math.unit(1.21e6, "tons"),
  14853. name: "Side",
  14854. image: {
  14855. source: "./media/characters/sekvra/side.svg",
  14856. extra: 1193/1190,
  14857. bottom: 52/1245
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(1450, "feet"),
  14862. weight: math.unit(1.21e6, "tons"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/sekvra/back.svg",
  14866. extra: 1219/1216,
  14867. bottom: 21/1240
  14868. }
  14869. },
  14870. frontClothed: {
  14871. height: math.unit(1450, "feet"),
  14872. weight: math.unit(1.21e6, "tons"),
  14873. name: "Front (Clothed)",
  14874. image: {
  14875. source: "./media/characters/sekvra/front-clothed.svg",
  14876. extra: 1192/1189,
  14877. bottom: 79/1271
  14878. }
  14879. },
  14880. },
  14881. [
  14882. {
  14883. name: "Macro",
  14884. height: math.unit(1450, "feet"),
  14885. default: true
  14886. },
  14887. {
  14888. name: "Megamacro",
  14889. height: math.unit(15000, "feet")
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(6, "feet"),
  14898. weight: math.unit(150, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/carmine/front.svg",
  14902. extra: 1557/1538,
  14903. bottom: 68/1625
  14904. }
  14905. },
  14906. frontArmor: {
  14907. height: math.unit(6, "feet"),
  14908. weight: math.unit(150, "lb"),
  14909. name: "Front (Armor)",
  14910. image: {
  14911. source: "./media/characters/carmine/front-armor.svg",
  14912. extra: 1549/1530,
  14913. bottom: 82/1631
  14914. }
  14915. },
  14916. mouth: {
  14917. height: math.unit(0.55, "feet"),
  14918. name: "Mouth",
  14919. image: {
  14920. source: "./media/characters/carmine/mouth.svg"
  14921. }
  14922. },
  14923. hand: {
  14924. height: math.unit(1.05, "feet"),
  14925. name: "Hand",
  14926. image: {
  14927. source: "./media/characters/carmine/hand.svg"
  14928. }
  14929. },
  14930. foot: {
  14931. height: math.unit(0.6, "feet"),
  14932. name: "Foot",
  14933. image: {
  14934. source: "./media/characters/carmine/foot.svg"
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Large",
  14941. height: math.unit(1, "mile")
  14942. },
  14943. {
  14944. name: "Huge",
  14945. height: math.unit(40, "miles"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Colossal",
  14950. height: math.unit(2500, "miles")
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(150, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/elyssia/front.svg",
  14963. extra: 2201 / 2035,
  14964. bottom: 0.05
  14965. }
  14966. },
  14967. frontClothed: {
  14968. height: math.unit(6, "feet"),
  14969. weight: math.unit(150, "lb"),
  14970. name: "Front (Clothed)",
  14971. image: {
  14972. source: "./media/characters/elyssia/front-clothed.svg",
  14973. extra: 2201 / 2035,
  14974. bottom: 0.05
  14975. }
  14976. },
  14977. back: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(150, "lb"),
  14980. name: "Back",
  14981. image: {
  14982. source: "./media/characters/elyssia/back.svg",
  14983. extra: 2201 / 2035,
  14984. bottom: 0.013
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Smaller",
  14991. height: math.unit(150, "feet")
  14992. },
  14993. {
  14994. name: "Standard",
  14995. height: math.unit(1400, "feet"),
  14996. default: true
  14997. },
  14998. {
  14999. name: "Distracted",
  15000. height: math.unit(15000, "feet")
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(7 + 4/12, "feet"),
  15009. weight: math.unit(690, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/geno-maxwell/front.svg",
  15013. extra: 984/856,
  15014. bottom: 87/1071
  15015. }
  15016. },
  15017. back: {
  15018. height: math.unit(7 + 4/12, "feet"),
  15019. weight: math.unit(690, "lb"),
  15020. name: "Back",
  15021. image: {
  15022. source: "./media/characters/geno-maxwell/back.svg",
  15023. extra: 981/854,
  15024. bottom: 57/1038
  15025. }
  15026. },
  15027. frontCostume: {
  15028. height: math.unit(7 + 4/12, "feet"),
  15029. weight: math.unit(690, "lb"),
  15030. name: "Front (Costume)",
  15031. image: {
  15032. source: "./media/characters/geno-maxwell/front-costume.svg",
  15033. extra: 984/856,
  15034. bottom: 87/1071
  15035. }
  15036. },
  15037. backcostume: {
  15038. height: math.unit(7 + 4/12, "feet"),
  15039. weight: math.unit(690, "lb"),
  15040. name: "Back (Costume)",
  15041. image: {
  15042. source: "./media/characters/geno-maxwell/back-costume.svg",
  15043. extra: 981/854,
  15044. bottom: 57/1038
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(3, "inches")
  15052. },
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(7 + 4 / 12, "feet"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Macro",
  15060. height: math.unit(220, "feet")
  15061. },
  15062. {
  15063. name: "Megamacro",
  15064. height: math.unit(11, "miles")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(7 + 4/12, "feet"),
  15073. weight: math.unit(750, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/regena-maxwell/front.svg",
  15077. extra: 984/856,
  15078. bottom: 87/1071
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(7 + 4/12, "feet"),
  15083. weight: math.unit(750, "lb"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/regena-maxwell/back.svg",
  15087. extra: 981/854,
  15088. bottom: 57/1038
  15089. }
  15090. },
  15091. frontCostume: {
  15092. height: math.unit(7 + 4/12, "feet"),
  15093. weight: math.unit(750, "lb"),
  15094. name: "Front (Costume)",
  15095. image: {
  15096. source: "./media/characters/regena-maxwell/front-costume.svg",
  15097. extra: 984/856,
  15098. bottom: 87/1071
  15099. }
  15100. },
  15101. backcostume: {
  15102. height: math.unit(7 + 4/12, "feet"),
  15103. weight: math.unit(750, "lb"),
  15104. name: "Back (Costume)",
  15105. image: {
  15106. source: "./media/characters/regena-maxwell/back-costume.svg",
  15107. extra: 981/854,
  15108. bottom: 57/1038
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(7 + 4 / 12, "feet"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Macro",
  15120. height: math.unit(220, "feet")
  15121. },
  15122. {
  15123. name: "Megamacro",
  15124. height: math.unit(11, "miles")
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(150, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15137. extra: 860 / 690,
  15138. bottom: 0.03
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(1.7, "meters"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/quilly/front.svg",
  15159. extra: 890 / 776
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Gigamacro",
  15166. height: math.unit(404090, "miles"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(7 + 8 / 12, "feet"),
  15176. weight: math.unit(350, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/tempest/front.svg",
  15180. extra: 1175 / 1086,
  15181. bottom: 0.02
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(7 + 8 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15195. {
  15196. side: {
  15197. height: math.unit(4 + 5 / 12, "feet"),
  15198. weight: math.unit(80, "lb"),
  15199. name: "Side",
  15200. image: {
  15201. source: "./media/characters/rodger/side.svg",
  15202. extra: 1235 / 1118
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Micro",
  15209. height: math.unit(1, "inch")
  15210. },
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(4 + 5 / 12, "feet"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Macro",
  15218. height: math.unit(120, "feet")
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(6, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/danyel/front.svg",
  15231. extra: 1185 / 1123,
  15232. bottom: 0.05
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Shrunken",
  15239. height: math.unit(0.5, "mm")
  15240. },
  15241. {
  15242. name: "Micro",
  15243. height: math.unit(1, "mm"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Upsized",
  15248. height: math.unit(5 + 5 / 12, "feet")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 6 / 12, "feet"),
  15257. weight: math.unit(200, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/vivian-bijoux/front.svg",
  15261. extra: 1217/1209,
  15262. bottom: 76/1293
  15263. }
  15264. },
  15265. back: {
  15266. height: math.unit(5 + 6 / 12, "feet"),
  15267. weight: math.unit(200, "lb"),
  15268. name: "Back",
  15269. image: {
  15270. source: "./media/characters/vivian-bijoux/back.svg",
  15271. extra: 1214/1208,
  15272. bottom: 51/1265
  15273. }
  15274. },
  15275. dressed: {
  15276. height: math.unit(5 + 6 / 12, "feet"),
  15277. weight: math.unit(200, "lb"),
  15278. name: "Dressed",
  15279. image: {
  15280. source: "./media/characters/vivian-bijoux/dressed.svg",
  15281. extra: 1217/1209,
  15282. bottom: 76/1293
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(5 + 6 / 12, "feet"),
  15290. default: true
  15291. },
  15292. {
  15293. name: "Bad Dream",
  15294. height: math.unit(500, "feet")
  15295. },
  15296. {
  15297. name: "Nightmare",
  15298. height: math.unit(500, "miles")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6 + 1 / 12, "feet"),
  15307. weight: math.unit(260, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/zeta/front.svg",
  15311. extra: 1968 / 1889,
  15312. bottom: 0.06
  15313. }
  15314. },
  15315. back: {
  15316. height: math.unit(6 + 1 / 12, "feet"),
  15317. weight: math.unit(260, "lb"),
  15318. name: "Back",
  15319. image: {
  15320. source: "./media/characters/zeta/back.svg",
  15321. extra: 1944 / 1858,
  15322. bottom: 0.03
  15323. }
  15324. },
  15325. hand: {
  15326. height: math.unit(1.112, "feet"),
  15327. name: "Hand",
  15328. image: {
  15329. source: "./media/characters/zeta/hand.svg"
  15330. }
  15331. },
  15332. foot: {
  15333. height: math.unit(1.48, "feet"),
  15334. name: "Foot",
  15335. image: {
  15336. source: "./media/characters/zeta/foot.svg"
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Micro",
  15343. height: math.unit(6, "inches")
  15344. },
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(6 + 1 / 12, "feet"),
  15348. default: true
  15349. },
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(20, "feet")
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6, "feet"),
  15361. weight: math.unit(150, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/jamie-larsen/front.svg",
  15365. extra: 962 / 933,
  15366. bottom: 0.02
  15367. }
  15368. },
  15369. back: {
  15370. height: math.unit(6, "feet"),
  15371. weight: math.unit(150, "lb"),
  15372. name: "Back",
  15373. image: {
  15374. source: "./media/characters/jamie-larsen/back.svg",
  15375. extra: 997 / 946
  15376. }
  15377. },
  15378. },
  15379. [
  15380. {
  15381. name: "Macro",
  15382. height: math.unit(28 + 7 / 12, "feet"),
  15383. default: true
  15384. },
  15385. {
  15386. name: "Macro+",
  15387. height: math.unit(180, "feet")
  15388. },
  15389. {
  15390. name: "Megamacro",
  15391. height: math.unit(10, "miles")
  15392. },
  15393. {
  15394. name: "Gigamacro",
  15395. height: math.unit(200000, "miles")
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(120, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/vance/front.svg",
  15408. extra: 1980 / 1890,
  15409. bottom: 0.09
  15410. }
  15411. },
  15412. back: {
  15413. height: math.unit(6, "feet"),
  15414. weight: math.unit(120, "lb"),
  15415. name: "Back",
  15416. image: {
  15417. source: "./media/characters/vance/back.svg",
  15418. extra: 2081 / 1994,
  15419. bottom: 0.014
  15420. }
  15421. },
  15422. hand: {
  15423. height: math.unit(0.88, "feet"),
  15424. name: "Hand",
  15425. image: {
  15426. source: "./media/characters/vance/hand.svg"
  15427. }
  15428. },
  15429. foot: {
  15430. height: math.unit(0.64, "feet"),
  15431. name: "Foot",
  15432. image: {
  15433. source: "./media/characters/vance/foot.svg"
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Small",
  15440. height: math.unit(90, "feet"),
  15441. default: true
  15442. },
  15443. {
  15444. name: "Macro",
  15445. height: math.unit(100, "meters")
  15446. },
  15447. {
  15448. name: "Megamacro",
  15449. height: math.unit(15, "miles")
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(180, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/xochitl/front.svg",
  15462. extra: 2297 / 2261,
  15463. bottom: 0.065
  15464. }
  15465. },
  15466. back: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(180, "lb"),
  15469. name: "Back",
  15470. image: {
  15471. source: "./media/characters/xochitl/back.svg",
  15472. extra: 2386 / 2354,
  15473. bottom: 0.01
  15474. }
  15475. },
  15476. foot: {
  15477. height: math.unit(6 / 5 * 1.15, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Foot",
  15480. image: {
  15481. source: "./media/characters/xochitl/foot.svg"
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(80, "feet")
  15489. },
  15490. {
  15491. name: "Macro+",
  15492. height: math.unit(400, "feet"),
  15493. default: true
  15494. },
  15495. {
  15496. name: "Gigamacro",
  15497. height: math.unit(80000, "miles")
  15498. },
  15499. {
  15500. name: "Gigamacro+",
  15501. height: math.unit(400000, "miles")
  15502. },
  15503. {
  15504. name: "Teramacro",
  15505. height: math.unit(300, "AU")
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15511. {
  15512. front: {
  15513. height: math.unit(6, "feet"),
  15514. weight: math.unit(150, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/vincent/front.svg",
  15518. extra: 1130 / 1080,
  15519. bottom: 0.055
  15520. }
  15521. },
  15522. beak: {
  15523. height: math.unit(6 * 0.1, "feet"),
  15524. name: "Beak",
  15525. image: {
  15526. source: "./media/characters/vincent/beak.svg"
  15527. }
  15528. },
  15529. hand: {
  15530. height: math.unit(6 * 0.85, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Hand",
  15533. image: {
  15534. source: "./media/characters/vincent/hand.svg"
  15535. }
  15536. },
  15537. foot: {
  15538. height: math.unit(6 * 0.19, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Foot",
  15541. image: {
  15542. source: "./media/characters/vincent/foot.svg"
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Base",
  15549. height: math.unit(6 + 5 / 12, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Macro",
  15554. height: math.unit(300, "feet")
  15555. },
  15556. {
  15557. name: "Megamacro",
  15558. height: math.unit(2, "miles")
  15559. },
  15560. {
  15561. name: "Gigamacro",
  15562. height: math.unit(1000, "miles")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(2, "meters"),
  15571. weight: math.unit(500, "kg"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/coatl/front.svg",
  15575. extra: 3948 / 3500,
  15576. bottom: 0.082
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(4, "meters")
  15584. },
  15585. {
  15586. name: "Macro",
  15587. height: math.unit(100, "meters"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Macro+",
  15592. height: math.unit(300, "meters")
  15593. },
  15594. {
  15595. name: "Megamacro",
  15596. height: math.unit(3, "gigameters")
  15597. },
  15598. {
  15599. name: "Megamacro+",
  15600. height: math.unit(300, "terameters")
  15601. },
  15602. {
  15603. name: "Megamacro++",
  15604. height: math.unit(3, "lightyears")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(50, "kg"),
  15614. name: "front",
  15615. image: {
  15616. source: "./media/characters/shiroryu/front.svg",
  15617. extra: 1990 / 1935
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Mortal Mingling",
  15624. height: math.unit(3, "meters")
  15625. },
  15626. {
  15627. name: "Kaiju-ish",
  15628. height: math.unit(250, "meters")
  15629. },
  15630. {
  15631. name: "Somewhat Godly",
  15632. height: math.unit(400, "km"),
  15633. default: true
  15634. },
  15635. {
  15636. name: "Planetary",
  15637. height: math.unit(300, "megameters")
  15638. },
  15639. {
  15640. name: "Galaxy-dwarfing",
  15641. height: math.unit(450, "kiloparsecs")
  15642. },
  15643. {
  15644. name: "Universe Eater",
  15645. height: math.unit(150, "gigaparsecs")
  15646. },
  15647. {
  15648. name: "Almost Immeasurable",
  15649. height: math.unit(1.3e266, "yottaparsecs")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(150, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/umeko/front.svg",
  15662. extra: 1,
  15663. bottom: 0.019
  15664. }
  15665. },
  15666. frontArmored: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Front (Armored)",
  15670. image: {
  15671. source: "./media/characters/umeko/front-armored.svg",
  15672. extra: 1,
  15673. bottom: 0.021
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Macro",
  15680. height: math.unit(220, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Guardian Dragon",
  15685. height: math.unit(50, "miles")
  15686. },
  15687. {
  15688. name: "Cosmic",
  15689. height: math.unit(800000, "miles")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/cassidy/front.svg",
  15702. extra: 810/808,
  15703. bottom: 41/851
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Canon Height",
  15710. height: math.unit(120, "feet"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Macro+",
  15715. height: math.unit(400, "feet")
  15716. },
  15717. {
  15718. name: "Macro++",
  15719. height: math.unit(4000, "feet")
  15720. },
  15721. {
  15722. name: "Megamacro",
  15723. height: math.unit(3, "miles")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/isaac/front.svg",
  15736. extra: 896 / 815,
  15737. bottom: 0.11
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Human Size",
  15744. height: math.unit(8, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Macro",
  15749. height: math.unit(400, "feet")
  15750. },
  15751. {
  15752. name: "Megamacro",
  15753. height: math.unit(50, "miles")
  15754. },
  15755. {
  15756. name: "Canon Height",
  15757. height: math.unit(200, "AU")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15763. {
  15764. front: {
  15765. height: math.unit(6, "feet"),
  15766. weight: math.unit(72, "kg"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/sleekit/front.svg",
  15770. extra: 4693 / 4487,
  15771. bottom: 0.012
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Minimum Height",
  15778. height: math.unit(10, "meters")
  15779. },
  15780. {
  15781. name: "Smaller",
  15782. height: math.unit(25, "meters")
  15783. },
  15784. {
  15785. name: "Larger",
  15786. height: math.unit(38, "meters"),
  15787. default: true
  15788. },
  15789. {
  15790. name: "Maximum height",
  15791. height: math.unit(100, "meters")
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(6, "feet"),
  15800. weight: math.unit(150, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/nillia/front.svg",
  15804. extra: 719/665,
  15805. bottom: 6/725
  15806. }
  15807. },
  15808. back: {
  15809. height: math.unit(6, "feet"),
  15810. weight: math.unit(150, "lb"),
  15811. name: "Back",
  15812. image: {
  15813. source: "./media/characters/nillia/back.svg",
  15814. extra: 705/651,
  15815. bottom: 5/710
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Canon Height",
  15822. height: math.unit(489, "feet"),
  15823. default: true
  15824. }
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/mesmyriza/front.svg",
  15836. extra: 1541/1291,
  15837. bottom: 87/1628
  15838. }
  15839. },
  15840. foot: {
  15841. height: math.unit(6 / (250 / 35), "feet"),
  15842. name: "Foot",
  15843. image: {
  15844. source: "./media/characters/mesmyriza/foot.svg"
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Macro",
  15851. height: math.unit(457, "meters"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "Megamacro",
  15856. height: math.unit(8, "megameters")
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(250, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/saudade/front.svg",
  15869. extra: 1172 / 1139,
  15870. bottom: 0.035
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Micro",
  15877. height: math.unit(3, "inches")
  15878. },
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(6, "feet"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Macro",
  15886. height: math.unit(50, "feet")
  15887. },
  15888. {
  15889. name: "Megamacro",
  15890. height: math.unit(2800, "feet")
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(5 + 4 / 12, "feet"),
  15899. weight: math.unit(100, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/keireer/front.svg",
  15903. extra: 716 / 666,
  15904. bottom: 0.05
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(5 + 4 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(5.5, "feet"),
  15921. weight: math.unit(90, "kg"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/mirja/front.svg",
  15925. extra: 1452/1262,
  15926. bottom: 67/1519
  15927. }
  15928. },
  15929. frontDressed: {
  15930. height: math.unit(5.5, "feet"),
  15931. weight: math.unit(90, "lb"),
  15932. name: "Front (Dressed)",
  15933. image: {
  15934. source: "./media/characters/mirja/dressed.svg",
  15935. extra: 1452/1262,
  15936. bottom: 67/1519
  15937. }
  15938. },
  15939. back: {
  15940. height: math.unit(6, "feet"),
  15941. weight: math.unit(90, "lb"),
  15942. name: "Back",
  15943. image: {
  15944. source: "./media/characters/mirja/back.svg",
  15945. extra: 1892/1795,
  15946. bottom: 48/1940
  15947. }
  15948. },
  15949. maw: {
  15950. height: math.unit(1.312, "feet"),
  15951. name: "Maw",
  15952. image: {
  15953. source: "./media/characters/mirja/maw.svg"
  15954. }
  15955. },
  15956. paw: {
  15957. height: math.unit(1.15, "feet"),
  15958. name: "Paw",
  15959. image: {
  15960. source: "./media/characters/mirja/paw.svg"
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "\"Incognito\"",
  15967. height: math.unit(3, "meters")
  15968. },
  15969. {
  15970. name: "Strolling Size",
  15971. height: math.unit(15, "km")
  15972. },
  15973. {
  15974. name: "Larger Strolling Size",
  15975. height: math.unit(400, "km")
  15976. },
  15977. {
  15978. name: "Preferred Size",
  15979. height: math.unit(5000, "km"),
  15980. default: true
  15981. },
  15982. {
  15983. name: "True Size",
  15984. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(15, "feet"),
  15993. weight: math.unit(880, "kg"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/nightraver/front.svg",
  15997. extra: 2444 / 2160,
  15998. bottom: 0.027
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(15, "feet"),
  16003. weight: math.unit(880, "kg"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/nightraver/back.svg",
  16007. extra: 2309 / 2180,
  16008. bottom: 0.005
  16009. }
  16010. },
  16011. sole: {
  16012. height: math.unit(2.878, "feet"),
  16013. name: "Sole",
  16014. image: {
  16015. source: "./media/characters/nightraver/sole.svg"
  16016. }
  16017. },
  16018. foot: {
  16019. height: math.unit(2.285, "feet"),
  16020. name: "Foot",
  16021. image: {
  16022. source: "./media/characters/nightraver/foot.svg"
  16023. }
  16024. },
  16025. maw: {
  16026. height: math.unit(2.67, "feet"),
  16027. name: "Maw",
  16028. image: {
  16029. source: "./media/characters/nightraver/maw.svg"
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Micro",
  16036. height: math.unit(1, "cm")
  16037. },
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(15, "feet"),
  16041. default: true
  16042. },
  16043. {
  16044. name: "Macro",
  16045. height: math.unit(300, "feet")
  16046. },
  16047. {
  16048. name: "Megamacro",
  16049. height: math.unit(300, "miles")
  16050. },
  16051. {
  16052. name: "Gigamacro",
  16053. height: math.unit(10000, "miles")
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16059. {
  16060. side: {
  16061. height: math.unit(2, "inches"),
  16062. weight: math.unit(5, "grams"),
  16063. name: "Side",
  16064. image: {
  16065. source: "./media/characters/arc/side.svg"
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Micro",
  16072. height: math.unit(2, "inches"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(1.1938, "meters"),
  16082. weight: math.unit(54, "kg"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/nebula-shahar/front.svg",
  16086. extra: 1642 / 1436,
  16087. bottom: 0.06
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Megamicro",
  16094. height: math.unit(0.3, "mm")
  16095. },
  16096. {
  16097. name: "Micro",
  16098. height: math.unit(3, "cm")
  16099. },
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(138, "cm"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(30, "m")
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(5.24, "feet"),
  16116. weight: math.unit(150, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/shayla/front.svg",
  16120. extra: 1512 / 1414,
  16121. bottom: 0.01
  16122. }
  16123. },
  16124. back: {
  16125. height: math.unit(5.24, "feet"),
  16126. weight: math.unit(150, "lb"),
  16127. name: "Back",
  16128. image: {
  16129. source: "./media/characters/shayla/back.svg",
  16130. extra: 1512 / 1414
  16131. }
  16132. },
  16133. hand: {
  16134. height: math.unit(0.7781496062992126, "feet"),
  16135. name: "Hand",
  16136. image: {
  16137. source: "./media/characters/shayla/hand.svg"
  16138. }
  16139. },
  16140. foot: {
  16141. height: math.unit(1.4206036745406823, "feet"),
  16142. name: "Foot",
  16143. image: {
  16144. source: "./media/characters/shayla/foot.svg"
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Micro",
  16151. height: math.unit(0.32, "feet")
  16152. },
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(5.24, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Macro",
  16160. height: math.unit(492.12, "feet")
  16161. },
  16162. {
  16163. name: "Megamacro",
  16164. height: math.unit(186.41, "miles")
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(2.2, "m"),
  16173. weight: math.unit(120, "kg"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/pia-jr/front.svg",
  16177. extra: 1000 / 970,
  16178. bottom: 0.035
  16179. }
  16180. },
  16181. hand: {
  16182. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16183. name: "Hand",
  16184. image: {
  16185. source: "./media/characters/pia-jr/hand.svg"
  16186. }
  16187. },
  16188. paw: {
  16189. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16190. name: "Paw",
  16191. image: {
  16192. source: "./media/characters/pia-jr/paw.svg"
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Micro",
  16199. height: math.unit(1.2, "cm")
  16200. },
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(2.2, "m"),
  16204. default: true
  16205. },
  16206. {
  16207. name: "Macro",
  16208. height: math.unit(180, "m")
  16209. },
  16210. {
  16211. name: "Megamacro",
  16212. height: math.unit(420, "km")
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(2, "m"),
  16221. weight: math.unit(115, "kg"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/pia-sr/front.svg",
  16225. extra: 760 / 730,
  16226. bottom: 0.015
  16227. }
  16228. },
  16229. back: {
  16230. height: math.unit(2, "m"),
  16231. weight: math.unit(115, "kg"),
  16232. name: "Back",
  16233. image: {
  16234. source: "./media/characters/pia-sr/back.svg",
  16235. extra: 760 / 730,
  16236. bottom: 0.01
  16237. }
  16238. },
  16239. hand: {
  16240. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16241. name: "Hand",
  16242. image: {
  16243. source: "./media/characters/pia-sr/hand.svg"
  16244. }
  16245. },
  16246. foot: {
  16247. height: math.unit(1.83, "feet"),
  16248. name: "Foot",
  16249. image: {
  16250. source: "./media/characters/pia-sr/foot.svg"
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(88, "mm")
  16258. },
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(2, "m"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(200, "m")
  16267. },
  16268. {
  16269. name: "Megamacro",
  16270. height: math.unit(420, "km")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(8 + 2 / 12, "feet"),
  16279. weight: math.unit(300, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/kibibyte/front.svg",
  16283. extra: 2221 / 2098,
  16284. bottom: 0.04
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(8 + 2 / 12, "feet"),
  16292. default: true
  16293. },
  16294. {
  16295. name: "Socialable Macro",
  16296. height: math.unit(50, "feet")
  16297. },
  16298. {
  16299. name: "Macro",
  16300. height: math.unit(300, "feet")
  16301. },
  16302. {
  16303. name: "Megamacro",
  16304. height: math.unit(500, "miles")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(6, "feet"),
  16313. weight: math.unit(150, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/felix/front.svg",
  16317. extra: 762 / 722,
  16318. bottom: 0.02
  16319. }
  16320. },
  16321. frontClothed: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(150, "lb"),
  16324. name: "Front (Clothed)",
  16325. image: {
  16326. source: "./media/characters/felix/front-clothed.svg",
  16327. extra: 762 / 722,
  16328. bottom: 0.02
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(6 + 8 / 12, "feet"),
  16336. default: true
  16337. },
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(2600, "feet")
  16341. },
  16342. {
  16343. name: "Megamacro",
  16344. height: math.unit(450, "miles")
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(6 + 1 / 12, "feet"),
  16353. weight: math.unit(250, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/tobo/front.svg",
  16357. extra: 608 / 586,
  16358. bottom: 0.023
  16359. }
  16360. },
  16361. back: {
  16362. height: math.unit(6 + 1 / 12, "feet"),
  16363. weight: math.unit(250, "lb"),
  16364. name: "Back",
  16365. image: {
  16366. source: "./media/characters/tobo/back.svg",
  16367. extra: 608 / 586
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Nano",
  16374. height: math.unit(2, "nm")
  16375. },
  16376. {
  16377. name: "Megamicro",
  16378. height: math.unit(0.1, "mm")
  16379. },
  16380. {
  16381. name: "Micro",
  16382. height: math.unit(1, "inch"),
  16383. default: true
  16384. },
  16385. {
  16386. name: "Human-sized",
  16387. height: math.unit(6 + 1 / 12, "feet")
  16388. },
  16389. {
  16390. name: "Macro",
  16391. height: math.unit(250, "feet")
  16392. },
  16393. {
  16394. name: "Megamacro",
  16395. height: math.unit(75, "miles")
  16396. },
  16397. {
  16398. name: "Texas-sized",
  16399. height: math.unit(750, "miles")
  16400. },
  16401. {
  16402. name: "Teramacro",
  16403. height: math.unit(50000, "miles")
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(269, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/danny-kapowsky/front.svg",
  16416. extra: 766 / 736,
  16417. bottom: 0.044
  16418. }
  16419. },
  16420. back: {
  16421. height: math.unit(6, "feet"),
  16422. weight: math.unit(269, "lb"),
  16423. name: "Back",
  16424. image: {
  16425. source: "./media/characters/danny-kapowsky/back.svg",
  16426. extra: 797 / 760,
  16427. bottom: 0.025
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Macro",
  16434. height: math.unit(150, "feet"),
  16435. default: true
  16436. },
  16437. {
  16438. name: "Macro+",
  16439. height: math.unit(200, "feet")
  16440. },
  16441. {
  16442. name: "Macro++",
  16443. height: math.unit(300, "feet")
  16444. },
  16445. {
  16446. name: "Macro+++",
  16447. height: math.unit(400, "feet")
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16453. {
  16454. side: {
  16455. height: math.unit(6, "feet"),
  16456. weight: math.unit(170, "lb"),
  16457. name: "Side",
  16458. image: {
  16459. source: "./media/characters/finn/side.svg",
  16460. extra: 1953 / 1807,
  16461. bottom: 0.057
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Megamacro",
  16468. height: math.unit(14445, "feet"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(5 + 6 / 12, "feet"),
  16478. weight: math.unit(125, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/roy/front.svg",
  16482. extra: 1,
  16483. bottom: 0.11
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Micro",
  16490. height: math.unit(3, "inches"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(5 + 6 / 12, "feet")
  16496. },
  16497. {
  16498. name: "Lesser Macro",
  16499. height: math.unit(60, "feet")
  16500. },
  16501. {
  16502. name: "Greater Macro",
  16503. height: math.unit(120, "feet")
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(100, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/aevsivs/front.svg",
  16516. extra: 1,
  16517. bottom: 0.03
  16518. }
  16519. },
  16520. back: {
  16521. height: math.unit(6, "feet"),
  16522. weight: math.unit(100, "lb"),
  16523. name: "Back",
  16524. image: {
  16525. source: "./media/characters/aevsivs/back.svg"
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Micro",
  16532. height: math.unit(2, "inches"),
  16533. default: true
  16534. },
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(5, "feet")
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(5 + 7 / 12, "feet"),
  16546. weight: math.unit(159, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/hildegard/front.svg",
  16550. extra: 289 / 269,
  16551. bottom: 7.63 / 297.8
  16552. }
  16553. },
  16554. back: {
  16555. height: math.unit(5 + 7 / 12, "feet"),
  16556. weight: math.unit(159, "lb"),
  16557. name: "Back",
  16558. image: {
  16559. source: "./media/characters/hildegard/back.svg",
  16560. extra: 280 / 260,
  16561. bottom: 2.3 / 282
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(5 + 7 / 12, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16575. {
  16576. bernard: {
  16577. height: math.unit(2 + 7 / 12, "feet"),
  16578. weight: math.unit(66, "lb"),
  16579. name: "Bernard",
  16580. rename: true,
  16581. image: {
  16582. source: "./media/characters/bernard-wilder/bernard.svg",
  16583. extra: 192 / 128,
  16584. bottom: 0.05
  16585. }
  16586. },
  16587. wilder: {
  16588. height: math.unit(5 + 8 / 12, "feet"),
  16589. weight: math.unit(143, "lb"),
  16590. name: "Wilder",
  16591. rename: true,
  16592. image: {
  16593. source: "./media/characters/bernard-wilder/wilder.svg",
  16594. extra: 361 / 312,
  16595. bottom: 0.02
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(2 + 7 / 12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16609. {
  16610. anthro: {
  16611. height: math.unit(6 + 1 / 12, "feet"),
  16612. weight: math.unit(155, "lb"),
  16613. name: "Anthro",
  16614. image: {
  16615. source: "./media/characters/hearth/anthro.svg",
  16616. extra: 1178/1136,
  16617. bottom: 28/1206
  16618. }
  16619. },
  16620. feral: {
  16621. height: math.unit(3.78, "feet"),
  16622. weight: math.unit(35, "kg"),
  16623. name: "Feral",
  16624. image: {
  16625. source: "./media/characters/hearth/feral.svg",
  16626. extra: 153 / 135,
  16627. bottom: 0.03
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(6 + 1 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(6, "feet"),
  16644. weight: math.unit(182, "lb"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/ingrid/front.svg",
  16648. extra: 294 / 268,
  16649. bottom: 0.027
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(6, "feet"),
  16657. default: true
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16663. {
  16664. eevee: {
  16665. height: math.unit(2 + 10 / 12, "feet"),
  16666. weight: math.unit(86, "lb"),
  16667. name: "Malgam",
  16668. image: {
  16669. source: "./media/characters/malgam/eevee.svg",
  16670. extra: 952/784,
  16671. bottom: 38/990
  16672. }
  16673. },
  16674. sylveon: {
  16675. height: math.unit(4, "feet"),
  16676. weight: math.unit(101, "lb"),
  16677. name: "Future Malgam",
  16678. rename: true,
  16679. image: {
  16680. source: "./media/characters/malgam/sylveon.svg",
  16681. extra: 371 / 325,
  16682. bottom: 0.015
  16683. }
  16684. },
  16685. gigantamax: {
  16686. height: math.unit(50, "feet"),
  16687. name: "Gigantamax Malgam",
  16688. rename: true,
  16689. image: {
  16690. source: "./media/characters/malgam/gigantamax.svg"
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(2 + 10 / 12, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16704. {
  16705. front: {
  16706. height: math.unit(5 + 11 / 12, "feet"),
  16707. weight: math.unit(188, "lb"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/fleur/front.svg",
  16711. extra: 309 / 283,
  16712. bottom: 0.007
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(5 + 11 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(5 + 4 / 12, "feet"),
  16729. weight: math.unit(122, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/jude/front.svg",
  16733. extra: 288 / 273,
  16734. bottom: 0.03
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(5 + 4 / 12, "feet"),
  16742. default: true
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(5 + 11 / 12, "feet"),
  16751. weight: math.unit(190, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/seara/front.svg",
  16755. extra: 1,
  16756. bottom: 0.05
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(5 + 11 / 12, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(16 + 5 / 12, "feet"),
  16773. weight: math.unit(524, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/caspian-lugia/front.svg",
  16777. extra: 1,
  16778. bottom: 0.04
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(16 + 5 / 12, "feet"),
  16786. default: true
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16792. {
  16793. front: {
  16794. height: math.unit(5 + 7 / 12, "feet"),
  16795. weight: math.unit(170, "lb"),
  16796. name: "Front",
  16797. image: {
  16798. source: "./media/characters/mika/front.svg",
  16799. extra: 1,
  16800. bottom: 0.016
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Normal",
  16807. height: math.unit(5 + 7 / 12, "feet"),
  16808. default: true
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16814. {
  16815. front: {
  16816. height: math.unit(6 + 2 / 12, "feet"),
  16817. weight: math.unit(268, "lb"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/sol/front.svg",
  16821. extra: 247 / 231,
  16822. bottom: 0.05
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(6 + 2 / 12, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16836. {
  16837. buizel: {
  16838. height: math.unit(2 + 5 / 12, "feet"),
  16839. weight: math.unit(87, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/umiko/buizel.svg",
  16843. extra: 172 / 157,
  16844. bottom: 0.01
  16845. },
  16846. form: "buizel",
  16847. default: true
  16848. },
  16849. floatzel: {
  16850. height: math.unit(5 + 9 / 12, "feet"),
  16851. weight: math.unit(250, "lb"),
  16852. name: "Front",
  16853. image: {
  16854. source: "./media/characters/umiko/floatzel.svg",
  16855. extra: 1076/1006,
  16856. bottom: 15/1091
  16857. },
  16858. form: "floatzel",
  16859. default: true
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(2 + 5 / 12, "feet"),
  16866. form: "buizel",
  16867. default: true
  16868. },
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(5 + 9 / 12, "feet"),
  16872. form: "floatzel",
  16873. default: true
  16874. },
  16875. ],
  16876. {
  16877. "buizel": {
  16878. name: "Buizel"
  16879. },
  16880. "floatzel": {
  16881. name: "Floatzel",
  16882. default: true
  16883. }
  16884. }
  16885. ))
  16886. characterMakers.push(() => makeCharacter(
  16887. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16888. {
  16889. front: {
  16890. height: math.unit(6 + 2 / 12, "feet"),
  16891. weight: math.unit(146, "lb"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/iliac/front.svg",
  16895. extra: 389 / 365,
  16896. bottom: 0.035
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Normal",
  16903. height: math.unit(6 + 2 / 12, "feet"),
  16904. default: true
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(6, "feet"),
  16913. weight: math.unit(170, "lb"),
  16914. name: "Front",
  16915. image: {
  16916. source: "./media/characters/topaz/front.svg",
  16917. extra: 317 / 303,
  16918. bottom: 0.055
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(6, "feet"),
  16926. default: true
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16932. {
  16933. front: {
  16934. height: math.unit(5 + 11 / 12, "feet"),
  16935. weight: math.unit(144, "lb"),
  16936. name: "Front",
  16937. image: {
  16938. source: "./media/characters/gabriel/front.svg",
  16939. extra: 285 / 262,
  16940. bottom: 0.004
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(5 + 11 / 12, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16954. {
  16955. side: {
  16956. height: math.unit(6 + 5 / 12, "feet"),
  16957. weight: math.unit(300, "lb"),
  16958. name: "Side",
  16959. image: {
  16960. source: "./media/characters/tempest-suicune/side.svg",
  16961. extra: 195 / 154,
  16962. bottom: 0.04
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(6 + 5 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(7 + 2 / 12, "feet"),
  16979. weight: math.unit(322, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/vulcan/front.svg",
  16983. extra: 154 / 147,
  16984. bottom: 0.04
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(7 + 2 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(5 + 10 / 12, "feet"),
  17001. weight: math.unit(264, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/gault/front.svg",
  17005. extra: 161 / 140,
  17006. bottom: 0.028
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(5 + 10 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(6, "feet"),
  17023. weight: math.unit(150, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/shard/front.svg",
  17027. extra: 273 / 238,
  17028. bottom: 0.02
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(3 + 6 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(5 + 11 / 12, "feet"),
  17045. weight: math.unit(146, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/ashe/front.svg",
  17049. extra: 400 / 373,
  17050. bottom: 0.01
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(5 + 11 / 12, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17064. {
  17065. front: {
  17066. height: math.unit(5 + 5 / 12, "feet"),
  17067. weight: math.unit(135, "lb"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/beatrix/front.svg",
  17071. extra: 392 / 379,
  17072. bottom: 0.01
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(6, "feet"),
  17080. default: true
  17081. },
  17082. ]
  17083. ))
  17084. characterMakers.push(() => makeCharacter(
  17085. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17086. {
  17087. front: {
  17088. height: math.unit(6 + 2/12, "feet"),
  17089. weight: math.unit(135, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/ignatius/front.svg",
  17093. extra: 1380/1259,
  17094. bottom: 27/1407
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(6 + 2/12, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6 + 2 / 12, "feet"),
  17111. weight: math.unit(138, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/mei-li/front.svg",
  17115. extra: 237 / 229,
  17116. bottom: 0.03
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(6 + 2 / 12, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(2 + 4 / 12, "feet"),
  17133. weight: math.unit(62, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/puru/front.svg",
  17137. extra: 206 / 149,
  17138. bottom: 0.06
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Normal",
  17145. height: math.unit(2 + 4 / 12, "feet"),
  17146. default: true
  17147. },
  17148. ]
  17149. ))
  17150. characterMakers.push(() => makeCharacter(
  17151. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17152. {
  17153. anthro: {
  17154. height: math.unit(5 + 8/12, "feet"),
  17155. weight: math.unit(200, "lb"),
  17156. energyNeed: math.unit(2000, "kcal"),
  17157. name: "Anthro",
  17158. image: {
  17159. source: "./media/characters/kee/anthro.svg",
  17160. extra: 3251/3184,
  17161. bottom: 250/3501
  17162. }
  17163. },
  17164. taur: {
  17165. height: math.unit(11, "feet"),
  17166. weight: math.unit(500, "lb"),
  17167. energyNeed: math.unit(5000, "kcal"),
  17168. name: "Taur",
  17169. image: {
  17170. source: "./media/characters/kee/taur.svg",
  17171. extra: 1362/1320,
  17172. bottom: 83/1445
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(5 + 8/12, "feet"),
  17180. default: true
  17181. },
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(35, "feet")
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17190. {
  17191. anthro: {
  17192. height: math.unit(7, "feet"),
  17193. weight: math.unit(190, "lb"),
  17194. name: "Anthro",
  17195. image: {
  17196. source: "./media/characters/cobalt-dracha/anthro.svg",
  17197. extra: 231 / 225,
  17198. bottom: 0.04
  17199. }
  17200. },
  17201. feral: {
  17202. height: math.unit(9 + 7 / 12, "feet"),
  17203. weight: math.unit(294, "lb"),
  17204. name: "Feral",
  17205. image: {
  17206. source: "./media/characters/cobalt-dracha/feral.svg",
  17207. extra: 692 / 633,
  17208. bottom: 0.05
  17209. }
  17210. },
  17211. },
  17212. [
  17213. {
  17214. name: "Normal",
  17215. height: math.unit(7, "feet"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17222. {
  17223. fallen: {
  17224. height: math.unit(11 + 8 / 12, "feet"),
  17225. weight: math.unit(485, "lb"),
  17226. name: "Java (Fallen)",
  17227. rename: true,
  17228. image: {
  17229. source: "./media/characters/java/fallen.svg",
  17230. extra: 226 / 208,
  17231. bottom: 0.005
  17232. }
  17233. },
  17234. godkin: {
  17235. height: math.unit(10 + 6 / 12, "feet"),
  17236. weight: math.unit(328, "lb"),
  17237. name: "Java (Godkin)",
  17238. rename: true,
  17239. image: {
  17240. source: "./media/characters/java/godkin.svg",
  17241. extra: 1104/1068,
  17242. bottom: 36/1140
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(11 + 8 / 12, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17256. {
  17257. front: {
  17258. height: math.unit(5 + 9 / 12, "feet"),
  17259. weight: math.unit(170, "lb"),
  17260. name: "Front",
  17261. image: {
  17262. source: "./media/characters/purna/front.svg",
  17263. extra: 239 / 229,
  17264. bottom: 0.01
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(5 + 9 / 12, "feet"),
  17272. default: true
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17278. {
  17279. front: {
  17280. height: math.unit(5 + 9 / 12, "feet"),
  17281. weight: math.unit(142, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/kuva/front.svg",
  17285. extra: 281 / 271,
  17286. bottom: 0.006
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(5 + 9 / 12, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17300. {
  17301. anthro: {
  17302. height: math.unit(9 + 2 / 12, "feet"),
  17303. weight: math.unit(270, "lb"),
  17304. name: "Anthro",
  17305. image: {
  17306. source: "./media/characters/embra/anthro.svg",
  17307. extra: 200 / 187,
  17308. bottom: 0.02
  17309. }
  17310. },
  17311. feral: {
  17312. height: math.unit(18 + 8 / 12, "feet"),
  17313. weight: math.unit(576, "lb"),
  17314. name: "Feral",
  17315. image: {
  17316. source: "./media/characters/embra/feral.svg",
  17317. extra: 152 / 137,
  17318. bottom: 0.037
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(9 + 2 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17332. {
  17333. anthro: {
  17334. height: math.unit(10 + 9 / 12, "feet"),
  17335. weight: math.unit(224, "lb"),
  17336. name: "Anthro",
  17337. image: {
  17338. source: "./media/characters/grottos/anthro.svg",
  17339. extra: 350 / 332,
  17340. bottom: 0.045
  17341. }
  17342. },
  17343. feral: {
  17344. height: math.unit(20 + 7 / 12, "feet"),
  17345. weight: math.unit(629, "lb"),
  17346. name: "Feral",
  17347. image: {
  17348. source: "./media/characters/grottos/feral.svg",
  17349. extra: 207 / 190,
  17350. bottom: 0.05
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(10 + 9 / 12, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17364. {
  17365. anthro: {
  17366. height: math.unit(9 + 6 / 12, "feet"),
  17367. weight: math.unit(298, "lb"),
  17368. name: "Anthro",
  17369. image: {
  17370. source: "./media/characters/frifna/anthro.svg",
  17371. extra: 282 / 269,
  17372. bottom: 0.015
  17373. }
  17374. },
  17375. feral: {
  17376. height: math.unit(16 + 2 / 12, "feet"),
  17377. weight: math.unit(624, "lb"),
  17378. name: "Feral",
  17379. image: {
  17380. source: "./media/characters/frifna/feral.svg"
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(9 + 6 / 12, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(6 + 2 / 12, "feet"),
  17397. weight: math.unit(168, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/elise/front.svg",
  17401. extra: 276 / 271
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(6 + 2 / 12, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(5 + 10 / 12, "feet"),
  17418. weight: math.unit(210, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/glade/front.svg",
  17422. extra: 258 / 247,
  17423. bottom: 0.008
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(5 + 10 / 12, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(5 + 10 / 12, "feet"),
  17440. weight: math.unit(129, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/rina/front.svg",
  17444. extra: 266 / 255,
  17445. bottom: 0.005
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(5 + 10 / 12, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 1 / 12, "feet"),
  17462. weight: math.unit(192, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/veronica/front.svg",
  17466. extra: 319 / 309,
  17467. bottom: 0.005
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 1 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(9 + 3 / 12, "feet"),
  17484. weight: math.unit(1100, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/braxton/front.svg",
  17488. extra: 1057 / 984,
  17489. bottom: 0.05
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(9 + 3 / 12, "feet")
  17497. },
  17498. {
  17499. name: "Giant",
  17500. height: math.unit(300, "feet"),
  17501. default: true
  17502. },
  17503. {
  17504. name: "Macro",
  17505. height: math.unit(700, "feet")
  17506. },
  17507. {
  17508. name: "Megamacro",
  17509. height: math.unit(6000, "feet")
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17515. {
  17516. front: {
  17517. height: math.unit(6 + 7 / 12, "feet"),
  17518. weight: math.unit(150, "lb"),
  17519. name: "Front",
  17520. image: {
  17521. source: "./media/characters/blue-feyonics/front.svg",
  17522. extra: 1403 / 1306,
  17523. bottom: 0.047
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(6 + 7 / 12, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17537. {
  17538. front: {
  17539. height: math.unit(1.8, "meters"),
  17540. weight: math.unit(60, "kg"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/maxwell/front.svg",
  17544. extra: 2060 / 1873
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Micro",
  17551. height: math.unit(1, "mm")
  17552. },
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(1.8, "meter"),
  17556. default: true
  17557. },
  17558. {
  17559. name: "Macro",
  17560. height: math.unit(30, "meters")
  17561. },
  17562. {
  17563. name: "Megamacro",
  17564. height: math.unit(10, "km")
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17570. {
  17571. front: {
  17572. height: math.unit(6, "feet"),
  17573. weight: math.unit(150, "lb"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/jack/front.svg",
  17577. extra: 1754 / 1640,
  17578. bottom: 0.01
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(80000, "feet"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Max size",
  17590. height: math.unit(10, "lightyears")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17596. {
  17597. urban: {
  17598. height: math.unit(5, "feet"),
  17599. weight: math.unit(240, "lb"),
  17600. name: "Urban",
  17601. image: {
  17602. source: "./media/characters/cafat/urban.svg",
  17603. extra: 1223/1126,
  17604. bottom: 205/1428
  17605. }
  17606. },
  17607. summer: {
  17608. height: math.unit(5, "feet"),
  17609. weight: math.unit(240, "lb"),
  17610. name: "Summer",
  17611. image: {
  17612. source: "./media/characters/cafat/summer.svg",
  17613. extra: 1223/1126,
  17614. bottom: 205/1428
  17615. }
  17616. },
  17617. winter: {
  17618. height: math.unit(5, "feet"),
  17619. weight: math.unit(240, "lb"),
  17620. name: "Winter",
  17621. image: {
  17622. source: "./media/characters/cafat/winter.svg",
  17623. extra: 1223/1126,
  17624. bottom: 205/1428
  17625. }
  17626. },
  17627. lingerie: {
  17628. height: math.unit(5, "feet"),
  17629. weight: math.unit(240, "lb"),
  17630. name: "Lingerie",
  17631. image: {
  17632. source: "./media/characters/cafat/lingerie.svg",
  17633. extra: 1223/1126,
  17634. bottom: 205/1428
  17635. }
  17636. },
  17637. upright: {
  17638. height: math.unit(6.3, "feet"),
  17639. weight: math.unit(240, "lb"),
  17640. name: "Upright",
  17641. image: {
  17642. source: "./media/characters/cafat/upright.svg",
  17643. bottom: 0.01
  17644. }
  17645. },
  17646. uprightFull: {
  17647. height: math.unit(6.3, "feet"),
  17648. weight: math.unit(240, "lb"),
  17649. name: "Upright (Full)",
  17650. image: {
  17651. source: "./media/characters/cafat/upright-full.svg",
  17652. bottom: 0.01
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Small",
  17659. height: math.unit(5, "feet"),
  17660. default: true
  17661. },
  17662. {
  17663. name: "Large",
  17664. height: math.unit(13, "feet")
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(6, "feet"),
  17673. weight: math.unit(150, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/verin-raharra/front.svg",
  17677. extra: 5019 / 4835,
  17678. bottom: 0.023
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(7 + 5 / 12, "feet"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Upsized",
  17690. height: math.unit(20, "feet")
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(7, "feet"),
  17699. weight: math.unit(230, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/nakata/front.svg",
  17703. extra: 1.005,
  17704. bottom: 0.01
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(7, "feet"),
  17712. default: true
  17713. },
  17714. {
  17715. name: "Big",
  17716. height: math.unit(14, "feet")
  17717. },
  17718. {
  17719. name: "Macro",
  17720. height: math.unit(400, "feet")
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(4.91, "feet"),
  17729. weight: math.unit(100, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/lily/front.svg",
  17733. extra: 1585 / 1415,
  17734. bottom: 0.02
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(4.91, "feet"),
  17742. default: true
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17748. {
  17749. laying: {
  17750. height: math.unit(4 + 4 / 12, "feet"),
  17751. weight: math.unit(600, "lb"),
  17752. name: "Laying",
  17753. image: {
  17754. source: "./media/characters/sheila/laying.svg",
  17755. extra: 1333 / 1265,
  17756. bottom: 0.16
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(4 + 4 / 12, "feet"),
  17764. default: true
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17770. {
  17771. front: {
  17772. height: math.unit(6, "feet"),
  17773. weight: math.unit(190, "lb"),
  17774. name: "Front",
  17775. image: {
  17776. source: "./media/characters/sax/front.svg",
  17777. extra: 1187 / 973,
  17778. bottom: 0.042
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Micro",
  17785. height: math.unit(4, "inches"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(6, "feet"),
  17795. weight: math.unit(150, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/pandora/front.svg",
  17799. extra: 2720 / 2556,
  17800. bottom: 0.015
  17801. }
  17802. },
  17803. back: {
  17804. height: math.unit(6, "feet"),
  17805. weight: math.unit(150, "lb"),
  17806. name: "Back",
  17807. image: {
  17808. source: "./media/characters/pandora/back.svg",
  17809. extra: 2720 / 2556,
  17810. bottom: 0.01
  17811. }
  17812. },
  17813. beans: {
  17814. height: math.unit(6 / 8, "feet"),
  17815. name: "Beans",
  17816. image: {
  17817. source: "./media/characters/pandora/beans.svg"
  17818. }
  17819. },
  17820. collar: {
  17821. height: math.unit(0.31, "feet"),
  17822. name: "Collar",
  17823. image: {
  17824. source: "./media/characters/pandora/collar.svg"
  17825. }
  17826. },
  17827. skirt: {
  17828. height: math.unit(6, "feet"),
  17829. weight: math.unit(150, "lb"),
  17830. name: "Skirt",
  17831. image: {
  17832. source: "./media/characters/pandora/skirt.svg",
  17833. extra: 1622 / 1525,
  17834. bottom: 0.015
  17835. }
  17836. },
  17837. hoodie: {
  17838. height: math.unit(6, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Hoodie",
  17841. image: {
  17842. source: "./media/characters/pandora/hoodie.svg",
  17843. extra: 1622 / 1525,
  17844. bottom: 0.015
  17845. }
  17846. },
  17847. casual: {
  17848. height: math.unit(6, "feet"),
  17849. weight: math.unit(150, "lb"),
  17850. name: "Casual",
  17851. image: {
  17852. source: "./media/characters/pandora/casual.svg",
  17853. extra: 1622 / 1525,
  17854. bottom: 0.015
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Normal",
  17861. height: math.unit(6, "feet")
  17862. },
  17863. {
  17864. name: "Big Steppy",
  17865. height: math.unit(1, "km"),
  17866. default: true
  17867. },
  17868. {
  17869. name: "Galactic Steppy",
  17870. height: math.unit(2, "gigameters")
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17876. {
  17877. side: {
  17878. height: math.unit(10, "feet"),
  17879. weight: math.unit(800, "kg"),
  17880. name: "Side",
  17881. image: {
  17882. source: "./media/characters/venio-darcony/side.svg",
  17883. extra: 1373 / 1003,
  17884. bottom: 0.037
  17885. }
  17886. },
  17887. front: {
  17888. height: math.unit(19, "feet"),
  17889. weight: math.unit(800, "kg"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/venio-darcony/front.svg"
  17893. }
  17894. },
  17895. back: {
  17896. height: math.unit(19, "feet"),
  17897. weight: math.unit(800, "kg"),
  17898. name: "Back",
  17899. image: {
  17900. source: "./media/characters/venio-darcony/back.svg"
  17901. }
  17902. },
  17903. sideNsfw: {
  17904. height: math.unit(10, "feet"),
  17905. weight: math.unit(800, "kg"),
  17906. name: "Side (NSFW)",
  17907. image: {
  17908. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17909. extra: 1373 / 1003,
  17910. bottom: 0.037
  17911. }
  17912. },
  17913. frontNsfw: {
  17914. height: math.unit(19, "feet"),
  17915. weight: math.unit(800, "kg"),
  17916. name: "Front (NSFW)",
  17917. image: {
  17918. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17919. }
  17920. },
  17921. backNsfw: {
  17922. height: math.unit(19, "feet"),
  17923. weight: math.unit(800, "kg"),
  17924. name: "Back (NSFW)",
  17925. image: {
  17926. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17927. }
  17928. },
  17929. sideArmored: {
  17930. height: math.unit(10, "feet"),
  17931. weight: math.unit(800, "kg"),
  17932. name: "Side (Armored)",
  17933. image: {
  17934. source: "./media/characters/venio-darcony/side-armored.svg",
  17935. extra: 1373 / 1003,
  17936. bottom: 0.037
  17937. }
  17938. },
  17939. frontArmored: {
  17940. height: math.unit(19, "feet"),
  17941. weight: math.unit(900, "kg"),
  17942. name: "Front (Armored)",
  17943. image: {
  17944. source: "./media/characters/venio-darcony/front-armored.svg"
  17945. }
  17946. },
  17947. backArmored: {
  17948. height: math.unit(19, "feet"),
  17949. weight: math.unit(900, "kg"),
  17950. name: "Back (Armored)",
  17951. image: {
  17952. source: "./media/characters/venio-darcony/back-armored.svg"
  17953. }
  17954. },
  17955. sword: {
  17956. height: math.unit(10, "feet"),
  17957. weight: math.unit(50, "lb"),
  17958. name: "Sword",
  17959. image: {
  17960. source: "./media/characters/venio-darcony/sword.svg"
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(10, "feet")
  17968. },
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(130, "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro+",
  17976. height: math.unit(240, "feet")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(6, "feet"),
  17985. weight: math.unit(150, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/veski/front.svg",
  17989. extra: 1299 / 1225,
  17990. bottom: 0.04
  17991. }
  17992. },
  17993. back: {
  17994. height: math.unit(6, "feet"),
  17995. weight: math.unit(150, "lb"),
  17996. name: "Back",
  17997. image: {
  17998. source: "./media/characters/veski/back.svg",
  17999. extra: 1299 / 1225,
  18000. bottom: 0.008
  18001. }
  18002. },
  18003. maw: {
  18004. height: math.unit(1.5 * 1.21, "feet"),
  18005. name: "Maw",
  18006. image: {
  18007. source: "./media/characters/veski/maw.svg"
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Macro",
  18014. height: math.unit(2, "km"),
  18015. default: true
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(5 + 7 / 12, "feet"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/isabelle/front.svg",
  18027. extra: 2130 / 1976,
  18028. bottom: 0.05
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Supermicro",
  18035. height: math.unit(10, "micrometers")
  18036. },
  18037. {
  18038. name: "Micro",
  18039. height: math.unit(1, "inch")
  18040. },
  18041. {
  18042. name: "Tiny",
  18043. height: math.unit(5, "inches")
  18044. },
  18045. {
  18046. name: "Standard",
  18047. height: math.unit(5 + 7 / 12, "inches")
  18048. },
  18049. {
  18050. name: "Macro",
  18051. height: math.unit(80, "meters"),
  18052. default: true
  18053. },
  18054. {
  18055. name: "Megamacro",
  18056. height: math.unit(250, "meters")
  18057. },
  18058. {
  18059. name: "Gigamacro",
  18060. height: math.unit(5, "km")
  18061. },
  18062. {
  18063. name: "Cosmic",
  18064. height: math.unit(2.5e6, "miles")
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(6, "feet"),
  18073. weight: math.unit(150, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/hanzo/front.svg",
  18077. extra: 374 / 344,
  18078. bottom: 0.02
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(8, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(7, "feet"),
  18095. weight: math.unit(130, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/anna/front.svg",
  18099. extra: 169 / 145,
  18100. bottom: 0.06
  18101. }
  18102. },
  18103. full: {
  18104. height: math.unit(4.96, "feet"),
  18105. weight: math.unit(220, "lb"),
  18106. name: "Full",
  18107. image: {
  18108. source: "./media/characters/anna/full.svg",
  18109. extra: 138 / 114,
  18110. bottom: 0.15
  18111. }
  18112. },
  18113. tongue: {
  18114. height: math.unit(2.53, "feet"),
  18115. name: "Tongue",
  18116. image: {
  18117. source: "./media/characters/anna/tongue.svg"
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(7, "feet"),
  18125. default: true
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(7, "feet"),
  18134. weight: math.unit(150, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/ian-corvid/front.svg",
  18138. extra: 150 / 142,
  18139. bottom: 0.02
  18140. }
  18141. },
  18142. back: {
  18143. height: math.unit(7, "feet"),
  18144. weight: math.unit(150, "lb"),
  18145. name: "Back",
  18146. image: {
  18147. source: "./media/characters/ian-corvid/back.svg",
  18148. extra: 150 / 143,
  18149. bottom: 0.01
  18150. }
  18151. },
  18152. stomping: {
  18153. height: math.unit(7, "feet"),
  18154. weight: math.unit(150, "lb"),
  18155. name: "Stomping",
  18156. image: {
  18157. source: "./media/characters/ian-corvid/stomping.svg",
  18158. extra: 76 / 72
  18159. }
  18160. },
  18161. sitting: {
  18162. height: math.unit(7 / 1.8, "feet"),
  18163. weight: math.unit(150, "lb"),
  18164. name: "Sitting",
  18165. image: {
  18166. source: "./media/characters/ian-corvid/sitting.svg",
  18167. extra: 1400 / 1269,
  18168. bottom: 0.15
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Tiny Microw",
  18175. height: math.unit(1, "inch")
  18176. },
  18177. {
  18178. name: "Microw",
  18179. height: math.unit(6, "inches")
  18180. },
  18181. {
  18182. name: "Crow",
  18183. height: math.unit(7 + 1 / 12, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Macrow",
  18188. height: math.unit(176, "feet")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(5 + 7 / 12, "feet"),
  18197. weight: math.unit(147, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/natalie-kellon/front.svg",
  18201. extra: 1214 / 1141,
  18202. bottom: 0.02
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Micro",
  18209. height: math.unit(1 / 16, "inch")
  18210. },
  18211. {
  18212. name: "Tiny",
  18213. height: math.unit(4, "inches")
  18214. },
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(5 + 7 / 12, "feet"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Amazon",
  18222. height: math.unit(12, "feet")
  18223. },
  18224. {
  18225. name: "Giantess",
  18226. height: math.unit(160, "meters")
  18227. },
  18228. {
  18229. name: "Titaness",
  18230. height: math.unit(800, "meters")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(150, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/alluria/front.svg",
  18243. extra: 806 / 738,
  18244. bottom: 0.01
  18245. }
  18246. },
  18247. side: {
  18248. height: math.unit(6, "feet"),
  18249. weight: math.unit(150, "lb"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/alluria/side.svg",
  18253. extra: 800 / 750,
  18254. }
  18255. },
  18256. back: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Back",
  18260. image: {
  18261. source: "./media/characters/alluria/back.svg",
  18262. extra: 806 / 738,
  18263. }
  18264. },
  18265. frontMaid: {
  18266. height: math.unit(6, "feet"),
  18267. weight: math.unit(150, "lb"),
  18268. name: "Front (Maid)",
  18269. image: {
  18270. source: "./media/characters/alluria/front-maid.svg",
  18271. extra: 806 / 738,
  18272. bottom: 0.01
  18273. }
  18274. },
  18275. sideMaid: {
  18276. height: math.unit(6, "feet"),
  18277. weight: math.unit(150, "lb"),
  18278. name: "Side (Maid)",
  18279. image: {
  18280. source: "./media/characters/alluria/side-maid.svg",
  18281. extra: 800 / 750,
  18282. bottom: 0.005
  18283. }
  18284. },
  18285. backMaid: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(150, "lb"),
  18288. name: "Back (Maid)",
  18289. image: {
  18290. source: "./media/characters/alluria/back-maid.svg",
  18291. extra: 806 / 738,
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Micro",
  18298. height: math.unit(6, "inches"),
  18299. default: true
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(6, "feet"),
  18308. weight: math.unit(150, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/kyle/front.svg",
  18312. extra: 1069 / 962,
  18313. bottom: 77.228 / 1727.45
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Macro",
  18320. height: math.unit(150, "feet"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6, "feet"),
  18330. weight: math.unit(300, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/duncan/front.svg",
  18334. extra: 1650 / 1482,
  18335. bottom: 0.05
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(100, "feet"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(5 + 4 / 12, "feet"),
  18352. weight: math.unit(220, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/memory/front.svg",
  18356. extra: 3641 / 3545,
  18357. bottom: 0.03
  18358. }
  18359. },
  18360. back: {
  18361. height: math.unit(5 + 4 / 12, "feet"),
  18362. weight: math.unit(220, "lb"),
  18363. name: "Back",
  18364. image: {
  18365. source: "./media/characters/memory/back.svg",
  18366. extra: 3641 / 3545,
  18367. bottom: 0.025
  18368. }
  18369. },
  18370. frontSkirt: {
  18371. height: math.unit(5 + 4 / 12, "feet"),
  18372. weight: math.unit(220, "lb"),
  18373. name: "Front (Skirt)",
  18374. image: {
  18375. source: "./media/characters/memory/front-skirt.svg",
  18376. extra: 3641 / 3545,
  18377. bottom: 0.03
  18378. }
  18379. },
  18380. frontDress: {
  18381. height: math.unit(5 + 4 / 12, "feet"),
  18382. weight: math.unit(220, "lb"),
  18383. name: "Front (Dress)",
  18384. image: {
  18385. source: "./media/characters/memory/front-dress.svg",
  18386. extra: 3641 / 3545,
  18387. bottom: 0.03
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Micro",
  18394. height: math.unit(6, "inches"),
  18395. default: true
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(5 + 4 / 12, "feet")
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(4 + 11 / 12, "feet"),
  18408. weight: math.unit(100, "lb"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/luno/front.svg",
  18412. extra: 1535 / 1487,
  18413. bottom: 0.03
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Micro",
  18420. height: math.unit(3, "inches")
  18421. },
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(4 + 11 / 12, "feet"),
  18425. default: true
  18426. },
  18427. {
  18428. name: "Macro",
  18429. height: math.unit(300, "feet")
  18430. },
  18431. {
  18432. name: "Megamacro",
  18433. height: math.unit(700, "miles")
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(6 + 2 / 12, "feet"),
  18442. weight: math.unit(170, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/jamesy/front.svg",
  18446. extra: 440 / 382,
  18447. bottom: 0.005
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(3, "inches")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(6 + 2 / 12, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(300, "feet")
  18464. },
  18465. {
  18466. name: "Megamacro",
  18467. height: math.unit(700, "miles")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(6, "feet"),
  18476. weight: math.unit(160, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/mark/front.svg",
  18480. extra: 3300 / 3100,
  18481. bottom: 136.42 / 3440.47
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Macro",
  18488. height: math.unit(120, "meters")
  18489. },
  18490. {
  18491. name: "Bigger Macro",
  18492. height: math.unit(350, "meters")
  18493. },
  18494. {
  18495. name: "Megamacro",
  18496. height: math.unit(8, "km"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Continental",
  18501. height: math.unit(4550, "km")
  18502. },
  18503. {
  18504. name: "Planetary",
  18505. height: math.unit(65000, "km")
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18511. {
  18512. front: {
  18513. height: math.unit(6, "feet"),
  18514. weight: math.unit(400, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/mac/front.svg",
  18518. extra: 1048 / 987.7,
  18519. bottom: 60 / 1107.6,
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Macro",
  18526. height: math.unit(500, "feet"),
  18527. default: true
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(5 + 2 / 12, "feet"),
  18536. weight: math.unit(190, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/bari/front.svg",
  18540. extra: 3156 / 2880,
  18541. bottom: 0.03
  18542. }
  18543. },
  18544. back: {
  18545. height: math.unit(5 + 2 / 12, "feet"),
  18546. weight: math.unit(190, "lb"),
  18547. name: "Back",
  18548. image: {
  18549. source: "./media/characters/bari/back.svg",
  18550. extra: 3260 / 2834,
  18551. bottom: 0.025
  18552. }
  18553. },
  18554. frontPlush: {
  18555. height: math.unit(5 + 2 / 12, "feet"),
  18556. weight: math.unit(190, "lb"),
  18557. name: "Front (Plush)",
  18558. image: {
  18559. source: "./media/characters/bari/front-plush.svg",
  18560. extra: 1112 / 1061,
  18561. bottom: 0.002
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(3, "inches")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(5 + 2 / 12, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(20, "feet")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(6 + 1 / 12, "feet"),
  18586. weight: math.unit(275, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/hunter-misha-raven/front.svg"
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Mortal",
  18596. height: math.unit(6 + 1 / 12, "feet")
  18597. },
  18598. {
  18599. name: "Divine",
  18600. height: math.unit(1.12134e34, "parsecs"),
  18601. default: true
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(6 + 3 / 12, "feet"),
  18610. weight: math.unit(220, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/max-calore/front.svg",
  18614. extra: 1700 / 1648,
  18615. bottom: 0.01
  18616. }
  18617. },
  18618. back: {
  18619. height: math.unit(6 + 3 / 12, "feet"),
  18620. weight: math.unit(220, "lb"),
  18621. name: "Back",
  18622. image: {
  18623. source: "./media/characters/max-calore/back.svg",
  18624. extra: 1700 / 1648,
  18625. bottom: 0.01
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 3 / 12, "feet"),
  18633. default: true
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18639. {
  18640. side: {
  18641. height: math.unit(2 + 8 / 12, "feet"),
  18642. weight: math.unit(99, "lb"),
  18643. name: "Side",
  18644. image: {
  18645. source: "./media/characters/aspen/side.svg",
  18646. extra: 152 / 138,
  18647. bottom: 0.032
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(2 + 8 / 12, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18661. {
  18662. side: {
  18663. height: math.unit(3 + 2 / 12, "feet"),
  18664. weight: math.unit(224, "lb"),
  18665. name: "Side",
  18666. image: {
  18667. source: "./media/characters/sheila-feral-wolf/side.svg",
  18668. extra: 179 / 166,
  18669. bottom: 0.03
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(3 + 2 / 12, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18683. {
  18684. side: {
  18685. height: math.unit(1 + 9 / 12, "feet"),
  18686. weight: math.unit(38, "lb"),
  18687. name: "Side",
  18688. image: {
  18689. source: "./media/characters/michelle/side.svg",
  18690. extra: 147 / 136.7,
  18691. bottom: 0.03
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(1 + 9 / 12, "feet"),
  18699. default: true
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(1.54, "feet"),
  18708. weight: math.unit(50, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/nino/front.svg"
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(1.54, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18725. {
  18726. front: {
  18727. height: math.unit(1.49, "feet"),
  18728. weight: math.unit(45, "lb"),
  18729. name: "Front",
  18730. image: {
  18731. source: "./media/characters/viola/front.svg"
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(1.49, "feet"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18745. {
  18746. front: {
  18747. height: math.unit(6 + 5 / 12, "feet"),
  18748. weight: math.unit(580, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/atlas/front.svg",
  18752. extra: 298.5 / 290,
  18753. bottom: 0.015
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(6 + 5 / 12, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18767. {
  18768. side: {
  18769. height: math.unit(15.6, "inches"),
  18770. weight: math.unit(10, "lb"),
  18771. name: "Side",
  18772. image: {
  18773. source: "./media/characters/davy/side.svg",
  18774. extra: 200 / 170,
  18775. bottom: 0.01
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(15.6, "inches"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18789. {
  18790. side: {
  18791. height: math.unit(4 + 8 / 12, "feet"),
  18792. weight: math.unit(166, "lb"),
  18793. name: "Side",
  18794. image: {
  18795. source: "./media/characters/fiona/side.svg",
  18796. extra: 232 / 220,
  18797. bottom: 0.03
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(4 + 8 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18811. {
  18812. front: {
  18813. height: math.unit(26, "inches"),
  18814. weight: math.unit(35, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/lyla/front.svg",
  18818. bottom: 0.1
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(3, "feet"),
  18826. default: true
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18832. {
  18833. side: {
  18834. height: math.unit(1.8, "feet"),
  18835. weight: math.unit(44, "lb"),
  18836. name: "Side",
  18837. image: {
  18838. source: "./media/characters/perseus/side.svg",
  18839. bottom: 0.21
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(1.8, "feet"),
  18847. default: true
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18853. {
  18854. side: {
  18855. height: math.unit(4 + 2 / 12, "feet"),
  18856. weight: math.unit(20, "lb"),
  18857. name: "Side",
  18858. image: {
  18859. source: "./media/characters/remus/side.svg"
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(4 + 2 / 12, "feet"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(4 + 11 / 12, "feet"),
  18876. weight: math.unit(114, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/raf/front.svg",
  18880. extra: 1504/1339,
  18881. bottom: 26/1530
  18882. }
  18883. },
  18884. side: {
  18885. height: math.unit(4 + 11 / 12, "feet"),
  18886. weight: math.unit(114, "lb"),
  18887. name: "Side",
  18888. image: {
  18889. source: "./media/characters/raf/side.svg",
  18890. extra: 1466/1316,
  18891. bottom: 29/1495
  18892. }
  18893. },
  18894. paw: {
  18895. height: math.unit(1.45, "feet"),
  18896. name: "Paw",
  18897. image: {
  18898. source: "./media/characters/raf/paw.svg"
  18899. },
  18900. extraAttributes: {
  18901. "toeSize": {
  18902. name: "Toe Size",
  18903. power: 2,
  18904. type: "area",
  18905. base: math.unit(0.004, "m^2")
  18906. },
  18907. "padSize": {
  18908. name: "Pad Size",
  18909. power: 2,
  18910. type: "area",
  18911. base: math.unit(0.04, "m^2")
  18912. },
  18913. "footSize": {
  18914. name: "Foot Size",
  18915. power: 2,
  18916. type: "area",
  18917. base: math.unit(0.08, "m^2")
  18918. },
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Micro",
  18925. height: math.unit(2, "inches")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(4 + 11 / 12, "feet"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Macro",
  18934. height: math.unit(70, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(1.5, "meters"),
  18943. weight: math.unit(68, "kg"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/liam-einarr/front.svg",
  18947. extra: 2822 / 2666
  18948. }
  18949. },
  18950. back: {
  18951. height: math.unit(1.5, "meters"),
  18952. weight: math.unit(68, "kg"),
  18953. name: "Back",
  18954. image: {
  18955. source: "./media/characters/liam-einarr/back.svg",
  18956. extra: 2822 / 2666,
  18957. bottom: 0.015
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(1.5, "meters"),
  18965. default: true
  18966. },
  18967. {
  18968. name: "Macro",
  18969. height: math.unit(150, "meters")
  18970. },
  18971. {
  18972. name: "Megamacro",
  18973. height: math.unit(35, "km")
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18979. {
  18980. front: {
  18981. height: math.unit(6, "feet"),
  18982. weight: math.unit(75, "kg"),
  18983. name: "Front",
  18984. image: {
  18985. source: "./media/characters/linda/front.svg",
  18986. extra: 930 / 874,
  18987. bottom: 0.004
  18988. }
  18989. },
  18990. },
  18991. [
  18992. {
  18993. name: "Normal",
  18994. height: math.unit(6, "feet"),
  18995. default: true
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(6 + 8 / 12, "feet"),
  19004. weight: math.unit(220, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/caylex/front.svg",
  19008. extra: 821 / 772,
  19009. bottom: 0.07
  19010. }
  19011. },
  19012. back: {
  19013. height: math.unit(6 + 8 / 12, "feet"),
  19014. weight: math.unit(220, "lb"),
  19015. name: "Back",
  19016. image: {
  19017. source: "./media/characters/caylex/back.svg",
  19018. extra: 821 / 772,
  19019. bottom: 0.022
  19020. }
  19021. },
  19022. hand: {
  19023. height: math.unit(1.25, "feet"),
  19024. name: "Hand",
  19025. image: {
  19026. source: "./media/characters/caylex/hand.svg"
  19027. }
  19028. },
  19029. foot: {
  19030. height: math.unit(1.6, "feet"),
  19031. name: "Foot",
  19032. image: {
  19033. source: "./media/characters/caylex/foot.svg"
  19034. }
  19035. },
  19036. armored: {
  19037. height: math.unit(6 + 8 / 12, "feet"),
  19038. weight: math.unit(250, "lb"),
  19039. name: "Armored",
  19040. image: {
  19041. source: "./media/characters/caylex/armored.svg",
  19042. extra: 1420 / 1310,
  19043. bottom: 0.045
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(6 + 8 / 12, "feet"),
  19051. default: true
  19052. },
  19053. {
  19054. name: "Normal+",
  19055. height: math.unit(12, "feet")
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(7 + 6 / 12, "feet"),
  19064. weight: math.unit(288, "lb"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/alana/front.svg",
  19068. extra: 679 / 653,
  19069. bottom: 22.5 / 701
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(7 + 6 / 12, "feet")
  19077. },
  19078. {
  19079. name: "Large",
  19080. height: math.unit(50, "feet")
  19081. },
  19082. {
  19083. name: "Macro",
  19084. height: math.unit(100, "feet"),
  19085. default: true
  19086. },
  19087. {
  19088. name: "Macro+",
  19089. height: math.unit(200, "feet")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(6 + 1 / 12, "feet"),
  19098. weight: math.unit(210, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/hasani/front.svg",
  19102. extra: 244 / 232,
  19103. bottom: 0.01
  19104. }
  19105. },
  19106. back: {
  19107. height: math.unit(6 + 1 / 12, "feet"),
  19108. weight: math.unit(210, "lb"),
  19109. name: "Back",
  19110. image: {
  19111. source: "./media/characters/hasani/back.svg",
  19112. extra: 244 / 232,
  19113. bottom: 0.01
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(6 + 1 / 12, "feet")
  19121. },
  19122. {
  19123. name: "Macro",
  19124. height: math.unit(175, "feet"),
  19125. default: true
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19131. {
  19132. front: {
  19133. height: math.unit(1.82, "meters"),
  19134. weight: math.unit(140, "lb"),
  19135. name: "Front",
  19136. image: {
  19137. source: "./media/characters/nita/front.svg",
  19138. extra: 2473 / 2363,
  19139. bottom: 0.01
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(1.82, "m")
  19147. },
  19148. {
  19149. name: "Macro",
  19150. height: math.unit(300, "m")
  19151. },
  19152. {
  19153. name: "Mistake Canon",
  19154. height: math.unit(0.5, "miles"),
  19155. default: true
  19156. },
  19157. {
  19158. name: "Big Mistake",
  19159. height: math.unit(13, "miles")
  19160. },
  19161. {
  19162. name: "Playing God",
  19163. height: math.unit(2450, "miles")
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(4, "feet"),
  19172. weight: math.unit(120, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/shiriko/front.svg",
  19176. extra: 970/934,
  19177. bottom: 5/975
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(4, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(6, "feet"),
  19194. name: "front",
  19195. image: {
  19196. source: "./media/characters/deja/front.svg",
  19197. extra: 926 / 840,
  19198. bottom: 0.07
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Planck Length",
  19205. height: math.unit(1.6e-35, "meters")
  19206. },
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(30.48, "meters"),
  19210. default: true
  19211. },
  19212. {
  19213. name: "Universal",
  19214. height: math.unit(8.8e26, "meters")
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19220. {
  19221. side: {
  19222. height: math.unit(8, "feet"),
  19223. weight: math.unit(6300, "lb"),
  19224. name: "Side",
  19225. image: {
  19226. source: "./media/characters/anima/side.svg",
  19227. bottom: 0.035
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(8, "feet"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(8, "feet"),
  19244. weight: math.unit(350, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/bianca/front.svg",
  19248. extra: 234 / 225,
  19249. bottom: 0.03
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(8, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(11 + 5/12, "feet"),
  19266. weight: math.unit(1200, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/adinia/front.svg",
  19270. extra: 1767/1641,
  19271. bottom: 44/1811
  19272. },
  19273. extraAttributes: {
  19274. "energyIntake": {
  19275. name: "Energy Intake",
  19276. power: 3,
  19277. type: "energy",
  19278. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19279. },
  19280. }
  19281. },
  19282. back: {
  19283. height: math.unit(11 + 5/12, "feet"),
  19284. weight: math.unit(1200, "lb"),
  19285. name: "Back",
  19286. image: {
  19287. source: "./media/characters/adinia/back.svg",
  19288. extra: 1834/1684,
  19289. bottom: 14/1848
  19290. },
  19291. extraAttributes: {
  19292. "energyIntake": {
  19293. name: "Energy Intake",
  19294. power: 3,
  19295. type: "energy",
  19296. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19297. },
  19298. }
  19299. },
  19300. maw: {
  19301. height: math.unit(3.79, "feet"),
  19302. name: "Maw",
  19303. image: {
  19304. source: "./media/characters/adinia/maw.svg"
  19305. }
  19306. },
  19307. rump: {
  19308. height: math.unit(4.6, "feet"),
  19309. name: "Rump",
  19310. image: {
  19311. source: "./media/characters/adinia/rump.svg"
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(11 + 5 / 12, "feet"),
  19319. default: true
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(3, "meters"),
  19328. weight: math.unit(200, "kg"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/lykasa/front.svg",
  19332. extra: 1076 / 976,
  19333. bottom: 0.06
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(3, "meters")
  19341. },
  19342. {
  19343. name: "Kaiju",
  19344. height: math.unit(120, "meters"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Mega Kaiju",
  19349. height: math.unit(240, "km")
  19350. },
  19351. {
  19352. name: "Giga Kaiju",
  19353. height: math.unit(400, "megameters")
  19354. },
  19355. {
  19356. name: "Tera Kaiju",
  19357. height: math.unit(800, "gigameters")
  19358. },
  19359. {
  19360. name: "Kaiju Dragon Goddess",
  19361. height: math.unit(26, "zettaparsecs")
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19367. {
  19368. side: {
  19369. height: math.unit(283 / 124 * 6, "feet"),
  19370. weight: math.unit(35000, "lb"),
  19371. name: "Side",
  19372. image: {
  19373. source: "./media/characters/malfaren/side.svg",
  19374. extra: 1310/529,
  19375. bottom: 24/1334
  19376. }
  19377. },
  19378. front: {
  19379. height: math.unit(22.36, "feet"),
  19380. weight: math.unit(35000, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/malfaren/front.svg",
  19384. extra: 1237/1115,
  19385. bottom: 32/1269
  19386. }
  19387. },
  19388. maw: {
  19389. height: math.unit(6.9, "feet"),
  19390. name: "Maw",
  19391. image: {
  19392. source: "./media/characters/malfaren/maw.svg"
  19393. }
  19394. },
  19395. dick: {
  19396. height: math.unit(6.19, "feet"),
  19397. name: "Dick",
  19398. image: {
  19399. source: "./media/characters/malfaren/dick.svg"
  19400. }
  19401. },
  19402. eye: {
  19403. height: math.unit(0.69, "feet"),
  19404. name: "Eye",
  19405. image: {
  19406. source: "./media/characters/malfaren/eye.svg"
  19407. }
  19408. },
  19409. },
  19410. [
  19411. {
  19412. name: "Big",
  19413. height: math.unit(283 / 162 * 6, "feet"),
  19414. },
  19415. {
  19416. name: "Bigger",
  19417. height: math.unit(283 / 124 * 6, "feet")
  19418. },
  19419. {
  19420. name: "Massive",
  19421. height: math.unit(283 / 92 * 6, "feet"),
  19422. default: true
  19423. },
  19424. {
  19425. name: "👀💦",
  19426. height: math.unit(283 / 73 * 6, "feet"),
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19432. {
  19433. front: {
  19434. height: math.unit(1.7, "m"),
  19435. weight: math.unit(70, "kg"),
  19436. name: "Front",
  19437. image: {
  19438. source: "./media/characters/kernel/front.svg",
  19439. extra: 222 / 210,
  19440. bottom: 0.007
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Nano",
  19447. height: math.unit(17, "micrometers")
  19448. },
  19449. {
  19450. name: "Micro",
  19451. height: math.unit(1.7, "mm")
  19452. },
  19453. {
  19454. name: "Small",
  19455. height: math.unit(1.7, "cm")
  19456. },
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(1.7, "m"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(1.75, "meters"),
  19469. weight: math.unit(65, "kg"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/jayne-folest/front.svg",
  19473. extra: 2115 / 2007,
  19474. bottom: 0.02
  19475. }
  19476. },
  19477. back: {
  19478. height: math.unit(1.75, "meters"),
  19479. weight: math.unit(65, "kg"),
  19480. name: "Back",
  19481. image: {
  19482. source: "./media/characters/jayne-folest/back.svg",
  19483. extra: 2115 / 2007,
  19484. bottom: 0.005
  19485. }
  19486. },
  19487. frontClothed: {
  19488. height: math.unit(1.75, "meters"),
  19489. weight: math.unit(65, "kg"),
  19490. name: "Front (Clothed)",
  19491. image: {
  19492. source: "./media/characters/jayne-folest/front-clothed.svg",
  19493. extra: 2115 / 2007,
  19494. bottom: 0.035
  19495. }
  19496. },
  19497. hand: {
  19498. height: math.unit(1 / 1.260, "feet"),
  19499. name: "Hand",
  19500. image: {
  19501. source: "./media/characters/jayne-folest/hand.svg"
  19502. }
  19503. },
  19504. foot: {
  19505. height: math.unit(1 / 0.918, "feet"),
  19506. name: "Foot",
  19507. image: {
  19508. source: "./media/characters/jayne-folest/foot.svg"
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Micro",
  19515. height: math.unit(4, "cm")
  19516. },
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(1.75, "meters")
  19520. },
  19521. {
  19522. name: "Macro",
  19523. height: math.unit(47.5, "meters"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(180, "cm"),
  19533. weight: math.unit(70, "kg"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/algier/front.svg",
  19537. extra: 596 / 572,
  19538. bottom: 0.04
  19539. }
  19540. },
  19541. back: {
  19542. height: math.unit(180, "cm"),
  19543. weight: math.unit(70, "kg"),
  19544. name: "Back",
  19545. image: {
  19546. source: "./media/characters/algier/back.svg",
  19547. extra: 596 / 572,
  19548. bottom: 0.025
  19549. }
  19550. },
  19551. frontdressed: {
  19552. height: math.unit(180, "cm"),
  19553. weight: math.unit(150, "kg"),
  19554. name: "Front-dressed",
  19555. image: {
  19556. source: "./media/characters/algier/front-dressed.svg",
  19557. extra: 596 / 572,
  19558. bottom: 0.038
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Micro",
  19565. height: math.unit(5, "cm")
  19566. },
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(180, "cm"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Macro",
  19574. height: math.unit(64, "m")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19580. {
  19581. upright: {
  19582. height: math.unit(7, "feet"),
  19583. weight: math.unit(300, "lb"),
  19584. name: "Upright",
  19585. image: {
  19586. source: "./media/characters/pretzel/upright.svg",
  19587. extra: 534 / 522,
  19588. bottom: 0.065
  19589. }
  19590. },
  19591. sprawling: {
  19592. height: math.unit(3.75, "feet"),
  19593. weight: math.unit(300, "lb"),
  19594. name: "Sprawling",
  19595. image: {
  19596. source: "./media/characters/pretzel/sprawling.svg",
  19597. extra: 314 / 281,
  19598. bottom: 0.1
  19599. }
  19600. },
  19601. tongue: {
  19602. height: math.unit(2, "feet"),
  19603. name: "Tongue",
  19604. image: {
  19605. source: "./media/characters/pretzel/tongue.svg"
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(7, "feet"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Oversized",
  19617. height: math.unit(15, "feet")
  19618. },
  19619. {
  19620. name: "Huge",
  19621. height: math.unit(30, "feet")
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(250, "feet")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19631. {
  19632. sideFront: {
  19633. height: math.unit(5 + 2 / 12, "feet"),
  19634. weight: math.unit(120, "lb"),
  19635. name: "Front Side",
  19636. image: {
  19637. source: "./media/characters/roxi/side-front.svg",
  19638. extra: 2924 / 2717,
  19639. bottom: 0.08
  19640. }
  19641. },
  19642. sideBack: {
  19643. height: math.unit(5 + 2 / 12, "feet"),
  19644. weight: math.unit(120, "lb"),
  19645. name: "Back Side",
  19646. image: {
  19647. source: "./media/characters/roxi/side-back.svg",
  19648. extra: 2904 / 2693,
  19649. bottom: 0.06
  19650. }
  19651. },
  19652. front: {
  19653. height: math.unit(5 + 2 / 12, "feet"),
  19654. weight: math.unit(120, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/roxi/front.svg",
  19658. extra: 2028 / 1907,
  19659. bottom: 0.01
  19660. }
  19661. },
  19662. frontAlt: {
  19663. height: math.unit(5 + 2 / 12, "feet"),
  19664. weight: math.unit(120, "lb"),
  19665. name: "Front (Alt)",
  19666. image: {
  19667. source: "./media/characters/roxi/front-alt.svg",
  19668. extra: 1828 / 1798,
  19669. bottom: 0.01
  19670. }
  19671. },
  19672. sitting: {
  19673. height: math.unit(2.8, "feet"),
  19674. weight: math.unit(120, "lb"),
  19675. name: "Sitting",
  19676. image: {
  19677. source: "./media/characters/roxi/sitting.svg",
  19678. extra: 2660 / 2462,
  19679. bottom: 0.1
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(5 + 2 / 12, "feet"),
  19687. default: true
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19693. {
  19694. side: {
  19695. height: math.unit(55, "feet"),
  19696. weight: math.unit(153, "tons"),
  19697. name: "Side",
  19698. image: {
  19699. source: "./media/characters/shadow/side.svg",
  19700. extra: 701 / 628,
  19701. bottom: 0.02
  19702. }
  19703. },
  19704. flying: {
  19705. height: math.unit(145, "feet"),
  19706. weight: math.unit(153, "tons"),
  19707. name: "Flying",
  19708. image: {
  19709. source: "./media/characters/shadow/flying.svg"
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(55, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(6, "feet"),
  19726. weight: math.unit(200, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/marcie/front.svg",
  19730. extra: 960 / 876,
  19731. bottom: 58 / 1017.87
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Macro",
  19738. height: math.unit(1, "mile"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(7, "feet"),
  19748. weight: math.unit(200, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/kachina/front.svg",
  19752. extra: 1290.68 / 1119,
  19753. bottom: 36.5 / 1327.18
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(7, "feet"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19767. {
  19768. looking: {
  19769. height: math.unit(2, "meters"),
  19770. weight: math.unit(300, "kg"),
  19771. name: "Looking",
  19772. image: {
  19773. source: "./media/characters/kash/looking.svg",
  19774. extra: 474 / 344,
  19775. bottom: 0.03
  19776. }
  19777. },
  19778. side: {
  19779. height: math.unit(2, "meters"),
  19780. weight: math.unit(300, "kg"),
  19781. name: "Side",
  19782. image: {
  19783. source: "./media/characters/kash/side.svg",
  19784. extra: 302 / 251,
  19785. bottom: 0.03
  19786. }
  19787. },
  19788. front: {
  19789. height: math.unit(2, "meters"),
  19790. weight: math.unit(300, "kg"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/kash/front.svg",
  19794. extra: 495 / 360,
  19795. bottom: 0.015
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(2, "meters"),
  19803. default: true
  19804. },
  19805. {
  19806. name: "Big",
  19807. height: math.unit(3, "meters")
  19808. },
  19809. {
  19810. name: "Large",
  19811. height: math.unit(5, "meters")
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19817. {
  19818. feeding: {
  19819. height: math.unit(6.7, "feet"),
  19820. weight: math.unit(350, "lb"),
  19821. name: "Feeding",
  19822. image: {
  19823. source: "./media/characters/lalim/feeding.svg",
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(6.7, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(9.5, "feet"),
  19840. weight: math.unit(600, "lb"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/de'vout/front.svg",
  19844. extra: 1443 / 1328,
  19845. bottom: 0.025
  19846. }
  19847. },
  19848. back: {
  19849. height: math.unit(9.5, "feet"),
  19850. weight: math.unit(600, "lb"),
  19851. name: "Back",
  19852. image: {
  19853. source: "./media/characters/de'vout/back.svg",
  19854. extra: 1443 / 1328
  19855. }
  19856. },
  19857. frontDressed: {
  19858. height: math.unit(9.5, "feet"),
  19859. weight: math.unit(600, "lb"),
  19860. name: "Front (Dressed",
  19861. image: {
  19862. source: "./media/characters/de'vout/front-dressed.svg",
  19863. extra: 1443 / 1328,
  19864. bottom: 0.025
  19865. }
  19866. },
  19867. backDressed: {
  19868. height: math.unit(9.5, "feet"),
  19869. weight: math.unit(600, "lb"),
  19870. name: "Back (Dressed",
  19871. image: {
  19872. source: "./media/characters/de'vout/back-dressed.svg",
  19873. extra: 1443 / 1328
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(9.5, "feet"),
  19881. default: true
  19882. },
  19883. ]
  19884. ))
  19885. characterMakers.push(() => makeCharacter(
  19886. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19887. {
  19888. front: {
  19889. height: math.unit(8, "feet"),
  19890. weight: math.unit(225, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/talana/front.svg",
  19894. extra: 1410 / 1300,
  19895. bottom: 0.015
  19896. }
  19897. },
  19898. frontDressed: {
  19899. height: math.unit(8, "feet"),
  19900. weight: math.unit(225, "lb"),
  19901. name: "Front (Dressed",
  19902. image: {
  19903. source: "./media/characters/talana/front-dressed.svg",
  19904. extra: 1410 / 1300,
  19905. bottom: 0.015
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(8, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19919. {
  19920. side: {
  19921. height: math.unit(7.2, "feet"),
  19922. weight: math.unit(150, "lb"),
  19923. name: "Side",
  19924. image: {
  19925. source: "./media/characters/xeauvok/side.svg",
  19926. extra: 1975 / 1523,
  19927. bottom: 0.07
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(7.2, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19941. {
  19942. side: {
  19943. height: math.unit(4, "meters"),
  19944. weight: math.unit(2200, "kg"),
  19945. name: "Side",
  19946. image: {
  19947. source: "./media/characters/zara/side.svg",
  19948. extra: 765/744,
  19949. bottom: 156/921
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(4, "meters"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19963. {
  19964. side: {
  19965. height: math.unit(6, "feet"),
  19966. weight: math.unit(150, "lb"),
  19967. name: "Side",
  19968. image: {
  19969. source: "./media/characters/richard-dragon/side.svg",
  19970. extra: 845 / 340,
  19971. bottom: 0.017
  19972. }
  19973. },
  19974. maw: {
  19975. height: math.unit(2.97, "feet"),
  19976. name: "Maw",
  19977. image: {
  19978. source: "./media/characters/richard-dragon/maw.svg"
  19979. }
  19980. },
  19981. },
  19982. [
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19987. {
  19988. front: {
  19989. height: math.unit(4, "feet"),
  19990. weight: math.unit(100, "lb"),
  19991. name: "Front",
  19992. image: {
  19993. source: "./media/characters/richard-smeargle/front.svg",
  19994. extra: 2952 / 2820,
  19995. bottom: 0.028
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(4, "feet"),
  20003. default: true
  20004. },
  20005. {
  20006. name: "Dynamax",
  20007. height: math.unit(20, "meters")
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(6, "feet"),
  20016. weight: math.unit(110, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/klay/front.svg",
  20020. extra: 962 / 883,
  20021. bottom: 0.04
  20022. }
  20023. },
  20024. back: {
  20025. height: math.unit(6, "feet"),
  20026. weight: math.unit(110, "lb"),
  20027. name: "Back",
  20028. image: {
  20029. source: "./media/characters/klay/back.svg",
  20030. extra: 962 / 883
  20031. }
  20032. },
  20033. beans: {
  20034. height: math.unit(1.15, "feet"),
  20035. name: "Beans",
  20036. image: {
  20037. source: "./media/characters/klay/beans.svg"
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Micro",
  20044. height: math.unit(6, "inches")
  20045. },
  20046. {
  20047. name: "Mini",
  20048. height: math.unit(3, "feet")
  20049. },
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(6, "feet"),
  20053. default: true
  20054. },
  20055. {
  20056. name: "Big",
  20057. height: math.unit(25, "feet")
  20058. },
  20059. {
  20060. name: "Macro",
  20061. height: math.unit(100, "feet")
  20062. },
  20063. {
  20064. name: "Megamacro",
  20065. height: math.unit(400, "feet")
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20071. {
  20072. front: {
  20073. height: math.unit(6, "feet"),
  20074. weight: math.unit(160, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/marcus/front.svg",
  20078. extra: 734 / 676,
  20079. bottom: 0.03
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Little",
  20086. height: math.unit(6, "feet")
  20087. },
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(110, "feet"),
  20091. default: true
  20092. },
  20093. {
  20094. name: "Macro",
  20095. height: math.unit(250, "feet")
  20096. },
  20097. {
  20098. name: "Megamacro",
  20099. height: math.unit(1000, "feet")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(7, "feet"),
  20108. weight: math.unit(275, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/claude-delroute/front.svg",
  20112. extra: 902/827,
  20113. bottom: 26/928
  20114. }
  20115. },
  20116. side: {
  20117. height: math.unit(7, "feet"),
  20118. weight: math.unit(275, "lb"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/claude-delroute/side.svg",
  20122. extra: 908/853,
  20123. bottom: 16/924
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(7, "feet"),
  20128. weight: math.unit(275, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/claude-delroute/back.svg",
  20132. extra: 911/829,
  20133. bottom: 18/929
  20134. }
  20135. },
  20136. maw: {
  20137. height: math.unit(0.6407, "meters"),
  20138. name: "Maw",
  20139. image: {
  20140. source: "./media/characters/claude-delroute/maw.svg"
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(7, "feet"),
  20148. default: true
  20149. },
  20150. {
  20151. name: "Lorge",
  20152. height: math.unit(20, "feet")
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(8 + 4 / 12, "feet"),
  20161. weight: math.unit(600, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/dragonien/front.svg",
  20165. extra: 100 / 94,
  20166. bottom: 3.3 / 103.3445
  20167. }
  20168. },
  20169. back: {
  20170. height: math.unit(8 + 4 / 12, "feet"),
  20171. weight: math.unit(600, "lb"),
  20172. name: "Back",
  20173. image: {
  20174. source: "./media/characters/dragonien/back.svg",
  20175. extra: 776 / 746,
  20176. bottom: 6.4 / 782.0616
  20177. }
  20178. },
  20179. foot: {
  20180. height: math.unit(1.54, "feet"),
  20181. name: "Foot",
  20182. image: {
  20183. source: "./media/characters/dragonien/foot.svg",
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(8 + 4 / 12, "feet"),
  20191. default: true
  20192. },
  20193. {
  20194. name: "Macro",
  20195. height: math.unit(200, "feet")
  20196. },
  20197. {
  20198. name: "Megamacro",
  20199. height: math.unit(1, "mile")
  20200. },
  20201. {
  20202. name: "Gigamacro",
  20203. height: math.unit(1000, "miles")
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(5 + 2 / 12, "feet"),
  20212. weight: math.unit(110, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/desta/front.svg",
  20216. extra: 767 / 726,
  20217. bottom: 11.7 / 779
  20218. }
  20219. },
  20220. back: {
  20221. height: math.unit(5 + 2 / 12, "feet"),
  20222. weight: math.unit(110, "lb"),
  20223. name: "Back",
  20224. image: {
  20225. source: "./media/characters/desta/back.svg",
  20226. extra: 777 / 728,
  20227. bottom: 6 / 784
  20228. }
  20229. },
  20230. frontAlt: {
  20231. height: math.unit(5 + 2 / 12, "feet"),
  20232. weight: math.unit(110, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/desta/front-alt.svg",
  20236. extra: 1482 / 1417
  20237. }
  20238. },
  20239. side: {
  20240. height: math.unit(5 + 2 / 12, "feet"),
  20241. weight: math.unit(110, "lb"),
  20242. name: "Side",
  20243. image: {
  20244. source: "./media/characters/desta/side.svg",
  20245. extra: 2579 / 2491,
  20246. bottom: 0.053
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Micro",
  20253. height: math.unit(6, "inches")
  20254. },
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(5 + 2 / 12, "feet"),
  20258. default: true
  20259. },
  20260. {
  20261. name: "Macro",
  20262. height: math.unit(62, "feet")
  20263. },
  20264. {
  20265. name: "Megamacro",
  20266. height: math.unit(1800, "feet")
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(10, "feet"),
  20275. weight: math.unit(700, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/storm-alystar/front.svg",
  20279. extra: 2112 / 1898,
  20280. bottom: 0.034
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Micro",
  20287. height: math.unit(3.5, "inches")
  20288. },
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(10, "feet"),
  20292. default: true
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(400, "feet")
  20297. },
  20298. {
  20299. name: "Deific",
  20300. height: math.unit(60, "miles")
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20306. {
  20307. front: {
  20308. height: math.unit(2.35, "meters"),
  20309. weight: math.unit(119, "kg"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/ilia/front.svg",
  20313. extra: 1285 / 1255,
  20314. bottom: 0.06
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(2.35, "meters")
  20322. },
  20323. {
  20324. name: "Macro",
  20325. height: math.unit(140, "meters"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Megamacro",
  20330. height: math.unit(100, "miles")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(6 + 5 / 12, "feet"),
  20339. weight: math.unit(190, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/kingdead/front.svg",
  20343. extra: 1228 / 1177
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Micro",
  20350. height: math.unit(7, "inches")
  20351. },
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(6 + 5 / 12, "feet")
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(150, "feet"),
  20359. default: true
  20360. },
  20361. {
  20362. name: "Megamacro",
  20363. height: math.unit(200, "miles")
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(8, "feet"),
  20372. weight: math.unit(600, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/kyrehx/front.svg",
  20376. extra: 1195 / 1095,
  20377. bottom: 0.034
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Micro",
  20384. height: math.unit(2, "inches")
  20385. },
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(8, "feet"),
  20389. default: true
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(255, "feet")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20402. weight: math.unit(184, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/xang/front.svg",
  20406. extra: 845 / 755
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Macro",
  20418. height: math.unit(0.935 * 146, "feet")
  20419. },
  20420. {
  20421. name: "Megamacro",
  20422. height: math.unit(0.935 * 3, "miles")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20428. {
  20429. frontDressed: {
  20430. height: math.unit(5 + 7 / 12, "feet"),
  20431. weight: math.unit(140, "lb"),
  20432. name: "Front (Dressed)",
  20433. image: {
  20434. source: "./media/characters/doc-weardno/front-dressed.svg",
  20435. extra: 263 / 234
  20436. }
  20437. },
  20438. backDressed: {
  20439. height: math.unit(5 + 7 / 12, "feet"),
  20440. weight: math.unit(140, "lb"),
  20441. name: "Back (Dressed)",
  20442. image: {
  20443. source: "./media/characters/doc-weardno/back-dressed.svg",
  20444. extra: 266 / 238
  20445. }
  20446. },
  20447. front: {
  20448. height: math.unit(5 + 7 / 12, "feet"),
  20449. weight: math.unit(140, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/doc-weardno/front.svg",
  20453. extra: 254 / 233
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Micro",
  20460. height: math.unit(3, "inches")
  20461. },
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(5 + 7 / 12, "feet"),
  20465. default: true
  20466. },
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(25, "feet")
  20470. },
  20471. {
  20472. name: "Megamacro",
  20473. height: math.unit(2, "miles")
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(6 + 2 / 12, "feet"),
  20482. weight: math.unit(153, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/seth-whilst/front.svg",
  20486. bottom: 0.07
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Micro",
  20493. height: math.unit(5, "inches")
  20494. },
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(6 + 2 / 12, "feet"),
  20498. default: true
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(3, "inches"),
  20507. weight: math.unit(8, "grams"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/pocket-jabari/front.svg",
  20511. extra: 1024 / 974,
  20512. bottom: 0.039
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Minimicro",
  20519. height: math.unit(8, "mm")
  20520. },
  20521. {
  20522. name: "Micro",
  20523. height: math.unit(3, "inches"),
  20524. default: true
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(3, "feet")
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20534. {
  20535. frontDressed: {
  20536. height: math.unit(15, "feet"),
  20537. weight: math.unit(3280, "lb"),
  20538. name: "Front (Dressed)",
  20539. image: {
  20540. source: "./media/characters/sapphy/front-dressed.svg",
  20541. extra: 1951/1654,
  20542. bottom: 194/2145
  20543. },
  20544. form: "anthro",
  20545. default: true
  20546. },
  20547. backDressed: {
  20548. height: math.unit(15, "feet"),
  20549. weight: math.unit(3280, "lb"),
  20550. name: "Back (Dressed)",
  20551. image: {
  20552. source: "./media/characters/sapphy/back-dressed.svg",
  20553. extra: 2058/1918,
  20554. bottom: 125/2183
  20555. },
  20556. form: "anthro"
  20557. },
  20558. frontNude: {
  20559. height: math.unit(15, "feet"),
  20560. weight: math.unit(3280, "lb"),
  20561. name: "Front (Nude)",
  20562. image: {
  20563. source: "./media/characters/sapphy/front-nude.svg",
  20564. extra: 1951/1654,
  20565. bottom: 194/2145
  20566. },
  20567. form: "anthro"
  20568. },
  20569. backNude: {
  20570. height: math.unit(15, "feet"),
  20571. weight: math.unit(3280, "lb"),
  20572. name: "Back (Nude)",
  20573. image: {
  20574. source: "./media/characters/sapphy/back-nude.svg",
  20575. extra: 2058/1918,
  20576. bottom: 125/2183
  20577. },
  20578. form: "anthro"
  20579. },
  20580. full: {
  20581. height: math.unit(15, "feet"),
  20582. weight: math.unit(3280, "lb"),
  20583. name: "Full",
  20584. image: {
  20585. source: "./media/characters/sapphy/full.svg",
  20586. extra: 1396/1317,
  20587. bottom: 44/1440
  20588. },
  20589. form: "anthro"
  20590. },
  20591. dick: {
  20592. height: math.unit(3.8, "feet"),
  20593. name: "Dick",
  20594. image: {
  20595. source: "./media/characters/sapphy/dick.svg"
  20596. },
  20597. form: "anthro"
  20598. },
  20599. feral: {
  20600. height: math.unit(35, "feet"),
  20601. weight: math.unit(160, "tons"),
  20602. name: "Feral",
  20603. image: {
  20604. source: "./media/characters/sapphy/feral.svg",
  20605. extra: 1050/573,
  20606. bottom: 60/1110
  20607. },
  20608. form: "feral",
  20609. default: true
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(15, "feet"),
  20616. form: "anthro"
  20617. },
  20618. {
  20619. name: "Casual Macro",
  20620. height: math.unit(120, "feet"),
  20621. form: "anthro"
  20622. },
  20623. {
  20624. name: "Macro",
  20625. height: math.unit(2150, "feet"),
  20626. default: true,
  20627. form: "anthro"
  20628. },
  20629. {
  20630. name: "Megamacro",
  20631. height: math.unit(8, "miles"),
  20632. form: "anthro"
  20633. },
  20634. {
  20635. name: "Galaxy Mom",
  20636. height: math.unit(6, "megalightyears"),
  20637. form: "anthro"
  20638. },
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(35, "feet"),
  20642. form: "feral",
  20643. default: true
  20644. },
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(300, "feet"),
  20648. form: "feral"
  20649. },
  20650. {
  20651. name: "Galaxy Mom",
  20652. height: math.unit(10, "megalightyears"),
  20653. form: "feral"
  20654. },
  20655. ],
  20656. {
  20657. "anthro": {
  20658. name: "Anthro",
  20659. default: true
  20660. },
  20661. "feral": {
  20662. name: "Feral"
  20663. }
  20664. }
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20668. {
  20669. hyenaFront: {
  20670. height: math.unit(6, "feet"),
  20671. weight: math.unit(190, "lb"),
  20672. name: "Front",
  20673. image: {
  20674. source: "./media/characters/kiro/hyena-front.svg",
  20675. extra: 927/839,
  20676. bottom: 91/1018
  20677. },
  20678. form: "hyena",
  20679. default: true
  20680. },
  20681. front: {
  20682. height: math.unit(6, "feet"),
  20683. weight: math.unit(170, "lb"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/kiro/front.svg",
  20687. extra: 1064 / 1012,
  20688. bottom: 0.052
  20689. },
  20690. form: "folf",
  20691. default: true
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Micro",
  20697. height: math.unit(6, "inches"),
  20698. form: "folf"
  20699. },
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(6, "feet"),
  20703. form: "folf",
  20704. default: true
  20705. },
  20706. {
  20707. name: "Macro",
  20708. height: math.unit(72, "feet"),
  20709. form: "folf"
  20710. },
  20711. {
  20712. name: "Micro",
  20713. height: math.unit(6, "inches"),
  20714. form: "hyena"
  20715. },
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(6, "feet"),
  20719. form: "hyena",
  20720. default: true
  20721. },
  20722. {
  20723. name: "Macro",
  20724. height: math.unit(72, "feet"),
  20725. form: "hyena"
  20726. },
  20727. ],
  20728. {
  20729. "hyena": {
  20730. name: "Hyena",
  20731. default: true
  20732. },
  20733. "folf": {
  20734. name: "Folf",
  20735. },
  20736. }
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(5 + 9 / 12, "feet"),
  20743. weight: math.unit(175, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/irishfox/front.svg",
  20747. extra: 1912 / 1680,
  20748. bottom: 0.02
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Nano",
  20755. height: math.unit(1, "mm")
  20756. },
  20757. {
  20758. name: "Micro",
  20759. height: math.unit(2, "inches")
  20760. },
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(5 + 9 / 12, "feet"),
  20764. default: true
  20765. },
  20766. {
  20767. name: "Macro",
  20768. height: math.unit(45, "feet")
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20774. {
  20775. front: {
  20776. height: math.unit(6 + 1 / 12, "feet"),
  20777. weight: math.unit(75, "lb"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/aronai-sieyes/front.svg",
  20781. extra: 1532/1450,
  20782. bottom: 42/1574
  20783. }
  20784. },
  20785. side: {
  20786. height: math.unit(6 + 1 / 12, "feet"),
  20787. weight: math.unit(75, "lb"),
  20788. name: "Side",
  20789. image: {
  20790. source: "./media/characters/aronai-sieyes/side.svg",
  20791. extra: 1422/1365,
  20792. bottom: 148/1570
  20793. }
  20794. },
  20795. back: {
  20796. height: math.unit(6 + 1 / 12, "feet"),
  20797. weight: math.unit(75, "lb"),
  20798. name: "Back",
  20799. image: {
  20800. source: "./media/characters/aronai-sieyes/back.svg",
  20801. extra: 1526/1464,
  20802. bottom: 51/1577
  20803. }
  20804. },
  20805. dressed: {
  20806. height: math.unit(6 + 1 / 12, "feet"),
  20807. weight: math.unit(75, "lb"),
  20808. name: "Dressed",
  20809. image: {
  20810. source: "./media/characters/aronai-sieyes/dressed.svg",
  20811. extra: 1559/1483,
  20812. bottom: 39/1598
  20813. }
  20814. },
  20815. slit: {
  20816. height: math.unit(1.3, "feet"),
  20817. name: "Slit",
  20818. image: {
  20819. source: "./media/characters/aronai-sieyes/slit.svg"
  20820. }
  20821. },
  20822. slitSpread: {
  20823. height: math.unit(0.9, "feet"),
  20824. name: "Slit (Spread)",
  20825. image: {
  20826. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20827. }
  20828. },
  20829. rump: {
  20830. height: math.unit(1.3, "feet"),
  20831. name: "Rump",
  20832. image: {
  20833. source: "./media/characters/aronai-sieyes/rump.svg"
  20834. }
  20835. },
  20836. maw: {
  20837. height: math.unit(1.25, "feet"),
  20838. name: "Maw",
  20839. image: {
  20840. source: "./media/characters/aronai-sieyes/maw.svg"
  20841. }
  20842. },
  20843. feral: {
  20844. height: math.unit(18, "feet"),
  20845. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20846. name: "Feral",
  20847. image: {
  20848. source: "./media/characters/aronai-sieyes/feral.svg",
  20849. extra: 1530 / 1240,
  20850. bottom: 0.035
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Micro",
  20857. height: math.unit(2, "inches")
  20858. },
  20859. {
  20860. name: "Normal",
  20861. height: math.unit(6 + 1 / 12, "feet"),
  20862. default: true
  20863. }
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(12, "feet"),
  20871. weight: math.unit(410, "kg"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/xuna/front.svg",
  20875. extra: 2184 / 1980
  20876. }
  20877. },
  20878. side: {
  20879. height: math.unit(12, "feet"),
  20880. weight: math.unit(410, "kg"),
  20881. name: "Side",
  20882. image: {
  20883. source: "./media/characters/xuna/side.svg",
  20884. extra: 2184 / 1980
  20885. }
  20886. },
  20887. back: {
  20888. height: math.unit(12, "feet"),
  20889. weight: math.unit(410, "kg"),
  20890. name: "Back",
  20891. image: {
  20892. source: "./media/characters/xuna/back.svg",
  20893. extra: 2184 / 1980
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Nano glow",
  20900. height: math.unit(10, "nm")
  20901. },
  20902. {
  20903. name: "Micro floof",
  20904. height: math.unit(0.3, "m")
  20905. },
  20906. {
  20907. name: "Huggable softy boi",
  20908. height: math.unit(3.6576, "m"),
  20909. default: true
  20910. },
  20911. {
  20912. name: "Admirable floof",
  20913. height: math.unit(80, "meters")
  20914. },
  20915. {
  20916. name: "Gentle macro",
  20917. height: math.unit(300, "meters")
  20918. },
  20919. {
  20920. name: "Very careful floof",
  20921. height: math.unit(3200, "meters")
  20922. },
  20923. {
  20924. name: "The mega floof",
  20925. height: math.unit(36000, "meters")
  20926. },
  20927. {
  20928. name: "Giga-fur-Wicker",
  20929. height: math.unit(4800000, "meters")
  20930. },
  20931. {
  20932. name: "Licky world",
  20933. height: math.unit(20000000, "meters")
  20934. },
  20935. {
  20936. name: "Floofy cyan sun",
  20937. height: math.unit(1500000000, "meters")
  20938. },
  20939. {
  20940. name: "Milky Wicker",
  20941. height: math.unit(1000000000000000000000, "meters")
  20942. },
  20943. {
  20944. name: "The observing Wicker",
  20945. height: math.unit(999999999999999999999999999, "meters")
  20946. },
  20947. ]
  20948. ))
  20949. characterMakers.push(() => makeCharacter(
  20950. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20951. {
  20952. front: {
  20953. height: math.unit(5 + 9 / 12, "feet"),
  20954. weight: math.unit(150, "lb"),
  20955. name: "Front",
  20956. image: {
  20957. source: "./media/characters/arokha-sieyes/front.svg",
  20958. extra: 1425 / 1284,
  20959. bottom: 0.05
  20960. }
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Normal",
  20966. height: math.unit(5 + 9 / 12, "feet")
  20967. },
  20968. {
  20969. name: "Macro",
  20970. height: math.unit(30, "meters"),
  20971. default: true
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(6, "feet"),
  20980. weight: math.unit(180, "lb"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/arokh-sieyes/front.svg",
  20984. extra: 1830 / 1769,
  20985. bottom: 0.01
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(6, "feet")
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(30, "meters"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21003. {
  21004. side: {
  21005. height: math.unit(13 + 1 / 12, "feet"),
  21006. weight: math.unit(8.5, "tonnes"),
  21007. preyCapacity: math.unit(36, "people"),
  21008. name: "Side",
  21009. image: {
  21010. source: "./media/characters/goldeneye/side.svg",
  21011. extra: 1139/741,
  21012. bottom: 98/1237
  21013. }
  21014. },
  21015. front: {
  21016. height: math.unit(5.1, "feet"),
  21017. weight: math.unit(8.5, "tonnes"),
  21018. preyCapacity: math.unit(36, "people"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/goldeneye/front.svg",
  21022. extra: 635/365,
  21023. bottom: 598/1233
  21024. }
  21025. },
  21026. maw: {
  21027. height: math.unit(6.6, "feet"),
  21028. name: "Maw",
  21029. image: {
  21030. source: "./media/characters/goldeneye/maw.svg"
  21031. }
  21032. },
  21033. headFront: {
  21034. height: math.unit(8, "feet"),
  21035. name: "Head (Front)",
  21036. image: {
  21037. source: "./media/characters/goldeneye/head-front.svg"
  21038. }
  21039. },
  21040. headSide: {
  21041. height: math.unit(6, "feet"),
  21042. name: "Head (Side)",
  21043. image: {
  21044. source: "./media/characters/goldeneye/head-side.svg"
  21045. }
  21046. },
  21047. headBack: {
  21048. height: math.unit(8, "feet"),
  21049. name: "Head (Back)",
  21050. image: {
  21051. source: "./media/characters/goldeneye/head-back.svg"
  21052. }
  21053. },
  21054. paw: {
  21055. height: math.unit(3.4, "feet"),
  21056. name: "Paw",
  21057. image: {
  21058. source: "./media/characters/goldeneye/paw.svg"
  21059. }
  21060. },
  21061. toering: {
  21062. height: math.unit(0.45, "feet"),
  21063. name: "Toering",
  21064. image: {
  21065. source: "./media/characters/goldeneye/toering.svg"
  21066. }
  21067. },
  21068. eyes: {
  21069. height: math.unit(0.5, "feet"),
  21070. name: "Eyes",
  21071. image: {
  21072. source: "./media/characters/goldeneye/eyes.svg"
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(13 + 1 / 12, "feet"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21086. {
  21087. front: {
  21088. height: math.unit(6 + 1 / 12, "feet"),
  21089. weight: math.unit(210, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/leonardo-lycheborne/front.svg",
  21093. extra: 776/723,
  21094. bottom: 34/810
  21095. }
  21096. },
  21097. side: {
  21098. height: math.unit(6 + 1 / 12, "feet"),
  21099. weight: math.unit(210, "lb"),
  21100. name: "Side",
  21101. image: {
  21102. source: "./media/characters/leonardo-lycheborne/side.svg",
  21103. extra: 780/728,
  21104. bottom: 12/792
  21105. }
  21106. },
  21107. back: {
  21108. height: math.unit(6 + 1 / 12, "feet"),
  21109. weight: math.unit(210, "lb"),
  21110. name: "Back",
  21111. image: {
  21112. source: "./media/characters/leonardo-lycheborne/back.svg",
  21113. extra: 775/721,
  21114. bottom: 17/792
  21115. }
  21116. },
  21117. hand: {
  21118. height: math.unit(1.08, "feet"),
  21119. name: "Hand",
  21120. image: {
  21121. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21122. }
  21123. },
  21124. foot: {
  21125. height: math.unit(1.32, "feet"),
  21126. name: "Foot",
  21127. image: {
  21128. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21129. }
  21130. },
  21131. maw: {
  21132. height: math.unit(1, "feet"),
  21133. name: "Maw",
  21134. image: {
  21135. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21136. }
  21137. },
  21138. were: {
  21139. height: math.unit(20, "feet"),
  21140. weight: math.unit(7800, "lb"),
  21141. name: "Were",
  21142. image: {
  21143. source: "./media/characters/leonardo-lycheborne/were.svg",
  21144. extra: 1224/1165,
  21145. bottom: 72/1296
  21146. }
  21147. },
  21148. feral: {
  21149. height: math.unit(7.5, "feet"),
  21150. weight: math.unit(600, "lb"),
  21151. name: "Feral",
  21152. image: {
  21153. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21154. extra: 797/702,
  21155. bottom: 139/936
  21156. }
  21157. },
  21158. taur: {
  21159. height: math.unit(11, "feet"),
  21160. weight: math.unit(3300, "lb"),
  21161. name: "Taur",
  21162. image: {
  21163. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21164. extra: 1271/1197,
  21165. bottom: 47/1318
  21166. }
  21167. },
  21168. barghest: {
  21169. height: math.unit(11, "feet"),
  21170. weight: math.unit(1300, "lb"),
  21171. name: "Barghest",
  21172. image: {
  21173. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21174. extra: 1291/1204,
  21175. bottom: 37/1328
  21176. }
  21177. },
  21178. dick: {
  21179. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21180. name: "Dick",
  21181. image: {
  21182. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21183. }
  21184. },
  21185. dickWere: {
  21186. height: math.unit((20) / 3.8, "feet"),
  21187. name: "Dick (Were)",
  21188. image: {
  21189. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(6 + 1 / 12, "feet"),
  21197. default: true
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21203. {
  21204. front: {
  21205. height: math.unit(10, "feet"),
  21206. weight: math.unit(350, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/jet/front.svg",
  21210. extra: 2050 / 1980,
  21211. bottom: 0.013
  21212. }
  21213. },
  21214. back: {
  21215. height: math.unit(10, "feet"),
  21216. weight: math.unit(350, "lb"),
  21217. name: "Back",
  21218. image: {
  21219. source: "./media/characters/jet/back.svg",
  21220. extra: 2050 / 1980,
  21221. bottom: 0.013
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Micro",
  21228. height: math.unit(6, "inches")
  21229. },
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(10, "feet"),
  21233. default: true
  21234. },
  21235. {
  21236. name: "Macro",
  21237. height: math.unit(100, "feet")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(15, "feet"),
  21246. weight: math.unit(2800, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/tanarath/front.svg",
  21250. extra: 2392 / 2220,
  21251. bottom: 0.03
  21252. }
  21253. },
  21254. back: {
  21255. height: math.unit(15, "feet"),
  21256. weight: math.unit(2800, "lb"),
  21257. name: "Back",
  21258. image: {
  21259. source: "./media/characters/tanarath/back.svg",
  21260. extra: 2392 / 2220,
  21261. bottom: 0.03
  21262. }
  21263. },
  21264. },
  21265. [
  21266. {
  21267. name: "Normal",
  21268. height: math.unit(15, "feet"),
  21269. default: true
  21270. },
  21271. ]
  21272. ))
  21273. characterMakers.push(() => makeCharacter(
  21274. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21275. {
  21276. front: {
  21277. height: math.unit(7 + 1 / 12, "feet"),
  21278. weight: math.unit(175, "lb"),
  21279. name: "Front",
  21280. image: {
  21281. source: "./media/characters/patty-cattybatty/front.svg",
  21282. extra: 908 / 874,
  21283. bottom: 0.025
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Micro",
  21290. height: math.unit(1, "inch")
  21291. },
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(7 + 1 / 12, "feet")
  21295. },
  21296. {
  21297. name: "Mini Macro",
  21298. height: math.unit(155, "feet")
  21299. },
  21300. {
  21301. name: "Macro",
  21302. height: math.unit(1077, "feet")
  21303. },
  21304. {
  21305. name: "Mega Macro",
  21306. height: math.unit(47650, "feet"),
  21307. default: true
  21308. },
  21309. {
  21310. name: "Giga Macro",
  21311. height: math.unit(440, "miles")
  21312. },
  21313. {
  21314. name: "Tera Macro",
  21315. height: math.unit(8700, "miles")
  21316. },
  21317. {
  21318. name: "Planetary Macro",
  21319. height: math.unit(32700, "miles")
  21320. },
  21321. {
  21322. name: "Solar Macro",
  21323. height: math.unit(550000, "miles")
  21324. },
  21325. {
  21326. name: "Celestial Macro",
  21327. height: math.unit(2.5, "AU")
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(4 + 5 / 12, "feet"),
  21336. weight: math.unit(90, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/cappu/front.svg",
  21340. extra: 1247 / 1152,
  21341. bottom: 0.012
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(4 + 5 / 12, "feet"),
  21349. default: true
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21355. {
  21356. frontDressed: {
  21357. height: math.unit(70, "cm"),
  21358. weight: math.unit(6, "kg"),
  21359. name: "Front (Dressed)",
  21360. image: {
  21361. source: "./media/characters/sebi/front-dressed.svg",
  21362. extra: 713.5 / 686.5,
  21363. bottom: 0.003
  21364. }
  21365. },
  21366. front: {
  21367. height: math.unit(70, "cm"),
  21368. weight: math.unit(5, "kg"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/sebi/front.svg",
  21372. extra: 713.5 / 686.5,
  21373. bottom: 0.003
  21374. }
  21375. }
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(70, "cm"),
  21381. default: true
  21382. },
  21383. {
  21384. name: "Macro",
  21385. height: math.unit(8, "meters")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(6, "feet"),
  21394. weight: math.unit(150, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/typhek/front.svg",
  21398. extra: 1948 / 1929,
  21399. bottom: 0.025
  21400. }
  21401. },
  21402. side: {
  21403. height: math.unit(6, "feet"),
  21404. weight: math.unit(150, "lb"),
  21405. name: "Side",
  21406. image: {
  21407. source: "./media/characters/typhek/side.svg",
  21408. extra: 2034 / 2010,
  21409. bottom: 0.003
  21410. }
  21411. },
  21412. back: {
  21413. height: math.unit(6, "feet"),
  21414. weight: math.unit(150, "lb"),
  21415. name: "Back",
  21416. image: {
  21417. source: "./media/characters/typhek/back.svg",
  21418. extra: 2005 / 1978,
  21419. bottom: 0.004
  21420. }
  21421. },
  21422. palm: {
  21423. height: math.unit(1.2, "feet"),
  21424. name: "Palm",
  21425. image: {
  21426. source: "./media/characters/typhek/palm.svg"
  21427. }
  21428. },
  21429. fist: {
  21430. height: math.unit(1.1, "feet"),
  21431. name: "Fist",
  21432. image: {
  21433. source: "./media/characters/typhek/fist.svg"
  21434. }
  21435. },
  21436. foot: {
  21437. height: math.unit(1.57, "feet"),
  21438. name: "Foot",
  21439. image: {
  21440. source: "./media/characters/typhek/foot.svg"
  21441. }
  21442. },
  21443. sole: {
  21444. height: math.unit(2.05, "feet"),
  21445. name: "Sole",
  21446. image: {
  21447. source: "./media/characters/typhek/sole.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Macro",
  21454. height: math.unit(40, "stories"),
  21455. default: true
  21456. },
  21457. {
  21458. name: "Megamacro",
  21459. height: math.unit(1, "mile")
  21460. },
  21461. {
  21462. name: "Gigamacro",
  21463. height: math.unit(4000, "solarradii")
  21464. },
  21465. {
  21466. name: "Universal",
  21467. height: math.unit(1.1, "universes")
  21468. }
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21473. {
  21474. side: {
  21475. height: math.unit(5 + 7 / 12, "feet"),
  21476. weight: math.unit(150, "lb"),
  21477. name: "Side",
  21478. image: {
  21479. source: "./media/characters/kassy/side.svg",
  21480. extra: 1280 / 1225,
  21481. bottom: 0.002
  21482. }
  21483. },
  21484. front: {
  21485. height: math.unit(5 + 7 / 12, "feet"),
  21486. weight: math.unit(150, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/kassy/front.svg",
  21490. extra: 1280 / 1225,
  21491. bottom: 0.025
  21492. }
  21493. },
  21494. back: {
  21495. height: math.unit(5 + 7 / 12, "feet"),
  21496. weight: math.unit(150, "lb"),
  21497. name: "Back",
  21498. image: {
  21499. source: "./media/characters/kassy/back.svg",
  21500. extra: 1280 / 1225,
  21501. bottom: 0.002
  21502. }
  21503. },
  21504. foot: {
  21505. height: math.unit(1.266, "feet"),
  21506. name: "Foot",
  21507. image: {
  21508. source: "./media/characters/kassy/foot.svg"
  21509. }
  21510. },
  21511. },
  21512. [
  21513. {
  21514. name: "Normal",
  21515. height: math.unit(5 + 7 / 12, "feet")
  21516. },
  21517. {
  21518. name: "Macro",
  21519. height: math.unit(137, "feet"),
  21520. default: true
  21521. },
  21522. {
  21523. name: "Megamacro",
  21524. height: math.unit(1, "mile")
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21530. {
  21531. front: {
  21532. height: math.unit(6 + 1 / 12, "feet"),
  21533. weight: math.unit(200, "lb"),
  21534. name: "Front",
  21535. image: {
  21536. source: "./media/characters/neil/front.svg",
  21537. extra: 1326 / 1250,
  21538. bottom: 0.023
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(6 + 1 / 12, "feet"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Macro",
  21550. height: math.unit(200, "feet")
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21556. {
  21557. front: {
  21558. height: math.unit(5 + 9 / 12, "feet"),
  21559. weight: math.unit(190, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/atticus/front.svg",
  21563. extra: 2934 / 2785,
  21564. bottom: 0.025
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Normal",
  21571. height: math.unit(5 + 9 / 12, "feet"),
  21572. default: true
  21573. },
  21574. {
  21575. name: "Macro",
  21576. height: math.unit(180, "feet")
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21582. {
  21583. side: {
  21584. height: math.unit(9, "feet"),
  21585. weight: math.unit(650, "lb"),
  21586. name: "Side",
  21587. image: {
  21588. source: "./media/characters/milo/side.svg",
  21589. extra: 2644 / 2310,
  21590. bottom: 0.032
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(9, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(300, "feet")
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21608. {
  21609. side: {
  21610. height: math.unit(8, "meters"),
  21611. weight: math.unit(90000, "kg"),
  21612. name: "Side",
  21613. image: {
  21614. source: "./media/characters/ijzer/side.svg",
  21615. extra: 2756 / 1600,
  21616. bottom: 0.01
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Small",
  21623. height: math.unit(3, "meters")
  21624. },
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(8, "meters"),
  21628. default: true
  21629. },
  21630. {
  21631. name: "Normal+",
  21632. height: math.unit(10, "meters")
  21633. },
  21634. {
  21635. name: "Bigger",
  21636. height: math.unit(24, "meters")
  21637. },
  21638. {
  21639. name: "Huge",
  21640. height: math.unit(80, "meters")
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(6 + 2 / 12, "feet"),
  21649. weight: math.unit(153, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/luca-cervicum/front.svg",
  21653. extra: 370 / 327,
  21654. bottom: 0.015
  21655. }
  21656. },
  21657. back: {
  21658. height: math.unit(6 + 2 / 12, "feet"),
  21659. weight: math.unit(153, "lb"),
  21660. name: "Back",
  21661. image: {
  21662. source: "./media/characters/luca-cervicum/back.svg",
  21663. extra: 367 / 333,
  21664. bottom: 0.005
  21665. }
  21666. },
  21667. frontGear: {
  21668. height: math.unit(6 + 2 / 12, "feet"),
  21669. weight: math.unit(173, "lb"),
  21670. name: "Front (Gear)",
  21671. image: {
  21672. source: "./media/characters/luca-cervicum/front-gear.svg",
  21673. extra: 377 / 333,
  21674. bottom: 0.006
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(6 + 2 / 12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(6 + 1 / 12, "feet"),
  21691. weight: math.unit(304, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/oliver/front.svg",
  21695. extra: 157 / 143,
  21696. bottom: 0.08
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(6 + 1 / 12, "feet"),
  21704. default: true
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(5 + 7 / 12, "feet"),
  21713. weight: math.unit(140, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/shane/front.svg",
  21717. extra: 304 / 289,
  21718. bottom: 0.005
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(5 + 7 / 12, "feet"),
  21726. default: true
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21732. {
  21733. front: {
  21734. height: math.unit(5 + 9 / 12, "feet"),
  21735. weight: math.unit(178, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/shin/front.svg",
  21739. extra: 159 / 151,
  21740. bottom: 0.015
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(5 + 9 / 12, "feet"),
  21748. default: true
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21754. {
  21755. front: {
  21756. height: math.unit(5 + 10 / 12, "feet"),
  21757. weight: math.unit(168, "lb"),
  21758. name: "Front",
  21759. image: {
  21760. source: "./media/characters/xerxes/front.svg",
  21761. extra: 282 / 260,
  21762. bottom: 0.045
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(5 + 10 / 12, "feet"),
  21770. default: true
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(6 + 7 / 12, "feet"),
  21779. weight: math.unit(208, "lb"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/chaska/front.svg",
  21783. extra: 332 / 319,
  21784. bottom: 0.015
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(6 + 7 / 12, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(5 + 8 / 12, "feet"),
  21801. weight: math.unit(208, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/enuk/front.svg",
  21805. extra: 437 / 406,
  21806. bottom: 0.02
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(5 + 8 / 12, "feet"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(5 + 10 / 12, "feet"),
  21823. weight: math.unit(252, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/bruun/front.svg",
  21827. extra: 197 / 187,
  21828. bottom: 0.012
  21829. }
  21830. },
  21831. },
  21832. [
  21833. {
  21834. name: "Normal",
  21835. height: math.unit(5 + 10 / 12, "feet"),
  21836. default: true
  21837. },
  21838. ]
  21839. ))
  21840. characterMakers.push(() => makeCharacter(
  21841. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21842. {
  21843. front: {
  21844. height: math.unit(6 + 10 / 12, "feet"),
  21845. weight: math.unit(255, "lb"),
  21846. name: "Front",
  21847. image: {
  21848. source: "./media/characters/alexeev/front.svg",
  21849. extra: 213 / 200,
  21850. bottom: 0.05
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(6 + 10 / 12, "feet"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(2 + 8 / 12, "feet"),
  21867. weight: math.unit(22, "lb"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/evelyn/front.svg",
  21871. extra: 208 / 180
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(2 + 8 / 12, "feet"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(5 + 9 / 12, "feet"),
  21888. weight: math.unit(139, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/inca/front.svg",
  21892. extra: 294 / 291,
  21893. bottom: 0.03
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(5 + 9 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(6 + 3 / 12, "feet"),
  21910. weight: math.unit(185, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/mera/front.svg",
  21914. extra: 291 / 277,
  21915. bottom: 0.03
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(6 + 3 / 12, "feet"),
  21923. default: true
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(6 + 7 / 12, "feet"),
  21932. weight: math.unit(160, "lb"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/ceres/front.svg",
  21936. extra: 1023 / 950,
  21937. bottom: 0.027
  21938. }
  21939. },
  21940. back: {
  21941. height: math.unit(6 + 7 / 12, "feet"),
  21942. weight: math.unit(160, "lb"),
  21943. name: "Back",
  21944. image: {
  21945. source: "./media/characters/ceres/back.svg",
  21946. extra: 1023 / 950
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(6 + 7 / 12, "feet"),
  21954. default: true
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(5 + 10 / 12, "feet"),
  21963. weight: math.unit(150, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/kris/front.svg",
  21967. extra: 885 / 803,
  21968. bottom: 0.03
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Normal",
  21975. height: math.unit(5 + 10 / 12, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21982. {
  21983. dragon_front: {
  21984. height: math.unit(5, "feet"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/taluthus/dragon-front.svg",
  21988. extra: 1203/1098,
  21989. bottom: 46/1249
  21990. },
  21991. form: "dragon",
  21992. default: true
  21993. },
  21994. dragon_maw: {
  21995. height: math.unit(2.35, "feet"),
  21996. name: "Maw",
  21997. image: {
  21998. source: "./media/characters/taluthus/dragon-maw.svg"
  21999. },
  22000. form: "dragon",
  22001. },
  22002. kitsune_front: {
  22003. height: math.unit(7, "feet"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/taluthus/kitsune-front.svg",
  22007. extra: 900/841,
  22008. bottom: 65/965
  22009. },
  22010. form: "kitsune",
  22011. default: true
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(5, "feet"),
  22018. form: "dragon",
  22019. default: true,
  22020. },
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(7, "feet"),
  22024. form: "kitsune",
  22025. default: true
  22026. },
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(300, "feet"),
  22030. allForms: true
  22031. },
  22032. ],
  22033. {
  22034. "dragon": {
  22035. name: "Dragon",
  22036. default: true
  22037. },
  22038. "kitsune": {
  22039. name: "Kitsune",
  22040. },
  22041. }
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22045. {
  22046. front: {
  22047. height: math.unit(5 + 9 / 12, "feet"),
  22048. weight: math.unit(145, "lb"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/dawn/front.svg",
  22052. extra: 2094 / 2016,
  22053. bottom: 0.025
  22054. }
  22055. },
  22056. back: {
  22057. height: math.unit(5 + 9 / 12, "feet"),
  22058. weight: math.unit(160, "lb"),
  22059. name: "Back",
  22060. image: {
  22061. source: "./media/characters/dawn/back.svg",
  22062. extra: 2112 / 2080,
  22063. bottom: 0.005
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(6 + 7 / 12, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22077. {
  22078. anthro: {
  22079. height: math.unit(8 + 3 / 12, "feet"),
  22080. weight: math.unit(450, "lb"),
  22081. name: "Anthro",
  22082. image: {
  22083. source: "./media/characters/arador/anthro.svg",
  22084. extra: 1835 / 1718,
  22085. bottom: 0.025
  22086. }
  22087. },
  22088. feral: {
  22089. height: math.unit(4, "feet"),
  22090. weight: math.unit(200, "lb"),
  22091. name: "Feral",
  22092. image: {
  22093. source: "./media/characters/arador/feral.svg",
  22094. extra: 1683 / 1514,
  22095. bottom: 0.07
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(8 + 3 / 12, "feet")
  22103. },
  22104. {
  22105. name: "Macro",
  22106. height: math.unit(82.5, "feet"),
  22107. default: true
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(5 + 10 / 12, "feet"),
  22116. weight: math.unit(125, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/dharsi/front.svg",
  22120. extra: 716 / 630,
  22121. bottom: 0.035
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Nano",
  22128. height: math.unit(100, "nm")
  22129. },
  22130. {
  22131. name: "Micro",
  22132. height: math.unit(2, "inches")
  22133. },
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(5 + 10 / 12, "feet"),
  22137. default: true
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(1000, "feet")
  22142. },
  22143. {
  22144. name: "Megamacro",
  22145. height: math.unit(10, "miles")
  22146. },
  22147. {
  22148. name: "Gigamacro",
  22149. height: math.unit(3000, "miles")
  22150. },
  22151. {
  22152. name: "Teramacro",
  22153. height: math.unit(500000, "miles")
  22154. },
  22155. {
  22156. name: "Teramacro+",
  22157. height: math.unit(30, "galaxies")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(6, "feet"),
  22166. weight: math.unit(150, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/deathy/front.svg",
  22170. extra: 1552 / 1463,
  22171. bottom: 0.025
  22172. }
  22173. },
  22174. side: {
  22175. height: math.unit(6, "feet"),
  22176. weight: math.unit(150, "lb"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/deathy/side.svg",
  22180. extra: 1604 / 1455,
  22181. bottom: 0.025
  22182. }
  22183. },
  22184. back: {
  22185. height: math.unit(6, "feet"),
  22186. weight: math.unit(150, "lb"),
  22187. name: "Back",
  22188. image: {
  22189. source: "./media/characters/deathy/back.svg",
  22190. extra: 1580 / 1463,
  22191. bottom: 0.005
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Micro",
  22198. height: math.unit(5, "millimeters")
  22199. },
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(6 + 5 / 12, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22209. {
  22210. front: {
  22211. height: math.unit(16, "feet"),
  22212. weight: math.unit(4000, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/juniper/front.svg",
  22216. bottom: 0.04
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(16, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(6, "feet"),
  22233. weight: math.unit(150, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/hipster/front.svg",
  22237. extra: 1312 / 1209,
  22238. bottom: 0.025
  22239. }
  22240. },
  22241. back: {
  22242. height: math.unit(6, "feet"),
  22243. weight: math.unit(150, "lb"),
  22244. name: "Back",
  22245. image: {
  22246. source: "./media/characters/hipster/back.svg",
  22247. extra: 1281 / 1196,
  22248. bottom: 0.01
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Micro",
  22255. height: math.unit(1, "mm")
  22256. },
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(4, "inches"),
  22260. default: true
  22261. },
  22262. {
  22263. name: "Macro",
  22264. height: math.unit(500, "feet")
  22265. },
  22266. {
  22267. name: "Megamacro",
  22268. height: math.unit(1000, "miles")
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(6, "feet"),
  22277. weight: math.unit(150, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/tendirmuldr/front.svg",
  22281. extra: 1878 / 1772,
  22282. bottom: 0.015
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Megamacro",
  22289. height: math.unit(1500, "miles"),
  22290. default: true
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22296. {
  22297. front: {
  22298. height: math.unit(14, "feet"),
  22299. weight: math.unit(12000, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/mort/front.svg",
  22303. extra: 365 / 318,
  22304. bottom: 0.01
  22305. }
  22306. },
  22307. side: {
  22308. height: math.unit(14, "feet"),
  22309. weight: math.unit(12000, "lb"),
  22310. name: "Side",
  22311. image: {
  22312. source: "./media/characters/mort/side.svg",
  22313. extra: 365 / 318,
  22314. bottom: 0.052
  22315. },
  22316. default: true
  22317. },
  22318. back: {
  22319. height: math.unit(14, "feet"),
  22320. weight: math.unit(12000, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/mort/back.svg",
  22324. extra: 371 / 332,
  22325. bottom: 0.18
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(14, "feet"),
  22333. default: true
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22339. {
  22340. front: {
  22341. height: math.unit(8, "feet"),
  22342. weight: math.unit(1, "ton"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/lycoa/front.svg",
  22346. extra: 1836/1728,
  22347. bottom: 81/1917
  22348. }
  22349. },
  22350. back: {
  22351. height: math.unit(8, "feet"),
  22352. weight: math.unit(1, "ton"),
  22353. name: "Back",
  22354. image: {
  22355. source: "./media/characters/lycoa/back.svg",
  22356. extra: 1785/1720,
  22357. bottom: 91/1876
  22358. }
  22359. },
  22360. head: {
  22361. height: math.unit(1.6243, "feet"),
  22362. name: "Head",
  22363. image: {
  22364. source: "./media/characters/lycoa/head.svg",
  22365. extra: 1011/782,
  22366. bottom: 0/1011
  22367. }
  22368. },
  22369. tailmaw: {
  22370. height: math.unit(1.9, "feet"),
  22371. name: "Tailmaw",
  22372. image: {
  22373. source: "./media/characters/lycoa/tailmaw.svg"
  22374. }
  22375. },
  22376. tentacles: {
  22377. height: math.unit(2.1, "feet"),
  22378. name: "Tentacles",
  22379. image: {
  22380. source: "./media/characters/lycoa/tentacles.svg"
  22381. }
  22382. },
  22383. dick: {
  22384. height: math.unit(1.73, "feet"),
  22385. name: "Dick",
  22386. image: {
  22387. source: "./media/characters/lycoa/dick.svg"
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(8, "feet"),
  22395. default: true
  22396. },
  22397. {
  22398. name: "Macro",
  22399. height: math.unit(30, "feet")
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22405. {
  22406. front: {
  22407. height: math.unit(4 + 2 / 12, "feet"),
  22408. weight: math.unit(70, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/naldara/front.svg",
  22412. extra: 1664/1387,
  22413. bottom: 81/1745
  22414. },
  22415. form: "anthro",
  22416. default: true
  22417. },
  22418. naga: {
  22419. height: math.unit(20, "feet"),
  22420. weight: math.unit(15000, "kg"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/naldara/naga.svg",
  22424. extra: 1590/1396,
  22425. bottom: 285/1875
  22426. },
  22427. form: "naga",
  22428. default: true
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(4 + 2 / 12, "feet"),
  22435. form: "anthro",
  22436. default: true
  22437. },
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(20, "feet"),
  22441. form: "naga",
  22442. default: true
  22443. },
  22444. ],
  22445. {
  22446. "anthro": {
  22447. name: "Anthro",
  22448. default: true
  22449. },
  22450. "naga": {
  22451. name: "Naga"
  22452. }
  22453. }
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(13 + 7 / 12, "feet"),
  22460. weight: math.unit(1500, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/briar/front.svg",
  22464. extra: 1223/1157,
  22465. bottom: 123/1346
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(13 + 7 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22479. {
  22480. side: {
  22481. height: math.unit(16, "feet"),
  22482. weight: math.unit(500, "lb"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/vanguard/side.svg",
  22486. extra: 1022/914,
  22487. bottom: 30/1052
  22488. }
  22489. },
  22490. sideAlt: {
  22491. height: math.unit(10, "feet"),
  22492. weight: math.unit(500, "lb"),
  22493. name: "Side (Alt)",
  22494. image: {
  22495. source: "./media/characters/vanguard/side-alt.svg",
  22496. extra: 502 / 425,
  22497. bottom: 0.087
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(17.71, "feet"),
  22505. default: true
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22511. {
  22512. front: {
  22513. height: math.unit(7.5, "feet"),
  22514. weight: math.unit(2, "lb"),
  22515. name: "Front",
  22516. image: {
  22517. source: "./media/characters/artemis/work-safe-front.svg",
  22518. extra: 1192 / 1075,
  22519. bottom: 0.07
  22520. },
  22521. form: "work-safe",
  22522. default: true
  22523. },
  22524. frontNsfw: {
  22525. height: math.unit(7.5, "feet"),
  22526. weight: math.unit(2, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/artemis/calibrating-front.svg",
  22530. extra: 1192 / 1075,
  22531. bottom: 0.07
  22532. },
  22533. form: "calibrating",
  22534. default: true
  22535. },
  22536. frontNsfwer: {
  22537. height: math.unit(7.5, "feet"),
  22538. weight: math.unit(2, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/artemis/oversize-load-front.svg",
  22542. extra: 1192 / 1075,
  22543. bottom: 0.07
  22544. },
  22545. form: "oversize-load",
  22546. default: true
  22547. },
  22548. side: {
  22549. height: math.unit(7.5, "feet"),
  22550. weight: math.unit(2, "lb"),
  22551. name: "Side",
  22552. image: {
  22553. source: "./media/characters/artemis/work-safe-side.svg",
  22554. extra: 1192 / 1075,
  22555. bottom: 0.07
  22556. },
  22557. form: "work-safe"
  22558. },
  22559. sideNsfw: {
  22560. height: math.unit(7.5, "feet"),
  22561. weight: math.unit(2, "lb"),
  22562. name: "Side",
  22563. image: {
  22564. source: "./media/characters/artemis/calibrating-side.svg",
  22565. extra: 1192 / 1075,
  22566. bottom: 0.07
  22567. },
  22568. form: "calibrating"
  22569. },
  22570. sideNsfwer: {
  22571. height: math.unit(7.5, "feet"),
  22572. weight: math.unit(2, "lb"),
  22573. name: "Side",
  22574. image: {
  22575. source: "./media/characters/artemis/oversize-load-side.svg",
  22576. extra: 1192 / 1075,
  22577. bottom: 0.07
  22578. },
  22579. form: "oversize-load"
  22580. },
  22581. maw: {
  22582. height: math.unit(1.1, "feet"),
  22583. name: "Maw",
  22584. image: {
  22585. source: "./media/characters/artemis/maw.svg"
  22586. },
  22587. form: "work-safe"
  22588. },
  22589. stomach: {
  22590. height: math.unit(0.95, "feet"),
  22591. name: "Stomach",
  22592. image: {
  22593. source: "./media/characters/artemis/stomach.svg"
  22594. },
  22595. form: "work-safe"
  22596. },
  22597. dickCanine: {
  22598. height: math.unit(1, "feet"),
  22599. name: "Dick (Canine)",
  22600. image: {
  22601. source: "./media/characters/artemis/dick-canine.svg"
  22602. },
  22603. form: "calibrating"
  22604. },
  22605. dickEquine: {
  22606. height: math.unit(0.85, "feet"),
  22607. name: "Dick (Equine)",
  22608. image: {
  22609. source: "./media/characters/artemis/dick-equine.svg"
  22610. },
  22611. form: "calibrating"
  22612. },
  22613. dickExotic: {
  22614. height: math.unit(0.85, "feet"),
  22615. name: "Dick (Exotic)",
  22616. image: {
  22617. source: "./media/characters/artemis/dick-exotic.svg"
  22618. },
  22619. form: "calibrating"
  22620. },
  22621. dickCanineBigger: {
  22622. height: math.unit(1 * 1.33, "feet"),
  22623. name: "Dick (Canine)",
  22624. image: {
  22625. source: "./media/characters/artemis/dick-canine.svg"
  22626. },
  22627. form: "oversize-load"
  22628. },
  22629. dickEquineBigger: {
  22630. height: math.unit(0.85 * 1.33, "feet"),
  22631. name: "Dick (Equine)",
  22632. image: {
  22633. source: "./media/characters/artemis/dick-equine.svg"
  22634. },
  22635. form: "oversize-load"
  22636. },
  22637. dickExoticBigger: {
  22638. height: math.unit(0.85 * 1.33, "feet"),
  22639. name: "Dick (Exotic)",
  22640. image: {
  22641. source: "./media/characters/artemis/dick-exotic.svg"
  22642. },
  22643. form: "oversize-load"
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(7.5, "feet"),
  22650. form: "work-safe",
  22651. default: true
  22652. },
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(7.5, "feet"),
  22656. form: "calibrating",
  22657. default: true
  22658. },
  22659. {
  22660. name: "Normal",
  22661. height: math.unit(7.5, "feet"),
  22662. form: "oversize-load",
  22663. default: true
  22664. },
  22665. {
  22666. name: "Enlarged",
  22667. height: math.unit(12, "feet"),
  22668. form: "work-safe",
  22669. },
  22670. {
  22671. name: "Enlarged",
  22672. height: math.unit(12, "feet"),
  22673. form: "calibrating",
  22674. },
  22675. {
  22676. name: "Enlarged",
  22677. height: math.unit(12, "feet"),
  22678. form: "oversize-load",
  22679. },
  22680. ],
  22681. {
  22682. "work-safe": {
  22683. name: "Work-Safe",
  22684. default: true
  22685. },
  22686. "calibrating": {
  22687. name: "Calibrating"
  22688. },
  22689. "oversize-load": {
  22690. name: "Oversize Load"
  22691. }
  22692. }
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(5 + 3 / 12, "feet"),
  22699. weight: math.unit(160, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/kira/front.svg",
  22703. extra: 906 / 786,
  22704. bottom: 0.01
  22705. }
  22706. },
  22707. back: {
  22708. height: math.unit(5 + 3 / 12, "feet"),
  22709. weight: math.unit(160, "lb"),
  22710. name: "Back",
  22711. image: {
  22712. source: "./media/characters/kira/back.svg",
  22713. extra: 882 / 757,
  22714. bottom: 0.005
  22715. }
  22716. },
  22717. frontDressed: {
  22718. height: math.unit(5 + 3 / 12, "feet"),
  22719. weight: math.unit(160, "lb"),
  22720. name: "Front (Dressed)",
  22721. image: {
  22722. source: "./media/characters/kira/front-dressed.svg",
  22723. extra: 906 / 786,
  22724. bottom: 0.01
  22725. }
  22726. },
  22727. beans: {
  22728. height: math.unit(0.92, "feet"),
  22729. name: "Beans",
  22730. image: {
  22731. source: "./media/characters/kira/beans.svg"
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(5 + 3 / 12, "feet"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22745. {
  22746. front: {
  22747. height: math.unit(5 + 4 / 12, "feet"),
  22748. weight: math.unit(145, "lb"),
  22749. name: "Front",
  22750. image: {
  22751. source: "./media/characters/scramble/front.svg",
  22752. extra: 763 / 727,
  22753. bottom: 0.05
  22754. }
  22755. },
  22756. back: {
  22757. height: math.unit(5 + 4 / 12, "feet"),
  22758. weight: math.unit(145, "lb"),
  22759. name: "Back",
  22760. image: {
  22761. source: "./media/characters/scramble/back.svg",
  22762. extra: 826 / 737,
  22763. bottom: 0.002
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(5 + 4 / 12, "feet"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22777. {
  22778. side: {
  22779. height: math.unit(6 + 2 / 12, "feet"),
  22780. weight: math.unit(190, "lb"),
  22781. name: "Side",
  22782. image: {
  22783. source: "./media/characters/biscuit/side.svg",
  22784. extra: 858 / 791,
  22785. bottom: 0.044
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(6 + 2 / 12, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(5 + 2 / 12, "feet"),
  22802. weight: math.unit(120, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/poffin/front.svg",
  22806. extra: 786 / 680,
  22807. bottom: 0.005
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(5 + 2 / 12, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(6 + 3 / 12, "feet"),
  22824. weight: math.unit(519, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/dhari/front.svg",
  22828. extra: 1048 / 946,
  22829. bottom: 0.015
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(6 + 3 / 12, "feet"),
  22834. weight: math.unit(519, "lb"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/dhari/back.svg",
  22838. extra: 1048 / 931,
  22839. bottom: 0.005
  22840. }
  22841. },
  22842. frontDressed: {
  22843. height: math.unit(6 + 3 / 12, "feet"),
  22844. weight: math.unit(519, "lb"),
  22845. name: "Front (Dressed)",
  22846. image: {
  22847. source: "./media/characters/dhari/front-dressed.svg",
  22848. extra: 1713 / 1546,
  22849. bottom: 0.02
  22850. }
  22851. },
  22852. backDressed: {
  22853. height: math.unit(6 + 3 / 12, "feet"),
  22854. weight: math.unit(519, "lb"),
  22855. name: "Back (Dressed)",
  22856. image: {
  22857. source: "./media/characters/dhari/back-dressed.svg",
  22858. extra: 1699 / 1537,
  22859. bottom: 0.01
  22860. }
  22861. },
  22862. maw: {
  22863. height: math.unit(0.95, "feet"),
  22864. name: "Maw",
  22865. image: {
  22866. source: "./media/characters/dhari/maw.svg"
  22867. }
  22868. },
  22869. wereFront: {
  22870. height: math.unit(12 + 8 / 12, "feet"),
  22871. weight: math.unit(4000, "lb"),
  22872. name: "Front (Were)",
  22873. image: {
  22874. source: "./media/characters/dhari/were-front.svg",
  22875. extra: 1065 / 969,
  22876. bottom: 0.015
  22877. }
  22878. },
  22879. wereBack: {
  22880. height: math.unit(12 + 8 / 12, "feet"),
  22881. weight: math.unit(4000, "lb"),
  22882. name: "Back (Were)",
  22883. image: {
  22884. source: "./media/characters/dhari/were-back.svg",
  22885. extra: 1065 / 969,
  22886. bottom: 0.012
  22887. }
  22888. },
  22889. wereMaw: {
  22890. height: math.unit(0.625, "meters"),
  22891. name: "Maw (Were)",
  22892. image: {
  22893. source: "./media/characters/dhari/were-maw.svg"
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(6 + 3 / 12, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22907. {
  22908. anthro: {
  22909. height: math.unit(5 + 7 / 12, "feet"),
  22910. weight: math.unit(175, "lb"),
  22911. name: "Anthro",
  22912. image: {
  22913. source: "./media/characters/rena-dyne/anthro.svg",
  22914. extra: 1849 / 1785,
  22915. bottom: 0.005
  22916. }
  22917. },
  22918. taur: {
  22919. height: math.unit(15 + 6 / 12, "feet"),
  22920. weight: math.unit(8000, "lb"),
  22921. name: "Taur",
  22922. image: {
  22923. source: "./media/characters/rena-dyne/taur.svg",
  22924. extra: 2315 / 2234,
  22925. bottom: 0.033
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Normal",
  22932. height: math.unit(5 + 7 / 12, "feet"),
  22933. default: true
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(8, "feet"),
  22942. weight: math.unit(600, "lb"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/weremeep/front.svg",
  22946. extra: 970/849,
  22947. bottom: 7/977
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(8, "feet"),
  22955. default: true
  22956. },
  22957. {
  22958. name: "Lorg",
  22959. height: math.unit(12, "feet")
  22960. },
  22961. {
  22962. name: "Oh Lawd She Comin'",
  22963. height: math.unit(20, "feet")
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22969. {
  22970. front: {
  22971. height: math.unit(4, "feet"),
  22972. weight: math.unit(90, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/reza/front.svg",
  22976. extra: 1183 / 1111,
  22977. bottom: 0.017
  22978. }
  22979. },
  22980. back: {
  22981. height: math.unit(4, "feet"),
  22982. weight: math.unit(90, "lb"),
  22983. name: "Back",
  22984. image: {
  22985. source: "./media/characters/reza/back.svg",
  22986. extra: 1183 / 1111,
  22987. bottom: 0.01
  22988. }
  22989. },
  22990. drake: {
  22991. height: math.unit(30, "feet"),
  22992. weight: math.unit(246960, "lb"),
  22993. name: "Drake",
  22994. image: {
  22995. source: "./media/characters/reza/drake.svg",
  22996. extra: 2350 / 2024,
  22997. bottom: 60.7 / 2403
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Normal",
  23004. height: math.unit(4, "feet"),
  23005. default: true
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23011. {
  23012. side: {
  23013. height: math.unit(15, "feet"),
  23014. weight: math.unit(14, "tons"),
  23015. name: "Side",
  23016. image: {
  23017. source: "./media/characters/athea/side.svg",
  23018. extra: 960 / 540,
  23019. bottom: 0.003
  23020. }
  23021. },
  23022. sitting: {
  23023. height: math.unit(6 * 2.85, "feet"),
  23024. weight: math.unit(14, "tons"),
  23025. name: "Sitting",
  23026. image: {
  23027. source: "./media/characters/athea/sitting.svg",
  23028. extra: 621 / 581,
  23029. bottom: 0.075
  23030. }
  23031. },
  23032. maw: {
  23033. height: math.unit(7.59498031496063, "feet"),
  23034. name: "Maw",
  23035. image: {
  23036. source: "./media/characters/athea/maw.svg"
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Lap Cat",
  23043. height: math.unit(2.5, "feet")
  23044. },
  23045. {
  23046. name: "Minimacro",
  23047. height: math.unit(15, "feet"),
  23048. default: true
  23049. },
  23050. {
  23051. name: "Macro",
  23052. height: math.unit(120, "feet")
  23053. },
  23054. {
  23055. name: "Macro+",
  23056. height: math.unit(640, "feet")
  23057. },
  23058. {
  23059. name: "Colossus",
  23060. height: math.unit(2.2, "miles")
  23061. },
  23062. ]
  23063. ))
  23064. characterMakers.push(() => makeCharacter(
  23065. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23066. {
  23067. front: {
  23068. height: math.unit(8 + 8 / 12, "feet"),
  23069. weight: math.unit(130, "kg"),
  23070. name: "Front",
  23071. image: {
  23072. source: "./media/characters/seroko/front.svg",
  23073. extra: 1385 / 1280,
  23074. bottom: 0.025
  23075. }
  23076. },
  23077. back: {
  23078. height: math.unit(8 + 8 / 12, "feet"),
  23079. weight: math.unit(130, "kg"),
  23080. name: "Back",
  23081. image: {
  23082. source: "./media/characters/seroko/back.svg",
  23083. extra: 1369 / 1238,
  23084. bottom: 0.018
  23085. }
  23086. },
  23087. frontDressed: {
  23088. height: math.unit(8 + 8 / 12, "feet"),
  23089. weight: math.unit(130, "kg"),
  23090. name: "Front (Dressed)",
  23091. image: {
  23092. source: "./media/characters/seroko/front-dressed.svg",
  23093. extra: 1366 / 1275,
  23094. bottom: 0.03
  23095. }
  23096. },
  23097. },
  23098. [
  23099. {
  23100. name: "Normal",
  23101. height: math.unit(8 + 8 / 12, "feet"),
  23102. default: true
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(5.5, "feet"),
  23111. weight: math.unit(160, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/quatzi/front.svg",
  23115. extra: 2346 / 2242,
  23116. bottom: 0.015
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(5.5, "feet"),
  23124. default: true
  23125. },
  23126. {
  23127. name: "Big",
  23128. height: math.unit(7.7, "feet")
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(5 + 11 / 12, "feet"),
  23137. weight: math.unit(180, "lb"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/sen/front.svg",
  23141. extra: 1321 / 1254,
  23142. bottom: 0.015
  23143. }
  23144. },
  23145. side: {
  23146. height: math.unit(5 + 11 / 12, "feet"),
  23147. weight: math.unit(180, "lb"),
  23148. name: "Side",
  23149. image: {
  23150. source: "./media/characters/sen/side.svg",
  23151. extra: 1321 / 1254,
  23152. bottom: 0.007
  23153. }
  23154. },
  23155. back: {
  23156. height: math.unit(5 + 11 / 12, "feet"),
  23157. weight: math.unit(180, "lb"),
  23158. name: "Back",
  23159. image: {
  23160. source: "./media/characters/sen/back.svg",
  23161. extra: 1321 / 1254
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(5 + 11 / 12, "feet"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(166.6, "cm"),
  23178. weight: math.unit(66.6, "kg"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/fruity/front.svg",
  23182. extra: 1510 / 1386,
  23183. bottom: 0.04
  23184. }
  23185. },
  23186. back: {
  23187. height: math.unit(166.6, "cm"),
  23188. weight: math.unit(66.6, "lb"),
  23189. name: "Back",
  23190. image: {
  23191. source: "./media/characters/fruity/back.svg",
  23192. extra: 1563 / 1435,
  23193. bottom: 0.005
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(166.6, "cm"),
  23201. default: true
  23202. },
  23203. {
  23204. name: "Demonic",
  23205. height: math.unit(166.6, "feet")
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23211. {
  23212. side: {
  23213. height: math.unit(10, "feet"),
  23214. weight: math.unit(500, "lb"),
  23215. name: "Side",
  23216. image: {
  23217. source: "./media/characters/zost/side.svg",
  23218. extra: 2870/2533,
  23219. bottom: 252/3122
  23220. }
  23221. },
  23222. mawFront: {
  23223. height: math.unit(1.08, "meters"),
  23224. name: "Maw (Front)",
  23225. image: {
  23226. source: "./media/characters/zost/maw-front.svg"
  23227. }
  23228. },
  23229. mawSide: {
  23230. height: math.unit(2.66, "feet"),
  23231. name: "Maw (Side)",
  23232. image: {
  23233. source: "./media/characters/zost/maw-side.svg"
  23234. }
  23235. },
  23236. wingspan: {
  23237. height: math.unit(7.4, "feet"),
  23238. name: "Wingspan",
  23239. image: {
  23240. source: "./media/characters/zost/wingspan.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(10, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(5 + 4 / 12, "feet"),
  23257. weight: math.unit(120, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/luci/front.svg",
  23261. extra: 1985 / 1884,
  23262. bottom: 0.04
  23263. }
  23264. },
  23265. back: {
  23266. height: math.unit(5 + 4 / 12, "feet"),
  23267. weight: math.unit(120, "lb"),
  23268. name: "Back",
  23269. image: {
  23270. source: "./media/characters/luci/back.svg",
  23271. extra: 1892 / 1791,
  23272. bottom: 0.002
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(5 + 4 / 12, "feet"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(1500, "feet"),
  23289. weight: math.unit(3.8e6, "tons"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/2th/front.svg",
  23293. extra: 3489 / 3350,
  23294. bottom: 0.1
  23295. }
  23296. },
  23297. foot: {
  23298. height: math.unit(461, "feet"),
  23299. name: "Foot",
  23300. image: {
  23301. source: "./media/characters/2th/foot.svg"
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "\"Micro\"",
  23308. height: math.unit(15 + 7 / 12, "feet")
  23309. },
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(1500, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(5000, "feet")
  23318. },
  23319. {
  23320. name: "Megamacro",
  23321. height: math.unit(15, "miles")
  23322. },
  23323. {
  23324. name: "Gigamacro",
  23325. height: math.unit(4000, "miles")
  23326. },
  23327. {
  23328. name: "Galactic",
  23329. height: math.unit(50, "AU")
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(5 + 6 / 12, "feet"),
  23338. weight: math.unit(220, "lb"),
  23339. name: "Front",
  23340. image: {
  23341. source: "./media/characters/amethyst/front.svg",
  23342. extra: 2078 / 2040,
  23343. bottom: 0.045
  23344. }
  23345. },
  23346. back: {
  23347. height: math.unit(5 + 6 / 12, "feet"),
  23348. weight: math.unit(220, "lb"),
  23349. name: "Back",
  23350. image: {
  23351. source: "./media/characters/amethyst/back.svg",
  23352. extra: 2021 / 1989,
  23353. bottom: 0.02
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Normal",
  23360. height: math.unit(5 + 6 / 12, "feet"),
  23361. default: true
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(4 + 11 / 12, "feet"),
  23370. weight: math.unit(120, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/yumi-akiyama/front.svg",
  23374. extra: 1327 / 1235,
  23375. bottom: 0.02
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(4 + 11 / 12, "feet"),
  23380. weight: math.unit(120, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/yumi-akiyama/back.svg",
  23384. extra: 1287 / 1245,
  23385. bottom: 0.002
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Galactic",
  23392. height: math.unit(50, "galaxies"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Universal",
  23397. height: math.unit(100, "universes")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(8, "feet"),
  23406. weight: math.unit(500, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/rifter-yrmori/front.svg",
  23410. extra: 1180 / 1125,
  23411. bottom: 0.02
  23412. }
  23413. },
  23414. back: {
  23415. height: math.unit(8, "feet"),
  23416. weight: math.unit(500, "lb"),
  23417. name: "Back",
  23418. image: {
  23419. source: "./media/characters/rifter-yrmori/back.svg",
  23420. extra: 1190 / 1145,
  23421. bottom: 0.001
  23422. }
  23423. },
  23424. wings: {
  23425. height: math.unit(7.75, "feet"),
  23426. weight: math.unit(500, "lb"),
  23427. name: "Wings",
  23428. image: {
  23429. source: "./media/characters/rifter-yrmori/wings.svg",
  23430. extra: 1357 / 1285
  23431. }
  23432. },
  23433. maw: {
  23434. height: math.unit(0.8, "feet"),
  23435. name: "Maw",
  23436. image: {
  23437. source: "./media/characters/rifter-yrmori/maw.svg"
  23438. }
  23439. },
  23440. mawfront: {
  23441. height: math.unit(1.45, "feet"),
  23442. name: "Maw (Front)",
  23443. image: {
  23444. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(8, "feet"),
  23452. default: true
  23453. },
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(42, "meters")
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23462. {
  23463. were: {
  23464. height: math.unit(25 + 6 / 12, "feet"),
  23465. weight: math.unit(10000, "lb"),
  23466. name: "Were",
  23467. image: {
  23468. source: "./media/characters/tahajin/were.svg",
  23469. extra: 801 / 770,
  23470. bottom: 0.042
  23471. }
  23472. },
  23473. aquatic: {
  23474. height: math.unit(6 + 4 / 12, "feet"),
  23475. weight: math.unit(160, "lb"),
  23476. name: "Aquatic",
  23477. image: {
  23478. source: "./media/characters/tahajin/aquatic.svg",
  23479. extra: 572 / 542,
  23480. bottom: 0.04
  23481. }
  23482. },
  23483. chow: {
  23484. height: math.unit(8 + 11 / 12, "feet"),
  23485. weight: math.unit(450, "lb"),
  23486. name: "Chow",
  23487. image: {
  23488. source: "./media/characters/tahajin/chow.svg",
  23489. extra: 660 / 640,
  23490. bottom: 0.015
  23491. }
  23492. },
  23493. demiNaga: {
  23494. height: math.unit(6 + 8 / 12, "feet"),
  23495. weight: math.unit(300, "lb"),
  23496. name: "Demi Naga",
  23497. image: {
  23498. source: "./media/characters/tahajin/demi-naga.svg",
  23499. extra: 643 / 615,
  23500. bottom: 0.1
  23501. }
  23502. },
  23503. data: {
  23504. height: math.unit(5, "inches"),
  23505. weight: math.unit(0.1, "lb"),
  23506. name: "Data",
  23507. image: {
  23508. source: "./media/characters/tahajin/data.svg"
  23509. }
  23510. },
  23511. fluu: {
  23512. height: math.unit(5 + 7 / 12, "feet"),
  23513. weight: math.unit(140, "lb"),
  23514. name: "Fluu",
  23515. image: {
  23516. source: "./media/characters/tahajin/fluu.svg",
  23517. extra: 628 / 592,
  23518. bottom: 0.02
  23519. }
  23520. },
  23521. starWarrior: {
  23522. height: math.unit(4 + 5 / 12, "feet"),
  23523. weight: math.unit(50, "lb"),
  23524. name: "Star Warrior",
  23525. image: {
  23526. source: "./media/characters/tahajin/star-warrior.svg"
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(25 + 6 / 12, "feet"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23540. {
  23541. front: {
  23542. height: math.unit(8, "feet"),
  23543. weight: math.unit(350, "lb"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/gabira/front.svg",
  23547. extra: 1261/1154,
  23548. bottom: 51/1312
  23549. }
  23550. },
  23551. back: {
  23552. height: math.unit(8, "feet"),
  23553. weight: math.unit(350, "lb"),
  23554. name: "Back",
  23555. image: {
  23556. source: "./media/characters/gabira/back.svg",
  23557. extra: 1265/1163,
  23558. bottom: 46/1311
  23559. }
  23560. },
  23561. head: {
  23562. height: math.unit(2.85, "feet"),
  23563. name: "Head",
  23564. image: {
  23565. source: "./media/characters/gabira/head.svg"
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Normal",
  23572. height: math.unit(8, "feet"),
  23573. default: true
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23579. {
  23580. front: {
  23581. height: math.unit(5 + 3 / 12, "feet"),
  23582. weight: math.unit(137, "lb"),
  23583. name: "Front",
  23584. image: {
  23585. source: "./media/characters/sasha-katraine/front.svg",
  23586. extra: 1745/1694,
  23587. bottom: 37/1782
  23588. }
  23589. },
  23590. back: {
  23591. height: math.unit(5 + 3 / 12, "feet"),
  23592. weight: math.unit(137, "lb"),
  23593. name: "Back",
  23594. image: {
  23595. source: "./media/characters/sasha-katraine/back.svg",
  23596. extra: 1776/1699,
  23597. bottom: 26/1802
  23598. }
  23599. },
  23600. },
  23601. [
  23602. {
  23603. name: "Micro",
  23604. height: math.unit(5, "inches")
  23605. },
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(5 + 3 / 12, "feet"),
  23609. default: true
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23615. {
  23616. side: {
  23617. height: math.unit(4, "inches"),
  23618. weight: math.unit(200, "grams"),
  23619. name: "Side",
  23620. image: {
  23621. source: "./media/characters/der/side.svg",
  23622. extra: 719 / 400,
  23623. bottom: 30.6 / 749.9187
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Micro",
  23630. height: math.unit(4, "inches"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23637. {
  23638. side: {
  23639. height: math.unit(30, "meters"),
  23640. weight: math.unit(700, "tonnes"),
  23641. name: "Side",
  23642. image: {
  23643. source: "./media/characters/fixerdragon/side.svg",
  23644. extra: (1293.0514 - 116.03) / 1106.86,
  23645. bottom: 116.03 / 1293.0514
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Planck",
  23652. height: math.unit(1.6e-35, "meters")
  23653. },
  23654. {
  23655. name: "Micro",
  23656. height: math.unit(0.4, "meters")
  23657. },
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(30, "meters"),
  23661. default: true
  23662. },
  23663. {
  23664. name: "Megamacro",
  23665. height: math.unit(1.2, "megameters")
  23666. },
  23667. {
  23668. name: "Teramacro",
  23669. height: math.unit(130, "terameters")
  23670. },
  23671. {
  23672. name: "Yottamacro",
  23673. height: math.unit(6200, "yottameters")
  23674. },
  23675. ]
  23676. ));
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(8, "feet"),
  23682. weight: math.unit(250, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/kite/front.svg",
  23686. extra: 2796 / 2659,
  23687. bottom: 0.002
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(8, "feet"),
  23695. default: true
  23696. },
  23697. {
  23698. name: "Macro",
  23699. height: math.unit(360, "feet")
  23700. },
  23701. {
  23702. name: "Megamacro",
  23703. height: math.unit(1500, "feet")
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(5 + 11/12, "feet"),
  23712. weight: math.unit(170, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/poojawa-vynar/front.svg",
  23716. extra: 1735/1585,
  23717. bottom: 96/1831
  23718. }
  23719. },
  23720. back: {
  23721. height: math.unit(5 + 11/12, "feet"),
  23722. weight: math.unit(170, "lb"),
  23723. name: "Back",
  23724. image: {
  23725. source: "./media/characters/poojawa-vynar/back.svg",
  23726. extra: 1749/1607,
  23727. bottom: 28/1777
  23728. }
  23729. },
  23730. male: {
  23731. height: math.unit(5 + 11/12, "feet"),
  23732. weight: math.unit(170, "lb"),
  23733. name: "Male",
  23734. image: {
  23735. source: "./media/characters/poojawa-vynar/male.svg",
  23736. extra: 1855/1713,
  23737. bottom: 63/1918
  23738. }
  23739. },
  23740. taur: {
  23741. height: math.unit(5 + 11/12, "feet"),
  23742. weight: math.unit(170, "lb"),
  23743. name: "Taur",
  23744. image: {
  23745. source: "./media/characters/poojawa-vynar/taur.svg",
  23746. extra: 1151/1059,
  23747. bottom: 356/1507
  23748. }
  23749. },
  23750. frontDressed: {
  23751. height: math.unit(5 + 11/12, "feet"),
  23752. weight: math.unit(170, "lb"),
  23753. name: "Front (Dressed)",
  23754. image: {
  23755. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23756. extra: 1735/1585,
  23757. bottom: 96/1831
  23758. }
  23759. },
  23760. backDressed: {
  23761. height: math.unit(5 + 11/12, "feet"),
  23762. weight: math.unit(170, "lb"),
  23763. name: "Back (Dressed)",
  23764. image: {
  23765. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23766. extra: 1749/1607,
  23767. bottom: 28/1777
  23768. }
  23769. },
  23770. maleDressed: {
  23771. height: math.unit(5 + 11/12, "feet"),
  23772. weight: math.unit(170, "lb"),
  23773. name: "Male (Dressed)",
  23774. image: {
  23775. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23776. extra: 1855/1713,
  23777. bottom: 63/1918
  23778. }
  23779. },
  23780. taurDressed: {
  23781. height: math.unit(5 + 11/12, "feet"),
  23782. weight: math.unit(170, "lb"),
  23783. name: "Taur (Dressed)",
  23784. image: {
  23785. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23786. extra: 1151/1059,
  23787. bottom: 356/1507
  23788. }
  23789. },
  23790. maw: {
  23791. height: math.unit(1.46, "feet"),
  23792. name: "Maw",
  23793. image: {
  23794. source: "./media/characters/poojawa-vynar/maw.svg"
  23795. }
  23796. },
  23797. head: {
  23798. height: math.unit(2.34, "feet"),
  23799. name: "Head",
  23800. image: {
  23801. source: "./media/characters/poojawa-vynar/head.svg"
  23802. }
  23803. },
  23804. paw: {
  23805. height: math.unit(1.61, "feet"),
  23806. name: "Paw",
  23807. image: {
  23808. source: "./media/characters/poojawa-vynar/paw.svg"
  23809. }
  23810. },
  23811. pawToering: {
  23812. height: math.unit(1.72, "feet"),
  23813. name: "Paw (Toering)",
  23814. image: {
  23815. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23816. }
  23817. },
  23818. toering: {
  23819. height: math.unit(2.9, "inches"),
  23820. name: "Toering",
  23821. image: {
  23822. source: "./media/characters/poojawa-vynar/toering.svg"
  23823. }
  23824. },
  23825. shaft: {
  23826. height: math.unit(0.625, "feet"),
  23827. name: "Shaft",
  23828. image: {
  23829. source: "./media/characters/poojawa-vynar/shaft.svg"
  23830. }
  23831. },
  23832. spade: {
  23833. height: math.unit(0.42, "feet"),
  23834. name: "Spade",
  23835. image: {
  23836. source: "./media/characters/poojawa-vynar/spade.svg"
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Shortstack",
  23843. height: math.unit(4, "feet")
  23844. },
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(5 + 11 / 12, "feet"),
  23848. default: true
  23849. },
  23850. {
  23851. name: "Tauric",
  23852. height: math.unit(4, "meters")
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23858. {
  23859. front: {
  23860. height: math.unit(293, "meters"),
  23861. weight: math.unit(70400, "tons"),
  23862. name: "Front",
  23863. image: {
  23864. source: "./media/characters/violette/front.svg",
  23865. extra: 1227 / 1180,
  23866. bottom: 0.005
  23867. }
  23868. },
  23869. back: {
  23870. height: math.unit(293, "meters"),
  23871. weight: math.unit(70400, "tons"),
  23872. name: "Back",
  23873. image: {
  23874. source: "./media/characters/violette/back.svg",
  23875. extra: 1227 / 1180,
  23876. bottom: 0.005
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(293, "meters"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23890. {
  23891. front: {
  23892. height: math.unit(1050, "feet"),
  23893. weight: math.unit(200000, "tons"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/alessandra/front.svg",
  23897. extra: 960 / 912,
  23898. bottom: 0.06
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Macro",
  23905. height: math.unit(1050, "feet")
  23906. },
  23907. {
  23908. name: "Macro+",
  23909. height: math.unit(900, "meters"),
  23910. default: true
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23916. {
  23917. front: {
  23918. height: math.unit(5, "feet"),
  23919. weight: math.unit(187, "lb"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/person/front.svg",
  23923. extra: 3087 / 2945,
  23924. bottom: 91 / 3181
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Micro",
  23931. height: math.unit(3, "inches")
  23932. },
  23933. {
  23934. name: "Normal",
  23935. height: math.unit(5, "feet"),
  23936. default: true
  23937. },
  23938. {
  23939. name: "Macro",
  23940. height: math.unit(90, "feet")
  23941. },
  23942. {
  23943. name: "Max Size",
  23944. height: math.unit(280, "feet")
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(4.5, "meters"),
  23953. weight: math.unit(3200, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/ty/front.svg",
  23957. extra: 1038 / 960,
  23958. bottom: 31.156 / 1068
  23959. }
  23960. },
  23961. back: {
  23962. height: math.unit(4.5, "meters"),
  23963. weight: math.unit(3200, "lb"),
  23964. name: "Back",
  23965. image: {
  23966. source: "./media/characters/ty/back.svg",
  23967. extra: 1044 / 966,
  23968. bottom: 7.48 / 1049
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(4.5, "meters"),
  23976. default: true
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23982. {
  23983. front: {
  23984. height: math.unit(5 + 4 / 12, "feet"),
  23985. weight: math.unit(115, "lb"),
  23986. name: "Front",
  23987. image: {
  23988. source: "./media/characters/rocky/front.svg",
  23989. extra: 1012 / 975,
  23990. bottom: 54 / 1066
  23991. }
  23992. },
  23993. },
  23994. [
  23995. {
  23996. name: "Normal",
  23997. height: math.unit(5 + 4 / 12, "feet"),
  23998. default: true
  23999. },
  24000. ]
  24001. ))
  24002. characterMakers.push(() => makeCharacter(
  24003. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24004. {
  24005. upright: {
  24006. height: math.unit(6, "meters"),
  24007. weight: math.unit(4000, "kg"),
  24008. name: "Upright",
  24009. image: {
  24010. source: "./media/characters/ruin/upright.svg",
  24011. extra: 668 / 661,
  24012. bottom: 42 / 799.8396
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Normal",
  24019. height: math.unit(6, "meters"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(5, "feet"),
  24029. weight: math.unit(106, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/robin/front.svg",
  24033. extra: 862 / 799,
  24034. bottom: 42.4 / 914.8856
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(5, "feet"),
  24042. default: true
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24048. {
  24049. side: {
  24050. height: math.unit(3, "feet"),
  24051. weight: math.unit(225, "lb"),
  24052. name: "Side",
  24053. image: {
  24054. source: "./media/characters/saian/side.svg",
  24055. extra: 566 / 356,
  24056. bottom: 79.7 / 643
  24057. }
  24058. },
  24059. maw: {
  24060. height: math.unit(2.85, "feet"),
  24061. name: "Maw",
  24062. image: {
  24063. source: "./media/characters/saian/maw.svg"
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(3, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24077. {
  24078. side: {
  24079. height: math.unit(8, "feet"),
  24080. weight: math.unit(300, "lb"),
  24081. name: "Side",
  24082. image: {
  24083. source: "./media/characters/equus-silvermane/side.svg",
  24084. extra: 2176 / 2050,
  24085. bottom: 65.7 / 2245
  24086. }
  24087. },
  24088. front: {
  24089. height: math.unit(8, "feet"),
  24090. weight: math.unit(300, "lb"),
  24091. name: "Front",
  24092. image: {
  24093. source: "./media/characters/equus-silvermane/front.svg",
  24094. extra: 4633 / 4400,
  24095. bottom: 71.3 / 4706.915
  24096. }
  24097. },
  24098. sideStepping: {
  24099. height: math.unit(8, "feet"),
  24100. weight: math.unit(300, "lb"),
  24101. name: "Side (Stepping)",
  24102. image: {
  24103. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24104. extra: 1968 / 1860,
  24105. bottom: 16.4 / 1989
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Normal",
  24112. height: math.unit(8, "feet")
  24113. },
  24114. {
  24115. name: "Minimacro",
  24116. height: math.unit(75, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Macro",
  24121. height: math.unit(150, "feet")
  24122. },
  24123. {
  24124. name: "Macro+",
  24125. height: math.unit(1000, "feet")
  24126. },
  24127. {
  24128. name: "Megamacro",
  24129. height: math.unit(1, "mile")
  24130. },
  24131. ]
  24132. ))
  24133. characterMakers.push(() => makeCharacter(
  24134. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24135. {
  24136. side: {
  24137. height: math.unit(20, "feet"),
  24138. weight: math.unit(30000, "kg"),
  24139. name: "Side",
  24140. image: {
  24141. source: "./media/characters/windar/side.svg",
  24142. extra: 1491 / 1248,
  24143. bottom: 82.56 / 1568
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(20, "feet"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24157. {
  24158. side: {
  24159. height: math.unit(15.66, "feet"),
  24160. weight: math.unit(150, "lb"),
  24161. name: "Side",
  24162. image: {
  24163. source: "./media/characters/melody/side.svg",
  24164. extra: 1097 / 944,
  24165. bottom: 11.8 / 1109
  24166. }
  24167. },
  24168. sideOutfit: {
  24169. height: math.unit(15.66, "feet"),
  24170. weight: math.unit(150, "lb"),
  24171. name: "Side (Outfit)",
  24172. image: {
  24173. source: "./media/characters/melody/side-outfit.svg",
  24174. extra: 1097 / 944,
  24175. bottom: 11.8 / 1109
  24176. }
  24177. },
  24178. },
  24179. [
  24180. {
  24181. name: "Normal",
  24182. height: math.unit(15.66, "feet"),
  24183. default: true
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24189. {
  24190. armoredFront: {
  24191. height: math.unit(8, "feet"),
  24192. weight: math.unit(325, "lb"),
  24193. name: "Front",
  24194. image: {
  24195. source: "./media/characters/windera/armored-front.svg",
  24196. extra: 1830/1598,
  24197. bottom: 151/1981
  24198. },
  24199. form: "armored",
  24200. default: true
  24201. },
  24202. macroFront: {
  24203. height: math.unit(70, "feet"),
  24204. weight: math.unit(315453, "lb"),
  24205. name: "Front",
  24206. image: {
  24207. source: "./media/characters/windera/macro-front.svg",
  24208. extra: 963/883,
  24209. bottom: 23/986
  24210. },
  24211. form: "macro",
  24212. default: true
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(8, "feet"),
  24219. default: true,
  24220. form: "armored"
  24221. },
  24222. {
  24223. name: "Normal",
  24224. height: math.unit(70, "feet"),
  24225. default: true,
  24226. form: "macro"
  24227. },
  24228. ],
  24229. {
  24230. "armored": {
  24231. name: "Armored",
  24232. default: true
  24233. },
  24234. "macro": {
  24235. name: "Macro",
  24236. },
  24237. }
  24238. ))
  24239. characterMakers.push(() => makeCharacter(
  24240. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24241. {
  24242. front: {
  24243. height: math.unit(28.75, "feet"),
  24244. weight: math.unit(2000, "kg"),
  24245. name: "Front",
  24246. image: {
  24247. source: "./media/characters/sonear/front.svg",
  24248. extra: 1041.1 / 964.9,
  24249. bottom: 53.7 / 1096.6
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(28.75, "feet"),
  24257. default: true
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24263. {
  24264. side: {
  24265. height: math.unit(25.5, "feet"),
  24266. weight: math.unit(23000, "kg"),
  24267. name: "Side",
  24268. image: {
  24269. source: "./media/characters/kanara/side.svg"
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(25.5, "feet"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24283. {
  24284. side: {
  24285. height: math.unit(10, "feet"),
  24286. weight: math.unit(1000, "kg"),
  24287. name: "Side",
  24288. image: {
  24289. source: "./media/characters/ereus/side.svg",
  24290. extra: 1157 / 959,
  24291. bottom: 153 / 1312.5
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(10, "feet"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24305. {
  24306. side: {
  24307. height: math.unit(4.5, "feet"),
  24308. weight: math.unit(500, "lb"),
  24309. name: "Side",
  24310. image: {
  24311. source: "./media/characters/e-ter/side.svg",
  24312. extra: 1550 / 1248,
  24313. bottom: 146 / 1694
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(4.5, "feet"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24327. {
  24328. side: {
  24329. height: math.unit(9.7, "feet"),
  24330. weight: math.unit(4000, "kg"),
  24331. name: "Side",
  24332. image: {
  24333. source: "./media/characters/yamie/side.svg"
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(9.7, "feet"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(50, "feet"),
  24350. weight: math.unit(50000, "kg"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/anders/front.svg",
  24354. extra: 570 / 539,
  24355. bottom: 14.7 / 586.7
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Large",
  24362. height: math.unit(50, "feet")
  24363. },
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(2000, "feet"),
  24367. default: true
  24368. },
  24369. {
  24370. name: "Megamacro",
  24371. height: math.unit(12, "miles")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(7 + 2 / 12, "feet"),
  24380. weight: math.unit(300, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/reban/front.svg",
  24384. extra: 1287/1212,
  24385. bottom: 148/1435
  24386. }
  24387. },
  24388. head: {
  24389. height: math.unit(1.95, "feet"),
  24390. name: "Head",
  24391. image: {
  24392. source: "./media/characters/reban/head.svg"
  24393. }
  24394. },
  24395. maw: {
  24396. height: math.unit(0.95, "feet"),
  24397. name: "Maw",
  24398. image: {
  24399. source: "./media/characters/reban/maw.svg"
  24400. }
  24401. },
  24402. foot: {
  24403. height: math.unit(1.65, "feet"),
  24404. name: "Foot",
  24405. image: {
  24406. source: "./media/characters/reban/foot.svg"
  24407. }
  24408. },
  24409. dick: {
  24410. height: math.unit(7 / 5, "feet"),
  24411. name: "Dick",
  24412. image: {
  24413. source: "./media/characters/reban/dick.svg"
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Natural Height",
  24420. height: math.unit(7 + 2 / 12, "feet")
  24421. },
  24422. {
  24423. name: "Macro",
  24424. height: math.unit(500, "feet"),
  24425. default: true
  24426. },
  24427. {
  24428. name: "Canon Height",
  24429. height: math.unit(50, "AU")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(6, "feet"),
  24438. weight: math.unit(150, "lb"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/terrance-keayes/front.svg",
  24442. extra: 1.005,
  24443. bottom: 151 / 1615
  24444. }
  24445. },
  24446. side: {
  24447. height: math.unit(6, "feet"),
  24448. weight: math.unit(150, "lb"),
  24449. name: "Side",
  24450. image: {
  24451. source: "./media/characters/terrance-keayes/side.svg",
  24452. extra: 1.005,
  24453. bottom: 129.4 / 1544
  24454. }
  24455. },
  24456. back: {
  24457. height: math.unit(6, "feet"),
  24458. weight: math.unit(150, "lb"),
  24459. name: "Back",
  24460. image: {
  24461. source: "./media/characters/terrance-keayes/back.svg",
  24462. extra: 1.005,
  24463. bottom: 58.4 / 1557.3
  24464. }
  24465. },
  24466. dick: {
  24467. height: math.unit(6 * 0.208, "feet"),
  24468. name: "Dick",
  24469. image: {
  24470. source: "./media/characters/terrance-keayes/dick.svg"
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Canon Height",
  24477. height: math.unit(35, "miles"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(6, "feet"),
  24487. weight: math.unit(150, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/ofelia/front.svg",
  24491. extra: 1130/1117,
  24492. bottom: 91/1221
  24493. }
  24494. },
  24495. back: {
  24496. height: math.unit(6, "feet"),
  24497. weight: math.unit(150, "lb"),
  24498. name: "Back",
  24499. image: {
  24500. source: "./media/characters/ofelia/back.svg",
  24501. extra: 1172/1159,
  24502. bottom: 28/1200
  24503. }
  24504. },
  24505. maw: {
  24506. height: math.unit(1, "feet"),
  24507. name: "Maw",
  24508. image: {
  24509. source: "./media/characters/ofelia/maw.svg"
  24510. }
  24511. },
  24512. foot: {
  24513. height: math.unit(1.949, "feet"),
  24514. name: "Foot",
  24515. image: {
  24516. source: "./media/characters/ofelia/foot.svg"
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Canon Height",
  24523. height: math.unit(2000, "miles"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(6, "feet"),
  24533. weight: math.unit(150, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/samuel/front.svg",
  24537. extra: 265 / 258,
  24538. bottom: 2 / 266.1566
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Macro",
  24545. height: math.unit(100, "feet"),
  24546. default: true
  24547. },
  24548. {
  24549. name: "Full Size",
  24550. height: math.unit(1000, "miles")
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(6, "feet"),
  24559. weight: math.unit(300, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/beishir-kiel/front.svg",
  24563. extra: 569 / 547,
  24564. bottom: 41.9 / 609
  24565. }
  24566. },
  24567. maw: {
  24568. height: math.unit(6 * 0.202, "feet"),
  24569. name: "Maw",
  24570. image: {
  24571. source: "./media/characters/beishir-kiel/maw.svg"
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Macro",
  24578. height: math.unit(300, "feet"),
  24579. default: true
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(5 + 7/12, "feet"),
  24588. weight: math.unit(120, "lb"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/logan-grey/front.svg",
  24592. extra: 1836/1738,
  24593. bottom: 108/1944
  24594. }
  24595. },
  24596. back: {
  24597. height: math.unit(5 + 7/12, "feet"),
  24598. weight: math.unit(120, "lb"),
  24599. name: "Back",
  24600. image: {
  24601. source: "./media/characters/logan-grey/back.svg",
  24602. extra: 1880/1794,
  24603. bottom: 24/1904
  24604. }
  24605. },
  24606. frontSfw: {
  24607. height: math.unit(5 + 7/12, "feet"),
  24608. weight: math.unit(120, "lb"),
  24609. name: "Front (SFW)",
  24610. image: {
  24611. source: "./media/characters/logan-grey/front-sfw.svg",
  24612. extra: 1836/1738,
  24613. bottom: 108/1944
  24614. }
  24615. },
  24616. backSfw: {
  24617. height: math.unit(5 + 7/12, "feet"),
  24618. weight: math.unit(120, "lb"),
  24619. name: "Back (SFW)",
  24620. image: {
  24621. source: "./media/characters/logan-grey/back-sfw.svg",
  24622. extra: 1880/1794,
  24623. bottom: 24/1904
  24624. }
  24625. },
  24626. hands: {
  24627. height: math.unit(0.84, "feet"),
  24628. name: "Hands",
  24629. image: {
  24630. source: "./media/characters/logan-grey/hands.svg"
  24631. }
  24632. },
  24633. paws: {
  24634. height: math.unit(0.72, "feet"),
  24635. name: "Paws",
  24636. image: {
  24637. source: "./media/characters/logan-grey/paws.svg"
  24638. }
  24639. },
  24640. cock: {
  24641. height: math.unit(1.45, "feet"),
  24642. name: "Cock",
  24643. image: {
  24644. source: "./media/characters/logan-grey/cock.svg"
  24645. }
  24646. },
  24647. cockAlt: {
  24648. height: math.unit(1.437, "feet"),
  24649. name: "Cock (alt)",
  24650. image: {
  24651. source: "./media/characters/logan-grey/cock-alt.svg"
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Normal",
  24658. height: math.unit(5 + 8 / 12, "feet")
  24659. },
  24660. {
  24661. name: "The 500 Foot Femboy",
  24662. height: math.unit(500, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Megmacro",
  24667. height: math.unit(20, "miles")
  24668. },
  24669. ]
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24673. {
  24674. front: {
  24675. height: math.unit(8 + 2 / 12, "feet"),
  24676. weight: math.unit(275, "lb"),
  24677. name: "Front",
  24678. image: {
  24679. source: "./media/characters/draganta/front.svg",
  24680. extra: 1177 / 1135,
  24681. bottom: 33.46 / 1212.1
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Normal",
  24688. height: math.unit(8 + 6 / 12, "feet"),
  24689. default: true
  24690. },
  24691. {
  24692. name: "Macro",
  24693. height: math.unit(150, "feet")
  24694. },
  24695. {
  24696. name: "Megamacro",
  24697. height: math.unit(1000, "miles")
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(1.72, "m"),
  24706. weight: math.unit(80, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/voski/front.svg",
  24710. extra: 2076.22 / 2022.4,
  24711. bottom: 102.7 / 2177.3866
  24712. }
  24713. },
  24714. frontFlaccid: {
  24715. height: math.unit(1.72, "m"),
  24716. weight: math.unit(80, "lb"),
  24717. name: "Front (Flaccid)",
  24718. image: {
  24719. source: "./media/characters/voski/front-flaccid.svg",
  24720. extra: 2076.22 / 2022.4,
  24721. bottom: 102.7 / 2177.3866
  24722. }
  24723. },
  24724. frontErect: {
  24725. height: math.unit(1.72, "m"),
  24726. weight: math.unit(80, "lb"),
  24727. name: "Front (Erect)",
  24728. image: {
  24729. source: "./media/characters/voski/front-erect.svg",
  24730. extra: 2076.22 / 2022.4,
  24731. bottom: 102.7 / 2177.3866
  24732. }
  24733. },
  24734. back: {
  24735. height: math.unit(1.72, "m"),
  24736. weight: math.unit(80, "lb"),
  24737. name: "Back",
  24738. image: {
  24739. source: "./media/characters/voski/back.svg",
  24740. extra: 2104 / 2051,
  24741. bottom: 10.45 / 2113.63
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Normal",
  24748. height: math.unit(1.72, "m")
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(55, "m"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Macro+",
  24757. height: math.unit(300, "m")
  24758. },
  24759. {
  24760. name: "Macro++",
  24761. height: math.unit(700, "m")
  24762. },
  24763. {
  24764. name: "Macro+++",
  24765. height: math.unit(4500, "m")
  24766. },
  24767. {
  24768. name: "Macro++++",
  24769. height: math.unit(45, "km")
  24770. },
  24771. {
  24772. name: "Macro+++++",
  24773. height: math.unit(1220, "km")
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24779. {
  24780. front: {
  24781. height: math.unit(2.3, "m"),
  24782. weight: math.unit(304, "kg"),
  24783. name: "Front",
  24784. image: {
  24785. source: "./media/characters/icowom-lee/front.svg",
  24786. extra: 985 / 955,
  24787. bottom: 25.4 / 1012
  24788. }
  24789. },
  24790. fronttentacles: {
  24791. height: math.unit(2.3, "m"),
  24792. weight: math.unit(304, "kg"),
  24793. name: "Front-tentacles",
  24794. image: {
  24795. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24796. extra: 985 / 955,
  24797. bottom: 25.4 / 1012
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(2.3, "m"),
  24802. weight: math.unit(304, "kg"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/icowom-lee/back.svg",
  24806. extra: 975 / 954,
  24807. bottom: 9.5 / 985
  24808. }
  24809. },
  24810. backtentacles: {
  24811. height: math.unit(2.3, "m"),
  24812. weight: math.unit(304, "kg"),
  24813. name: "Back-tentacles",
  24814. image: {
  24815. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24816. extra: 975 / 954,
  24817. bottom: 9.5 / 985
  24818. }
  24819. },
  24820. frontDressed: {
  24821. height: math.unit(2.3, "m"),
  24822. weight: math.unit(304, "kg"),
  24823. name: "Front (Dressed)",
  24824. image: {
  24825. source: "./media/characters/icowom-lee/front-dressed.svg",
  24826. extra: 3076 / 2933,
  24827. bottom: 51.4 / 3125.1889
  24828. }
  24829. },
  24830. rump: {
  24831. height: math.unit(0.776, "meters"),
  24832. name: "Rump",
  24833. image: {
  24834. source: "./media/characters/icowom-lee/rump.svg"
  24835. }
  24836. },
  24837. genitals: {
  24838. height: math.unit(0.78, "meters"),
  24839. name: "Genitals",
  24840. image: {
  24841. source: "./media/characters/icowom-lee/genitals.svg"
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(2.3, "meters"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(94, "meters"),
  24854. default: true
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(22, "meters"),
  24863. weight: math.unit(21000, "kg"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/shock-diamond/front.svg",
  24867. extra: 2204 / 2053,
  24868. bottom: 65 / 2239.47
  24869. }
  24870. },
  24871. frontNude: {
  24872. height: math.unit(22, "meters"),
  24873. weight: math.unit(21000, "kg"),
  24874. name: "Front (Nude)",
  24875. image: {
  24876. source: "./media/characters/shock-diamond/front-nude.svg",
  24877. extra: 2514 / 2285,
  24878. bottom: 13 / 2527.56
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(3, "meters")
  24886. },
  24887. {
  24888. name: "Macro",
  24889. height: math.unit(22, "meters"),
  24890. default: true
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24896. {
  24897. front: {
  24898. height: math.unit(5 + 4/12, "feet"),
  24899. weight: math.unit(125, "lb"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/rory/front.svg",
  24903. extra: 1790/1681,
  24904. bottom: 66/1856
  24905. },
  24906. form: "normal",
  24907. default: true
  24908. },
  24909. back: {
  24910. height: math.unit(5 + 4/12, "feet"),
  24911. weight: math.unit(125, "lb"),
  24912. name: "Back",
  24913. image: {
  24914. source: "./media/characters/rory/back.svg",
  24915. extra: 1805/1690,
  24916. bottom: 56/1861
  24917. },
  24918. form: "normal"
  24919. },
  24920. frontDressed: {
  24921. height: math.unit(5 + 4/12, "feet"),
  24922. weight: math.unit(125, "lb"),
  24923. name: "Front (Dressed)",
  24924. image: {
  24925. source: "./media/characters/rory/front-dressed.svg",
  24926. extra: 1790/1681,
  24927. bottom: 66/1856
  24928. },
  24929. form: "normal"
  24930. },
  24931. backDressed: {
  24932. height: math.unit(5 + 4/12, "feet"),
  24933. weight: math.unit(125, "lb"),
  24934. name: "Back (Dressed)",
  24935. image: {
  24936. source: "./media/characters/rory/back-dressed.svg",
  24937. extra: 1805/1690,
  24938. bottom: 56/1861
  24939. },
  24940. form: "normal"
  24941. },
  24942. frontNsfw: {
  24943. height: math.unit(5 + 4/12, "feet"),
  24944. weight: math.unit(125, "lb"),
  24945. name: "Front (NSFW)",
  24946. image: {
  24947. source: "./media/characters/rory/front-nsfw.svg",
  24948. extra: 1790/1681,
  24949. bottom: 66/1856
  24950. },
  24951. form: "normal"
  24952. },
  24953. backNsfw: {
  24954. height: math.unit(5 + 4/12, "feet"),
  24955. weight: math.unit(125, "lb"),
  24956. name: "Back (NSFW)",
  24957. image: {
  24958. source: "./media/characters/rory/back-nsfw.svg",
  24959. extra: 1805/1690,
  24960. bottom: 56/1861
  24961. },
  24962. form: "normal"
  24963. },
  24964. dick: {
  24965. height: math.unit(0.8, "feet"),
  24966. name: "Dick",
  24967. image: {
  24968. source: "./media/characters/rory/dick.svg"
  24969. },
  24970. form: "normal"
  24971. },
  24972. thicc_front: {
  24973. height: math.unit(5 + 4/12, "feet"),
  24974. weight: math.unit(195, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/rory/thicc-front.svg",
  24978. extra: 1220/1100,
  24979. bottom: 103/1323
  24980. },
  24981. form: "thicc",
  24982. default: true
  24983. },
  24984. thicc_back: {
  24985. height: math.unit(5 + 4/12, "feet"),
  24986. weight: math.unit(195, "lb"),
  24987. name: "Back",
  24988. image: {
  24989. source: "./media/characters/rory/thicc-back.svg",
  24990. extra: 1166/1086,
  24991. bottom: 35/1201
  24992. },
  24993. form: "thicc"
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Micro",
  24999. height: math.unit(3, "inches"),
  25000. allForms: true
  25001. },
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(5 + 4/12, "feet"),
  25005. allForms: true,
  25006. default: true
  25007. },
  25008. {
  25009. name: "Macro",
  25010. height: math.unit(90, "feet"),
  25011. allForms: true
  25012. },
  25013. {
  25014. name: "Supercharged",
  25015. height: math.unit(270, "feet"),
  25016. allForms: true
  25017. },
  25018. ],
  25019. {
  25020. "normal": {
  25021. name: "Normal",
  25022. default: true
  25023. },
  25024. "thicc": {
  25025. name: "Thicc",
  25026. },
  25027. }
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(5 + 9 / 12, "feet"),
  25034. weight: math.unit(190, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/sprisk/front.svg",
  25038. extra: 1225 / 1180,
  25039. bottom: 42.7 / 1266.4
  25040. }
  25041. },
  25042. frontNsfw: {
  25043. height: math.unit(5 + 9 / 12, "feet"),
  25044. weight: math.unit(190, "lb"),
  25045. name: "Front (NSFW)",
  25046. image: {
  25047. source: "./media/characters/sprisk/front-nsfw.svg",
  25048. extra: 1225 / 1180,
  25049. bottom: 42.7 / 1266.4
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(5 + 9 / 12, "feet"),
  25054. weight: math.unit(190, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/sprisk/back.svg",
  25058. extra: 1247 / 1200,
  25059. bottom: 5.6 / 1253.04
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Tiny",
  25066. height: math.unit(2, "inches")
  25067. },
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(5 + 9 / 12, "feet"),
  25071. default: true
  25072. },
  25073. {
  25074. name: "Mini Macro",
  25075. height: math.unit(18, "feet")
  25076. },
  25077. {
  25078. name: "Macro",
  25079. height: math.unit(100, "feet")
  25080. },
  25081. {
  25082. name: "MACRO",
  25083. height: math.unit(50, "miles")
  25084. },
  25085. {
  25086. name: "M A C R O",
  25087. height: math.unit(300, "miles")
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25093. {
  25094. side: {
  25095. height: math.unit(15.6, "meters"),
  25096. weight: math.unit(700000, "kg"),
  25097. name: "Side",
  25098. image: {
  25099. source: "./media/characters/bunsen/side.svg",
  25100. extra: 1644 / 358
  25101. }
  25102. },
  25103. foot: {
  25104. height: math.unit(1.611 * 1644 / 358, "meter"),
  25105. name: "Foot",
  25106. image: {
  25107. source: "./media/characters/bunsen/foot.svg"
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Small",
  25114. height: math.unit(10, "feet")
  25115. },
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(15.6, "meters"),
  25119. default: true
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(4 + 11 / 12, "feet"),
  25128. weight: math.unit(140, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/sesh/front.svg",
  25132. extra: 3420 / 3231,
  25133. bottom: 72 / 3949.5
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(4 + 11 / 12, "feet")
  25141. },
  25142. {
  25143. name: "Grown",
  25144. height: math.unit(15, "feet"),
  25145. default: true
  25146. },
  25147. {
  25148. name: "Macro",
  25149. height: math.unit(1500, "feet")
  25150. },
  25151. {
  25152. name: "Megamacro",
  25153. height: math.unit(30, "miles")
  25154. },
  25155. {
  25156. name: "Continental",
  25157. height: math.unit(3000, "miles")
  25158. },
  25159. {
  25160. name: "Gravity Mass",
  25161. height: math.unit(300000, "miles")
  25162. },
  25163. {
  25164. name: "Planet Buster",
  25165. height: math.unit(30000000, "miles")
  25166. },
  25167. {
  25168. name: "Big",
  25169. height: math.unit(3000000000, "miles")
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(9, "feet"),
  25178. weight: math.unit(350, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/pepper/front.svg",
  25182. extra: 1448 / 1312,
  25183. bottom: 9.4 / 1457.88
  25184. }
  25185. },
  25186. back: {
  25187. height: math.unit(9, "feet"),
  25188. weight: math.unit(350, "lb"),
  25189. name: "Back",
  25190. image: {
  25191. source: "./media/characters/pepper/back.svg",
  25192. extra: 1423 / 1300,
  25193. bottom: 4.6 / 1429
  25194. }
  25195. },
  25196. maw: {
  25197. height: math.unit(0.932, "feet"),
  25198. name: "Maw",
  25199. image: {
  25200. source: "./media/characters/pepper/maw.svg"
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(9, "feet"),
  25208. default: true
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25214. {
  25215. front: {
  25216. height: math.unit(6, "feet"),
  25217. weight: math.unit(150, "lb"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/maelstrom/front.svg",
  25221. extra: 2100 / 1883,
  25222. bottom: 94 / 2196.7
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Less Kaiju",
  25229. height: math.unit(200, "feet")
  25230. },
  25231. {
  25232. name: "Kaiju",
  25233. height: math.unit(400, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Kaiju-er",
  25238. height: math.unit(600, "feet")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(6 + 5 / 12, "feet"),
  25247. weight: math.unit(180, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/lexir/front.svg",
  25251. extra: 180 / 172,
  25252. bottom: 12 / 192
  25253. }
  25254. },
  25255. back: {
  25256. height: math.unit(6 + 5 / 12, "feet"),
  25257. weight: math.unit(180, "lb"),
  25258. name: "Back",
  25259. image: {
  25260. source: "./media/characters/lexir/back.svg",
  25261. extra: 1273/1201,
  25262. bottom: 39/1312
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Very Smal",
  25269. height: math.unit(1, "nm")
  25270. },
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(6 + 5 / 12, "feet"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(1, "mile")
  25279. },
  25280. {
  25281. name: "Megamacro",
  25282. height: math.unit(50, "miles")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(1.5, "meters"),
  25291. weight: math.unit(100, "lb"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/maksio/front.svg",
  25295. extra: 1549 / 1531,
  25296. bottom: 123.7 / 1674.5429
  25297. }
  25298. },
  25299. back: {
  25300. height: math.unit(1.5, "meters"),
  25301. weight: math.unit(100, "lb"),
  25302. name: "Back",
  25303. image: {
  25304. source: "./media/characters/maksio/back.svg",
  25305. extra: 1541 / 1509,
  25306. bottom: 97 / 1639
  25307. }
  25308. },
  25309. hand: {
  25310. height: math.unit(0.621, "feet"),
  25311. name: "Hand",
  25312. image: {
  25313. source: "./media/characters/maksio/hand.svg"
  25314. }
  25315. },
  25316. foot: {
  25317. height: math.unit(1.611, "feet"),
  25318. name: "Foot",
  25319. image: {
  25320. source: "./media/characters/maksio/foot.svg"
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Shrunken",
  25327. height: math.unit(10, "cm")
  25328. },
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(150, "cm"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(100, "feet"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/erza-bear/front.svg",
  25344. extra: 2449 / 2390,
  25345. bottom: 46 / 2494
  25346. }
  25347. },
  25348. back: {
  25349. height: math.unit(100, "feet"),
  25350. name: "Back",
  25351. image: {
  25352. source: "./media/characters/erza-bear/back.svg",
  25353. extra: 2489 / 2430,
  25354. bottom: 85.4 / 2480
  25355. }
  25356. },
  25357. tail: {
  25358. height: math.unit(42, "feet"),
  25359. name: "Tail",
  25360. image: {
  25361. source: "./media/characters/erza-bear/tail.svg"
  25362. }
  25363. },
  25364. tongue: {
  25365. height: math.unit(8, "feet"),
  25366. name: "Tongue",
  25367. image: {
  25368. source: "./media/characters/erza-bear/tongue.svg"
  25369. }
  25370. },
  25371. dick: {
  25372. height: math.unit(10.5, "feet"),
  25373. name: "Dick",
  25374. image: {
  25375. source: "./media/characters/erza-bear/dick.svg"
  25376. }
  25377. },
  25378. dickVertical: {
  25379. height: math.unit(16.9, "feet"),
  25380. name: "Dick (Vertical)",
  25381. image: {
  25382. source: "./media/characters/erza-bear/dick-vertical.svg"
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(100, "feet"),
  25390. default: true
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(172, "cm"),
  25399. weight: math.unit(73, "kg"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/violet-flor/front.svg",
  25403. extra: 1530 / 1442,
  25404. bottom: 61.9 / 1588.8
  25405. }
  25406. },
  25407. back: {
  25408. height: math.unit(180, "cm"),
  25409. weight: math.unit(73, "kg"),
  25410. name: "Back",
  25411. image: {
  25412. source: "./media/characters/violet-flor/back.svg",
  25413. extra: 1692 / 1630,
  25414. bottom: 20 / 1712
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(172, "cm"),
  25422. default: true
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(6, "feet"),
  25431. weight: math.unit(220, "lb"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/lynn-rhea/front.svg",
  25435. extra: 310 / 273
  25436. }
  25437. },
  25438. back: {
  25439. height: math.unit(6, "feet"),
  25440. weight: math.unit(220, "lb"),
  25441. name: "Back",
  25442. image: {
  25443. source: "./media/characters/lynn-rhea/back.svg",
  25444. extra: 310 / 273
  25445. }
  25446. },
  25447. dicks: {
  25448. height: math.unit(0.9, "feet"),
  25449. name: "Dicks",
  25450. image: {
  25451. source: "./media/characters/lynn-rhea/dicks.svg"
  25452. }
  25453. },
  25454. slit: {
  25455. height: math.unit(0.4, "feet"),
  25456. name: "Slit",
  25457. image: {
  25458. source: "./media/characters/lynn-rhea/slit.svg"
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Micro",
  25465. height: math.unit(1, "inch")
  25466. },
  25467. {
  25468. name: "Macro",
  25469. height: math.unit(60, "feet"),
  25470. default: true
  25471. },
  25472. {
  25473. name: "Megamacro",
  25474. height: math.unit(2, "miles")
  25475. },
  25476. {
  25477. name: "Gigamacro",
  25478. height: math.unit(3, "earths")
  25479. },
  25480. {
  25481. name: "Galactic",
  25482. height: math.unit(0.8, "galaxies")
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25488. {
  25489. front: {
  25490. height: math.unit(1600, "feet"),
  25491. weight: math.unit(85758785169, "kg"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/valathos/front.svg",
  25495. extra: 1451 / 1339
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Macro",
  25502. height: math.unit(1600, "feet"),
  25503. default: true
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25509. {
  25510. front: {
  25511. height: math.unit(7 + 5 / 12, "feet"),
  25512. weight: math.unit(300, "lb"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/azula/front.svg",
  25516. extra: 3208 / 2880,
  25517. bottom: 80.2 / 3277
  25518. }
  25519. },
  25520. back: {
  25521. height: math.unit(7 + 5 / 12, "feet"),
  25522. weight: math.unit(300, "lb"),
  25523. name: "Back",
  25524. image: {
  25525. source: "./media/characters/azula/back.svg",
  25526. extra: 3169 / 2822,
  25527. bottom: 150.6 / 3321
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(7 + 5 / 12, "feet"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Big",
  25539. height: math.unit(20, "feet")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(5 + 1 / 12, "feet"),
  25548. weight: math.unit(110, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/rupert/front.svg",
  25552. extra: 1549 / 1495,
  25553. bottom: 54.2 / 1604.4
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(5 + 1 / 12, "feet"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25567. {
  25568. front: {
  25569. height: math.unit(8 + 4 / 12, "feet"),
  25570. weight: math.unit(350, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/sheera-castellar/front.svg",
  25574. extra: 1957 / 1894,
  25575. bottom: 26.97 / 1975.017
  25576. }
  25577. },
  25578. side: {
  25579. height: math.unit(8 + 4 / 12, "feet"),
  25580. weight: math.unit(350, "lb"),
  25581. name: "Side",
  25582. image: {
  25583. source: "./media/characters/sheera-castellar/side.svg",
  25584. extra: 1957 / 1894
  25585. }
  25586. },
  25587. back: {
  25588. height: math.unit(8 + 4 / 12, "feet"),
  25589. weight: math.unit(350, "lb"),
  25590. name: "Back",
  25591. image: {
  25592. source: "./media/characters/sheera-castellar/back.svg",
  25593. extra: 1957 / 1894
  25594. }
  25595. },
  25596. angled: {
  25597. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25598. weight: math.unit(350, "lb"),
  25599. name: "Angled",
  25600. image: {
  25601. source: "./media/characters/sheera-castellar/angled.svg",
  25602. extra: 1807 / 1707,
  25603. bottom: 68 / 1875
  25604. }
  25605. },
  25606. genitals: {
  25607. height: math.unit(2.2, "feet"),
  25608. name: "Genitals",
  25609. image: {
  25610. source: "./media/characters/sheera-castellar/genitals.svg"
  25611. }
  25612. },
  25613. taur: {
  25614. height: math.unit(10 + 6/12, "feet"),
  25615. name: "Taur",
  25616. image: {
  25617. source: "./media/characters/sheera-castellar/taur.svg",
  25618. extra: 2017/1909,
  25619. bottom: 185/2202
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(8 + 4 / 12, "feet")
  25627. },
  25628. {
  25629. name: "Macro",
  25630. height: math.unit(150, "feet"),
  25631. default: true
  25632. },
  25633. {
  25634. name: "Macro+",
  25635. height: math.unit(800, "feet")
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(6, "feet"),
  25644. weight: math.unit(150, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/jaipur/front.svg",
  25648. extra: 3860 / 3731,
  25649. bottom: 287 / 4140
  25650. }
  25651. },
  25652. back: {
  25653. height: math.unit(6, "feet"),
  25654. weight: math.unit(150, "lb"),
  25655. name: "Back",
  25656. image: {
  25657. source: "./media/characters/jaipur/back.svg",
  25658. extra: 1637/1561,
  25659. bottom: 154/1791
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Normal",
  25666. height: math.unit(1.85, "meters"),
  25667. default: true
  25668. },
  25669. {
  25670. name: "Macro",
  25671. height: math.unit(150, "meters")
  25672. },
  25673. {
  25674. name: "Macro+",
  25675. height: math.unit(0.5, "miles")
  25676. },
  25677. {
  25678. name: "Macro++",
  25679. height: math.unit(2.5, "miles")
  25680. },
  25681. {
  25682. name: "Macro+++",
  25683. height: math.unit(12, "miles")
  25684. },
  25685. {
  25686. name: "Macro++++",
  25687. height: math.unit(120, "miles")
  25688. },
  25689. {
  25690. name: "Macro+++++",
  25691. height: math.unit(1200, "miles")
  25692. },
  25693. ]
  25694. ))
  25695. characterMakers.push(() => makeCharacter(
  25696. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25697. {
  25698. front: {
  25699. height: math.unit(6, "feet"),
  25700. weight: math.unit(150, "lb"),
  25701. name: "Front",
  25702. image: {
  25703. source: "./media/characters/sheila-wolf/front.svg",
  25704. extra: 1931 / 1808,
  25705. bottom: 29.5 / 1960
  25706. }
  25707. },
  25708. dick: {
  25709. height: math.unit(1.464, "feet"),
  25710. name: "Dick",
  25711. image: {
  25712. source: "./media/characters/sheila-wolf/dick.svg"
  25713. }
  25714. },
  25715. muzzle: {
  25716. height: math.unit(0.513, "feet"),
  25717. name: "Muzzle",
  25718. image: {
  25719. source: "./media/characters/sheila-wolf/muzzle.svg"
  25720. }
  25721. },
  25722. },
  25723. [
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(70, "feet"),
  25727. default: true
  25728. },
  25729. ]
  25730. ))
  25731. characterMakers.push(() => makeCharacter(
  25732. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25733. {
  25734. front: {
  25735. height: math.unit(32, "meters"),
  25736. weight: math.unit(300000, "kg"),
  25737. name: "Front",
  25738. image: {
  25739. source: "./media/characters/almor/front.svg",
  25740. extra: 1408 / 1322,
  25741. bottom: 94.6 / 1506.5
  25742. }
  25743. },
  25744. },
  25745. [
  25746. {
  25747. name: "Macro",
  25748. height: math.unit(32, "meters"),
  25749. default: true
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(7, "feet"),
  25758. weight: math.unit(200, "lb"),
  25759. name: "Front",
  25760. image: {
  25761. source: "./media/characters/silver/front.svg",
  25762. extra: 472.1 / 450.5,
  25763. bottom: 26.5 / 499.424
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(7, "feet"),
  25771. default: true
  25772. },
  25773. {
  25774. name: "Macro",
  25775. height: math.unit(800, "feet")
  25776. },
  25777. {
  25778. name: "Megamacro",
  25779. height: math.unit(250, "miles")
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(6, "feet"),
  25788. weight: math.unit(150, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/pliskin/front.svg",
  25792. extra: 1469 / 1359,
  25793. bottom: 70 / 1540
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Micro",
  25800. height: math.unit(3, "inches")
  25801. },
  25802. {
  25803. name: "Normal",
  25804. height: math.unit(5 + 11 / 12, "feet"),
  25805. default: true
  25806. },
  25807. {
  25808. name: "Macro",
  25809. height: math.unit(120, "feet")
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(6, "feet"),
  25818. weight: math.unit(150, "lb"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/sammy/front.svg",
  25822. extra: 1193 / 1089,
  25823. bottom: 30.5 / 1226
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(1700, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Examacro",
  25835. height: math.unit(2.5e9, "lightyears")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(21, "meters"),
  25844. weight: math.unit(12, "tonnes"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/kuru/front.svg",
  25848. extra: 4301 / 3785,
  25849. bottom: 371.3 / 4691
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Macro",
  25856. height: math.unit(21, "meters"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(23, "meters"),
  25866. weight: math.unit(12.2, "tonnes"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/rakka/front.svg",
  25870. extra: 4670 / 4169,
  25871. bottom: 301 / 4968.7
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Macro",
  25878. height: math.unit(23, "meters"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(150, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/rhys-feline/front.svg",
  25892. extra: 2488 / 2308,
  25893. bottom: 35.67 / 2519.19
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Really Small",
  25900. height: math.unit(1, "nm")
  25901. },
  25902. {
  25903. name: "Micro",
  25904. height: math.unit(4, "inches")
  25905. },
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(4 + 10 / 12, "feet"),
  25909. default: true
  25910. },
  25911. {
  25912. name: "Macro",
  25913. height: math.unit(100, "feet")
  25914. },
  25915. {
  25916. name: "Megamacto",
  25917. height: math.unit(50, "miles")
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25923. {
  25924. side: {
  25925. height: math.unit(30, "feet"),
  25926. weight: math.unit(35000, "kg"),
  25927. name: "Side",
  25928. image: {
  25929. source: "./media/characters/alydar/side.svg",
  25930. extra: 234 / 222,
  25931. bottom: 6.5 / 241
  25932. }
  25933. },
  25934. front: {
  25935. height: math.unit(30, "feet"),
  25936. weight: math.unit(35000, "kg"),
  25937. name: "Front",
  25938. image: {
  25939. source: "./media/characters/alydar/front.svg",
  25940. extra: 223.37 / 210.2,
  25941. bottom: 22.3 / 246.76
  25942. }
  25943. },
  25944. top: {
  25945. height: math.unit(64.54, "feet"),
  25946. weight: math.unit(35000, "kg"),
  25947. name: "Top",
  25948. image: {
  25949. source: "./media/characters/alydar/top.svg"
  25950. }
  25951. },
  25952. anthro: {
  25953. height: math.unit(30, "feet"),
  25954. weight: math.unit(9000, "kg"),
  25955. name: "Anthro",
  25956. image: {
  25957. source: "./media/characters/alydar/anthro.svg",
  25958. extra: 432 / 421,
  25959. bottom: 7.18 / 440
  25960. }
  25961. },
  25962. maw: {
  25963. height: math.unit(11.693, "feet"),
  25964. name: "Maw",
  25965. image: {
  25966. source: "./media/characters/alydar/maw.svg"
  25967. }
  25968. },
  25969. head: {
  25970. height: math.unit(11.693, "feet"),
  25971. name: "Head",
  25972. image: {
  25973. source: "./media/characters/alydar/head.svg"
  25974. }
  25975. },
  25976. headAlt: {
  25977. height: math.unit(12.861, "feet"),
  25978. name: "Head (Alt)",
  25979. image: {
  25980. source: "./media/characters/alydar/head-alt.svg"
  25981. }
  25982. },
  25983. wing: {
  25984. height: math.unit(20.712, "feet"),
  25985. name: "Wing",
  25986. image: {
  25987. source: "./media/characters/alydar/wing.svg"
  25988. }
  25989. },
  25990. wingFeather: {
  25991. height: math.unit(9.662, "feet"),
  25992. name: "Wing Feather",
  25993. image: {
  25994. source: "./media/characters/alydar/wing-feather.svg"
  25995. }
  25996. },
  25997. countourFeather: {
  25998. height: math.unit(4.154, "feet"),
  25999. name: "Contour Feather",
  26000. image: {
  26001. source: "./media/characters/alydar/contour-feather.svg"
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Diplomatic",
  26008. height: math.unit(13, "feet"),
  26009. default: true
  26010. },
  26011. {
  26012. name: "Small",
  26013. height: math.unit(30, "feet")
  26014. },
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(95, "feet"),
  26018. default: true
  26019. },
  26020. {
  26021. name: "Large",
  26022. height: math.unit(285, "feet")
  26023. },
  26024. {
  26025. name: "Incomprehensible",
  26026. height: math.unit(450, "megameters")
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26032. {
  26033. side: {
  26034. height: math.unit(11, "feet"),
  26035. weight: math.unit(1750, "kg"),
  26036. name: "Side",
  26037. image: {
  26038. source: "./media/characters/selicia/side.svg",
  26039. extra: 440 / 396,
  26040. bottom: 24.8 / 465.979
  26041. }
  26042. },
  26043. maw: {
  26044. height: math.unit(4.665, "feet"),
  26045. name: "Maw",
  26046. image: {
  26047. source: "./media/characters/selicia/maw.svg"
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(11, "feet"),
  26055. default: true
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26061. {
  26062. side: {
  26063. height: math.unit(2 + 6 / 12, "feet"),
  26064. weight: math.unit(30, "lb"),
  26065. name: "Side",
  26066. image: {
  26067. source: "./media/characters/layla/side.svg",
  26068. extra: 244 / 188,
  26069. bottom: 18.2 / 262.1
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(2 + 6 / 12, "feet"),
  26074. weight: math.unit(30, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/layla/back.svg",
  26078. extra: 308 / 241.5,
  26079. bottom: 8.9 / 316.8
  26080. }
  26081. },
  26082. cumming: {
  26083. height: math.unit(2 + 6 / 12, "feet"),
  26084. weight: math.unit(30, "lb"),
  26085. name: "Cumming",
  26086. image: {
  26087. source: "./media/characters/layla/cumming.svg",
  26088. extra: 342 / 279,
  26089. bottom: 595 / 938
  26090. }
  26091. },
  26092. dickFlaccid: {
  26093. height: math.unit(2.595, "feet"),
  26094. name: "Flaccid Genitals",
  26095. image: {
  26096. source: "./media/characters/layla/dick-flaccid.svg"
  26097. }
  26098. },
  26099. dickErect: {
  26100. height: math.unit(2.359, "feet"),
  26101. name: "Erect Genitals",
  26102. image: {
  26103. source: "./media/characters/layla/dick-erect.svg"
  26104. }
  26105. },
  26106. dragon: {
  26107. height: math.unit(40, "feet"),
  26108. name: "Dragon",
  26109. image: {
  26110. source: "./media/characters/layla/dragon.svg",
  26111. extra: 610/535,
  26112. bottom: 367/977
  26113. }
  26114. },
  26115. taur: {
  26116. height: math.unit(30, "feet"),
  26117. name: "Taur",
  26118. image: {
  26119. source: "./media/characters/layla/taur.svg",
  26120. extra: 1268/1199,
  26121. bottom: 112/1380
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Micro",
  26128. height: math.unit(1, "inch")
  26129. },
  26130. {
  26131. name: "Small",
  26132. height: math.unit(1, "foot")
  26133. },
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(2 + 6 / 12, "feet"),
  26137. default: true
  26138. },
  26139. {
  26140. name: "Macro",
  26141. height: math.unit(200, "feet")
  26142. },
  26143. {
  26144. name: "Megamacro",
  26145. height: math.unit(1000, "miles")
  26146. },
  26147. {
  26148. name: "Planetary",
  26149. height: math.unit(8000, "miles")
  26150. },
  26151. {
  26152. name: "True Layla",
  26153. height: math.unit(200000 * 7, "multiverses")
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26159. {
  26160. back: {
  26161. height: math.unit(10.5, "feet"),
  26162. weight: math.unit(800, "lb"),
  26163. name: "Back",
  26164. image: {
  26165. source: "./media/characters/knox/back.svg",
  26166. extra: 1486 / 1089,
  26167. bottom: 107 / 1601.4
  26168. }
  26169. },
  26170. side: {
  26171. height: math.unit(10.5, "feet"),
  26172. weight: math.unit(800, "lb"),
  26173. name: "Side",
  26174. image: {
  26175. source: "./media/characters/knox/side.svg",
  26176. extra: 244 / 218,
  26177. bottom: 14 / 260
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Compact",
  26184. height: math.unit(10.5, "feet"),
  26185. default: true
  26186. },
  26187. {
  26188. name: "Dynamax",
  26189. height: math.unit(210, "feet")
  26190. },
  26191. {
  26192. name: "Full Macro",
  26193. height: math.unit(850, "feet")
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(28, "feet"),
  26202. weight: math.unit(10500, "lb"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/kayda/front.svg",
  26206. extra: 1536 / 1428,
  26207. bottom: 68.7 / 1603
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(28, "feet"),
  26212. weight: math.unit(10500, "lb"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/kayda/back.svg",
  26216. extra: 1557 / 1464,
  26217. bottom: 39.5 / 1597.49
  26218. }
  26219. },
  26220. dick: {
  26221. height: math.unit(3.858, "feet"),
  26222. name: "Dick",
  26223. image: {
  26224. source: "./media/characters/kayda/dick.svg"
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Macro",
  26231. height: math.unit(28, "feet"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(10 + 11 / 12, "feet"),
  26241. weight: math.unit(1400, "lb"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/brian/front.svg",
  26245. extra: 737 / 692,
  26246. bottom: 55.4 / 785
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(10 + 11 / 12, "feet"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(5 + 8 / 12, "feet"),
  26263. weight: math.unit(140, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/khemri/front.svg",
  26267. extra: 4780 / 4059,
  26268. bottom: 80.1 / 4859.25
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Micro",
  26275. height: math.unit(6, "inches")
  26276. },
  26277. {
  26278. name: "Normal",
  26279. height: math.unit(5 + 8 / 12, "feet"),
  26280. default: true
  26281. },
  26282. ]
  26283. ))
  26284. characterMakers.push(() => makeCharacter(
  26285. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26286. {
  26287. front: {
  26288. height: math.unit(13, "feet"),
  26289. weight: math.unit(1700, "lb"),
  26290. name: "Front",
  26291. image: {
  26292. source: "./media/characters/felix-braveheart/front.svg",
  26293. extra: 1222 / 1157,
  26294. bottom: 53.2 / 1280
  26295. }
  26296. },
  26297. back: {
  26298. height: math.unit(13, "feet"),
  26299. weight: math.unit(1700, "lb"),
  26300. name: "Back",
  26301. image: {
  26302. source: "./media/characters/felix-braveheart/back.svg",
  26303. extra: 1277 / 1203,
  26304. bottom: 50.2 / 1327
  26305. }
  26306. },
  26307. feral: {
  26308. height: math.unit(6, "feet"),
  26309. weight: math.unit(400, "lb"),
  26310. name: "Feral",
  26311. image: {
  26312. source: "./media/characters/felix-braveheart/feral.svg",
  26313. extra: 682 / 625,
  26314. bottom: 6.9 / 688
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(13, "feet"),
  26322. default: true
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26328. {
  26329. side: {
  26330. height: math.unit(5 + 11 / 12, "feet"),
  26331. weight: math.unit(1400, "lb"),
  26332. name: "Side",
  26333. image: {
  26334. source: "./media/characters/shadow-blade/side.svg",
  26335. extra: 1726 / 1267,
  26336. bottom: 58.4 / 1785
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(5 + 11 / 12, "feet"),
  26344. default: true
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(1 + 6 / 12, "feet"),
  26353. weight: math.unit(25, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/karla-halldor/front.svg",
  26357. extra: 1459 / 1383,
  26358. bottom: 12 / 1472
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(1 + 6 / 12, "feet"),
  26366. default: true
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(6 + 2 / 12, "feet"),
  26375. weight: math.unit(160, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/ariam/front.svg",
  26379. extra: 1073/976,
  26380. bottom: 52/1125
  26381. }
  26382. },
  26383. back: {
  26384. height: math.unit(6 + 2/12, "feet"),
  26385. weight: math.unit(160, "lb"),
  26386. name: "Back",
  26387. image: {
  26388. source: "./media/characters/ariam/back.svg",
  26389. extra: 1103/1023,
  26390. bottom: 9/1112
  26391. }
  26392. },
  26393. dressed: {
  26394. height: math.unit(6 + 2/12, "feet"),
  26395. weight: math.unit(160, "lb"),
  26396. name: "Dressed",
  26397. image: {
  26398. source: "./media/characters/ariam/dressed.svg",
  26399. extra: 1099/1009,
  26400. bottom: 25/1124
  26401. }
  26402. },
  26403. squatting: {
  26404. height: math.unit(4.1, "feet"),
  26405. weight: math.unit(160, "lb"),
  26406. name: "Squatting",
  26407. image: {
  26408. source: "./media/characters/ariam/squatting.svg",
  26409. extra: 2617 / 2112,
  26410. bottom: 61.2 / 2681,
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(6 + 2 / 12, "feet"),
  26418. default: true
  26419. },
  26420. {
  26421. name: "Normal+",
  26422. height: math.unit(4, "meters")
  26423. },
  26424. {
  26425. name: "Macro",
  26426. height: math.unit(50, "meters")
  26427. },
  26428. {
  26429. name: "Macro+",
  26430. height: math.unit(100, "meters")
  26431. },
  26432. {
  26433. name: "Megamacro",
  26434. height: math.unit(20, "km")
  26435. },
  26436. {
  26437. name: "Caretaker",
  26438. height: math.unit(444, "megameters")
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26444. {
  26445. front: {
  26446. height: math.unit(1.67, "meters"),
  26447. weight: math.unit(140, "lb"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26451. extra: 438 / 410,
  26452. bottom: 0.75 / 439
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Shrunken",
  26459. height: math.unit(7.6, "cm")
  26460. },
  26461. {
  26462. name: "Human Scale",
  26463. height: math.unit(1.67, "meters")
  26464. },
  26465. {
  26466. name: "Wolxi Scale",
  26467. height: math.unit(36.7, "meters"),
  26468. default: true
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(1.73, "meters"),
  26477. weight: math.unit(240, "lb"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/izue-two-mothers/front.svg",
  26481. extra: 469 / 437,
  26482. bottom: 1.24 / 470.6
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Shrunken",
  26489. height: math.unit(7.86, "cm")
  26490. },
  26491. {
  26492. name: "Human Scale",
  26493. height: math.unit(1.73, "meters")
  26494. },
  26495. {
  26496. name: "Wolxi Scale",
  26497. height: math.unit(38, "meters"),
  26498. default: true
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(1.55, "meters"),
  26507. weight: math.unit(120, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/teeku-love-shack/front.svg",
  26511. extra: 387 / 362,
  26512. bottom: 1.51 / 388
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Shrunken",
  26519. height: math.unit(7, "cm")
  26520. },
  26521. {
  26522. name: "Human Scale",
  26523. height: math.unit(1.55, "meters")
  26524. },
  26525. {
  26526. name: "Wolxi Scale",
  26527. height: math.unit(34.1, "meters"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(1.83, "meters"),
  26537. weight: math.unit(135, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/dejma-the-red/front.svg",
  26541. extra: 480 / 458,
  26542. bottom: 1.8 / 482
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Shrunken",
  26549. height: math.unit(8.3, "cm")
  26550. },
  26551. {
  26552. name: "Human Scale",
  26553. height: math.unit(1.83, "meters")
  26554. },
  26555. {
  26556. name: "Wolxi Scale",
  26557. height: math.unit(40, "meters"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(1.78, "meters"),
  26567. weight: math.unit(65, "kg"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/aki/front.svg",
  26571. extra: 452 / 415
  26572. }
  26573. },
  26574. frontNsfw: {
  26575. height: math.unit(1.78, "meters"),
  26576. weight: math.unit(65, "kg"),
  26577. name: "Front (NSFW)",
  26578. image: {
  26579. source: "./media/characters/aki/front-nsfw.svg",
  26580. extra: 452 / 415
  26581. }
  26582. },
  26583. back: {
  26584. height: math.unit(1.78, "meters"),
  26585. weight: math.unit(65, "kg"),
  26586. name: "Back",
  26587. image: {
  26588. source: "./media/characters/aki/back.svg",
  26589. extra: 452 / 415
  26590. }
  26591. },
  26592. rump: {
  26593. height: math.unit(2.05, "feet"),
  26594. name: "Rump",
  26595. image: {
  26596. source: "./media/characters/aki/rump.svg"
  26597. }
  26598. },
  26599. dick: {
  26600. height: math.unit(0.95, "feet"),
  26601. name: "Dick",
  26602. image: {
  26603. source: "./media/characters/aki/dick.svg"
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Micro",
  26610. height: math.unit(15, "cm")
  26611. },
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(178, "cm"),
  26615. default: true
  26616. },
  26617. {
  26618. name: "Macro",
  26619. height: math.unit(214, "m")
  26620. },
  26621. {
  26622. name: "Macro+",
  26623. height: math.unit(534, "m")
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(5 + 5 / 12, "feet"),
  26632. weight: math.unit(120, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/ari/front.svg",
  26636. extra: 1550/1471,
  26637. bottom: 39/1589
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(5 + 5 / 12, "feet")
  26645. },
  26646. {
  26647. name: "Macro",
  26648. height: math.unit(100, "feet"),
  26649. default: true
  26650. },
  26651. {
  26652. name: "Megamacro",
  26653. height: math.unit(100, "miles")
  26654. },
  26655. {
  26656. name: "Gigamacro",
  26657. height: math.unit(80000, "miles")
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26663. {
  26664. side: {
  26665. height: math.unit(9, "feet"),
  26666. weight: math.unit(400, "kg"),
  26667. name: "Side",
  26668. image: {
  26669. source: "./media/characters/bolt/side.svg",
  26670. extra: 1126 / 896,
  26671. bottom: 60 / 1187.3,
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Micro",
  26678. height: math.unit(5, "inches")
  26679. },
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(9, "feet"),
  26683. default: true
  26684. },
  26685. {
  26686. name: "Macro",
  26687. height: math.unit(700, "feet")
  26688. },
  26689. {
  26690. name: "Max Size",
  26691. height: math.unit(1.52e22, "yottameters")
  26692. },
  26693. ]
  26694. ))
  26695. characterMakers.push(() => makeCharacter(
  26696. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26697. {
  26698. front: {
  26699. height: math.unit(4.3, "meters"),
  26700. weight: math.unit(3, "tons"),
  26701. name: "Front",
  26702. image: {
  26703. source: "./media/characters/draekon-sylviar/front.svg",
  26704. extra: 2072/1512,
  26705. bottom: 74/2146
  26706. }
  26707. },
  26708. back: {
  26709. height: math.unit(4.3, "meters"),
  26710. weight: math.unit(3, "tons"),
  26711. name: "Back",
  26712. image: {
  26713. source: "./media/characters/draekon-sylviar/back.svg",
  26714. extra: 1639/1483,
  26715. bottom: 41/1680
  26716. }
  26717. },
  26718. feral: {
  26719. height: math.unit(1.15, "meters"),
  26720. weight: math.unit(3, "tons"),
  26721. name: "Feral",
  26722. image: {
  26723. source: "./media/characters/draekon-sylviar/feral.svg",
  26724. extra: 1033/395,
  26725. bottom: 130/1163
  26726. }
  26727. },
  26728. maw: {
  26729. height: math.unit(1.3, "meters"),
  26730. name: "Maw",
  26731. image: {
  26732. source: "./media/characters/draekon-sylviar/maw.svg"
  26733. }
  26734. },
  26735. mawSeparated: {
  26736. height: math.unit(1.53, "meters"),
  26737. name: "Separated Maw",
  26738. image: {
  26739. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26740. }
  26741. },
  26742. tail: {
  26743. height: math.unit(1.15, "meters"),
  26744. name: "Tail",
  26745. image: {
  26746. source: "./media/characters/draekon-sylviar/tail.svg"
  26747. }
  26748. },
  26749. tailDick: {
  26750. height: math.unit(1.15, "meters"),
  26751. name: "Tail (Dick)",
  26752. image: {
  26753. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26754. }
  26755. },
  26756. tailDickSeparated: {
  26757. height: math.unit(1.19, "meters"),
  26758. name: "Tail (Separated Dick)",
  26759. image: {
  26760. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26761. }
  26762. },
  26763. slit: {
  26764. height: math.unit(1, "meters"),
  26765. name: "Slit",
  26766. image: {
  26767. source: "./media/characters/draekon-sylviar/slit.svg"
  26768. }
  26769. },
  26770. dick: {
  26771. height: math.unit(1.15, "meters"),
  26772. name: "Dick",
  26773. image: {
  26774. source: "./media/characters/draekon-sylviar/dick.svg"
  26775. }
  26776. },
  26777. dickSeparated: {
  26778. height: math.unit(1.1, "meters"),
  26779. name: "Separated Dick",
  26780. image: {
  26781. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26782. }
  26783. },
  26784. sheath: {
  26785. height: math.unit(1.15, "meters"),
  26786. name: "Sheath",
  26787. image: {
  26788. source: "./media/characters/draekon-sylviar/sheath.svg"
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Small",
  26795. height: math.unit(4.53 / 2, "meters"),
  26796. default: true
  26797. },
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(4.53, "meters"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Large",
  26805. height: math.unit(4.53 * 2, "meters"),
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(6 + 2 / 12, "feet"),
  26814. weight: math.unit(180, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/brawler/front.svg",
  26818. extra: 3301 / 3027,
  26819. bottom: 138 / 3439
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(6 + 2 / 12, "feet"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(11, "feet"),
  26836. weight: math.unit(1000, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/alex/front.svg",
  26840. bottom: 44.5 / 620
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Micro",
  26847. height: math.unit(5, "inches")
  26848. },
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(11, "feet"),
  26852. default: true
  26853. },
  26854. {
  26855. name: "Macro",
  26856. height: math.unit(9.5e9, "feet")
  26857. },
  26858. {
  26859. name: "Max Size",
  26860. height: math.unit(1.4e283, "yottameters")
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26866. {
  26867. female: {
  26868. height: math.unit(29.9, "m"),
  26869. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26870. name: "Female",
  26871. image: {
  26872. source: "./media/characters/zenari/female.svg",
  26873. extra: 3281.6 / 3217,
  26874. bottom: 72.2 / 3353
  26875. }
  26876. },
  26877. male: {
  26878. height: math.unit(27.7, "m"),
  26879. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26880. name: "Male",
  26881. image: {
  26882. source: "./media/characters/zenari/male.svg",
  26883. extra: 3008 / 2991,
  26884. bottom: 54.6 / 3069
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Macro",
  26891. height: math.unit(29.7, "meters"),
  26892. default: true
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26898. {
  26899. female: {
  26900. height: math.unit(23.8, "m"),
  26901. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26902. name: "Female",
  26903. image: {
  26904. source: "./media/characters/mactarian/female.svg",
  26905. extra: 2662 / 2569,
  26906. bottom: 73 / 2736
  26907. }
  26908. },
  26909. male: {
  26910. height: math.unit(23.8, "m"),
  26911. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26912. name: "Male",
  26913. image: {
  26914. source: "./media/characters/mactarian/male.svg",
  26915. extra: 2673 / 2600,
  26916. bottom: 76 / 2750
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Macro",
  26923. height: math.unit(23.8, "meters"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26930. {
  26931. female: {
  26932. height: math.unit(19.3, "m"),
  26933. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26934. name: "Female",
  26935. image: {
  26936. source: "./media/characters/umok/female.svg",
  26937. extra: 2186 / 2078,
  26938. bottom: 87 / 2277
  26939. }
  26940. },
  26941. male: {
  26942. height: math.unit(19.5, "m"),
  26943. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26944. name: "Male",
  26945. image: {
  26946. source: "./media/characters/umok/male.svg",
  26947. extra: 2233 / 2140,
  26948. bottom: 24.4 / 2258
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Macro",
  26955. height: math.unit(19.3, "meters"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26962. {
  26963. female: {
  26964. height: math.unit(26.15, "m"),
  26965. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26966. name: "Female",
  26967. image: {
  26968. source: "./media/characters/joraxian/female.svg",
  26969. extra: 2912 / 2824,
  26970. bottom: 36 / 2956
  26971. }
  26972. },
  26973. male: {
  26974. height: math.unit(25.4, "m"),
  26975. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26976. name: "Male",
  26977. image: {
  26978. source: "./media/characters/joraxian/male.svg",
  26979. extra: 2877 / 2721,
  26980. bottom: 82 / 2967
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Macro",
  26987. height: math.unit(26.15, "meters"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26994. {
  26995. female: {
  26996. height: math.unit(21.6, "m"),
  26997. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26998. name: "Female",
  26999. image: {
  27000. source: "./media/characters/sthara/female.svg",
  27001. extra: 2516 / 2347,
  27002. bottom: 21.5 / 2537
  27003. }
  27004. },
  27005. male: {
  27006. height: math.unit(24, "m"),
  27007. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27008. name: "Male",
  27009. image: {
  27010. source: "./media/characters/sthara/male.svg",
  27011. extra: 2732 / 2607,
  27012. bottom: 23 / 2732
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Macro",
  27019. height: math.unit(21.6, "meters"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(6 + 4 / 12, "feet"),
  27029. weight: math.unit(175, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/luka-bryzant/front.svg",
  27033. extra: 311 / 289,
  27034. bottom: 4 / 315
  27035. }
  27036. },
  27037. back: {
  27038. height: math.unit(6 + 4 / 12, "feet"),
  27039. weight: math.unit(175, "lb"),
  27040. name: "Back",
  27041. image: {
  27042. source: "./media/characters/luka-bryzant/back.svg",
  27043. extra: 311 / 289,
  27044. bottom: 3.8 / 313.7
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Micro",
  27051. height: math.unit(10, "inches")
  27052. },
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(6 + 4 / 12, "feet"),
  27056. default: true
  27057. },
  27058. {
  27059. name: "Large",
  27060. height: math.unit(12, "feet")
  27061. },
  27062. ]
  27063. ))
  27064. characterMakers.push(() => makeCharacter(
  27065. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27066. {
  27067. front: {
  27068. height: math.unit(5 + 7 / 12, "feet"),
  27069. weight: math.unit(185, "lb"),
  27070. name: "Front",
  27071. image: {
  27072. source: "./media/characters/aman-aquila/front.svg",
  27073. extra: 1013 / 976,
  27074. bottom: 45.6 / 1057
  27075. }
  27076. },
  27077. side: {
  27078. height: math.unit(5 + 7 / 12, "feet"),
  27079. weight: math.unit(185, "lb"),
  27080. name: "Side",
  27081. image: {
  27082. source: "./media/characters/aman-aquila/side.svg",
  27083. extra: 1054 / 1011,
  27084. bottom: 15 / 1070
  27085. }
  27086. },
  27087. back: {
  27088. height: math.unit(5 + 7 / 12, "feet"),
  27089. weight: math.unit(185, "lb"),
  27090. name: "Back",
  27091. image: {
  27092. source: "./media/characters/aman-aquila/back.svg",
  27093. extra: 1026 / 970,
  27094. bottom: 12 / 1039
  27095. }
  27096. },
  27097. head: {
  27098. height: math.unit(1.211, "feet"),
  27099. name: "Head",
  27100. image: {
  27101. source: "./media/characters/aman-aquila/head.svg",
  27102. }
  27103. },
  27104. },
  27105. [
  27106. {
  27107. name: "Minimicro",
  27108. height: math.unit(0.057, "inches")
  27109. },
  27110. {
  27111. name: "Micro",
  27112. height: math.unit(7, "inches")
  27113. },
  27114. {
  27115. name: "Mini",
  27116. height: math.unit(3 + 7 / 12, "feet")
  27117. },
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(5 + 7 / 12, "feet"),
  27121. default: true
  27122. },
  27123. {
  27124. name: "Macro",
  27125. height: math.unit(157 + 7 / 12, "feet")
  27126. },
  27127. {
  27128. name: "Megamacro",
  27129. height: math.unit(1557 + 7 / 12, "feet")
  27130. },
  27131. {
  27132. name: "Gigamacro",
  27133. height: math.unit(15557 + 7 / 12, "feet")
  27134. },
  27135. ]
  27136. ))
  27137. characterMakers.push(() => makeCharacter(
  27138. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27139. {
  27140. front: {
  27141. height: math.unit(3 + 2 / 12, "inches"),
  27142. weight: math.unit(0.3, "ounces"),
  27143. name: "Front",
  27144. image: {
  27145. source: "./media/characters/hiphae/front.svg",
  27146. extra: 1931 / 1683,
  27147. bottom: 24 / 1955
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Normal",
  27154. height: math.unit(3 + 1 / 2, "inches"),
  27155. default: true
  27156. },
  27157. ]
  27158. ))
  27159. characterMakers.push(() => makeCharacter(
  27160. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27161. {
  27162. front: {
  27163. height: math.unit(5 + 10 / 12, "feet"),
  27164. weight: math.unit(165, "lb"),
  27165. name: "Front",
  27166. image: {
  27167. source: "./media/characters/nicky/front.svg",
  27168. extra: 3144 / 2886,
  27169. bottom: 45.6 / 3192
  27170. }
  27171. },
  27172. back: {
  27173. height: math.unit(5 + 10 / 12, "feet"),
  27174. weight: math.unit(165, "lb"),
  27175. name: "Back",
  27176. image: {
  27177. source: "./media/characters/nicky/back.svg",
  27178. extra: 3055 / 2804,
  27179. bottom: 28.4 / 3087
  27180. }
  27181. },
  27182. frontclothed: {
  27183. height: math.unit(5 + 10 / 12, "feet"),
  27184. weight: math.unit(165, "lb"),
  27185. name: "Front-clothed",
  27186. image: {
  27187. source: "./media/characters/nicky/front-clothed.svg",
  27188. extra: 3184.9 / 2926.9,
  27189. bottom: 86.5 / 3239.9
  27190. }
  27191. },
  27192. foot: {
  27193. height: math.unit(1.16, "feet"),
  27194. name: "Foot",
  27195. image: {
  27196. source: "./media/characters/nicky/foot.svg"
  27197. }
  27198. },
  27199. feet: {
  27200. height: math.unit(1.34, "feet"),
  27201. name: "Feet",
  27202. image: {
  27203. source: "./media/characters/nicky/feet.svg"
  27204. }
  27205. },
  27206. maw: {
  27207. height: math.unit(0.9, "feet"),
  27208. name: "Maw",
  27209. image: {
  27210. source: "./media/characters/nicky/maw.svg"
  27211. }
  27212. },
  27213. },
  27214. [
  27215. {
  27216. name: "Normal",
  27217. height: math.unit(5 + 10 / 12, "feet"),
  27218. default: true
  27219. },
  27220. {
  27221. name: "Macro",
  27222. height: math.unit(60, "feet")
  27223. },
  27224. {
  27225. name: "Megamacro",
  27226. height: math.unit(1, "mile")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27232. {
  27233. side: {
  27234. height: math.unit(10, "feet"),
  27235. weight: math.unit(600, "lb"),
  27236. name: "Side",
  27237. image: {
  27238. source: "./media/characters/blair/side.svg",
  27239. bottom: 16.6 / 475,
  27240. extra: 458 / 431
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Micro",
  27247. height: math.unit(8, "inches")
  27248. },
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(10, "feet"),
  27252. default: true
  27253. },
  27254. {
  27255. name: "Macro",
  27256. height: math.unit(180, "feet")
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(5 + 4 / 12, "feet"),
  27265. weight: math.unit(125, "lb"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/fisher/front.svg",
  27269. extra: 444 / 390,
  27270. bottom: 2 / 444.8
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Micro",
  27277. height: math.unit(4, "inches")
  27278. },
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(5 + 4 / 12, "feet"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Macro",
  27286. height: math.unit(100, "feet")
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(6.71, "feet"),
  27295. weight: math.unit(200, "lb"),
  27296. preyCapacity: math.unit(1000000, "people"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/gliss/front.svg",
  27300. extra: 2347 / 2231,
  27301. bottom: 113 / 2462
  27302. }
  27303. },
  27304. hammerspaceSize: {
  27305. height: math.unit(6.71 * 717, "feet"),
  27306. weight: math.unit(200, "lb"),
  27307. preyCapacity: math.unit(1000000, "people"),
  27308. name: "Hammerspace Size",
  27309. image: {
  27310. source: "./media/characters/gliss/front.svg",
  27311. extra: 2347 / 2231,
  27312. bottom: 113 / 2462
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(6.71, "feet"),
  27320. default: true
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27326. {
  27327. side: {
  27328. height: math.unit(1.44, "m"),
  27329. weight: math.unit(80, "kg"),
  27330. name: "Side",
  27331. image: {
  27332. source: "./media/characters/dune-anderson/side.svg",
  27333. bottom: 49 / 1426
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Wolf-sized",
  27340. height: math.unit(1.44, "meters")
  27341. },
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(5.05, "meters"),
  27345. default: true
  27346. },
  27347. {
  27348. name: "Big",
  27349. height: math.unit(14.4, "meters")
  27350. },
  27351. {
  27352. name: "Huge",
  27353. height: math.unit(144, "meters")
  27354. },
  27355. ]
  27356. ))
  27357. characterMakers.push(() => makeCharacter(
  27358. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27359. {
  27360. front: {
  27361. height: math.unit(7, "feet"),
  27362. weight: math.unit(425, "lb"),
  27363. name: "Front",
  27364. image: {
  27365. source: "./media/characters/hind/front.svg",
  27366. extra: 2091 / 1860,
  27367. bottom: 129 / 2220
  27368. }
  27369. },
  27370. back: {
  27371. height: math.unit(7, "feet"),
  27372. weight: math.unit(425, "lb"),
  27373. name: "Back",
  27374. image: {
  27375. source: "./media/characters/hind/back.svg",
  27376. extra: 2091 / 1860,
  27377. bottom: 24.6 / 2309
  27378. }
  27379. },
  27380. tail: {
  27381. height: math.unit(2.8, "feet"),
  27382. name: "Tail",
  27383. image: {
  27384. source: "./media/characters/hind/tail.svg"
  27385. }
  27386. },
  27387. head: {
  27388. height: math.unit(2.55, "feet"),
  27389. name: "Head",
  27390. image: {
  27391. source: "./media/characters/hind/head.svg"
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "XS",
  27398. height: math.unit(0.7, "feet")
  27399. },
  27400. {
  27401. name: "Normal",
  27402. height: math.unit(7, "feet"),
  27403. default: true
  27404. },
  27405. {
  27406. name: "XL",
  27407. height: math.unit(70, "feet")
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(2.1, "meters"),
  27416. weight: math.unit(150, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/tharquench-sizestealer/front.svg",
  27420. extra: 1605/1470,
  27421. bottom: 36/1641
  27422. }
  27423. },
  27424. frontAlt: {
  27425. height: math.unit(2.1, "meters"),
  27426. weight: math.unit(150, "lb"),
  27427. name: "Front (Alt)",
  27428. image: {
  27429. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27430. extra: 2318 / 2063,
  27431. bottom: 93.4 / 2410
  27432. }
  27433. },
  27434. },
  27435. [
  27436. {
  27437. name: "Nano",
  27438. height: math.unit(1, "mm")
  27439. },
  27440. {
  27441. name: "Micro",
  27442. height: math.unit(1, "cm")
  27443. },
  27444. {
  27445. name: "Normal",
  27446. height: math.unit(2.1, "meters"),
  27447. default: true
  27448. },
  27449. ]
  27450. ))
  27451. characterMakers.push(() => makeCharacter(
  27452. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27453. {
  27454. front: {
  27455. height: math.unit(7 + 5 / 12, "feet"),
  27456. weight: math.unit(357, "lb"),
  27457. name: "Front",
  27458. image: {
  27459. source: "./media/characters/solex-draconov/front.svg",
  27460. extra: 1993 / 1865,
  27461. bottom: 117 / 2111
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Natural Height",
  27468. height: math.unit(7 + 5 / 12, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(350, "feet")
  27474. },
  27475. {
  27476. name: "Macro+",
  27477. height: math.unit(1000, "feet")
  27478. },
  27479. {
  27480. name: "Megamacro",
  27481. height: math.unit(20, "km")
  27482. },
  27483. {
  27484. name: "Megamacro+",
  27485. height: math.unit(1000, "km")
  27486. },
  27487. {
  27488. name: "Gigamacro",
  27489. height: math.unit(2.5, "Gm")
  27490. },
  27491. {
  27492. name: "Teramacro",
  27493. height: math.unit(15, "Tm")
  27494. },
  27495. {
  27496. name: "Galactic",
  27497. height: math.unit(30, "Zm")
  27498. },
  27499. {
  27500. name: "Universal",
  27501. height: math.unit(21000, "Ym")
  27502. },
  27503. {
  27504. name: "Omniversal",
  27505. height: math.unit(9.861e50, "Ym")
  27506. },
  27507. {
  27508. name: "Existential",
  27509. height: math.unit(1e300, "meters")
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27515. {
  27516. side: {
  27517. height: math.unit(25, "feet"),
  27518. weight: math.unit(90000, "lb"),
  27519. name: "Side",
  27520. image: {
  27521. source: "./media/characters/mandarax/side.svg",
  27522. extra: 614 / 332,
  27523. bottom: 55 / 630
  27524. }
  27525. },
  27526. lounging: {
  27527. height: math.unit(15.4, "feet"),
  27528. weight: math.unit(90000, "lb"),
  27529. name: "Lounging",
  27530. image: {
  27531. source: "./media/characters/mandarax/lounging.svg",
  27532. extra: 817/609,
  27533. bottom: 685/1502
  27534. }
  27535. },
  27536. head: {
  27537. height: math.unit(11.4, "feet"),
  27538. name: "Head",
  27539. image: {
  27540. source: "./media/characters/mandarax/head.svg"
  27541. }
  27542. },
  27543. belly: {
  27544. height: math.unit(33, "feet"),
  27545. name: "Belly",
  27546. preyCapacity: math.unit(500, "people"),
  27547. image: {
  27548. source: "./media/characters/mandarax/belly.svg"
  27549. }
  27550. },
  27551. dick: {
  27552. height: math.unit(8.46, "feet"),
  27553. name: "Dick",
  27554. image: {
  27555. source: "./media/characters/mandarax/dick.svg"
  27556. }
  27557. },
  27558. top: {
  27559. height: math.unit(28, "meters"),
  27560. name: "Top",
  27561. image: {
  27562. source: "./media/characters/mandarax/top.svg"
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Normal",
  27569. height: math.unit(25, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(5, "feet"),
  27579. weight: math.unit(90, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/pixil/front.svg",
  27583. extra: 2000 / 1618,
  27584. bottom: 12.3 / 2011
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(5, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Megamacro",
  27596. height: math.unit(10, "miles"),
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(7 + 2 / 12, "feet"),
  27605. weight: math.unit(200, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/angel/front.svg",
  27609. extra: 1830 / 1737,
  27610. bottom: 22.6 / 1854,
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Normal",
  27617. height: math.unit(7 + 2 / 12, "feet"),
  27618. default: true
  27619. },
  27620. {
  27621. name: "Macro",
  27622. height: math.unit(1000, "feet")
  27623. },
  27624. {
  27625. name: "Megamacro",
  27626. height: math.unit(2, "miles")
  27627. },
  27628. {
  27629. name: "Gigamacro",
  27630. height: math.unit(20, "earths")
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(5, "feet"),
  27639. weight: math.unit(180, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/mekana/front.svg",
  27643. extra: 1671 / 1605,
  27644. bottom: 3.5 / 1691
  27645. }
  27646. },
  27647. side: {
  27648. height: math.unit(5, "feet"),
  27649. weight: math.unit(180, "lb"),
  27650. name: "Side",
  27651. image: {
  27652. source: "./media/characters/mekana/side.svg",
  27653. extra: 1671 / 1605,
  27654. bottom: 3.5 / 1691
  27655. }
  27656. },
  27657. back: {
  27658. height: math.unit(5, "feet"),
  27659. weight: math.unit(180, "lb"),
  27660. name: "Back",
  27661. image: {
  27662. source: "./media/characters/mekana/back.svg",
  27663. extra: 1671 / 1605,
  27664. bottom: 3.5 / 1691
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(5, "feet"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(4 + 6 / 12, "feet"),
  27681. weight: math.unit(80, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/pixie/front.svg",
  27685. extra: 1924 / 1825,
  27686. bottom: 22.4 / 1946
  27687. }
  27688. },
  27689. },
  27690. [
  27691. {
  27692. name: "Normal",
  27693. height: math.unit(4 + 6 / 12, "feet"),
  27694. default: true
  27695. },
  27696. {
  27697. name: "Macro",
  27698. height: math.unit(40, "feet")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(2.1, "meters"),
  27707. weight: math.unit(200, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/the-lascivious/front.svg",
  27711. extra: 1 / 0.893,
  27712. bottom: 3.5 / 573.7
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Human Scale",
  27719. height: math.unit(2.1, "meters")
  27720. },
  27721. {
  27722. name: "Wolxi Scale",
  27723. height: math.unit(46.2, "m"),
  27724. default: true
  27725. },
  27726. {
  27727. name: "Boinker of Buildings",
  27728. height: math.unit(10, "km")
  27729. },
  27730. {
  27731. name: "Shagger of Skyscrapers",
  27732. height: math.unit(40, "km")
  27733. },
  27734. {
  27735. name: "Banger of Boroughs",
  27736. height: math.unit(4000, "km")
  27737. },
  27738. {
  27739. name: "Screwer of States",
  27740. height: math.unit(100000, "km")
  27741. },
  27742. {
  27743. name: "Pounder of Planets",
  27744. height: math.unit(2000000, "km")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(6, "feet"),
  27753. weight: math.unit(150, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/aj/front.svg",
  27757. extra: 2039 / 1562,
  27758. bottom: 40 / 2079
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(11 + 6 / 12, "feet"),
  27766. default: true
  27767. },
  27768. {
  27769. name: "Megamacro",
  27770. height: math.unit(60, "megameters")
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27776. {
  27777. side: {
  27778. height: math.unit(31 + 8 / 12, "feet"),
  27779. weight: math.unit(75000, "kg"),
  27780. name: "Side",
  27781. image: {
  27782. source: "./media/characters/koros/side.svg",
  27783. extra: 1442 / 1297,
  27784. bottom: 122.7 / 1562
  27785. }
  27786. },
  27787. dicksKingsCrown: {
  27788. height: math.unit(6, "feet"),
  27789. name: "Dicks (King's Crown)",
  27790. image: {
  27791. source: "./media/characters/koros/dicks-kings-crown.svg"
  27792. }
  27793. },
  27794. dicksTailSet: {
  27795. height: math.unit(3, "feet"),
  27796. name: "Dicks (Tail Set)",
  27797. image: {
  27798. source: "./media/characters/koros/dicks-tail-set.svg"
  27799. }
  27800. },
  27801. dickCumming: {
  27802. height: math.unit(7.98, "feet"),
  27803. name: "Dick (Cumming)",
  27804. image: {
  27805. source: "./media/characters/koros/dick-cumming.svg"
  27806. }
  27807. },
  27808. dicksBack: {
  27809. height: math.unit(5.9, "feet"),
  27810. name: "Dicks (Back)",
  27811. image: {
  27812. source: "./media/characters/koros/dicks-back.svg"
  27813. }
  27814. },
  27815. dicksFront: {
  27816. height: math.unit(3.72, "feet"),
  27817. name: "Dicks (Front)",
  27818. image: {
  27819. source: "./media/characters/koros/dicks-front.svg"
  27820. }
  27821. },
  27822. dicksPeeking: {
  27823. height: math.unit(3.0, "feet"),
  27824. name: "Dicks (Peeking)",
  27825. image: {
  27826. source: "./media/characters/koros/dicks-peeking.svg"
  27827. }
  27828. },
  27829. eye: {
  27830. height: math.unit(1.7, "feet"),
  27831. name: "Eye",
  27832. image: {
  27833. source: "./media/characters/koros/eye.svg"
  27834. }
  27835. },
  27836. headFront: {
  27837. height: math.unit(11.69, "feet"),
  27838. name: "Head (Front)",
  27839. image: {
  27840. source: "./media/characters/koros/head-front.svg"
  27841. }
  27842. },
  27843. headSide: {
  27844. height: math.unit(14, "feet"),
  27845. name: "Head (Side)",
  27846. image: {
  27847. source: "./media/characters/koros/head-side.svg"
  27848. }
  27849. },
  27850. leg: {
  27851. height: math.unit(17, "feet"),
  27852. name: "Leg",
  27853. image: {
  27854. source: "./media/characters/koros/leg.svg"
  27855. }
  27856. },
  27857. mawSide: {
  27858. height: math.unit(12.8, "feet"),
  27859. name: "Maw (Side)",
  27860. image: {
  27861. source: "./media/characters/koros/maw-side.svg"
  27862. }
  27863. },
  27864. mawSpitting: {
  27865. height: math.unit(17, "feet"),
  27866. name: "Maw (Spitting)",
  27867. image: {
  27868. source: "./media/characters/koros/maw-spitting.svg"
  27869. }
  27870. },
  27871. slit: {
  27872. height: math.unit(2.8, "feet"),
  27873. name: "Slit",
  27874. image: {
  27875. source: "./media/characters/koros/slit.svg"
  27876. }
  27877. },
  27878. stomach: {
  27879. height: math.unit(6.8, "feet"),
  27880. preyCapacity: math.unit(20, "people"),
  27881. name: "Stomach",
  27882. image: {
  27883. source: "./media/characters/koros/stomach.svg"
  27884. }
  27885. },
  27886. wingspanBottom: {
  27887. height: math.unit(114, "feet"),
  27888. name: "Wingspan (Bottom)",
  27889. image: {
  27890. source: "./media/characters/koros/wingspan-bottom.svg"
  27891. }
  27892. },
  27893. wingspanTop: {
  27894. height: math.unit(104, "feet"),
  27895. name: "Wingspan (Top)",
  27896. image: {
  27897. source: "./media/characters/koros/wingspan-top.svg"
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(31 + 8 / 12, "feet"),
  27905. default: true
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27911. {
  27912. front: {
  27913. height: math.unit(18 + 5 / 12, "feet"),
  27914. weight: math.unit(3750, "kg"),
  27915. name: "Front",
  27916. image: {
  27917. source: "./media/characters/vexx/front.svg",
  27918. extra: 426 / 396,
  27919. bottom: 31.5 / 458
  27920. }
  27921. },
  27922. maw: {
  27923. height: math.unit(6, "feet"),
  27924. name: "Maw",
  27925. image: {
  27926. source: "./media/characters/vexx/maw.svg"
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(18 + 5 / 12, "feet"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(17 + 6 / 12, "feet"),
  27943. weight: math.unit(150, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/baadra/front.svg",
  27947. extra: 1694/1553,
  27948. bottom: 179/1873
  27949. }
  27950. },
  27951. frontAlt: {
  27952. height: math.unit(17 + 6 / 12, "feet"),
  27953. weight: math.unit(150, "lb"),
  27954. name: "Front (Alt)",
  27955. image: {
  27956. source: "./media/characters/baadra/front-alt.svg",
  27957. extra: 3137 / 2890,
  27958. bottom: 168.4 / 3305
  27959. }
  27960. },
  27961. back: {
  27962. height: math.unit(17 + 6 / 12, "feet"),
  27963. weight: math.unit(150, "lb"),
  27964. name: "Back",
  27965. image: {
  27966. source: "./media/characters/baadra/back.svg",
  27967. extra: 3142 / 2890,
  27968. bottom: 220 / 3371
  27969. }
  27970. },
  27971. head: {
  27972. height: math.unit(5.45, "feet"),
  27973. name: "Head",
  27974. image: {
  27975. source: "./media/characters/baadra/head.svg"
  27976. }
  27977. },
  27978. headAngry: {
  27979. height: math.unit(4.95, "feet"),
  27980. name: "Head (Angry)",
  27981. image: {
  27982. source: "./media/characters/baadra/head-angry.svg"
  27983. }
  27984. },
  27985. headOpen: {
  27986. height: math.unit(6, "feet"),
  27987. name: "Head (Open)",
  27988. image: {
  27989. source: "./media/characters/baadra/head-open.svg"
  27990. }
  27991. },
  27992. },
  27993. [
  27994. {
  27995. name: "Normal",
  27996. height: math.unit(17 + 6 / 12, "feet"),
  27997. default: true
  27998. },
  27999. ]
  28000. ))
  28001. characterMakers.push(() => makeCharacter(
  28002. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28003. {
  28004. front: {
  28005. height: math.unit(7 + 3 / 12, "feet"),
  28006. weight: math.unit(180, "lb"),
  28007. name: "Front",
  28008. image: {
  28009. source: "./media/characters/juri/front.svg",
  28010. extra: 1401 / 1237,
  28011. bottom: 18.5 / 1418
  28012. }
  28013. },
  28014. side: {
  28015. height: math.unit(7 + 3 / 12, "feet"),
  28016. weight: math.unit(180, "lb"),
  28017. name: "Side",
  28018. image: {
  28019. source: "./media/characters/juri/side.svg",
  28020. extra: 1424 / 1242,
  28021. bottom: 18.5 / 1447
  28022. }
  28023. },
  28024. sitting: {
  28025. height: math.unit(6, "feet"),
  28026. weight: math.unit(180, "lb"),
  28027. name: "Sitting",
  28028. image: {
  28029. source: "./media/characters/juri/sitting.svg",
  28030. extra: 1270 / 1143,
  28031. bottom: 100 / 1343
  28032. }
  28033. },
  28034. back: {
  28035. height: math.unit(7 + 3 / 12, "feet"),
  28036. weight: math.unit(180, "lb"),
  28037. name: "Back",
  28038. image: {
  28039. source: "./media/characters/juri/back.svg",
  28040. extra: 1377 / 1240,
  28041. bottom: 23.7 / 1405
  28042. }
  28043. },
  28044. maw: {
  28045. height: math.unit(2.8, "feet"),
  28046. name: "Maw",
  28047. image: {
  28048. source: "./media/characters/juri/maw.svg"
  28049. }
  28050. },
  28051. stomach: {
  28052. height: math.unit(0.89, "feet"),
  28053. preyCapacity: math.unit(4, "liters"),
  28054. name: "Stomach",
  28055. image: {
  28056. source: "./media/characters/juri/stomach.svg"
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(7 + 3 / 12, "feet"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28070. {
  28071. fox: {
  28072. height: math.unit(5 + 6 / 12, "feet"),
  28073. weight: math.unit(140, "lb"),
  28074. name: "Fox",
  28075. image: {
  28076. source: "./media/characters/maxene-sita/fox.svg",
  28077. extra: 146 / 138,
  28078. bottom: 2.1 / 148.19
  28079. }
  28080. },
  28081. foxLaying: {
  28082. height: math.unit(1.70, "feet"),
  28083. weight: math.unit(140, "lb"),
  28084. name: "Fox (Laying)",
  28085. image: {
  28086. source: "./media/characters/maxene-sita/fox-laying.svg",
  28087. extra: 910 / 572,
  28088. bottom: 71 / 981
  28089. }
  28090. },
  28091. kitsune: {
  28092. height: math.unit(10, "feet"),
  28093. weight: math.unit(800, "lb"),
  28094. name: "Kitsune",
  28095. image: {
  28096. source: "./media/characters/maxene-sita/kitsune.svg",
  28097. extra: 185 / 176,
  28098. bottom: 4.7 / 189.9
  28099. }
  28100. },
  28101. hellhound: {
  28102. height: math.unit(10, "feet"),
  28103. weight: math.unit(700, "lb"),
  28104. name: "Hellhound",
  28105. image: {
  28106. source: "./media/characters/maxene-sita/hellhound.svg",
  28107. extra: 1600 / 1545,
  28108. bottom: 81 / 1681
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(5 + 6 / 12, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28122. {
  28123. front: {
  28124. height: math.unit(3 + 4 / 12, "feet"),
  28125. weight: math.unit(70, "lb"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/maia/front.svg",
  28129. extra: 227 / 219.5,
  28130. bottom: 40 / 267
  28131. }
  28132. },
  28133. back: {
  28134. height: math.unit(3 + 4 / 12, "feet"),
  28135. weight: math.unit(70, "lb"),
  28136. name: "Back",
  28137. image: {
  28138. source: "./media/characters/maia/back.svg",
  28139. extra: 237 / 225
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(3 + 4 / 12, "feet"),
  28147. default: true
  28148. },
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28153. {
  28154. front: {
  28155. height: math.unit(5 + 10 / 12, "feet"),
  28156. weight: math.unit(197, "lb"),
  28157. name: "Front",
  28158. image: {
  28159. source: "./media/characters/jabaro/front.svg",
  28160. extra: 225 / 216,
  28161. bottom: 5.06 / 230
  28162. }
  28163. },
  28164. back: {
  28165. height: math.unit(5 + 10 / 12, "feet"),
  28166. weight: math.unit(197, "lb"),
  28167. name: "Back",
  28168. image: {
  28169. source: "./media/characters/jabaro/back.svg",
  28170. extra: 225 / 219,
  28171. bottom: 1.9 / 227
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(5 + 10 / 12, "feet"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(5 + 8 / 12, "feet"),
  28188. weight: math.unit(139, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/risa/front.svg",
  28192. extra: 270 / 260,
  28193. bottom: 11.2 / 282
  28194. }
  28195. },
  28196. back: {
  28197. height: math.unit(5 + 8 / 12, "feet"),
  28198. weight: math.unit(139, "lb"),
  28199. name: "Back",
  28200. image: {
  28201. source: "./media/characters/risa/back.svg",
  28202. extra: 264 / 255,
  28203. bottom: 4 / 268
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Normal",
  28210. height: math.unit(5 + 8 / 12, "feet"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(2 + 11 / 12, "feet"),
  28220. weight: math.unit(30, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/weatley/front.svg",
  28224. bottom: 10.7 / 414,
  28225. extra: 403.5 / 362
  28226. }
  28227. },
  28228. back: {
  28229. height: math.unit(2 + 11 / 12, "feet"),
  28230. weight: math.unit(30, "lb"),
  28231. name: "Back",
  28232. image: {
  28233. source: "./media/characters/weatley/back.svg",
  28234. bottom: 10.7 / 414,
  28235. extra: 403.5 / 362
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Normal",
  28242. height: math.unit(2 + 11 / 12, "feet"),
  28243. default: true
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(5 + 2 / 12, "feet"),
  28252. weight: math.unit(50, "kg"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/mercury-crescent/front.svg",
  28256. extra: 1088 / 1033,
  28257. bottom: 18.9 / 1109
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(5 + 2 / 12, "feet"),
  28265. default: true
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(2, "feet"),
  28274. weight: math.unit(15, "kg"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/diamond-jones/front.svg",
  28278. extra: 727/723,
  28279. bottom: 46/773
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(2, "feet"),
  28287. default: true
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(3, "feet"),
  28296. weight: math.unit(30, "kg"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/sweet-bit/front.svg",
  28300. extra: 675 / 567,
  28301. bottom: 27.7 / 703
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(3, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28315. {
  28316. side: {
  28317. height: math.unit(9.178, "feet"),
  28318. weight: math.unit(500, "lb"),
  28319. name: "Side",
  28320. image: {
  28321. source: "./media/characters/umbrazen/side.svg",
  28322. extra: 1730 / 1473,
  28323. bottom: 34.6 / 1765
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(9.178, "feet"),
  28331. default: true
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(10, "feet"),
  28340. weight: math.unit(750, "lb"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/arlist/front.svg",
  28344. extra: 961 / 778,
  28345. bottom: 6.2 / 986
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(10, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(5 + 1 / 12, "feet"),
  28362. weight: math.unit(110, "lb"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/aradel/front.svg",
  28366. extra: 324 / 303,
  28367. bottom: 3.6 / 329.4
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(5 + 1 / 12, "feet"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28381. {
  28382. dressed: {
  28383. height: math.unit(3 + 8 / 12, "feet"),
  28384. weight: math.unit(50, "lb"),
  28385. name: "Dressed",
  28386. image: {
  28387. source: "./media/characters/serryn/dressed.svg",
  28388. extra: 1792 / 1656,
  28389. bottom: 43.5 / 1840
  28390. }
  28391. },
  28392. nude: {
  28393. height: math.unit(3 + 8 / 12, "feet"),
  28394. weight: math.unit(50, "lb"),
  28395. name: "Nude",
  28396. image: {
  28397. source: "./media/characters/serryn/nude.svg",
  28398. extra: 1792 / 1656,
  28399. bottom: 43.5 / 1840
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(3 + 8 / 12, "feet"),
  28407. default: true
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28413. {
  28414. front: {
  28415. height: math.unit(7 + 10 / 12, "feet"),
  28416. weight: math.unit(255, "lb"),
  28417. name: "Front",
  28418. image: {
  28419. source: "./media/characters/xavier-thyme/front.svg",
  28420. extra: 3733 / 3642,
  28421. bottom: 131 / 3869
  28422. }
  28423. },
  28424. frontRaven: {
  28425. height: math.unit(7 + 10 / 12, "feet"),
  28426. weight: math.unit(255, "lb"),
  28427. name: "Front (Raven)",
  28428. image: {
  28429. source: "./media/characters/xavier-thyme/front-raven.svg",
  28430. extra: 4385 / 3642,
  28431. bottom: 131 / 4517
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(7 + 10 / 12, "feet"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28445. {
  28446. front: {
  28447. height: math.unit(1.6, "m"),
  28448. weight: math.unit(50, "kg"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/kiki/front.svg",
  28452. extra: 4682 / 3610,
  28453. bottom: 115 / 4777
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Normal",
  28460. height: math.unit(1.6, "meters"),
  28461. default: true
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(50, "m"),
  28470. weight: math.unit(500, "tonnes"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/ryoko/front.svg",
  28474. extra: 4632 / 3926,
  28475. bottom: 193 / 4823
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(50, "meters"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(30, "m"),
  28492. weight: math.unit(22, "tonnes"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/elio/front.svg",
  28496. extra: 4582 / 3720,
  28497. bottom: 236 / 4828
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(30, "meters"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28511. {
  28512. front: {
  28513. height: math.unit(6 + 3 / 12, "feet"),
  28514. weight: math.unit(120, "lb"),
  28515. name: "Front",
  28516. image: {
  28517. source: "./media/characters/azura/front.svg",
  28518. extra: 1149 / 1135,
  28519. bottom: 45 / 1194
  28520. }
  28521. },
  28522. frontClothed: {
  28523. height: math.unit(6 + 3 / 12, "feet"),
  28524. weight: math.unit(120, "lb"),
  28525. name: "Front (Clothed)",
  28526. image: {
  28527. source: "./media/characters/azura/front-clothed.svg",
  28528. extra: 1149 / 1135,
  28529. bottom: 45 / 1194
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(6 + 3 / 12, "feet"),
  28537. default: true
  28538. },
  28539. {
  28540. name: "Macro",
  28541. height: math.unit(20 + 6 / 12, "feet")
  28542. },
  28543. {
  28544. name: "Megamacro",
  28545. height: math.unit(12, "miles")
  28546. },
  28547. {
  28548. name: "Gigamacro",
  28549. height: math.unit(10000, "miles")
  28550. },
  28551. {
  28552. name: "Teramacro",
  28553. height: math.unit(900000, "miles")
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28559. {
  28560. front: {
  28561. height: math.unit(12, "feet"),
  28562. weight: math.unit(1, "ton"),
  28563. capacity: math.unit(660000, "gallons"),
  28564. name: "Front",
  28565. image: {
  28566. source: "./media/characters/zeus/front.svg",
  28567. extra: 5005 / 4717,
  28568. bottom: 363 / 5388
  28569. }
  28570. },
  28571. },
  28572. [
  28573. {
  28574. name: "Normal",
  28575. height: math.unit(12, "feet")
  28576. },
  28577. {
  28578. name: "Preferred Size",
  28579. height: math.unit(0.5, "miles"),
  28580. default: true
  28581. },
  28582. {
  28583. name: "Giga Horse",
  28584. height: math.unit(300, "miles")
  28585. },
  28586. {
  28587. name: "Riding Planets",
  28588. height: math.unit(30, "megameters")
  28589. },
  28590. {
  28591. name: "Cosmic Giant",
  28592. height: math.unit(3, "zettameters")
  28593. },
  28594. {
  28595. name: "Breeding God",
  28596. height: math.unit(9.92e22, "yottameters")
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28602. {
  28603. side: {
  28604. height: math.unit(9, "feet"),
  28605. weight: math.unit(1500, "kg"),
  28606. name: "Side",
  28607. image: {
  28608. source: "./media/characters/fang/side.svg",
  28609. extra: 924 / 866,
  28610. bottom: 47.5 / 972.3
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Normal",
  28617. height: math.unit(9, "feet"),
  28618. default: true
  28619. },
  28620. {
  28621. name: "Macro",
  28622. height: math.unit(75 + 6 / 12, "feet")
  28623. },
  28624. {
  28625. name: "Teramacro",
  28626. height: math.unit(50000, "miles")
  28627. },
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(10, "feet"),
  28635. weight: math.unit(2, "tons"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/rekhit/front.svg",
  28639. extra: 2796 / 2590,
  28640. bottom: 225 / 3022
  28641. }
  28642. },
  28643. },
  28644. [
  28645. {
  28646. name: "Normal",
  28647. height: math.unit(10, "feet"),
  28648. default: true
  28649. },
  28650. {
  28651. name: "Macro",
  28652. height: math.unit(500, "feet")
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28658. {
  28659. front: {
  28660. height: math.unit(7 + 6.451 / 12, "feet"),
  28661. weight: math.unit(310, "lb"),
  28662. name: "Front",
  28663. image: {
  28664. source: "./media/characters/dahlia-verrick/front.svg",
  28665. extra: 1488 / 1365,
  28666. bottom: 6.2 / 1495
  28667. }
  28668. },
  28669. back: {
  28670. height: math.unit(7 + 6.451 / 12, "feet"),
  28671. weight: math.unit(310, "lb"),
  28672. name: "Back",
  28673. image: {
  28674. source: "./media/characters/dahlia-verrick/back.svg",
  28675. extra: 1472 / 1351,
  28676. bottom: 5.28 / 1477
  28677. }
  28678. },
  28679. frontBusiness: {
  28680. height: math.unit(7 + 6.451 / 12, "feet"),
  28681. weight: math.unit(200, "lb"),
  28682. name: "Front (Business)",
  28683. image: {
  28684. source: "./media/characters/dahlia-verrick/front-business.svg",
  28685. extra: 1478 / 1381,
  28686. bottom: 5.5 / 1484
  28687. }
  28688. },
  28689. frontCasual: {
  28690. height: math.unit(7 + 6.451 / 12, "feet"),
  28691. weight: math.unit(200, "lb"),
  28692. name: "Front (Casual)",
  28693. image: {
  28694. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28695. extra: 1478 / 1381,
  28696. bottom: 5.5 / 1484
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Travel-Sized",
  28703. height: math.unit(7.45, "inches")
  28704. },
  28705. {
  28706. name: "Normal",
  28707. height: math.unit(7 + 6.451 / 12, "feet"),
  28708. default: true
  28709. },
  28710. {
  28711. name: "Hitting the Town",
  28712. height: math.unit(37 + 8 / 12, "feet")
  28713. },
  28714. {
  28715. name: "Stomp in the Suburbs",
  28716. height: math.unit(964 + 9.728 / 12, "feet")
  28717. },
  28718. {
  28719. name: "Sit on the City",
  28720. height: math.unit(61747 + 10.592 / 12, "feet")
  28721. },
  28722. {
  28723. name: "Glomp the Globe",
  28724. height: math.unit(252919327 + 4.832 / 12, "feet")
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(6 + 4 / 12, "feet"),
  28733. weight: math.unit(320, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/balina-mahigan/front.svg",
  28737. extra: 447 / 428,
  28738. bottom: 18 / 466
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(6 + 4 / 12, "feet"),
  28743. weight: math.unit(320, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/balina-mahigan/back.svg",
  28747. extra: 445 / 428,
  28748. bottom: 4.07 / 448
  28749. }
  28750. },
  28751. arm: {
  28752. height: math.unit(1.88, "feet"),
  28753. name: "Arm",
  28754. image: {
  28755. source: "./media/characters/balina-mahigan/arm.svg"
  28756. }
  28757. },
  28758. backPort: {
  28759. height: math.unit(0.685, "feet"),
  28760. name: "Back Port",
  28761. image: {
  28762. source: "./media/characters/balina-mahigan/back-port.svg"
  28763. }
  28764. },
  28765. hoofpaw: {
  28766. height: math.unit(1.41, "feet"),
  28767. name: "Hoofpaw",
  28768. image: {
  28769. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28770. }
  28771. },
  28772. leftHandBack: {
  28773. height: math.unit(0.938, "feet"),
  28774. name: "Left Hand (Back)",
  28775. image: {
  28776. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28777. }
  28778. },
  28779. leftHandFront: {
  28780. height: math.unit(0.938, "feet"),
  28781. name: "Left Hand (Front)",
  28782. image: {
  28783. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28784. }
  28785. },
  28786. rightHandBack: {
  28787. height: math.unit(0.95, "feet"),
  28788. name: "Right Hand (Back)",
  28789. image: {
  28790. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28791. }
  28792. },
  28793. rightHandFront: {
  28794. height: math.unit(0.95, "feet"),
  28795. name: "Right Hand (Front)",
  28796. image: {
  28797. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(6 + 4 / 12, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(320, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/balina-mejeri/front.svg",
  28818. extra: 517 / 488,
  28819. bottom: 44.2 / 561
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(6 + 4 / 12, "feet")
  28827. },
  28828. {
  28829. name: "Business",
  28830. height: math.unit(155, "feet"),
  28831. default: true
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28837. {
  28838. kneeling: {
  28839. height: math.unit(6 + 4 / 12, "feet"),
  28840. weight: math.unit(300 * 20, "lb"),
  28841. name: "Kneeling",
  28842. image: {
  28843. source: "./media/characters/balbarian/kneeling.svg",
  28844. extra: 922 / 862,
  28845. bottom: 42.4 / 965
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(6 + 4 / 12, "feet")
  28853. },
  28854. {
  28855. name: "Treasured",
  28856. height: math.unit(18 + 9 / 12, "feet"),
  28857. default: true
  28858. },
  28859. {
  28860. name: "Macro",
  28861. height: math.unit(900, "feet")
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(6 + 4 / 12, "feet"),
  28870. weight: math.unit(325, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/balina-amarini/front.svg",
  28874. extra: 415 / 403,
  28875. bottom: 19 / 433.4
  28876. }
  28877. },
  28878. back: {
  28879. height: math.unit(6 + 4 / 12, "feet"),
  28880. weight: math.unit(325, "lb"),
  28881. name: "Back",
  28882. image: {
  28883. source: "./media/characters/balina-amarini/back.svg",
  28884. extra: 415 / 403,
  28885. bottom: 13.5 / 432
  28886. }
  28887. },
  28888. overdrive: {
  28889. height: math.unit(6 + 4 / 12, "feet"),
  28890. weight: math.unit(400, "lb"),
  28891. name: "Overdrive",
  28892. image: {
  28893. source: "./media/characters/balina-amarini/overdrive.svg",
  28894. extra: 269 / 259,
  28895. bottom: 12 / 282
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Boom",
  28902. height: math.unit(9 + 10 / 12, "feet"),
  28903. default: true
  28904. },
  28905. {
  28906. name: "Macro",
  28907. height: math.unit(280, "feet")
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28913. {
  28914. goddess: {
  28915. height: math.unit(600, "feet"),
  28916. weight: math.unit(2000000, "tons"),
  28917. name: "Goddess",
  28918. image: {
  28919. source: "./media/characters/lady-kubwa/goddess.svg",
  28920. extra: 1240.5 / 1223,
  28921. bottom: 22 / 1263
  28922. }
  28923. },
  28924. goddesser: {
  28925. height: math.unit(900, "feet"),
  28926. weight: math.unit(20000000, "lb"),
  28927. name: "Goddess-er",
  28928. image: {
  28929. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28930. extra: 899 / 888,
  28931. bottom: 12.6 / 912
  28932. }
  28933. },
  28934. },
  28935. [
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(600, "feet"),
  28939. default: true
  28940. },
  28941. {
  28942. name: "Megamacro",
  28943. height: math.unit(250, "miles")
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28949. {
  28950. front: {
  28951. height: math.unit(7 + 7 / 12, "feet"),
  28952. weight: math.unit(250, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/tala-grovehorn/front.svg",
  28956. extra: 2636 / 2525,
  28957. bottom: 147 / 2781
  28958. }
  28959. },
  28960. back: {
  28961. height: math.unit(7 + 7 / 12, "feet"),
  28962. weight: math.unit(250, "lb"),
  28963. name: "Back",
  28964. image: {
  28965. source: "./media/characters/tala-grovehorn/back.svg",
  28966. extra: 2635 / 2539,
  28967. bottom: 100 / 2732.8
  28968. }
  28969. },
  28970. mouth: {
  28971. height: math.unit(1.15, "feet"),
  28972. name: "Mouth",
  28973. image: {
  28974. source: "./media/characters/tala-grovehorn/mouth.svg"
  28975. }
  28976. },
  28977. dick: {
  28978. height: math.unit(2.36, "feet"),
  28979. name: "Dick",
  28980. image: {
  28981. source: "./media/characters/tala-grovehorn/dick.svg"
  28982. }
  28983. },
  28984. slit: {
  28985. height: math.unit(0.61, "feet"),
  28986. name: "Slit",
  28987. image: {
  28988. source: "./media/characters/tala-grovehorn/slit.svg"
  28989. }
  28990. },
  28991. },
  28992. [
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(7 + 7 / 12, "feet"),
  29000. weight: math.unit(225, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/epona/front.svg",
  29004. extra: 2445 / 2290,
  29005. bottom: 251 / 2696
  29006. }
  29007. },
  29008. back: {
  29009. height: math.unit(7 + 7 / 12, "feet"),
  29010. weight: math.unit(225, "lb"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/epona/back.svg",
  29014. extra: 2546 / 2408,
  29015. bottom: 44 / 2589
  29016. }
  29017. },
  29018. genitals: {
  29019. height: math.unit(1.5, "feet"),
  29020. name: "Genitals",
  29021. image: {
  29022. source: "./media/characters/epona/genitals.svg"
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(7 + 7 / 12, "feet"),
  29030. default: true
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29036. {
  29037. front: {
  29038. height: math.unit(7, "feet"),
  29039. weight: math.unit(518, "lb"),
  29040. name: "Front",
  29041. image: {
  29042. source: "./media/characters/avia-bloodbourn/front.svg",
  29043. extra: 1466 / 1350,
  29044. bottom: 65 / 1527
  29045. }
  29046. },
  29047. },
  29048. [
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(9.35, "feet"),
  29056. weight: math.unit(600, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/amera/front.svg",
  29060. extra: 891 / 818,
  29061. bottom: 30 / 922.7
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(9.35, "feet"),
  29066. weight: math.unit(600, "lb"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/amera/back.svg",
  29070. extra: 876 / 824,
  29071. bottom: 6.8 / 884
  29072. }
  29073. },
  29074. dick: {
  29075. height: math.unit(2.14, "feet"),
  29076. name: "Dick",
  29077. image: {
  29078. source: "./media/characters/amera/dick.svg"
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(9.35, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29092. {
  29093. kneeling: {
  29094. height: math.unit(3 + 4 / 12, "feet"),
  29095. weight: math.unit(90, "lb"),
  29096. name: "Kneeling",
  29097. image: {
  29098. source: "./media/characters/rosewen/kneeling.svg",
  29099. extra: 1835 / 1571,
  29100. bottom: 27.7 / 1862
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(3 + 4 / 12, "feet"),
  29108. default: true
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(5 + 10 / 12, "feet"),
  29117. weight: math.unit(200, "lb"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/sabah/front.svg",
  29121. extra: 849 / 763,
  29122. bottom: 33.9 / 881
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(5 + 10 / 12, "feet"),
  29130. default: true
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29136. {
  29137. front: {
  29138. height: math.unit(3 + 5 / 12, "feet"),
  29139. weight: math.unit(40, "kg"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/purple-flame/front.svg",
  29143. extra: 1577 / 1412,
  29144. bottom: 97 / 1694
  29145. }
  29146. },
  29147. frontDressed: {
  29148. height: math.unit(3 + 5 / 12, "feet"),
  29149. weight: math.unit(40, "kg"),
  29150. name: "Front (Dressed)",
  29151. image: {
  29152. source: "./media/characters/purple-flame/front-dressed.svg",
  29153. extra: 1577 / 1412,
  29154. bottom: 97 / 1694
  29155. }
  29156. },
  29157. headphones: {
  29158. height: math.unit(0.85, "feet"),
  29159. name: "Headphones",
  29160. image: {
  29161. source: "./media/characters/purple-flame/headphones.svg"
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Really Small",
  29168. height: math.unit(5, "cm")
  29169. },
  29170. {
  29171. name: "Micro",
  29172. height: math.unit(1 + 5 / 12, "feet")
  29173. },
  29174. {
  29175. name: "Normal",
  29176. height: math.unit(3 + 5 / 12, "feet"),
  29177. default: true
  29178. },
  29179. {
  29180. name: "Minimacro",
  29181. height: math.unit(125, "feet")
  29182. },
  29183. {
  29184. name: "Macro",
  29185. height: math.unit(0.5, "miles")
  29186. },
  29187. {
  29188. name: "Megamacro",
  29189. height: math.unit(50, "miles")
  29190. },
  29191. {
  29192. name: "Gigantic",
  29193. height: math.unit(750, "miles")
  29194. },
  29195. {
  29196. name: "Planetary",
  29197. height: math.unit(15000, "miles")
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29203. {
  29204. front: {
  29205. height: math.unit(14, "feet"),
  29206. weight: math.unit(959, "lb"),
  29207. name: "Front",
  29208. image: {
  29209. source: "./media/characters/arsenal/front.svg",
  29210. extra: 2357 / 2157,
  29211. bottom: 93 / 2458
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Normal",
  29218. height: math.unit(14, "feet"),
  29219. default: true
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29225. {
  29226. front: {
  29227. height: math.unit(6, "feet"),
  29228. weight: math.unit(150, "lb"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/adira/front.svg",
  29232. extra: 1078 / 1029,
  29233. bottom: 87 / 1166
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Micro",
  29240. height: math.unit(4, "inches"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(50, "feet")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(16, "feet"),
  29254. weight: math.unit(1000, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/grim/front.svg",
  29258. extra: 622 / 614,
  29259. bottom: 18.1 / 642
  29260. }
  29261. },
  29262. back: {
  29263. height: math.unit(16, "feet"),
  29264. weight: math.unit(1000, "lb"),
  29265. name: "Back",
  29266. image: {
  29267. source: "./media/characters/grim/back.svg",
  29268. extra: 610.6 / 602,
  29269. bottom: 40.8 / 652
  29270. }
  29271. },
  29272. hunched: {
  29273. height: math.unit(9.75, "feet"),
  29274. weight: math.unit(1000, "lb"),
  29275. name: "Hunched",
  29276. image: {
  29277. source: "./media/characters/grim/hunched.svg",
  29278. extra: 304 / 297,
  29279. bottom: 35.4 / 394
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(16, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(2.3, "meters"),
  29296. weight: math.unit(300, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/sinja/front-sfw.svg",
  29300. extra: 1393 / 1294,
  29301. bottom: 70 / 1463
  29302. }
  29303. },
  29304. frontNsfw: {
  29305. height: math.unit(2.3, "meters"),
  29306. weight: math.unit(300, "lb"),
  29307. name: "Front (NSFW)",
  29308. image: {
  29309. source: "./media/characters/sinja/front-nsfw.svg",
  29310. extra: 1393 / 1294,
  29311. bottom: 70 / 1463
  29312. }
  29313. },
  29314. back: {
  29315. height: math.unit(2.3, "meters"),
  29316. weight: math.unit(300, "lb"),
  29317. name: "Back",
  29318. image: {
  29319. source: "./media/characters/sinja/back.svg",
  29320. extra: 1393 / 1294,
  29321. bottom: 70 / 1463
  29322. }
  29323. },
  29324. head: {
  29325. height: math.unit(1.771, "feet"),
  29326. name: "Head",
  29327. image: {
  29328. source: "./media/characters/sinja/head.svg"
  29329. }
  29330. },
  29331. slit: {
  29332. height: math.unit(0.8, "feet"),
  29333. name: "Slit",
  29334. image: {
  29335. source: "./media/characters/sinja/slit.svg"
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Normal",
  29342. height: math.unit(2.3, "meters")
  29343. },
  29344. {
  29345. name: "Macro",
  29346. height: math.unit(91, "meters"),
  29347. default: true
  29348. },
  29349. {
  29350. name: "Megamacro",
  29351. height: math.unit(91440, "meters")
  29352. },
  29353. {
  29354. name: "Gigamacro",
  29355. height: math.unit(60960000, "meters")
  29356. },
  29357. {
  29358. name: "Teramacro",
  29359. height: math.unit(9144000000, "meters")
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29365. {
  29366. front: {
  29367. height: math.unit(1.7, "meters"),
  29368. weight: math.unit(130, "lb"),
  29369. name: "Front",
  29370. image: {
  29371. source: "./media/characters/kyu/front.svg",
  29372. extra: 415 / 395,
  29373. bottom: 5 / 420
  29374. }
  29375. },
  29376. head: {
  29377. height: math.unit(1.75, "feet"),
  29378. name: "Head",
  29379. image: {
  29380. source: "./media/characters/kyu/head.svg"
  29381. }
  29382. },
  29383. foot: {
  29384. height: math.unit(0.81, "feet"),
  29385. name: "Foot",
  29386. image: {
  29387. source: "./media/characters/kyu/foot.svg"
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Normal",
  29394. height: math.unit(1.7, "meters")
  29395. },
  29396. {
  29397. name: "Macro",
  29398. height: math.unit(131, "feet"),
  29399. default: true
  29400. },
  29401. {
  29402. name: "Megamacro",
  29403. height: math.unit(91440, "meters")
  29404. },
  29405. {
  29406. name: "Gigamacro",
  29407. height: math.unit(60960000, "meters")
  29408. },
  29409. {
  29410. name: "Teramacro",
  29411. height: math.unit(9144000000, "meters")
  29412. },
  29413. ]
  29414. ))
  29415. characterMakers.push(() => makeCharacter(
  29416. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29417. {
  29418. front: {
  29419. height: math.unit(7 + 1 / 12, "feet"),
  29420. weight: math.unit(250, "lb"),
  29421. name: "Front",
  29422. image: {
  29423. source: "./media/characters/joey/front.svg",
  29424. extra: 1791 / 1537,
  29425. bottom: 28 / 1816
  29426. }
  29427. },
  29428. },
  29429. [
  29430. {
  29431. name: "Micro",
  29432. height: math.unit(3, "inches")
  29433. },
  29434. {
  29435. name: "Normal",
  29436. height: math.unit(7 + 1 / 12, "feet"),
  29437. default: true
  29438. },
  29439. ]
  29440. ))
  29441. characterMakers.push(() => makeCharacter(
  29442. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29443. {
  29444. front: {
  29445. height: math.unit(165, "cm"),
  29446. weight: math.unit(140, "lb"),
  29447. name: "Front",
  29448. image: {
  29449. source: "./media/characters/sam-evans/front.svg",
  29450. extra: 3417 / 3230,
  29451. bottom: 41.3 / 3417
  29452. }
  29453. },
  29454. frontSixTails: {
  29455. height: math.unit(165, "cm"),
  29456. weight: math.unit(140, "lb"),
  29457. name: "Front-six-tails",
  29458. image: {
  29459. source: "./media/characters/sam-evans/front-six-tails.svg",
  29460. extra: 3417 / 3230,
  29461. bottom: 41.3 / 3417
  29462. }
  29463. },
  29464. back: {
  29465. height: math.unit(165, "cm"),
  29466. weight: math.unit(140, "lb"),
  29467. name: "Back",
  29468. image: {
  29469. source: "./media/characters/sam-evans/back.svg",
  29470. extra: 3227 / 3032,
  29471. bottom: 6.8 / 3234
  29472. }
  29473. },
  29474. face: {
  29475. height: math.unit(0.68, "feet"),
  29476. name: "Face",
  29477. image: {
  29478. source: "./media/characters/sam-evans/face.svg"
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(165, "cm"),
  29486. default: true
  29487. },
  29488. {
  29489. name: "Macro",
  29490. height: math.unit(100, "meters")
  29491. },
  29492. {
  29493. name: "Macro+",
  29494. height: math.unit(800, "meters")
  29495. },
  29496. {
  29497. name: "Macro++",
  29498. height: math.unit(3, "km")
  29499. },
  29500. {
  29501. name: "Macro+++",
  29502. height: math.unit(30, "km")
  29503. },
  29504. ]
  29505. ))
  29506. characterMakers.push(() => makeCharacter(
  29507. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29508. {
  29509. front: {
  29510. height: math.unit(10, "feet"),
  29511. weight: math.unit(750, "lb"),
  29512. name: "Front",
  29513. image: {
  29514. source: "./media/characters/juliet-a/front.svg",
  29515. extra: 1766 / 1720,
  29516. bottom: 43 / 1809
  29517. }
  29518. },
  29519. back: {
  29520. height: math.unit(10, "feet"),
  29521. weight: math.unit(750, "lb"),
  29522. name: "Back",
  29523. image: {
  29524. source: "./media/characters/juliet-a/back.svg",
  29525. extra: 1781 / 1734,
  29526. bottom: 35 / 1810,
  29527. }
  29528. },
  29529. },
  29530. [
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(10, "feet"),
  29534. default: true
  29535. },
  29536. {
  29537. name: "Dragon Form",
  29538. height: math.unit(250, "feet")
  29539. },
  29540. {
  29541. name: "Macro",
  29542. height: math.unit(1000, "feet")
  29543. },
  29544. {
  29545. name: "Megamacro",
  29546. height: math.unit(10000, "feet")
  29547. }
  29548. ]
  29549. ))
  29550. characterMakers.push(() => makeCharacter(
  29551. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29552. {
  29553. regular: {
  29554. height: math.unit(7 + 3 / 12, "feet"),
  29555. weight: math.unit(260, "lb"),
  29556. name: "Regular",
  29557. image: {
  29558. source: "./media/characters/wild/regular.svg",
  29559. extra: 97.45 / 92,
  29560. bottom: 6.8 / 104.3
  29561. }
  29562. },
  29563. biggums: {
  29564. height: math.unit(8 + 6 / 12, "feet"),
  29565. weight: math.unit(425, "lb"),
  29566. name: "Biggums",
  29567. image: {
  29568. source: "./media/characters/wild/biggums.svg",
  29569. extra: 97.45 / 92,
  29570. bottom: 7.5 / 132.34
  29571. }
  29572. },
  29573. mawRegular: {
  29574. height: math.unit(1.24, "feet"),
  29575. name: "Maw (Regular)",
  29576. image: {
  29577. source: "./media/characters/wild/maw.svg"
  29578. }
  29579. },
  29580. mawBiggums: {
  29581. height: math.unit(1.47, "feet"),
  29582. name: "Maw (Biggums)",
  29583. image: {
  29584. source: "./media/characters/wild/maw.svg"
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(7 + 3 / 12, "feet"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29598. {
  29599. front: {
  29600. height: math.unit(2.5, "meters"),
  29601. weight: math.unit(200, "kg"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/vidar/front.svg",
  29605. extra: 2994 / 2795,
  29606. bottom: 56 / 3061
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(2.5, "meters"),
  29611. weight: math.unit(200, "kg"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/vidar/back.svg",
  29615. extra: 3131 / 2928,
  29616. bottom: 13.5 / 3141.5
  29617. }
  29618. },
  29619. feral: {
  29620. height: math.unit(2.5, "meters"),
  29621. weight: math.unit(2000, "kg"),
  29622. name: "Feral",
  29623. image: {
  29624. source: "./media/characters/vidar/feral.svg",
  29625. extra: 2790 / 1765,
  29626. bottom: 6 / 2796
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(2.5, "meters"),
  29634. default: true
  29635. },
  29636. {
  29637. name: "Macro",
  29638. height: math.unit(100, "meters")
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29644. {
  29645. front: {
  29646. height: math.unit(5 + 9 / 12, "feet"),
  29647. weight: math.unit(120, "lb"),
  29648. name: "Front",
  29649. image: {
  29650. source: "./media/characters/ash/front.svg",
  29651. extra: 2189 / 1961,
  29652. bottom: 5.2 / 2194
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(5 + 9 / 12, "feet"),
  29660. default: true
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29666. {
  29667. front: {
  29668. height: math.unit(9, "feet"),
  29669. weight: math.unit(10000, "lb"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/gygabite/front.svg",
  29673. bottom: 31.7 / 537.8,
  29674. extra: 505 / 370
  29675. }
  29676. },
  29677. },
  29678. [
  29679. {
  29680. name: "Normal",
  29681. height: math.unit(9, "feet"),
  29682. default: true
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(12, "feet"),
  29691. weight: math.unit(4000, "lb"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/p0tat0/front.svg",
  29695. extra: 1065 / 921,
  29696. bottom: 55.7 / 1121.25
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Normal",
  29703. height: math.unit(12, "feet"),
  29704. default: true
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29710. {
  29711. side: {
  29712. height: math.unit(6.5, "feet"),
  29713. weight: math.unit(800, "lb"),
  29714. name: "Side",
  29715. image: {
  29716. source: "./media/characters/dusk/side.svg",
  29717. extra: 615 / 373,
  29718. bottom: 53 / 664
  29719. }
  29720. },
  29721. sitting: {
  29722. height: math.unit(7, "feet"),
  29723. weight: math.unit(800, "lb"),
  29724. name: "Sitting",
  29725. image: {
  29726. source: "./media/characters/dusk/sitting.svg",
  29727. extra: 753 / 425,
  29728. bottom: 33 / 774
  29729. }
  29730. },
  29731. head: {
  29732. height: math.unit(6.1, "feet"),
  29733. name: "Head",
  29734. image: {
  29735. source: "./media/characters/dusk/head.svg"
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Normal",
  29742. height: math.unit(7, "feet"),
  29743. default: true
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29749. {
  29750. front: {
  29751. height: math.unit(15, "feet"),
  29752. weight: math.unit(7000, "lb"),
  29753. name: "Front",
  29754. image: {
  29755. source: "./media/characters/jay-direwolf/front.svg",
  29756. extra: 1810 / 1732,
  29757. bottom: 66 / 1892
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(15, "feet"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(4 + 9 / 12, "feet"),
  29774. weight: math.unit(130, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/anchovie/front.svg",
  29778. extra: 382 / 350,
  29779. bottom: 25 / 409
  29780. }
  29781. },
  29782. back: {
  29783. height: math.unit(4 + 9 / 12, "feet"),
  29784. weight: math.unit(130, "lb"),
  29785. name: "Back",
  29786. image: {
  29787. source: "./media/characters/anchovie/back.svg",
  29788. extra: 385 / 352,
  29789. bottom: 16.6 / 402
  29790. }
  29791. },
  29792. frontDressed: {
  29793. height: math.unit(4 + 9 / 12, "feet"),
  29794. weight: math.unit(130, "lb"),
  29795. name: "Front (Dressed)",
  29796. image: {
  29797. source: "./media/characters/anchovie/front-dressed.svg",
  29798. extra: 382 / 350,
  29799. bottom: 25 / 409
  29800. }
  29801. },
  29802. backDressed: {
  29803. height: math.unit(4 + 9 / 12, "feet"),
  29804. weight: math.unit(130, "lb"),
  29805. name: "Back (Dressed)",
  29806. image: {
  29807. source: "./media/characters/anchovie/back-dressed.svg",
  29808. extra: 385 / 352,
  29809. bottom: 16.6 / 402
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Micro",
  29816. height: math.unit(6.4, "inches")
  29817. },
  29818. {
  29819. name: "Normal",
  29820. height: math.unit(4 + 9 / 12, "feet"),
  29821. default: true
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(2, "meters"),
  29830. weight: math.unit(180, "lb"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/acidrenamon/front.svg",
  29834. extra: 987 / 890,
  29835. bottom: 22.8 / 1009
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(2, "meters"),
  29840. weight: math.unit(180, "lb"),
  29841. name: "Back",
  29842. image: {
  29843. source: "./media/characters/acidrenamon/back.svg",
  29844. extra: 983 / 891,
  29845. bottom: 8.4 / 992
  29846. }
  29847. },
  29848. head: {
  29849. height: math.unit(1.92, "feet"),
  29850. name: "Head",
  29851. image: {
  29852. source: "./media/characters/acidrenamon/head.svg"
  29853. }
  29854. },
  29855. rump: {
  29856. height: math.unit(1.72, "feet"),
  29857. name: "Rump",
  29858. image: {
  29859. source: "./media/characters/acidrenamon/rump.svg"
  29860. }
  29861. },
  29862. tail: {
  29863. height: math.unit(4.2, "feet"),
  29864. name: "Tail",
  29865. image: {
  29866. source: "./media/characters/acidrenamon/tail.svg"
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(2, "meters"),
  29874. default: true
  29875. },
  29876. {
  29877. name: "Minimacro",
  29878. height: math.unit(7, "meters")
  29879. },
  29880. {
  29881. name: "Macro",
  29882. height: math.unit(200, "meters")
  29883. },
  29884. {
  29885. name: "Gigamacro",
  29886. height: math.unit(0.2, "earths")
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29892. {
  29893. front: {
  29894. height: math.unit(152, "feet"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/kenzie-lee/front.svg",
  29898. extra: 1869/1774,
  29899. bottom: 128/1997
  29900. }
  29901. },
  29902. side: {
  29903. height: math.unit(86, "feet"),
  29904. name: "Side",
  29905. image: {
  29906. source: "./media/characters/kenzie-lee/side.svg",
  29907. extra: 930/815,
  29908. bottom: 177/1107
  29909. }
  29910. },
  29911. paw: {
  29912. height: math.unit(15, "feet"),
  29913. name: "Paw",
  29914. image: {
  29915. source: "./media/characters/kenzie-lee/paw.svg"
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Kenzie Flea",
  29922. height: math.unit(2, "mm"),
  29923. default: true
  29924. },
  29925. {
  29926. name: "Micro",
  29927. height: math.unit(2, "inches")
  29928. },
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(152, "feet")
  29932. },
  29933. {
  29934. name: "Megamacro",
  29935. height: math.unit(7, "miles")
  29936. },
  29937. {
  29938. name: "Gigamacro",
  29939. height: math.unit(8000, "miles")
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(6, "feet"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/withers/front.svg",
  29951. extra: 1935/1760,
  29952. bottom: 72/2007
  29953. }
  29954. },
  29955. back: {
  29956. height: math.unit(6, "feet"),
  29957. name: "Back",
  29958. image: {
  29959. source: "./media/characters/withers/back.svg",
  29960. extra: 1944/1792,
  29961. bottom: 12/1956
  29962. }
  29963. },
  29964. dressed: {
  29965. height: math.unit(6, "feet"),
  29966. name: "Dressed",
  29967. image: {
  29968. source: "./media/characters/withers/dressed.svg",
  29969. extra: 1937/1765,
  29970. bottom: 73/2010
  29971. }
  29972. },
  29973. phase1: {
  29974. height: math.unit(1.1, "feet"),
  29975. name: "Phase 1",
  29976. image: {
  29977. source: "./media/characters/withers/phase-1.svg",
  29978. extra: 1885/1232,
  29979. bottom: 0/1885
  29980. }
  29981. },
  29982. phase2: {
  29983. height: math.unit(1.05, "feet"),
  29984. name: "Phase 2",
  29985. image: {
  29986. source: "./media/characters/withers/phase-2.svg",
  29987. extra: 1792/1090,
  29988. bottom: 0/1792
  29989. }
  29990. },
  29991. partyWipe: {
  29992. height: math.unit(1.1, "feet"),
  29993. name: "Party Wipe",
  29994. image: {
  29995. source: "./media/characters/withers/party-wipe.svg",
  29996. extra: 1864/1207,
  29997. bottom: 0/1864
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Macro",
  30004. height: math.unit(167, "feet"),
  30005. default: true
  30006. },
  30007. {
  30008. name: "Megamacro",
  30009. height: math.unit(15, "miles")
  30010. }
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30015. {
  30016. front: {
  30017. height: math.unit(6 + 7 / 12, "feet"),
  30018. weight: math.unit(250, "lb"),
  30019. name: "Front",
  30020. image: {
  30021. source: "./media/characters/nemoskii/front.svg",
  30022. extra: 2270 / 1734,
  30023. bottom: 86 / 2354
  30024. }
  30025. },
  30026. back: {
  30027. height: math.unit(6 + 7 / 12, "feet"),
  30028. weight: math.unit(250, "lb"),
  30029. name: "Back",
  30030. image: {
  30031. source: "./media/characters/nemoskii/back.svg",
  30032. extra: 1845 / 1788,
  30033. bottom: 10.5 / 1852
  30034. }
  30035. },
  30036. head: {
  30037. height: math.unit(1.31, "feet"),
  30038. name: "Head",
  30039. image: {
  30040. source: "./media/characters/nemoskii/head.svg"
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Micro",
  30047. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30048. },
  30049. {
  30050. name: "Normal",
  30051. height: math.unit(6 + 7 / 12, "feet"),
  30052. default: true
  30053. },
  30054. {
  30055. name: "Macro",
  30056. height: math.unit((6 + 7 / 12) * 150, "feet")
  30057. },
  30058. {
  30059. name: "Macro+",
  30060. height: math.unit((6 + 7 / 12) * 500, "feet")
  30061. },
  30062. {
  30063. name: "Megamacro",
  30064. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30070. {
  30071. front: {
  30072. height: math.unit(1, "mile"),
  30073. weight: math.unit(265261.9, "lb"),
  30074. name: "Front",
  30075. image: {
  30076. source: "./media/characters/shui/front.svg",
  30077. extra: 1633 / 1564,
  30078. bottom: 91.5 / 1726
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(1, "mile"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(12 + 6 / 12, "feet"),
  30095. weight: math.unit(1342, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/arokh-takakura/front.svg",
  30099. extra: 1089 / 1043,
  30100. bottom: 77.4 / 1176.7
  30101. }
  30102. },
  30103. back: {
  30104. height: math.unit(12 + 6 / 12, "feet"),
  30105. weight: math.unit(1342, "lb"),
  30106. name: "Back",
  30107. image: {
  30108. source: "./media/characters/arokh-takakura/back.svg",
  30109. extra: 1046 / 1019,
  30110. bottom: 102 / 1150
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Big",
  30117. height: math.unit(12 + 6 / 12, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30124. {
  30125. front: {
  30126. height: math.unit(5 + 6 / 12, "feet"),
  30127. weight: math.unit(150, "lb"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/theo/front.svg",
  30131. extra: 1184 / 1131,
  30132. bottom: 7.4 / 1191
  30133. }
  30134. },
  30135. },
  30136. [
  30137. {
  30138. name: "Micro",
  30139. height: math.unit(5, "inches")
  30140. },
  30141. {
  30142. name: "Normal",
  30143. height: math.unit(5 + 6 / 12, "feet"),
  30144. default: true
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(5 + 9 / 12, "feet"),
  30153. weight: math.unit(130, "lb"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/cecelia-swift/front.svg",
  30157. extra: 502 / 484,
  30158. bottom: 23 / 523
  30159. }
  30160. },
  30161. back: {
  30162. height: math.unit(5 + 9 / 12, "feet"),
  30163. weight: math.unit(130, "lb"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/cecelia-swift/back.svg",
  30167. extra: 499 / 485,
  30168. bottom: 12 / 511
  30169. }
  30170. },
  30171. head: {
  30172. height: math.unit(0.90, "feet"),
  30173. name: "Head",
  30174. image: {
  30175. source: "./media/characters/cecelia-swift/head.svg"
  30176. }
  30177. },
  30178. rump: {
  30179. height: math.unit(1.75, "feet"),
  30180. name: "Rump",
  30181. image: {
  30182. source: "./media/characters/cecelia-swift/rump.svg"
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(5 + 9 / 12, "feet"),
  30190. default: true
  30191. },
  30192. {
  30193. name: "Big",
  30194. height: math.unit(50, "feet")
  30195. },
  30196. {
  30197. name: "Macro",
  30198. height: math.unit(100, "feet")
  30199. },
  30200. {
  30201. name: "Macro+",
  30202. height: math.unit(500, "feet")
  30203. },
  30204. {
  30205. name: "Macro++",
  30206. height: math.unit(1000, "feet")
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(6, "feet"),
  30215. weight: math.unit(150, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/kaunan/front.svg",
  30219. extra: 2890 / 2523,
  30220. bottom: 49 / 2939
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Macro",
  30227. height: math.unit(150, "feet"),
  30228. default: true
  30229. },
  30230. ]
  30231. ))
  30232. characterMakers.push(() => makeCharacter(
  30233. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30234. {
  30235. dressed: {
  30236. height: math.unit(175, "cm"),
  30237. weight: math.unit(60, "kg"),
  30238. name: "Dressed",
  30239. image: {
  30240. source: "./media/characters/fei/dressed.svg",
  30241. extra: 1402/1278,
  30242. bottom: 27/1429
  30243. }
  30244. },
  30245. nude: {
  30246. height: math.unit(175, "cm"),
  30247. weight: math.unit(60, "kg"),
  30248. name: "Nude",
  30249. image: {
  30250. source: "./media/characters/fei/nude.svg",
  30251. extra: 1402/1278,
  30252. bottom: 27/1429
  30253. }
  30254. },
  30255. heels: {
  30256. height: math.unit(0.466, "feet"),
  30257. name: "Heels",
  30258. image: {
  30259. source: "./media/characters/fei/heels.svg",
  30260. extra: 156/152,
  30261. bottom: 28/184
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Mortal",
  30268. height: math.unit(175, "cm")
  30269. },
  30270. {
  30271. name: "Normal",
  30272. height: math.unit(3500, "m")
  30273. },
  30274. {
  30275. name: "Stroll",
  30276. height: math.unit(18.4, "km"),
  30277. default: true
  30278. },
  30279. {
  30280. name: "Showoff",
  30281. height: math.unit(175, "km")
  30282. },
  30283. ]
  30284. ))
  30285. characterMakers.push(() => makeCharacter(
  30286. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30287. {
  30288. front: {
  30289. height: math.unit(7, "feet"),
  30290. weight: math.unit(1000, "kg"),
  30291. name: "Front",
  30292. image: {
  30293. source: "./media/characters/edrax/front.svg",
  30294. extra: 2838 / 2550,
  30295. bottom: 130 / 2968
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Small",
  30302. height: math.unit(7, "feet")
  30303. },
  30304. {
  30305. name: "Normal",
  30306. height: math.unit(1500, "meters")
  30307. },
  30308. {
  30309. name: "Mega",
  30310. height: math.unit(12000000, "km"),
  30311. default: true
  30312. },
  30313. {
  30314. name: "Megamacro",
  30315. height: math.unit(10600000, "lightyears")
  30316. },
  30317. {
  30318. name: "Hypermacro",
  30319. height: math.unit(256, "yottameters")
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30325. {
  30326. front: {
  30327. height: math.unit(10, "feet"),
  30328. weight: math.unit(750, "lb"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/clove/front.svg",
  30332. extra: 1918/1751,
  30333. bottom: 52/1970
  30334. }
  30335. },
  30336. back: {
  30337. height: math.unit(10, "feet"),
  30338. weight: math.unit(750, "lb"),
  30339. name: "Back",
  30340. image: {
  30341. source: "./media/characters/clove/back.svg",
  30342. extra: 1912/1747,
  30343. bottom: 50/1962
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Normal",
  30350. height: math.unit(10, "feet"),
  30351. default: true
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30357. {
  30358. front: {
  30359. height: math.unit(4, "feet"),
  30360. weight: math.unit(50, "lb"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/alex-rabbit/front.svg",
  30364. extra: 507 / 458,
  30365. bottom: 18.5 / 527
  30366. }
  30367. },
  30368. back: {
  30369. height: math.unit(4, "feet"),
  30370. weight: math.unit(50, "lb"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/alex-rabbit/back.svg",
  30374. extra: 502 / 460,
  30375. bottom: 18.9 / 521
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Normal",
  30382. height: math.unit(4, "feet"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(1 + 3 / 12, "feet"),
  30392. weight: math.unit(80, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/zander-rose/front.svg",
  30396. extra: 916 / 797,
  30397. bottom: 17 / 933
  30398. }
  30399. },
  30400. back: {
  30401. height: math.unit(1 + 3 / 12, "feet"),
  30402. weight: math.unit(80, "lb"),
  30403. name: "Back",
  30404. image: {
  30405. source: "./media/characters/zander-rose/back.svg",
  30406. extra: 903 / 779,
  30407. bottom: 31 / 934
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(1 + 3 / 12, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30421. {
  30422. anthro: {
  30423. height: math.unit(6, "feet"),
  30424. weight: math.unit(150, "lb"),
  30425. name: "Anthro",
  30426. image: {
  30427. source: "./media/characters/razz/anthro.svg",
  30428. extra: 1437 / 1343,
  30429. bottom: 48 / 1485
  30430. }
  30431. },
  30432. feral: {
  30433. height: math.unit(6, "feet"),
  30434. weight: math.unit(150, "lb"),
  30435. name: "Feral",
  30436. image: {
  30437. source: "./media/characters/razz/feral.svg",
  30438. extra: 2569 / 1385,
  30439. bottom: 95 / 2664
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(6, "feet"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30453. {
  30454. front: {
  30455. height: math.unit(9 + 4 / 12, "feet"),
  30456. weight: math.unit(500, "lb"),
  30457. name: "Front",
  30458. image: {
  30459. source: "./media/characters/morrigan/front.svg",
  30460. extra: 2707 / 2579,
  30461. bottom: 156 / 2863
  30462. }
  30463. },
  30464. },
  30465. [
  30466. {
  30467. name: "Normal",
  30468. height: math.unit(9 + 4 / 12, "feet"),
  30469. default: true
  30470. },
  30471. ]
  30472. ))
  30473. characterMakers.push(() => makeCharacter(
  30474. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30475. {
  30476. front: {
  30477. height: math.unit(5, "stories"),
  30478. weight: math.unit(4000, "lb"),
  30479. name: "Front",
  30480. image: {
  30481. source: "./media/characters/jenene/front.svg",
  30482. extra: 1780 / 1710,
  30483. bottom: 57 / 1837
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(5, "stories"),
  30491. default: true
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30497. {
  30498. taurSfw: {
  30499. height: math.unit(10, "meters"),
  30500. weight: math.unit(17500, "kg"),
  30501. name: "Taur",
  30502. image: {
  30503. source: "./media/characters/faey/taur-sfw.svg",
  30504. extra: 1200 / 968,
  30505. bottom: 41 / 1241
  30506. }
  30507. },
  30508. chestmaw: {
  30509. height: math.unit(2.01, "meters"),
  30510. name: "Chestmaw",
  30511. image: {
  30512. source: "./media/characters/faey/chestmaw.svg"
  30513. }
  30514. },
  30515. foot: {
  30516. height: math.unit(2.43, "meters"),
  30517. name: "Foot",
  30518. image: {
  30519. source: "./media/characters/faey/foot.svg"
  30520. }
  30521. },
  30522. jaws: {
  30523. height: math.unit(1.66, "meters"),
  30524. name: "Jaws",
  30525. image: {
  30526. source: "./media/characters/faey/jaws.svg"
  30527. }
  30528. },
  30529. tongues: {
  30530. height: math.unit(2.01, "meters"),
  30531. name: "Tongues",
  30532. image: {
  30533. source: "./media/characters/faey/tongues.svg"
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Small",
  30540. height: math.unit(10, "meters"),
  30541. default: true
  30542. },
  30543. {
  30544. name: "Big",
  30545. height: math.unit(500000, "km")
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30551. {
  30552. front: {
  30553. height: math.unit(7, "feet"),
  30554. weight: math.unit(275, "lb"),
  30555. name: "Front",
  30556. image: {
  30557. source: "./media/characters/roku/front.svg",
  30558. extra: 903 / 878,
  30559. bottom: 37 / 940
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Normal",
  30566. height: math.unit(7, "feet"),
  30567. default: true
  30568. },
  30569. {
  30570. name: "Macro",
  30571. height: math.unit(500, "feet")
  30572. },
  30573. {
  30574. name: "Megamacro",
  30575. height: math.unit(200, "miles")
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(6 + 2 / 12, "feet"),
  30584. weight: math.unit(150, "lb"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/lira/front.svg",
  30588. extra: 1727 / 1605,
  30589. bottom: 26 / 1753
  30590. }
  30591. },
  30592. back: {
  30593. height: math.unit(6 + 2 / 12, "feet"),
  30594. weight: math.unit(150, "lb"),
  30595. name: "Back",
  30596. image: {
  30597. source: "./media/characters/lira/back.svg",
  30598. extra: 1713/1621,
  30599. bottom: 20/1733
  30600. }
  30601. },
  30602. hand: {
  30603. height: math.unit(0.75, "feet"),
  30604. name: "Hand",
  30605. image: {
  30606. source: "./media/characters/lira/hand.svg"
  30607. }
  30608. },
  30609. maw: {
  30610. height: math.unit(0.65, "feet"),
  30611. name: "Maw",
  30612. image: {
  30613. source: "./media/characters/lira/maw.svg"
  30614. }
  30615. },
  30616. pawDigi: {
  30617. height: math.unit(1.6, "feet"),
  30618. name: "Paw Digi",
  30619. image: {
  30620. source: "./media/characters/lira/paw-digi.svg"
  30621. }
  30622. },
  30623. pawPlanti: {
  30624. height: math.unit(1.4, "feet"),
  30625. name: "Paw Planti",
  30626. image: {
  30627. source: "./media/characters/lira/paw-planti.svg"
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Normal",
  30634. height: math.unit(6 + 2 / 12, "feet"),
  30635. default: true
  30636. },
  30637. {
  30638. name: "Macro",
  30639. height: math.unit(100, "feet")
  30640. },
  30641. {
  30642. name: "Macro²",
  30643. height: math.unit(1600, "feet")
  30644. },
  30645. {
  30646. name: "Planetary",
  30647. height: math.unit(20, "earths")
  30648. },
  30649. ]
  30650. ))
  30651. characterMakers.push(() => makeCharacter(
  30652. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30653. {
  30654. front: {
  30655. height: math.unit(6, "feet"),
  30656. weight: math.unit(150, "lb"),
  30657. name: "Front",
  30658. image: {
  30659. source: "./media/characters/hadjet/front.svg",
  30660. extra: 1480 / 1346,
  30661. bottom: 26 / 1506
  30662. }
  30663. },
  30664. frontNsfw: {
  30665. height: math.unit(6, "feet"),
  30666. weight: math.unit(150, "lb"),
  30667. name: "Front (NSFW)",
  30668. image: {
  30669. source: "./media/characters/hadjet/front-nsfw.svg",
  30670. extra: 1440 / 1358,
  30671. bottom: 52 / 1492
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Macro",
  30678. height: math.unit(10, "stories"),
  30679. default: true
  30680. },
  30681. {
  30682. name: "Megamacro",
  30683. height: math.unit(1.5, "miles")
  30684. },
  30685. {
  30686. name: "Megamacro+",
  30687. height: math.unit(5, "miles")
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30693. {
  30694. side: {
  30695. height: math.unit(106, "feet"),
  30696. weight: math.unit(500, "tonnes"),
  30697. name: "Side",
  30698. image: {
  30699. source: "./media/characters/kodran/side.svg",
  30700. extra: 553 / 480,
  30701. bottom: 33 / 586
  30702. }
  30703. },
  30704. front: {
  30705. height: math.unit(132, "feet"),
  30706. weight: math.unit(500, "tonnes"),
  30707. name: "Front",
  30708. image: {
  30709. source: "./media/characters/kodran/front.svg",
  30710. extra: 667 / 643,
  30711. bottom: 42 / 709
  30712. }
  30713. },
  30714. flying: {
  30715. height: math.unit(350, "feet"),
  30716. weight: math.unit(500, "tonnes"),
  30717. name: "Flying",
  30718. image: {
  30719. source: "./media/characters/kodran/flying.svg"
  30720. }
  30721. },
  30722. foot: {
  30723. height: math.unit(33, "feet"),
  30724. name: "Foot",
  30725. image: {
  30726. source: "./media/characters/kodran/foot.svg"
  30727. }
  30728. },
  30729. footFront: {
  30730. height: math.unit(19, "feet"),
  30731. name: "Foot (Front)",
  30732. image: {
  30733. source: "./media/characters/kodran/foot-front.svg",
  30734. extra: 261 / 261,
  30735. bottom: 91 / 352
  30736. }
  30737. },
  30738. headFront: {
  30739. height: math.unit(53, "feet"),
  30740. name: "Head (Front)",
  30741. image: {
  30742. source: "./media/characters/kodran/head-front.svg"
  30743. }
  30744. },
  30745. headSide: {
  30746. height: math.unit(65, "feet"),
  30747. name: "Head (Side)",
  30748. image: {
  30749. source: "./media/characters/kodran/head-side.svg"
  30750. }
  30751. },
  30752. throat: {
  30753. height: math.unit(79, "feet"),
  30754. name: "Throat",
  30755. image: {
  30756. source: "./media/characters/kodran/throat.svg"
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Large",
  30763. height: math.unit(106, "feet"),
  30764. default: true
  30765. },
  30766. ]
  30767. ))
  30768. characterMakers.push(() => makeCharacter(
  30769. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30770. {
  30771. side: {
  30772. height: math.unit(11, "feet"),
  30773. weight: math.unit(150, "lb"),
  30774. name: "Side",
  30775. image: {
  30776. source: "./media/characters/pyxaron/side.svg",
  30777. extra: 305 / 195,
  30778. bottom: 17 / 322
  30779. }
  30780. },
  30781. },
  30782. [
  30783. {
  30784. name: "Normal",
  30785. height: math.unit(11, "feet"),
  30786. default: true
  30787. },
  30788. ]
  30789. ))
  30790. characterMakers.push(() => makeCharacter(
  30791. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30792. {
  30793. front: {
  30794. height: math.unit(6, "feet"),
  30795. weight: math.unit(150, "lb"),
  30796. name: "Front",
  30797. image: {
  30798. source: "./media/characters/meep/front.svg",
  30799. extra: 88 / 80,
  30800. bottom: 6 / 94
  30801. }
  30802. },
  30803. },
  30804. [
  30805. {
  30806. name: "Fun Sized",
  30807. height: math.unit(2, "inches"),
  30808. default: true
  30809. },
  30810. {
  30811. name: "Friend Sized",
  30812. height: math.unit(8, "inches")
  30813. },
  30814. ]
  30815. ))
  30816. characterMakers.push(() => makeCharacter(
  30817. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30818. {
  30819. front: {
  30820. height: math.unit(15, "feet"),
  30821. weight: math.unit(2500, "lb"),
  30822. name: "Front",
  30823. image: {
  30824. source: "./media/characters/holly-rabbit/front.svg",
  30825. extra: 1433 / 1233,
  30826. bottom: 125 / 1558
  30827. }
  30828. },
  30829. dick: {
  30830. height: math.unit(4.6, "feet"),
  30831. name: "Dick",
  30832. image: {
  30833. source: "./media/characters/holly-rabbit/dick.svg"
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(15, "feet"),
  30841. default: true
  30842. },
  30843. {
  30844. name: "Macro",
  30845. height: math.unit(250, "feet")
  30846. },
  30847. {
  30848. name: "Macro+",
  30849. height: math.unit(2500, "feet")
  30850. },
  30851. ]
  30852. ))
  30853. characterMakers.push(() => makeCharacter(
  30854. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30855. {
  30856. front: {
  30857. height: math.unit(3.02, "meters"),
  30858. weight: math.unit(500, "kg"),
  30859. name: "Front",
  30860. image: {
  30861. source: "./media/characters/drena/front.svg",
  30862. extra: 282 / 243,
  30863. bottom: 8 / 290
  30864. }
  30865. },
  30866. side: {
  30867. height: math.unit(3.02, "meters"),
  30868. weight: math.unit(500, "kg"),
  30869. name: "Side",
  30870. image: {
  30871. source: "./media/characters/drena/side.svg",
  30872. extra: 280 / 245,
  30873. bottom: 10 / 290
  30874. }
  30875. },
  30876. back: {
  30877. height: math.unit(3.02, "meters"),
  30878. weight: math.unit(500, "kg"),
  30879. name: "Back",
  30880. image: {
  30881. source: "./media/characters/drena/back.svg",
  30882. extra: 278 / 243,
  30883. bottom: 2 / 280
  30884. }
  30885. },
  30886. foot: {
  30887. height: math.unit(0.75, "meters"),
  30888. name: "Foot",
  30889. image: {
  30890. source: "./media/characters/drena/foot.svg"
  30891. }
  30892. },
  30893. maw: {
  30894. height: math.unit(0.82, "meters"),
  30895. name: "Maw",
  30896. image: {
  30897. source: "./media/characters/drena/maw.svg"
  30898. }
  30899. },
  30900. eating: {
  30901. height: math.unit(0.75, "meters"),
  30902. name: "Eating",
  30903. image: {
  30904. source: "./media/characters/drena/eating.svg"
  30905. }
  30906. },
  30907. rump: {
  30908. height: math.unit(0.93, "meters"),
  30909. name: "Rump",
  30910. image: {
  30911. source: "./media/characters/drena/rump.svg"
  30912. }
  30913. },
  30914. },
  30915. [
  30916. {
  30917. name: "Normal",
  30918. height: math.unit(3.02, "meters"),
  30919. default: true
  30920. },
  30921. ]
  30922. ))
  30923. characterMakers.push(() => makeCharacter(
  30924. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30925. {
  30926. front: {
  30927. height: math.unit(6 + 4 / 12, "feet"),
  30928. weight: math.unit(250, "lb"),
  30929. name: "Front",
  30930. image: {
  30931. source: "./media/characters/remmyzilla/front.svg",
  30932. extra: 4033 / 3588,
  30933. bottom: 123 / 4156
  30934. }
  30935. },
  30936. back: {
  30937. height: math.unit(6 + 4 / 12, "feet"),
  30938. weight: math.unit(250, "lb"),
  30939. name: "Back",
  30940. image: {
  30941. source: "./media/characters/remmyzilla/back.svg",
  30942. extra: 2687 / 2555,
  30943. bottom: 48 / 2735
  30944. }
  30945. },
  30946. paw: {
  30947. height: math.unit(1.73, "feet"),
  30948. name: "Paw",
  30949. image: {
  30950. source: "./media/characters/remmyzilla/paw.svg"
  30951. },
  30952. extraAttributes: {
  30953. "toeSize": {
  30954. name: "Toe Size",
  30955. power: 2,
  30956. type: "area",
  30957. base: math.unit(0.0035, "m^2")
  30958. },
  30959. "padSize": {
  30960. name: "Pad Size",
  30961. power: 2,
  30962. type: "area",
  30963. base: math.unit(0.015, "m^2")
  30964. },
  30965. "pawsize": {
  30966. name: "Paw Size",
  30967. power: 2,
  30968. type: "area",
  30969. base: math.unit(0.072, "m^2")
  30970. },
  30971. }
  30972. },
  30973. maw: {
  30974. height: math.unit(1.73, "feet"),
  30975. name: "Maw",
  30976. image: {
  30977. source: "./media/characters/remmyzilla/maw.svg"
  30978. }
  30979. },
  30980. },
  30981. [
  30982. {
  30983. name: "Normal",
  30984. height: math.unit(6 + 4 / 12, "feet")
  30985. },
  30986. {
  30987. name: "Minimacro",
  30988. height: math.unit(12 + 8 / 12, "feet")
  30989. },
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(640, "feet"),
  30993. default: true
  30994. },
  30995. {
  30996. name: "Megamacro",
  30997. height: math.unit(6400, "feet")
  30998. },
  30999. {
  31000. name: "Gigamacro",
  31001. height: math.unit(64000, "miles")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(2.5, "meters"),
  31010. weight: math.unit(300, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/lawrence/front.svg",
  31014. extra: 357 / 335,
  31015. bottom: 30 / 387
  31016. }
  31017. },
  31018. back: {
  31019. height: math.unit(2.5, "meters"),
  31020. weight: math.unit(300, "lb"),
  31021. name: "Back",
  31022. image: {
  31023. source: "./media/characters/lawrence/back.svg",
  31024. extra: 357 / 338,
  31025. bottom: 16 / 373
  31026. }
  31027. },
  31028. head: {
  31029. height: math.unit(0.9, "meter"),
  31030. name: "Head",
  31031. image: {
  31032. source: "./media/characters/lawrence/head.svg"
  31033. }
  31034. },
  31035. maw: {
  31036. height: math.unit(0.7, "meter"),
  31037. name: "Maw",
  31038. image: {
  31039. source: "./media/characters/lawrence/maw.svg"
  31040. }
  31041. },
  31042. footBottom: {
  31043. height: math.unit(0.5, "meter"),
  31044. name: "Foot (Bottom)",
  31045. image: {
  31046. source: "./media/characters/lawrence/foot-bottom.svg"
  31047. }
  31048. },
  31049. footTop: {
  31050. height: math.unit(0.5, "meter"),
  31051. name: "Foot (Top)",
  31052. image: {
  31053. source: "./media/characters/lawrence/foot-top.svg"
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(2.5, "meters"),
  31061. default: true
  31062. },
  31063. {
  31064. name: "Macro",
  31065. height: math.unit(95, "meters")
  31066. },
  31067. {
  31068. name: "Megamacro",
  31069. height: math.unit(150, "km")
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31075. {
  31076. front: {
  31077. height: math.unit(4.2, "meters"),
  31078. preyCapacity: math.unit(50, "m^3"),
  31079. weight: math.unit(30, "tonnes"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/sydney/front.svg",
  31083. extra: 1177/1129,
  31084. bottom: 197/1374
  31085. },
  31086. extraAttributes: {
  31087. "length": {
  31088. name: "Length",
  31089. power: 1,
  31090. type: "length",
  31091. base: math.unit(21, "meters")
  31092. },
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(4.2, "meters"),
  31100. default: true
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31106. {
  31107. back: {
  31108. height: math.unit(201, "feet"),
  31109. name: "Back",
  31110. image: {
  31111. source: "./media/characters/jessica/back.svg",
  31112. extra: 273 / 259,
  31113. bottom: 7 / 280
  31114. }
  31115. },
  31116. },
  31117. [
  31118. {
  31119. name: "Normal",
  31120. height: math.unit(201, "feet"),
  31121. default: true
  31122. },
  31123. {
  31124. name: "Megamacro",
  31125. height: math.unit(8, "miles")
  31126. },
  31127. ]
  31128. ))
  31129. characterMakers.push(() => makeCharacter(
  31130. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31131. {
  31132. side: {
  31133. height: math.unit(5.6, "m"),
  31134. weight: math.unit(8000, "kg"),
  31135. name: "Side",
  31136. image: {
  31137. source: "./media/characters/victoria/side.svg",
  31138. extra: 1542/1229,
  31139. bottom: 124/1666
  31140. }
  31141. },
  31142. maw: {
  31143. height: math.unit(7.14, "feet"),
  31144. name: "Maw",
  31145. image: {
  31146. source: "./media/characters/victoria/maw.svg"
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Normal",
  31153. height: math.unit(5.6, "m"),
  31154. default: true
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31160. {
  31161. front: {
  31162. height: math.unit(5 + 6 / 12, "feet"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/cat/front.svg",
  31166. extra: 1449/1295,
  31167. bottom: 34/1483
  31168. },
  31169. form: "cat",
  31170. default: true
  31171. },
  31172. back: {
  31173. height: math.unit(5 + 6 / 12, "feet"),
  31174. name: "Back",
  31175. image: {
  31176. source: "./media/characters/cat/back.svg",
  31177. extra: 1466/1301,
  31178. bottom: 19/1485
  31179. },
  31180. form: "cat"
  31181. },
  31182. taur: {
  31183. height: math.unit(7, "feet"),
  31184. name: "Taur",
  31185. image: {
  31186. source: "./media/characters/cat/taur.svg",
  31187. extra: 1389/1233,
  31188. bottom: 83/1472
  31189. },
  31190. form: "taur",
  31191. default: true
  31192. },
  31193. lucarioFront: {
  31194. height: math.unit(4, "feet"),
  31195. name: "Lucario (Front)",
  31196. image: {
  31197. source: "./media/characters/cat/lucario-front.svg",
  31198. extra: 1149/1019,
  31199. bottom: 84/1233
  31200. },
  31201. form: "lucario",
  31202. default: true
  31203. },
  31204. lucarioBack: {
  31205. height: math.unit(4, "feet"),
  31206. name: "Lucario (Back)",
  31207. image: {
  31208. source: "./media/characters/cat/lucario-back.svg",
  31209. extra: 1190/1059,
  31210. bottom: 33/1223
  31211. },
  31212. form: "lucario"
  31213. },
  31214. megaLucario: {
  31215. height: math.unit(4, "feet"),
  31216. name: "Mega Lucario",
  31217. image: {
  31218. source: "./media/characters/cat/mega-lucario.svg",
  31219. extra: 1515 / 1319,
  31220. bottom: 63 / 1578
  31221. },
  31222. form: "lucario"
  31223. },
  31224. nickit: {
  31225. height: math.unit(2, "feet"),
  31226. name: "Nickit",
  31227. image: {
  31228. source: "./media/characters/cat/nickit.svg",
  31229. extra: 1980 / 1585,
  31230. bottom: 102 / 2082
  31231. },
  31232. form: "nickit",
  31233. default: true
  31234. },
  31235. lopunnyFront: {
  31236. height: math.unit(5, "feet"),
  31237. name: "Lopunny (Front)",
  31238. image: {
  31239. source: "./media/characters/cat/lopunny-front.svg",
  31240. extra: 1782 / 1469,
  31241. bottom: 38 / 1820
  31242. },
  31243. form: "lopunny",
  31244. default: true
  31245. },
  31246. lopunnyBack: {
  31247. height: math.unit(5, "feet"),
  31248. name: "Lopunny (Back)",
  31249. image: {
  31250. source: "./media/characters/cat/lopunny-back.svg",
  31251. extra: 1660 / 1490,
  31252. bottom: 25 / 1685
  31253. },
  31254. form: "lopunny"
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Really small",
  31260. height: math.unit(1, "nm")
  31261. },
  31262. {
  31263. name: "Micro",
  31264. height: math.unit(5, "inches")
  31265. },
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(5 + 6 / 12, "feet"),
  31269. default: true
  31270. },
  31271. {
  31272. name: "Macro",
  31273. height: math.unit(50, "feet")
  31274. },
  31275. {
  31276. name: "Macro+",
  31277. height: math.unit(150, "feet")
  31278. },
  31279. {
  31280. name: "Megamacro",
  31281. height: math.unit(100, "miles")
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31287. {
  31288. front: {
  31289. height: math.unit(63.4, "meters"),
  31290. weight: math.unit(3.28349e+6, "kilograms"),
  31291. name: "Front",
  31292. image: {
  31293. source: "./media/characters/kirina-violet/front.svg",
  31294. extra: 2812 / 2725,
  31295. bottom: 0 / 2812
  31296. }
  31297. },
  31298. back: {
  31299. height: math.unit(63.4, "meters"),
  31300. weight: math.unit(3.28349e+6, "kilograms"),
  31301. name: "Back",
  31302. image: {
  31303. source: "./media/characters/kirina-violet/back.svg",
  31304. extra: 2812 / 2725,
  31305. bottom: 0 / 2812
  31306. }
  31307. },
  31308. mouth: {
  31309. height: math.unit(4.35, "meters"),
  31310. name: "Mouth",
  31311. image: {
  31312. source: "./media/characters/kirina-violet/mouth.svg"
  31313. }
  31314. },
  31315. paw: {
  31316. height: math.unit(5.6, "meters"),
  31317. name: "Paw",
  31318. image: {
  31319. source: "./media/characters/kirina-violet/paw.svg"
  31320. }
  31321. },
  31322. tail: {
  31323. height: math.unit(18, "meters"),
  31324. name: "Tail",
  31325. image: {
  31326. source: "./media/characters/kirina-violet/tail.svg"
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Macro",
  31333. height: math.unit(63.4, "meters"),
  31334. default: true
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31340. {
  31341. front: {
  31342. height: math.unit(75, "feet"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/cat-gigachu/front.svg",
  31346. extra: 1239/1027,
  31347. bottom: 32/1271
  31348. }
  31349. },
  31350. back: {
  31351. height: math.unit(75, "feet"),
  31352. name: "Back",
  31353. image: {
  31354. source: "./media/characters/cat-gigachu/back.svg",
  31355. extra: 1229/1030,
  31356. bottom: 9/1238
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Dynamax",
  31363. height: math.unit(75, "feet"),
  31364. default: true
  31365. },
  31366. ]
  31367. ))
  31368. characterMakers.push(() => makeCharacter(
  31369. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31370. {
  31371. front: {
  31372. height: math.unit(6, "feet"),
  31373. weight: math.unit(150, "lb"),
  31374. name: "Front",
  31375. image: {
  31376. source: "./media/characters/sfaiyan/front.svg",
  31377. extra: 999 / 978,
  31378. bottom: 5 / 1004
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(1.82, "meters")
  31386. },
  31387. {
  31388. name: "Giant",
  31389. height: math.unit(2.27, "km"),
  31390. default: true
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(179, "cm"),
  31399. weight: math.unit(100, "kg"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/raunehkeli/front.svg",
  31403. extra: 1934 / 1926,
  31404. bottom: 0 / 1934
  31405. }
  31406. },
  31407. },
  31408. [
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(179, "cm")
  31412. },
  31413. {
  31414. name: "Maximum",
  31415. height: math.unit(575, "meters"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31422. {
  31423. front: {
  31424. height: math.unit(6, "feet"),
  31425. weight: math.unit(150, "lb"),
  31426. name: "Front",
  31427. image: {
  31428. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31429. extra: 2625 / 2518,
  31430. bottom: 60 / 2685
  31431. }
  31432. },
  31433. },
  31434. [
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(6 + 2 / 12, "feet")
  31438. },
  31439. {
  31440. name: "Macro",
  31441. height: math.unit(1180, "feet"),
  31442. default: true
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31448. {
  31449. front: {
  31450. height: math.unit(5 + 6 / 12, "feet"),
  31451. weight: math.unit(108, "lb"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/lilith-zott/front.svg",
  31455. extra: 2510 / 2238,
  31456. bottom: 100 / 2610
  31457. }
  31458. },
  31459. frontDressed: {
  31460. height: math.unit(5 + 6 / 12, "feet"),
  31461. weight: math.unit(108, "lb"),
  31462. name: "Front (Dressed)",
  31463. image: {
  31464. source: "./media/characters/lilith-zott/front-dressed.svg",
  31465. extra: 2510 / 2238,
  31466. bottom: 100 / 2610
  31467. }
  31468. },
  31469. },
  31470. [
  31471. {
  31472. name: "Normal",
  31473. height: math.unit(5 + 6 / 12, "feet")
  31474. },
  31475. {
  31476. name: "Macro",
  31477. height: math.unit(1030, "feet"),
  31478. default: true
  31479. },
  31480. ]
  31481. ))
  31482. characterMakers.push(() => makeCharacter(
  31483. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31484. {
  31485. front: {
  31486. height: math.unit(6, "feet"),
  31487. weight: math.unit(150, "lb"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31491. extra: 2567 / 2435,
  31492. bottom: 39 / 2606
  31493. }
  31494. },
  31495. frontSuper: {
  31496. height: math.unit(6, "feet"),
  31497. name: "Front (Super)",
  31498. image: {
  31499. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31500. extra: 2567 / 2435,
  31501. bottom: 39 / 2606
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Normal",
  31508. height: math.unit(5 + 10 / 12, "feet")
  31509. },
  31510. {
  31511. name: "Macro",
  31512. height: math.unit(1100, "feet"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(100, "miles"),
  31522. name: "Front",
  31523. image: {
  31524. source: "./media/characters/sona/front.svg",
  31525. extra: 2433 / 2201,
  31526. bottom: 53 / 2486
  31527. }
  31528. },
  31529. foot: {
  31530. height: math.unit(16.1, "miles"),
  31531. name: "Foot",
  31532. image: {
  31533. source: "./media/characters/sona/foot.svg"
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Macro",
  31540. height: math.unit(100, "miles"),
  31541. default: true
  31542. },
  31543. ]
  31544. ))
  31545. characterMakers.push(() => makeCharacter(
  31546. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31547. {
  31548. front: {
  31549. height: math.unit(6, "feet"),
  31550. weight: math.unit(150, "lb"),
  31551. name: "Front",
  31552. image: {
  31553. source: "./media/characters/bailey/front.svg",
  31554. extra: 1778 / 1724,
  31555. bottom: 30 / 1808
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Micro",
  31562. height: math.unit(4, "inches")
  31563. },
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(5 + 5 / 12, "feet"),
  31567. default: true
  31568. },
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(250, "feet")
  31572. },
  31573. {
  31574. name: "Megamacro",
  31575. height: math.unit(100, "miles")
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(5 + 2 / 12, "feet"),
  31584. weight: math.unit(120, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/snaps/front.svg",
  31588. extra: 2370 / 2177,
  31589. bottom: 48 / 2418
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(5 + 2 / 12, "feet"),
  31594. weight: math.unit(120, "lb"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/snaps/back.svg",
  31598. extra: 2408 / 2258,
  31599. bottom: 15 / 2423
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Micro",
  31606. height: math.unit(9, "inches")
  31607. },
  31608. {
  31609. name: "Normal",
  31610. height: math.unit(5 + 2 / 12, "feet"),
  31611. default: true
  31612. },
  31613. {
  31614. name: "Mini Macro",
  31615. height: math.unit(10, "feet")
  31616. },
  31617. ]
  31618. ))
  31619. characterMakers.push(() => makeCharacter(
  31620. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31621. {
  31622. front: {
  31623. height: math.unit(1.8, "meters"),
  31624. weight: math.unit(85, "kg"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/azteck/front.svg",
  31628. extra: 2815 / 2625,
  31629. bottom: 89 / 2904
  31630. }
  31631. },
  31632. back: {
  31633. height: math.unit(1.8, "meters"),
  31634. weight: math.unit(85, "kg"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/azteck/back.svg",
  31638. extra: 2856 / 2648,
  31639. bottom: 85 / 2941
  31640. }
  31641. },
  31642. frontDressed: {
  31643. height: math.unit(1.8, "meters"),
  31644. weight: math.unit(85, "kg"),
  31645. name: "Front (Dressed)",
  31646. image: {
  31647. source: "./media/characters/azteck/front-dressed.svg",
  31648. extra: 2147 / 2003,
  31649. bottom: 68 / 2215
  31650. }
  31651. },
  31652. head: {
  31653. height: math.unit(0.47, "meters"),
  31654. weight: math.unit(85, "kg"),
  31655. name: "Head",
  31656. image: {
  31657. source: "./media/characters/azteck/head.svg"
  31658. }
  31659. },
  31660. },
  31661. [
  31662. {
  31663. name: "Bite sized",
  31664. height: math.unit(16, "cm")
  31665. },
  31666. {
  31667. name: "Normal",
  31668. height: math.unit(1.8, "meters"),
  31669. default: true
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(6, "feet"),
  31678. weight: math.unit(150, "lb"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/pidge/front.svg",
  31682. extra: 1936/1820,
  31683. bottom: 0/1936
  31684. }
  31685. },
  31686. back: {
  31687. height: math.unit(6, "feet"),
  31688. weight: math.unit(150, "lb"),
  31689. name: "Back",
  31690. image: {
  31691. source: "./media/characters/pidge/back.svg",
  31692. extra: 1938/1843,
  31693. bottom: 0/1938
  31694. }
  31695. },
  31696. casual: {
  31697. height: math.unit(6, "feet"),
  31698. weight: math.unit(150, "lb"),
  31699. name: "Casual",
  31700. image: {
  31701. source: "./media/characters/pidge/casual.svg",
  31702. extra: 1936/1820,
  31703. bottom: 0/1936
  31704. }
  31705. },
  31706. tech: {
  31707. height: math.unit(6, "feet"),
  31708. weight: math.unit(150, "lb"),
  31709. name: "Tech",
  31710. image: {
  31711. source: "./media/characters/pidge/tech.svg",
  31712. extra: 1802/1682,
  31713. bottom: 0/1802
  31714. }
  31715. },
  31716. head: {
  31717. height: math.unit(1.61, "feet"),
  31718. name: "Head",
  31719. image: {
  31720. source: "./media/characters/pidge/head.svg"
  31721. }
  31722. },
  31723. collar: {
  31724. height: math.unit(0.82, "feet"),
  31725. name: "Collar",
  31726. image: {
  31727. source: "./media/characters/pidge/collar.svg"
  31728. }
  31729. },
  31730. },
  31731. [
  31732. {
  31733. name: "Macro",
  31734. height: math.unit(2, "mile"),
  31735. default: true
  31736. },
  31737. {
  31738. name: "PUPPY",
  31739. height: math.unit(20, "miles")
  31740. },
  31741. ]
  31742. ))
  31743. characterMakers.push(() => makeCharacter(
  31744. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31745. {
  31746. front: {
  31747. height: math.unit(6, "feet"),
  31748. weight: math.unit(150, "lb"),
  31749. name: "Front",
  31750. image: {
  31751. source: "./media/characters/en/front.svg",
  31752. extra: 1697 / 1563,
  31753. bottom: 103 / 1800
  31754. }
  31755. },
  31756. back: {
  31757. height: math.unit(6, "feet"),
  31758. weight: math.unit(150, "lb"),
  31759. name: "Back",
  31760. image: {
  31761. source: "./media/characters/en/back.svg",
  31762. extra: 1700 / 1570,
  31763. bottom: 51 / 1751
  31764. }
  31765. },
  31766. frontDressed: {
  31767. height: math.unit(6, "feet"),
  31768. weight: math.unit(150, "lb"),
  31769. name: "Front (Dressed)",
  31770. image: {
  31771. source: "./media/characters/en/front-dressed.svg",
  31772. extra: 1697 / 1563,
  31773. bottom: 103 / 1800
  31774. }
  31775. },
  31776. backDressed: {
  31777. height: math.unit(6, "feet"),
  31778. weight: math.unit(150, "lb"),
  31779. name: "Back (Dressed)",
  31780. image: {
  31781. source: "./media/characters/en/back-dressed.svg",
  31782. extra: 1700 / 1570,
  31783. bottom: 51 / 1751
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Macro",
  31790. height: math.unit(210, "feet"),
  31791. default: true
  31792. },
  31793. ]
  31794. ))
  31795. characterMakers.push(() => makeCharacter(
  31796. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31797. {
  31798. front: {
  31799. height: math.unit(6, "feet"),
  31800. weight: math.unit(150, "lb"),
  31801. name: "Front",
  31802. image: {
  31803. source: "./media/characters/haze-orris/front.svg",
  31804. extra: 3975 / 3525,
  31805. bottom: 137 / 4112
  31806. }
  31807. },
  31808. },
  31809. [
  31810. {
  31811. name: "Micro",
  31812. height: math.unit(150, "mm"),
  31813. default: true
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(6, "feet"),
  31822. weight: math.unit(150, "lb"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/casselene-yaro/front.svg",
  31826. extra: 4721 / 4541,
  31827. bottom: 82 / 4803
  31828. }
  31829. },
  31830. back: {
  31831. height: math.unit(6, "feet"),
  31832. weight: math.unit(150, "lb"),
  31833. name: "Back",
  31834. image: {
  31835. source: "./media/characters/casselene-yaro/back.svg",
  31836. extra: 4569 / 4377,
  31837. bottom: 69 / 4638
  31838. }
  31839. },
  31840. dressed: {
  31841. height: math.unit(6, "feet"),
  31842. weight: math.unit(150, "lb"),
  31843. name: "Dressed",
  31844. image: {
  31845. source: "./media/characters/casselene-yaro/dressed.svg",
  31846. extra: 4721 / 4541,
  31847. bottom: 82 / 4803
  31848. }
  31849. },
  31850. maw: {
  31851. height: math.unit(1, "feet"),
  31852. name: "Maw",
  31853. image: {
  31854. source: "./media/characters/casselene-yaro/maw.svg"
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Macro",
  31861. height: math.unit(190, "feet"),
  31862. default: true
  31863. },
  31864. ]
  31865. ))
  31866. characterMakers.push(() => makeCharacter(
  31867. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31868. {
  31869. front: {
  31870. height: math.unit(10, "feet"),
  31871. weight: math.unit(15015, "lb"),
  31872. name: "Front",
  31873. image: {
  31874. source: "./media/characters/platine/front.svg",
  31875. extra: 1741/1650,
  31876. bottom: 84/1825
  31877. }
  31878. },
  31879. side: {
  31880. height: math.unit(10, "feet"),
  31881. weight: math.unit(15015, "lb"),
  31882. name: "Side",
  31883. image: {
  31884. source: "./media/characters/platine/side.svg",
  31885. extra: 1790/1705,
  31886. bottom: 29/1819
  31887. }
  31888. },
  31889. },
  31890. [
  31891. {
  31892. name: "Normal",
  31893. height: math.unit(10, "feet"),
  31894. default: true
  31895. },
  31896. {
  31897. name: "Macro",
  31898. height: math.unit(100, "feet")
  31899. },
  31900. {
  31901. name: "Megamacro",
  31902. height: math.unit(1000, "feet")
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31908. {
  31909. front: {
  31910. height: math.unit(15 + 5 / 12, "feet"),
  31911. weight: math.unit(4600, "lb"),
  31912. name: "Front",
  31913. image: {
  31914. source: "./media/characters/neapolitan-ananassa/front.svg",
  31915. extra: 2903 / 2736,
  31916. bottom: 0 / 2903
  31917. }
  31918. },
  31919. side: {
  31920. height: math.unit(15 + 5 / 12, "feet"),
  31921. weight: math.unit(4600, "lb"),
  31922. name: "Side",
  31923. image: {
  31924. source: "./media/characters/neapolitan-ananassa/side.svg",
  31925. extra: 2925 / 2719,
  31926. bottom: 0 / 2925
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(15 + 5 / 12, "feet"),
  31931. weight: math.unit(4600, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/neapolitan-ananassa/back.svg",
  31935. extra: 2903 / 2736,
  31936. bottom: 0 / 2903
  31937. }
  31938. },
  31939. },
  31940. [
  31941. {
  31942. name: "Normal",
  31943. height: math.unit(15 + 5 / 12, "feet"),
  31944. default: true
  31945. },
  31946. {
  31947. name: "Post-Millenium",
  31948. height: math.unit(35 + 5 / 12, "feet")
  31949. },
  31950. {
  31951. name: "Post-Era",
  31952. height: math.unit(450 + 5 / 12, "feet")
  31953. },
  31954. ]
  31955. ))
  31956. characterMakers.push(() => makeCharacter(
  31957. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31958. {
  31959. front: {
  31960. height: math.unit(300, "meters"),
  31961. weight: math.unit(125000, "tonnes"),
  31962. name: "Front",
  31963. image: {
  31964. source: "./media/characters/pazuzu/front.svg",
  31965. extra: 877 / 794,
  31966. bottom: 47 / 924
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Macro",
  31973. height: math.unit(300, "meters"),
  31974. default: true
  31975. },
  31976. ]
  31977. ))
  31978. characterMakers.push(() => makeCharacter(
  31979. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31980. {
  31981. side: {
  31982. height: math.unit(10 + 7 / 12, "feet"),
  31983. weight: math.unit(2.5, "tons"),
  31984. name: "Side",
  31985. image: {
  31986. source: "./media/characters/aasha/side.svg",
  31987. extra: 1345 / 1245,
  31988. bottom: 111 / 1456
  31989. }
  31990. },
  31991. back: {
  31992. height: math.unit(10 + 7 / 12, "feet"),
  31993. weight: math.unit(2.5, "tons"),
  31994. name: "Back",
  31995. image: {
  31996. source: "./media/characters/aasha/back.svg",
  31997. extra: 1133 / 1057,
  31998. bottom: 257 / 1390
  31999. }
  32000. },
  32001. },
  32002. [
  32003. {
  32004. name: "Normal",
  32005. height: math.unit(10 + 7 / 12, "feet"),
  32006. default: true
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32012. {
  32013. front: {
  32014. height: math.unit(6 + 3 / 12, "feet"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/nevan/front.svg",
  32018. extra: 704 / 704,
  32019. bottom: 28 / 732
  32020. }
  32021. },
  32022. back: {
  32023. height: math.unit(6 + 3 / 12, "feet"),
  32024. name: "Back",
  32025. image: {
  32026. source: "./media/characters/nevan/back.svg",
  32027. extra: 714 / 714,
  32028. bottom: 21 / 735
  32029. }
  32030. },
  32031. frontFlaccid: {
  32032. height: math.unit(6 + 3 / 12, "feet"),
  32033. name: "Front (Flaccid)",
  32034. image: {
  32035. source: "./media/characters/nevan/front-flaccid.svg",
  32036. extra: 704 / 704,
  32037. bottom: 28 / 732
  32038. }
  32039. },
  32040. frontErect: {
  32041. height: math.unit(6 + 3 / 12, "feet"),
  32042. name: "Front (Erect)",
  32043. image: {
  32044. source: "./media/characters/nevan/front-erect.svg",
  32045. extra: 704 / 704,
  32046. bottom: 28 / 732
  32047. }
  32048. },
  32049. backFlaccid: {
  32050. height: math.unit(6 + 3 / 12, "feet"),
  32051. name: "Back (Flaccid)",
  32052. image: {
  32053. source: "./media/characters/nevan/back-flaccid.svg",
  32054. extra: 714 / 714,
  32055. bottom: 21 / 735
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(6 + 3 / 12, "feet"),
  32063. default: true
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32069. {
  32070. front: {
  32071. height: math.unit(4, "feet"),
  32072. name: "Front",
  32073. image: {
  32074. source: "./media/characters/arhan/front.svg",
  32075. extra: 3368 / 3133,
  32076. bottom: 0 / 3368
  32077. }
  32078. },
  32079. side: {
  32080. height: math.unit(4, "feet"),
  32081. name: "Side",
  32082. image: {
  32083. source: "./media/characters/arhan/side.svg",
  32084. extra: 3347 / 3105,
  32085. bottom: 0 / 3347
  32086. }
  32087. },
  32088. tongue: {
  32089. height: math.unit(1.42, "feet"),
  32090. name: "Tongue",
  32091. image: {
  32092. source: "./media/characters/arhan/tongue.svg"
  32093. }
  32094. },
  32095. head: {
  32096. height: math.unit(0.85, "feet"),
  32097. name: "Head",
  32098. image: {
  32099. source: "./media/characters/arhan/head.svg"
  32100. }
  32101. },
  32102. },
  32103. [
  32104. {
  32105. name: "Normal",
  32106. height: math.unit(4, "feet"),
  32107. default: true
  32108. },
  32109. ]
  32110. ))
  32111. characterMakers.push(() => makeCharacter(
  32112. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32113. {
  32114. front: {
  32115. height: math.unit(5 + 7.5 / 12, "feet"),
  32116. weight: math.unit(120, "lb"),
  32117. name: "Front",
  32118. image: {
  32119. source: "./media/characters/digi-duncan/front.svg",
  32120. extra: 330 / 326,
  32121. bottom: 16 / 346
  32122. }
  32123. },
  32124. side: {
  32125. height: math.unit(5 + 7.5 / 12, "feet"),
  32126. weight: math.unit(120, "lb"),
  32127. name: "Side",
  32128. image: {
  32129. source: "./media/characters/digi-duncan/side.svg",
  32130. extra: 341 / 337,
  32131. bottom: 1 / 342
  32132. }
  32133. },
  32134. back: {
  32135. height: math.unit(5 + 7.5 / 12, "feet"),
  32136. weight: math.unit(120, "lb"),
  32137. name: "Back",
  32138. image: {
  32139. source: "./media/characters/digi-duncan/back.svg",
  32140. extra: 330 / 326,
  32141. bottom: 12 / 342
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Speck",
  32148. height: math.unit(0.25, "mm")
  32149. },
  32150. {
  32151. name: "Micro",
  32152. height: math.unit(5, "mm")
  32153. },
  32154. {
  32155. name: "Tiny",
  32156. height: math.unit(0.5, "inches"),
  32157. default: true
  32158. },
  32159. {
  32160. name: "Human",
  32161. height: math.unit(5 + 7.5 / 12, "feet")
  32162. },
  32163. {
  32164. name: "Minigiant",
  32165. height: math.unit(8 + 5.25, "feet")
  32166. },
  32167. {
  32168. name: "Giant",
  32169. height: math.unit(2000, "feet")
  32170. },
  32171. {
  32172. name: "Mega",
  32173. height: math.unit(371.1, "miles")
  32174. },
  32175. ]
  32176. ))
  32177. characterMakers.push(() => makeCharacter(
  32178. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32179. {
  32180. front: {
  32181. height: math.unit(2, "meters"),
  32182. weight: math.unit(350, "kg"),
  32183. name: "Front",
  32184. image: {
  32185. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32186. extra: 898 / 838,
  32187. bottom: 9 / 907
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Micro",
  32194. height: math.unit(8, "meters")
  32195. },
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(50, "meters"),
  32199. default: true
  32200. },
  32201. {
  32202. name: "Macro",
  32203. height: math.unit(500, "meters")
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32209. {
  32210. front: {
  32211. height: math.unit(6 + 6 / 12, "feet"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/khardesh/front.svg",
  32215. extra: 1788/1596,
  32216. bottom: 66/1854
  32217. }
  32218. },
  32219. back: {
  32220. height: math.unit(6 + 6 / 12, "feet"),
  32221. name: "Back",
  32222. image: {
  32223. source: "./media/characters/khardesh/back.svg",
  32224. extra: 1781/1584,
  32225. bottom: 68/1849
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(6 + 6 / 12, "feet"),
  32233. default: true
  32234. },
  32235. {
  32236. name: "Normal+",
  32237. height: math.unit(4, "meters")
  32238. },
  32239. {
  32240. name: "Macro",
  32241. height: math.unit(50, "meters")
  32242. },
  32243. {
  32244. name: "Macro+",
  32245. height: math.unit(100, "meters")
  32246. },
  32247. {
  32248. name: "Megamacro",
  32249. height: math.unit(20, "km")
  32250. },
  32251. ]
  32252. ))
  32253. characterMakers.push(() => makeCharacter(
  32254. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32255. {
  32256. front: {
  32257. height: math.unit(6, "feet"),
  32258. weight: math.unit(150, "lb"),
  32259. name: "Front",
  32260. image: {
  32261. source: "./media/characters/kosho/front.svg",
  32262. extra: 1847 / 1847,
  32263. bottom: 86 / 1933
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Second-stage micro",
  32270. height: math.unit(0.5, "inches")
  32271. },
  32272. {
  32273. name: "First-stage micro",
  32274. height: math.unit(6, "inches")
  32275. },
  32276. {
  32277. name: "Normal",
  32278. height: math.unit(6, "feet"),
  32279. default: true
  32280. },
  32281. {
  32282. name: "First-stage macro",
  32283. height: math.unit(72, "feet")
  32284. },
  32285. {
  32286. name: "Second-stage macro",
  32287. height: math.unit(864, "feet")
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32293. {
  32294. normal: {
  32295. height: math.unit(4 + 6 / 12, "feet"),
  32296. name: "Normal",
  32297. image: {
  32298. source: "./media/characters/hydra/normal.svg",
  32299. extra: 2833 / 2634,
  32300. bottom: 68 / 2901
  32301. }
  32302. },
  32303. smol: {
  32304. height: math.unit(0.705, "inches"),
  32305. name: "Smol",
  32306. image: {
  32307. source: "./media/characters/hydra/smol.svg",
  32308. extra: 2715 / 2540,
  32309. bottom: 0 / 2715
  32310. }
  32311. },
  32312. },
  32313. [
  32314. {
  32315. name: "Normal",
  32316. height: math.unit(4 + 6 / 12, "feet"),
  32317. default: true
  32318. }
  32319. ]
  32320. ))
  32321. characterMakers.push(() => makeCharacter(
  32322. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32323. {
  32324. front: {
  32325. height: math.unit(0.6, "cm"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/daz/front.svg",
  32329. extra: 1682 / 1164,
  32330. bottom: 42 / 1724
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(0.6, "cm"),
  32338. default: true
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32344. {
  32345. front: {
  32346. height: math.unit(6, "feet"),
  32347. weight: math.unit(235, "lb"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/theo-pangolin/front.svg",
  32351. extra: 1996 / 1969,
  32352. bottom: 115 / 2111
  32353. }
  32354. },
  32355. back: {
  32356. height: math.unit(6, "feet"),
  32357. weight: math.unit(235, "lb"),
  32358. name: "Back",
  32359. image: {
  32360. source: "./media/characters/theo-pangolin/back.svg",
  32361. extra: 1979 / 1979,
  32362. bottom: 40 / 2019
  32363. }
  32364. },
  32365. feral: {
  32366. height: math.unit(2, "feet"),
  32367. weight: math.unit(30, "lb"),
  32368. name: "Feral",
  32369. image: {
  32370. source: "./media/characters/theo-pangolin/feral.svg",
  32371. extra: 803 / 791,
  32372. bottom: 181 / 984
  32373. }
  32374. },
  32375. footFive: {
  32376. height: math.unit(1.43, "feet"),
  32377. name: "Foot (Five Toes)",
  32378. image: {
  32379. source: "./media/characters/theo-pangolin/foot-five.svg"
  32380. }
  32381. },
  32382. footFour: {
  32383. height: math.unit(1.43, "feet"),
  32384. name: "Foot (Four Toes)",
  32385. image: {
  32386. source: "./media/characters/theo-pangolin/foot-four.svg"
  32387. }
  32388. },
  32389. handFour: {
  32390. height: math.unit(0.81, "feet"),
  32391. name: "Hand (Four Fingers)",
  32392. image: {
  32393. source: "./media/characters/theo-pangolin/hand-four.svg"
  32394. }
  32395. },
  32396. handThree: {
  32397. height: math.unit(0.81, "feet"),
  32398. name: "Hand (Three Fingers)",
  32399. image: {
  32400. source: "./media/characters/theo-pangolin/hand-three.svg"
  32401. }
  32402. },
  32403. headFront: {
  32404. height: math.unit(1.37, "feet"),
  32405. name: "Head (Front)",
  32406. image: {
  32407. source: "./media/characters/theo-pangolin/head-front.svg"
  32408. }
  32409. },
  32410. headSide: {
  32411. height: math.unit(1.43, "feet"),
  32412. name: "Head (Side)",
  32413. image: {
  32414. source: "./media/characters/theo-pangolin/head-side.svg"
  32415. }
  32416. },
  32417. tongue: {
  32418. height: math.unit(2.29, "feet"),
  32419. name: "Tongue",
  32420. image: {
  32421. source: "./media/characters/theo-pangolin/tongue.svg"
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Normal",
  32428. height: math.unit(6, "feet")
  32429. },
  32430. {
  32431. name: "Macro",
  32432. height: math.unit(400, "feet"),
  32433. default: true
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(6, "inches"),
  32442. weight: math.unit(0.036, "kg"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/renée/front.svg",
  32446. extra: 900 / 886,
  32447. bottom: 8 / 908
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Nano",
  32454. height: math.unit(1, "nm")
  32455. },
  32456. {
  32457. name: "Micro",
  32458. height: math.unit(1, "mm")
  32459. },
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(6, "inches")
  32463. },
  32464. {
  32465. name: "Macro",
  32466. height: math.unit(2000, "feet"),
  32467. default: true
  32468. },
  32469. {
  32470. name: "Megamacro",
  32471. height: math.unit(2, "km")
  32472. },
  32473. {
  32474. name: "Gigamacro",
  32475. height: math.unit(2000, "km")
  32476. },
  32477. {
  32478. name: "Teramacro",
  32479. height: math.unit(250000, "km")
  32480. },
  32481. ]
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32485. {
  32486. front: {
  32487. height: math.unit(4, "meters"),
  32488. weight: math.unit(150, "kg"),
  32489. name: "Front",
  32490. image: {
  32491. source: "./media/characters/caledvwlch/front.svg",
  32492. extra: 1757/1537,
  32493. bottom: 31/1788
  32494. }
  32495. },
  32496. side: {
  32497. height: math.unit(4, "meters"),
  32498. weight: math.unit(150, "kg"),
  32499. name: "Side",
  32500. image: {
  32501. source: "./media/characters/caledvwlch/side.svg",
  32502. extra: 1605 / 1536,
  32503. bottom: 31 / 1636
  32504. }
  32505. },
  32506. back: {
  32507. height: math.unit(4, "meters"),
  32508. weight: math.unit(150, "kg"),
  32509. name: "Back",
  32510. image: {
  32511. source: "./media/characters/caledvwlch/back.svg",
  32512. extra: 1635 / 1565,
  32513. bottom: 27 / 1662
  32514. }
  32515. },
  32516. },
  32517. [
  32518. {
  32519. name: "\"Incognito\"",
  32520. height: math.unit(4, "meters")
  32521. },
  32522. {
  32523. name: "Small rampage",
  32524. height: math.unit(600, "meters")
  32525. },
  32526. {
  32527. name: "Mega",
  32528. height: math.unit(30, "km")
  32529. },
  32530. {
  32531. name: "Home-size",
  32532. height: math.unit(50, "km"),
  32533. default: true
  32534. },
  32535. {
  32536. name: "Giga",
  32537. height: math.unit(300, "km")
  32538. },
  32539. {
  32540. name: "Lounging",
  32541. height: math.unit(11000, "km")
  32542. },
  32543. {
  32544. name: "Planet snacking",
  32545. height: math.unit(2000000, "km")
  32546. },
  32547. ]
  32548. ))
  32549. characterMakers.push(() => makeCharacter(
  32550. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32551. {
  32552. front: {
  32553. height: math.unit(6, "feet"),
  32554. weight: math.unit(215, "lb"),
  32555. name: "Front",
  32556. image: {
  32557. source: "./media/characters/sapphire-svell/front.svg",
  32558. extra: 495 / 455,
  32559. bottom: 20 / 515
  32560. }
  32561. },
  32562. back: {
  32563. height: math.unit(6, "feet"),
  32564. weight: math.unit(216, "lb"),
  32565. name: "Back",
  32566. image: {
  32567. source: "./media/characters/sapphire-svell/back.svg",
  32568. extra: 497 / 477,
  32569. bottom: 7 / 504
  32570. }
  32571. },
  32572. maw: {
  32573. height: math.unit(1.57, "feet"),
  32574. name: "Maw",
  32575. image: {
  32576. source: "./media/characters/sapphire-svell/maw.svg"
  32577. }
  32578. },
  32579. foot: {
  32580. height: math.unit(1.07, "feet"),
  32581. name: "Foot",
  32582. image: {
  32583. source: "./media/characters/sapphire-svell/foot.svg"
  32584. }
  32585. },
  32586. toering: {
  32587. height: math.unit(1.7, "inch"),
  32588. name: "Toering",
  32589. image: {
  32590. source: "./media/characters/sapphire-svell/toering.svg"
  32591. }
  32592. },
  32593. },
  32594. [
  32595. {
  32596. name: "Normal",
  32597. height: math.unit(300, "feet"),
  32598. default: true
  32599. },
  32600. {
  32601. name: "Augmented",
  32602. height: math.unit(1250, "feet")
  32603. },
  32604. {
  32605. name: "Unleashed",
  32606. height: math.unit(3000, "feet")
  32607. },
  32608. ]
  32609. ))
  32610. characterMakers.push(() => makeCharacter(
  32611. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32612. {
  32613. side: {
  32614. height: math.unit(2 + 3 / 12, "feet"),
  32615. weight: math.unit(110, "lb"),
  32616. name: "Side",
  32617. image: {
  32618. source: "./media/characters/glitch-flux/side.svg",
  32619. extra: 997 / 805,
  32620. bottom: 20 / 1017
  32621. }
  32622. },
  32623. },
  32624. [
  32625. {
  32626. name: "Normal",
  32627. height: math.unit(2 + 3 / 12, "feet"),
  32628. default: true
  32629. },
  32630. ]
  32631. ))
  32632. characterMakers.push(() => makeCharacter(
  32633. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32634. {
  32635. front: {
  32636. height: math.unit(4, "meters"),
  32637. name: "Front",
  32638. image: {
  32639. source: "./media/characters/mid/front.svg",
  32640. extra: 507 / 476,
  32641. bottom: 17 / 524
  32642. }
  32643. },
  32644. back: {
  32645. height: math.unit(4, "meters"),
  32646. name: "Back",
  32647. image: {
  32648. source: "./media/characters/mid/back.svg",
  32649. extra: 519 / 487,
  32650. bottom: 7 / 526
  32651. }
  32652. },
  32653. stuck: {
  32654. height: math.unit(2.2, "meters"),
  32655. name: "Stuck",
  32656. image: {
  32657. source: "./media/characters/mid/stuck.svg",
  32658. extra: 1951 / 1869,
  32659. bottom: 88 / 2039
  32660. }
  32661. }
  32662. },
  32663. [
  32664. {
  32665. name: "Normal",
  32666. height: math.unit(4, "meters"),
  32667. default: true
  32668. },
  32669. {
  32670. name: "Big",
  32671. height: math.unit(10, "meters")
  32672. },
  32673. {
  32674. name: "Macro",
  32675. height: math.unit(800, "meters")
  32676. },
  32677. {
  32678. name: "Megamacro",
  32679. height: math.unit(100, "km")
  32680. },
  32681. {
  32682. name: "Overgrown",
  32683. height: math.unit(1, "parsec")
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32689. {
  32690. front: {
  32691. height: math.unit(2.5, "meters"),
  32692. weight: math.unit(225, "kg"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/iris/front.svg",
  32696. extra: 3348 / 3251,
  32697. bottom: 205 / 3553
  32698. }
  32699. },
  32700. maw: {
  32701. height: math.unit(0.56, "meter"),
  32702. name: "Maw",
  32703. image: {
  32704. source: "./media/characters/iris/maw.svg"
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Mewter cat",
  32711. height: math.unit(1.2, "meters")
  32712. },
  32713. {
  32714. name: "Normal",
  32715. height: math.unit(2.5, "meters"),
  32716. default: true
  32717. },
  32718. {
  32719. name: "Minimacro",
  32720. height: math.unit(18, "feet")
  32721. },
  32722. {
  32723. name: "Macro",
  32724. height: math.unit(140, "feet")
  32725. },
  32726. {
  32727. name: "Macro+",
  32728. height: math.unit(180, "meters")
  32729. },
  32730. {
  32731. name: "Megamacro",
  32732. height: math.unit(2746, "meters")
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32738. {
  32739. front: {
  32740. height: math.unit(6, "feet"),
  32741. weight: math.unit(135, "lb"),
  32742. name: "Front",
  32743. image: {
  32744. source: "./media/characters/axel/front.svg",
  32745. extra: 908 / 908,
  32746. bottom: 58 / 966
  32747. }
  32748. },
  32749. side: {
  32750. height: math.unit(6, "feet"),
  32751. weight: math.unit(135, "lb"),
  32752. name: "Side",
  32753. image: {
  32754. source: "./media/characters/axel/side.svg",
  32755. extra: 958 / 958,
  32756. bottom: 11 / 969
  32757. }
  32758. },
  32759. back: {
  32760. height: math.unit(6, "feet"),
  32761. weight: math.unit(135, "lb"),
  32762. name: "Back",
  32763. image: {
  32764. source: "./media/characters/axel/back.svg",
  32765. extra: 887 / 887,
  32766. bottom: 34 / 921
  32767. }
  32768. },
  32769. head: {
  32770. height: math.unit(1.07, "feet"),
  32771. name: "Head",
  32772. image: {
  32773. source: "./media/characters/axel/head.svg"
  32774. }
  32775. },
  32776. beak: {
  32777. height: math.unit(1.4, "feet"),
  32778. name: "Beak",
  32779. image: {
  32780. source: "./media/characters/axel/beak.svg"
  32781. }
  32782. },
  32783. beakSide: {
  32784. height: math.unit(1.4, "feet"),
  32785. name: "Beak Side",
  32786. image: {
  32787. source: "./media/characters/axel/beak-side.svg"
  32788. }
  32789. },
  32790. sheath: {
  32791. height: math.unit(0.5, "feet"),
  32792. name: "Sheath",
  32793. image: {
  32794. source: "./media/characters/axel/sheath.svg"
  32795. }
  32796. },
  32797. dick: {
  32798. height: math.unit(0.98, "feet"),
  32799. name: "Dick",
  32800. image: {
  32801. source: "./media/characters/axel/dick.svg"
  32802. }
  32803. },
  32804. },
  32805. [
  32806. {
  32807. name: "Macro",
  32808. height: math.unit(68, "meters"),
  32809. default: true
  32810. },
  32811. ]
  32812. ))
  32813. characterMakers.push(() => makeCharacter(
  32814. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32815. {
  32816. front: {
  32817. height: math.unit(3.5, "meters"),
  32818. weight: math.unit(1200, "kg"),
  32819. name: "Front",
  32820. image: {
  32821. source: "./media/characters/joanna/front.svg",
  32822. extra: 1596 / 1488,
  32823. bottom: 29 / 1625
  32824. }
  32825. },
  32826. back: {
  32827. height: math.unit(3.5, "meters"),
  32828. weight: math.unit(1200, "kg"),
  32829. name: "Back",
  32830. image: {
  32831. source: "./media/characters/joanna/back.svg",
  32832. extra: 1594 / 1495,
  32833. bottom: 26 / 1620
  32834. }
  32835. },
  32836. frontShorts: {
  32837. height: math.unit(3.5, "meters"),
  32838. weight: math.unit(1200, "kg"),
  32839. name: "Front (Shorts)",
  32840. image: {
  32841. source: "./media/characters/joanna/front-shorts.svg",
  32842. extra: 1596 / 1488,
  32843. bottom: 29 / 1625
  32844. }
  32845. },
  32846. frontBiker: {
  32847. height: math.unit(3.5, "meters"),
  32848. weight: math.unit(1200, "kg"),
  32849. name: "Front (Biker)",
  32850. image: {
  32851. source: "./media/characters/joanna/front-biker.svg",
  32852. extra: 1596 / 1488,
  32853. bottom: 29 / 1625
  32854. }
  32855. },
  32856. backBiker: {
  32857. height: math.unit(3.5, "meters"),
  32858. weight: math.unit(1200, "kg"),
  32859. name: "Back (Biker)",
  32860. image: {
  32861. source: "./media/characters/joanna/back-biker.svg",
  32862. extra: 1594 / 1495,
  32863. bottom: 88 / 1682
  32864. }
  32865. },
  32866. bikeLeft: {
  32867. height: math.unit(2.4, "meters"),
  32868. weight: math.unit(1600, "kg"),
  32869. name: "Bike (Left)",
  32870. image: {
  32871. source: "./media/characters/joanna/bike-left.svg",
  32872. extra: 720 / 720,
  32873. bottom: 8 / 728
  32874. }
  32875. },
  32876. bikeRight: {
  32877. height: math.unit(2.4, "meters"),
  32878. weight: math.unit(1600, "kg"),
  32879. name: "Bike (Right)",
  32880. image: {
  32881. source: "./media/characters/joanna/bike-right.svg",
  32882. extra: 720 / 720,
  32883. bottom: 8 / 728
  32884. }
  32885. },
  32886. },
  32887. [
  32888. {
  32889. name: "Incognito",
  32890. height: math.unit(3.5, "meters")
  32891. },
  32892. {
  32893. name: "Casual Big",
  32894. height: math.unit(200, "meters")
  32895. },
  32896. {
  32897. name: "Macro",
  32898. height: math.unit(600, "meters")
  32899. },
  32900. {
  32901. name: "Original",
  32902. height: math.unit(20, "km"),
  32903. default: true
  32904. },
  32905. {
  32906. name: "Giga",
  32907. height: math.unit(400, "km")
  32908. },
  32909. {
  32910. name: "Lounging",
  32911. height: math.unit(1500, "km")
  32912. },
  32913. {
  32914. name: "Planetary",
  32915. height: math.unit(200000, "km")
  32916. },
  32917. ]
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32921. {
  32922. front: {
  32923. height: math.unit(6, "feet"),
  32924. weight: math.unit(150, "lb"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/hugo-sigil/front.svg",
  32928. extra: 522 / 500,
  32929. bottom: 2 / 524
  32930. }
  32931. },
  32932. back: {
  32933. height: math.unit(6, "feet"),
  32934. weight: math.unit(150, "lb"),
  32935. name: "Back",
  32936. image: {
  32937. source: "./media/characters/hugo-sigil/back.svg",
  32938. extra: 519 / 495,
  32939. bottom: 5 / 524
  32940. }
  32941. },
  32942. maw: {
  32943. height: math.unit(1.4, "feet"),
  32944. weight: math.unit(150, "lb"),
  32945. name: "Maw",
  32946. image: {
  32947. source: "./media/characters/hugo-sigil/maw.svg"
  32948. }
  32949. },
  32950. feet: {
  32951. height: math.unit(1.56, "feet"),
  32952. weight: math.unit(150, "lb"),
  32953. name: "Feet",
  32954. image: {
  32955. source: "./media/characters/hugo-sigil/feet.svg",
  32956. extra: 177 / 177,
  32957. bottom: 12 / 189
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(6, "feet")
  32965. },
  32966. {
  32967. name: "Macro",
  32968. height: math.unit(200, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32975. {
  32976. front: {
  32977. height: math.unit(6, "feet"),
  32978. weight: math.unit(150, "lb"),
  32979. name: "Front",
  32980. image: {
  32981. source: "./media/characters/peri/front.svg",
  32982. extra: 2354 / 2233,
  32983. bottom: 49 / 2403
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Really Small",
  32990. height: math.unit(1, "nm")
  32991. },
  32992. {
  32993. name: "Micro",
  32994. height: math.unit(4, "inches")
  32995. },
  32996. {
  32997. name: "Normal",
  32998. height: math.unit(7, "inches"),
  32999. default: true
  33000. },
  33001. {
  33002. name: "Macro",
  33003. height: math.unit(400, "feet")
  33004. },
  33005. {
  33006. name: "Megamacro",
  33007. height: math.unit(100, "miles")
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33013. {
  33014. frontSlim: {
  33015. height: math.unit(7, "feet"),
  33016. name: "Front (Slim)",
  33017. image: {
  33018. source: "./media/characters/issilora/front-slim.svg",
  33019. extra: 529 / 449,
  33020. bottom: 53 / 582
  33021. }
  33022. },
  33023. sideSlim: {
  33024. height: math.unit(7, "feet"),
  33025. name: "Side (Slim)",
  33026. image: {
  33027. source: "./media/characters/issilora/side-slim.svg",
  33028. extra: 570 / 480,
  33029. bottom: 30 / 600
  33030. }
  33031. },
  33032. backSlim: {
  33033. height: math.unit(7, "feet"),
  33034. name: "Back (Slim)",
  33035. image: {
  33036. source: "./media/characters/issilora/back-slim.svg",
  33037. extra: 537 / 455,
  33038. bottom: 46 / 583
  33039. }
  33040. },
  33041. frontBuff: {
  33042. height: math.unit(7, "feet"),
  33043. name: "Front (Buff)",
  33044. image: {
  33045. source: "./media/characters/issilora/front-buff.svg",
  33046. extra: 2310 / 2035,
  33047. bottom: 335 / 2645
  33048. }
  33049. },
  33050. head: {
  33051. height: math.unit(1.94, "feet"),
  33052. name: "Head",
  33053. image: {
  33054. source: "./media/characters/issilora/head.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Minimum",
  33061. height: math.unit(7, "feet")
  33062. },
  33063. {
  33064. name: "Comfortable",
  33065. height: math.unit(17, "feet")
  33066. },
  33067. {
  33068. name: "Fun Size",
  33069. height: math.unit(47, "feet")
  33070. },
  33071. {
  33072. name: "Natural Macro",
  33073. height: math.unit(137, "feet"),
  33074. default: true
  33075. },
  33076. {
  33077. name: "Maximum Kaiju",
  33078. height: math.unit(397, "feet")
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33084. {
  33085. front: {
  33086. height: math.unit(50 + 9/12, "feet"),
  33087. weight: math.unit(32.8, "tons"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/irb'iiritaahn/front.svg",
  33091. extra: 1878/1826,
  33092. bottom: 326/2204
  33093. }
  33094. },
  33095. back: {
  33096. height: math.unit(50 + 9/12, "feet"),
  33097. weight: math.unit(32.8, "tons"),
  33098. name: "Back",
  33099. image: {
  33100. source: "./media/characters/irb'iiritaahn/back.svg",
  33101. extra: 2052/2018,
  33102. bottom: 152/2204
  33103. }
  33104. },
  33105. head: {
  33106. height: math.unit(12.86, "feet"),
  33107. name: "Head",
  33108. image: {
  33109. source: "./media/characters/irb'iiritaahn/head.svg"
  33110. }
  33111. },
  33112. maw: {
  33113. height: math.unit(9.66, "feet"),
  33114. name: "Maw",
  33115. image: {
  33116. source: "./media/characters/irb'iiritaahn/maw.svg"
  33117. }
  33118. },
  33119. frontDick: {
  33120. height: math.unit(8.78461, "feet"),
  33121. name: "Front Dick",
  33122. image: {
  33123. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33124. }
  33125. },
  33126. rearDick: {
  33127. height: math.unit(8.78461, "feet"),
  33128. name: "Rear Dick",
  33129. image: {
  33130. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33131. }
  33132. },
  33133. rearDickUnfolded: {
  33134. height: math.unit(8.78, "feet"),
  33135. name: "Rear Dick (Unfolded)",
  33136. image: {
  33137. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33138. }
  33139. },
  33140. wings: {
  33141. height: math.unit(43, "feet"),
  33142. name: "Wings",
  33143. image: {
  33144. source: "./media/characters/irb'iiritaahn/wings.svg"
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Macro",
  33151. height: math.unit(50 + 9/12, "feet"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(205, "cm"),
  33161. weight: math.unit(102, "kg"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/irbisgreif/front.svg",
  33165. extra: 785/706,
  33166. bottom: 13/798
  33167. }
  33168. },
  33169. back: {
  33170. height: math.unit(205, "cm"),
  33171. weight: math.unit(102, "kg"),
  33172. name: "Back",
  33173. image: {
  33174. source: "./media/characters/irbisgreif/back.svg",
  33175. extra: 713/701,
  33176. bottom: 26/739
  33177. }
  33178. },
  33179. frontDressed: {
  33180. height: math.unit(216, "cm"),
  33181. weight: math.unit(102, "kg"),
  33182. name: "Front-dressed",
  33183. image: {
  33184. source: "./media/characters/irbisgreif/front-dressed.svg",
  33185. extra: 902/776,
  33186. bottom: 14/916
  33187. }
  33188. },
  33189. sideDressed: {
  33190. height: math.unit(195, "cm"),
  33191. weight: math.unit(102, "kg"),
  33192. name: "Side-dressed",
  33193. image: {
  33194. source: "./media/characters/irbisgreif/side-dressed.svg",
  33195. extra: 788/688,
  33196. bottom: 21/809
  33197. }
  33198. },
  33199. backDressed: {
  33200. height: math.unit(216, "cm"),
  33201. weight: math.unit(102, "kg"),
  33202. name: "Back-dressed",
  33203. image: {
  33204. source: "./media/characters/irbisgreif/back-dressed.svg",
  33205. extra: 901/783,
  33206. bottom: 10/911
  33207. }
  33208. },
  33209. dick: {
  33210. height: math.unit(0.49, "feet"),
  33211. name: "Dick",
  33212. image: {
  33213. source: "./media/characters/irbisgreif/dick.svg"
  33214. }
  33215. },
  33216. wingTop: {
  33217. height: math.unit(1.93 , "feet"),
  33218. name: "Wing-top",
  33219. image: {
  33220. source: "./media/characters/irbisgreif/wing-top.svg"
  33221. }
  33222. },
  33223. wingBottom: {
  33224. height: math.unit(1.93 , "feet"),
  33225. name: "Wing-bottom",
  33226. image: {
  33227. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33228. }
  33229. },
  33230. },
  33231. [
  33232. {
  33233. name: "Normal",
  33234. height: math.unit(216, "cm"),
  33235. default: true
  33236. },
  33237. ]
  33238. ))
  33239. characterMakers.push(() => makeCharacter(
  33240. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33241. {
  33242. front: {
  33243. height: math.unit(6, "feet"),
  33244. weight: math.unit(150, "lb"),
  33245. name: "Front",
  33246. image: {
  33247. source: "./media/characters/pride/front.svg",
  33248. extra: 1299/1230,
  33249. bottom: 18/1317
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(7, "feet")
  33257. },
  33258. {
  33259. name: "Mini-macro",
  33260. height: math.unit(11, "feet")
  33261. },
  33262. {
  33263. name: "Macro",
  33264. height: math.unit(15, "meters"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Macro+",
  33269. height: math.unit(40, "meters")
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33275. {
  33276. front: {
  33277. height: math.unit(4 + 2 / 12, "feet"),
  33278. weight: math.unit(95, "lb"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/vaelophis-nyx/front.svg",
  33282. extra: 2532/2330,
  33283. bottom: 0/2532
  33284. }
  33285. },
  33286. back: {
  33287. height: math.unit(4 + 2 / 12, "feet"),
  33288. weight: math.unit(95, "lb"),
  33289. name: "Back",
  33290. image: {
  33291. source: "./media/characters/vaelophis-nyx/back.svg",
  33292. extra: 2484/2361,
  33293. bottom: 0/2484
  33294. }
  33295. },
  33296. feralSide: {
  33297. height: math.unit(2 + 1/12, "feet"),
  33298. weight: math.unit(20, "lb"),
  33299. name: "Feral (Side)",
  33300. image: {
  33301. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33302. extra: 1721/1581,
  33303. bottom: 70/1791
  33304. }
  33305. },
  33306. feralLazing: {
  33307. height: math.unit(1.08, "feet"),
  33308. weight: math.unit(20, "lb"),
  33309. name: "Feral (Lazing)",
  33310. image: {
  33311. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33312. extra: 822/822,
  33313. bottom: 248/1070
  33314. }
  33315. },
  33316. ear: {
  33317. height: math.unit(0.416, "feet"),
  33318. name: "Ear",
  33319. image: {
  33320. source: "./media/characters/vaelophis-nyx/ear.svg"
  33321. }
  33322. },
  33323. eye: {
  33324. height: math.unit(0.0748, "feet"),
  33325. name: "Eye",
  33326. image: {
  33327. source: "./media/characters/vaelophis-nyx/eye.svg"
  33328. }
  33329. },
  33330. mouth: {
  33331. height: math.unit(0.378, "feet"),
  33332. name: "Mouth",
  33333. image: {
  33334. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33335. }
  33336. },
  33337. spade: {
  33338. height: math.unit(0.55, "feet"),
  33339. name: "Spade",
  33340. image: {
  33341. source: "./media/characters/vaelophis-nyx/spade.svg"
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "Normal",
  33348. height: math.unit(4 + 2/12, "feet"),
  33349. default: true
  33350. },
  33351. ]
  33352. ))
  33353. characterMakers.push(() => makeCharacter(
  33354. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33355. {
  33356. front: {
  33357. height: math.unit(7, "feet"),
  33358. weight: math.unit(231, "lb"),
  33359. name: "Front",
  33360. image: {
  33361. source: "./media/characters/flux/front.svg",
  33362. extra: 919/871,
  33363. bottom: 0/919
  33364. }
  33365. },
  33366. back: {
  33367. height: math.unit(7, "feet"),
  33368. weight: math.unit(231, "lb"),
  33369. name: "Back",
  33370. image: {
  33371. source: "./media/characters/flux/back.svg",
  33372. extra: 1040/992,
  33373. bottom: 0/1040
  33374. }
  33375. },
  33376. frontDressed: {
  33377. height: math.unit(7, "feet"),
  33378. weight: math.unit(231, "lb"),
  33379. name: "Front (Dressed)",
  33380. image: {
  33381. source: "./media/characters/flux/front-dressed.svg",
  33382. extra: 919/871,
  33383. bottom: 0/919
  33384. }
  33385. },
  33386. feralSide: {
  33387. height: math.unit(5, "feet"),
  33388. weight: math.unit(150, "lb"),
  33389. name: "Feral (Side)",
  33390. image: {
  33391. source: "./media/characters/flux/feral-side.svg",
  33392. extra: 598/528,
  33393. bottom: 28/626
  33394. }
  33395. },
  33396. head: {
  33397. height: math.unit(1.585, "feet"),
  33398. name: "Head",
  33399. image: {
  33400. source: "./media/characters/flux/head.svg"
  33401. }
  33402. },
  33403. headSide: {
  33404. height: math.unit(1.74, "feet"),
  33405. name: "Head (Side)",
  33406. image: {
  33407. source: "./media/characters/flux/head-side.svg"
  33408. }
  33409. },
  33410. headSideFire: {
  33411. height: math.unit(1.76, "feet"),
  33412. name: "Head (Side, Fire)",
  33413. image: {
  33414. source: "./media/characters/flux/head-side-fire.svg"
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(7, "feet"),
  33422. default: true
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33428. {
  33429. front: {
  33430. height: math.unit(9, "feet"),
  33431. weight: math.unit(1012, "lb"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/ulfra-lupae/front.svg",
  33435. extra: 1083/1011,
  33436. bottom: 67/1150
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Micro",
  33443. height: math.unit(6, "inches")
  33444. },
  33445. {
  33446. name: "Socializing",
  33447. height: math.unit(6 + 5/12, "feet")
  33448. },
  33449. {
  33450. name: "Normal",
  33451. height: math.unit(9, "feet"),
  33452. default: true
  33453. },
  33454. {
  33455. name: "Macro",
  33456. height: math.unit(150, "feet")
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(5 + 2/12, "feet"),
  33465. weight: math.unit(120, "lb"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/timber/front.svg",
  33469. extra: 2814/2705,
  33470. bottom: 181/2995
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(5 + 2/12, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(9, "feet"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/nicki/front.svg",
  33490. extra: 1240/990,
  33491. bottom: 45/1285
  33492. },
  33493. form: "anthro",
  33494. default: true
  33495. },
  33496. side: {
  33497. height: math.unit(9, "feet"),
  33498. name: "Side",
  33499. image: {
  33500. source: "./media/characters/nicki/side.svg",
  33501. extra: 1047/973,
  33502. bottom: 61/1108
  33503. },
  33504. form: "anthro"
  33505. },
  33506. back: {
  33507. height: math.unit(9, "feet"),
  33508. name: "Back",
  33509. image: {
  33510. source: "./media/characters/nicki/back.svg",
  33511. extra: 1006/965,
  33512. bottom: 39/1045
  33513. },
  33514. form: "anthro"
  33515. },
  33516. taur: {
  33517. height: math.unit(15, "feet"),
  33518. name: "Taur",
  33519. image: {
  33520. source: "./media/characters/nicki/taur.svg",
  33521. extra: 1592/1347,
  33522. bottom: 0/1592
  33523. },
  33524. form: "taur",
  33525. default: true
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(9, "feet"),
  33532. form: "anthro",
  33533. default: true
  33534. },
  33535. {
  33536. name: "Normal",
  33537. height: math.unit(15, "feet"),
  33538. form: "taur",
  33539. default: true
  33540. }
  33541. ],
  33542. {
  33543. "anthro": {
  33544. name: "Anthro",
  33545. default: true
  33546. },
  33547. "taur": {
  33548. name: "Taur"
  33549. }
  33550. }
  33551. ))
  33552. characterMakers.push(() => makeCharacter(
  33553. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33554. {
  33555. front: {
  33556. height: math.unit(7 + 10/12, "feet"),
  33557. weight: math.unit(3.5, "tons"),
  33558. name: "Front",
  33559. image: {
  33560. source: "./media/characters/lee/front.svg",
  33561. extra: 1773/1615,
  33562. bottom: 86/1859
  33563. }
  33564. },
  33565. hand: {
  33566. height: math.unit(1.78, "feet"),
  33567. name: "Hand",
  33568. image: {
  33569. source: "./media/characters/lee/hand.svg"
  33570. }
  33571. },
  33572. maw: {
  33573. height: math.unit(1.18, "feet"),
  33574. name: "Maw",
  33575. image: {
  33576. source: "./media/characters/lee/maw.svg"
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(7 + 10/12, "feet"),
  33584. default: true
  33585. },
  33586. ]
  33587. ))
  33588. characterMakers.push(() => makeCharacter(
  33589. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33590. {
  33591. front: {
  33592. height: math.unit(9, "feet"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/guti/front.svg",
  33596. extra: 4551/4355,
  33597. bottom: 123/4674
  33598. }
  33599. },
  33600. tongue: {
  33601. height: math.unit(1, "feet"),
  33602. name: "Tongue",
  33603. image: {
  33604. source: "./media/characters/guti/tongue.svg"
  33605. }
  33606. },
  33607. paw: {
  33608. height: math.unit(1.18, "feet"),
  33609. name: "Paw",
  33610. image: {
  33611. source: "./media/characters/guti/paw.svg"
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(9, "feet"),
  33619. default: true
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33625. {
  33626. side: {
  33627. height: math.unit(5, "meters"),
  33628. name: "Side",
  33629. image: {
  33630. source: "./media/characters/vesper/side.svg",
  33631. extra: 1605/1518,
  33632. bottom: 0/1605
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Small",
  33639. height: math.unit(5, "meters")
  33640. },
  33641. {
  33642. name: "Sage",
  33643. height: math.unit(100, "meters"),
  33644. default: true
  33645. },
  33646. {
  33647. name: "Fun Size",
  33648. height: math.unit(600, "meters")
  33649. },
  33650. {
  33651. name: "Goddess",
  33652. height: math.unit(20000, "km")
  33653. },
  33654. {
  33655. name: "Maximum",
  33656. height: math.unit(5, "galaxies")
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(6 + 3/12, "feet"),
  33665. weight: math.unit(190, "lb"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/gawain/front.svg",
  33669. extra: 2222/2139,
  33670. bottom: 90/2312
  33671. }
  33672. },
  33673. back: {
  33674. height: math.unit(6 + 3/12, "feet"),
  33675. weight: math.unit(190, "lb"),
  33676. name: "Back",
  33677. image: {
  33678. source: "./media/characters/gawain/back.svg",
  33679. extra: 2199/2111,
  33680. bottom: 73/2272
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Normal",
  33687. height: math.unit(6 + 3/12, "feet"),
  33688. default: true
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33694. {
  33695. side: {
  33696. height: math.unit(3.5, "meters"),
  33697. weight: math.unit(16000, "lb"),
  33698. name: "Side",
  33699. image: {
  33700. source: "./media/characters/dascalti/side.svg",
  33701. extra: 392/273,
  33702. bottom: 47/439
  33703. }
  33704. },
  33705. breath: {
  33706. height: math.unit(7.4, "feet"),
  33707. name: "Breath",
  33708. image: {
  33709. source: "./media/characters/dascalti/breath.svg"
  33710. }
  33711. },
  33712. fed: {
  33713. height: math.unit(3.6, "meters"),
  33714. weight: math.unit(16000, "lb"),
  33715. name: "Fed",
  33716. image: {
  33717. source: "./media/characters/dascalti/fed.svg",
  33718. extra: 1419/820,
  33719. bottom: 95/1514
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(3.5, "meters"),
  33727. default: true
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(3 + 5/12, "feet"),
  33736. name: "Front",
  33737. image: {
  33738. source: "./media/characters/mauve/front.svg",
  33739. extra: 1126/1033,
  33740. bottom: 65/1191
  33741. }
  33742. },
  33743. side: {
  33744. height: math.unit(3 + 5/12, "feet"),
  33745. name: "Side",
  33746. image: {
  33747. source: "./media/characters/mauve/side.svg",
  33748. extra: 1089/1001,
  33749. bottom: 29/1118
  33750. }
  33751. },
  33752. back: {
  33753. height: math.unit(3 + 5/12, "feet"),
  33754. name: "Back",
  33755. image: {
  33756. source: "./media/characters/mauve/back.svg",
  33757. extra: 1173/1053,
  33758. bottom: 109/1282
  33759. }
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(3 + 5/12, "feet"),
  33766. default: true
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(6 + 3/12, "feet"),
  33775. weight: math.unit(430, "lb"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/carlos/front.svg",
  33779. extra: 1964/1913,
  33780. bottom: 70/2034
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(6 + 3/12, "feet"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33794. {
  33795. back: {
  33796. height: math.unit(5 + 10/12, "feet"),
  33797. weight: math.unit(200, "lb"),
  33798. name: "Back",
  33799. image: {
  33800. source: "./media/characters/jax/back.svg",
  33801. extra: 764/739,
  33802. bottom: 25/789
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Normal",
  33809. height: math.unit(5 + 10/12, "feet"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(8, "feet"),
  33819. weight: math.unit(250, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/eikthynir/front.svg",
  33823. extra: 1332/1166,
  33824. bottom: 82/1414
  33825. }
  33826. },
  33827. back: {
  33828. height: math.unit(8, "feet"),
  33829. weight: math.unit(250, "lb"),
  33830. name: "Back",
  33831. image: {
  33832. source: "./media/characters/eikthynir/back.svg",
  33833. extra: 1342/1190,
  33834. bottom: 19/1361
  33835. }
  33836. },
  33837. dick: {
  33838. height: math.unit(2.35, "feet"),
  33839. name: "Dick",
  33840. image: {
  33841. source: "./media/characters/eikthynir/dick.svg"
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(8, "feet"),
  33849. default: true
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33855. {
  33856. front: {
  33857. height: math.unit(99, "meters"),
  33858. weight: math.unit(13000, "tons"),
  33859. name: "Front",
  33860. image: {
  33861. source: "./media/characters/zlmos/front.svg",
  33862. extra: 2202/1992,
  33863. bottom: 315/2517
  33864. }
  33865. },
  33866. },
  33867. [
  33868. {
  33869. name: "Macro",
  33870. height: math.unit(99, "meters"),
  33871. default: true
  33872. },
  33873. ]
  33874. ))
  33875. characterMakers.push(() => makeCharacter(
  33876. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33877. {
  33878. front: {
  33879. height: math.unit(6 + 5/12, "feet"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/purri/front.svg",
  33883. extra: 1698/1610,
  33884. bottom: 32/1730
  33885. }
  33886. },
  33887. frontAlt: {
  33888. height: math.unit(6 + 5/12, "feet"),
  33889. name: "Front (Alt)",
  33890. image: {
  33891. source: "./media/characters/purri/front-alt.svg",
  33892. extra: 450/420,
  33893. bottom: 26/476
  33894. }
  33895. },
  33896. boots: {
  33897. height: math.unit(5.5, "feet"),
  33898. name: "Boots",
  33899. image: {
  33900. source: "./media/characters/purri/boots.svg",
  33901. extra: 905/853,
  33902. bottom: 18/923
  33903. }
  33904. },
  33905. lying: {
  33906. height: math.unit(2, "feet"),
  33907. name: "Lying",
  33908. image: {
  33909. source: "./media/characters/purri/lying.svg",
  33910. extra: 940/843,
  33911. bottom: 146/1086
  33912. }
  33913. },
  33914. devious: {
  33915. height: math.unit(1.77, "feet"),
  33916. name: "Devious",
  33917. image: {
  33918. source: "./media/characters/purri/devious.svg",
  33919. extra: 1440/1155,
  33920. bottom: 147/1587
  33921. }
  33922. },
  33923. bean: {
  33924. height: math.unit(1.94, "feet"),
  33925. name: "Bean",
  33926. image: {
  33927. source: "./media/characters/purri/bean.svg"
  33928. }
  33929. },
  33930. },
  33931. [
  33932. {
  33933. name: "Micro",
  33934. height: math.unit(1, "mm")
  33935. },
  33936. {
  33937. name: "Normal",
  33938. height: math.unit(6 + 5/12, "feet"),
  33939. default: true
  33940. },
  33941. {
  33942. name: "Macro :3c",
  33943. height: math.unit(2, "miles")
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(6 + 2/12, "feet"),
  33952. weight: math.unit(250, "lb"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/moonlight/front.svg",
  33956. extra: 1044/908,
  33957. bottom: 56/1100
  33958. }
  33959. },
  33960. feral: {
  33961. height: math.unit(3 + 1/12, "feet"),
  33962. weight: math.unit(50, "kg"),
  33963. name: "Feral",
  33964. image: {
  33965. source: "./media/characters/moonlight/feral.svg",
  33966. extra: 3705/2791,
  33967. bottom: 145/3850
  33968. }
  33969. },
  33970. paw: {
  33971. height: math.unit(1, "feet"),
  33972. name: "Paw",
  33973. image: {
  33974. source: "./media/characters/moonlight/paw.svg"
  33975. }
  33976. },
  33977. paws: {
  33978. height: math.unit(0.98, "feet"),
  33979. name: "Paws",
  33980. image: {
  33981. source: "./media/characters/moonlight/paws.svg",
  33982. extra: 939/939,
  33983. bottom: 50/989
  33984. }
  33985. },
  33986. mouth: {
  33987. height: math.unit(0.48, "feet"),
  33988. name: "Mouth",
  33989. image: {
  33990. source: "./media/characters/moonlight/mouth.svg"
  33991. }
  33992. },
  33993. dick: {
  33994. height: math.unit(1.46, "feet"),
  33995. name: "Dick",
  33996. image: {
  33997. source: "./media/characters/moonlight/dick.svg"
  33998. }
  33999. },
  34000. },
  34001. [
  34002. {
  34003. name: "Normal",
  34004. height: math.unit(6 + 2/12, "feet"),
  34005. default: true
  34006. },
  34007. {
  34008. name: "Macro",
  34009. height: math.unit(300, "feet")
  34010. },
  34011. {
  34012. name: "Macro+",
  34013. height: math.unit(1, "mile")
  34014. },
  34015. {
  34016. name: "Mt. Moon",
  34017. height: math.unit(5, "miles")
  34018. },
  34019. {
  34020. name: "Megamacro",
  34021. height: math.unit(15, "miles")
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34027. {
  34028. back: {
  34029. height: math.unit(6, "feet"),
  34030. weight: math.unit(150, "lb"),
  34031. name: "Back",
  34032. image: {
  34033. source: "./media/characters/sylen/back.svg",
  34034. extra: 1335/1273,
  34035. bottom: 107/1442
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(5 + 5/12, "feet")
  34043. },
  34044. {
  34045. name: "Megamacro",
  34046. height: math.unit(3, "miles"),
  34047. default: true
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34053. {
  34054. front: {
  34055. height: math.unit(6, "feet"),
  34056. weight: math.unit(190, "lb"),
  34057. name: "Front",
  34058. image: {
  34059. source: "./media/characters/huttser/front.svg",
  34060. extra: 1152/1058,
  34061. bottom: 23/1175
  34062. }
  34063. },
  34064. side: {
  34065. height: math.unit(6, "feet"),
  34066. weight: math.unit(190, "lb"),
  34067. name: "Side",
  34068. image: {
  34069. source: "./media/characters/huttser/side.svg",
  34070. extra: 1174/1065,
  34071. bottom: 18/1192
  34072. }
  34073. },
  34074. back: {
  34075. height: math.unit(6, "feet"),
  34076. weight: math.unit(190, "lb"),
  34077. name: "Back",
  34078. image: {
  34079. source: "./media/characters/huttser/back.svg",
  34080. extra: 1158/1056,
  34081. bottom: 12/1170
  34082. }
  34083. },
  34084. },
  34085. [
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34090. {
  34091. side: {
  34092. height: math.unit(12 + 9/12, "feet"),
  34093. weight: math.unit(15000, "lb"),
  34094. name: "Side",
  34095. image: {
  34096. source: "./media/characters/faan/side.svg",
  34097. extra: 2747/2697,
  34098. bottom: 0/2747
  34099. }
  34100. },
  34101. front: {
  34102. height: math.unit(12 + 9/12, "feet"),
  34103. weight: math.unit(15000, "lb"),
  34104. name: "Front",
  34105. image: {
  34106. source: "./media/characters/faan/front.svg",
  34107. extra: 607/571,
  34108. bottom: 24/631
  34109. }
  34110. },
  34111. head: {
  34112. height: math.unit(2.85, "feet"),
  34113. name: "Head",
  34114. image: {
  34115. source: "./media/characters/faan/head.svg"
  34116. }
  34117. },
  34118. headAlt: {
  34119. height: math.unit(3.13, "feet"),
  34120. name: "Head-alt",
  34121. image: {
  34122. source: "./media/characters/faan/head-alt.svg"
  34123. }
  34124. },
  34125. },
  34126. [
  34127. {
  34128. name: "Normal",
  34129. height: math.unit(12 + 9/12, "feet"),
  34130. default: true
  34131. },
  34132. ]
  34133. ))
  34134. characterMakers.push(() => makeCharacter(
  34135. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34136. {
  34137. front: {
  34138. height: math.unit(6, "feet"),
  34139. weight: math.unit(300, "lb"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/tanio/front.svg",
  34143. extra: 711/673,
  34144. bottom: 25/736
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Normal",
  34151. height: math.unit(6, "feet"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(3, "inches"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/noboru/front.svg",
  34164. extra: 1039/932,
  34165. bottom: 18/1057
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Micro",
  34172. height: math.unit(3, "inches"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(1.85, "meters"),
  34182. weight: math.unit(80, "kg"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/daniel-barrett/front.svg",
  34186. extra: 355/337,
  34187. bottom: 9/364
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Pico",
  34194. height: math.unit(0.0433, "mm")
  34195. },
  34196. {
  34197. name: "Nano",
  34198. height: math.unit(1.5, "mm")
  34199. },
  34200. {
  34201. name: "Micro",
  34202. height: math.unit(5.3, "cm"),
  34203. default: true
  34204. },
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(1.85, "meters")
  34208. },
  34209. {
  34210. name: "Macro",
  34211. height: math.unit(64.7, "meters")
  34212. },
  34213. {
  34214. name: "Megamacro",
  34215. height: math.unit(2.26, "km")
  34216. },
  34217. {
  34218. name: "Gigamacro",
  34219. height: math.unit(79, "km")
  34220. },
  34221. {
  34222. name: "Teramacro",
  34223. height: math.unit(2765, "km")
  34224. },
  34225. {
  34226. name: "Petamacro",
  34227. height: math.unit(96678, "km")
  34228. },
  34229. ]
  34230. ))
  34231. characterMakers.push(() => makeCharacter(
  34232. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34233. {
  34234. front: {
  34235. height: math.unit(30, "meters"),
  34236. weight: math.unit(400, "tons"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/zeel/front.svg",
  34240. extra: 2599/2599,
  34241. bottom: 226/2825
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Macro",
  34248. height: math.unit(30, "meters"),
  34249. default: true
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34255. {
  34256. front: {
  34257. height: math.unit(6 + 7/12, "feet"),
  34258. weight: math.unit(210, "lb"),
  34259. name: "Front",
  34260. image: {
  34261. source: "./media/characters/tarn/front.svg",
  34262. extra: 3517/3220,
  34263. bottom: 91/3608
  34264. }
  34265. },
  34266. back: {
  34267. height: math.unit(6 + 7/12, "feet"),
  34268. weight: math.unit(210, "lb"),
  34269. name: "Back",
  34270. image: {
  34271. source: "./media/characters/tarn/back.svg",
  34272. extra: 3566/3241,
  34273. bottom: 34/3600
  34274. }
  34275. },
  34276. dick: {
  34277. height: math.unit(1.65, "feet"),
  34278. name: "Dick",
  34279. image: {
  34280. source: "./media/characters/tarn/dick.svg"
  34281. }
  34282. },
  34283. paw: {
  34284. height: math.unit(1.80, "feet"),
  34285. name: "Paw",
  34286. image: {
  34287. source: "./media/characters/tarn/paw.svg"
  34288. }
  34289. },
  34290. tongue: {
  34291. height: math.unit(0.97, "feet"),
  34292. name: "Tongue",
  34293. image: {
  34294. source: "./media/characters/tarn/tongue.svg"
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Micro",
  34301. height: math.unit(4, "inches")
  34302. },
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(6 + 7/12, "feet"),
  34306. default: true
  34307. },
  34308. {
  34309. name: "Macro",
  34310. height: math.unit(300, "feet")
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(5 + 7/12, "feet"),
  34319. weight: math.unit(80, "kg"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34323. extra: 3023/2865,
  34324. bottom: 33/3056
  34325. }
  34326. },
  34327. back: {
  34328. height: math.unit(5 + 7/12, "feet"),
  34329. weight: math.unit(80, "kg"),
  34330. name: "Back",
  34331. image: {
  34332. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34333. extra: 3020/2886,
  34334. bottom: 30/3050
  34335. }
  34336. },
  34337. dick: {
  34338. height: math.unit(0.98, "feet"),
  34339. name: "Dick",
  34340. image: {
  34341. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34342. }
  34343. },
  34344. anatomy: {
  34345. height: math.unit(2.86, "feet"),
  34346. name: "Anatomy",
  34347. image: {
  34348. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34349. }
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Really Small",
  34355. height: math.unit(2, "inches")
  34356. },
  34357. {
  34358. name: "Micro",
  34359. height: math.unit(5.583, "inches")
  34360. },
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(5 + 7/12, "feet"),
  34364. default: true
  34365. },
  34366. {
  34367. name: "Macro",
  34368. height: math.unit(67, "feet")
  34369. },
  34370. {
  34371. name: "Megamacro",
  34372. height: math.unit(134, "feet")
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(9, "feet"),
  34381. weight: math.unit(120, "lb"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/sally/front.svg",
  34385. extra: 1506/1349,
  34386. bottom: 66/1572
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Normal",
  34393. height: math.unit(9, "feet"),
  34394. default: true
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34400. {
  34401. front: {
  34402. height: math.unit(8, "feet"),
  34403. weight: math.unit(900, "lb"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/owen/front.svg",
  34407. extra: 1761/1657,
  34408. bottom: 74/1835
  34409. }
  34410. },
  34411. side: {
  34412. height: math.unit(8, "feet"),
  34413. weight: math.unit(900, "lb"),
  34414. name: "Side",
  34415. image: {
  34416. source: "./media/characters/owen/side.svg",
  34417. extra: 1797/1734,
  34418. bottom: 30/1827
  34419. }
  34420. },
  34421. back: {
  34422. height: math.unit(8, "feet"),
  34423. weight: math.unit(900, "lb"),
  34424. name: "Back",
  34425. image: {
  34426. source: "./media/characters/owen/back.svg",
  34427. extra: 1796/1706,
  34428. bottom: 59/1855
  34429. }
  34430. },
  34431. maw: {
  34432. height: math.unit(1.76, "feet"),
  34433. name: "Maw",
  34434. image: {
  34435. source: "./media/characters/owen/maw.svg"
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(8, "feet"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34449. {
  34450. front: {
  34451. height: math.unit(4, "feet"),
  34452. weight: math.unit(400, "lb"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/ryth/front.svg",
  34456. extra: 1920/1748,
  34457. bottom: 42/1962
  34458. }
  34459. },
  34460. back: {
  34461. height: math.unit(4, "feet"),
  34462. weight: math.unit(400, "lb"),
  34463. name: "Back",
  34464. image: {
  34465. source: "./media/characters/ryth/back.svg",
  34466. extra: 1897/1690,
  34467. bottom: 89/1986
  34468. }
  34469. },
  34470. mouth: {
  34471. height: math.unit(1.39, "feet"),
  34472. name: "Mouth",
  34473. image: {
  34474. source: "./media/characters/ryth/mouth.svg"
  34475. }
  34476. },
  34477. tailmaw: {
  34478. height: math.unit(1.23, "feet"),
  34479. name: "Tailmaw",
  34480. image: {
  34481. source: "./media/characters/ryth/tailmaw.svg"
  34482. }
  34483. },
  34484. goia: {
  34485. height: math.unit(4, "meters"),
  34486. weight: math.unit(10800, "lb"),
  34487. name: "Goia",
  34488. image: {
  34489. source: "./media/characters/ryth/goia.svg",
  34490. extra: 745/640,
  34491. bottom: 107/852
  34492. }
  34493. },
  34494. goiaFront: {
  34495. height: math.unit(4, "meters"),
  34496. weight: math.unit(10800, "lb"),
  34497. name: "Goia (Front)",
  34498. image: {
  34499. source: "./media/characters/ryth/goia-front.svg",
  34500. extra: 750/586,
  34501. bottom: 114/864
  34502. }
  34503. },
  34504. goiaMaw: {
  34505. height: math.unit(5.55, "feet"),
  34506. name: "Goia Maw",
  34507. image: {
  34508. source: "./media/characters/ryth/goia-maw.svg"
  34509. }
  34510. },
  34511. goiaForepaw: {
  34512. height: math.unit(3.5, "feet"),
  34513. name: "Goia Forepaw",
  34514. image: {
  34515. source: "./media/characters/ryth/goia-forepaw.svg"
  34516. }
  34517. },
  34518. goiaHindpaw: {
  34519. height: math.unit(5.55, "feet"),
  34520. name: "Goia Hindpaw",
  34521. image: {
  34522. source: "./media/characters/ryth/goia-hindpaw.svg"
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(4, "feet"),
  34530. default: true
  34531. },
  34532. ]
  34533. ))
  34534. characterMakers.push(() => makeCharacter(
  34535. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34536. {
  34537. front: {
  34538. height: math.unit(7, "feet"),
  34539. weight: math.unit(180, "lb"),
  34540. name: "Front",
  34541. image: {
  34542. source: "./media/characters/necrolance/front.svg",
  34543. extra: 1062/947,
  34544. bottom: 41/1103
  34545. }
  34546. },
  34547. back: {
  34548. height: math.unit(7, "feet"),
  34549. weight: math.unit(180, "lb"),
  34550. name: "Back",
  34551. image: {
  34552. source: "./media/characters/necrolance/back.svg",
  34553. extra: 1045/984,
  34554. bottom: 14/1059
  34555. }
  34556. },
  34557. wing: {
  34558. height: math.unit(2.67, "feet"),
  34559. name: "Wing",
  34560. image: {
  34561. source: "./media/characters/necrolance/wing.svg"
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(7, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34575. {
  34576. front: {
  34577. height: math.unit(76, "meters"),
  34578. weight: math.unit(30000, "tons"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/tyler/front.svg",
  34582. extra: 1640/1640,
  34583. bottom: 114/1754
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Macro",
  34590. height: math.unit(76, "meters"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34597. {
  34598. front: {
  34599. height: math.unit(4 + 11/12, "feet"),
  34600. weight: math.unit(132, "lb"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/icey/front.svg",
  34604. extra: 2750/2550,
  34605. bottom: 33/2783
  34606. }
  34607. },
  34608. back: {
  34609. height: math.unit(4 + 11/12, "feet"),
  34610. weight: math.unit(132, "lb"),
  34611. name: "Back",
  34612. image: {
  34613. source: "./media/characters/icey/back.svg",
  34614. extra: 2624/2481,
  34615. bottom: 35/2659
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(4 + 11/12, "feet"),
  34623. default: true
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(100, "feet"),
  34632. weight: math.unit(0, "lb"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/smile/front.svg",
  34636. extra: 2983/2912,
  34637. bottom: 162/3145
  34638. }
  34639. },
  34640. back: {
  34641. height: math.unit(100, "feet"),
  34642. weight: math.unit(0, "lb"),
  34643. name: "Back",
  34644. image: {
  34645. source: "./media/characters/smile/back.svg",
  34646. extra: 3143/3031,
  34647. bottom: 91/3234
  34648. }
  34649. },
  34650. head: {
  34651. height: math.unit(26.3, "feet"),
  34652. weight: math.unit(0, "lb"),
  34653. name: "Head",
  34654. image: {
  34655. source: "./media/characters/smile/head.svg"
  34656. }
  34657. },
  34658. collar: {
  34659. height: math.unit(5.3, "feet"),
  34660. weight: math.unit(0, "lb"),
  34661. name: "Collar",
  34662. image: {
  34663. source: "./media/characters/smile/collar.svg"
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Macro",
  34670. height: math.unit(100, "feet"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34677. {
  34678. dragon: {
  34679. height: math.unit(26, "feet"),
  34680. weight: math.unit(36, "tons"),
  34681. name: "Dragon",
  34682. image: {
  34683. source: "./media/characters/arimphae/dragon.svg",
  34684. extra: 1574/983,
  34685. bottom: 357/1931
  34686. }
  34687. },
  34688. drake: {
  34689. height: math.unit(9, "feet"),
  34690. weight: math.unit(1.5, "tons"),
  34691. name: "Drake",
  34692. image: {
  34693. source: "./media/characters/arimphae/drake.svg",
  34694. extra: 1120/925,
  34695. bottom: 435/1555
  34696. }
  34697. },
  34698. },
  34699. [
  34700. {
  34701. name: "Small",
  34702. height: math.unit(26*5/9, "feet")
  34703. },
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(26, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(8 + 9/12, "feet"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/xander/front.svg",
  34719. extra: 1237/974,
  34720. bottom: 94/1331
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(8 + 9/12, "feet"),
  34728. default: true
  34729. },
  34730. {
  34731. name: "Gaze Grabber",
  34732. height: math.unit(13 + 8/12, "feet")
  34733. },
  34734. {
  34735. name: "Jaw Dropper",
  34736. height: math.unit(27, "feet")
  34737. },
  34738. {
  34739. name: "Show Stopper",
  34740. height: math.unit(136, "feet")
  34741. },
  34742. {
  34743. name: "Superstar",
  34744. height: math.unit(1.9e6, "miles")
  34745. },
  34746. ]
  34747. ))
  34748. characterMakers.push(() => makeCharacter(
  34749. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34750. {
  34751. side: {
  34752. height: math.unit(2100, "feet"),
  34753. name: "Side",
  34754. image: {
  34755. source: "./media/characters/osiris/side.svg",
  34756. extra: 1105/939,
  34757. bottom: 167/1272
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Macro",
  34764. height: math.unit(2100, "feet"),
  34765. default: true
  34766. },
  34767. ]
  34768. ))
  34769. characterMakers.push(() => makeCharacter(
  34770. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34771. {
  34772. front: {
  34773. height: math.unit(6 + 8/12, "feet"),
  34774. weight: math.unit(225, "lb"),
  34775. name: "Front",
  34776. image: {
  34777. source: "./media/characters/rhys-londe/front.svg",
  34778. extra: 2258/2141,
  34779. bottom: 188/2446
  34780. }
  34781. },
  34782. back: {
  34783. height: math.unit(6 + 8/12, "feet"),
  34784. weight: math.unit(225, "lb"),
  34785. name: "Back",
  34786. image: {
  34787. source: "./media/characters/rhys-londe/back.svg",
  34788. extra: 2237/2137,
  34789. bottom: 63/2300
  34790. }
  34791. },
  34792. frontNsfw: {
  34793. height: math.unit(6 + 8/12, "feet"),
  34794. weight: math.unit(225, "lb"),
  34795. name: "Front (NSFW)",
  34796. image: {
  34797. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34798. extra: 2258/2141,
  34799. bottom: 188/2446
  34800. }
  34801. },
  34802. backNsfw: {
  34803. height: math.unit(6 + 8/12, "feet"),
  34804. weight: math.unit(225, "lb"),
  34805. name: "Back (NSFW)",
  34806. image: {
  34807. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34808. extra: 2237/2137,
  34809. bottom: 63/2300
  34810. }
  34811. },
  34812. dick: {
  34813. height: math.unit(30, "inches"),
  34814. name: "Dick",
  34815. image: {
  34816. source: "./media/characters/rhys-londe/dick.svg"
  34817. }
  34818. },
  34819. maw: {
  34820. height: math.unit(1.6, "feet"),
  34821. name: "Maw",
  34822. image: {
  34823. source: "./media/characters/rhys-londe/maw.svg"
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(6 + 8/12, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(3 + 10/12, "feet"),
  34840. weight: math.unit(90, "lb"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/taivas-ensim/front.svg",
  34844. extra: 1327/1216,
  34845. bottom: 96/1423
  34846. }
  34847. },
  34848. back: {
  34849. height: math.unit(3 + 10/12, "feet"),
  34850. weight: math.unit(90, "lb"),
  34851. name: "Back",
  34852. image: {
  34853. source: "./media/characters/taivas-ensim/back.svg",
  34854. extra: 1355/1247,
  34855. bottom: 11/1366
  34856. }
  34857. },
  34858. frontNsfw: {
  34859. height: math.unit(3 + 10/12, "feet"),
  34860. weight: math.unit(90, "lb"),
  34861. name: "Front (NSFW)",
  34862. image: {
  34863. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34864. extra: 1327/1216,
  34865. bottom: 96/1423
  34866. }
  34867. },
  34868. backNsfw: {
  34869. height: math.unit(3 + 10/12, "feet"),
  34870. weight: math.unit(90, "lb"),
  34871. name: "Back (NSFW)",
  34872. image: {
  34873. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34874. extra: 1355/1247,
  34875. bottom: 11/1366
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(3 + 10/12, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34889. {
  34890. front: {
  34891. height: math.unit(9 + 6/12, "feet"),
  34892. weight: math.unit(940, "lb"),
  34893. name: "Front",
  34894. image: {
  34895. source: "./media/characters/byliss/front.svg",
  34896. extra: 1327/1290,
  34897. bottom: 82/1409
  34898. }
  34899. },
  34900. back: {
  34901. height: math.unit(9 + 6/12, "feet"),
  34902. weight: math.unit(940, "lb"),
  34903. name: "Back",
  34904. image: {
  34905. source: "./media/characters/byliss/back.svg",
  34906. extra: 1376/1349,
  34907. bottom: 9/1385
  34908. }
  34909. },
  34910. frontNsfw: {
  34911. height: math.unit(9 + 6/12, "feet"),
  34912. weight: math.unit(940, "lb"),
  34913. name: "Front (NSFW)",
  34914. image: {
  34915. source: "./media/characters/byliss/front-nsfw.svg",
  34916. extra: 1327/1290,
  34917. bottom: 82/1409
  34918. }
  34919. },
  34920. backNsfw: {
  34921. height: math.unit(9 + 6/12, "feet"),
  34922. weight: math.unit(940, "lb"),
  34923. name: "Back (NSFW)",
  34924. image: {
  34925. source: "./media/characters/byliss/back-nsfw.svg",
  34926. extra: 1376/1349,
  34927. bottom: 9/1385
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(9 + 6/12, "feet"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(5 + 2/12, "feet"),
  34944. weight: math.unit(200, "lb"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/noraly/front.svg",
  34948. extra: 4985/4773,
  34949. bottom: 150/5135
  34950. }
  34951. },
  34952. full: {
  34953. height: math.unit(5 + 2/12, "feet"),
  34954. weight: math.unit(164, "lb"),
  34955. name: "Full",
  34956. image: {
  34957. source: "./media/characters/noraly/full.svg",
  34958. extra: 1114/1059,
  34959. bottom: 35/1149
  34960. }
  34961. },
  34962. fuller: {
  34963. height: math.unit(5 + 2/12, "feet"),
  34964. weight: math.unit(230, "lb"),
  34965. name: "Fuller",
  34966. image: {
  34967. source: "./media/characters/noraly/fuller.svg",
  34968. extra: 1114/1059,
  34969. bottom: 35/1149
  34970. }
  34971. },
  34972. fullest: {
  34973. height: math.unit(5 + 2/12, "feet"),
  34974. weight: math.unit(300, "lb"),
  34975. name: "Fullest",
  34976. image: {
  34977. source: "./media/characters/noraly/fullest.svg",
  34978. extra: 1114/1059,
  34979. bottom: 35/1149
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(5 + 2/12, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34993. {
  34994. front: {
  34995. height: math.unit(5 + 2/12, "feet"),
  34996. weight: math.unit(210, "lb"),
  34997. name: "Front",
  34998. image: {
  34999. source: "./media/characters/pera/front.svg",
  35000. extra: 1560/1531,
  35001. bottom: 165/1725
  35002. }
  35003. },
  35004. back: {
  35005. height: math.unit(5 + 2/12, "feet"),
  35006. weight: math.unit(210, "lb"),
  35007. name: "Back",
  35008. image: {
  35009. source: "./media/characters/pera/back.svg",
  35010. extra: 1523/1493,
  35011. bottom: 152/1675
  35012. }
  35013. },
  35014. dick: {
  35015. height: math.unit(2.4, "feet"),
  35016. name: "Dick",
  35017. image: {
  35018. source: "./media/characters/pera/dick.svg"
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(5 + 2/12, "feet"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(12, "feet"),
  35035. weight: math.unit(3200, "lb"),
  35036. name: "Front",
  35037. image: {
  35038. source: "./media/characters/julian/front.svg",
  35039. extra: 2962/2701,
  35040. bottom: 184/3146
  35041. }
  35042. },
  35043. maw: {
  35044. height: math.unit(5.35, "feet"),
  35045. name: "Maw",
  35046. image: {
  35047. source: "./media/characters/julian/maw.svg"
  35048. }
  35049. },
  35050. paw: {
  35051. height: math.unit(3.07, "feet"),
  35052. name: "Paw",
  35053. image: {
  35054. source: "./media/characters/julian/paw.svg"
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Default",
  35061. height: math.unit(12, "feet"),
  35062. default: true
  35063. },
  35064. {
  35065. name: "Big",
  35066. height: math.unit(50, "feet")
  35067. },
  35068. {
  35069. name: "Really Big",
  35070. height: math.unit(1, "mile")
  35071. },
  35072. {
  35073. name: "Extremely Big",
  35074. height: math.unit(100, "miles")
  35075. },
  35076. {
  35077. name: "Planet Hugger",
  35078. height: math.unit(200, "megameters")
  35079. },
  35080. {
  35081. name: "Unreasonably Big",
  35082. height: math.unit(1e300, "meters")
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35088. {
  35089. solgooleo: {
  35090. height: math.unit(4, "meters"),
  35091. weight: math.unit(6000*1.5, "kg"),
  35092. volume: math.unit(6000, "liters"),
  35093. name: "Solgooleo",
  35094. image: {
  35095. source: "./media/characters/pi/solgooleo.svg",
  35096. extra: 388/331,
  35097. bottom: 29/417
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(4, "meters"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(8, "feet"),
  35114. weight: math.unit(4, "tons"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/shaun/front.svg",
  35118. extra: 503/495,
  35119. bottom: 20/523
  35120. }
  35121. },
  35122. back: {
  35123. height: math.unit(8, "feet"),
  35124. weight: math.unit(4, "tons"),
  35125. name: "Back",
  35126. image: {
  35127. source: "./media/characters/shaun/back.svg",
  35128. extra: 487/480,
  35129. bottom: 20/507
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Lorg",
  35136. height: math.unit(8, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35143. {
  35144. frontAnthro: {
  35145. height: math.unit(7, "feet"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/sini/front-anthro.svg",
  35149. extra: 726/678,
  35150. bottom: 35/761
  35151. },
  35152. form: "anthro",
  35153. default: true
  35154. },
  35155. backAnthro: {
  35156. height: math.unit(7, "feet"),
  35157. name: "Back",
  35158. image: {
  35159. source: "./media/characters/sini/back-anthro.svg",
  35160. extra: 743/701,
  35161. bottom: 12/755
  35162. },
  35163. form: "anthro",
  35164. },
  35165. frontAnthroNsfw: {
  35166. height: math.unit(7, "feet"),
  35167. name: "Front (NSFW)",
  35168. image: {
  35169. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35170. extra: 726/678,
  35171. bottom: 35/761
  35172. },
  35173. form: "anthro"
  35174. },
  35175. backAnthroNsfw: {
  35176. height: math.unit(7, "feet"),
  35177. name: "Back (NSFW)",
  35178. image: {
  35179. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35180. extra: 743/701,
  35181. bottom: 12/755
  35182. },
  35183. form: "anthro",
  35184. },
  35185. mawAnthro: {
  35186. height: math.unit(2.14, "feet"),
  35187. name: "Maw",
  35188. image: {
  35189. source: "./media/characters/sini/maw-anthro.svg"
  35190. },
  35191. form: "anthro"
  35192. },
  35193. dick: {
  35194. height: math.unit(1.45, "feet"),
  35195. name: "Dick",
  35196. image: {
  35197. source: "./media/characters/sini/dick-anthro.svg"
  35198. },
  35199. form: "anthro"
  35200. },
  35201. feral: {
  35202. height: math.unit(16, "feet"),
  35203. name: "Feral",
  35204. image: {
  35205. source: "./media/characters/sini/feral.svg",
  35206. extra: 814/605,
  35207. bottom: 11/825
  35208. },
  35209. form: "feral",
  35210. default: true
  35211. },
  35212. feralNsfw: {
  35213. height: math.unit(16, "feet"),
  35214. name: "Feral (NSFW)",
  35215. image: {
  35216. source: "./media/characters/sini/feral-nsfw.svg",
  35217. extra: 814/605,
  35218. bottom: 11/825
  35219. },
  35220. form: "feral"
  35221. },
  35222. mawFeral: {
  35223. height: math.unit(5.66, "feet"),
  35224. name: "Maw",
  35225. image: {
  35226. source: "./media/characters/sini/maw-feral.svg"
  35227. },
  35228. form: "feral",
  35229. },
  35230. pawFeral: {
  35231. height: math.unit(5.17, "feet"),
  35232. name: "Paw",
  35233. image: {
  35234. source: "./media/characters/sini/paw-feral.svg"
  35235. },
  35236. form: "feral",
  35237. },
  35238. rumpFeral: {
  35239. height: math.unit(13.11, "feet"),
  35240. name: "Rump",
  35241. image: {
  35242. source: "./media/characters/sini/rump-feral.svg"
  35243. },
  35244. form: "feral",
  35245. },
  35246. dickFeral: {
  35247. height: math.unit(1, "feet"),
  35248. name: "Dick",
  35249. image: {
  35250. source: "./media/characters/sini/dick-feral.svg"
  35251. },
  35252. form: "feral",
  35253. },
  35254. eyeFeral: {
  35255. height: math.unit(1.23, "feet"),
  35256. name: "Eye",
  35257. image: {
  35258. source: "./media/characters/sini/eye-feral.svg"
  35259. },
  35260. form: "feral",
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(7, "feet"),
  35267. default: true,
  35268. form: "anthro"
  35269. },
  35270. {
  35271. name: "Normal",
  35272. height: math.unit(16, "feet"),
  35273. default: true,
  35274. form: "feral"
  35275. },
  35276. ],
  35277. {
  35278. "anthro": {
  35279. name: "Anthro",
  35280. default: true
  35281. },
  35282. "feral": {
  35283. name: "Feral",
  35284. }
  35285. }
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35289. {
  35290. side: {
  35291. height: math.unit(47.2, "meters"),
  35292. weight: math.unit(10000, "tons"),
  35293. name: "Side",
  35294. image: {
  35295. source: "./media/characters/raylldo/side.svg",
  35296. extra: 2363/642,
  35297. bottom: 221/2584
  35298. }
  35299. },
  35300. top: {
  35301. height: math.unit(240, "meters"),
  35302. weight: math.unit(10000, "tons"),
  35303. name: "Top",
  35304. image: {
  35305. source: "./media/characters/raylldo/top.svg"
  35306. }
  35307. },
  35308. bottom: {
  35309. height: math.unit(240, "meters"),
  35310. weight: math.unit(10000, "tons"),
  35311. name: "Bottom",
  35312. image: {
  35313. source: "./media/characters/raylldo/bottom.svg"
  35314. }
  35315. },
  35316. head: {
  35317. height: math.unit(38.6, "meters"),
  35318. name: "Head",
  35319. image: {
  35320. source: "./media/characters/raylldo/head.svg",
  35321. extra: 1335/1112,
  35322. bottom: 0/1335
  35323. }
  35324. },
  35325. maw: {
  35326. height: math.unit(16.37, "meters"),
  35327. name: "Maw",
  35328. image: {
  35329. source: "./media/characters/raylldo/maw.svg",
  35330. extra: 883/660,
  35331. bottom: 0/883
  35332. },
  35333. extraAttributes: {
  35334. preyCapacity: {
  35335. name: "Capacity",
  35336. power: 3,
  35337. type: "volume",
  35338. base: math.unit(1000, "people")
  35339. },
  35340. tongueSize: {
  35341. name: "Tongue Size",
  35342. power: 2,
  35343. type: "area",
  35344. base: math.unit(21, "m^2")
  35345. }
  35346. }
  35347. },
  35348. forepaw: {
  35349. height: math.unit(18, "meters"),
  35350. name: "Forepaw",
  35351. image: {
  35352. source: "./media/characters/raylldo/forepaw.svg"
  35353. }
  35354. },
  35355. hindpaw: {
  35356. height: math.unit(23, "meters"),
  35357. name: "Hindpaw",
  35358. image: {
  35359. source: "./media/characters/raylldo/hindpaw.svg"
  35360. }
  35361. },
  35362. genitals: {
  35363. height: math.unit(42, "meters"),
  35364. name: "Genitals",
  35365. image: {
  35366. source: "./media/characters/raylldo/genitals.svg"
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(47.2, "meters"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35380. {
  35381. anthroFront: {
  35382. height: math.unit(9, "feet"),
  35383. weight: math.unit(600, "lb"),
  35384. name: "Anthro (Front)",
  35385. image: {
  35386. source: "./media/characters/glint/anthro-front.svg",
  35387. extra: 1097/1018,
  35388. bottom: 28/1125
  35389. }
  35390. },
  35391. anthroBack: {
  35392. height: math.unit(9, "feet"),
  35393. weight: math.unit(600, "lb"),
  35394. name: "Anthro (Back)",
  35395. image: {
  35396. source: "./media/characters/glint/anthro-back.svg",
  35397. extra: 1154/997,
  35398. bottom: 36/1190
  35399. }
  35400. },
  35401. feral: {
  35402. height: math.unit(11, "feet"),
  35403. weight: math.unit(50000, "lb"),
  35404. name: "Feral",
  35405. image: {
  35406. source: "./media/characters/glint/feral.svg",
  35407. extra: 3035/1585,
  35408. bottom: 1169/4204
  35409. }
  35410. },
  35411. dickAnthro: {
  35412. height: math.unit(0.7, "meters"),
  35413. name: "Dick (Anthro)",
  35414. image: {
  35415. source: "./media/characters/glint/dick-anthro.svg"
  35416. }
  35417. },
  35418. dickFeral: {
  35419. height: math.unit(2.65, "meters"),
  35420. name: "Dick (Feral)",
  35421. image: {
  35422. source: "./media/characters/glint/dick-feral.svg"
  35423. }
  35424. },
  35425. slitHidden: {
  35426. height: math.unit(5.85, "meters"),
  35427. name: "Slit (Hidden)",
  35428. image: {
  35429. source: "./media/characters/glint/slit-hidden.svg"
  35430. }
  35431. },
  35432. slitErect: {
  35433. height: math.unit(5.85, "meters"),
  35434. name: "Slit (Erect)",
  35435. image: {
  35436. source: "./media/characters/glint/slit-erect.svg"
  35437. }
  35438. },
  35439. mawAnthro: {
  35440. height: math.unit(0.63, "meters"),
  35441. name: "Maw (Anthro)",
  35442. image: {
  35443. source: "./media/characters/glint/maw.svg"
  35444. }
  35445. },
  35446. mawFeral: {
  35447. height: math.unit(2.89, "meters"),
  35448. name: "Maw (Feral)",
  35449. image: {
  35450. source: "./media/characters/glint/maw.svg"
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(9, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35464. {
  35465. side: {
  35466. height: math.unit(15, "feet"),
  35467. weight: math.unit(5000, "kg"),
  35468. name: "Side",
  35469. image: {
  35470. source: "./media/characters/kairne/side.svg",
  35471. extra: 979/811,
  35472. bottom: 13/992
  35473. }
  35474. },
  35475. front: {
  35476. height: math.unit(15, "feet"),
  35477. weight: math.unit(5000, "kg"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/kairne/front.svg",
  35481. extra: 908/814,
  35482. bottom: 26/934
  35483. }
  35484. },
  35485. sideNsfw: {
  35486. height: math.unit(15, "feet"),
  35487. weight: math.unit(5000, "kg"),
  35488. name: "Side (NSFW)",
  35489. image: {
  35490. source: "./media/characters/kairne/side-nsfw.svg",
  35491. extra: 979/811,
  35492. bottom: 13/992
  35493. }
  35494. },
  35495. frontNsfw: {
  35496. height: math.unit(15, "feet"),
  35497. weight: math.unit(5000, "kg"),
  35498. name: "Front (NSFW)",
  35499. image: {
  35500. source: "./media/characters/kairne/front-nsfw.svg",
  35501. extra: 908/814,
  35502. bottom: 26/934
  35503. }
  35504. },
  35505. dickCaged: {
  35506. height: math.unit(0.65, "meters"),
  35507. name: "Dick-caged",
  35508. image: {
  35509. source: "./media/characters/kairne/dick-caged.svg"
  35510. }
  35511. },
  35512. dick: {
  35513. height: math.unit(0.79, "meters"),
  35514. name: "Dick",
  35515. image: {
  35516. source: "./media/characters/kairne/dick.svg"
  35517. }
  35518. },
  35519. genitals: {
  35520. height: math.unit(1.29, "meters"),
  35521. name: "Genitals",
  35522. image: {
  35523. source: "./media/characters/kairne/genitals.svg"
  35524. }
  35525. },
  35526. maw: {
  35527. height: math.unit(1.73, "meters"),
  35528. name: "Maw",
  35529. image: {
  35530. source: "./media/characters/kairne/maw.svg"
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(15, "feet"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(5 + 8/12, "feet"),
  35547. weight: math.unit(139, "lb"),
  35548. name: "Front",
  35549. image: {
  35550. source: "./media/characters/biscuit-jackal/front.svg",
  35551. extra: 2106/1961,
  35552. bottom: 58/2164
  35553. }
  35554. },
  35555. back: {
  35556. height: math.unit(5 + 8/12, "feet"),
  35557. weight: math.unit(139, "lb"),
  35558. name: "Back",
  35559. image: {
  35560. source: "./media/characters/biscuit-jackal/back.svg",
  35561. extra: 2132/1976,
  35562. bottom: 57/2189
  35563. }
  35564. },
  35565. werejackal: {
  35566. height: math.unit(6 + 3/12, "feet"),
  35567. weight: math.unit(188, "lb"),
  35568. name: "Werejackal",
  35569. image: {
  35570. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35571. extra: 2373/2178,
  35572. bottom: 53/2426
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(5 + 8/12, "feet"),
  35580. default: true
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(140, "cm"),
  35589. weight: math.unit(45, "kg"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/tayra-white/front.svg",
  35593. extra: 2229/2192,
  35594. bottom: 75/2304
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(140, "cm"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(4 + 5/12, "feet"),
  35611. name: "Front",
  35612. image: {
  35613. source: "./media/characters/scoop/front.svg",
  35614. extra: 1257/1136,
  35615. bottom: 69/1326
  35616. }
  35617. },
  35618. back: {
  35619. height: math.unit(4 + 5/12, "feet"),
  35620. name: "Back",
  35621. image: {
  35622. source: "./media/characters/scoop/back.svg",
  35623. extra: 1321/1152,
  35624. bottom: 32/1353
  35625. }
  35626. },
  35627. maw: {
  35628. height: math.unit(0.68, "feet"),
  35629. name: "Maw",
  35630. image: {
  35631. source: "./media/characters/scoop/maw.svg"
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Really Small",
  35638. height: math.unit(1, "mm")
  35639. },
  35640. {
  35641. name: "Micro",
  35642. height: math.unit(1, "inch")
  35643. },
  35644. {
  35645. name: "Normal",
  35646. height: math.unit(4 + 5/12, "feet"),
  35647. default: true
  35648. },
  35649. {
  35650. name: "Macro",
  35651. height: math.unit(200, "feet")
  35652. },
  35653. {
  35654. name: "Megamacro",
  35655. height: math.unit(3240, "feet")
  35656. },
  35657. {
  35658. name: "Teramacro",
  35659. height: math.unit(2500, "miles")
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35665. {
  35666. front: {
  35667. height: math.unit(15 + 7/12, "feet"),
  35668. weight: math.unit(1150, "tons"),
  35669. name: "Front",
  35670. image: {
  35671. source: "./media/characters/saphinara/front.svg",
  35672. extra: 1837/1643,
  35673. bottom: 84/1921
  35674. },
  35675. form: "normal",
  35676. default: true
  35677. },
  35678. side: {
  35679. height: math.unit(15 + 7/12, "feet"),
  35680. weight: math.unit(1150, "tons"),
  35681. name: "Side",
  35682. image: {
  35683. source: "./media/characters/saphinara/side.svg",
  35684. extra: 605/547,
  35685. bottom: 6/611
  35686. },
  35687. form: "normal"
  35688. },
  35689. back: {
  35690. height: math.unit(15 + 7/12, "feet"),
  35691. weight: math.unit(1150, "tons"),
  35692. name: "Back",
  35693. image: {
  35694. source: "./media/characters/saphinara/back.svg",
  35695. extra: 591/531,
  35696. bottom: 13/604
  35697. },
  35698. form: "normal"
  35699. },
  35700. frontTail: {
  35701. height: math.unit(15 + 7/12, "feet"),
  35702. weight: math.unit(1150, "tons"),
  35703. name: "Front (Full Tail)",
  35704. image: {
  35705. source: "./media/characters/saphinara/front-tail.svg",
  35706. extra: 2256/1630,
  35707. bottom: 261/2517
  35708. },
  35709. form: "normal"
  35710. },
  35711. insides: {
  35712. height: math.unit(11.92, "feet"),
  35713. name: "Insides",
  35714. image: {
  35715. source: "./media/characters/saphinara/insides.svg"
  35716. },
  35717. form: "normal"
  35718. },
  35719. head: {
  35720. height: math.unit(4.17, "feet"),
  35721. name: "Head",
  35722. image: {
  35723. source: "./media/characters/saphinara/head.svg"
  35724. },
  35725. form: "normal"
  35726. },
  35727. tongue: {
  35728. height: math.unit(4.60, "feet"),
  35729. name: "Tongue",
  35730. image: {
  35731. source: "./media/characters/saphinara/tongue.svg"
  35732. },
  35733. form: "normal"
  35734. },
  35735. headEnraged: {
  35736. height: math.unit(5.55, "feet"),
  35737. name: "Head (Enraged)",
  35738. image: {
  35739. source: "./media/characters/saphinara/head-enraged.svg"
  35740. },
  35741. form: "normal"
  35742. },
  35743. wings: {
  35744. height: math.unit(11.95, "feet"),
  35745. name: "Wings",
  35746. image: {
  35747. source: "./media/characters/saphinara/wings.svg"
  35748. },
  35749. form: "normal"
  35750. },
  35751. feathers: {
  35752. height: math.unit(8.92, "feet"),
  35753. name: "Feathers",
  35754. image: {
  35755. source: "./media/characters/saphinara/feathers.svg"
  35756. },
  35757. form: "normal"
  35758. },
  35759. shackles: {
  35760. height: math.unit(2, "feet"),
  35761. name: "Shackles",
  35762. image: {
  35763. source: "./media/characters/saphinara/shackles.svg"
  35764. },
  35765. form: "normal"
  35766. },
  35767. eyes: {
  35768. height: math.unit(1.331, "feet"),
  35769. name: "Eyes",
  35770. image: {
  35771. source: "./media/characters/saphinara/eyes.svg"
  35772. },
  35773. form: "normal"
  35774. },
  35775. eyesEnraged: {
  35776. height: math.unit(1.331, "feet"),
  35777. name: "Eyes (Enraged)",
  35778. image: {
  35779. source: "./media/characters/saphinara/eyes-enraged.svg"
  35780. },
  35781. form: "normal"
  35782. },
  35783. trueFormSide: {
  35784. height: math.unit(200, "feet"),
  35785. weight: math.unit(1e7, "tons"),
  35786. name: "Side",
  35787. image: {
  35788. source: "./media/characters/saphinara/true-form-side.svg",
  35789. extra: 1399/770,
  35790. bottom: 97/1496
  35791. },
  35792. form: "true-form",
  35793. default: true
  35794. },
  35795. trueFormMaw: {
  35796. height: math.unit(71.5, "feet"),
  35797. name: "Maw",
  35798. image: {
  35799. source: "./media/characters/saphinara/true-form-maw.svg",
  35800. extra: 2302/1453,
  35801. bottom: 0/2302
  35802. },
  35803. form: "true-form"
  35804. },
  35805. meowberusSide: {
  35806. height: math.unit(75, "feet"),
  35807. weight: math.unit(180000, "kg"),
  35808. preyCapacity: math.unit(50000, "people"),
  35809. name: "Side",
  35810. image: {
  35811. source: "./media/characters/saphinara/meowberus-side.svg",
  35812. extra: 1400/711,
  35813. bottom: 126/1526
  35814. },
  35815. form: "meowberus",
  35816. extraAttributes: {
  35817. "pawArea": {
  35818. name: "Paw Size",
  35819. power: 2,
  35820. type: "area",
  35821. base: math.unit(35, "m^2")
  35822. }
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(15 + 7/12, "feet"),
  35830. default: true,
  35831. form: "normal"
  35832. },
  35833. {
  35834. name: "Angry",
  35835. height: math.unit(30 + 6/12, "feet"),
  35836. form: "normal"
  35837. },
  35838. {
  35839. name: "Enraged",
  35840. height: math.unit(102 + 1/12, "feet"),
  35841. form: "normal"
  35842. },
  35843. {
  35844. name: "True",
  35845. height: math.unit(200, "feet"),
  35846. default: true,
  35847. form: "true-form"
  35848. },
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(75, "feet"),
  35852. default: true,
  35853. form: "meowberus"
  35854. },
  35855. ],
  35856. {
  35857. "normal": {
  35858. name: "Normal",
  35859. default: true
  35860. },
  35861. "true-form": {
  35862. name: "True Form"
  35863. },
  35864. "meowberus": {
  35865. name: "Meowberus",
  35866. },
  35867. }
  35868. ))
  35869. characterMakers.push(() => makeCharacter(
  35870. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35871. {
  35872. front: {
  35873. height: math.unit(6 + 8/12, "feet"),
  35874. weight: math.unit(300, "lb"),
  35875. name: "Front",
  35876. image: {
  35877. source: "./media/characters/jrain/front.svg",
  35878. extra: 3039/2865,
  35879. bottom: 399/3438
  35880. }
  35881. },
  35882. back: {
  35883. height: math.unit(6 + 8/12, "feet"),
  35884. weight: math.unit(300, "lb"),
  35885. name: "Back",
  35886. image: {
  35887. source: "./media/characters/jrain/back.svg",
  35888. extra: 3089/2938,
  35889. bottom: 172/3261
  35890. }
  35891. },
  35892. head: {
  35893. height: math.unit(2.14, "feet"),
  35894. name: "Head",
  35895. image: {
  35896. source: "./media/characters/jrain/head.svg"
  35897. }
  35898. },
  35899. maw: {
  35900. height: math.unit(1.77, "feet"),
  35901. name: "Maw",
  35902. image: {
  35903. source: "./media/characters/jrain/maw.svg"
  35904. }
  35905. },
  35906. leftHand: {
  35907. height: math.unit(1.1, "feet"),
  35908. name: "Left Hand",
  35909. image: {
  35910. source: "./media/characters/jrain/left-hand.svg"
  35911. }
  35912. },
  35913. rightHand: {
  35914. height: math.unit(1.1, "feet"),
  35915. name: "Right Hand",
  35916. image: {
  35917. source: "./media/characters/jrain/right-hand.svg"
  35918. }
  35919. },
  35920. eye: {
  35921. height: math.unit(0.35, "feet"),
  35922. name: "Eye",
  35923. image: {
  35924. source: "./media/characters/jrain/eye.svg"
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(6 + 8/12, "feet"),
  35932. default: true
  35933. },
  35934. {
  35935. name: "Casually Large",
  35936. height: math.unit(25, "feet")
  35937. },
  35938. {
  35939. name: "Giant",
  35940. height: math.unit(100, "feet")
  35941. },
  35942. {
  35943. name: "Kaiju",
  35944. height: math.unit(300, "feet")
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35950. {
  35951. dragon: {
  35952. height: math.unit(5, "meters"),
  35953. name: "Dragon",
  35954. image: {
  35955. source: "./media/characters/sabrina/dragon.svg",
  35956. extra: 3670 / 2365,
  35957. bottom: 333 / 4003
  35958. }
  35959. },
  35960. gryphon: {
  35961. height: math.unit(3, "meters"),
  35962. name: "Gryphon",
  35963. image: {
  35964. source: "./media/characters/sabrina/gryphon.svg",
  35965. extra: 1576 / 945,
  35966. bottom: 71 / 1647
  35967. }
  35968. },
  35969. snake: {
  35970. height: math.unit(12, "meters"),
  35971. name: "Snake",
  35972. image: {
  35973. source: "./media/characters/sabrina/snake.svg",
  35974. extra: 1758 / 1320,
  35975. bottom: 186 / 1944
  35976. }
  35977. },
  35978. collar: {
  35979. height: math.unit(1.86, "meters"),
  35980. name: "Collar",
  35981. image: {
  35982. source: "./media/characters/sabrina/collar.svg"
  35983. }
  35984. },
  35985. eye: {
  35986. height: math.unit(0.53, "meters"),
  35987. name: "Eye",
  35988. image: {
  35989. source: "./media/characters/sabrina/eye.svg"
  35990. }
  35991. },
  35992. foot: {
  35993. height: math.unit(1.86, "meters"),
  35994. name: "Foot",
  35995. image: {
  35996. source: "./media/characters/sabrina/foot.svg"
  35997. }
  35998. },
  35999. hand: {
  36000. height: math.unit(1.32, "meters"),
  36001. name: "Hand",
  36002. image: {
  36003. source: "./media/characters/sabrina/hand.svg"
  36004. }
  36005. },
  36006. head: {
  36007. height: math.unit(2.44, "meters"),
  36008. name: "Head",
  36009. image: {
  36010. source: "./media/characters/sabrina/head.svg"
  36011. }
  36012. },
  36013. headAngry: {
  36014. height: math.unit(2.44, "meters"),
  36015. name: "Head (Angry))",
  36016. image: {
  36017. source: "./media/characters/sabrina/head-angry.svg"
  36018. }
  36019. },
  36020. maw: {
  36021. height: math.unit(1.65, "meters"),
  36022. name: "Maw",
  36023. image: {
  36024. source: "./media/characters/sabrina/maw.svg"
  36025. }
  36026. },
  36027. spikes: {
  36028. height: math.unit(1.69, "meters"),
  36029. name: "Spikes",
  36030. image: {
  36031. source: "./media/characters/sabrina/spikes.svg"
  36032. }
  36033. },
  36034. stomach: {
  36035. height: math.unit(1.15, "meters"),
  36036. name: "Stomach",
  36037. image: {
  36038. source: "./media/characters/sabrina/stomach.svg"
  36039. }
  36040. },
  36041. tongue: {
  36042. height: math.unit(1.27, "meters"),
  36043. name: "Tongue",
  36044. image: {
  36045. source: "./media/characters/sabrina/tongue.svg"
  36046. }
  36047. },
  36048. wingDorsal: {
  36049. height: math.unit(4.85, "meters"),
  36050. name: "Wing (Dorsal)",
  36051. image: {
  36052. source: "./media/characters/sabrina/wing-dorsal.svg"
  36053. }
  36054. },
  36055. wingVentral: {
  36056. height: math.unit(4.85, "meters"),
  36057. name: "Wing (Ventral)",
  36058. image: {
  36059. source: "./media/characters/sabrina/wing-ventral.svg"
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(5, "meters"),
  36067. default: true
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36073. {
  36074. frontMaid: {
  36075. height: math.unit(5 + 5/12, "feet"),
  36076. weight: math.unit(130, "lb"),
  36077. name: "Front (Maid)",
  36078. image: {
  36079. source: "./media/characters/midnight-tales/front-maid.svg",
  36080. extra: 489/454,
  36081. bottom: 61/550
  36082. }
  36083. },
  36084. frontFormal: {
  36085. height: math.unit(5 + 5/12, "feet"),
  36086. weight: math.unit(130, "lb"),
  36087. name: "Front (Formal)",
  36088. image: {
  36089. source: "./media/characters/midnight-tales/front-formal.svg",
  36090. extra: 489/454,
  36091. bottom: 61/550
  36092. }
  36093. },
  36094. back: {
  36095. height: math.unit(5 + 5/12, "feet"),
  36096. weight: math.unit(130, "lb"),
  36097. name: "Back",
  36098. image: {
  36099. source: "./media/characters/midnight-tales/back.svg",
  36100. extra: 498/456,
  36101. bottom: 33/531
  36102. }
  36103. },
  36104. frontBeast: {
  36105. height: math.unit(40, "feet"),
  36106. weight: math.unit(64000, "lb"),
  36107. name: "Front (Beast)",
  36108. image: {
  36109. source: "./media/characters/midnight-tales/front-beast.svg",
  36110. extra: 927/860,
  36111. bottom: 53/980
  36112. }
  36113. },
  36114. backBeast: {
  36115. height: math.unit(40, "feet"),
  36116. weight: math.unit(64000, "lb"),
  36117. name: "Back (Beast)",
  36118. image: {
  36119. source: "./media/characters/midnight-tales/back-beast.svg",
  36120. extra: 929/855,
  36121. bottom: 16/945
  36122. }
  36123. },
  36124. footBeast: {
  36125. height: math.unit(6.7, "feet"),
  36126. name: "Foot (Beast)",
  36127. image: {
  36128. source: "./media/characters/midnight-tales/foot-beast.svg"
  36129. }
  36130. },
  36131. headBeast: {
  36132. height: math.unit(8, "feet"),
  36133. name: "Head (Beast)",
  36134. image: {
  36135. source: "./media/characters/midnight-tales/head-beast.svg"
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(5 + 5 / 12, "feet"),
  36143. default: true
  36144. },
  36145. {
  36146. name: "Macro",
  36147. height: math.unit(25, "feet")
  36148. },
  36149. ]
  36150. ))
  36151. characterMakers.push(() => makeCharacter(
  36152. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36153. {
  36154. front: {
  36155. height: math.unit(5 + 10/12, "feet"),
  36156. name: "Front",
  36157. image: {
  36158. source: "./media/characters/argon/front.svg",
  36159. extra: 2009/1935,
  36160. bottom: 118/2127
  36161. }
  36162. },
  36163. back: {
  36164. height: math.unit(5 + 10/12, "feet"),
  36165. name: "Back",
  36166. image: {
  36167. source: "./media/characters/argon/back.svg",
  36168. extra: 2047/1992,
  36169. bottom: 20/2067
  36170. }
  36171. },
  36172. frontDressed: {
  36173. height: math.unit(5 + 10/12, "feet"),
  36174. name: "Front (Dressed)",
  36175. image: {
  36176. source: "./media/characters/argon/front-dressed.svg",
  36177. extra: 2009/1935,
  36178. bottom: 118/2127
  36179. }
  36180. },
  36181. },
  36182. [
  36183. {
  36184. name: "Normal",
  36185. height: math.unit(5 + 10/12, "feet"),
  36186. default: true
  36187. },
  36188. ]
  36189. ))
  36190. characterMakers.push(() => makeCharacter(
  36191. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36192. {
  36193. front: {
  36194. height: math.unit(8 + 6/12, "feet"),
  36195. weight: math.unit(1150, "lb"),
  36196. name: "Front",
  36197. image: {
  36198. source: "./media/characters/kichi/front.svg",
  36199. extra: 1267/1164,
  36200. bottom: 61/1328
  36201. }
  36202. },
  36203. back: {
  36204. height: math.unit(8 + 6/12, "feet"),
  36205. weight: math.unit(1150, "lb"),
  36206. name: "Back",
  36207. image: {
  36208. source: "./media/characters/kichi/back.svg",
  36209. extra: 1273/1166,
  36210. bottom: 33/1306
  36211. }
  36212. },
  36213. },
  36214. [
  36215. {
  36216. name: "Normal",
  36217. height: math.unit(8 + 6/12, "feet"),
  36218. default: true
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36224. {
  36225. front: {
  36226. height: math.unit(6, "feet"),
  36227. weight: math.unit(210, "lb"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/manetel-greyscale/front.svg",
  36231. extra: 350/312,
  36232. bottom: 8/358
  36233. }
  36234. },
  36235. },
  36236. [
  36237. {
  36238. name: "Micro",
  36239. height: math.unit(2, "inches")
  36240. },
  36241. {
  36242. name: "Normal",
  36243. height: math.unit(6, "feet"),
  36244. default: true
  36245. },
  36246. {
  36247. name: "Minimacro",
  36248. height: math.unit(17, "feet")
  36249. },
  36250. {
  36251. name: "Macro",
  36252. height: math.unit(117, "feet")
  36253. },
  36254. ]
  36255. ))
  36256. characterMakers.push(() => makeCharacter(
  36257. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36258. {
  36259. side: {
  36260. height: math.unit(5 + 1/12, "feet"),
  36261. weight: math.unit(418, "lb"),
  36262. name: "Side",
  36263. image: {
  36264. source: "./media/characters/softpurr/side.svg",
  36265. extra: 1993/1945,
  36266. bottom: 134/2127
  36267. }
  36268. },
  36269. front: {
  36270. height: math.unit(5 + 1/12, "feet"),
  36271. weight: math.unit(418, "lb"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/softpurr/front.svg",
  36275. extra: 1950/1856,
  36276. bottom: 174/2124
  36277. }
  36278. },
  36279. paw: {
  36280. height: math.unit(1, "feet"),
  36281. name: "Paw",
  36282. image: {
  36283. source: "./media/characters/softpurr/paw.svg"
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Normal",
  36290. height: math.unit(5 + 1/12, "feet"),
  36291. default: true
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(260, "meters"),
  36300. name: "Front",
  36301. image: {
  36302. source: "./media/characters/anahita/front.svg",
  36303. extra: 665/635,
  36304. bottom: 89/754
  36305. }
  36306. },
  36307. },
  36308. [
  36309. {
  36310. name: "Macro",
  36311. height: math.unit(260, "meters"),
  36312. default: true
  36313. },
  36314. ]
  36315. ))
  36316. characterMakers.push(() => makeCharacter(
  36317. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36318. {
  36319. front: {
  36320. height: math.unit(4 + 10/12, "feet"),
  36321. weight: math.unit(160, "lb"),
  36322. name: "Front",
  36323. image: {
  36324. source: "./media/characters/chip-mouse/front.svg",
  36325. extra: 3528/3408,
  36326. bottom: 0/3528
  36327. }
  36328. },
  36329. frontNsfw: {
  36330. height: math.unit(4 + 10/12, "feet"),
  36331. weight: math.unit(160, "lb"),
  36332. name: "Front (NSFW)",
  36333. image: {
  36334. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36335. extra: 3528/3408,
  36336. bottom: 0/3528
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(4 + 10/12, "feet"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36350. {
  36351. side: {
  36352. height: math.unit(10, "feet"),
  36353. weight: math.unit(14000, "lb"),
  36354. name: "Side",
  36355. image: {
  36356. source: "./media/characters/kremm/side.svg",
  36357. extra: 1390/1053,
  36358. bottom: 90/1480
  36359. }
  36360. },
  36361. gut: {
  36362. height: math.unit(5.8, "feet"),
  36363. name: "Gut",
  36364. image: {
  36365. source: "./media/characters/kremm/gut.svg"
  36366. }
  36367. },
  36368. ass: {
  36369. height: math.unit(6.1, "feet"),
  36370. name: "Ass",
  36371. image: {
  36372. source: "./media/characters/kremm/ass.svg"
  36373. }
  36374. },
  36375. jaws: {
  36376. height: math.unit(2.2, "feet"),
  36377. name: "Jaws",
  36378. image: {
  36379. source: "./media/characters/kremm/jaws.svg"
  36380. }
  36381. },
  36382. dick: {
  36383. height: math.unit(4.26, "feet"),
  36384. name: "Dick",
  36385. image: {
  36386. source: "./media/characters/kremm/dick.svg"
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(10, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36400. {
  36401. front: {
  36402. height: math.unit(30, "stories"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/kai/front.svg",
  36406. extra: 1892/1718,
  36407. bottom: 162/2054
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Macro",
  36414. height: math.unit(30, "stories"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36421. {
  36422. front: {
  36423. height: math.unit(6 + 4/12, "feet"),
  36424. weight: math.unit(145, "lb"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/sykes/front.svg",
  36428. extra: 1321 / 1187,
  36429. bottom: 66 / 1387
  36430. }
  36431. },
  36432. back: {
  36433. height: math.unit(6 + 4/12, "feet"),
  36434. weight: math.unit(145, "lb"),
  36435. name: "Back",
  36436. image: {
  36437. source: "./media/characters/sykes/back.svg",
  36438. extra: 1326/1181,
  36439. bottom: 31/1357
  36440. }
  36441. },
  36442. traditionalOutfit: {
  36443. height: math.unit(6 + 4/12, "feet"),
  36444. weight: math.unit(145, "lb"),
  36445. name: "Traditional Outfit",
  36446. image: {
  36447. source: "./media/characters/sykes/traditional-outfit.svg",
  36448. extra: 1321 / 1187,
  36449. bottom: 66 / 1387
  36450. }
  36451. },
  36452. adventureOutfit: {
  36453. height: math.unit(6 + 4/12, "feet"),
  36454. weight: math.unit(145, "lb"),
  36455. name: "Adventure Outfit",
  36456. image: {
  36457. source: "./media/characters/sykes/adventure-outfit.svg",
  36458. extra: 1321 / 1187,
  36459. bottom: 66 / 1387
  36460. }
  36461. },
  36462. handLeft: {
  36463. height: math.unit(0.9, "feet"),
  36464. name: "Hand (Left)",
  36465. image: {
  36466. source: "./media/characters/sykes/hand-left.svg"
  36467. }
  36468. },
  36469. handRight: {
  36470. height: math.unit(0.839, "feet"),
  36471. name: "Hand (Right)",
  36472. image: {
  36473. source: "./media/characters/sykes/hand-right.svg"
  36474. }
  36475. },
  36476. leftFoot: {
  36477. height: math.unit(1.2, "feet"),
  36478. name: "Foot (Left)",
  36479. image: {
  36480. source: "./media/characters/sykes/foot-left.svg"
  36481. }
  36482. },
  36483. rightFoot: {
  36484. height: math.unit(1.2, "feet"),
  36485. name: "Foot (Right)",
  36486. image: {
  36487. source: "./media/characters/sykes/foot-right.svg"
  36488. }
  36489. },
  36490. maw: {
  36491. height: math.unit(1.93, "feet"),
  36492. name: "Maw",
  36493. image: {
  36494. source: "./media/characters/sykes/maw.svg"
  36495. }
  36496. },
  36497. teeth: {
  36498. height: math.unit(0.51, "feet"),
  36499. name: "Teeth",
  36500. image: {
  36501. source: "./media/characters/sykes/teeth.svg"
  36502. }
  36503. },
  36504. tongue: {
  36505. height: math.unit(2.13, "feet"),
  36506. name: "Tongue",
  36507. image: {
  36508. source: "./media/characters/sykes/tongue.svg"
  36509. }
  36510. },
  36511. uvula: {
  36512. height: math.unit(0.16, "feet"),
  36513. name: "Uvula",
  36514. image: {
  36515. source: "./media/characters/sykes/uvula.svg"
  36516. }
  36517. },
  36518. collar: {
  36519. height: math.unit(0.287, "feet"),
  36520. name: "Collar",
  36521. image: {
  36522. source: "./media/characters/sykes/collar.svg"
  36523. }
  36524. },
  36525. tail: {
  36526. height: math.unit(3.8, "feet"),
  36527. name: "Tail",
  36528. image: {
  36529. source: "./media/characters/sykes/tail.svg"
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Shrunken",
  36536. height: math.unit(5, "inches")
  36537. },
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(6 + 4 / 12, "feet"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Big",
  36545. height: math.unit(15, "feet")
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(5 + 8/12, "feet"),
  36554. weight: math.unit(190, "lb"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/oven-otter/front.svg",
  36558. extra: 1809/1740,
  36559. bottom: 181/1990
  36560. }
  36561. },
  36562. back: {
  36563. height: math.unit(5 + 8/12, "feet"),
  36564. weight: math.unit(190, "lb"),
  36565. name: "Back",
  36566. image: {
  36567. source: "./media/characters/oven-otter/back.svg",
  36568. extra: 1709/1635,
  36569. bottom: 118/1827
  36570. }
  36571. },
  36572. hand: {
  36573. height: math.unit(1.07, "feet"),
  36574. name: "Hand",
  36575. image: {
  36576. source: "./media/characters/oven-otter/hand.svg"
  36577. }
  36578. },
  36579. beans: {
  36580. height: math.unit(1.74, "feet"),
  36581. name: "Beans",
  36582. image: {
  36583. source: "./media/characters/oven-otter/beans.svg"
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Micro",
  36590. height: math.unit(0.5, "inches")
  36591. },
  36592. {
  36593. name: "Normal",
  36594. height: math.unit(5 + 8/12, "feet"),
  36595. default: true
  36596. },
  36597. {
  36598. name: "Macro",
  36599. height: math.unit(250, "feet")
  36600. },
  36601. {
  36602. name: "Really High",
  36603. height: math.unit(420, "feet")
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(5, "meters"),
  36612. weight: math.unit(292000000000000, "kg"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/devourer/front.svg",
  36616. extra: 1800/1733,
  36617. bottom: 211/2011
  36618. }
  36619. },
  36620. maw: {
  36621. height: math.unit(1.1, "meter"),
  36622. name: "Maw",
  36623. image: {
  36624. source: "./media/characters/devourer/maw.svg"
  36625. }
  36626. },
  36627. },
  36628. [
  36629. {
  36630. name: "Small",
  36631. height: math.unit(3, "meters")
  36632. },
  36633. {
  36634. name: "Large",
  36635. height: math.unit(5, "meters"),
  36636. default: true
  36637. },
  36638. ]
  36639. ))
  36640. characterMakers.push(() => makeCharacter(
  36641. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36642. {
  36643. front: {
  36644. height: math.unit(6, "feet"),
  36645. weight: math.unit(400, "lb"),
  36646. name: "Front",
  36647. image: {
  36648. source: "./media/characters/ellarby/front.svg",
  36649. extra: 1909/1763,
  36650. bottom: 80/1989
  36651. }
  36652. },
  36653. back: {
  36654. height: math.unit(6, "feet"),
  36655. weight: math.unit(400, "lb"),
  36656. name: "Back",
  36657. image: {
  36658. source: "./media/characters/ellarby/back.svg",
  36659. extra: 1914/1784,
  36660. bottom: 172/2086
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Mischief",
  36667. height: math.unit(18, "inches")
  36668. },
  36669. {
  36670. name: "Trouble",
  36671. height: math.unit(12, "feet")
  36672. },
  36673. {
  36674. name: "Havoc",
  36675. height: math.unit(200, "feet"),
  36676. default: true
  36677. },
  36678. {
  36679. name: "Pandemonium",
  36680. height: math.unit(1, "mile")
  36681. },
  36682. {
  36683. name: "Catastrophe",
  36684. height: math.unit(100, "miles")
  36685. },
  36686. ]
  36687. ))
  36688. characterMakers.push(() => makeCharacter(
  36689. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36690. {
  36691. front: {
  36692. height: math.unit(4.7, "meters"),
  36693. weight: math.unit(6500, "kg"),
  36694. name: "Front",
  36695. image: {
  36696. source: "./media/characters/vex/front.svg",
  36697. extra: 1288/1140,
  36698. bottom: 100/1388
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Normal",
  36705. height: math.unit(4.7, "meters"),
  36706. default: true
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36712. {
  36713. normal: {
  36714. height: math.unit(6, "feet"),
  36715. weight: math.unit(350, "lb"),
  36716. name: "Normal",
  36717. image: {
  36718. source: "./media/characters/teshy/normal.svg",
  36719. extra: 1795/1735,
  36720. bottom: 16/1811
  36721. }
  36722. },
  36723. monsterFront: {
  36724. height: math.unit(12, "feet"),
  36725. weight: math.unit(4700, "lb"),
  36726. name: "Monster (Front)",
  36727. image: {
  36728. source: "./media/characters/teshy/monster-front.svg",
  36729. extra: 2042/2034,
  36730. bottom: 128/2170
  36731. }
  36732. },
  36733. monsterSide: {
  36734. height: math.unit(12, "feet"),
  36735. weight: math.unit(4700, "lb"),
  36736. name: "Monster (Side)",
  36737. image: {
  36738. source: "./media/characters/teshy/monster-side.svg",
  36739. extra: 2067/2056,
  36740. bottom: 70/2137
  36741. }
  36742. },
  36743. monsterBack: {
  36744. height: math.unit(12, "feet"),
  36745. weight: math.unit(4700, "lb"),
  36746. name: "Monster (Back)",
  36747. image: {
  36748. source: "./media/characters/teshy/monster-back.svg",
  36749. extra: 1921/1914,
  36750. bottom: 171/2092
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(6, "feet"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36764. {
  36765. front: {
  36766. height: math.unit(6, "feet"),
  36767. name: "Front",
  36768. image: {
  36769. source: "./media/characters/ramey/front.svg",
  36770. extra: 790/787,
  36771. bottom: 27/817
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(6, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(5 + 5/12, "feet"),
  36788. weight: math.unit(120, "lb"),
  36789. name: "Front",
  36790. image: {
  36791. source: "./media/characters/phirae/front.svg",
  36792. extra: 2491/2436,
  36793. bottom: 38/2529
  36794. }
  36795. },
  36796. },
  36797. [
  36798. {
  36799. name: "Normal",
  36800. height: math.unit(5 + 5/12, "feet"),
  36801. default: true
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36807. {
  36808. front: {
  36809. height: math.unit(5 + 3/12, "feet"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/stagglas/front.svg",
  36813. extra: 962/882,
  36814. bottom: 53/1015
  36815. }
  36816. },
  36817. feral: {
  36818. height: math.unit(335, "cm"),
  36819. name: "Feral",
  36820. image: {
  36821. source: "./media/characters/stagglas/feral.svg",
  36822. extra: 1732/1090,
  36823. bottom: 48/1780
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(5 + 3/12, "feet"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(5 + 4/12, "feet"),
  36840. weight: math.unit(145, "lb"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/starra/front.svg",
  36844. extra: 1790/1691,
  36845. bottom: 91/1881
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Normal",
  36852. height: math.unit(5 + 4/12, "feet"),
  36853. default: true
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36859. {
  36860. front: {
  36861. height: math.unit(3.5, "meters"),
  36862. name: "Front",
  36863. image: {
  36864. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36865. extra: 1248/972,
  36866. bottom: 38/1286
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(3.5, "meters"),
  36874. default: true
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36880. {
  36881. side: {
  36882. height: math.unit(8 + 2/12, "feet"),
  36883. weight: math.unit(1240, "lb"),
  36884. name: "Side",
  36885. image: {
  36886. source: "./media/characters/mika-valentine/side.svg",
  36887. extra: 2670/2501,
  36888. bottom: 250/2920
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(8 + 2/12, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(7 + 2/12, "feet"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/xoltol/front.svg",
  36908. extra: 2212/2124,
  36909. bottom: 84/2296
  36910. }
  36911. },
  36912. side: {
  36913. height: math.unit(7 + 2/12, "feet"),
  36914. name: "Side",
  36915. image: {
  36916. source: "./media/characters/xoltol/side.svg",
  36917. extra: 2273/2197,
  36918. bottom: 26/2299
  36919. }
  36920. },
  36921. hand: {
  36922. height: math.unit(2.5, "feet"),
  36923. name: "Hand",
  36924. image: {
  36925. source: "./media/characters/xoltol/hand.svg"
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Small-ish",
  36932. height: math.unit(5 + 11/12, "feet")
  36933. },
  36934. {
  36935. name: "Normal",
  36936. height: math.unit(7 + 2/12, "feet")
  36937. },
  36938. {
  36939. name: "\"Macro\"",
  36940. height: math.unit(14 + 9/12, "feet"),
  36941. default: true
  36942. },
  36943. {
  36944. name: "Alternate Height",
  36945. height: math.unit(20, "feet")
  36946. },
  36947. {
  36948. name: "Actually Macro",
  36949. height: math.unit(100, "feet")
  36950. },
  36951. ]
  36952. ))
  36953. characterMakers.push(() => makeCharacter(
  36954. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36955. {
  36956. front: {
  36957. height: math.unit(5 + 2/12, "feet"),
  36958. weight: math.unit(75, "kg"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/kotetsu-redwood/front.svg",
  36962. extra: 1053/942,
  36963. bottom: 60/1113
  36964. }
  36965. },
  36966. },
  36967. [
  36968. {
  36969. name: "Normal",
  36970. height: math.unit(5 + 2/12, "feet"),
  36971. default: true
  36972. },
  36973. ]
  36974. ))
  36975. characterMakers.push(() => makeCharacter(
  36976. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36977. {
  36978. front: {
  36979. height: math.unit(2.4, "meters"),
  36980. weight: math.unit(125, "kg"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/lilith/front.svg",
  36984. extra: 1590/1513,
  36985. bottom: 203/1793
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Humanoid",
  36992. height: math.unit(2.4, "meters")
  36993. },
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(6, "meters"),
  36997. default: true
  36998. },
  36999. {
  37000. name: "Largest",
  37001. height: math.unit(55, "meters")
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(8 + 4/12, "feet"),
  37010. weight: math.unit(535, "lb"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/beh'kah-bolger/front.svg",
  37014. extra: 1660/1603,
  37015. bottom: 37/1697
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(8 + 4/12, "feet"),
  37023. default: true
  37024. },
  37025. {
  37026. name: "Kaiju",
  37027. height: math.unit(250, "feet")
  37028. },
  37029. {
  37030. name: "Still Growing",
  37031. height: math.unit(10, "miles")
  37032. },
  37033. {
  37034. name: "Continental",
  37035. height: math.unit(5000, "miles")
  37036. },
  37037. {
  37038. name: "Final Form",
  37039. height: math.unit(2500000, "miles")
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37045. {
  37046. front: {
  37047. height: math.unit(7 + 2/12, "feet"),
  37048. weight: math.unit(230, "kg"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/tatyana-milewska/front.svg",
  37052. extra: 1199/1150,
  37053. bottom: 86/1285
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(7 + 2/12, "feet"),
  37061. default: true
  37062. },
  37063. {
  37064. name: "Big",
  37065. height: math.unit(12, "feet")
  37066. },
  37067. {
  37068. name: "Minimacro",
  37069. height: math.unit(20, "feet")
  37070. },
  37071. {
  37072. name: "Macro",
  37073. height: math.unit(120, "feet")
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(7 + 8/12, "feet"),
  37082. weight: math.unit(152, "kg"),
  37083. name: "Front",
  37084. image: {
  37085. source: "./media/characters/helen-arri/front.svg",
  37086. extra: 440/423,
  37087. bottom: 14/454
  37088. }
  37089. },
  37090. back: {
  37091. height: math.unit(7 + 8/12, "feet"),
  37092. weight: math.unit(152, "kg"),
  37093. name: "Back",
  37094. image: {
  37095. source: "./media/characters/helen-arri/back.svg",
  37096. extra: 443/426,
  37097. bottom: 8/451
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(7 + 8/12, "feet"),
  37105. default: true
  37106. },
  37107. {
  37108. name: "Big",
  37109. height: math.unit(14, "feet")
  37110. },
  37111. {
  37112. name: "Minimacro",
  37113. height: math.unit(24, "feet")
  37114. },
  37115. {
  37116. name: "Macro",
  37117. height: math.unit(140, "feet")
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(6, "meters"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/ehanu-rehu/front.svg",
  37129. extra: 1800/1800,
  37130. bottom: 59/1859
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(6, "meters"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(7 + 3/12, "feet"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/renholder/front.svg",
  37150. extra: 3096/2960,
  37151. bottom: 250/3346
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Normal Bat",
  37158. height: math.unit(7 + 3/12, "feet"),
  37159. default: true
  37160. },
  37161. {
  37162. name: "Slightly Tall Bat",
  37163. height: math.unit(100, "feet")
  37164. },
  37165. {
  37166. name: "Big Bat",
  37167. height: math.unit(1000, "feet")
  37168. },
  37169. {
  37170. name: "City-Sized Bat",
  37171. height: math.unit(200000, "feet")
  37172. },
  37173. {
  37174. name: "Bigger Bat",
  37175. height: math.unit(10000, "miles")
  37176. },
  37177. {
  37178. name: "Solar Sized Bat",
  37179. height: math.unit(100, "AU")
  37180. },
  37181. {
  37182. name: "Galactic Bat",
  37183. height: math.unit(200000, "lightyears")
  37184. },
  37185. {
  37186. name: "Universally Known Bat",
  37187. height: math.unit(1, "universe")
  37188. },
  37189. ]
  37190. ))
  37191. characterMakers.push(() => makeCharacter(
  37192. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37193. {
  37194. front: {
  37195. height: math.unit(6 + 11/12, "feet"),
  37196. weight: math.unit(250, "lb"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/cookiecat/front.svg",
  37200. extra: 893/827,
  37201. bottom: 14/907
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Micro",
  37208. height: math.unit(3, "inches")
  37209. },
  37210. {
  37211. name: "Normal",
  37212. height: math.unit(6 + 11/12, "feet"),
  37213. default: true
  37214. },
  37215. {
  37216. name: "Macro",
  37217. height: math.unit(100, "feet")
  37218. },
  37219. {
  37220. name: "Macro+",
  37221. height: math.unit(404, "feet")
  37222. },
  37223. {
  37224. name: "Megamacro",
  37225. height: math.unit(165, "miles")
  37226. },
  37227. {
  37228. name: "Planetary",
  37229. height: math.unit(4600, "miles")
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(10 + 3/12, "feet"),
  37238. weight: math.unit(1500, "lb"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/tux-kusanagi/front.svg",
  37242. extra: 944/840,
  37243. bottom: 39/983
  37244. }
  37245. },
  37246. back: {
  37247. height: math.unit(10 + 3/12, "feet"),
  37248. weight: math.unit(1500, "lb"),
  37249. name: "Back",
  37250. image: {
  37251. source: "./media/characters/tux-kusanagi/back.svg",
  37252. extra: 941/842,
  37253. bottom: 28/969
  37254. }
  37255. },
  37256. rump: {
  37257. height: math.unit(5.25, "feet"),
  37258. name: "Rump",
  37259. image: {
  37260. source: "./media/characters/tux-kusanagi/rump.svg"
  37261. }
  37262. },
  37263. beak: {
  37264. height: math.unit(1.54, "feet"),
  37265. name: "Beak",
  37266. image: {
  37267. source: "./media/characters/tux-kusanagi/beak.svg"
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(10 + 3/12, "feet"),
  37275. default: true
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(58, "feet"),
  37284. weight: math.unit(200, "tons"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/uzarmazari/front.svg",
  37288. extra: 1575/1455,
  37289. bottom: 152/1727
  37290. }
  37291. },
  37292. back: {
  37293. height: math.unit(58, "feet"),
  37294. weight: math.unit(200, "tons"),
  37295. name: "Back",
  37296. image: {
  37297. source: "./media/characters/uzarmazari/back.svg",
  37298. extra: 1585/1510,
  37299. bottom: 157/1742
  37300. }
  37301. },
  37302. head: {
  37303. height: math.unit(26, "feet"),
  37304. name: "Head",
  37305. image: {
  37306. source: "./media/characters/uzarmazari/head.svg"
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(58, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37320. {
  37321. side: {
  37322. height: math.unit(15, "feet"),
  37323. name: "Side",
  37324. image: {
  37325. source: "./media/characters/akitu/side.svg",
  37326. extra: 1421/1321,
  37327. bottom: 157/1578
  37328. }
  37329. },
  37330. front: {
  37331. height: math.unit(15, "feet"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/akitu/front.svg",
  37335. extra: 1435/1326,
  37336. bottom: 232/1667
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(15, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(10 + 8/12, "feet"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/azalie-croixland/front.svg",
  37356. extra: 1972/1856,
  37357. bottom: 31/2003
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Original Height",
  37364. height: math.unit(5 + 4/12, "feet")
  37365. },
  37366. {
  37367. name: "Normal Height",
  37368. height: math.unit(10 + 8/12, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37375. {
  37376. side: {
  37377. height: math.unit(7 + 1/12, "feet"),
  37378. weight: math.unit(245, "lb"),
  37379. name: "Side",
  37380. image: {
  37381. source: "./media/characters/kavus-kazian/side.svg",
  37382. extra: 349/342,
  37383. bottom: 15/364
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(7 + 1/12, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37397. {
  37398. normalFront: {
  37399. height: math.unit(5 + 11/12, "feet"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/moonlight-rose/normal-front.svg",
  37403. extra: 1980/1825,
  37404. bottom: 18/1998
  37405. },
  37406. form: "normal",
  37407. default: true
  37408. },
  37409. normalBack: {
  37410. height: math.unit(5 + 11/12, "feet"),
  37411. name: "Back",
  37412. image: {
  37413. source: "./media/characters/moonlight-rose/normal-back.svg",
  37414. extra: 2010/1839,
  37415. bottom: 10/2020
  37416. },
  37417. form: "normal"
  37418. },
  37419. demonFront: {
  37420. height: math.unit(1.5, "earths"),
  37421. name: "Front",
  37422. image: {
  37423. source: "./media/characters/moonlight-rose/demon.svg",
  37424. extra: 1400/1294,
  37425. bottom: 45/1445
  37426. },
  37427. form: "demon",
  37428. default: true
  37429. },
  37430. terraFront: {
  37431. height: math.unit(1.5, "earths"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/moonlight-rose/terra.svg"
  37435. },
  37436. form: "terra",
  37437. default: true
  37438. },
  37439. jupiterFront: {
  37440. height: math.unit(69911*2, "km"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37444. extra: 1367/1286,
  37445. bottom: 55/1422
  37446. },
  37447. form: "jupiter",
  37448. default: true
  37449. },
  37450. neptuneFront: {
  37451. height: math.unit(24622*2, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37455. extra: 1851/1712,
  37456. bottom: 0/1851
  37457. },
  37458. form: "neptune",
  37459. default: true
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "\"Natural\" Height",
  37465. height: math.unit(5 + 11/12, "feet"),
  37466. form: "normal"
  37467. },
  37468. {
  37469. name: "Smallest comfortable size",
  37470. height: math.unit(40, "meters"),
  37471. form: "normal"
  37472. },
  37473. {
  37474. name: "Common size",
  37475. height: math.unit(50, "km"),
  37476. form: "normal",
  37477. default: true
  37478. },
  37479. {
  37480. name: "Normal",
  37481. height: math.unit(1.5, "earths"),
  37482. form: "demon",
  37483. default: true
  37484. },
  37485. {
  37486. name: "Universal",
  37487. height: math.unit(15, "universes"),
  37488. form: "demon"
  37489. },
  37490. {
  37491. name: "Earth",
  37492. height: math.unit(1.5, "earths"),
  37493. form: "terra",
  37494. default: true
  37495. },
  37496. {
  37497. name: "Super Earth",
  37498. height: math.unit(67.5, "earths"),
  37499. form: "terra"
  37500. },
  37501. {
  37502. name: "Doesn't fit in a solar system...",
  37503. height: math.unit(1, "galaxy"),
  37504. form: "terra"
  37505. },
  37506. {
  37507. name: "Saturn",
  37508. height: math.unit(58232*2, "km"),
  37509. form: "jupiter"
  37510. },
  37511. {
  37512. name: "Jupiter",
  37513. height: math.unit(69911*2, "km"),
  37514. form: "jupiter",
  37515. default: true
  37516. },
  37517. {
  37518. name: "HD 100546 b",
  37519. height: math.unit(482938, "km"),
  37520. form: "jupiter"
  37521. },
  37522. {
  37523. name: "Enceladus",
  37524. height: math.unit(513*2, "km"),
  37525. form: "neptune"
  37526. },
  37527. {
  37528. name: "Europe",
  37529. height: math.unit(1560*2, "km"),
  37530. form: "neptune"
  37531. },
  37532. {
  37533. name: "Neptune",
  37534. height: math.unit(24622*2, "km"),
  37535. form: "neptune",
  37536. default: true
  37537. },
  37538. {
  37539. name: "CoRoT-9b",
  37540. height: math.unit(75067*2, "km"),
  37541. form: "neptune"
  37542. },
  37543. ],
  37544. {
  37545. "normal": {
  37546. name: "Normal",
  37547. default: true
  37548. },
  37549. "demon": {
  37550. name: "Demon"
  37551. },
  37552. "terra": {
  37553. name: "Terra"
  37554. },
  37555. "jupiter": {
  37556. name: "Jupiter"
  37557. },
  37558. "neptune": {
  37559. name: "Neptune"
  37560. }
  37561. }
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(16, "feet"),
  37568. weight: math.unit(610, "kg"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/huckle/front.svg",
  37572. extra: 1731/1625,
  37573. bottom: 33/1764
  37574. }
  37575. },
  37576. back: {
  37577. height: math.unit(16, "feet"),
  37578. weight: math.unit(610, "kg"),
  37579. name: "Back",
  37580. image: {
  37581. source: "./media/characters/huckle/back.svg",
  37582. extra: 1738/1651,
  37583. bottom: 37/1775
  37584. }
  37585. },
  37586. laughing: {
  37587. height: math.unit(3.75, "feet"),
  37588. name: "Laughing",
  37589. image: {
  37590. source: "./media/characters/huckle/laughing.svg"
  37591. }
  37592. },
  37593. angry: {
  37594. height: math.unit(4.15, "feet"),
  37595. name: "Angry",
  37596. image: {
  37597. source: "./media/characters/huckle/angry.svg"
  37598. }
  37599. },
  37600. },
  37601. [
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(16, "feet"),
  37605. default: true
  37606. },
  37607. {
  37608. name: "Mini Macro",
  37609. height: math.unit(463, "feet")
  37610. },
  37611. {
  37612. name: "Macro",
  37613. height: math.unit(1680, "meters")
  37614. },
  37615. {
  37616. name: "Mega Macro",
  37617. height: math.unit(175, "km")
  37618. },
  37619. {
  37620. name: "Terra Macro",
  37621. height: math.unit(32, "gigameters")
  37622. },
  37623. {
  37624. name: "Multiverse+",
  37625. height: math.unit(2.56e23, "yottameters")
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(6 + 9/12, "feet"),
  37634. weight: math.unit(280, "lb"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/candy/front.svg",
  37638. extra: 234/217,
  37639. bottom: 11/245
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Really Small",
  37646. height: math.unit(0.1, "nm")
  37647. },
  37648. {
  37649. name: "Micro",
  37650. height: math.unit(2, "inches")
  37651. },
  37652. {
  37653. name: "Normal",
  37654. height: math.unit(6 + 9/12, "feet"),
  37655. default: true
  37656. },
  37657. {
  37658. name: "Small Macro",
  37659. height: math.unit(69, "feet")
  37660. },
  37661. {
  37662. name: "Macro",
  37663. height: math.unit(160, "feet")
  37664. },
  37665. {
  37666. name: "Megamacro",
  37667. height: math.unit(22000, "miles")
  37668. },
  37669. {
  37670. name: "Gigamacro",
  37671. height: math.unit(50000, "miles")
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(4, "feet"),
  37680. weight: math.unit(90, "lb"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/joey-mcdonald/front.svg",
  37684. extra: 1059/852,
  37685. bottom: 33/1092
  37686. }
  37687. },
  37688. back: {
  37689. height: math.unit(4, "feet"),
  37690. weight: math.unit(90, "lb"),
  37691. name: "Back",
  37692. image: {
  37693. source: "./media/characters/joey-mcdonald/back.svg",
  37694. extra: 1077/879,
  37695. bottom: 5/1082
  37696. }
  37697. },
  37698. frontKobold: {
  37699. height: math.unit(4, "feet"),
  37700. weight: math.unit(100, "lb"),
  37701. name: "Front-kobold",
  37702. image: {
  37703. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37704. extra: 1480/1367,
  37705. bottom: 0/1480
  37706. }
  37707. },
  37708. backKobold: {
  37709. height: math.unit(4, "feet"),
  37710. weight: math.unit(100, "lb"),
  37711. name: "Back-kobold",
  37712. image: {
  37713. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37714. extra: 1449/1361,
  37715. bottom: 0/1449
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(4, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(12 + 6/12, "feet"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/kass-lockheed/front.svg",
  37735. extra: 354/343,
  37736. bottom: 9/363
  37737. }
  37738. },
  37739. back: {
  37740. height: math.unit(12 + 6/12, "feet"),
  37741. name: "Back",
  37742. image: {
  37743. source: "./media/characters/kass-lockheed/back.svg",
  37744. extra: 364/352,
  37745. bottom: 3/367
  37746. }
  37747. },
  37748. dick: {
  37749. height: math.unit(3.12, "feet"),
  37750. name: "Dick",
  37751. image: {
  37752. source: "./media/characters/kass-lockheed/dick.svg"
  37753. }
  37754. },
  37755. head: {
  37756. height: math.unit(2.6, "feet"),
  37757. name: "Head",
  37758. image: {
  37759. source: "./media/characters/kass-lockheed/head.svg"
  37760. }
  37761. },
  37762. bleh: {
  37763. height: math.unit(2.85, "feet"),
  37764. name: "Bleh",
  37765. image: {
  37766. source: "./media/characters/kass-lockheed/bleh.svg"
  37767. }
  37768. },
  37769. smug: {
  37770. height: math.unit(2.85, "feet"),
  37771. name: "Smug",
  37772. image: {
  37773. source: "./media/characters/kass-lockheed/smug.svg"
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(12 + 6/12, "feet"),
  37781. default: true
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37787. {
  37788. front: {
  37789. height: math.unit(6 + 2/12, "feet"),
  37790. name: "Front",
  37791. image: {
  37792. source: "./media/characters/taylor/front.svg",
  37793. extra: 639/495,
  37794. bottom: 12/651
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(6 + 2/12, "feet"),
  37802. default: true
  37803. },
  37804. {
  37805. name: "Big",
  37806. height: math.unit(15, "feet")
  37807. },
  37808. {
  37809. name: "Lorg",
  37810. height: math.unit(80, "feet")
  37811. },
  37812. {
  37813. name: "Too Lorg",
  37814. height: math.unit(120, "feet")
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(15, "feet"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/kaizer/front.svg",
  37826. extra: 1612/1436,
  37827. bottom: 43/1655
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(15, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(2, "feet"),
  37844. weight: math.unit(30, "lb"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/sandy/front.svg",
  37848. extra: 1439/1307,
  37849. bottom: 194/1633
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(2, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(3, "feet"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/mellvi/front.svg",
  37869. extra: 1831/1630,
  37870. bottom: 58/1889
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(3, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(5 + 11/12, "feet"),
  37887. weight: math.unit(200, "lb"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/shirou/front.svg",
  37891. extra: 2491/2383,
  37892. bottom: 189/2680
  37893. }
  37894. },
  37895. back: {
  37896. height: math.unit(5 + 11/12, "feet"),
  37897. weight: math.unit(200, "lb"),
  37898. name: "Back",
  37899. image: {
  37900. source: "./media/characters/shirou/back.svg",
  37901. extra: 2554/2450,
  37902. bottom: 76/2630
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(5 + 11/12, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37916. {
  37917. front: {
  37918. height: math.unit(6 + 3/12, "feet"),
  37919. weight: math.unit(177, "lb"),
  37920. name: "Front",
  37921. image: {
  37922. source: "./media/characters/noryu/front.svg",
  37923. extra: 973/885,
  37924. bottom: 10/983
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(6 + 3/12, "feet"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(5 + 6/12, "feet"),
  37941. weight: math.unit(170, "lb"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/mevolas-rubenido/front.svg",
  37945. extra: 2109/1901,
  37946. bottom: 96/2205
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(5 + 6/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(100, "feet"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/dee/front.svg",
  37966. extra: 2153/2036,
  37967. bottom: 59/2212
  37968. }
  37969. },
  37970. back: {
  37971. height: math.unit(100, "feet"),
  37972. name: "Back",
  37973. image: {
  37974. source: "./media/characters/dee/back.svg",
  37975. extra: 2183/2058,
  37976. bottom: 75/2258
  37977. }
  37978. },
  37979. foot: {
  37980. height: math.unit(19.43, "feet"),
  37981. name: "Foot",
  37982. image: {
  37983. source: "./media/characters/dee/foot.svg"
  37984. }
  37985. },
  37986. hoof: {
  37987. height: math.unit(20.6, "feet"),
  37988. name: "Hoof",
  37989. image: {
  37990. source: "./media/characters/dee/hoof.svg"
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Macro",
  37997. height: math.unit(100, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(5 + 6/12, "feet"),
  38007. name: "Front",
  38008. image: {
  38009. source: "./media/characters/teh/front.svg",
  38010. extra: 1002/847,
  38011. bottom: 62/1064
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Normal",
  38018. height: math.unit(5 + 6/12, "feet"),
  38019. default: true
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38025. {
  38026. side: {
  38027. height: math.unit(6 + 1/12, "feet"),
  38028. weight: math.unit(204, "lb"),
  38029. name: "Side",
  38030. image: {
  38031. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38032. extra: 974/775,
  38033. bottom: 169/1143
  38034. }
  38035. },
  38036. sitting: {
  38037. height: math.unit(6 + 2/12, "feet"),
  38038. weight: math.unit(204, "lb"),
  38039. name: "Sitting",
  38040. image: {
  38041. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38042. extra: 1175/964,
  38043. bottom: 378/1553
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(6 + 1/12, "feet"),
  38051. default: true
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38057. {
  38058. front: {
  38059. height: math.unit(6, "inches"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/tululi/front.svg",
  38063. extra: 1997/1876,
  38064. bottom: 20/2017
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(6, "inches"),
  38072. default: true
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(4 + 1/12, "feet"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/star/front.svg",
  38084. extra: 1493/1189,
  38085. bottom: 48/1541
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(4 + 1/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(6 + 3/12, "feet"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/comet/front.svg",
  38105. extra: 1681/1462,
  38106. bottom: 26/1707
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(6 + 3/12, "feet"),
  38114. default: true
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(950, "feet"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/vortex/front.svg",
  38126. extra: 1497/1434,
  38127. bottom: 56/1553
  38128. }
  38129. },
  38130. maw: {
  38131. height: math.unit(285, "feet"),
  38132. name: "Maw",
  38133. image: {
  38134. source: "./media/characters/vortex/maw.svg"
  38135. }
  38136. },
  38137. },
  38138. [
  38139. {
  38140. name: "Macro",
  38141. height: math.unit(950, "feet"),
  38142. default: true
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(600, "feet"),
  38151. weight: math.unit(0.02, "grams"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/doodle/front.svg",
  38155. extra: 1578/1413,
  38156. bottom: 37/1615
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Macro",
  38163. height: math.unit(600, "feet"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(6 + 6/12, "feet"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/jai/front.svg",
  38176. extra: 1645/1534,
  38177. bottom: 115/1760
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(6 + 6/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(6 + 8/12, "feet"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/pixel/front.svg",
  38197. extra: 1900/1735,
  38198. bottom: 63/1963
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(6 + 8/12, "feet"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38212. {
  38213. back: {
  38214. height: math.unit(4 + 1/12, "feet"),
  38215. weight: math.unit(75, "lb"),
  38216. name: "Back",
  38217. image: {
  38218. source: "./media/characters/rhett/back.svg",
  38219. extra: 930/878,
  38220. bottom: 25/955
  38221. }
  38222. },
  38223. front: {
  38224. height: math.unit(4 + 1/12, "feet"),
  38225. weight: math.unit(75, "lb"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/rhett/front.svg",
  38229. extra: 1682/1586,
  38230. bottom: 92/1774
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Micro",
  38237. height: math.unit(8, "inches")
  38238. },
  38239. {
  38240. name: "Tiny",
  38241. height: math.unit(2, "feet")
  38242. },
  38243. {
  38244. name: "Normal",
  38245. height: math.unit(4 + 1/12, "feet"),
  38246. default: true
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(3 + 3/12, "feet"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/penny/front.svg",
  38258. extra: 1406/1311,
  38259. bottom: 26/1432
  38260. }
  38261. },
  38262. },
  38263. [
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(3 + 3/12, "feet"),
  38267. default: true
  38268. },
  38269. ]
  38270. ))
  38271. characterMakers.push(() => makeCharacter(
  38272. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38273. {
  38274. front: {
  38275. height: math.unit(4 + 11/12, "feet"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/monty/front.svg",
  38279. extra: 1479/1209,
  38280. bottom: 0/1479
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(4 + 11/12, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(8 + 4/12, "feet"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/sterling/front.svg",
  38300. extra: 1420/1236,
  38301. bottom: 27/1447
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(8 + 4/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(15, "feet"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/marble/front.svg",
  38321. extra: 973/937,
  38322. bottom: 32/1005
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(15, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38336. {
  38337. front: {
  38338. height: math.unit(3, "inches"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/powder/front.svg",
  38342. extra: 1504/1334,
  38343. bottom: 518/2022
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(3, "inches"),
  38351. default: true
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(4 + 5/12, "feet"),
  38360. name: "Front",
  38361. image: {
  38362. source: "./media/characters/joey-raccoon/front.svg",
  38363. extra: 1273/1197,
  38364. bottom: 0/1273
  38365. }
  38366. },
  38367. },
  38368. [
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(4 + 5/12, "feet"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(8 + 4/12, "feet"),
  38381. name: "Front",
  38382. image: {
  38383. source: "./media/characters/vick/front.svg",
  38384. extra: 2187/2118,
  38385. bottom: 47/2234
  38386. }
  38387. },
  38388. },
  38389. [
  38390. {
  38391. name: "Normal",
  38392. height: math.unit(8 + 4/12, "feet"),
  38393. default: true
  38394. },
  38395. ]
  38396. ))
  38397. characterMakers.push(() => makeCharacter(
  38398. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38399. {
  38400. front: {
  38401. height: math.unit(5 + 5/12, "feet"),
  38402. name: "Front",
  38403. image: {
  38404. source: "./media/characters/mitsy/front.svg",
  38405. extra: 1842/1695,
  38406. bottom: 0/1842
  38407. }
  38408. },
  38409. },
  38410. [
  38411. {
  38412. name: "Normal",
  38413. height: math.unit(5 + 5/12, "feet"),
  38414. default: true
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(6 + 3/12, "feet"),
  38423. name: "Front",
  38424. image: {
  38425. source: "./media/characters/silvy/front.svg",
  38426. extra: 1995/1836,
  38427. bottom: 225/2220
  38428. }
  38429. },
  38430. },
  38431. [
  38432. {
  38433. name: "Normal",
  38434. height: math.unit(6 + 3/12, "feet"),
  38435. default: true
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(3 + 8/12, "feet"),
  38444. name: "Front",
  38445. image: {
  38446. source: "./media/characters/rodney/front.svg",
  38447. extra: 1956/1747,
  38448. bottom: 31/1987
  38449. }
  38450. },
  38451. frontDressed: {
  38452. height: math.unit(2.9, "feet"),
  38453. name: "Front (Dressed)",
  38454. image: {
  38455. source: "./media/characters/rodney/front-dressed.svg",
  38456. extra: 1382/1241,
  38457. bottom: 385/1767
  38458. }
  38459. },
  38460. },
  38461. [
  38462. {
  38463. name: "Normal",
  38464. height: math.unit(3 + 8/12, "feet"),
  38465. default: true
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(5 + 9/12, "feet"),
  38474. weight: math.unit(194, "lbs"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/zakail-sudekai/front.svg",
  38478. extra: 2696/2533,
  38479. bottom: 248/2944
  38480. }
  38481. },
  38482. maw: {
  38483. height: math.unit(1.35, "feet"),
  38484. name: "Maw",
  38485. image: {
  38486. source: "./media/characters/zakail-sudekai/maw.svg"
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(5 + 9/12, "feet"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(8 + 4/12, "feet"),
  38503. weight: math.unit(1200, "lb"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/eleanor/front.svg",
  38507. extra: 1226/1192,
  38508. bottom: 52/1278
  38509. }
  38510. },
  38511. back: {
  38512. height: math.unit(8 + 4/12, "feet"),
  38513. weight: math.unit(1200, "lb"),
  38514. name: "Back",
  38515. image: {
  38516. source: "./media/characters/eleanor/back.svg",
  38517. extra: 1242/1184,
  38518. bottom: 60/1302
  38519. }
  38520. },
  38521. head: {
  38522. height: math.unit(2.62, "feet"),
  38523. name: "Head",
  38524. image: {
  38525. source: "./media/characters/eleanor/head.svg"
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Normal",
  38532. height: math.unit(8 + 4/12, "feet"),
  38533. default: true
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(8 + 4/12, "feet"),
  38542. weight: math.unit(750, "lb"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/tanya/front.svg",
  38546. extra: 1749/1615,
  38547. bottom: 33/1782
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(8 + 4/12, "feet"),
  38555. default: true
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38561. {
  38562. front: {
  38563. height: math.unit(5, "feet"),
  38564. weight: math.unit(225, "lb"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/cindy/front.svg",
  38568. extra: 1320/1250,
  38569. bottom: 42/1362
  38570. }
  38571. },
  38572. frontDressed: {
  38573. height: math.unit(5, "feet"),
  38574. weight: math.unit(225, "lb"),
  38575. name: "Front (Dressed)",
  38576. image: {
  38577. source: "./media/characters/cindy/front-dressed.svg",
  38578. extra: 1320/1250,
  38579. bottom: 42/1362
  38580. }
  38581. },
  38582. back: {
  38583. height: math.unit(5, "feet"),
  38584. weight: math.unit(225, "lb"),
  38585. name: "Back",
  38586. image: {
  38587. source: "./media/characters/cindy/back.svg",
  38588. extra: 1384/1346,
  38589. bottom: 14/1398
  38590. }
  38591. },
  38592. },
  38593. [
  38594. {
  38595. name: "Normal",
  38596. height: math.unit(5, "feet"),
  38597. default: true
  38598. },
  38599. ]
  38600. ))
  38601. characterMakers.push(() => makeCharacter(
  38602. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38603. {
  38604. front: {
  38605. height: math.unit(6 + 9/12, "feet"),
  38606. weight: math.unit(440, "lb"),
  38607. name: "Front",
  38608. image: {
  38609. source: "./media/characters/wilbur-owen/front.svg",
  38610. extra: 1575/1448,
  38611. bottom: 72/1647
  38612. }
  38613. },
  38614. back: {
  38615. height: math.unit(6 + 9/12, "feet"),
  38616. weight: math.unit(440, "lb"),
  38617. name: "Back",
  38618. image: {
  38619. source: "./media/characters/wilbur-owen/back.svg",
  38620. extra: 1578/1445,
  38621. bottom: 36/1614
  38622. }
  38623. },
  38624. },
  38625. [
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(6 + 9/12, "feet"),
  38629. default: true
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(6 + 5/12, "feet"),
  38638. weight: math.unit(650, "lb"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/keegan/front.svg",
  38642. extra: 2387/2198,
  38643. bottom: 33/2420
  38644. }
  38645. },
  38646. side: {
  38647. height: math.unit(6 + 5/12, "feet"),
  38648. weight: math.unit(650, "lb"),
  38649. name: "Side",
  38650. image: {
  38651. source: "./media/characters/keegan/side.svg",
  38652. extra: 2390/2202,
  38653. bottom: 47/2437
  38654. }
  38655. },
  38656. back: {
  38657. height: math.unit(6 + 5/12, "feet"),
  38658. weight: math.unit(650, "lb"),
  38659. name: "Back",
  38660. image: {
  38661. source: "./media/characters/keegan/back.svg",
  38662. extra: 2418/2268,
  38663. bottom: 15/2433
  38664. }
  38665. },
  38666. frontSfw: {
  38667. height: math.unit(6 + 5/12, "feet"),
  38668. weight: math.unit(650, "lb"),
  38669. name: "Front (SFW)",
  38670. image: {
  38671. source: "./media/characters/keegan/front-sfw.svg",
  38672. extra: 2387/2198,
  38673. bottom: 33/2420
  38674. }
  38675. },
  38676. beans: {
  38677. height: math.unit(1.85, "feet"),
  38678. name: "Beans",
  38679. image: {
  38680. source: "./media/characters/keegan/beans.svg"
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(6 + 5/12, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(9, "feet"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/colton/front.svg",
  38700. extra: 1589/1326,
  38701. bottom: 139/1728
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(9, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(2 + 9/12, "feet"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/bora/front.svg",
  38721. extra: 1265/1250,
  38722. bottom: 24/1289
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(2 + 9/12, "feet"),
  38730. default: true
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(8, "feet"),
  38739. name: "Front",
  38740. image: {
  38741. source: "./media/characters/myu-myu/front.svg",
  38742. extra: 1949/1857,
  38743. bottom: 90/2039
  38744. }
  38745. },
  38746. },
  38747. [
  38748. {
  38749. name: "Normal",
  38750. height: math.unit(8, "feet"),
  38751. default: true
  38752. },
  38753. {
  38754. name: "Big",
  38755. height: math.unit(15, "feet")
  38756. },
  38757. {
  38758. name: "BIG",
  38759. height: math.unit(25, "feet")
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38765. {
  38766. side: {
  38767. height: math.unit(7 + 5/12, "feet"),
  38768. weight: math.unit(2800, "lb"),
  38769. name: "Side",
  38770. image: {
  38771. source: "./media/characters/haloren/side.svg",
  38772. extra: 1793/409,
  38773. bottom: 59/1852
  38774. }
  38775. },
  38776. frontPaw: {
  38777. height: math.unit(2.36, "feet"),
  38778. name: "Front paw",
  38779. image: {
  38780. source: "./media/characters/haloren/front-paw.svg"
  38781. }
  38782. },
  38783. hindPaw: {
  38784. height: math.unit(3.18, "feet"),
  38785. name: "Hind paw",
  38786. image: {
  38787. source: "./media/characters/haloren/hind-paw.svg"
  38788. }
  38789. },
  38790. maw: {
  38791. height: math.unit(5.05, "feet"),
  38792. name: "Maw",
  38793. image: {
  38794. source: "./media/characters/haloren/maw.svg"
  38795. }
  38796. },
  38797. dick: {
  38798. height: math.unit(2.90, "feet"),
  38799. name: "Dick",
  38800. image: {
  38801. source: "./media/characters/haloren/dick.svg"
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(7 + 5/12, "feet"),
  38809. default: true
  38810. },
  38811. {
  38812. name: "Enhanced",
  38813. height: math.unit(14 + 3/12, "feet")
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38819. {
  38820. front: {
  38821. height: math.unit(171, "cm"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/kimmy/front.svg",
  38825. extra: 1491/1435,
  38826. bottom: 53/1544
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Small",
  38833. height: math.unit(9, "cm")
  38834. },
  38835. {
  38836. name: "Normal",
  38837. height: math.unit(171, "cm"),
  38838. default: true
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(8, "feet"),
  38847. weight: math.unit(300, "lb"),
  38848. name: "Front",
  38849. image: {
  38850. source: "./media/characters/galeboomer/front.svg",
  38851. extra: 4651/4415,
  38852. bottom: 162/4813
  38853. }
  38854. },
  38855. back: {
  38856. height: math.unit(8, "feet"),
  38857. weight: math.unit(300, "lb"),
  38858. name: "Back",
  38859. image: {
  38860. source: "./media/characters/galeboomer/back.svg",
  38861. extra: 4544/4314,
  38862. bottom: 16/4560
  38863. }
  38864. },
  38865. frontAlt: {
  38866. height: math.unit(8, "feet"),
  38867. weight: math.unit(300, "lb"),
  38868. name: "Front (Alt)",
  38869. image: {
  38870. source: "./media/characters/galeboomer/front-alt.svg",
  38871. extra: 4458/4228,
  38872. bottom: 68/4526
  38873. }
  38874. },
  38875. maw: {
  38876. height: math.unit(1.2, "feet"),
  38877. name: "Maw",
  38878. image: {
  38879. source: "./media/characters/galeboomer/maw.svg"
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(8, "feet"),
  38887. default: true
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(5 + 9/12, "feet"),
  38896. weight: math.unit(120, "lb"),
  38897. name: "Front",
  38898. image: {
  38899. source: "./media/characters/chyr/front.svg",
  38900. extra: 1323/1254,
  38901. bottom: 63/1386
  38902. }
  38903. },
  38904. back: {
  38905. height: math.unit(5 + 9/12, "feet"),
  38906. weight: math.unit(120, "lb"),
  38907. name: "Back",
  38908. image: {
  38909. source: "./media/characters/chyr/back.svg",
  38910. extra: 1323/1252,
  38911. bottom: 48/1371
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(5 + 9/12, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(7, "feet"),
  38928. weight: math.unit(310, "lb"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/solarus/front.svg",
  38932. extra: 2415/2021,
  38933. bottom: 103/2518
  38934. }
  38935. },
  38936. back: {
  38937. height: math.unit(7, "feet"),
  38938. weight: math.unit(310, "lb"),
  38939. name: "Back",
  38940. image: {
  38941. source: "./media/characters/solarus/back.svg",
  38942. extra: 2463/2089,
  38943. bottom: 79/2542
  38944. }
  38945. },
  38946. },
  38947. [
  38948. {
  38949. name: "Normal",
  38950. height: math.unit(7, "feet"),
  38951. default: true
  38952. },
  38953. ]
  38954. ))
  38955. characterMakers.push(() => makeCharacter(
  38956. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38957. {
  38958. front: {
  38959. height: math.unit(16, "feet"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38963. extra: 1844/1780,
  38964. bottom: 58/1902
  38965. }
  38966. },
  38967. winterCoat: {
  38968. height: math.unit(16, "feet"),
  38969. name: "Winter Coat",
  38970. image: {
  38971. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38972. extra: 1807/1775,
  38973. bottom: 69/1876
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(16, "feet"),
  38981. default: true
  38982. },
  38983. {
  38984. name: "Chicago Size",
  38985. height: math.unit(560, "feet")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(11 + 6/12, "feet"),
  38994. weight: math.unit(1366, "lb"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/lexor/front.svg",
  38998. extra: 1560/1481,
  38999. bottom: 211/1771
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(11 + 6/12, "feet"),
  39004. weight: math.unit(1366, "lb"),
  39005. name: "Back",
  39006. image: {
  39007. source: "./media/characters/lexor/back.svg",
  39008. extra: 1614/1533,
  39009. bottom: 76/1690
  39010. }
  39011. },
  39012. maw: {
  39013. height: math.unit(3, "feet"),
  39014. name: "Maw",
  39015. image: {
  39016. source: "./media/characters/lexor/maw.svg"
  39017. }
  39018. },
  39019. dick: {
  39020. height: math.unit(2.59, "feet"),
  39021. name: "Dick",
  39022. image: {
  39023. source: "./media/characters/lexor/dick.svg"
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(11 + 6/12, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(5 + 8/12, "feet"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/magnum/front.svg",
  39043. extra: 942/855,
  39044. bottom: 26/968
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(5 + 8/12, "feet"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(18 + 4/12, "feet"),
  39061. weight: math.unit(1500, "kg"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/solas-sharpsman/front.svg",
  39065. extra: 1698/1589,
  39066. bottom: 0/1698
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(18 + 4/12, "feet"),
  39074. default: true
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(5 + 5/12, "feet"),
  39083. weight: math.unit(180, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/october/front.svg",
  39087. extra: 1800/1650,
  39088. bottom: 0/1800
  39089. }
  39090. },
  39091. frontNsfw: {
  39092. height: math.unit(5 + 5/12, "feet"),
  39093. weight: math.unit(180, "lb"),
  39094. name: "Front (NSFW)",
  39095. image: {
  39096. source: "./media/characters/october/front-nsfw.svg",
  39097. extra: 1392/1307,
  39098. bottom: 42/1434
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Normal",
  39105. height: math.unit(5 + 5/12, "feet"),
  39106. default: true
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(8 + 6/12, "feet"),
  39115. name: "Front",
  39116. image: {
  39117. source: "./media/characters/essynkardi/front.svg",
  39118. extra: 1541/1457,
  39119. bottom: 47/1588
  39120. }
  39121. },
  39122. },
  39123. [
  39124. {
  39125. name: "Normal",
  39126. height: math.unit(8 + 6/12, "feet"),
  39127. default: true
  39128. },
  39129. ]
  39130. ))
  39131. characterMakers.push(() => makeCharacter(
  39132. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39133. {
  39134. front: {
  39135. height: math.unit(6 + 6/12, "feet"),
  39136. weight: math.unit(7, "lb"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/icky/front.svg",
  39140. extra: 813/782,
  39141. bottom: 66/879
  39142. }
  39143. },
  39144. back: {
  39145. height: math.unit(6 + 6/12, "feet"),
  39146. weight: math.unit(7, "lb"),
  39147. name: "Back",
  39148. image: {
  39149. source: "./media/characters/icky/back.svg",
  39150. extra: 754/735,
  39151. bottom: 56/810
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(6 + 6/12, "feet"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(15, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/rojas/front.svg",
  39171. extra: 1462/1408,
  39172. bottom: 95/1557
  39173. }
  39174. },
  39175. back: {
  39176. height: math.unit(15, "feet"),
  39177. name: "Back",
  39178. image: {
  39179. source: "./media/characters/rojas/back.svg",
  39180. extra: 1023/954,
  39181. bottom: 28/1051
  39182. }
  39183. },
  39184. },
  39185. [
  39186. {
  39187. name: "Normal",
  39188. height: math.unit(15, "feet"),
  39189. default: true
  39190. },
  39191. ]
  39192. ))
  39193. characterMakers.push(() => makeCharacter(
  39194. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39195. {
  39196. frontHuman: {
  39197. height: math.unit(5 + 7/12, "feet"),
  39198. name: "Front (Human)",
  39199. image: {
  39200. source: "./media/characters/alek-dryagan/front-human.svg",
  39201. extra: 1687/1667,
  39202. bottom: 69/1756
  39203. }
  39204. },
  39205. backHuman: {
  39206. height: math.unit(5 + 7/12, "feet"),
  39207. name: "Back (Human)",
  39208. image: {
  39209. source: "./media/characters/alek-dryagan/back-human.svg",
  39210. extra: 1670/1649,
  39211. bottom: 65/1735
  39212. }
  39213. },
  39214. frontDemi: {
  39215. height: math.unit(65, "feet"),
  39216. name: "Front (Demi)",
  39217. image: {
  39218. source: "./media/characters/alek-dryagan/front-demi.svg",
  39219. extra: 1669/1642,
  39220. bottom: 49/1718
  39221. }
  39222. },
  39223. backDemi: {
  39224. height: math.unit(65, "feet"),
  39225. name: "Back (Demi)",
  39226. image: {
  39227. source: "./media/characters/alek-dryagan/back-demi.svg",
  39228. extra: 1658/1637,
  39229. bottom: 40/1698
  39230. }
  39231. },
  39232. mawHuman: {
  39233. height: math.unit(0.3, "feet"),
  39234. name: "Maw (Human)",
  39235. image: {
  39236. source: "./media/characters/alek-dryagan/maw-human.svg"
  39237. }
  39238. },
  39239. mawDemi: {
  39240. height: math.unit(3.8, "feet"),
  39241. name: "Maw (Demi)",
  39242. image: {
  39243. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(5 + 7/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39257. {
  39258. frontHuman: {
  39259. height: math.unit(5 + 2/12, "feet"),
  39260. name: "Front (Human)",
  39261. image: {
  39262. source: "./media/characters/gen/front-human.svg",
  39263. extra: 1627/1538,
  39264. bottom: 71/1698
  39265. }
  39266. },
  39267. backHuman: {
  39268. height: math.unit(5 + 2/12, "feet"),
  39269. name: "Back (Human)",
  39270. image: {
  39271. source: "./media/characters/gen/back-human.svg",
  39272. extra: 1638/1548,
  39273. bottom: 69/1707
  39274. }
  39275. },
  39276. frontDemi: {
  39277. height: math.unit(5 + 2/12, "feet"),
  39278. name: "Front (Demi)",
  39279. image: {
  39280. source: "./media/characters/gen/front-demi.svg",
  39281. extra: 1627/1538,
  39282. bottom: 71/1698
  39283. }
  39284. },
  39285. backDemi: {
  39286. height: math.unit(5 + 2/12, "feet"),
  39287. name: "Back (Demi)",
  39288. image: {
  39289. source: "./media/characters/gen/back-demi.svg",
  39290. extra: 1638/1548,
  39291. bottom: 69/1707
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(5 + 2/12, "feet"),
  39299. default: true
  39300. },
  39301. ]
  39302. ))
  39303. characterMakers.push(() => makeCharacter(
  39304. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39305. {
  39306. frontImp: {
  39307. height: math.unit(1 + 11/12, "feet"),
  39308. name: "Front (Imp)",
  39309. image: {
  39310. source: "./media/characters/max-kobold/front-imp.svg",
  39311. extra: 1238/1134,
  39312. bottom: 81/1319
  39313. }
  39314. },
  39315. backImp: {
  39316. height: math.unit(1 + 11/12, "feet"),
  39317. name: "Back (Imp)",
  39318. image: {
  39319. source: "./media/characters/max-kobold/back-imp.svg",
  39320. extra: 1334/1175,
  39321. bottom: 34/1368
  39322. }
  39323. },
  39324. frontDemi: {
  39325. height: math.unit(5 + 9/12, "feet"),
  39326. name: "Front (Demi)",
  39327. image: {
  39328. source: "./media/characters/max-kobold/front-demi.svg",
  39329. extra: 1715/1685,
  39330. bottom: 54/1769
  39331. }
  39332. },
  39333. backDemi: {
  39334. height: math.unit(5 + 9/12, "feet"),
  39335. name: "Back (Demi)",
  39336. image: {
  39337. source: "./media/characters/max-kobold/back-demi.svg",
  39338. extra: 1752/1729,
  39339. bottom: 41/1793
  39340. }
  39341. },
  39342. handImp: {
  39343. height: math.unit(0.45, "feet"),
  39344. name: "Hand (Imp)",
  39345. image: {
  39346. source: "./media/characters/max-kobold/hand.svg"
  39347. }
  39348. },
  39349. pawImp: {
  39350. height: math.unit(0.46, "feet"),
  39351. name: "Paw (Imp)",
  39352. image: {
  39353. source: "./media/characters/max-kobold/paw.svg"
  39354. }
  39355. },
  39356. handDemi: {
  39357. height: math.unit(0.80, "feet"),
  39358. name: "Hand (Demi)",
  39359. image: {
  39360. source: "./media/characters/max-kobold/hand.svg"
  39361. }
  39362. },
  39363. pawDemi: {
  39364. height: math.unit(1.1, "feet"),
  39365. name: "Paw (Demi)",
  39366. image: {
  39367. source: "./media/characters/max-kobold/paw.svg"
  39368. }
  39369. },
  39370. headImp: {
  39371. height: math.unit(1.33, "feet"),
  39372. name: "Head (Imp)",
  39373. image: {
  39374. source: "./media/characters/max-kobold/head-imp.svg"
  39375. }
  39376. },
  39377. mawImp: {
  39378. height: math.unit(0.75, "feet"),
  39379. name: "Maw (Imp)",
  39380. image: {
  39381. source: "./media/characters/max-kobold/maw-imp.svg"
  39382. }
  39383. },
  39384. mawDemi: {
  39385. height: math.unit(0.42, "feet"),
  39386. name: "Maw (Demi)",
  39387. image: {
  39388. source: "./media/characters/max-kobold/maw-demi.svg"
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(1 + 11/12, "feet"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39402. {
  39403. front: {
  39404. height: math.unit(7 + 5/12, "feet"),
  39405. name: "Front",
  39406. image: {
  39407. source: "./media/characters/carbon/front.svg",
  39408. extra: 1754/1689,
  39409. bottom: 65/1819
  39410. }
  39411. },
  39412. back: {
  39413. height: math.unit(7 + 5/12, "feet"),
  39414. name: "Back",
  39415. image: {
  39416. source: "./media/characters/carbon/back.svg",
  39417. extra: 1762/1695,
  39418. bottom: 24/1786
  39419. }
  39420. },
  39421. frontGigantamax: {
  39422. height: math.unit(150, "feet"),
  39423. name: "Front (Gigantamax)",
  39424. image: {
  39425. source: "./media/characters/carbon/front-gigantamax.svg",
  39426. extra: 1826/1669,
  39427. bottom: 59/1885
  39428. }
  39429. },
  39430. backGigantamax: {
  39431. height: math.unit(150, "feet"),
  39432. name: "Back (Gigantamax)",
  39433. image: {
  39434. source: "./media/characters/carbon/back-gigantamax.svg",
  39435. extra: 1796/1653,
  39436. bottom: 53/1849
  39437. }
  39438. },
  39439. maw: {
  39440. height: math.unit(0.48, "feet"),
  39441. name: "Maw",
  39442. image: {
  39443. source: "./media/characters/carbon/maw.svg"
  39444. }
  39445. },
  39446. mawGigantamax: {
  39447. height: math.unit(7.5, "feet"),
  39448. name: "Maw (Gigantamax)",
  39449. image: {
  39450. source: "./media/characters/carbon/maw-gigantamax.svg"
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Normal",
  39457. height: math.unit(7 + 5/12, "feet"),
  39458. default: true
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(6, "feet"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/maverick/front.svg",
  39470. extra: 1672/1661,
  39471. bottom: 85/1757
  39472. }
  39473. },
  39474. back: {
  39475. height: math.unit(6, "feet"),
  39476. name: "Back",
  39477. image: {
  39478. source: "./media/characters/maverick/back.svg",
  39479. extra: 1642/1631,
  39480. bottom: 38/1680
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Normal",
  39487. height: math.unit(6, "feet"),
  39488. default: true
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(15, "feet"),
  39497. weight: math.unit(615, "lb"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/grockle/front.svg",
  39501. extra: 1535/1427,
  39502. bottom: 56/1591
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(15, "feet"),
  39510. default: true
  39511. },
  39512. {
  39513. name: "Large",
  39514. height: math.unit(150, "feet")
  39515. },
  39516. {
  39517. name: "Macro",
  39518. height: math.unit(1876, "feet")
  39519. },
  39520. {
  39521. name: "Mega Macro",
  39522. height: math.unit(121940, "feet")
  39523. },
  39524. {
  39525. name: "Giga Macro",
  39526. height: math.unit(750, "km")
  39527. },
  39528. {
  39529. name: "Tera Macro",
  39530. height: math.unit(750000, "km")
  39531. },
  39532. {
  39533. name: "Galactic",
  39534. height: math.unit(1.4e5, "km")
  39535. },
  39536. {
  39537. name: "Godlike",
  39538. height: math.unit(9.8e280, "galaxies")
  39539. },
  39540. ]
  39541. ))
  39542. characterMakers.push(() => makeCharacter(
  39543. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39544. {
  39545. front: {
  39546. height: math.unit(11, "meters"),
  39547. weight: math.unit(20, "tonnes"),
  39548. name: "Front",
  39549. image: {
  39550. source: "./media/characters/alistair/front.svg",
  39551. extra: 1265/1009,
  39552. bottom: 93/1358
  39553. }
  39554. },
  39555. },
  39556. [
  39557. {
  39558. name: "Normal",
  39559. height: math.unit(11, "meters"),
  39560. default: true
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39566. {
  39567. front: {
  39568. height: math.unit(5 + 8/12, "feet"),
  39569. name: "Front",
  39570. image: {
  39571. source: "./media/characters/haruka/front.svg",
  39572. extra: 2012/1952,
  39573. bottom: 0/2012
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Normal",
  39580. height: math.unit(5 + 8/12, "feet"),
  39581. default: true
  39582. },
  39583. ]
  39584. ))
  39585. characterMakers.push(() => makeCharacter(
  39586. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39587. {
  39588. back: {
  39589. height: math.unit(9, "feet"),
  39590. name: "Back",
  39591. image: {
  39592. source: "./media/characters/vivian-sylveon/back.svg",
  39593. extra: 1853/1714,
  39594. bottom: 0/1853
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(9, "feet"),
  39602. default: true
  39603. },
  39604. {
  39605. name: "Macro",
  39606. height: math.unit(500, "feet")
  39607. },
  39608. {
  39609. name: "Megamacro",
  39610. height: math.unit(600, "miles")
  39611. },
  39612. {
  39613. name: "Gigamacro",
  39614. height: math.unit(30000, "miles")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39620. {
  39621. anthro: {
  39622. height: math.unit(5 + 10/12, "feet"),
  39623. weight: math.unit(100, "lb"),
  39624. name: "Anthro",
  39625. image: {
  39626. source: "./media/characters/daiki/anthro.svg",
  39627. extra: 1115/1027,
  39628. bottom: 69/1184
  39629. }
  39630. },
  39631. feral: {
  39632. height: math.unit(200, "feet"),
  39633. name: "Feral",
  39634. image: {
  39635. source: "./media/characters/daiki/feral.svg",
  39636. extra: 1256/313,
  39637. bottom: 39/1295
  39638. }
  39639. },
  39640. feralHead: {
  39641. height: math.unit(171, "feet"),
  39642. name: "Feral Head",
  39643. image: {
  39644. source: "./media/characters/daiki/feral-head.svg"
  39645. }
  39646. },
  39647. manaDragon: {
  39648. height: math.unit(170, "meters"),
  39649. name: "Mana-dragon",
  39650. image: {
  39651. source: "./media/characters/daiki/mana-dragon.svg",
  39652. extra: 763/420,
  39653. bottom: 97/860
  39654. }
  39655. },
  39656. },
  39657. [
  39658. {
  39659. name: "Normal",
  39660. height: math.unit(5 + 10/12, "feet"),
  39661. default: true
  39662. },
  39663. ]
  39664. ))
  39665. characterMakers.push(() => makeCharacter(
  39666. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39667. {
  39668. fullyEquippedFront: {
  39669. height: math.unit(3 + 1/12, "feet"),
  39670. weight: math.unit(24, "lb"),
  39671. name: "Fully Equipped (Front)",
  39672. image: {
  39673. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39674. extra: 687/605,
  39675. bottom: 18/705
  39676. }
  39677. },
  39678. fullyEquippedBack: {
  39679. height: math.unit(3 + 1/12, "feet"),
  39680. weight: math.unit(24, "lb"),
  39681. name: "Fully Equipped (Back)",
  39682. image: {
  39683. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39684. extra: 689/590,
  39685. bottom: 18/707
  39686. }
  39687. },
  39688. dailyWear: {
  39689. height: math.unit(3 + 1/12, "feet"),
  39690. weight: math.unit(24, "lb"),
  39691. name: "Daily Wear",
  39692. image: {
  39693. source: "./media/characters/tea-spot/daily-wear.svg",
  39694. extra: 701/620,
  39695. bottom: 21/722
  39696. }
  39697. },
  39698. maidWork: {
  39699. height: math.unit(3 + 1/12, "feet"),
  39700. weight: math.unit(24, "lb"),
  39701. name: "Maid Work",
  39702. image: {
  39703. source: "./media/characters/tea-spot/maid-work.svg",
  39704. extra: 693/609,
  39705. bottom: 15/708
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Normal",
  39712. height: math.unit(3 + 1/12, "feet"),
  39713. default: true
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39719. {
  39720. front: {
  39721. height: math.unit(175, "cm"),
  39722. weight: math.unit(75, "kg"),
  39723. name: "Front",
  39724. image: {
  39725. source: "./media/characters/chee/front.svg",
  39726. extra: 1796/1740,
  39727. bottom: 40/1836
  39728. }
  39729. },
  39730. },
  39731. [
  39732. {
  39733. name: "Micro-Micro",
  39734. height: math.unit(1, "nm")
  39735. },
  39736. {
  39737. name: "Micro-erst",
  39738. height: math.unit(1, "micrometer")
  39739. },
  39740. {
  39741. name: "Micro-er",
  39742. height: math.unit(1, "cm")
  39743. },
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(175, "cm"),
  39747. default: true
  39748. },
  39749. {
  39750. name: "Macro",
  39751. height: math.unit(100, "m")
  39752. },
  39753. {
  39754. name: "Macro-er",
  39755. height: math.unit(1, "km")
  39756. },
  39757. {
  39758. name: "Macro-erst",
  39759. height: math.unit(10, "km")
  39760. },
  39761. {
  39762. name: "Macro-Macro",
  39763. height: math.unit(100, "km")
  39764. },
  39765. ]
  39766. ))
  39767. characterMakers.push(() => makeCharacter(
  39768. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39769. {
  39770. front: {
  39771. height: math.unit(11 + 9/12, "feet"),
  39772. weight: math.unit(935, "lb"),
  39773. name: "Front",
  39774. image: {
  39775. source: "./media/characters/kingsley/front.svg",
  39776. extra: 1803/1674,
  39777. bottom: 127/1930
  39778. }
  39779. },
  39780. frontNude: {
  39781. height: math.unit(11 + 9/12, "feet"),
  39782. weight: math.unit(935, "lb"),
  39783. name: "Front (Nude)",
  39784. image: {
  39785. source: "./media/characters/kingsley/front-nude.svg",
  39786. extra: 1803/1674,
  39787. bottom: 127/1930
  39788. }
  39789. },
  39790. },
  39791. [
  39792. {
  39793. name: "Normal",
  39794. height: math.unit(11 + 9/12, "feet"),
  39795. default: true
  39796. },
  39797. ]
  39798. ))
  39799. characterMakers.push(() => makeCharacter(
  39800. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39801. {
  39802. side: {
  39803. height: math.unit(9, "feet"),
  39804. name: "Side",
  39805. image: {
  39806. source: "./media/characters/rymel/side.svg",
  39807. extra: 792/469,
  39808. bottom: 121/913
  39809. }
  39810. },
  39811. maw: {
  39812. height: math.unit(2.4, "meters"),
  39813. name: "Maw",
  39814. image: {
  39815. source: "./media/characters/rymel/maw.svg"
  39816. }
  39817. },
  39818. },
  39819. [
  39820. {
  39821. name: "House Drake",
  39822. height: math.unit(2, "feet")
  39823. },
  39824. {
  39825. name: "Reduced",
  39826. height: math.unit(4.5, "feet")
  39827. },
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(9, "feet"),
  39831. default: true
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(1.74, "meters"),
  39840. weight: math.unit(55, "kg"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/rubus/front.svg",
  39844. extra: 1894/1742,
  39845. bottom: 44/1938
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(1.74, "meters"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(5 + 2/12, "feet"),
  39862. weight: math.unit(112, "lb"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/cassie-kingston/front.svg",
  39866. extra: 1438/1390,
  39867. bottom: 47/1485
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Normal",
  39874. height: math.unit(5 + 2/12, "feet"),
  39875. default: true
  39876. },
  39877. {
  39878. name: "Macro",
  39879. height: math.unit(128, "feet")
  39880. },
  39881. {
  39882. name: "Megamacro",
  39883. height: math.unit(2.56, "miles")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(7, "feet"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/fox/front.svg",
  39895. extra: 1798/1703,
  39896. bottom: 55/1853
  39897. }
  39898. },
  39899. back: {
  39900. height: math.unit(7, "feet"),
  39901. name: "Back",
  39902. image: {
  39903. source: "./media/characters/fox/back.svg",
  39904. extra: 1748/1649,
  39905. bottom: 32/1780
  39906. }
  39907. },
  39908. head: {
  39909. height: math.unit(1.95, "feet"),
  39910. name: "Head",
  39911. image: {
  39912. source: "./media/characters/fox/head.svg"
  39913. }
  39914. },
  39915. dick: {
  39916. height: math.unit(1.33, "feet"),
  39917. name: "Dick",
  39918. image: {
  39919. source: "./media/characters/fox/dick.svg"
  39920. }
  39921. },
  39922. foot: {
  39923. height: math.unit(1, "feet"),
  39924. name: "Foot",
  39925. image: {
  39926. source: "./media/characters/fox/foot.svg"
  39927. }
  39928. },
  39929. paw: {
  39930. height: math.unit(0.92, "feet"),
  39931. name: "Paw",
  39932. image: {
  39933. source: "./media/characters/fox/paw.svg"
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Small",
  39940. height: math.unit(3, "inches")
  39941. },
  39942. {
  39943. name: "\"Realistic\"",
  39944. height: math.unit(7, "feet")
  39945. },
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(150, "feet"),
  39949. default: true
  39950. },
  39951. {
  39952. name: "BIG",
  39953. height: math.unit(1200, "feet")
  39954. },
  39955. {
  39956. name: "👀",
  39957. height: math.unit(5, "miles")
  39958. },
  39959. {
  39960. name: "👀👀👀",
  39961. height: math.unit(64, "miles")
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(625, "feet"),
  39970. name: "Front",
  39971. image: {
  39972. source: "./media/characters/asonja-rossa/front.svg",
  39973. extra: 1833/1686,
  39974. bottom: 24/1857
  39975. }
  39976. },
  39977. back: {
  39978. height: math.unit(625, "feet"),
  39979. name: "Back",
  39980. image: {
  39981. source: "./media/characters/asonja-rossa/back.svg",
  39982. extra: 1852/1753,
  39983. bottom: 26/1878
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Macro",
  39990. height: math.unit(625, "feet"),
  39991. default: true
  39992. },
  39993. ]
  39994. ))
  39995. characterMakers.push(() => makeCharacter(
  39996. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39997. {
  39998. side: {
  39999. height: math.unit(8, "feet"),
  40000. name: "Side",
  40001. image: {
  40002. source: "./media/characters/rezukii/side.svg",
  40003. extra: 979/542,
  40004. bottom: 87/1066
  40005. }
  40006. },
  40007. sitting: {
  40008. height: math.unit(14.6, "feet"),
  40009. name: "Sitting",
  40010. image: {
  40011. source: "./media/characters/rezukii/sitting.svg",
  40012. extra: 1023/813,
  40013. bottom: 45/1068
  40014. }
  40015. },
  40016. },
  40017. [
  40018. {
  40019. name: "Tiny",
  40020. height: math.unit(2, "feet")
  40021. },
  40022. {
  40023. name: "Smol",
  40024. height: math.unit(4, "feet")
  40025. },
  40026. {
  40027. name: "Normal",
  40028. height: math.unit(8, "feet"),
  40029. default: true
  40030. },
  40031. {
  40032. name: "Big",
  40033. height: math.unit(12, "feet")
  40034. },
  40035. {
  40036. name: "Macro",
  40037. height: math.unit(30, "feet")
  40038. },
  40039. ]
  40040. ))
  40041. characterMakers.push(() => makeCharacter(
  40042. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40043. {
  40044. front: {
  40045. height: math.unit(14, "feet"),
  40046. weight: math.unit(9.5, "tonnes"),
  40047. name: "Front",
  40048. image: {
  40049. source: "./media/characters/dawnheart/front.svg",
  40050. extra: 2792/2675,
  40051. bottom: 64/2856
  40052. }
  40053. },
  40054. },
  40055. [
  40056. {
  40057. name: "Normal",
  40058. height: math.unit(14, "feet"),
  40059. default: true
  40060. },
  40061. ]
  40062. ))
  40063. characterMakers.push(() => makeCharacter(
  40064. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40065. {
  40066. front: {
  40067. height: math.unit(1.7, "m"),
  40068. name: "Front",
  40069. image: {
  40070. source: "./media/characters/gladi/front.svg",
  40071. extra: 1460/1362,
  40072. bottom: 19/1479
  40073. }
  40074. },
  40075. back: {
  40076. height: math.unit(1.7, "m"),
  40077. name: "Back",
  40078. image: {
  40079. source: "./media/characters/gladi/back.svg",
  40080. extra: 1459/1357,
  40081. bottom: 12/1471
  40082. }
  40083. },
  40084. feral: {
  40085. height: math.unit(2.05, "m"),
  40086. name: "Feral",
  40087. image: {
  40088. source: "./media/characters/gladi/feral.svg",
  40089. extra: 821/557,
  40090. bottom: 91/912
  40091. }
  40092. },
  40093. },
  40094. [
  40095. {
  40096. name: "Shortest",
  40097. height: math.unit(70, "cm")
  40098. },
  40099. {
  40100. name: "Normal",
  40101. height: math.unit(1.7, "m")
  40102. },
  40103. {
  40104. name: "Macro",
  40105. height: math.unit(10, "m"),
  40106. default: true
  40107. },
  40108. {
  40109. name: "Tallest",
  40110. height: math.unit(200, "m")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(5 + 7/12, "feet"),
  40119. weight: math.unit(2, "tons"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/erdno/front.svg",
  40123. extra: 1234/1129,
  40124. bottom: 35/1269
  40125. }
  40126. },
  40127. angled: {
  40128. height: math.unit(5 + 7/12, "feet"),
  40129. weight: math.unit(2, "tons"),
  40130. name: "Angled",
  40131. image: {
  40132. source: "./media/characters/erdno/angled.svg",
  40133. extra: 1185/1139,
  40134. bottom: 36/1221
  40135. }
  40136. },
  40137. side: {
  40138. height: math.unit(5 + 7/12, "feet"),
  40139. weight: math.unit(2, "tons"),
  40140. name: "Side",
  40141. image: {
  40142. source: "./media/characters/erdno/side.svg",
  40143. extra: 1191/1144,
  40144. bottom: 40/1231
  40145. }
  40146. },
  40147. back: {
  40148. height: math.unit(5 + 7/12, "feet"),
  40149. weight: math.unit(2, "tons"),
  40150. name: "Back",
  40151. image: {
  40152. source: "./media/characters/erdno/back.svg",
  40153. extra: 1202/1146,
  40154. bottom: 17/1219
  40155. }
  40156. },
  40157. frontNsfw: {
  40158. height: math.unit(5 + 7/12, "feet"),
  40159. weight: math.unit(2, "tons"),
  40160. name: "Front (NSFW)",
  40161. image: {
  40162. source: "./media/characters/erdno/front-nsfw.svg",
  40163. extra: 1234/1129,
  40164. bottom: 35/1269
  40165. }
  40166. },
  40167. angledNsfw: {
  40168. height: math.unit(5 + 7/12, "feet"),
  40169. weight: math.unit(2, "tons"),
  40170. name: "Angled (NSFW)",
  40171. image: {
  40172. source: "./media/characters/erdno/angled-nsfw.svg",
  40173. extra: 1185/1139,
  40174. bottom: 36/1221
  40175. }
  40176. },
  40177. sideNsfw: {
  40178. height: math.unit(5 + 7/12, "feet"),
  40179. weight: math.unit(2, "tons"),
  40180. name: "Side (NSFW)",
  40181. image: {
  40182. source: "./media/characters/erdno/side-nsfw.svg",
  40183. extra: 1191/1144,
  40184. bottom: 40/1231
  40185. }
  40186. },
  40187. backNsfw: {
  40188. height: math.unit(5 + 7/12, "feet"),
  40189. weight: math.unit(2, "tons"),
  40190. name: "Back (NSFW)",
  40191. image: {
  40192. source: "./media/characters/erdno/back-nsfw.svg",
  40193. extra: 1202/1146,
  40194. bottom: 17/1219
  40195. }
  40196. },
  40197. frontHyper: {
  40198. height: math.unit(5 + 7/12, "feet"),
  40199. weight: math.unit(2, "tons"),
  40200. name: "Front (Hyper)",
  40201. image: {
  40202. source: "./media/characters/erdno/front-hyper.svg",
  40203. extra: 1298/1136,
  40204. bottom: 35/1333
  40205. }
  40206. },
  40207. },
  40208. [
  40209. {
  40210. name: "Normal",
  40211. height: math.unit(5 + 7/12, "feet"),
  40212. default: true
  40213. },
  40214. {
  40215. name: "Big",
  40216. height: math.unit(5.7, "meters")
  40217. },
  40218. {
  40219. name: "Macro",
  40220. height: math.unit(5.7, "kilometers")
  40221. },
  40222. {
  40223. name: "Megamacro",
  40224. height: math.unit(5.7, "earths")
  40225. },
  40226. ]
  40227. ))
  40228. characterMakers.push(() => makeCharacter(
  40229. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40230. {
  40231. front: {
  40232. height: math.unit(5 + 10/12, "feet"),
  40233. weight: math.unit(150, "lb"),
  40234. name: "Front",
  40235. image: {
  40236. source: "./media/characters/jamie/front.svg",
  40237. extra: 1908/1768,
  40238. bottom: 19/1927
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Minimum",
  40245. height: math.unit(2, "cm")
  40246. },
  40247. {
  40248. name: "Micro",
  40249. height: math.unit(3, "inches")
  40250. },
  40251. {
  40252. name: "Normal",
  40253. height: math.unit(5 + 10/12, "feet"),
  40254. default: true
  40255. },
  40256. {
  40257. name: "Macro",
  40258. height: math.unit(150, "feet")
  40259. },
  40260. {
  40261. name: "Megamacro",
  40262. height: math.unit(10000, "m")
  40263. },
  40264. ]
  40265. ))
  40266. characterMakers.push(() => makeCharacter(
  40267. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40268. {
  40269. front: {
  40270. height: math.unit(2, "meters"),
  40271. weight: math.unit(100, "kg"),
  40272. name: "Front",
  40273. image: {
  40274. source: "./media/characters/shiron/front.svg",
  40275. extra: 2103/1985,
  40276. bottom: 98/2201
  40277. }
  40278. },
  40279. back: {
  40280. height: math.unit(2, "meters"),
  40281. weight: math.unit(100, "kg"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/shiron/back.svg",
  40285. extra: 2110/2015,
  40286. bottom: 89/2199
  40287. }
  40288. },
  40289. hand: {
  40290. height: math.unit(0.96, "feet"),
  40291. name: "Hand",
  40292. image: {
  40293. source: "./media/characters/shiron/hand.svg"
  40294. }
  40295. },
  40296. foot: {
  40297. height: math.unit(1.464, "feet"),
  40298. name: "Foot",
  40299. image: {
  40300. source: "./media/characters/shiron/foot.svg"
  40301. }
  40302. },
  40303. },
  40304. [
  40305. {
  40306. name: "Normal",
  40307. height: math.unit(2, "meters")
  40308. },
  40309. {
  40310. name: "Macro",
  40311. height: math.unit(500, "meters"),
  40312. default: true
  40313. },
  40314. {
  40315. name: "Megamacro",
  40316. height: math.unit(20, "km")
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(6, "feet"),
  40325. name: "Front",
  40326. image: {
  40327. source: "./media/characters/sam/front.svg",
  40328. extra: 849/826,
  40329. bottom: 19/868
  40330. }
  40331. },
  40332. },
  40333. [
  40334. {
  40335. name: "Normal",
  40336. height: math.unit(6, "feet"),
  40337. default: true
  40338. },
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40343. {
  40344. front: {
  40345. height: math.unit(8 + 4/12, "feet"),
  40346. weight: math.unit(122, "kg"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/namori-kurogawa/front.svg",
  40350. extra: 1894/1576,
  40351. bottom: 34/1928
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(8 + 4/12, "feet"),
  40359. default: true
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40365. {
  40366. front: {
  40367. height: math.unit(9, "feet"),
  40368. weight: math.unit(621, "lb"),
  40369. name: "Front",
  40370. image: {
  40371. source: "./media/characters/unmru/front.svg",
  40372. extra: 1853/1747,
  40373. bottom: 73/1926
  40374. }
  40375. },
  40376. side: {
  40377. height: math.unit(9, "feet"),
  40378. weight: math.unit(621, "lb"),
  40379. name: "Side",
  40380. image: {
  40381. source: "./media/characters/unmru/side.svg",
  40382. extra: 1781/1671,
  40383. bottom: 127/1908
  40384. }
  40385. },
  40386. back: {
  40387. height: math.unit(9, "feet"),
  40388. weight: math.unit(621, "lb"),
  40389. name: "Back",
  40390. image: {
  40391. source: "./media/characters/unmru/back.svg",
  40392. extra: 1894/1765,
  40393. bottom: 75/1969
  40394. }
  40395. },
  40396. dick: {
  40397. height: math.unit(3, "feet"),
  40398. weight: math.unit(35, "lb"),
  40399. name: "Dick",
  40400. image: {
  40401. source: "./media/characters/unmru/dick.svg"
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Normal",
  40408. height: math.unit(9, "feet")
  40409. },
  40410. {
  40411. name: "Natural",
  40412. height: math.unit(27, "feet"),
  40413. default: true
  40414. },
  40415. {
  40416. name: "Giant",
  40417. height: math.unit(90, "feet")
  40418. },
  40419. {
  40420. name: "Kaiju",
  40421. height: math.unit(270, "feet")
  40422. },
  40423. {
  40424. name: "Macro",
  40425. height: math.unit(900, "feet")
  40426. },
  40427. {
  40428. name: "Macro+",
  40429. height: math.unit(2700, "feet")
  40430. },
  40431. {
  40432. name: "Megamacro",
  40433. height: math.unit(9000, "feet")
  40434. },
  40435. {
  40436. name: "City-Crushing",
  40437. height: math.unit(27000, "feet")
  40438. },
  40439. {
  40440. name: "Mountain-Mashing",
  40441. height: math.unit(90000, "feet")
  40442. },
  40443. {
  40444. name: "Earth-Eclipsing",
  40445. height: math.unit(2.7e8, "feet")
  40446. },
  40447. {
  40448. name: "Sol-Swallowing",
  40449. height: math.unit(9e10, "feet")
  40450. },
  40451. {
  40452. name: "Majoris-Munching",
  40453. height: math.unit(2.7e13, "feet")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40459. {
  40460. front: {
  40461. height: math.unit(1, "inch"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/squeaks-mouse/front.svg",
  40465. extra: 352/308,
  40466. bottom: 25/377
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Micro",
  40473. height: math.unit(1, "inch"),
  40474. default: true
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40480. {
  40481. side: {
  40482. height: math.unit(35, "feet"),
  40483. name: "Side",
  40484. image: {
  40485. source: "./media/characters/sayko/side.svg",
  40486. extra: 1697/1021,
  40487. bottom: 82/1779
  40488. }
  40489. },
  40490. head: {
  40491. height: math.unit(16, "feet"),
  40492. name: "Head",
  40493. image: {
  40494. source: "./media/characters/sayko/head.svg"
  40495. }
  40496. },
  40497. forepaw: {
  40498. height: math.unit(7.85, "feet"),
  40499. name: "Forepaw",
  40500. image: {
  40501. source: "./media/characters/sayko/forepaw.svg"
  40502. }
  40503. },
  40504. hindpaw: {
  40505. height: math.unit(8.8, "feet"),
  40506. name: "Hindpaw",
  40507. image: {
  40508. source: "./media/characters/sayko/hindpaw.svg"
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(35, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "Colossus",
  40520. height: math.unit(100, "meters")
  40521. },
  40522. {
  40523. name: "\"Small\" Deity",
  40524. height: math.unit(1, "km")
  40525. },
  40526. {
  40527. name: "\"Large\" Deity",
  40528. height: math.unit(15, "km")
  40529. },
  40530. ]
  40531. ))
  40532. characterMakers.push(() => makeCharacter(
  40533. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40534. {
  40535. front: {
  40536. height: math.unit(6, "feet"),
  40537. weight: math.unit(250, "lb"),
  40538. name: "Front",
  40539. image: {
  40540. source: "./media/characters/mukiro/front.svg",
  40541. extra: 1368/1310,
  40542. bottom: 34/1402
  40543. }
  40544. },
  40545. },
  40546. [
  40547. {
  40548. name: "Normal",
  40549. height: math.unit(6, "feet"),
  40550. default: true
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40556. {
  40557. front: {
  40558. height: math.unit(12 + 4/12, "feet"),
  40559. name: "Front",
  40560. image: {
  40561. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40562. extra: 1346/1311,
  40563. bottom: 65/1411
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Base",
  40570. height: math.unit(12 + 4/12, "feet"),
  40571. default: true
  40572. },
  40573. {
  40574. name: "Macro",
  40575. height: math.unit(150, "feet")
  40576. },
  40577. {
  40578. name: "Mega",
  40579. height: math.unit(2, "miles")
  40580. },
  40581. {
  40582. name: "Demi God",
  40583. height: math.unit(4, "AU")
  40584. },
  40585. {
  40586. name: "God Size",
  40587. height: math.unit(1, "universe")
  40588. },
  40589. ]
  40590. ))
  40591. characterMakers.push(() => makeCharacter(
  40592. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40593. {
  40594. front: {
  40595. height: math.unit(3 + 3/12, "feet"),
  40596. weight: math.unit(88, "lb"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/trey/front.svg",
  40600. extra: 1815/1509,
  40601. bottom: 60/1875
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Normal",
  40608. height: math.unit(3 + 3/12, "feet"),
  40609. default: true
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40615. {
  40616. front: {
  40617. height: math.unit(4, "meters"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/adelonda/front.svg",
  40621. extra: 1077/982,
  40622. bottom: 39/1116
  40623. }
  40624. },
  40625. back: {
  40626. height: math.unit(4, "meters"),
  40627. name: "Back",
  40628. image: {
  40629. source: "./media/characters/adelonda/back.svg",
  40630. extra: 1105/1003,
  40631. bottom: 25/1130
  40632. }
  40633. },
  40634. feral: {
  40635. height: math.unit(40/1.5, "meters"),
  40636. name: "Feral",
  40637. image: {
  40638. source: "./media/characters/adelonda/feral.svg",
  40639. extra: 597/271,
  40640. bottom: 387/984
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Normal",
  40647. height: math.unit(4, "meters"),
  40648. default: true
  40649. },
  40650. ]
  40651. ))
  40652. characterMakers.push(() => makeCharacter(
  40653. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40654. {
  40655. front: {
  40656. height: math.unit(8 + 4/12, "feet"),
  40657. weight: math.unit(670, "lb"),
  40658. name: "Front",
  40659. image: {
  40660. source: "./media/characters/acadiel/front.svg",
  40661. extra: 1901/1595,
  40662. bottom: 142/2043
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Normal",
  40669. height: math.unit(8 + 4/12, "feet"),
  40670. default: true
  40671. },
  40672. {
  40673. name: "Macro",
  40674. height: math.unit(200, "feet")
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40680. {
  40681. front: {
  40682. height: math.unit(6 + 2/12, "feet"),
  40683. weight: math.unit(185, "lb"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/kayne-ein/front.svg",
  40687. extra: 1780/1560,
  40688. bottom: 81/1861
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(6 + 2/12, "feet"),
  40696. default: true
  40697. },
  40698. {
  40699. name: "Transformation Stage",
  40700. height: math.unit(15, "feet")
  40701. },
  40702. {
  40703. name: "Macro",
  40704. height: math.unit(150, "feet")
  40705. },
  40706. {
  40707. name: "Earth's Shadow",
  40708. height: math.unit(6200, "miles")
  40709. },
  40710. {
  40711. name: "Universal Demon",
  40712. height: math.unit(28e9, "parsecs")
  40713. },
  40714. {
  40715. name: "Multiverse God",
  40716. height: math.unit(3, "multiverses")
  40717. },
  40718. ]
  40719. ))
  40720. characterMakers.push(() => makeCharacter(
  40721. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40722. {
  40723. front: {
  40724. height: math.unit(5 + 5/12, "feet"),
  40725. name: "Front",
  40726. image: {
  40727. source: "./media/characters/fawn/front.svg",
  40728. extra: 1873/1731,
  40729. bottom: 95/1968
  40730. }
  40731. },
  40732. back: {
  40733. height: math.unit(5 + 5/12, "feet"),
  40734. name: "Back",
  40735. image: {
  40736. source: "./media/characters/fawn/back.svg",
  40737. extra: 1813/1700,
  40738. bottom: 14/1827
  40739. }
  40740. },
  40741. hoof: {
  40742. height: math.unit(1.45, "feet"),
  40743. name: "Hoof",
  40744. image: {
  40745. source: "./media/characters/fawn/hoof.svg"
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Normal",
  40752. height: math.unit(5 + 5/12, "feet"),
  40753. default: true
  40754. },
  40755. ]
  40756. ))
  40757. characterMakers.push(() => makeCharacter(
  40758. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40759. {
  40760. front: {
  40761. height: math.unit(2 + 5/12, "feet"),
  40762. name: "Front",
  40763. image: {
  40764. source: "./media/characters/orion/front.svg",
  40765. extra: 1366/1304,
  40766. bottom: 43/1409
  40767. }
  40768. },
  40769. paw: {
  40770. height: math.unit(0.52, "feet"),
  40771. name: "Paw",
  40772. image: {
  40773. source: "./media/characters/orion/paw.svg"
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(2 + 5/12, "feet"),
  40781. default: true
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40787. {
  40788. front: {
  40789. height: math.unit(5 + 10/12, "feet"),
  40790. name: "Front",
  40791. image: {
  40792. source: "./media/characters/vera/front.svg",
  40793. extra: 1680/1575,
  40794. bottom: 49/1729
  40795. }
  40796. },
  40797. back: {
  40798. height: math.unit(5 + 10/12, "feet"),
  40799. name: "Back",
  40800. image: {
  40801. source: "./media/characters/vera/back.svg",
  40802. extra: 1700/1588,
  40803. bottom: 18/1718
  40804. }
  40805. },
  40806. arcanine: {
  40807. height: math.unit(6 + 8/12, "feet"),
  40808. name: "Arcanine",
  40809. image: {
  40810. source: "./media/characters/vera/arcanine.svg",
  40811. extra: 1590/1511,
  40812. bottom: 71/1661
  40813. }
  40814. },
  40815. maw: {
  40816. height: math.unit(0.82, "feet"),
  40817. name: "Maw",
  40818. image: {
  40819. source: "./media/characters/vera/maw.svg"
  40820. }
  40821. },
  40822. mawArcanine: {
  40823. height: math.unit(0.97, "feet"),
  40824. name: "Maw (Arcanine)",
  40825. image: {
  40826. source: "./media/characters/vera/maw-arcanine.svg"
  40827. }
  40828. },
  40829. paw: {
  40830. height: math.unit(0.75, "feet"),
  40831. name: "Paw",
  40832. image: {
  40833. source: "./media/characters/vera/paw.svg"
  40834. }
  40835. },
  40836. pawprint: {
  40837. height: math.unit(0.52, "feet"),
  40838. name: "Pawprint",
  40839. image: {
  40840. source: "./media/characters/vera/pawprint.svg"
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(5 + 10/12, "feet"),
  40848. default: true
  40849. },
  40850. {
  40851. name: "Macro",
  40852. height: math.unit(75, "feet")
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(4, "feet"),
  40861. weight: math.unit(40, "lb"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/orvan-rabbit/front.svg",
  40865. extra: 1896/1642,
  40866. bottom: 29/1925
  40867. }
  40868. },
  40869. },
  40870. [
  40871. {
  40872. name: "Normal",
  40873. height: math.unit(4, "feet"),
  40874. default: true
  40875. },
  40876. ]
  40877. ))
  40878. characterMakers.push(() => makeCharacter(
  40879. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40880. {
  40881. front: {
  40882. height: math.unit(6, "feet"),
  40883. weight: math.unit(168, "lb"),
  40884. name: "Front",
  40885. image: {
  40886. source: "./media/characters/lisa/front.svg",
  40887. extra: 2065/1867,
  40888. bottom: 46/2111
  40889. }
  40890. },
  40891. back: {
  40892. height: math.unit(6, "feet"),
  40893. weight: math.unit(168, "lb"),
  40894. name: "Back",
  40895. image: {
  40896. source: "./media/characters/lisa/back.svg",
  40897. extra: 1982/1838,
  40898. bottom: 29/2011
  40899. }
  40900. },
  40901. maw: {
  40902. height: math.unit(0.81, "feet"),
  40903. name: "Maw",
  40904. image: {
  40905. source: "./media/characters/lisa/maw.svg"
  40906. }
  40907. },
  40908. paw: {
  40909. height: math.unit(0.9, "feet"),
  40910. name: "Paw",
  40911. image: {
  40912. source: "./media/characters/lisa/paw.svg"
  40913. }
  40914. },
  40915. caribousune: {
  40916. height: math.unit(7 + 2/12, "feet"),
  40917. weight: math.unit(268, "lb"),
  40918. name: "Caribousune",
  40919. image: {
  40920. source: "./media/characters/lisa/caribousune.svg",
  40921. extra: 1843/1633,
  40922. bottom: 29/1872
  40923. }
  40924. },
  40925. frontCaribousune: {
  40926. height: math.unit(7 + 2/12, "feet"),
  40927. weight: math.unit(268, "lb"),
  40928. name: "Front (Caribousune)",
  40929. image: {
  40930. source: "./media/characters/lisa/front-caribousune.svg",
  40931. extra: 1818/1638,
  40932. bottom: 52/1870
  40933. }
  40934. },
  40935. sideCaribousune: {
  40936. height: math.unit(7 + 2/12, "feet"),
  40937. weight: math.unit(268, "lb"),
  40938. name: "Side (Caribousune)",
  40939. image: {
  40940. source: "./media/characters/lisa/side-caribousune.svg",
  40941. extra: 1851/1635,
  40942. bottom: 16/1867
  40943. }
  40944. },
  40945. backCaribousune: {
  40946. height: math.unit(7 + 2/12, "feet"),
  40947. weight: math.unit(268, "lb"),
  40948. name: "Back (Caribousune)",
  40949. image: {
  40950. source: "./media/characters/lisa/back-caribousune.svg",
  40951. extra: 1801/1604,
  40952. bottom: 44/1845
  40953. }
  40954. },
  40955. caribou: {
  40956. height: math.unit(7 + 2/12, "feet"),
  40957. weight: math.unit(268, "lb"),
  40958. name: "Caribou",
  40959. image: {
  40960. source: "./media/characters/lisa/caribou.svg",
  40961. extra: 1843/1633,
  40962. bottom: 29/1872
  40963. }
  40964. },
  40965. frontCaribou: {
  40966. height: math.unit(7 + 2/12, "feet"),
  40967. weight: math.unit(268, "lb"),
  40968. name: "Front (Caribou)",
  40969. image: {
  40970. source: "./media/characters/lisa/front-caribou.svg",
  40971. extra: 1818/1638,
  40972. bottom: 52/1870
  40973. }
  40974. },
  40975. sideCaribou: {
  40976. height: math.unit(7 + 2/12, "feet"),
  40977. weight: math.unit(268, "lb"),
  40978. name: "Side (Caribou)",
  40979. image: {
  40980. source: "./media/characters/lisa/side-caribou.svg",
  40981. extra: 1851/1635,
  40982. bottom: 16/1867
  40983. }
  40984. },
  40985. backCaribou: {
  40986. height: math.unit(7 + 2/12, "feet"),
  40987. weight: math.unit(268, "lb"),
  40988. name: "Back (Caribou)",
  40989. image: {
  40990. source: "./media/characters/lisa/back-caribou.svg",
  40991. extra: 1801/1604,
  40992. bottom: 44/1845
  40993. }
  40994. },
  40995. mawCaribou: {
  40996. height: math.unit(1.45, "feet"),
  40997. name: "Maw (Caribou)",
  40998. image: {
  40999. source: "./media/characters/lisa/maw-caribou.svg"
  41000. }
  41001. },
  41002. mawCaribousune: {
  41003. height: math.unit(1.45, "feet"),
  41004. name: "Maw (Caribousune)",
  41005. image: {
  41006. source: "./media/characters/lisa/maw-caribousune.svg"
  41007. }
  41008. },
  41009. pawCaribousune: {
  41010. height: math.unit(1.61, "feet"),
  41011. name: "Paw (Caribou)",
  41012. image: {
  41013. source: "./media/characters/lisa/paw-caribousune.svg"
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Normal",
  41020. height: math.unit(6, "feet")
  41021. },
  41022. {
  41023. name: "God Size",
  41024. height: math.unit(72, "feet"),
  41025. default: true
  41026. },
  41027. {
  41028. name: "Towering",
  41029. height: math.unit(288, "feet")
  41030. },
  41031. {
  41032. name: "City Size",
  41033. height: math.unit(48384, "feet")
  41034. },
  41035. {
  41036. name: "Continental",
  41037. height: math.unit(4200, "miles")
  41038. },
  41039. {
  41040. name: "Planet Eater",
  41041. height: math.unit(42, "earths")
  41042. },
  41043. {
  41044. name: "Star Swallower",
  41045. height: math.unit(42, "solarradii")
  41046. },
  41047. {
  41048. name: "System Swallower",
  41049. height: math.unit(84000, "AU")
  41050. },
  41051. {
  41052. name: "Galaxy Gobbler",
  41053. height: math.unit(42, "galaxies")
  41054. },
  41055. {
  41056. name: "Universe Devourer",
  41057. height: math.unit(42, "universes")
  41058. },
  41059. {
  41060. name: "Multiverse Muncher",
  41061. height: math.unit(42, "multiverses")
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41067. {
  41068. front: {
  41069. height: math.unit(36, "feet"),
  41070. name: "Front",
  41071. image: {
  41072. source: "./media/characters/shadow-rat/front.svg",
  41073. extra: 1845/1758,
  41074. bottom: 83/1928
  41075. }
  41076. },
  41077. },
  41078. [
  41079. {
  41080. name: "Macro",
  41081. height: math.unit(36, "feet"),
  41082. default: true
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41088. {
  41089. side: {
  41090. height: math.unit(8, "feet"),
  41091. weight: math.unit(2630, "lb"),
  41092. name: "Side",
  41093. image: {
  41094. source: "./media/characters/torallia/side.svg",
  41095. extra: 2164/2021,
  41096. bottom: 371/2535
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Mortal Interaction",
  41103. height: math.unit(8, "feet")
  41104. },
  41105. {
  41106. name: "Natural",
  41107. height: math.unit(24, "feet"),
  41108. default: true
  41109. },
  41110. {
  41111. name: "Giant",
  41112. height: math.unit(80, "feet")
  41113. },
  41114. {
  41115. name: "Kaiju",
  41116. height: math.unit(240, "feet")
  41117. },
  41118. {
  41119. name: "Macro",
  41120. height: math.unit(800, "feet")
  41121. },
  41122. {
  41123. name: "Macro+",
  41124. height: math.unit(2400, "feet")
  41125. },
  41126. {
  41127. name: "Macro++",
  41128. height: math.unit(8000, "feet")
  41129. },
  41130. {
  41131. name: "City-Crushing",
  41132. height: math.unit(24000, "feet")
  41133. },
  41134. {
  41135. name: "Mountain-Mashing",
  41136. height: math.unit(80000, "feet")
  41137. },
  41138. {
  41139. name: "District Demolisher",
  41140. height: math.unit(240000, "feet")
  41141. },
  41142. {
  41143. name: "Tri-County Terror",
  41144. height: math.unit(800000, "feet")
  41145. },
  41146. {
  41147. name: "State Smasher",
  41148. height: math.unit(2.4e6, "feet")
  41149. },
  41150. {
  41151. name: "Nation Nemesis",
  41152. height: math.unit(8e6, "feet")
  41153. },
  41154. {
  41155. name: "Continent Cracker",
  41156. height: math.unit(2.4e7, "feet")
  41157. },
  41158. {
  41159. name: "Planet-Pillaging",
  41160. height: math.unit(8e7, "feet")
  41161. },
  41162. {
  41163. name: "Earth-Eclipsing",
  41164. height: math.unit(2.4e8, "feet")
  41165. },
  41166. {
  41167. name: "Jovian-Jostling",
  41168. height: math.unit(8e8, "feet")
  41169. },
  41170. {
  41171. name: "Gas Giant Gulper",
  41172. height: math.unit(2.4e9, "feet")
  41173. },
  41174. {
  41175. name: "Astral Annihilator",
  41176. height: math.unit(8e9, "feet")
  41177. },
  41178. {
  41179. name: "Celestial Conqueror",
  41180. height: math.unit(2.4e10, "feet")
  41181. },
  41182. {
  41183. name: "Sol-Swallowing",
  41184. height: math.unit(8e10, "feet")
  41185. },
  41186. {
  41187. name: "Hunter of the Heavens",
  41188. height: math.unit(2.4e13, "feet")
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41194. {
  41195. front: {
  41196. height: math.unit(6 + 8/12, "feet"),
  41197. weight: math.unit(250, "kilograms"),
  41198. volume: math.unit(28, "liters"),
  41199. name: "Front",
  41200. image: {
  41201. source: "./media/characters/rebecca-pawlson/front.svg",
  41202. extra: 1737/1596,
  41203. bottom: 107/1844
  41204. }
  41205. },
  41206. back: {
  41207. height: math.unit(6 + 8/12, "feet"),
  41208. weight: math.unit(250, "kilograms"),
  41209. volume: math.unit(28, "liters"),
  41210. name: "Back",
  41211. image: {
  41212. source: "./media/characters/rebecca-pawlson/back.svg",
  41213. extra: 1702/1523,
  41214. bottom: 86/1788
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Normal",
  41221. height: math.unit(6 + 8/12, "feet")
  41222. },
  41223. {
  41224. name: "Mini Macro",
  41225. height: math.unit(10, "feet"),
  41226. default: true
  41227. },
  41228. {
  41229. name: "Macro",
  41230. height: math.unit(100, "feet")
  41231. },
  41232. {
  41233. name: "Mega Macro",
  41234. height: math.unit(2500, "feet")
  41235. },
  41236. {
  41237. name: "Giga Macro",
  41238. height: math.unit(50, "miles")
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41244. {
  41245. front: {
  41246. height: math.unit(7 + 6/12, "feet"),
  41247. weight: math.unit(600, "lb"),
  41248. name: "Front",
  41249. image: {
  41250. source: "./media/characters/moxie-nova/front.svg",
  41251. extra: 1734/1652,
  41252. bottom: 41/1775
  41253. }
  41254. },
  41255. },
  41256. [
  41257. {
  41258. name: "Normal",
  41259. height: math.unit(7 + 6/12, "feet"),
  41260. default: true
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41266. {
  41267. goat: {
  41268. height: math.unit(4, "feet"),
  41269. weight: math.unit(180, "lb"),
  41270. name: "Goat",
  41271. image: {
  41272. source: "./media/characters/tiffany/goat.svg",
  41273. extra: 1845/1595,
  41274. bottom: 106/1951
  41275. }
  41276. },
  41277. front: {
  41278. height: math.unit(5, "feet"),
  41279. weight: math.unit(150, "lb"),
  41280. name: "Foxcoon",
  41281. image: {
  41282. source: "./media/characters/tiffany/foxcoon.svg",
  41283. extra: 1941/1845,
  41284. bottom: 58/1999
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(5, "feet"),
  41292. default: true
  41293. },
  41294. ]
  41295. ))
  41296. characterMakers.push(() => makeCharacter(
  41297. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41298. {
  41299. front: {
  41300. height: math.unit(8, "feet"),
  41301. weight: math.unit(300, "lb"),
  41302. name: "Front",
  41303. image: {
  41304. source: "./media/characters/raxinath/front.svg",
  41305. extra: 1407/1309,
  41306. bottom: 39/1446
  41307. }
  41308. },
  41309. back: {
  41310. height: math.unit(8, "feet"),
  41311. weight: math.unit(300, "lb"),
  41312. name: "Back",
  41313. image: {
  41314. source: "./media/characters/raxinath/back.svg",
  41315. extra: 1405/1315,
  41316. bottom: 9/1414
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Speck",
  41323. height: math.unit(0.5, "nm")
  41324. },
  41325. {
  41326. name: "Micro",
  41327. height: math.unit(3, "inches")
  41328. },
  41329. {
  41330. name: "Kobold",
  41331. height: math.unit(3, "feet")
  41332. },
  41333. {
  41334. name: "Normal",
  41335. height: math.unit(8, "feet"),
  41336. default: true
  41337. },
  41338. {
  41339. name: "Giant",
  41340. height: math.unit(50, "feet")
  41341. },
  41342. {
  41343. name: "Macro",
  41344. height: math.unit(1000, "feet")
  41345. },
  41346. {
  41347. name: "Megamacro",
  41348. height: math.unit(1, "mile")
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(10, "feet"),
  41357. weight: math.unit(1442, "lb"),
  41358. name: "Front",
  41359. image: {
  41360. source: "./media/characters/mal-dragon/front.svg",
  41361. extra: 1515/1444,
  41362. bottom: 113/1628
  41363. }
  41364. },
  41365. back: {
  41366. height: math.unit(10, "feet"),
  41367. weight: math.unit(1442, "lb"),
  41368. name: "Back",
  41369. image: {
  41370. source: "./media/characters/mal-dragon/back.svg",
  41371. extra: 1527/1434,
  41372. bottom: 25/1552
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Mortal Interaction",
  41379. height: math.unit(10, "feet"),
  41380. default: true
  41381. },
  41382. {
  41383. name: "Large",
  41384. height: math.unit(30, "feet")
  41385. },
  41386. {
  41387. name: "Kaiju",
  41388. height: math.unit(300, "feet")
  41389. },
  41390. {
  41391. name: "Megamacro",
  41392. height: math.unit(10000, "feet")
  41393. },
  41394. {
  41395. name: "Continent Cracker",
  41396. height: math.unit(30000000, "feet")
  41397. },
  41398. {
  41399. name: "Sol-Swallowing",
  41400. height: math.unit(1e11, "feet")
  41401. },
  41402. {
  41403. name: "Light Universal",
  41404. height: math.unit(5, "universes")
  41405. },
  41406. {
  41407. name: "Universe Atoms",
  41408. height: math.unit(1.829e9, "universes")
  41409. },
  41410. {
  41411. name: "Light Multiversal",
  41412. height: math.unit(5, "multiverses")
  41413. },
  41414. {
  41415. name: "Multiverse Atoms",
  41416. height: math.unit(1.829e9, "multiverses")
  41417. },
  41418. {
  41419. name: "Fabric of Time",
  41420. height: math.unit(1e262, "multiverses")
  41421. },
  41422. ]
  41423. ))
  41424. characterMakers.push(() => makeCharacter(
  41425. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41426. {
  41427. front: {
  41428. height: math.unit(9, "feet"),
  41429. weight: math.unit(1050, "lb"),
  41430. name: "Front",
  41431. image: {
  41432. source: "./media/characters/tabitha/front.svg",
  41433. extra: 2083/1994,
  41434. bottom: 68/2151
  41435. }
  41436. },
  41437. },
  41438. [
  41439. {
  41440. name: "Baseline",
  41441. height: math.unit(9, "feet"),
  41442. default: true
  41443. },
  41444. {
  41445. name: "Giant",
  41446. height: math.unit(90, "feet")
  41447. },
  41448. {
  41449. name: "Macro",
  41450. height: math.unit(900, "feet")
  41451. },
  41452. {
  41453. name: "Megamacro",
  41454. height: math.unit(9000, "feet")
  41455. },
  41456. {
  41457. name: "City-Crushing",
  41458. height: math.unit(27000, "feet")
  41459. },
  41460. {
  41461. name: "Mountain-Mashing",
  41462. height: math.unit(90000, "feet")
  41463. },
  41464. {
  41465. name: "Nation Nemesis",
  41466. height: math.unit(9e6, "feet")
  41467. },
  41468. {
  41469. name: "Continent Cracker",
  41470. height: math.unit(27e6, "feet")
  41471. },
  41472. {
  41473. name: "Earth-Eclipsing",
  41474. height: math.unit(2.7e8, "feet")
  41475. },
  41476. {
  41477. name: "Gas Giant Gulper",
  41478. height: math.unit(2.7e9, "feet")
  41479. },
  41480. {
  41481. name: "Sol-Swallowing",
  41482. height: math.unit(9e10, "feet")
  41483. },
  41484. {
  41485. name: "Galaxy Gulper",
  41486. height: math.unit(9, "galaxies")
  41487. },
  41488. {
  41489. name: "Cosmos Churner",
  41490. height: math.unit(9, "universes")
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41496. {
  41497. front: {
  41498. height: math.unit(160, "cm"),
  41499. weight: math.unit(55, "kg"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/tow/front.svg",
  41503. extra: 1751/1722,
  41504. bottom: 74/1825
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Norm",
  41511. height: math.unit(160, "cm")
  41512. },
  41513. {
  41514. name: "Casual",
  41515. height: math.unit(3200, "m"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Show-Off",
  41520. height: math.unit(160, "km")
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41526. {
  41527. front: {
  41528. height: math.unit(7 + 11/12, "feet"),
  41529. weight: math.unit(342.8, "lb"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/vivian-orca-dragon/front.svg",
  41533. extra: 1890/1865,
  41534. bottom: 28/1918
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Micro",
  41541. height: math.unit(5, "inches")
  41542. },
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(7 + 11/12, "feet"),
  41546. default: true
  41547. },
  41548. {
  41549. name: "Macro",
  41550. height: math.unit(395 + 7/12, "feet")
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41556. {
  41557. side: {
  41558. height: math.unit(10, "feet"),
  41559. weight: math.unit(1442, "lb"),
  41560. name: "Side",
  41561. image: {
  41562. source: "./media/characters/lotherakon/side.svg",
  41563. extra: 1604/1497,
  41564. bottom: 89/1693
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Mortal Interaction",
  41571. height: math.unit(10, "feet")
  41572. },
  41573. {
  41574. name: "Large",
  41575. height: math.unit(30, "feet"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Giant",
  41580. height: math.unit(100, "feet")
  41581. },
  41582. {
  41583. name: "Kaiju",
  41584. height: math.unit(300, "feet")
  41585. },
  41586. {
  41587. name: "Macro",
  41588. height: math.unit(1000, "feet")
  41589. },
  41590. {
  41591. name: "Macro+",
  41592. height: math.unit(3000, "feet")
  41593. },
  41594. {
  41595. name: "Megamacro",
  41596. height: math.unit(10000, "feet")
  41597. },
  41598. {
  41599. name: "City-Crushing",
  41600. height: math.unit(30000, "feet")
  41601. },
  41602. {
  41603. name: "Continent Cracker",
  41604. height: math.unit(30e6, "feet")
  41605. },
  41606. {
  41607. name: "Earth Eclipsing",
  41608. height: math.unit(3e8, "feet")
  41609. },
  41610. {
  41611. name: "Gas Giant Gulper",
  41612. height: math.unit(3e9, "feet")
  41613. },
  41614. {
  41615. name: "Sol-Swallowing",
  41616. height: math.unit(1e11, "feet")
  41617. },
  41618. {
  41619. name: "System Swallower",
  41620. height: math.unit(3e14, "feet")
  41621. },
  41622. {
  41623. name: "Galaxy Gulper",
  41624. height: math.unit(10, "galaxies")
  41625. },
  41626. {
  41627. name: "Light Universal",
  41628. height: math.unit(5, "universes")
  41629. },
  41630. {
  41631. name: "Universe Palm",
  41632. height: math.unit(20, "universes")
  41633. },
  41634. {
  41635. name: "Light Multiversal",
  41636. height: math.unit(5, "multiverses")
  41637. },
  41638. {
  41639. name: "Multiverse Palm",
  41640. height: math.unit(20, "multiverses")
  41641. },
  41642. {
  41643. name: "Inferno Incarnate",
  41644. height: math.unit(1e7, "multiverses")
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41650. {
  41651. front: {
  41652. height: math.unit(8, "feet"),
  41653. weight: math.unit(1200, "lb"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/malithee/front.svg",
  41657. extra: 1675/1640,
  41658. bottom: 162/1837
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Mortal Interaction",
  41665. height: math.unit(8, "feet"),
  41666. default: true
  41667. },
  41668. {
  41669. name: "Large",
  41670. height: math.unit(24, "feet")
  41671. },
  41672. {
  41673. name: "Kaiju",
  41674. height: math.unit(240, "feet")
  41675. },
  41676. {
  41677. name: "Megamacro",
  41678. height: math.unit(8000, "feet")
  41679. },
  41680. {
  41681. name: "Continent Cracker",
  41682. height: math.unit(24e6, "feet")
  41683. },
  41684. {
  41685. name: "Earth-Eclipsing",
  41686. height: math.unit(2.4e8, "feet")
  41687. },
  41688. {
  41689. name: "Sol-Swallowing",
  41690. height: math.unit(8e10, "feet")
  41691. },
  41692. {
  41693. name: "Galaxy Gulper",
  41694. height: math.unit(8, "galaxies")
  41695. },
  41696. {
  41697. name: "Light Universal",
  41698. height: math.unit(4, "universes")
  41699. },
  41700. {
  41701. name: "Universe Atoms",
  41702. height: math.unit(1.829e9, "universes")
  41703. },
  41704. {
  41705. name: "Light Multiversal",
  41706. height: math.unit(4, "multiverses")
  41707. },
  41708. {
  41709. name: "Multiverse Atoms",
  41710. height: math.unit(1.829e9, "multiverses")
  41711. },
  41712. {
  41713. name: "Nigh-Omnipresence",
  41714. height: math.unit(8e261, "multiverses")
  41715. },
  41716. ]
  41717. ))
  41718. characterMakers.push(() => makeCharacter(
  41719. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41720. {
  41721. front: {
  41722. height: math.unit(10, "feet"),
  41723. weight: math.unit(1500, "lb"),
  41724. name: "Front",
  41725. image: {
  41726. source: "./media/characters/miles-thestia/front.svg",
  41727. extra: 1812/1727,
  41728. bottom: 86/1898
  41729. }
  41730. },
  41731. back: {
  41732. height: math.unit(10, "feet"),
  41733. weight: math.unit(1500, "lb"),
  41734. name: "Back",
  41735. image: {
  41736. source: "./media/characters/miles-thestia/back.svg",
  41737. extra: 1799/1690,
  41738. bottom: 47/1846
  41739. }
  41740. },
  41741. frontNsfw: {
  41742. height: math.unit(10, "feet"),
  41743. weight: math.unit(1500, "lb"),
  41744. name: "Front (NSFW)",
  41745. image: {
  41746. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41747. extra: 1812/1727,
  41748. bottom: 86/1898
  41749. }
  41750. },
  41751. },
  41752. [
  41753. {
  41754. name: "Mini-Macro",
  41755. height: math.unit(10, "feet"),
  41756. default: true
  41757. },
  41758. ]
  41759. ))
  41760. characterMakers.push(() => makeCharacter(
  41761. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41762. {
  41763. front: {
  41764. height: math.unit(25, "feet"),
  41765. name: "Front",
  41766. image: {
  41767. source: "./media/characters/titan-s-wulf/front.svg",
  41768. extra: 1560/1484,
  41769. bottom: 76/1636
  41770. }
  41771. },
  41772. },
  41773. [
  41774. {
  41775. name: "Smallest",
  41776. height: math.unit(25, "feet"),
  41777. default: true
  41778. },
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(200, "feet")
  41782. },
  41783. {
  41784. name: "Macro",
  41785. height: math.unit(200000, "feet")
  41786. },
  41787. {
  41788. name: "Multiversal Original",
  41789. height: math.unit(10000, "multiverses")
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(8, "feet"),
  41798. weight: math.unit(553, "lb"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/tawendeh/front.svg",
  41802. extra: 2365/2268,
  41803. bottom: 83/2448
  41804. }
  41805. },
  41806. frontClothed: {
  41807. height: math.unit(8, "feet"),
  41808. weight: math.unit(553, "lb"),
  41809. name: "Front (Clothed)",
  41810. image: {
  41811. source: "./media/characters/tawendeh/front-clothed.svg",
  41812. extra: 2365/2268,
  41813. bottom: 83/2448
  41814. }
  41815. },
  41816. back: {
  41817. height: math.unit(8, "feet"),
  41818. weight: math.unit(553, "lb"),
  41819. name: "Back",
  41820. image: {
  41821. source: "./media/characters/tawendeh/back.svg",
  41822. extra: 2397/2294,
  41823. bottom: 42/2439
  41824. }
  41825. },
  41826. },
  41827. [
  41828. {
  41829. name: "Mortal Interaction",
  41830. height: math.unit(8, "feet"),
  41831. default: true
  41832. },
  41833. {
  41834. name: "Giant",
  41835. height: math.unit(80, "feet")
  41836. },
  41837. {
  41838. name: "Macro",
  41839. height: math.unit(800, "feet")
  41840. },
  41841. {
  41842. name: "Megamacro",
  41843. height: math.unit(8000, "feet")
  41844. },
  41845. {
  41846. name: "City-Crushing",
  41847. height: math.unit(24000, "feet")
  41848. },
  41849. {
  41850. name: "Mountain-Mashing",
  41851. height: math.unit(80000, "feet")
  41852. },
  41853. {
  41854. name: "Nation Nemesis",
  41855. height: math.unit(8e6, "feet")
  41856. },
  41857. {
  41858. name: "Continent Cracker",
  41859. height: math.unit(24e6, "feet")
  41860. },
  41861. {
  41862. name: "Earth-Eclipsing",
  41863. height: math.unit(2.4e8, "feet")
  41864. },
  41865. {
  41866. name: "Gas Giant Gulper",
  41867. height: math.unit(2.4e9, "feet")
  41868. },
  41869. {
  41870. name: "Sol-Swallowing",
  41871. height: math.unit(8e10, "feet")
  41872. },
  41873. {
  41874. name: "Galaxy Gulper",
  41875. height: math.unit(8, "galaxies")
  41876. },
  41877. {
  41878. name: "Cosmos Churner",
  41879. height: math.unit(8, "universes")
  41880. },
  41881. {
  41882. name: "Omnipotent Otter",
  41883. height: math.unit(80, "universes")
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(2.6, "meters"),
  41892. weight: math.unit(900, "kg"),
  41893. name: "Front",
  41894. image: {
  41895. source: "./media/characters/neesha/front.svg",
  41896. extra: 1803/1653,
  41897. bottom: 128/1931
  41898. }
  41899. },
  41900. },
  41901. [
  41902. {
  41903. name: "Normal",
  41904. height: math.unit(2.6, "meters"),
  41905. default: true
  41906. },
  41907. {
  41908. name: "Macro",
  41909. height: math.unit(50, "meters")
  41910. },
  41911. ]
  41912. ))
  41913. characterMakers.push(() => makeCharacter(
  41914. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41915. {
  41916. front: {
  41917. height: math.unit(5, "feet"),
  41918. weight: math.unit(185, "lb"),
  41919. name: "Front",
  41920. image: {
  41921. source: "./media/characters/kyera/front.svg",
  41922. extra: 1875/1790,
  41923. bottom: 96/1971
  41924. }
  41925. },
  41926. },
  41927. [
  41928. {
  41929. name: "Normal",
  41930. height: math.unit(5, "feet"),
  41931. default: true
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(7 + 6/12, "feet"),
  41940. weight: math.unit(540, "lb"),
  41941. name: "Front",
  41942. image: {
  41943. source: "./media/characters/yuko/front.svg",
  41944. extra: 1282/1222,
  41945. bottom: 101/1383
  41946. }
  41947. },
  41948. frontClothed: {
  41949. height: math.unit(7 + 6/12, "feet"),
  41950. weight: math.unit(540, "lb"),
  41951. name: "Front (Clothed)",
  41952. image: {
  41953. source: "./media/characters/yuko/front-clothed.svg",
  41954. extra: 1282/1222,
  41955. bottom: 101/1383
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Normal",
  41962. height: math.unit(7 + 6/12, "feet"),
  41963. default: true
  41964. },
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(26 + 9/12, "feet")
  41968. },
  41969. {
  41970. name: "Megamacro",
  41971. height: math.unit(300, "feet")
  41972. },
  41973. {
  41974. name: "Gigamacro",
  41975. height: math.unit(5000, "feet")
  41976. },
  41977. {
  41978. name: "Planetary",
  41979. height: math.unit(10000, "miles")
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(8 + 2/12, "feet"),
  41988. weight: math.unit(600, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/deam-nitrel/front.svg",
  41992. extra: 1308/1234,
  41993. bottom: 125/1433
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Normal",
  42000. height: math.unit(8 + 2/12, "feet"),
  42001. default: true
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(6.1, "feet"),
  42010. weight: math.unit(180, "lb"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/skyress/front.svg",
  42014. extra: 1045/915,
  42015. bottom: 28/1073
  42016. }
  42017. },
  42018. maw: {
  42019. height: math.unit(1, "feet"),
  42020. name: "Maw",
  42021. image: {
  42022. source: "./media/characters/skyress/maw.svg"
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Normal",
  42029. height: math.unit(6.1, "feet"),
  42030. default: true
  42031. },
  42032. {
  42033. name: "Macro",
  42034. height: math.unit(200, "feet")
  42035. },
  42036. ]
  42037. ))
  42038. characterMakers.push(() => makeCharacter(
  42039. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42040. {
  42041. front: {
  42042. height: math.unit(4 + 2/12, "feet"),
  42043. weight: math.unit(40, "kg"),
  42044. name: "Front",
  42045. image: {
  42046. source: "./media/characters/amethyst-jones/front.svg",
  42047. extra: 1220/1150,
  42048. bottom: 101/1321
  42049. }
  42050. },
  42051. },
  42052. [
  42053. {
  42054. name: "Normal",
  42055. height: math.unit(4 + 2/12, "feet"),
  42056. default: true
  42057. },
  42058. ]
  42059. ))
  42060. characterMakers.push(() => makeCharacter(
  42061. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42062. {
  42063. front: {
  42064. height: math.unit(1.7, "m"),
  42065. weight: math.unit(135, "lb"),
  42066. name: "Front",
  42067. image: {
  42068. source: "./media/characters/jade/front.svg",
  42069. extra: 1818/1767,
  42070. bottom: 32/1850
  42071. }
  42072. },
  42073. back: {
  42074. height: math.unit(1.7, "m"),
  42075. weight: math.unit(135, "lb"),
  42076. name: "Back",
  42077. image: {
  42078. source: "./media/characters/jade/back.svg",
  42079. extra: 1869/1809,
  42080. bottom: 35/1904
  42081. }
  42082. },
  42083. hand: {
  42084. height: math.unit(0.24, "m"),
  42085. name: "Hand",
  42086. image: {
  42087. source: "./media/characters/jade/hand.svg"
  42088. }
  42089. },
  42090. foot: {
  42091. height: math.unit(0.263, "m"),
  42092. name: "Foot",
  42093. image: {
  42094. source: "./media/characters/jade/foot.svg"
  42095. }
  42096. },
  42097. dick: {
  42098. height: math.unit(0.47, "m"),
  42099. name: "Dick",
  42100. image: {
  42101. source: "./media/characters/jade/dick.svg"
  42102. }
  42103. },
  42104. },
  42105. [
  42106. {
  42107. name: "Micro",
  42108. height: math.unit(22, "cm")
  42109. },
  42110. {
  42111. name: "Normal",
  42112. height: math.unit(1.7, "m"),
  42113. default: true
  42114. },
  42115. {
  42116. name: "Macro",
  42117. height: math.unit(152, "m")
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42123. {
  42124. front: {
  42125. height: math.unit(100, "miles"),
  42126. weight: math.unit(20000, "tons"),
  42127. name: "Front",
  42128. image: {
  42129. source: "./media/characters/cookie/front.svg",
  42130. extra: 1125/1070,
  42131. bottom: 30/1155
  42132. }
  42133. },
  42134. },
  42135. [
  42136. {
  42137. name: "Big",
  42138. height: math.unit(50, "feet")
  42139. },
  42140. {
  42141. name: "Macro",
  42142. height: math.unit(100, "miles"),
  42143. default: true
  42144. },
  42145. {
  42146. name: "Megamacro",
  42147. height: math.unit(90000, "miles")
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42153. {
  42154. front: {
  42155. height: math.unit(6, "feet"),
  42156. weight: math.unit(145, "lb"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/farzian/front.svg",
  42160. extra: 1902/1693,
  42161. bottom: 108/2010
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Macro",
  42168. height: math.unit(500, "feet"),
  42169. default: true
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42175. {
  42176. front: {
  42177. height: math.unit(3 + 6/12, "feet"),
  42178. weight: math.unit(50, "lb"),
  42179. name: "Front",
  42180. image: {
  42181. source: "./media/characters/kimberly-tilson/front.svg",
  42182. extra: 1400/1322,
  42183. bottom: 36/1436
  42184. }
  42185. },
  42186. back: {
  42187. height: math.unit(3 + 6/12, "feet"),
  42188. weight: math.unit(50, "lb"),
  42189. name: "Back",
  42190. image: {
  42191. source: "./media/characters/kimberly-tilson/back.svg",
  42192. extra: 1370/1307,
  42193. bottom: 20/1390
  42194. }
  42195. },
  42196. },
  42197. [
  42198. {
  42199. name: "Normal",
  42200. height: math.unit(3 + 6/12, "feet"),
  42201. default: true
  42202. },
  42203. ]
  42204. ))
  42205. characterMakers.push(() => makeCharacter(
  42206. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42207. {
  42208. front: {
  42209. height: math.unit(1148, "feet"),
  42210. weight: math.unit(34057, "lb"),
  42211. name: "Front",
  42212. image: {
  42213. source: "./media/characters/harthos/front.svg",
  42214. extra: 1391/1339,
  42215. bottom: 13/1404
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Macro",
  42222. height: math.unit(1148, "feet"),
  42223. default: true
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42229. {
  42230. front: {
  42231. height: math.unit(15, "feet"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/hypatia/front.svg",
  42235. extra: 1653/1591,
  42236. bottom: 79/1732
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Normal",
  42243. height: math.unit(15, "feet")
  42244. },
  42245. {
  42246. name: "Small",
  42247. height: math.unit(300, "feet")
  42248. },
  42249. {
  42250. name: "Macro",
  42251. height: math.unit(2500, "feet"),
  42252. default: true
  42253. },
  42254. {
  42255. name: "Mega Macro",
  42256. height: math.unit(1500, "miles")
  42257. },
  42258. {
  42259. name: "Giga Macro",
  42260. height: math.unit(1.5e6, "miles")
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42266. {
  42267. front: {
  42268. height: math.unit(6, "feet"),
  42269. weight: math.unit(200, "lb"),
  42270. name: "Front",
  42271. image: {
  42272. source: "./media/characters/wulver/front.svg",
  42273. extra: 1724/1632,
  42274. bottom: 130/1854
  42275. }
  42276. },
  42277. frontNsfw: {
  42278. height: math.unit(6, "feet"),
  42279. weight: math.unit(200, "lb"),
  42280. name: "Front (NSFW)",
  42281. image: {
  42282. source: "./media/characters/wulver/front-nsfw.svg",
  42283. extra: 1724/1632,
  42284. bottom: 130/1854
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Human-Sized",
  42291. height: math.unit(6, "feet")
  42292. },
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(4, "meters"),
  42296. default: true
  42297. },
  42298. {
  42299. name: "Large",
  42300. height: math.unit(6, "m")
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42306. {
  42307. front: {
  42308. height: math.unit(7, "feet"),
  42309. name: "Front",
  42310. image: {
  42311. source: "./media/characters/maru/front.svg",
  42312. extra: 1595/1570,
  42313. bottom: 0/1595
  42314. }
  42315. },
  42316. },
  42317. [
  42318. {
  42319. name: "Normal",
  42320. height: math.unit(7, "feet"),
  42321. default: true
  42322. },
  42323. {
  42324. name: "Macro",
  42325. height: math.unit(700, "feet")
  42326. },
  42327. {
  42328. name: "Mega Macro",
  42329. height: math.unit(25, "miles")
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(6, "feet"),
  42338. weight: math.unit(170, "lb"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/xenon/front.svg",
  42342. extra: 1376/1305,
  42343. bottom: 56/1432
  42344. }
  42345. },
  42346. back: {
  42347. height: math.unit(6, "feet"),
  42348. weight: math.unit(170, "lb"),
  42349. name: "Back",
  42350. image: {
  42351. source: "./media/characters/xenon/back.svg",
  42352. extra: 1328/1259,
  42353. bottom: 95/1423
  42354. }
  42355. },
  42356. maw: {
  42357. height: math.unit(0.52, "feet"),
  42358. name: "Maw",
  42359. image: {
  42360. source: "./media/characters/xenon/maw.svg"
  42361. }
  42362. },
  42363. handLeft: {
  42364. height: math.unit(0.82 * 169 / 153, "feet"),
  42365. name: "Hand (Left)",
  42366. image: {
  42367. source: "./media/characters/xenon/hand-left.svg"
  42368. }
  42369. },
  42370. handRight: {
  42371. height: math.unit(0.82, "feet"),
  42372. name: "Hand (Right)",
  42373. image: {
  42374. source: "./media/characters/xenon/hand-right.svg"
  42375. }
  42376. },
  42377. footLeft: {
  42378. height: math.unit(1.13, "feet"),
  42379. name: "Foot (Left)",
  42380. image: {
  42381. source: "./media/characters/xenon/foot-left.svg"
  42382. }
  42383. },
  42384. footRight: {
  42385. height: math.unit(1.13 * 194 / 196, "feet"),
  42386. name: "Foot (Right)",
  42387. image: {
  42388. source: "./media/characters/xenon/foot-right.svg"
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Micro",
  42395. height: math.unit(0.8, "inches")
  42396. },
  42397. {
  42398. name: "Normal",
  42399. height: math.unit(6, "feet")
  42400. },
  42401. {
  42402. name: "Macro",
  42403. height: math.unit(50, "feet"),
  42404. default: true
  42405. },
  42406. {
  42407. name: "Macro+",
  42408. height: math.unit(250, "feet")
  42409. },
  42410. {
  42411. name: "Megamacro",
  42412. height: math.unit(1500, "feet")
  42413. },
  42414. ]
  42415. ))
  42416. characterMakers.push(() => makeCharacter(
  42417. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42418. {
  42419. front: {
  42420. height: math.unit(7 + 5/12, "feet"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/zane/front.svg",
  42424. extra: 1260/1203,
  42425. bottom: 94/1354
  42426. }
  42427. },
  42428. back: {
  42429. height: math.unit(5.05, "feet"),
  42430. name: "Back",
  42431. image: {
  42432. source: "./media/characters/zane/back.svg",
  42433. extra: 893/829,
  42434. bottom: 30/923
  42435. }
  42436. },
  42437. werewolf: {
  42438. height: math.unit(11, "feet"),
  42439. name: "Werewolf",
  42440. image: {
  42441. source: "./media/characters/zane/werewolf.svg",
  42442. extra: 1383/1323,
  42443. bottom: 89/1472
  42444. }
  42445. },
  42446. foot: {
  42447. height: math.unit(1.46, "feet"),
  42448. name: "Foot",
  42449. image: {
  42450. source: "./media/characters/zane/foot.svg"
  42451. }
  42452. },
  42453. footFront: {
  42454. height: math.unit(0.784, "feet"),
  42455. name: "Foot (Front)",
  42456. image: {
  42457. source: "./media/characters/zane/foot-front.svg"
  42458. }
  42459. },
  42460. dick: {
  42461. height: math.unit(1.95, "feet"),
  42462. name: "Dick",
  42463. image: {
  42464. source: "./media/characters/zane/dick.svg"
  42465. }
  42466. },
  42467. dickWerewolf: {
  42468. height: math.unit(3.77, "feet"),
  42469. name: "Dick (Werewolf)",
  42470. image: {
  42471. source: "./media/characters/zane/dick.svg"
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Normal",
  42478. height: math.unit(7 + 5/12, "feet"),
  42479. default: true
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42485. {
  42486. front: {
  42487. height: math.unit(6 + 2/12, "feet"),
  42488. weight: math.unit(284, "lb"),
  42489. name: "Front",
  42490. image: {
  42491. source: "./media/characters/benni-desparque/front.svg",
  42492. extra: 1353/1126,
  42493. bottom: 69/1422
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Civilian",
  42500. height: math.unit(6 + 2/12, "feet")
  42501. },
  42502. {
  42503. name: "Normal",
  42504. height: math.unit(98, "feet"),
  42505. default: true
  42506. },
  42507. {
  42508. name: "Kaiju Fighter",
  42509. height: math.unit(268, "feet")
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42515. {
  42516. front: {
  42517. height: math.unit(5, "feet"),
  42518. weight: math.unit(105, "lb"),
  42519. name: "Front",
  42520. image: {
  42521. source: "./media/characters/maxine/front.svg",
  42522. extra: 1386/1250,
  42523. bottom: 71/1457
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(5, "feet"),
  42531. default: true
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(11 + 7/12, "feet"),
  42540. weight: math.unit(9576, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/scaly/front.svg",
  42544. extra: 888/867,
  42545. bottom: 36/924
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(11 + 7/12, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42559. {
  42560. front: {
  42561. height: math.unit(6 + 3/12, "feet"),
  42562. name: "Front",
  42563. image: {
  42564. source: "./media/characters/saelria/front.svg",
  42565. extra: 1243/1138,
  42566. bottom: 46/1289
  42567. }
  42568. },
  42569. },
  42570. [
  42571. {
  42572. name: "Micro",
  42573. height: math.unit(6, "inches"),
  42574. },
  42575. {
  42576. name: "Normal",
  42577. height: math.unit(6 + 3/12, "feet"),
  42578. default: true
  42579. },
  42580. {
  42581. name: "Macro",
  42582. height: math.unit(25, "feet")
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(80, "meters"),
  42591. weight: math.unit(7000, "tonnes"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/tef/front.svg",
  42595. extra: 2036/1991,
  42596. bottom: 54/2090
  42597. }
  42598. },
  42599. back: {
  42600. height: math.unit(80, "meters"),
  42601. weight: math.unit(7000, "tonnes"),
  42602. name: "Back",
  42603. image: {
  42604. source: "./media/characters/tef/back.svg",
  42605. extra: 2036/1991,
  42606. bottom: 54/2090
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Macro",
  42613. height: math.unit(80, "meters"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(13, "feet"),
  42623. weight: math.unit(6, "tons"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/rover/front.svg",
  42627. extra: 1233/1156,
  42628. bottom: 50/1283
  42629. }
  42630. },
  42631. back: {
  42632. height: math.unit(13, "feet"),
  42633. weight: math.unit(6, "tons"),
  42634. name: "Back",
  42635. image: {
  42636. source: "./media/characters/rover/back.svg",
  42637. extra: 1327/1258,
  42638. bottom: 39/1366
  42639. }
  42640. },
  42641. },
  42642. [
  42643. {
  42644. name: "Normal",
  42645. height: math.unit(13, "feet"),
  42646. default: true
  42647. },
  42648. {
  42649. name: "Macro",
  42650. height: math.unit(1300, "feet")
  42651. },
  42652. {
  42653. name: "Megamacro",
  42654. height: math.unit(1300, "miles")
  42655. },
  42656. {
  42657. name: "Gigamacro",
  42658. height: math.unit(1300000, "miles")
  42659. },
  42660. ]
  42661. ))
  42662. characterMakers.push(() => makeCharacter(
  42663. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42664. {
  42665. front: {
  42666. height: math.unit(6, "feet"),
  42667. weight: math.unit(150, "lb"),
  42668. name: "Front",
  42669. image: {
  42670. source: "./media/characters/ariz/front.svg",
  42671. extra: 1401/1346,
  42672. bottom: 5/1406
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Normal",
  42679. height: math.unit(10, "feet"),
  42680. default: true
  42681. },
  42682. ]
  42683. ))
  42684. characterMakers.push(() => makeCharacter(
  42685. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42686. {
  42687. front: {
  42688. height: math.unit(6, "feet"),
  42689. weight: math.unit(140, "lb"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/sigrun/front.svg",
  42693. extra: 1418/1359,
  42694. bottom: 27/1445
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Macro",
  42701. height: math.unit(35, "feet"),
  42702. default: true
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(6, "feet"),
  42711. weight: math.unit(150, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/numin/front.svg",
  42715. extra: 1433/1388,
  42716. bottom: 12/1445
  42717. }
  42718. },
  42719. },
  42720. [
  42721. {
  42722. name: "Macro",
  42723. height: math.unit(21.5, "km"),
  42724. default: true
  42725. },
  42726. ]
  42727. ))
  42728. characterMakers.push(() => makeCharacter(
  42729. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42730. {
  42731. front: {
  42732. height: math.unit(6, "feet"),
  42733. weight: math.unit(463, "lb"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/melwa/front.svg",
  42737. extra: 1307/1248,
  42738. bottom: 93/1400
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Macro",
  42745. height: math.unit(50, "meters"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(325, "feet"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/zorkaiju/front.svg",
  42758. extra: 1955/1814,
  42759. bottom: 40/1995
  42760. }
  42761. },
  42762. frontExtended: {
  42763. height: math.unit(325, "feet"),
  42764. name: "Front (Extended)",
  42765. image: {
  42766. source: "./media/characters/zorkaiju/front-extended.svg",
  42767. extra: 1955/1814,
  42768. bottom: 40/1995
  42769. }
  42770. },
  42771. side: {
  42772. height: math.unit(325, "feet"),
  42773. name: "Side",
  42774. image: {
  42775. source: "./media/characters/zorkaiju/side.svg",
  42776. extra: 1495/1396,
  42777. bottom: 17/1512
  42778. }
  42779. },
  42780. sideExtended: {
  42781. height: math.unit(325, "feet"),
  42782. name: "Side (Extended)",
  42783. image: {
  42784. source: "./media/characters/zorkaiju/side-extended.svg",
  42785. extra: 1495/1396,
  42786. bottom: 17/1512
  42787. }
  42788. },
  42789. back: {
  42790. height: math.unit(325, "feet"),
  42791. name: "Back",
  42792. image: {
  42793. source: "./media/characters/zorkaiju/back.svg",
  42794. extra: 1959/1821,
  42795. bottom: 31/1990
  42796. }
  42797. },
  42798. backExtended: {
  42799. height: math.unit(325, "feet"),
  42800. name: "Back (Extended)",
  42801. image: {
  42802. source: "./media/characters/zorkaiju/back-extended.svg",
  42803. extra: 1959/1821,
  42804. bottom: 31/1990
  42805. }
  42806. },
  42807. hand: {
  42808. height: math.unit(58.4, "feet"),
  42809. name: "Hand",
  42810. image: {
  42811. source: "./media/characters/zorkaiju/hand.svg"
  42812. }
  42813. },
  42814. handExtended: {
  42815. height: math.unit(61.4, "feet"),
  42816. name: "Hand (Extended)",
  42817. image: {
  42818. source: "./media/characters/zorkaiju/hand-extended.svg"
  42819. }
  42820. },
  42821. foot: {
  42822. height: math.unit(95, "feet"),
  42823. name: "Foot",
  42824. image: {
  42825. source: "./media/characters/zorkaiju/foot.svg"
  42826. }
  42827. },
  42828. leftArm: {
  42829. height: math.unit(59, "feet"),
  42830. name: "Left Arm",
  42831. image: {
  42832. source: "./media/characters/zorkaiju/left-arm.svg"
  42833. }
  42834. },
  42835. rightArm: {
  42836. height: math.unit(59, "feet"),
  42837. name: "Right Arm",
  42838. image: {
  42839. source: "./media/characters/zorkaiju/right-arm.svg"
  42840. }
  42841. },
  42842. leftArmExtended: {
  42843. height: math.unit(59 * 1.033546, "feet"),
  42844. name: "Left Arm (Extended)",
  42845. image: {
  42846. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42847. }
  42848. },
  42849. rightArmExtended: {
  42850. height: math.unit(59 * 1.0496, "feet"),
  42851. name: "Right Arm (Extended)",
  42852. image: {
  42853. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42854. }
  42855. },
  42856. tail: {
  42857. height: math.unit(104, "feet"),
  42858. name: "Tail",
  42859. image: {
  42860. source: "./media/characters/zorkaiju/tail.svg"
  42861. }
  42862. },
  42863. tailExtended: {
  42864. height: math.unit(104, "feet"),
  42865. name: "Tail (Extended)",
  42866. image: {
  42867. source: "./media/characters/zorkaiju/tail-extended.svg"
  42868. }
  42869. },
  42870. tailBottom: {
  42871. height: math.unit(104, "feet"),
  42872. name: "Tail Bottom",
  42873. image: {
  42874. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42875. }
  42876. },
  42877. crystal: {
  42878. height: math.unit(27.54, "feet"),
  42879. name: "Crystal",
  42880. image: {
  42881. source: "./media/characters/zorkaiju/crystal.svg"
  42882. }
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Kaiju",
  42888. height: math.unit(325, "feet"),
  42889. default: true
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(6 + 1/12, "feet"),
  42898. weight: math.unit(115, "lb"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/bailey-belfry/front.svg",
  42902. extra: 1240/1121,
  42903. bottom: 101/1341
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(6 + 1/12, "feet"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42917. {
  42918. side: {
  42919. height: math.unit(4, "meters"),
  42920. weight: math.unit(250, "kg"),
  42921. name: "Side",
  42922. image: {
  42923. source: "./media/characters/blacky/side.svg",
  42924. extra: 1027/919,
  42925. bottom: 43/1070
  42926. }
  42927. },
  42928. maw: {
  42929. height: math.unit(1, "meters"),
  42930. name: "Maw",
  42931. image: {
  42932. source: "./media/characters/blacky/maw.svg"
  42933. }
  42934. },
  42935. paw: {
  42936. height: math.unit(1, "meters"),
  42937. name: "Paw",
  42938. image: {
  42939. source: "./media/characters/blacky/paw.svg"
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(4, "meters"),
  42947. default: true
  42948. },
  42949. ]
  42950. ))
  42951. characterMakers.push(() => makeCharacter(
  42952. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42953. {
  42954. front: {
  42955. height: math.unit(170, "cm"),
  42956. weight: math.unit(66, "kg"),
  42957. name: "Front",
  42958. image: {
  42959. source: "./media/characters/thux-ei/front.svg",
  42960. extra: 1109/1011,
  42961. bottom: 8/1117
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(170, "cm"),
  42969. default: true
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(5, "feet"),
  42978. weight: math.unit(120, "lb"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/roxanne-voltaire/front.svg",
  42982. extra: 1901/1779,
  42983. bottom: 53/1954
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(5, "feet"),
  42991. default: true
  42992. },
  42993. {
  42994. name: "Giant",
  42995. height: math.unit(50, "feet")
  42996. },
  42997. {
  42998. name: "Titan",
  42999. height: math.unit(500, "feet")
  43000. },
  43001. {
  43002. name: "Macro",
  43003. height: math.unit(5000, "feet")
  43004. },
  43005. {
  43006. name: "Megamacro",
  43007. height: math.unit(50000, "feet")
  43008. },
  43009. {
  43010. name: "Gigamacro",
  43011. height: math.unit(500000, "feet")
  43012. },
  43013. {
  43014. name: "Teramacro",
  43015. height: math.unit(5e6, "feet")
  43016. },
  43017. ]
  43018. ))
  43019. characterMakers.push(() => makeCharacter(
  43020. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43021. {
  43022. front: {
  43023. height: math.unit(6 + 2/12, "feet"),
  43024. name: "Front",
  43025. image: {
  43026. source: "./media/characters/squeaks/front.svg",
  43027. extra: 1823/1768,
  43028. bottom: 138/1961
  43029. }
  43030. },
  43031. },
  43032. [
  43033. {
  43034. name: "Micro",
  43035. height: math.unit(0.5, "inches")
  43036. },
  43037. {
  43038. name: "Normal",
  43039. height: math.unit(6 + 2/12, "feet"),
  43040. default: true
  43041. },
  43042. {
  43043. name: "Macro",
  43044. height: math.unit(600, "feet")
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43050. {
  43051. front: {
  43052. height: math.unit(1.72, "meters"),
  43053. name: "Front",
  43054. image: {
  43055. source: "./media/characters/archinger/front.svg",
  43056. extra: 1861/1675,
  43057. bottom: 125/1986
  43058. }
  43059. },
  43060. back: {
  43061. height: math.unit(1.72, "meters"),
  43062. name: "Back",
  43063. image: {
  43064. source: "./media/characters/archinger/back.svg",
  43065. extra: 1844/1701,
  43066. bottom: 104/1948
  43067. }
  43068. },
  43069. cock: {
  43070. height: math.unit(0.59, "feet"),
  43071. name: "Cock",
  43072. image: {
  43073. source: "./media/characters/archinger/cock.svg"
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Normal",
  43080. height: math.unit(1.72, "meters"),
  43081. default: true
  43082. },
  43083. {
  43084. name: "Macro",
  43085. height: math.unit(84, "meters")
  43086. },
  43087. {
  43088. name: "Macro+",
  43089. height: math.unit(112, "meters")
  43090. },
  43091. {
  43092. name: "Macro++",
  43093. height: math.unit(960, "meters")
  43094. },
  43095. {
  43096. name: "Macro+++",
  43097. height: math.unit(4, "km")
  43098. },
  43099. {
  43100. name: "Macro++++",
  43101. height: math.unit(48, "km")
  43102. },
  43103. {
  43104. name: "Macro+++++",
  43105. height: math.unit(4500, "km")
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(5 + 5/12, "feet"),
  43114. name: "Front",
  43115. image: {
  43116. source: "./media/characters/alsnapz/front.svg",
  43117. extra: 1157/1065,
  43118. bottom: 42/1199
  43119. }
  43120. },
  43121. },
  43122. [
  43123. {
  43124. name: "Normal",
  43125. height: math.unit(5 + 5/12, "feet"),
  43126. default: true
  43127. },
  43128. ]
  43129. ))
  43130. characterMakers.push(() => makeCharacter(
  43131. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43132. {
  43133. side: {
  43134. height: math.unit(3.2, "earths"),
  43135. name: "Side",
  43136. image: {
  43137. source: "./media/characters/mag/side.svg",
  43138. extra: 1331/1008,
  43139. bottom: 52/1383
  43140. }
  43141. },
  43142. wing: {
  43143. height: math.unit(1.94, "earths"),
  43144. name: "Wing",
  43145. image: {
  43146. source: "./media/characters/mag/wing.svg"
  43147. }
  43148. },
  43149. dick: {
  43150. height: math.unit(1.8, "earths"),
  43151. name: "Dick",
  43152. image: {
  43153. source: "./media/characters/mag/dick.svg"
  43154. }
  43155. },
  43156. ass: {
  43157. height: math.unit(1.33, "earths"),
  43158. name: "Ass",
  43159. image: {
  43160. source: "./media/characters/mag/ass.svg"
  43161. }
  43162. },
  43163. head: {
  43164. height: math.unit(1.1, "earths"),
  43165. name: "Head",
  43166. image: {
  43167. source: "./media/characters/mag/head.svg"
  43168. }
  43169. },
  43170. maw: {
  43171. height: math.unit(1.62, "earths"),
  43172. name: "Maw",
  43173. image: {
  43174. source: "./media/characters/mag/maw.svg"
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Small",
  43181. height: math.unit(162, "feet")
  43182. },
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(3.2, "earths"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(512, "feet"),
  43195. weight: math.unit(63509, "tonnes"),
  43196. name: "Front",
  43197. image: {
  43198. source: "./media/characters/vorrel-harroc/front.svg",
  43199. extra: 1075/1063,
  43200. bottom: 62/1137
  43201. }
  43202. },
  43203. },
  43204. [
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(10, "feet")
  43208. },
  43209. {
  43210. name: "Macro",
  43211. height: math.unit(512, "feet"),
  43212. default: true
  43213. },
  43214. {
  43215. name: "Megamacro",
  43216. height: math.unit(256, "miles")
  43217. },
  43218. {
  43219. name: "Gigamacro",
  43220. height: math.unit(4096, "miles")
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43226. {
  43227. side: {
  43228. height: math.unit(50, "feet"),
  43229. name: "Side",
  43230. image: {
  43231. source: "./media/characters/froimar/side.svg",
  43232. extra: 855/638,
  43233. bottom: 99/954
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Macro",
  43240. height: math.unit(50, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(210, "miles"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/timothy/front.svg",
  43253. extra: 1007/943,
  43254. bottom: 62/1069
  43255. }
  43256. },
  43257. frontSkirt: {
  43258. height: math.unit(210, "miles"),
  43259. name: "Front (Skirt)",
  43260. image: {
  43261. source: "./media/characters/timothy/front-skirt.svg",
  43262. extra: 1007/943,
  43263. bottom: 62/1069
  43264. }
  43265. },
  43266. frontCoat: {
  43267. height: math.unit(210, "miles"),
  43268. name: "Front (Coat)",
  43269. image: {
  43270. source: "./media/characters/timothy/front-coat.svg",
  43271. extra: 1007/943,
  43272. bottom: 62/1069
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Macro",
  43279. height: math.unit(210, "miles"),
  43280. default: true
  43281. },
  43282. {
  43283. name: "Megamacro",
  43284. height: math.unit(210000, "miles")
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(188, "feet"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/pyotr/front.svg",
  43296. extra: 1912/1826,
  43297. bottom: 18/1930
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Macro",
  43304. height: math.unit(188, "feet"),
  43305. default: true
  43306. },
  43307. {
  43308. name: "Megamacro",
  43309. height: math.unit(8, "miles")
  43310. },
  43311. ]
  43312. ))
  43313. characterMakers.push(() => makeCharacter(
  43314. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43315. {
  43316. side: {
  43317. height: math.unit(10, "feet"),
  43318. weight: math.unit(4500, "lb"),
  43319. name: "Side",
  43320. image: {
  43321. source: "./media/characters/ackart/side.svg",
  43322. extra: 1776/1668,
  43323. bottom: 116/1892
  43324. }
  43325. },
  43326. },
  43327. [
  43328. {
  43329. name: "Normal",
  43330. height: math.unit(10, "feet"),
  43331. default: true
  43332. },
  43333. ]
  43334. ))
  43335. characterMakers.push(() => makeCharacter(
  43336. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43337. {
  43338. side: {
  43339. height: math.unit(21, "feet"),
  43340. name: "Side",
  43341. image: {
  43342. source: "./media/characters/nolow/side.svg",
  43343. extra: 1484/1434,
  43344. bottom: 85/1569
  43345. }
  43346. },
  43347. sideErect: {
  43348. height: math.unit(21, "feet"),
  43349. name: "Side-erect",
  43350. image: {
  43351. source: "./media/characters/nolow/side-erect.svg",
  43352. extra: 1484/1434,
  43353. bottom: 85/1569
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Regular",
  43360. height: math.unit(12, "feet")
  43361. },
  43362. {
  43363. name: "Big Chee",
  43364. height: math.unit(21, "feet"),
  43365. default: true
  43366. },
  43367. ]
  43368. ))
  43369. characterMakers.push(() => makeCharacter(
  43370. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43371. {
  43372. front: {
  43373. height: math.unit(7, "feet"),
  43374. weight: math.unit(250, "lb"),
  43375. name: "Front",
  43376. image: {
  43377. source: "./media/characters/nines/front.svg",
  43378. extra: 1741/1607,
  43379. bottom: 41/1782
  43380. }
  43381. },
  43382. side: {
  43383. height: math.unit(7, "feet"),
  43384. weight: math.unit(250, "lb"),
  43385. name: "Side",
  43386. image: {
  43387. source: "./media/characters/nines/side.svg",
  43388. extra: 1854/1735,
  43389. bottom: 93/1947
  43390. }
  43391. },
  43392. back: {
  43393. height: math.unit(7, "feet"),
  43394. weight: math.unit(250, "lb"),
  43395. name: "Back",
  43396. image: {
  43397. source: "./media/characters/nines/back.svg",
  43398. extra: 1748/1615,
  43399. bottom: 20/1768
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Megamacro",
  43406. height: math.unit(99, "km"),
  43407. default: true
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43413. {
  43414. front: {
  43415. height: math.unit(5 + 10/12, "feet"),
  43416. weight: math.unit(210, "lb"),
  43417. name: "Front",
  43418. image: {
  43419. source: "./media/characters/zenith/front.svg",
  43420. extra: 1531/1452,
  43421. bottom: 198/1729
  43422. }
  43423. },
  43424. back: {
  43425. height: math.unit(5 + 10/12, "feet"),
  43426. weight: math.unit(210, "lb"),
  43427. name: "Back",
  43428. image: {
  43429. source: "./media/characters/zenith/back.svg",
  43430. extra: 1571/1487,
  43431. bottom: 75/1646
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Normal",
  43438. height: math.unit(5 + 10/12, "feet"),
  43439. default: true
  43440. }
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(4, "feet"),
  43448. weight: math.unit(60, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/jasper/front.svg",
  43452. extra: 1450/1379,
  43453. bottom: 19/1469
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Normal",
  43460. height: math.unit(4, "feet"),
  43461. default: true
  43462. },
  43463. ]
  43464. ))
  43465. characterMakers.push(() => makeCharacter(
  43466. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43467. {
  43468. front: {
  43469. height: math.unit(6 + 5/12, "feet"),
  43470. weight: math.unit(290, "lb"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/tiberius-thyben/front.svg",
  43474. extra: 757/739,
  43475. bottom: 39/796
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Micro",
  43482. height: math.unit(1.5, "inches")
  43483. },
  43484. {
  43485. name: "Normal",
  43486. height: math.unit(6 + 5/12, "feet"),
  43487. default: true
  43488. },
  43489. {
  43490. name: "Macro",
  43491. height: math.unit(300, "feet")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43497. {
  43498. front: {
  43499. height: math.unit(5 + 6/12, "feet"),
  43500. weight: math.unit(60, "kg"),
  43501. name: "Front",
  43502. image: {
  43503. source: "./media/characters/sabre/front.svg",
  43504. extra: 738/671,
  43505. bottom: 27/765
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Teeny",
  43512. height: math.unit(2, "inches")
  43513. },
  43514. {
  43515. name: "Smol",
  43516. height: math.unit(8, "inches")
  43517. },
  43518. {
  43519. name: "Normal",
  43520. height: math.unit(5 + 6/12, "feet"),
  43521. default: true
  43522. },
  43523. {
  43524. name: "Mini-Macro",
  43525. height: math.unit(15, "feet")
  43526. },
  43527. {
  43528. name: "Macro",
  43529. height: math.unit(50, "feet")
  43530. },
  43531. ]
  43532. ))
  43533. characterMakers.push(() => makeCharacter(
  43534. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43535. {
  43536. front: {
  43537. height: math.unit(6 + 4/12, "feet"),
  43538. weight: math.unit(170, "lb"),
  43539. name: "Front",
  43540. image: {
  43541. source: "./media/characters/charlie/front.svg",
  43542. extra: 1348/1228,
  43543. bottom: 15/1363
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Macro",
  43550. height: math.unit(1700, "meters"),
  43551. default: true
  43552. },
  43553. {
  43554. name: "MegaMacro",
  43555. height: math.unit(20400, "meters")
  43556. },
  43557. ]
  43558. ))
  43559. characterMakers.push(() => makeCharacter(
  43560. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43561. {
  43562. front: {
  43563. height: math.unit(6 + 3/12, "feet"),
  43564. weight: math.unit(185, "lb"),
  43565. name: "Front",
  43566. image: {
  43567. source: "./media/characters/susan-grant/front.svg",
  43568. extra: 1351/1327,
  43569. bottom: 26/1377
  43570. }
  43571. },
  43572. },
  43573. [
  43574. {
  43575. name: "Normal",
  43576. height: math.unit(6 + 3/12, "feet"),
  43577. default: true
  43578. },
  43579. {
  43580. name: "Macro",
  43581. height: math.unit(225, "feet")
  43582. },
  43583. {
  43584. name: "Macro+",
  43585. height: math.unit(900, "feet")
  43586. },
  43587. {
  43588. name: "MegaMacro",
  43589. height: math.unit(14400, "feet")
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(5 + 4/12, "feet"),
  43598. weight: math.unit(110, "lb"),
  43599. name: "Front",
  43600. image: {
  43601. source: "./media/characters/axel-isanov/front.svg",
  43602. extra: 1096/1065,
  43603. bottom: 13/1109
  43604. }
  43605. },
  43606. },
  43607. [
  43608. {
  43609. name: "Normal",
  43610. height: math.unit(5 + 4/12, "feet"),
  43611. default: true
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43617. {
  43618. front: {
  43619. height: math.unit(9, "feet"),
  43620. weight: math.unit(467, "lb"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/necahual/front.svg",
  43624. extra: 920/873,
  43625. bottom: 26/946
  43626. }
  43627. },
  43628. back: {
  43629. height: math.unit(9, "feet"),
  43630. weight: math.unit(467, "lb"),
  43631. name: "Back",
  43632. image: {
  43633. source: "./media/characters/necahual/back.svg",
  43634. extra: 930/884,
  43635. bottom: 16/946
  43636. }
  43637. },
  43638. frontUnderwear: {
  43639. height: math.unit(9, "feet"),
  43640. weight: math.unit(467, "lb"),
  43641. name: "Front (Underwear)",
  43642. image: {
  43643. source: "./media/characters/necahual/front-underwear.svg",
  43644. extra: 920/873,
  43645. bottom: 26/946
  43646. }
  43647. },
  43648. frontDressed: {
  43649. height: math.unit(9, "feet"),
  43650. weight: math.unit(467, "lb"),
  43651. name: "Front (Dressed)",
  43652. image: {
  43653. source: "./media/characters/necahual/front-dressed.svg",
  43654. extra: 920/873,
  43655. bottom: 26/946
  43656. }
  43657. },
  43658. },
  43659. [
  43660. {
  43661. name: "Comprsesed",
  43662. height: math.unit(9, "feet")
  43663. },
  43664. {
  43665. name: "Natural",
  43666. height: math.unit(15, "feet"),
  43667. default: true
  43668. },
  43669. {
  43670. name: "Boosted",
  43671. height: math.unit(50, "feet")
  43672. },
  43673. {
  43674. name: "Boosted+",
  43675. height: math.unit(150, "feet")
  43676. },
  43677. {
  43678. name: "Max",
  43679. height: math.unit(500, "feet")
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43685. {
  43686. front: {
  43687. height: math.unit(22 + 1/12, "feet"),
  43688. weight: math.unit(3200, "lb"),
  43689. name: "Front",
  43690. image: {
  43691. source: "./media/characters/theo-acacia/front.svg",
  43692. extra: 1796/1741,
  43693. bottom: 83/1879
  43694. }
  43695. },
  43696. frontUnderwear: {
  43697. height: math.unit(22 + 1/12, "feet"),
  43698. weight: math.unit(3200, "lb"),
  43699. name: "Front (Underwear)",
  43700. image: {
  43701. source: "./media/characters/theo-acacia/front-underwear.svg",
  43702. extra: 1796/1741,
  43703. bottom: 83/1879
  43704. }
  43705. },
  43706. frontNude: {
  43707. height: math.unit(22 + 1/12, "feet"),
  43708. weight: math.unit(3200, "lb"),
  43709. name: "Front (Nude)",
  43710. image: {
  43711. source: "./media/characters/theo-acacia/front-nude.svg",
  43712. extra: 1796/1741,
  43713. bottom: 83/1879
  43714. }
  43715. },
  43716. },
  43717. [
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(22 + 1/12, "feet"),
  43721. default: true
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43727. {
  43728. front: {
  43729. height: math.unit(20, "feet"),
  43730. name: "Front",
  43731. image: {
  43732. source: "./media/characters/astra/front.svg",
  43733. extra: 1850/1714,
  43734. bottom: 106/1956
  43735. }
  43736. },
  43737. frontUndressed: {
  43738. height: math.unit(20, "feet"),
  43739. name: "Front (Undressed)",
  43740. image: {
  43741. source: "./media/characters/astra/front-undressed.svg",
  43742. extra: 1926/1749,
  43743. bottom: 0/1926
  43744. }
  43745. },
  43746. hand: {
  43747. height: math.unit(1.53, "feet"),
  43748. name: "Hand",
  43749. image: {
  43750. source: "./media/characters/astra/hand.svg"
  43751. }
  43752. },
  43753. paw: {
  43754. height: math.unit(1.53, "feet"),
  43755. name: "Paw",
  43756. image: {
  43757. source: "./media/characters/astra/paw.svg"
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Smallest",
  43764. height: math.unit(20, "feet")
  43765. },
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(1e9, "miles"),
  43769. default: true
  43770. },
  43771. {
  43772. name: "Larger",
  43773. height: math.unit(5, "multiverses")
  43774. },
  43775. {
  43776. name: "Largest",
  43777. height: math.unit(1e9, "multiverses")
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(8, "feet"),
  43786. name: "Front",
  43787. image: {
  43788. source: "./media/characters/breanna/front.svg",
  43789. extra: 1912/1632,
  43790. bottom: 33/1945
  43791. }
  43792. },
  43793. },
  43794. [
  43795. {
  43796. name: "Smallest",
  43797. height: math.unit(8, "feet")
  43798. },
  43799. {
  43800. name: "Normal",
  43801. height: math.unit(1, "mile"),
  43802. default: true
  43803. },
  43804. {
  43805. name: "Maximum",
  43806. height: math.unit(1500000000000, "lightyears")
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43812. {
  43813. front: {
  43814. height: math.unit(5 + 11/12, "feet"),
  43815. weight: math.unit(155, "lb"),
  43816. name: "Front",
  43817. image: {
  43818. source: "./media/characters/cai/front.svg",
  43819. extra: 1823/1702,
  43820. bottom: 32/1855
  43821. }
  43822. },
  43823. back: {
  43824. height: math.unit(5 + 11/12, "feet"),
  43825. weight: math.unit(155, "lb"),
  43826. name: "Back",
  43827. image: {
  43828. source: "./media/characters/cai/back.svg",
  43829. extra: 1809/1708,
  43830. bottom: 31/1840
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(5 + 11/12, "feet"),
  43838. default: true
  43839. },
  43840. {
  43841. name: "Big",
  43842. height: math.unit(15, "feet")
  43843. },
  43844. {
  43845. name: "Macro",
  43846. height: math.unit(200, "feet")
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43852. {
  43853. front: {
  43854. height: math.unit(5 + 6/12, "feet"),
  43855. weight: math.unit(160, "lb"),
  43856. name: "Front",
  43857. image: {
  43858. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43859. extra: 1227/1174,
  43860. bottom: 37/1264
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Macro",
  43867. height: math.unit(444, "meters"),
  43868. default: true
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(18 + 7/12, "feet"),
  43877. name: "Front",
  43878. image: {
  43879. source: "./media/characters/rex/front.svg",
  43880. extra: 1941/1807,
  43881. bottom: 66/2007
  43882. }
  43883. },
  43884. back: {
  43885. height: math.unit(18 + 7/12, "feet"),
  43886. name: "Back",
  43887. image: {
  43888. source: "./media/characters/rex/back.svg",
  43889. extra: 1937/1822,
  43890. bottom: 42/1979
  43891. }
  43892. },
  43893. boot: {
  43894. height: math.unit(3.45, "feet"),
  43895. name: "Boot",
  43896. image: {
  43897. source: "./media/characters/rex/boot.svg"
  43898. }
  43899. },
  43900. paw: {
  43901. height: math.unit(4.17, "feet"),
  43902. name: "Paw",
  43903. image: {
  43904. source: "./media/characters/rex/paw.svg"
  43905. }
  43906. },
  43907. head: {
  43908. height: math.unit(6.728, "feet"),
  43909. name: "Head",
  43910. image: {
  43911. source: "./media/characters/rex/head.svg"
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Nano",
  43918. height: math.unit(18 + 7/12, "feet")
  43919. },
  43920. {
  43921. name: "Micro",
  43922. height: math.unit(1.5, "megameters")
  43923. },
  43924. {
  43925. name: "Normal",
  43926. height: math.unit(440, "megameters"),
  43927. default: true
  43928. },
  43929. {
  43930. name: "Macro",
  43931. height: math.unit(2.5, "gigameters")
  43932. },
  43933. {
  43934. name: "Gigamacro",
  43935. height: math.unit(2, "galaxies")
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43941. {
  43942. side: {
  43943. height: math.unit(32, "feet"),
  43944. weight: math.unit(250000, "lb"),
  43945. name: "Side",
  43946. image: {
  43947. source: "./media/characters/silverwing/side.svg",
  43948. extra: 1100/1019,
  43949. bottom: 204/1304
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Normal",
  43956. height: math.unit(32, "feet"),
  43957. default: true
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43963. {
  43964. front: {
  43965. height: math.unit(6 + 6/12, "feet"),
  43966. weight: math.unit(350, "lb"),
  43967. name: "Front",
  43968. image: {
  43969. source: "./media/characters/tristan-hawthorne/front.svg",
  43970. extra: 1159/1124,
  43971. bottom: 37/1196
  43972. },
  43973. form: "labrador",
  43974. default: true
  43975. },
  43976. skunkFront: {
  43977. height: math.unit(4 + 6/12, "feet"),
  43978. weight: math.unit(120, "lb"),
  43979. name: "Front",
  43980. image: {
  43981. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43982. extra: 1609/1551,
  43983. bottom: 169/1778
  43984. },
  43985. form: "skunk",
  43986. default: true
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Normal",
  43992. height: math.unit(6 + 6/12, "feet"),
  43993. form: "labrador",
  43994. default: true
  43995. },
  43996. {
  43997. name: "Normal",
  43998. height: math.unit(4 + 6/12, "feet"),
  43999. form: "skunk",
  44000. default: true
  44001. },
  44002. ],
  44003. {
  44004. "labrador": {
  44005. name: "Labrador",
  44006. default: true
  44007. },
  44008. "skunk": {
  44009. name: "Skunk"
  44010. }
  44011. }
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44015. {
  44016. front: {
  44017. height: math.unit(5 + 11/12, "feet"),
  44018. weight: math.unit(190, "lb"),
  44019. name: "Front",
  44020. image: {
  44021. source: "./media/characters/mizu/front.svg",
  44022. extra: 1988/1788,
  44023. bottom: 14/2002
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(5 + 11/12, "feet"),
  44031. default: true
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44037. {
  44038. front: {
  44039. height: math.unit(1.7, "feet"),
  44040. weight: math.unit(50, "lb"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/dechroma/front.svg",
  44044. extra: 1095/859,
  44045. bottom: 64/1159
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(1.7, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44059. {
  44060. side: {
  44061. height: math.unit(30, "feet"),
  44062. name: "Side",
  44063. image: {
  44064. source: "./media/characters/veluren-thanazel/side.svg",
  44065. extra: 1611/633,
  44066. bottom: 118/1729
  44067. }
  44068. },
  44069. front: {
  44070. height: math.unit(30, "feet"),
  44071. name: "Front",
  44072. image: {
  44073. source: "./media/characters/veluren-thanazel/front.svg",
  44074. extra: 1486/636,
  44075. bottom: 238/1724
  44076. }
  44077. },
  44078. head: {
  44079. height: math.unit(21.4, "feet"),
  44080. name: "Head",
  44081. image: {
  44082. source: "./media/characters/veluren-thanazel/head.svg"
  44083. }
  44084. },
  44085. genitals: {
  44086. height: math.unit(19.4, "feet"),
  44087. name: "Genitals",
  44088. image: {
  44089. source: "./media/characters/veluren-thanazel/genitals.svg"
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Social",
  44096. height: math.unit(6, "feet")
  44097. },
  44098. {
  44099. name: "Play",
  44100. height: math.unit(12, "feet")
  44101. },
  44102. {
  44103. name: "True",
  44104. height: math.unit(30, "feet"),
  44105. default: true
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44111. {
  44112. front: {
  44113. height: math.unit(7 + 6/12, "feet"),
  44114. weight: math.unit(500, "kg"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/arcturas/front.svg",
  44118. extra: 1700/1500,
  44119. bottom: 145/1845
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Normal",
  44126. height: math.unit(7 + 6/12, "feet"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44133. {
  44134. side: {
  44135. height: math.unit(6, "feet"),
  44136. weight: math.unit(2, "tons"),
  44137. name: "Side",
  44138. image: {
  44139. source: "./media/characters/vitaen/side.svg",
  44140. extra: 1157/617,
  44141. bottom: 122/1279
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Normal",
  44148. height: math.unit(6, "feet"),
  44149. default: true
  44150. },
  44151. ]
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44155. {
  44156. front: {
  44157. height: math.unit(19, "feet"),
  44158. name: "Front",
  44159. image: {
  44160. source: "./media/characters/fia-dreamweaver/front.svg",
  44161. extra: 1630/1504,
  44162. bottom: 25/1655
  44163. }
  44164. },
  44165. },
  44166. [
  44167. {
  44168. name: "Normal",
  44169. height: math.unit(19, "feet"),
  44170. default: true
  44171. },
  44172. ]
  44173. ))
  44174. characterMakers.push(() => makeCharacter(
  44175. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44176. {
  44177. front: {
  44178. height: math.unit(5 + 4/12, "feet"),
  44179. name: "Front",
  44180. image: {
  44181. source: "./media/characters/artan/front.svg",
  44182. extra: 1618/1535,
  44183. bottom: 46/1664
  44184. }
  44185. },
  44186. back: {
  44187. height: math.unit(5 + 4/12, "feet"),
  44188. name: "Back",
  44189. image: {
  44190. source: "./media/characters/artan/back.svg",
  44191. extra: 1618/1543,
  44192. bottom: 31/1649
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(5 + 4/12, "feet"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44206. {
  44207. side: {
  44208. height: math.unit(182, "cm"),
  44209. weight: math.unit(1000, "lb"),
  44210. name: "Side",
  44211. image: {
  44212. source: "./media/characters/silver-dragon/side.svg",
  44213. extra: 710/287,
  44214. bottom: 88/798
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(182, "cm"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44228. {
  44229. side: {
  44230. height: math.unit(6 + 6/12, "feet"),
  44231. weight: math.unit(1.5, "tons"),
  44232. name: "Side",
  44233. image: {
  44234. source: "./media/characters/zephyr/side.svg",
  44235. extra: 1433/586,
  44236. bottom: 109/1542
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(6 + 6/12, "feet"),
  44244. default: true
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44250. {
  44251. side: {
  44252. height: math.unit(1, "feet"),
  44253. name: "Side",
  44254. image: {
  44255. source: "./media/characters/vixye/side.svg",
  44256. extra: 632/541,
  44257. bottom: 0/632
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(1, "feet"),
  44265. default: true
  44266. },
  44267. {
  44268. name: "True",
  44269. height: math.unit(1e15, "multiverses")
  44270. },
  44271. ]
  44272. ))
  44273. characterMakers.push(() => makeCharacter(
  44274. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44275. {
  44276. front: {
  44277. height: math.unit(8 + 2/12, "feet"),
  44278. weight: math.unit(650, "lb"),
  44279. name: "Front",
  44280. image: {
  44281. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44282. extra: 1174/1137,
  44283. bottom: 82/1256
  44284. }
  44285. },
  44286. back: {
  44287. height: math.unit(8 + 2/12, "feet"),
  44288. weight: math.unit(650, "lb"),
  44289. name: "Back",
  44290. image: {
  44291. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44292. extra: 1204/1157,
  44293. bottom: 46/1250
  44294. }
  44295. },
  44296. },
  44297. [
  44298. {
  44299. name: "Wildform",
  44300. height: math.unit(8 + 2/12, "feet"),
  44301. default: true
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44307. {
  44308. front: {
  44309. height: math.unit(18, "feet"),
  44310. name: "Front",
  44311. image: {
  44312. source: "./media/characters/cyphin/front.svg",
  44313. extra: 970/886,
  44314. bottom: 42/1012
  44315. }
  44316. },
  44317. back: {
  44318. height: math.unit(18, "feet"),
  44319. name: "Back",
  44320. image: {
  44321. source: "./media/characters/cyphin/back.svg",
  44322. extra: 1009/894,
  44323. bottom: 24/1033
  44324. }
  44325. },
  44326. head: {
  44327. height: math.unit(5.05, "feet"),
  44328. name: "Head",
  44329. image: {
  44330. source: "./media/characters/cyphin/head.svg"
  44331. }
  44332. },
  44333. tailbud: {
  44334. height: math.unit(5, "feet"),
  44335. name: "Tailbud",
  44336. image: {
  44337. source: "./media/characters/cyphin/tailbud.svg"
  44338. }
  44339. },
  44340. },
  44341. [
  44342. ]
  44343. ))
  44344. characterMakers.push(() => makeCharacter(
  44345. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44346. {
  44347. side: {
  44348. height: math.unit(10, "feet"),
  44349. weight: math.unit(6, "tons"),
  44350. name: "Side",
  44351. image: {
  44352. source: "./media/characters/raijin/side.svg",
  44353. extra: 1529/613,
  44354. bottom: 337/1866
  44355. }
  44356. },
  44357. },
  44358. [
  44359. {
  44360. name: "Normal",
  44361. height: math.unit(10, "feet"),
  44362. default: true
  44363. },
  44364. ]
  44365. ))
  44366. characterMakers.push(() => makeCharacter(
  44367. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44368. {
  44369. side: {
  44370. height: math.unit(9, "feet"),
  44371. name: "Side",
  44372. image: {
  44373. source: "./media/characters/nilghais/side.svg",
  44374. extra: 1047/744,
  44375. bottom: 91/1138
  44376. }
  44377. },
  44378. head: {
  44379. height: math.unit(3.14, "feet"),
  44380. name: "Head",
  44381. image: {
  44382. source: "./media/characters/nilghais/head.svg"
  44383. }
  44384. },
  44385. mouth: {
  44386. height: math.unit(4.6, "feet"),
  44387. name: "Mouth",
  44388. image: {
  44389. source: "./media/characters/nilghais/mouth.svg"
  44390. }
  44391. },
  44392. wings: {
  44393. height: math.unit(24, "feet"),
  44394. name: "Wings",
  44395. image: {
  44396. source: "./media/characters/nilghais/wings.svg"
  44397. }
  44398. },
  44399. ass: {
  44400. height: math.unit(6.12, "feet"),
  44401. name: "Ass",
  44402. image: {
  44403. source: "./media/characters/nilghais/ass.svg"
  44404. }
  44405. },
  44406. },
  44407. [
  44408. {
  44409. name: "Normal",
  44410. height: math.unit(9, "feet"),
  44411. default: true
  44412. },
  44413. ]
  44414. ))
  44415. characterMakers.push(() => makeCharacter(
  44416. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44417. {
  44418. regular: {
  44419. height: math.unit(16 + 2/12, "feet"),
  44420. weight: math.unit(2300, "lb"),
  44421. name: "Regular",
  44422. image: {
  44423. source: "./media/characters/zolgar/regular.svg",
  44424. extra: 1246/1004,
  44425. bottom: 124/1370
  44426. }
  44427. },
  44428. boxers: {
  44429. height: math.unit(16 + 2/12, "feet"),
  44430. weight: math.unit(2300, "lb"),
  44431. name: "Boxers",
  44432. image: {
  44433. source: "./media/characters/zolgar/boxers.svg",
  44434. extra: 1246/1004,
  44435. bottom: 124/1370
  44436. }
  44437. },
  44438. armored: {
  44439. height: math.unit(16 + 2/12, "feet"),
  44440. weight: math.unit(2300, "lb"),
  44441. name: "Armored",
  44442. image: {
  44443. source: "./media/characters/zolgar/armored.svg",
  44444. extra: 1246/1004,
  44445. bottom: 124/1370
  44446. }
  44447. },
  44448. goth: {
  44449. height: math.unit(16 + 2/12, "feet"),
  44450. weight: math.unit(2300, "lb"),
  44451. name: "Goth",
  44452. image: {
  44453. source: "./media/characters/zolgar/goth.svg",
  44454. extra: 1246/1004,
  44455. bottom: 124/1370
  44456. }
  44457. },
  44458. },
  44459. [
  44460. {
  44461. name: "Shrunken Down",
  44462. height: math.unit(9 + 2/12, "feet")
  44463. },
  44464. {
  44465. name: "Normal",
  44466. height: math.unit(16 + 2/12, "feet"),
  44467. default: true
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(6, "feet"),
  44476. weight: math.unit(168, "lb"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/luca/front.svg",
  44480. extra: 841/667,
  44481. bottom: 102/943
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(6, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44495. {
  44496. side: {
  44497. height: math.unit(7 + 3/12, "feet"),
  44498. weight: math.unit(312, "lb"),
  44499. name: "Side",
  44500. image: {
  44501. source: "./media/characters/zezo/side.svg",
  44502. extra: 1192/1067,
  44503. bottom: 63/1255
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(7 + 3/12, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(5 + 5/12, "feet"),
  44520. weight: math.unit(170, "lb"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/mayso/front.svg",
  44524. extra: 1215/1108,
  44525. bottom: 16/1231
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(5 + 5/12, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(4 + 3/12, "feet"),
  44542. weight: math.unit(80, "lb"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/hess/front.svg",
  44546. extra: 1200/1123,
  44547. bottom: 16/1216
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Normal",
  44554. height: math.unit(4 + 3/12, "feet"),
  44555. default: true
  44556. },
  44557. ]
  44558. ))
  44559. characterMakers.push(() => makeCharacter(
  44560. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44561. {
  44562. front: {
  44563. height: math.unit(1.9, "meters"),
  44564. name: "Front",
  44565. image: {
  44566. source: "./media/characters/ashgar/front.svg",
  44567. extra: 1177/1146,
  44568. bottom: 99/1276
  44569. }
  44570. },
  44571. back: {
  44572. height: math.unit(1.9, "meters"),
  44573. name: "Back",
  44574. image: {
  44575. source: "./media/characters/ashgar/back.svg",
  44576. extra: 1201/1183,
  44577. bottom: 53/1254
  44578. }
  44579. },
  44580. feral: {
  44581. height: math.unit(1.4, "meters"),
  44582. name: "Feral",
  44583. image: {
  44584. source: "./media/characters/ashgar/feral.svg",
  44585. extra: 370/345,
  44586. bottom: 45/415
  44587. }
  44588. },
  44589. },
  44590. [
  44591. {
  44592. name: "Normal",
  44593. height: math.unit(1.9, "meters"),
  44594. default: true
  44595. },
  44596. ]
  44597. ))
  44598. characterMakers.push(() => makeCharacter(
  44599. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44600. {
  44601. regular: {
  44602. height: math.unit(6, "feet"),
  44603. weight: math.unit(220, "lb"),
  44604. name: "Regular",
  44605. image: {
  44606. source: "./media/characters/phillip/regular.svg",
  44607. extra: 1373/1277,
  44608. bottom: 75/1448
  44609. }
  44610. },
  44611. dressed: {
  44612. height: math.unit(6, "feet"),
  44613. weight: math.unit(220, "lb"),
  44614. name: "Dressed",
  44615. image: {
  44616. source: "./media/characters/phillip/dressed.svg",
  44617. extra: 1373/1277,
  44618. bottom: 75/1448
  44619. }
  44620. },
  44621. paw: {
  44622. height: math.unit(1.44, "feet"),
  44623. name: "Paw",
  44624. image: {
  44625. source: "./media/characters/phillip/paw.svg"
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(6, "feet"),
  44633. default: true
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44639. {
  44640. side: {
  44641. height: math.unit(42, "feet"),
  44642. name: "Side",
  44643. image: {
  44644. source: "./media/characters/uvula/side.svg",
  44645. extra: 683/586,
  44646. bottom: 60/743
  44647. }
  44648. },
  44649. front: {
  44650. height: math.unit(42, "feet"),
  44651. name: "Front",
  44652. image: {
  44653. source: "./media/characters/uvula/front.svg",
  44654. extra: 705/613,
  44655. bottom: 54/759
  44656. }
  44657. },
  44658. maw: {
  44659. height: math.unit(23.5, "feet"),
  44660. name: "Maw",
  44661. image: {
  44662. source: "./media/characters/uvula/maw.svg"
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Original Size",
  44669. height: math.unit(14, "inches")
  44670. },
  44671. {
  44672. name: "Human Size",
  44673. height: math.unit(6, "feet")
  44674. },
  44675. {
  44676. name: "Big",
  44677. height: math.unit(42, "feet"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Bigger",
  44682. height: math.unit(100, "feet")
  44683. },
  44684. ]
  44685. ))
  44686. characterMakers.push(() => makeCharacter(
  44687. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44688. {
  44689. front: {
  44690. height: math.unit(5 + 11/12, "feet"),
  44691. name: "Front",
  44692. image: {
  44693. source: "./media/characters/lannah/front.svg",
  44694. extra: 1208/1113,
  44695. bottom: 97/1305
  44696. }
  44697. },
  44698. },
  44699. [
  44700. {
  44701. name: "Normal",
  44702. height: math.unit(5 + 11/12, "feet"),
  44703. default: true
  44704. },
  44705. ]
  44706. ))
  44707. characterMakers.push(() => makeCharacter(
  44708. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44709. {
  44710. front: {
  44711. height: math.unit(6 + 3/12, "feet"),
  44712. weight: math.unit(3.5, "tons"),
  44713. name: "Front",
  44714. image: {
  44715. source: "./media/characters/emberflame/front.svg",
  44716. extra: 1198/672,
  44717. bottom: 82/1280
  44718. }
  44719. },
  44720. side: {
  44721. height: math.unit(6 + 3/12, "feet"),
  44722. weight: math.unit(3.5, "tons"),
  44723. name: "Side",
  44724. image: {
  44725. source: "./media/characters/emberflame/side.svg",
  44726. extra: 938/527,
  44727. bottom: 56/994
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(6 + 3/12, "feet"),
  44735. default: true
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44741. {
  44742. side: {
  44743. height: math.unit(17.5, "feet"),
  44744. weight: math.unit(35, "tons"),
  44745. name: "Side",
  44746. image: {
  44747. source: "./media/characters/sophie-ambrose/side.svg",
  44748. extra: 1573/1242,
  44749. bottom: 71/1644
  44750. }
  44751. },
  44752. maw: {
  44753. height: math.unit(7.4, "feet"),
  44754. name: "Maw",
  44755. image: {
  44756. source: "./media/characters/sophie-ambrose/maw.svg"
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(17.5, "feet"),
  44764. default: true
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(280, "feet"),
  44773. weight: math.unit(550, "tons"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/king-mugi/front.svg",
  44777. extra: 1102/947,
  44778. bottom: 104/1206
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "King Mugi",
  44785. height: math.unit(280, "feet"),
  44786. default: true
  44787. },
  44788. ]
  44789. ))
  44790. characterMakers.push(() => makeCharacter(
  44791. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44792. {
  44793. front: {
  44794. height: math.unit(64, "meters"),
  44795. name: "Front",
  44796. image: {
  44797. source: "./media/characters/nova-fox/front.svg",
  44798. extra: 1310/1246,
  44799. bottom: 65/1375
  44800. }
  44801. },
  44802. },
  44803. [
  44804. {
  44805. name: "Macro",
  44806. height: math.unit(64, "meters"),
  44807. default: true
  44808. },
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44813. {
  44814. front: {
  44815. height: math.unit(6 + 3/12, "feet"),
  44816. weight: math.unit(170, "lb"),
  44817. name: "Front",
  44818. image: {
  44819. source: "./media/characters/sam-bat/front.svg",
  44820. extra: 1601/1411,
  44821. bottom: 125/1726
  44822. }
  44823. },
  44824. back: {
  44825. height: math.unit(6 + 3/12, "feet"),
  44826. weight: math.unit(170, "lb"),
  44827. name: "Back",
  44828. image: {
  44829. source: "./media/characters/sam-bat/back.svg",
  44830. extra: 1577/1405,
  44831. bottom: 58/1635
  44832. }
  44833. },
  44834. },
  44835. [
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(6 + 3/12, "feet"),
  44839. default: true
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44845. {
  44846. front: {
  44847. height: math.unit(59, "feet"),
  44848. weight: math.unit(40000, "lb"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/inari/front.svg",
  44852. extra: 1884/1350,
  44853. bottom: 95/1979
  44854. }
  44855. },
  44856. },
  44857. [
  44858. {
  44859. name: "Gigantamax",
  44860. height: math.unit(59, "feet"),
  44861. default: true
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44867. {
  44868. front: {
  44869. height: math.unit(5 + 8/12, "feet"),
  44870. name: "Front",
  44871. image: {
  44872. source: "./media/characters/elizabeth/front.svg",
  44873. extra: 1395/1298,
  44874. bottom: 54/1449
  44875. }
  44876. },
  44877. mouth: {
  44878. height: math.unit(1.97, "feet"),
  44879. name: "Mouth",
  44880. image: {
  44881. source: "./media/characters/elizabeth/mouth.svg"
  44882. }
  44883. },
  44884. foot: {
  44885. height: math.unit(1.17, "feet"),
  44886. name: "Foot",
  44887. image: {
  44888. source: "./media/characters/elizabeth/foot.svg"
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(5 + 8/12, "feet"),
  44896. default: true
  44897. },
  44898. {
  44899. name: "Minimacro",
  44900. height: math.unit(18, "feet")
  44901. },
  44902. {
  44903. name: "Macro",
  44904. height: math.unit(180, "feet")
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44910. {
  44911. front: {
  44912. height: math.unit(5 + 2/12, "feet"),
  44913. name: "Front",
  44914. image: {
  44915. source: "./media/characters/october-gossamer/front.svg",
  44916. extra: 505/454,
  44917. bottom: 7/512
  44918. }
  44919. },
  44920. back: {
  44921. height: math.unit(5 + 2/12, "feet"),
  44922. name: "Back",
  44923. image: {
  44924. source: "./media/characters/october-gossamer/back.svg",
  44925. extra: 501/454,
  44926. bottom: 11/512
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(5 + 2/12, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44940. {
  44941. front: {
  44942. height: math.unit(5, "feet"),
  44943. name: "Front",
  44944. image: {
  44945. source: "./media/characters/epiglottis/front.svg",
  44946. extra: 923/849,
  44947. bottom: 17/940
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Original Size",
  44954. height: math.unit(10, "inches")
  44955. },
  44956. {
  44957. name: "Human Size",
  44958. height: math.unit(5, "feet"),
  44959. default: true
  44960. },
  44961. {
  44962. name: "Big",
  44963. height: math.unit(25, "feet")
  44964. },
  44965. {
  44966. name: "Bigger",
  44967. height: math.unit(50, "feet")
  44968. },
  44969. {
  44970. name: "oh lawd",
  44971. height: math.unit(75, "feet")
  44972. },
  44973. ]
  44974. ))
  44975. characterMakers.push(() => makeCharacter(
  44976. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44977. {
  44978. front: {
  44979. height: math.unit(2 + 4/12, "feet"),
  44980. weight: math.unit(60, "lb"),
  44981. name: "Front",
  44982. image: {
  44983. source: "./media/characters/lerm/front.svg",
  44984. extra: 796/790,
  44985. bottom: 79/875
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "Normal",
  44992. height: math.unit(2 + 4/12, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(5.5, "feet"),
  45002. weight: math.unit(130, "lb"),
  45003. name: "Front",
  45004. image: {
  45005. source: "./media/characters/xena-nebadon/front.svg",
  45006. extra: 1828/1730,
  45007. bottom: 79/1907
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Tiny Puppy",
  45014. height: math.unit(3, "inches")
  45015. },
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(5.5, "feet"),
  45019. default: true
  45020. },
  45021. {
  45022. name: "Lotta Lady",
  45023. height: math.unit(12, "feet")
  45024. },
  45025. {
  45026. name: "Pretty Big",
  45027. height: math.unit(100, "feet")
  45028. },
  45029. {
  45030. name: "Big",
  45031. height: math.unit(500, "feet")
  45032. },
  45033. {
  45034. name: "Skyscraper Toys",
  45035. height: math.unit(2500, "feet")
  45036. },
  45037. {
  45038. name: "Plane Catcher",
  45039. height: math.unit(8, "miles")
  45040. },
  45041. {
  45042. name: "Planet Toys",
  45043. height: math.unit(15, "earths")
  45044. },
  45045. {
  45046. name: "Stardust",
  45047. height: math.unit(0.25, "galaxies")
  45048. },
  45049. {
  45050. name: "Snacks",
  45051. height: math.unit(70, "universes")
  45052. },
  45053. ]
  45054. ))
  45055. characterMakers.push(() => makeCharacter(
  45056. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45057. {
  45058. front: {
  45059. height: math.unit(1.6, "meters"),
  45060. weight: math.unit(60, "kg"),
  45061. name: "Front",
  45062. image: {
  45063. source: "./media/characters/bounty/front.svg",
  45064. extra: 1426/1308,
  45065. bottom: 15/1441
  45066. }
  45067. },
  45068. back: {
  45069. height: math.unit(1.6, "meters"),
  45070. weight: math.unit(60, "kg"),
  45071. name: "Back",
  45072. image: {
  45073. source: "./media/characters/bounty/back.svg",
  45074. extra: 1417/1307,
  45075. bottom: 8/1425
  45076. }
  45077. },
  45078. },
  45079. [
  45080. {
  45081. name: "Normal",
  45082. height: math.unit(1.6, "meters"),
  45083. default: true
  45084. },
  45085. {
  45086. name: "Macro",
  45087. height: math.unit(300, "meters")
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45093. {
  45094. front: {
  45095. height: math.unit(2 + 8/12, "feet"),
  45096. weight: math.unit(15, "lb"),
  45097. name: "Front",
  45098. image: {
  45099. source: "./media/characters/mochi/front.svg",
  45100. extra: 1022/852,
  45101. bottom: 435/1457
  45102. }
  45103. },
  45104. back: {
  45105. height: math.unit(2 + 8/12, "feet"),
  45106. weight: math.unit(15, "lb"),
  45107. name: "Back",
  45108. image: {
  45109. source: "./media/characters/mochi/back.svg",
  45110. extra: 1335/1119,
  45111. bottom: 39/1374
  45112. }
  45113. },
  45114. bird: {
  45115. height: math.unit(2 + 8/12, "feet"),
  45116. weight: math.unit(15, "lb"),
  45117. name: "Bird",
  45118. image: {
  45119. source: "./media/characters/mochi/bird.svg",
  45120. extra: 1251/1113,
  45121. bottom: 178/1429
  45122. }
  45123. },
  45124. kaiju: {
  45125. height: math.unit(154, "feet"),
  45126. weight: math.unit(1e7, "lb"),
  45127. name: "Kaiju",
  45128. image: {
  45129. source: "./media/characters/mochi/kaiju.svg",
  45130. extra: 460/324,
  45131. bottom: 40/500
  45132. }
  45133. },
  45134. head: {
  45135. height: math.unit(1.21, "feet"),
  45136. name: "Head",
  45137. image: {
  45138. source: "./media/characters/mochi/head.svg"
  45139. }
  45140. },
  45141. alternateTail: {
  45142. height: math.unit(2 + 8/12, "feet"),
  45143. weight: math.unit(45, "lb"),
  45144. name: "Alternate Tail",
  45145. image: {
  45146. source: "./media/characters/mochi/alternate-tail.svg",
  45147. extra: 139/76,
  45148. bottom: 45/184
  45149. }
  45150. },
  45151. },
  45152. [
  45153. {
  45154. name: "Micro",
  45155. height: math.unit(2, "inches")
  45156. },
  45157. {
  45158. name: "Normal",
  45159. height: math.unit(2 + 8/12, "feet"),
  45160. default: true
  45161. },
  45162. {
  45163. name: "Macro",
  45164. height: math.unit(106, "feet")
  45165. },
  45166. ]
  45167. ))
  45168. characterMakers.push(() => makeCharacter(
  45169. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45170. {
  45171. front: {
  45172. height: math.unit(5.67, "feet"),
  45173. weight: math.unit(135, "lb"),
  45174. name: "Front",
  45175. image: {
  45176. source: "./media/characters/sarel/front.svg",
  45177. extra: 865/788,
  45178. bottom: 97/962
  45179. }
  45180. },
  45181. back: {
  45182. height: math.unit(5.67, "feet"),
  45183. weight: math.unit(135, "lb"),
  45184. name: "Back",
  45185. image: {
  45186. source: "./media/characters/sarel/back.svg",
  45187. extra: 857/777,
  45188. bottom: 32/889
  45189. }
  45190. },
  45191. chozoan: {
  45192. height: math.unit(5.67, "feet"),
  45193. weight: math.unit(135, "lb"),
  45194. name: "Chozoan",
  45195. image: {
  45196. source: "./media/characters/sarel/chozoan.svg",
  45197. extra: 865/788,
  45198. bottom: 97/962
  45199. }
  45200. },
  45201. current: {
  45202. height: math.unit(5.67, "feet"),
  45203. weight: math.unit(135, "lb"),
  45204. name: "Current",
  45205. image: {
  45206. source: "./media/characters/sarel/current.svg",
  45207. extra: 865/788,
  45208. bottom: 97/962
  45209. }
  45210. },
  45211. head: {
  45212. height: math.unit(1.77, "feet"),
  45213. name: "Head",
  45214. image: {
  45215. source: "./media/characters/sarel/head.svg"
  45216. }
  45217. },
  45218. claws: {
  45219. height: math.unit(1.8, "feet"),
  45220. name: "Claws",
  45221. image: {
  45222. source: "./media/characters/sarel/claws.svg"
  45223. }
  45224. },
  45225. clawsAlt: {
  45226. height: math.unit(1.8, "feet"),
  45227. name: "Claws-alt",
  45228. image: {
  45229. source: "./media/characters/sarel/claws-alt.svg"
  45230. }
  45231. },
  45232. },
  45233. [
  45234. {
  45235. name: "Normal",
  45236. height: math.unit(5.67, "feet"),
  45237. default: true
  45238. },
  45239. ]
  45240. ))
  45241. characterMakers.push(() => makeCharacter(
  45242. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45243. {
  45244. front: {
  45245. height: math.unit(5500, "feet"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/alyonia/front.svg",
  45249. extra: 1200/1135,
  45250. bottom: 29/1229
  45251. }
  45252. },
  45253. back: {
  45254. height: math.unit(5500, "feet"),
  45255. name: "Back",
  45256. image: {
  45257. source: "./media/characters/alyonia/back.svg",
  45258. extra: 1205/1138,
  45259. bottom: 10/1215
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Small",
  45266. height: math.unit(10, "feet")
  45267. },
  45268. {
  45269. name: "Macro",
  45270. height: math.unit(500, "feet")
  45271. },
  45272. {
  45273. name: "Mega Macro",
  45274. height: math.unit(5500, "feet"),
  45275. default: true
  45276. },
  45277. {
  45278. name: "Mega Macro+",
  45279. height: math.unit(500000, "feet")
  45280. },
  45281. {
  45282. name: "Giga Macro",
  45283. height: math.unit(3000, "miles")
  45284. },
  45285. {
  45286. name: "Tera Macro",
  45287. height: math.unit(2.8e6, "miles")
  45288. },
  45289. {
  45290. name: "Galactic",
  45291. height: math.unit(120000, "lightyears")
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45297. {
  45298. werewolf: {
  45299. height: math.unit(8, "feet"),
  45300. weight: math.unit(425, "lb"),
  45301. name: "Werewolf",
  45302. image: {
  45303. source: "./media/characters/autumn/werewolf.svg",
  45304. extra: 2154/2031,
  45305. bottom: 160/2314
  45306. }
  45307. },
  45308. human: {
  45309. height: math.unit(5 + 8/12, "feet"),
  45310. weight: math.unit(150, "lb"),
  45311. name: "Human",
  45312. image: {
  45313. source: "./media/characters/autumn/human.svg",
  45314. extra: 1200/1149,
  45315. bottom: 30/1230
  45316. }
  45317. },
  45318. },
  45319. [
  45320. {
  45321. name: "Normal",
  45322. height: math.unit(8, "feet"),
  45323. default: true
  45324. },
  45325. ]
  45326. ))
  45327. characterMakers.push(() => makeCharacter(
  45328. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45329. {
  45330. front: {
  45331. height: math.unit(8 + 5/12, "feet"),
  45332. weight: math.unit(825, "lb"),
  45333. name: "Front",
  45334. image: {
  45335. source: "./media/characters/cobalt-charizard/front.svg",
  45336. extra: 1268/1155,
  45337. bottom: 122/1390
  45338. }
  45339. },
  45340. side: {
  45341. height: math.unit(8 + 5/12, "feet"),
  45342. weight: math.unit(825, "lb"),
  45343. name: "Side",
  45344. image: {
  45345. source: "./media/characters/cobalt-charizard/side.svg",
  45346. extra: 1348/1257,
  45347. bottom: 58/1406
  45348. }
  45349. },
  45350. gMax: {
  45351. height: math.unit(134 + 11/12, "feet"),
  45352. name: "G-Max",
  45353. image: {
  45354. source: "./media/characters/cobalt-charizard/g-max.svg",
  45355. extra: 1835/1541,
  45356. bottom: 151/1986
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(8 + 5/12, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(6 + 3/12, "feet"),
  45373. weight: math.unit(210, "lb"),
  45374. name: "Front",
  45375. image: {
  45376. source: "./media/characters/stella/front.svg",
  45377. extra: 3549/3335,
  45378. bottom: 51/3600
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(6 + 3/12, "feet"),
  45386. default: true
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(5, "feet"),
  45395. weight: math.unit(90, "lb"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/riley-bishop/front.svg",
  45399. extra: 1450/1428,
  45400. bottom: 152/1602
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(5, "feet"),
  45408. default: true
  45409. },
  45410. ]
  45411. ))
  45412. characterMakers.push(() => makeCharacter(
  45413. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45414. {
  45415. side: {
  45416. height: math.unit(8 + 2/12, "feet"),
  45417. weight: math.unit(500, "kg"),
  45418. name: "Side",
  45419. image: {
  45420. source: "./media/characters/theo-arcanine/side.svg",
  45421. extra: 1342/1074,
  45422. bottom: 111/1453
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(8 + 2/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(4, "feet"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/kali/front.svg",
  45442. extra: 1074/867,
  45443. bottom: 34/1108
  45444. }
  45445. },
  45446. back: {
  45447. height: math.unit(4, "feet"),
  45448. name: "Back",
  45449. image: {
  45450. source: "./media/characters/kali/back.svg",
  45451. extra: 1068/863,
  45452. bottom: 26/1094
  45453. }
  45454. },
  45455. frontAlt: {
  45456. height: math.unit(4, "feet"),
  45457. name: "Front (Alt)",
  45458. image: {
  45459. source: "./media/characters/kali/front-alt.svg",
  45460. extra: 1921/1357,
  45461. bottom: 70/1991
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Normal",
  45468. height: math.unit(4, "feet"),
  45469. default: true
  45470. },
  45471. {
  45472. name: "Big'vali",
  45473. height: math.unit(11, "feet")
  45474. },
  45475. {
  45476. name: "Macro",
  45477. height: math.unit(32, "meters")
  45478. },
  45479. {
  45480. name: "Macro+",
  45481. height: math.unit(150, "meters")
  45482. },
  45483. {
  45484. name: "Megamacro",
  45485. height: math.unit(7500, "meters")
  45486. },
  45487. {
  45488. name: "Megamacro+",
  45489. height: math.unit(80, "kilometers")
  45490. },
  45491. ]
  45492. ))
  45493. characterMakers.push(() => makeCharacter(
  45494. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45495. {
  45496. side: {
  45497. height: math.unit(5 + 11/12, "feet"),
  45498. weight: math.unit(236, "lb"),
  45499. name: "Side",
  45500. image: {
  45501. source: "./media/characters/gapp/side.svg",
  45502. extra: 775/340,
  45503. bottom: 58/833
  45504. }
  45505. },
  45506. mouth: {
  45507. height: math.unit(2.98, "feet"),
  45508. name: "Mouth",
  45509. image: {
  45510. source: "./media/characters/gapp/mouth.svg"
  45511. }
  45512. },
  45513. },
  45514. [
  45515. {
  45516. name: "Normal",
  45517. height: math.unit(5 + 1/12, "feet"),
  45518. default: true
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(6, "feet"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/persephone/front.svg",
  45530. extra: 1895/1717,
  45531. bottom: 96/1991
  45532. }
  45533. },
  45534. back: {
  45535. height: math.unit(6, "feet"),
  45536. name: "Back",
  45537. image: {
  45538. source: "./media/characters/persephone/back.svg",
  45539. extra: 1868/1679,
  45540. bottom: 26/1894
  45541. }
  45542. },
  45543. casual: {
  45544. height: math.unit(6, "feet"),
  45545. name: "Casual",
  45546. image: {
  45547. source: "./media/characters/persephone/casual.svg",
  45548. extra: 1713/1541,
  45549. bottom: 76/1789
  45550. }
  45551. },
  45552. gaming: {
  45553. height: math.unit(3.55, "feet"),
  45554. name: "Gaming",
  45555. image: {
  45556. source: "./media/characters/persephone/gaming.svg",
  45557. extra: 1242/1038,
  45558. bottom: 66/1308
  45559. }
  45560. },
  45561. head: {
  45562. height: math.unit(2.15, "feet"),
  45563. name: "😐",
  45564. image: {
  45565. source: "./media/characters/persephone/head.svg"
  45566. }
  45567. },
  45568. talking: {
  45569. height: math.unit(2.5, "feet"),
  45570. name: "💬",
  45571. image: {
  45572. source: "./media/characters/persephone/talking.svg"
  45573. }
  45574. },
  45575. hmm: {
  45576. height: math.unit(2.28, "feet"),
  45577. name: "🤨",
  45578. image: {
  45579. source: "./media/characters/persephone/hmm.svg"
  45580. }
  45581. },
  45582. },
  45583. [
  45584. {
  45585. name: "Human Size",
  45586. height: math.unit(6, "feet")
  45587. },
  45588. {
  45589. name: "Big Steppy",
  45590. height: math.unit(600, "meters"),
  45591. default: true
  45592. },
  45593. {
  45594. name: "Galaxy Brain",
  45595. height: math.unit(1, "zettameter")
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45601. {
  45602. front: {
  45603. height: math.unit(1.85, "meters"),
  45604. name: "Front",
  45605. image: {
  45606. source: "./media/characters/riley-foxthing/front.svg",
  45607. extra: 1495/1354,
  45608. bottom: 122/1617
  45609. }
  45610. },
  45611. frontAlt: {
  45612. height: math.unit(1.85, "meters"),
  45613. name: "Front (Alt)",
  45614. image: {
  45615. source: "./media/characters/riley-foxthing/front-alt.svg",
  45616. extra: 1572/1389,
  45617. bottom: 116/1688
  45618. }
  45619. },
  45620. },
  45621. [
  45622. {
  45623. name: "Normal Sized",
  45624. height: math.unit(1.85, "meters"),
  45625. default: true
  45626. },
  45627. {
  45628. name: "Quite Sizable",
  45629. height: math.unit(5, "meters")
  45630. },
  45631. {
  45632. name: "Rather Large",
  45633. height: math.unit(20, "meters")
  45634. },
  45635. {
  45636. name: "Macro",
  45637. height: math.unit(450, "meters")
  45638. },
  45639. {
  45640. name: "Giga",
  45641. height: math.unit(5, "km")
  45642. },
  45643. ]
  45644. ))
  45645. characterMakers.push(() => makeCharacter(
  45646. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45647. {
  45648. front: {
  45649. height: math.unit(6, "feet"),
  45650. weight: math.unit(200, "lb"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/blizzard/front.svg",
  45654. extra: 1136/990,
  45655. bottom: 136/1272
  45656. }
  45657. },
  45658. back: {
  45659. height: math.unit(6, "feet"),
  45660. weight: math.unit(200, "lb"),
  45661. name: "Back",
  45662. image: {
  45663. source: "./media/characters/blizzard/back.svg",
  45664. extra: 1175/1034,
  45665. bottom: 97/1272
  45666. }
  45667. },
  45668. sitting: {
  45669. height: math.unit(3.725, "feet"),
  45670. weight: math.unit(200, "lb"),
  45671. name: "Sitting",
  45672. image: {
  45673. source: "./media/characters/blizzard/sitting.svg",
  45674. extra: 581/485,
  45675. bottom: 90/671
  45676. }
  45677. },
  45678. frontWizard: {
  45679. height: math.unit(7.9, "feet"),
  45680. weight: math.unit(200, "lb"),
  45681. name: "Front (Wizard)",
  45682. image: {
  45683. source: "./media/characters/blizzard/front-wizard.svg"
  45684. }
  45685. },
  45686. backWizard: {
  45687. height: math.unit(7.9, "feet"),
  45688. weight: math.unit(200, "lb"),
  45689. name: "Back (Wizard)",
  45690. image: {
  45691. source: "./media/characters/blizzard/back-wizard.svg"
  45692. }
  45693. },
  45694. frontNsfw: {
  45695. height: math.unit(6, "feet"),
  45696. weight: math.unit(200, "lb"),
  45697. name: "Front (NSFW)",
  45698. image: {
  45699. source: "./media/characters/blizzard/front-nsfw.svg",
  45700. extra: 1136/990,
  45701. bottom: 136/1272
  45702. }
  45703. },
  45704. backNsfw: {
  45705. height: math.unit(6, "feet"),
  45706. weight: math.unit(200, "lb"),
  45707. name: "Back (NSFW)",
  45708. image: {
  45709. source: "./media/characters/blizzard/back-nsfw.svg",
  45710. extra: 1175/1034,
  45711. bottom: 97/1272
  45712. }
  45713. },
  45714. sittingNsfw: {
  45715. height: math.unit(3.725, "feet"),
  45716. weight: math.unit(200, "lb"),
  45717. name: "Sitting (NSFW)",
  45718. image: {
  45719. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45720. extra: 581/485,
  45721. bottom: 90/671
  45722. }
  45723. },
  45724. wizardFrontNsfw: {
  45725. height: math.unit(7.9, "feet"),
  45726. weight: math.unit(200, "lb"),
  45727. name: "Wizard (Front, NSFW)",
  45728. image: {
  45729. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45730. }
  45731. },
  45732. },
  45733. [
  45734. {
  45735. name: "Normal",
  45736. height: math.unit(6, "feet"),
  45737. default: true
  45738. },
  45739. ]
  45740. ))
  45741. characterMakers.push(() => makeCharacter(
  45742. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45743. {
  45744. front: {
  45745. height: math.unit(5 + 2/12, "feet"),
  45746. name: "Front",
  45747. image: {
  45748. source: "./media/characters/lumi/front.svg",
  45749. extra: 1328/1268,
  45750. bottom: 103/1431
  45751. }
  45752. },
  45753. back: {
  45754. height: math.unit(5 + 2/12, "feet"),
  45755. name: "Back",
  45756. image: {
  45757. source: "./media/characters/lumi/back.svg",
  45758. extra: 1381/1327,
  45759. bottom: 43/1424
  45760. }
  45761. },
  45762. },
  45763. [
  45764. {
  45765. name: "Normal",
  45766. height: math.unit(5 + 2/12, "feet"),
  45767. default: true
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45773. {
  45774. front: {
  45775. height: math.unit(5 + 9/12, "feet"),
  45776. name: "Front",
  45777. image: {
  45778. source: "./media/characters/aliya-cotton/front.svg",
  45779. extra: 577/564,
  45780. bottom: 29/606
  45781. }
  45782. },
  45783. },
  45784. [
  45785. {
  45786. name: "Normal",
  45787. height: math.unit(5 + 9/12, "feet"),
  45788. default: true
  45789. },
  45790. ]
  45791. ))
  45792. characterMakers.push(() => makeCharacter(
  45793. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45794. {
  45795. front: {
  45796. height: math.unit(2.7, "meters"),
  45797. weight: math.unit(25000, "lb"),
  45798. name: "Front",
  45799. image: {
  45800. source: "./media/characters/noah-luxray/front.svg",
  45801. extra: 1644/825,
  45802. bottom: 339/1983
  45803. }
  45804. },
  45805. side: {
  45806. height: math.unit(2.97, "meters"),
  45807. weight: math.unit(25000, "lb"),
  45808. name: "Side",
  45809. image: {
  45810. source: "./media/characters/noah-luxray/side.svg",
  45811. extra: 1319/650,
  45812. bottom: 163/1482
  45813. }
  45814. },
  45815. dick: {
  45816. height: math.unit(7.4, "feet"),
  45817. weight: math.unit(2500, "lb"),
  45818. name: "Dick",
  45819. image: {
  45820. source: "./media/characters/noah-luxray/dick.svg"
  45821. }
  45822. },
  45823. dickAlt: {
  45824. height: math.unit(10.83, "feet"),
  45825. weight: math.unit(2500, "lb"),
  45826. name: "Dick-alt",
  45827. image: {
  45828. source: "./media/characters/noah-luxray/dick-alt.svg"
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "BIG",
  45835. height: math.unit(2.7, "meters"),
  45836. default: true
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45842. {
  45843. standing: {
  45844. height: math.unit(183, "cm"),
  45845. weight: math.unit(68, "kg"),
  45846. name: "Standing",
  45847. image: {
  45848. source: "./media/characters/arion/standing.svg",
  45849. extra: 1869/1807,
  45850. bottom: 93/1962
  45851. }
  45852. },
  45853. reclining: {
  45854. height: math.unit(70.5, "cm"),
  45855. weight: math.unit(68, "lb"),
  45856. name: "Reclining",
  45857. image: {
  45858. source: "./media/characters/arion/reclining.svg",
  45859. extra: 937/870,
  45860. bottom: 63/1000
  45861. }
  45862. },
  45863. },
  45864. [
  45865. {
  45866. name: "Colossus Size, Low",
  45867. height: math.unit(33, "meters"),
  45868. default: true
  45869. },
  45870. {
  45871. name: "Colossus Size, Mid",
  45872. height: math.unit(52, "meters")
  45873. },
  45874. {
  45875. name: "Colossus Size, High",
  45876. height: math.unit(60, "meters")
  45877. },
  45878. {
  45879. name: "Titan Size, Low",
  45880. height: math.unit(91, "meters"),
  45881. },
  45882. {
  45883. name: "Titan Size, Mid",
  45884. height: math.unit(122, "meters")
  45885. },
  45886. {
  45887. name: "Titan Size, High",
  45888. height: math.unit(162, "meters")
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45894. {
  45895. front: {
  45896. height: math.unit(53, "meters"),
  45897. name: "Front",
  45898. image: {
  45899. source: "./media/characters/stellar-marbey/front.svg",
  45900. extra: 1913/1805,
  45901. bottom: 92/2005
  45902. }
  45903. },
  45904. back: {
  45905. height: math.unit(53, "meters"),
  45906. name: "Back",
  45907. image: {
  45908. source: "./media/characters/stellar-marbey/back.svg",
  45909. extra: 1960/1851,
  45910. bottom: 28/1988
  45911. }
  45912. },
  45913. mouth: {
  45914. height: math.unit(3.5, "meters"),
  45915. name: "Mouth",
  45916. image: {
  45917. source: "./media/characters/stellar-marbey/mouth.svg"
  45918. }
  45919. },
  45920. },
  45921. [
  45922. {
  45923. name: "Macro",
  45924. height: math.unit(53, "meters"),
  45925. default: true
  45926. },
  45927. ]
  45928. ))
  45929. characterMakers.push(() => makeCharacter(
  45930. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45931. {
  45932. front: {
  45933. height: math.unit(8 + 1/12, "feet"),
  45934. weight: math.unit(233, "lb"),
  45935. name: "Front",
  45936. image: {
  45937. source: "./media/characters/matsu/front.svg",
  45938. extra: 832/772,
  45939. bottom: 40/872
  45940. }
  45941. },
  45942. back: {
  45943. height: math.unit(8 + 1/12, "feet"),
  45944. weight: math.unit(233, "lb"),
  45945. name: "Back",
  45946. image: {
  45947. source: "./media/characters/matsu/back.svg",
  45948. extra: 839/780,
  45949. bottom: 47/886
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(8 + 1/12, "feet"),
  45957. default: true
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45963. {
  45964. front: {
  45965. height: math.unit(4, "feet"),
  45966. weight: math.unit(148, "lb"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/thiz/front.svg",
  45970. extra: 1913/1748,
  45971. bottom: 62/1975
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(4, "feet"),
  45979. default: true
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45985. {
  45986. front: {
  45987. height: math.unit(7 + 6/12, "feet"),
  45988. weight: math.unit(267, "lb"),
  45989. name: "Front",
  45990. image: {
  45991. source: "./media/characters/marcel/front.svg",
  45992. extra: 1221/1096,
  45993. bottom: 76/1297
  45994. }
  45995. },
  45996. },
  45997. [
  45998. {
  45999. name: "Normal",
  46000. height: math.unit(7 + 6/12, "feet"),
  46001. default: true
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46007. {
  46008. side: {
  46009. height: math.unit(42, "meters"),
  46010. name: "Side",
  46011. image: {
  46012. source: "./media/characters/flake/side.svg",
  46013. extra: 1525/1306,
  46014. bottom: 209/1734
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(42, "meters"),
  46022. default: true
  46023. },
  46024. ]
  46025. ))
  46026. characterMakers.push(() => makeCharacter(
  46027. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46028. {
  46029. dressed: {
  46030. height: math.unit(6 + 4/12, "feet"),
  46031. weight: math.unit(520, "lb"),
  46032. name: "Dressed",
  46033. image: {
  46034. source: "./media/characters/someonne/dressed.svg",
  46035. extra: 1020/1010,
  46036. bottom: 178/1198
  46037. }
  46038. },
  46039. undressed: {
  46040. height: math.unit(6 + 4/12, "feet"),
  46041. weight: math.unit(520, "lb"),
  46042. name: "Undressed",
  46043. image: {
  46044. source: "./media/characters/someonne/undressed.svg",
  46045. extra: 1019/1014,
  46046. bottom: 169/1188
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(6 + 4/12, "feet"),
  46054. default: true
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46060. {
  46061. front: {
  46062. height: math.unit(3, "feet"),
  46063. weight: math.unit(30, "lb"),
  46064. name: "Front",
  46065. image: {
  46066. source: "./media/characters/till/front.svg",
  46067. extra: 892/823,
  46068. bottom: 55/947
  46069. }
  46070. },
  46071. },
  46072. [
  46073. {
  46074. name: "Normal",
  46075. height: math.unit(3, "feet"),
  46076. default: true
  46077. },
  46078. ]
  46079. ))
  46080. characterMakers.push(() => makeCharacter(
  46081. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46082. {
  46083. front: {
  46084. height: math.unit(9 + 8/12, "feet"),
  46085. weight: math.unit(800, "lb"),
  46086. name: "Front",
  46087. image: {
  46088. source: "./media/characters/sydney-heki/front.svg",
  46089. extra: 1360/1300,
  46090. bottom: 22/1382
  46091. }
  46092. },
  46093. back: {
  46094. height: math.unit(9 + 8/12, "feet"),
  46095. weight: math.unit(800, "lb"),
  46096. name: "Back",
  46097. image: {
  46098. source: "./media/characters/sydney-heki/back.svg",
  46099. extra: 1356/1293,
  46100. bottom: 12/1368
  46101. }
  46102. },
  46103. frontDressed: {
  46104. height: math.unit(9 + 8/12, "feet"),
  46105. weight: math.unit(800, "lb"),
  46106. name: "Front-dressed",
  46107. image: {
  46108. source: "./media/characters/sydney-heki/front-dressed.svg",
  46109. extra: 1360/1300,
  46110. bottom: 22/1382
  46111. }
  46112. },
  46113. },
  46114. [
  46115. {
  46116. name: "Normal",
  46117. height: math.unit(9 + 8/12, "feet"),
  46118. default: true
  46119. },
  46120. {
  46121. name: "Macro",
  46122. height: math.unit(500, "feet")
  46123. },
  46124. {
  46125. name: "Megamacro",
  46126. height: math.unit(3.6, "miles")
  46127. },
  46128. ]
  46129. ))
  46130. characterMakers.push(() => makeCharacter(
  46131. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46132. {
  46133. front: {
  46134. height: math.unit(200, "cm"),
  46135. weight: math.unit(250, "lb"),
  46136. name: "Front",
  46137. image: {
  46138. source: "./media/characters/fowler-karlsson/front.svg",
  46139. extra: 897/845,
  46140. bottom: 123/1020
  46141. }
  46142. },
  46143. back: {
  46144. height: math.unit(200, "cm"),
  46145. weight: math.unit(250, "lb"),
  46146. name: "Back",
  46147. image: {
  46148. source: "./media/characters/fowler-karlsson/back.svg",
  46149. extra: 999/944,
  46150. bottom: 26/1025
  46151. }
  46152. },
  46153. dick: {
  46154. height: math.unit(1.92, "feet"),
  46155. weight: math.unit(150, "lb"),
  46156. name: "Dick",
  46157. image: {
  46158. source: "./media/characters/fowler-karlsson/dick.svg"
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(200, "cm"),
  46166. default: true
  46167. },
  46168. {
  46169. name: "Smaller Macro",
  46170. height: math.unit(90, "m")
  46171. },
  46172. {
  46173. name: "Macro",
  46174. height: math.unit(150, "m")
  46175. },
  46176. {
  46177. name: "Bigger Macro",
  46178. height: math.unit(300, "m")
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46184. {
  46185. side: {
  46186. height: math.unit(8 + 2/12, "feet"),
  46187. weight: math.unit(1, "tonne"),
  46188. name: "Side",
  46189. image: {
  46190. source: "./media/characters/rylide/side.svg",
  46191. extra: 1318/1034,
  46192. bottom: 106/1424
  46193. }
  46194. },
  46195. sitting: {
  46196. height: math.unit(303, "cm"),
  46197. weight: math.unit(1, "tonne"),
  46198. name: "Sitting",
  46199. image: {
  46200. source: "./media/characters/rylide/sitting.svg",
  46201. extra: 1303/1103,
  46202. bottom: 36/1339
  46203. }
  46204. },
  46205. },
  46206. [
  46207. {
  46208. name: "Normal",
  46209. height: math.unit(8 + 2/12, "feet"),
  46210. default: true
  46211. },
  46212. ]
  46213. ))
  46214. characterMakers.push(() => makeCharacter(
  46215. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46216. {
  46217. front: {
  46218. height: math.unit(5 + 10/12, "feet"),
  46219. weight: math.unit(160, "lb"),
  46220. name: "Front",
  46221. image: {
  46222. source: "./media/characters/pudask/front.svg",
  46223. extra: 1616/1590,
  46224. bottom: 161/1777
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Ferret Height",
  46231. height: math.unit(2 + 5/12, "feet")
  46232. },
  46233. {
  46234. name: "Canon Height",
  46235. height: math.unit(5 + 10/12, "feet"),
  46236. default: true
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46242. {
  46243. front: {
  46244. height: math.unit(3 + 6/12, "feet"),
  46245. weight: math.unit(60, "lb"),
  46246. name: "Front",
  46247. image: {
  46248. source: "./media/characters/ramita/front.svg",
  46249. extra: 1402/1232,
  46250. bottom: 62/1464
  46251. }
  46252. },
  46253. dressed: {
  46254. height: math.unit(3 + 6/12, "feet"),
  46255. weight: math.unit(60, "lb"),
  46256. name: "Dressed",
  46257. image: {
  46258. source: "./media/characters/ramita/dressed.svg",
  46259. extra: 1534/1249,
  46260. bottom: 50/1584
  46261. }
  46262. },
  46263. },
  46264. [
  46265. {
  46266. name: "Normal",
  46267. height: math.unit(3 + 6/12, "feet"),
  46268. default: true
  46269. },
  46270. ]
  46271. ))
  46272. characterMakers.push(() => makeCharacter(
  46273. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46274. {
  46275. front: {
  46276. height: math.unit(8, "feet"),
  46277. name: "Front",
  46278. image: {
  46279. source: "./media/characters/ark/front.svg",
  46280. extra: 772/693,
  46281. bottom: 45/817
  46282. }
  46283. },
  46284. },
  46285. [
  46286. {
  46287. name: "Normal",
  46288. height: math.unit(8, "feet"),
  46289. default: true
  46290. },
  46291. ]
  46292. ))
  46293. characterMakers.push(() => makeCharacter(
  46294. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46295. {
  46296. front: {
  46297. height: math.unit(6, "feet"),
  46298. weight: math.unit(250, "lb"),
  46299. volume: math.unit(5/8, "gallons"),
  46300. name: "Front",
  46301. image: {
  46302. source: "./media/characters/ludwig-horn/front.svg",
  46303. extra: 1782/1635,
  46304. bottom: 96/1878
  46305. }
  46306. },
  46307. back: {
  46308. height: math.unit(6, "feet"),
  46309. weight: math.unit(250, "lb"),
  46310. volume: math.unit(5/8, "gallons"),
  46311. name: "Back",
  46312. image: {
  46313. source: "./media/characters/ludwig-horn/back.svg",
  46314. extra: 1874/1729,
  46315. bottom: 27/1901
  46316. }
  46317. },
  46318. dick: {
  46319. height: math.unit(1.05, "feet"),
  46320. weight: math.unit(15, "lb"),
  46321. volume: math.unit(5/8, "gallons"),
  46322. name: "Dick",
  46323. image: {
  46324. source: "./media/characters/ludwig-horn/dick.svg"
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Small",
  46331. height: math.unit(6, "feet")
  46332. },
  46333. {
  46334. name: "Typical",
  46335. height: math.unit(12, "feet"),
  46336. default: true
  46337. },
  46338. {
  46339. name: "Building",
  46340. height: math.unit(80, "feet")
  46341. },
  46342. {
  46343. name: "Town",
  46344. height: math.unit(800, "feet")
  46345. },
  46346. {
  46347. name: "Kingdom",
  46348. height: math.unit(80000, "feet")
  46349. },
  46350. {
  46351. name: "Planet",
  46352. height: math.unit(8000000, "feet")
  46353. },
  46354. {
  46355. name: "Universe",
  46356. height: math.unit(8000000000, "feet")
  46357. },
  46358. {
  46359. name: "Transcended",
  46360. height: math.unit(8e27, "feet")
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(5, "feet"),
  46369. weight: math.unit(50, "kg"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/biot-avery/front.svg",
  46373. extra: 1295/1232,
  46374. bottom: 86/1381
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Normal",
  46381. height: math.unit(5, "feet"),
  46382. default: true
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(6, "feet"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/kitsune-kiro/front.svg",
  46394. extra: 1270/1158,
  46395. bottom: 42/1312
  46396. }
  46397. },
  46398. frontAlt: {
  46399. height: math.unit(6, "feet"),
  46400. name: "Front-alt",
  46401. image: {
  46402. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46403. extra: 1130/1081,
  46404. bottom: 36/1166
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Smol",
  46411. height: math.unit(3, "feet")
  46412. },
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(6, "feet"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46422. {
  46423. front: {
  46424. height: math.unit(6, "feet"),
  46425. weight: math.unit(125, "lb"),
  46426. name: "Front",
  46427. image: {
  46428. source: "./media/characters/jack-thatcher/front.svg",
  46429. extra: 1474/1370,
  46430. bottom: 26/1500
  46431. }
  46432. },
  46433. back: {
  46434. height: math.unit(6, "feet"),
  46435. weight: math.unit(125, "lb"),
  46436. name: "Back",
  46437. image: {
  46438. source: "./media/characters/jack-thatcher/back.svg",
  46439. extra: 1489/1384,
  46440. bottom: 18/1507
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Normal",
  46447. height: math.unit(6, "feet"),
  46448. default: true
  46449. },
  46450. {
  46451. name: "Macro",
  46452. height: math.unit(75, "feet")
  46453. },
  46454. {
  46455. name: "Macro-er",
  46456. height: math.unit(250, "feet")
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46462. {
  46463. front: {
  46464. height: math.unit(7, "feet"),
  46465. weight: math.unit(110, "kg"),
  46466. name: "Front",
  46467. image: {
  46468. source: "./media/characters/max-hyper/front.svg",
  46469. extra: 1969/1881,
  46470. bottom: 49/2018
  46471. }
  46472. },
  46473. },
  46474. [
  46475. {
  46476. name: "Normal",
  46477. height: math.unit(7, "feet"),
  46478. default: true
  46479. },
  46480. ]
  46481. ))
  46482. characterMakers.push(() => makeCharacter(
  46483. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46484. {
  46485. front: {
  46486. height: math.unit(5 + 5/12, "feet"),
  46487. weight: math.unit(160, "lb"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/spook/front.svg",
  46491. extra: 794/791,
  46492. bottom: 54/848
  46493. }
  46494. },
  46495. back: {
  46496. height: math.unit(5 + 5/12, "feet"),
  46497. weight: math.unit(160, "lb"),
  46498. name: "Back",
  46499. image: {
  46500. source: "./media/characters/spook/back.svg",
  46501. extra: 812/798,
  46502. bottom: 32/844
  46503. }
  46504. },
  46505. },
  46506. [
  46507. {
  46508. name: "Normal",
  46509. height: math.unit(5 + 5/12, "feet"),
  46510. default: true
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(18, "feet"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/xeaduulix/front.svg",
  46522. extra: 1380/1166,
  46523. bottom: 110/1490
  46524. }
  46525. },
  46526. back: {
  46527. height: math.unit(18, "feet"),
  46528. name: "Back",
  46529. image: {
  46530. source: "./media/characters/xeaduulix/back.svg",
  46531. extra: 1592/1170,
  46532. bottom: 128/1720
  46533. }
  46534. },
  46535. frontNsfw: {
  46536. height: math.unit(18, "feet"),
  46537. name: "Front (NSFW)",
  46538. image: {
  46539. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46540. extra: 1380/1166,
  46541. bottom: 110/1490
  46542. }
  46543. },
  46544. backNsfw: {
  46545. height: math.unit(18, "feet"),
  46546. name: "Back (NSFW)",
  46547. image: {
  46548. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46549. extra: 1592/1170,
  46550. bottom: 128/1720
  46551. }
  46552. },
  46553. },
  46554. [
  46555. {
  46556. name: "Normal",
  46557. height: math.unit(18, "feet"),
  46558. default: true
  46559. },
  46560. ]
  46561. ))
  46562. characterMakers.push(() => makeCharacter(
  46563. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46564. {
  46565. spreadWings: {
  46566. height: math.unit(20, "feet"),
  46567. name: "Spread Wings",
  46568. image: {
  46569. source: "./media/characters/fledge/spread-wings.svg",
  46570. extra: 693/635,
  46571. bottom: 26/719
  46572. }
  46573. },
  46574. front: {
  46575. height: math.unit(20, "feet"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/fledge/front.svg",
  46579. extra: 684/637,
  46580. bottom: 18/702
  46581. }
  46582. },
  46583. frontAlt: {
  46584. height: math.unit(20, "feet"),
  46585. name: "Front (Alt)",
  46586. image: {
  46587. source: "./media/characters/fledge/front-alt.svg",
  46588. extra: 708/664,
  46589. bottom: 13/721
  46590. }
  46591. },
  46592. back: {
  46593. height: math.unit(20, "feet"),
  46594. name: "Back",
  46595. image: {
  46596. source: "./media/characters/fledge/back.svg",
  46597. extra: 718/634,
  46598. bottom: 22/740
  46599. }
  46600. },
  46601. head: {
  46602. height: math.unit(5.55, "feet"),
  46603. name: "Head",
  46604. image: {
  46605. source: "./media/characters/fledge/head.svg"
  46606. }
  46607. },
  46608. headAlt: {
  46609. height: math.unit(5.1, "feet"),
  46610. name: "Head (Alt)",
  46611. image: {
  46612. source: "./media/characters/fledge/head-alt.svg"
  46613. }
  46614. },
  46615. },
  46616. [
  46617. {
  46618. name: "Small",
  46619. height: math.unit(6 + 2/12, "feet")
  46620. },
  46621. {
  46622. name: "Big",
  46623. height: math.unit(20, "feet"),
  46624. default: true
  46625. },
  46626. {
  46627. name: "Giant",
  46628. height: math.unit(100, "feet")
  46629. },
  46630. {
  46631. name: "Macro",
  46632. height: math.unit(200, "feet")
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46638. {
  46639. front: {
  46640. height: math.unit(1, "meter"),
  46641. name: "Front",
  46642. image: {
  46643. source: "./media/characters/atlas-morenai/front.svg",
  46644. extra: 1275/1043,
  46645. bottom: 19/1294
  46646. }
  46647. },
  46648. back: {
  46649. height: math.unit(1, "meter"),
  46650. name: "Back",
  46651. image: {
  46652. source: "./media/characters/atlas-morenai/back.svg",
  46653. extra: 1141/1001,
  46654. bottom: 25/1166
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Normal",
  46661. height: math.unit(1, "meter"),
  46662. default: true
  46663. },
  46664. {
  46665. name: "Magic-Infused",
  46666. height: math.unit(5, "meters")
  46667. },
  46668. ]
  46669. ))
  46670. characterMakers.push(() => makeCharacter(
  46671. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46672. {
  46673. front: {
  46674. height: math.unit(5, "meters"),
  46675. name: "Front",
  46676. image: {
  46677. source: "./media/characters/cintia/front.svg",
  46678. extra: 1312/1228,
  46679. bottom: 38/1350
  46680. }
  46681. },
  46682. back: {
  46683. height: math.unit(5, "meters"),
  46684. name: "Back",
  46685. image: {
  46686. source: "./media/characters/cintia/back.svg",
  46687. extra: 1260/1166,
  46688. bottom: 98/1358
  46689. }
  46690. },
  46691. frontDick: {
  46692. height: math.unit(5, "meters"),
  46693. name: "Front (Dick)",
  46694. image: {
  46695. source: "./media/characters/cintia/front-dick.svg",
  46696. extra: 1312/1228,
  46697. bottom: 38/1350
  46698. }
  46699. },
  46700. backDick: {
  46701. height: math.unit(5, "meters"),
  46702. name: "Back (Dick)",
  46703. image: {
  46704. source: "./media/characters/cintia/back-dick.svg",
  46705. extra: 1260/1166,
  46706. bottom: 98/1358
  46707. }
  46708. },
  46709. bust: {
  46710. height: math.unit(1.97, "meters"),
  46711. name: "Bust",
  46712. image: {
  46713. source: "./media/characters/cintia/bust.svg",
  46714. extra: 617/565,
  46715. bottom: 0/617
  46716. }
  46717. },
  46718. },
  46719. [
  46720. {
  46721. name: "Normal",
  46722. height: math.unit(5, "meters"),
  46723. default: true
  46724. },
  46725. ]
  46726. ))
  46727. characterMakers.push(() => makeCharacter(
  46728. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46729. {
  46730. side: {
  46731. height: math.unit(100, "feet"),
  46732. name: "Side",
  46733. image: {
  46734. source: "./media/characters/denora/side.svg",
  46735. extra: 875/803,
  46736. bottom: 9/884
  46737. }
  46738. },
  46739. },
  46740. [
  46741. {
  46742. name: "Standard",
  46743. height: math.unit(100, "feet"),
  46744. default: true
  46745. },
  46746. {
  46747. name: "Grand",
  46748. height: math.unit(1000, "feet")
  46749. },
  46750. {
  46751. name: "Conquering",
  46752. height: math.unit(10000, "feet")
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46758. {
  46759. dressed: {
  46760. height: math.unit(8 + 5/12, "feet"),
  46761. weight: math.unit(700, "lb"),
  46762. name: "Dressed",
  46763. image: {
  46764. source: "./media/characters/kiva/dressed.svg",
  46765. extra: 1102/1055,
  46766. bottom: 60/1162
  46767. }
  46768. },
  46769. nude: {
  46770. height: math.unit(8 + 5/12, "feet"),
  46771. weight: math.unit(700, "lb"),
  46772. name: "Nude",
  46773. image: {
  46774. source: "./media/characters/kiva/nude.svg",
  46775. extra: 1102/1055,
  46776. bottom: 60/1162
  46777. }
  46778. },
  46779. },
  46780. [
  46781. {
  46782. name: "Base Height",
  46783. height: math.unit(8 + 5/12, "feet"),
  46784. default: true
  46785. },
  46786. {
  46787. name: "Macro",
  46788. height: math.unit(100, "feet")
  46789. },
  46790. {
  46791. name: "Max",
  46792. height: math.unit(3280, "feet")
  46793. },
  46794. ]
  46795. ))
  46796. characterMakers.push(() => makeCharacter(
  46797. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46798. {
  46799. front: {
  46800. height: math.unit(6 + 8/12, "feet"),
  46801. weight: math.unit(250, "lb"),
  46802. name: "Front",
  46803. image: {
  46804. source: "./media/characters/ztragon/front.svg",
  46805. extra: 1825/1684,
  46806. bottom: 98/1923
  46807. }
  46808. },
  46809. },
  46810. [
  46811. {
  46812. name: "Normal",
  46813. height: math.unit(6 + 8/12, "feet"),
  46814. default: true
  46815. },
  46816. {
  46817. name: "Macro",
  46818. height: math.unit(80, "feet")
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46824. {
  46825. front: {
  46826. height: math.unit(10.4, "feet"),
  46827. weight: math.unit(2, "tons"),
  46828. name: "Front",
  46829. image: {
  46830. source: "./media/characters/yesenia/front.svg",
  46831. extra: 1479/1474,
  46832. bottom: 233/1712
  46833. }
  46834. },
  46835. },
  46836. [
  46837. {
  46838. name: "Normal",
  46839. height: math.unit(10.4, "feet"),
  46840. default: true
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46846. {
  46847. normal: {
  46848. height: math.unit(6 + 1/12, "feet"),
  46849. weight: math.unit(180, "lb"),
  46850. name: "Normal",
  46851. image: {
  46852. source: "./media/characters/leanne-lycheborne/normal.svg",
  46853. extra: 1748/1660,
  46854. bottom: 98/1846
  46855. }
  46856. },
  46857. were: {
  46858. height: math.unit(12, "feet"),
  46859. weight: math.unit(1600, "lb"),
  46860. name: "Were",
  46861. image: {
  46862. source: "./media/characters/leanne-lycheborne/were.svg",
  46863. extra: 1485/1432,
  46864. bottom: 66/1551
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(6 + 1/12, "feet"),
  46872. default: true
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46878. {
  46879. side: {
  46880. height: math.unit(13, "feet"),
  46881. name: "Side",
  46882. image: {
  46883. source: "./media/characters/kira-tyler/side.svg",
  46884. extra: 693/393,
  46885. bottom: 58/751
  46886. }
  46887. },
  46888. },
  46889. [
  46890. {
  46891. name: "Normal",
  46892. height: math.unit(13, "feet"),
  46893. default: true
  46894. },
  46895. ]
  46896. ))
  46897. characterMakers.push(() => makeCharacter(
  46898. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46899. {
  46900. front: {
  46901. height: math.unit(10.3, "feet"),
  46902. weight: math.unit(150, "lb"),
  46903. name: "Front",
  46904. image: {
  46905. source: "./media/characters/blaze/front.svg",
  46906. extra: 1378/1286,
  46907. bottom: 172/1550
  46908. }
  46909. },
  46910. },
  46911. [
  46912. {
  46913. name: "Normal",
  46914. height: math.unit(10.3, "feet"),
  46915. default: true
  46916. },
  46917. ]
  46918. ))
  46919. characterMakers.push(() => makeCharacter(
  46920. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46921. {
  46922. side: {
  46923. height: math.unit(2, "meters"),
  46924. weight: math.unit(400, "kg"),
  46925. name: "Side",
  46926. image: {
  46927. source: "./media/characters/anu/side.svg",
  46928. extra: 506/394,
  46929. bottom: 18/524
  46930. }
  46931. },
  46932. },
  46933. [
  46934. {
  46935. name: "Humanoid",
  46936. height: math.unit(2, "meters")
  46937. },
  46938. {
  46939. name: "Normal",
  46940. height: math.unit(5, "meters"),
  46941. default: true
  46942. },
  46943. ]
  46944. ))
  46945. characterMakers.push(() => makeCharacter(
  46946. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46947. {
  46948. front: {
  46949. height: math.unit(5 + 5/12, "feet"),
  46950. weight: math.unit(170, "lb"),
  46951. name: "Front",
  46952. image: {
  46953. source: "./media/characters/synx-the-lynx/front.svg",
  46954. extra: 1893/1745,
  46955. bottom: 17/1910
  46956. }
  46957. },
  46958. side: {
  46959. height: math.unit(5 + 5/12, "feet"),
  46960. weight: math.unit(170, "lb"),
  46961. name: "Side",
  46962. image: {
  46963. source: "./media/characters/synx-the-lynx/side.svg",
  46964. extra: 1884/1740,
  46965. bottom: 39/1923
  46966. }
  46967. },
  46968. back: {
  46969. height: math.unit(5 + 5/12, "feet"),
  46970. weight: math.unit(170, "lb"),
  46971. name: "Back",
  46972. image: {
  46973. source: "./media/characters/synx-the-lynx/back.svg",
  46974. extra: 1903/1755,
  46975. bottom: 14/1917
  46976. }
  46977. },
  46978. },
  46979. [
  46980. {
  46981. name: "Normal",
  46982. height: math.unit(5 + 5/12, "feet"),
  46983. default: true
  46984. },
  46985. ]
  46986. ))
  46987. characterMakers.push(() => makeCharacter(
  46988. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46989. {
  46990. back: {
  46991. height: math.unit(15, "feet"),
  46992. name: "Back",
  46993. image: {
  46994. source: "./media/characters/nadezda-fex/back.svg",
  46995. extra: 1695/1481,
  46996. bottom: 25/1720
  46997. }
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Normal",
  47003. height: math.unit(15, "feet"),
  47004. default: true
  47005. },
  47006. {
  47007. name: "Macro",
  47008. height: math.unit(2.5, "miles")
  47009. },
  47010. {
  47011. name: "Goddess",
  47012. height: math.unit(2, "multiverses")
  47013. },
  47014. ]
  47015. ))
  47016. characterMakers.push(() => makeCharacter(
  47017. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47018. {
  47019. front: {
  47020. height: math.unit(216, "cm"),
  47021. name: "Front",
  47022. image: {
  47023. source: "./media/characters/lev/front.svg",
  47024. extra: 1728/1670,
  47025. bottom: 82/1810
  47026. }
  47027. },
  47028. back: {
  47029. height: math.unit(216, "cm"),
  47030. name: "Back",
  47031. image: {
  47032. source: "./media/characters/lev/back.svg",
  47033. extra: 1738/1675,
  47034. bottom: 24/1762
  47035. }
  47036. },
  47037. dressed: {
  47038. height: math.unit(216, "cm"),
  47039. name: "Dressed",
  47040. image: {
  47041. source: "./media/characters/lev/dressed.svg",
  47042. extra: 1397/1351,
  47043. bottom: 73/1470
  47044. }
  47045. },
  47046. head: {
  47047. height: math.unit(0.51, "meter"),
  47048. name: "Head",
  47049. image: {
  47050. source: "./media/characters/lev/head.svg"
  47051. }
  47052. },
  47053. },
  47054. [
  47055. {
  47056. name: "Normal",
  47057. height: math.unit(216, "cm"),
  47058. default: true
  47059. },
  47060. {
  47061. name: "Relatively Macro",
  47062. height: math.unit(80, "meters")
  47063. },
  47064. {
  47065. name: "Megamacro",
  47066. height: math.unit(21600, "meters")
  47067. },
  47068. {
  47069. name: "Megamacro+",
  47070. height: math.unit(64800, "meters")
  47071. },
  47072. ]
  47073. ))
  47074. characterMakers.push(() => makeCharacter(
  47075. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47076. {
  47077. front: {
  47078. height: math.unit(2, "meters"),
  47079. weight: math.unit(80, "kg"),
  47080. name: "Front",
  47081. image: {
  47082. source: "./media/characters/moka/front.svg",
  47083. extra: 1337/1255,
  47084. bottom: 58/1395
  47085. }
  47086. },
  47087. },
  47088. [
  47089. {
  47090. name: "Micro",
  47091. height: math.unit(15, "cm")
  47092. },
  47093. {
  47094. name: "Normal",
  47095. height: math.unit(2, "meters"),
  47096. default: true
  47097. },
  47098. {
  47099. name: "Macro",
  47100. height: math.unit(20, "meters"),
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47106. {
  47107. front: {
  47108. height: math.unit(9, "feet"),
  47109. weight: math.unit(240, "lb"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/kuzco/front.svg",
  47113. extra: 1593/1487,
  47114. bottom: 32/1625
  47115. }
  47116. },
  47117. side: {
  47118. height: math.unit(9, "feet"),
  47119. weight: math.unit(240, "lb"),
  47120. name: "Side",
  47121. image: {
  47122. source: "./media/characters/kuzco/side.svg",
  47123. extra: 1575/1485,
  47124. bottom: 30/1605
  47125. }
  47126. },
  47127. back: {
  47128. height: math.unit(9, "feet"),
  47129. weight: math.unit(240, "lb"),
  47130. name: "Back",
  47131. image: {
  47132. source: "./media/characters/kuzco/back.svg",
  47133. extra: 1603/1514,
  47134. bottom: 14/1617
  47135. }
  47136. },
  47137. },
  47138. [
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(9, "feet"),
  47142. default: true
  47143. },
  47144. ]
  47145. ))
  47146. characterMakers.push(() => makeCharacter(
  47147. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47148. {
  47149. side: {
  47150. height: math.unit(2, "meters"),
  47151. weight: math.unit(300, "kg"),
  47152. name: "Side",
  47153. image: {
  47154. source: "./media/characters/ceruleus/side.svg",
  47155. extra: 1068/974,
  47156. bottom: 126/1194
  47157. }
  47158. },
  47159. maw: {
  47160. height: math.unit(0.8125, "meter"),
  47161. name: "Maw",
  47162. image: {
  47163. source: "./media/characters/ceruleus/maw.svg"
  47164. }
  47165. },
  47166. },
  47167. [
  47168. {
  47169. name: "Normal",
  47170. height: math.unit(16, "meters"),
  47171. default: true
  47172. },
  47173. ]
  47174. ))
  47175. characterMakers.push(() => makeCharacter(
  47176. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47177. {
  47178. front: {
  47179. height: math.unit(9, "feet"),
  47180. weight: math.unit(500, "kg"),
  47181. name: "Front",
  47182. image: {
  47183. source: "./media/characters/acouya/front.svg",
  47184. extra: 1660/1473,
  47185. bottom: 28/1688
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(9, "feet"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47199. {
  47200. front: {
  47201. height: math.unit(5 + 6/12, "feet"),
  47202. weight: math.unit(195, "lb"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/vant/front.svg",
  47206. extra: 1396/1320,
  47207. bottom: 20/1416
  47208. }
  47209. },
  47210. back: {
  47211. height: math.unit(5 + 6/12, "feet"),
  47212. weight: math.unit(195, "lb"),
  47213. name: "Back",
  47214. image: {
  47215. source: "./media/characters/vant/back.svg",
  47216. extra: 1396/1320,
  47217. bottom: 20/1416
  47218. }
  47219. },
  47220. maw: {
  47221. height: math.unit(0.75, "feet"),
  47222. name: "Maw",
  47223. image: {
  47224. source: "./media/characters/vant/maw.svg"
  47225. }
  47226. },
  47227. paw: {
  47228. height: math.unit(1.07, "feet"),
  47229. name: "Paw",
  47230. image: {
  47231. source: "./media/characters/vant/paw.svg"
  47232. }
  47233. },
  47234. },
  47235. [
  47236. {
  47237. name: "Micro",
  47238. height: math.unit(0.25, "inches")
  47239. },
  47240. {
  47241. name: "Normal",
  47242. height: math.unit(5 + 6/12, "feet"),
  47243. default: true
  47244. },
  47245. {
  47246. name: "Macro",
  47247. height: math.unit(75, "feet")
  47248. },
  47249. ]
  47250. ))
  47251. characterMakers.push(() => makeCharacter(
  47252. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47253. {
  47254. front: {
  47255. height: math.unit(30, "meters"),
  47256. weight: math.unit(363, "tons"),
  47257. name: "Front",
  47258. image: {
  47259. source: "./media/characters/ahra/front.svg",
  47260. extra: 1914/1814,
  47261. bottom: 46/1960
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Macro",
  47268. height: math.unit(30, "meters"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47275. {
  47276. undressed: {
  47277. height: math.unit(2, "m"),
  47278. weight: math.unit(250, "kg"),
  47279. name: "Undressed",
  47280. image: {
  47281. source: "./media/characters/coriander/undressed.svg",
  47282. extra: 1757/1606,
  47283. bottom: 107/1864
  47284. }
  47285. },
  47286. dressed: {
  47287. height: math.unit(2, "m"),
  47288. weight: math.unit(250, "kg"),
  47289. name: "Dressed",
  47290. image: {
  47291. source: "./media/characters/coriander/dressed.svg",
  47292. extra: 1757/1606,
  47293. bottom: 107/1864
  47294. }
  47295. },
  47296. },
  47297. [
  47298. {
  47299. name: "Normal",
  47300. height: math.unit(4, "meters"),
  47301. default: true
  47302. },
  47303. {
  47304. name: "XL",
  47305. height: math.unit(6, "meters")
  47306. },
  47307. {
  47308. name: "XXL",
  47309. height: math.unit(8, "meters")
  47310. },
  47311. ]
  47312. ))
  47313. characterMakers.push(() => makeCharacter(
  47314. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47315. {
  47316. front: {
  47317. height: math.unit(6, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/syrinx/front.svg",
  47321. extra: 1557/1259,
  47322. bottom: 171/1728
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(6 + 3/12, "feet"),
  47330. default: true
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47336. {
  47337. front: {
  47338. height: math.unit(11 + 6/12, "feet"),
  47339. weight: math.unit(1.5, "tons"),
  47340. name: "Front",
  47341. image: {
  47342. source: "./media/characters/bor/front.svg",
  47343. extra: 1189/1109,
  47344. bottom: 170/1359
  47345. }
  47346. },
  47347. },
  47348. [
  47349. {
  47350. name: "Normal",
  47351. height: math.unit(11 + 6/12, "feet"),
  47352. default: true
  47353. },
  47354. {
  47355. name: "Macro",
  47356. height: math.unit(32 + 9/12, "feet")
  47357. },
  47358. ]
  47359. ))
  47360. characterMakers.push(() => makeCharacter(
  47361. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47362. {
  47363. anthro: {
  47364. height: math.unit(9, "feet"),
  47365. weight: math.unit(2076, "lb"),
  47366. name: "Anthro",
  47367. image: {
  47368. source: "./media/characters/abacus/anthro.svg",
  47369. extra: 1540/1494,
  47370. bottom: 233/1773
  47371. }
  47372. },
  47373. pigeon: {
  47374. height: math.unit(1, "feet"),
  47375. name: "Pigeon",
  47376. image: {
  47377. source: "./media/characters/abacus/pigeon.svg",
  47378. extra: 528/525,
  47379. bottom: 46/574
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Normal",
  47386. height: math.unit(9, "feet"),
  47387. default: true
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47393. {
  47394. side: {
  47395. height: math.unit(6, "feet"),
  47396. name: "Side",
  47397. image: {
  47398. source: "./media/characters/delkhan/side.svg",
  47399. extra: 1884/1786,
  47400. bottom: 308/2192
  47401. }
  47402. },
  47403. head: {
  47404. height: math.unit(3.38, "feet"),
  47405. name: "Head",
  47406. image: {
  47407. source: "./media/characters/delkhan/head.svg"
  47408. }
  47409. },
  47410. },
  47411. [
  47412. {
  47413. name: "Normal",
  47414. height: math.unit(72, "feet"),
  47415. default: true
  47416. },
  47417. {
  47418. name: "Giant",
  47419. height: math.unit(172, "feet")
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47425. {
  47426. standing: {
  47427. height: math.unit(6, "feet"),
  47428. name: "Standing",
  47429. image: {
  47430. source: "./media/characters/euchidat/standing.svg",
  47431. extra: 1612/1553,
  47432. bottom: 116/1728
  47433. }
  47434. },
  47435. leaning: {
  47436. height: math.unit(6, "feet"),
  47437. name: "Leaning",
  47438. image: {
  47439. source: "./media/characters/euchidat/leaning.svg",
  47440. extra: 1719/1674,
  47441. bottom: 27/1746
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(175, "feet"),
  47449. default: true
  47450. },
  47451. {
  47452. name: "Megamacro",
  47453. height: math.unit(190, "miles")
  47454. },
  47455. {
  47456. name: "Gigamacro",
  47457. height: math.unit(190000, "miles")
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47463. {
  47464. front: {
  47465. height: math.unit(6, "feet"),
  47466. weight: math.unit(150, "lb"),
  47467. name: "Front",
  47468. image: {
  47469. source: "./media/characters/rebecca-stack/front.svg",
  47470. extra: 1256/1201,
  47471. bottom: 18/1274
  47472. }
  47473. },
  47474. },
  47475. [
  47476. {
  47477. name: "Normal",
  47478. height: math.unit(5 + 8/12, "feet"),
  47479. default: true
  47480. },
  47481. {
  47482. name: "Demolitionist",
  47483. height: math.unit(200, "feet")
  47484. },
  47485. {
  47486. name: "Out of Control",
  47487. height: math.unit(2, "miles")
  47488. },
  47489. {
  47490. name: "Giga",
  47491. height: math.unit(7200, "miles")
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47497. {
  47498. front: {
  47499. height: math.unit(6, "feet"),
  47500. weight: math.unit(150, "lb"),
  47501. name: "Front",
  47502. image: {
  47503. source: "./media/characters/jenny-cartwright/front.svg",
  47504. extra: 1384/1376,
  47505. bottom: 58/1442
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(6 + 7/12, "feet"),
  47513. default: true
  47514. },
  47515. {
  47516. name: "Librarian",
  47517. height: math.unit(55, "feet")
  47518. },
  47519. {
  47520. name: "Sightseer",
  47521. height: math.unit(50, "miles")
  47522. },
  47523. {
  47524. name: "Giga",
  47525. height: math.unit(30000, "miles")
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47531. {
  47532. nude: {
  47533. height: math.unit(8, "feet"),
  47534. weight: math.unit(225, "lb"),
  47535. name: "Nude",
  47536. image: {
  47537. source: "./media/characters/marvy/nude.svg",
  47538. extra: 1900/1683,
  47539. bottom: 89/1989
  47540. }
  47541. },
  47542. dressed: {
  47543. height: math.unit(8, "feet"),
  47544. weight: math.unit(225, "lb"),
  47545. name: "Dressed",
  47546. image: {
  47547. source: "./media/characters/marvy/dressed.svg",
  47548. extra: 1900/1683,
  47549. bottom: 89/1989
  47550. }
  47551. },
  47552. head: {
  47553. height: math.unit(2.85, "feet"),
  47554. name: "Head",
  47555. image: {
  47556. source: "./media/characters/marvy/head.svg"
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Normal",
  47563. height: math.unit(8, "feet"),
  47564. default: true
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(8, "feet"),
  47573. weight: math.unit(250, "lb"),
  47574. name: "Front",
  47575. image: {
  47576. source: "./media/characters/leah/front.svg",
  47577. extra: 1257/1149,
  47578. bottom: 109/1366
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(8, "feet"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Minimacro",
  47590. height: math.unit(40, "feet")
  47591. },
  47592. {
  47593. name: "Macro",
  47594. height: math.unit(124, "feet")
  47595. },
  47596. {
  47597. name: "Megamacro",
  47598. height: math.unit(850, "feet")
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47604. {
  47605. side: {
  47606. height: math.unit(13 + 6/12, "feet"),
  47607. weight: math.unit(3200, "lb"),
  47608. name: "Side",
  47609. image: {
  47610. source: "./media/characters/alvir/side.svg",
  47611. extra: 896/589,
  47612. bottom: 26/922
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(13 + 6/12, "feet"),
  47620. default: true
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47626. {
  47627. front: {
  47628. height: math.unit(5 + 4/12, "feet"),
  47629. weight: math.unit(236, "lb"),
  47630. name: "Front",
  47631. image: {
  47632. source: "./media/characters/zaina-khalil/front.svg",
  47633. extra: 1533/1485,
  47634. bottom: 94/1627
  47635. }
  47636. },
  47637. side: {
  47638. height: math.unit(5 + 4/12, "feet"),
  47639. weight: math.unit(236, "lb"),
  47640. name: "Side",
  47641. image: {
  47642. source: "./media/characters/zaina-khalil/side.svg",
  47643. extra: 1537/1498,
  47644. bottom: 66/1603
  47645. }
  47646. },
  47647. back: {
  47648. height: math.unit(5 + 4/12, "feet"),
  47649. weight: math.unit(236, "lb"),
  47650. name: "Back",
  47651. image: {
  47652. source: "./media/characters/zaina-khalil/back.svg",
  47653. extra: 1546/1494,
  47654. bottom: 89/1635
  47655. }
  47656. },
  47657. },
  47658. [
  47659. {
  47660. name: "Normal",
  47661. height: math.unit(5 + 4/12, "feet"),
  47662. default: true
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47668. {
  47669. side: {
  47670. height: math.unit(12, "feet"),
  47671. weight: math.unit(4000, "lb"),
  47672. name: "Side",
  47673. image: {
  47674. source: "./media/characters/terry/side.svg",
  47675. extra: 1518/1439,
  47676. bottom: 149/1667
  47677. }
  47678. },
  47679. },
  47680. [
  47681. {
  47682. name: "Normal",
  47683. height: math.unit(12, "feet"),
  47684. default: true
  47685. },
  47686. ]
  47687. ))
  47688. characterMakers.push(() => makeCharacter(
  47689. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47690. {
  47691. front: {
  47692. height: math.unit(12, "feet"),
  47693. weight: math.unit(1500, "lb"),
  47694. name: "Front",
  47695. image: {
  47696. source: "./media/characters/kahea/front.svg",
  47697. extra: 1722/1617,
  47698. bottom: 179/1901
  47699. }
  47700. },
  47701. },
  47702. [
  47703. {
  47704. name: "Normal",
  47705. height: math.unit(12, "feet"),
  47706. default: true
  47707. },
  47708. ]
  47709. ))
  47710. characterMakers.push(() => makeCharacter(
  47711. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47712. {
  47713. demonFront: {
  47714. height: math.unit(36, "feet"),
  47715. name: "Front",
  47716. image: {
  47717. source: "./media/characters/alex-xuria/demon-front.svg",
  47718. extra: 1705/1673,
  47719. bottom: 198/1903
  47720. },
  47721. form: "demon",
  47722. default: true
  47723. },
  47724. demonBack: {
  47725. height: math.unit(36, "feet"),
  47726. name: "Back",
  47727. image: {
  47728. source: "./media/characters/alex-xuria/demon-back.svg",
  47729. extra: 1725/1693,
  47730. bottom: 70/1795
  47731. },
  47732. form: "demon"
  47733. },
  47734. demonHead: {
  47735. height: math.unit(2.14, "meters"),
  47736. name: "Head",
  47737. image: {
  47738. source: "./media/characters/alex-xuria/demon-head.svg"
  47739. },
  47740. form: "demon"
  47741. },
  47742. demonHand: {
  47743. height: math.unit(1.61, "meters"),
  47744. name: "Hand",
  47745. image: {
  47746. source: "./media/characters/alex-xuria/demon-hand.svg"
  47747. },
  47748. form: "demon"
  47749. },
  47750. demonPaw: {
  47751. height: math.unit(1.35, "meters"),
  47752. name: "Paw",
  47753. image: {
  47754. source: "./media/characters/alex-xuria/demon-paw.svg"
  47755. },
  47756. form: "demon"
  47757. },
  47758. demonFoot: {
  47759. height: math.unit(2.2, "meters"),
  47760. name: "Foot",
  47761. image: {
  47762. source: "./media/characters/alex-xuria/demon-foot.svg"
  47763. },
  47764. form: "demon"
  47765. },
  47766. demonCock: {
  47767. height: math.unit(1.74, "meters"),
  47768. name: "Cock",
  47769. image: {
  47770. source: "./media/characters/alex-xuria/demon-cock.svg"
  47771. },
  47772. form: "demon"
  47773. },
  47774. demonTailClosed: {
  47775. height: math.unit(1.47, "meters"),
  47776. name: "Tail (Closed)",
  47777. image: {
  47778. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47779. },
  47780. form: "demon"
  47781. },
  47782. demonTailOpen: {
  47783. height: math.unit(2.85, "meters"),
  47784. name: "Tail (Open)",
  47785. image: {
  47786. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47787. },
  47788. form: "demon"
  47789. },
  47790. incubusFront: {
  47791. height: math.unit(12, "feet"),
  47792. name: "Front",
  47793. image: {
  47794. source: "./media/characters/alex-xuria/incubus-front.svg",
  47795. extra: 1754/1677,
  47796. bottom: 125/1879
  47797. },
  47798. form: "incubus",
  47799. default: true
  47800. },
  47801. incubusBack: {
  47802. height: math.unit(12, "feet"),
  47803. name: "Back",
  47804. image: {
  47805. source: "./media/characters/alex-xuria/incubus-back.svg",
  47806. extra: 1702/1647,
  47807. bottom: 30/1732
  47808. },
  47809. form: "incubus"
  47810. },
  47811. incubusHead: {
  47812. height: math.unit(3.45, "feet"),
  47813. name: "Head",
  47814. image: {
  47815. source: "./media/characters/alex-xuria/incubus-head.svg"
  47816. },
  47817. form: "incubus"
  47818. },
  47819. rabbitFront: {
  47820. height: math.unit(6, "feet"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47824. extra: 1369/1349,
  47825. bottom: 45/1414
  47826. },
  47827. form: "rabbit",
  47828. default: true
  47829. },
  47830. rabbitSide: {
  47831. height: math.unit(6, "feet"),
  47832. name: "Side",
  47833. image: {
  47834. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47835. extra: 1370/1356,
  47836. bottom: 37/1407
  47837. },
  47838. form: "rabbit"
  47839. },
  47840. rabbitBack: {
  47841. height: math.unit(6, "feet"),
  47842. name: "Back",
  47843. image: {
  47844. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47845. extra: 1375/1358,
  47846. bottom: 43/1418
  47847. },
  47848. form: "rabbit"
  47849. },
  47850. },
  47851. [
  47852. {
  47853. name: "Normal",
  47854. height: math.unit(6, "feet"),
  47855. default: true,
  47856. form: "rabbit"
  47857. },
  47858. {
  47859. name: "Incubus",
  47860. height: math.unit(12, "feet"),
  47861. default: true,
  47862. form: "incubus"
  47863. },
  47864. {
  47865. name: "Demon",
  47866. height: math.unit(36, "feet"),
  47867. default: true,
  47868. form: "demon"
  47869. }
  47870. ],
  47871. {
  47872. "demon": {
  47873. name: "Demon",
  47874. default: true
  47875. },
  47876. "incubus": {
  47877. name: "Incubus",
  47878. },
  47879. "rabbit": {
  47880. name: "Rabbit"
  47881. }
  47882. }
  47883. ))
  47884. characterMakers.push(() => makeCharacter(
  47885. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47886. {
  47887. front: {
  47888. height: math.unit(7 + 5/12, "feet"),
  47889. weight: math.unit(510, "lb"),
  47890. name: "Front",
  47891. image: {
  47892. source: "./media/characters/syrup/front.svg",
  47893. extra: 932/916,
  47894. bottom: 26/958
  47895. }
  47896. },
  47897. },
  47898. [
  47899. {
  47900. name: "Normal",
  47901. height: math.unit(7 + 5/12, "feet"),
  47902. default: true
  47903. },
  47904. {
  47905. name: "Big",
  47906. height: math.unit(50, "feet")
  47907. },
  47908. {
  47909. name: "Macro",
  47910. height: math.unit(300, "feet")
  47911. },
  47912. {
  47913. name: "Megamacro",
  47914. height: math.unit(1, "mile")
  47915. },
  47916. ]
  47917. ))
  47918. characterMakers.push(() => makeCharacter(
  47919. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47920. {
  47921. front: {
  47922. height: math.unit(6 + 9/12, "feet"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/zeimne/front.svg",
  47926. extra: 1969/1806,
  47927. bottom: 53/2022
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(6 + 9/12, "feet"),
  47935. default: true
  47936. },
  47937. {
  47938. name: "Giant",
  47939. height: math.unit(550, "feet")
  47940. },
  47941. {
  47942. name: "Mega",
  47943. height: math.unit(3, "miles")
  47944. },
  47945. {
  47946. name: "Giga",
  47947. height: math.unit(250, "miles")
  47948. },
  47949. {
  47950. name: "Tera",
  47951. height: math.unit(1, "AU")
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(5 + 2/12, "feet"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/grar/front.svg",
  47963. extra: 1331/1119,
  47964. bottom: 60/1391
  47965. }
  47966. },
  47967. back: {
  47968. height: math.unit(5 + 2/12, "feet"),
  47969. name: "Back",
  47970. image: {
  47971. source: "./media/characters/grar/back.svg",
  47972. extra: 1385/1169,
  47973. bottom: 23/1408
  47974. }
  47975. },
  47976. },
  47977. [
  47978. {
  47979. name: "Normal",
  47980. height: math.unit(5 + 2/12, "feet"),
  47981. default: true
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47987. {
  47988. front: {
  47989. height: math.unit(13 + 7/12, "feet"),
  47990. weight: math.unit(2200, "lb"),
  47991. name: "Front",
  47992. image: {
  47993. source: "./media/characters/endraya/front.svg",
  47994. extra: 1289/1215,
  47995. bottom: 50/1339
  47996. }
  47997. },
  47998. nude: {
  47999. height: math.unit(13 + 7/12, "feet"),
  48000. weight: math.unit(2200, "lb"),
  48001. name: "Nude",
  48002. image: {
  48003. source: "./media/characters/endraya/nude.svg",
  48004. extra: 1247/1171,
  48005. bottom: 40/1287
  48006. }
  48007. },
  48008. head: {
  48009. height: math.unit(2.6, "feet"),
  48010. name: "Head",
  48011. image: {
  48012. source: "./media/characters/endraya/head.svg"
  48013. }
  48014. },
  48015. slit: {
  48016. height: math.unit(3.4, "feet"),
  48017. name: "Slit",
  48018. image: {
  48019. source: "./media/characters/endraya/slit.svg"
  48020. }
  48021. },
  48022. },
  48023. [
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(13 + 7/12, "feet"),
  48027. default: true
  48028. },
  48029. {
  48030. name: "Macro",
  48031. height: math.unit(200, "feet")
  48032. },
  48033. ]
  48034. ))
  48035. characterMakers.push(() => makeCharacter(
  48036. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48037. {
  48038. front: {
  48039. height: math.unit(1.81, "meters"),
  48040. weight: math.unit(69, "kg"),
  48041. name: "Front",
  48042. image: {
  48043. source: "./media/characters/rodryana/front.svg",
  48044. extra: 2002/1921,
  48045. bottom: 53/2055
  48046. }
  48047. },
  48048. back: {
  48049. height: math.unit(1.81, "meters"),
  48050. weight: math.unit(69, "kg"),
  48051. name: "Back",
  48052. image: {
  48053. source: "./media/characters/rodryana/back.svg",
  48054. extra: 1993/1926,
  48055. bottom: 48/2041
  48056. }
  48057. },
  48058. maw: {
  48059. height: math.unit(0.19769417475, "meters"),
  48060. name: "Maw",
  48061. image: {
  48062. source: "./media/characters/rodryana/maw.svg"
  48063. }
  48064. },
  48065. slit: {
  48066. height: math.unit(0.31631067961, "meters"),
  48067. name: "Slit",
  48068. image: {
  48069. source: "./media/characters/rodryana/slit.svg"
  48070. }
  48071. },
  48072. },
  48073. [
  48074. {
  48075. name: "Normal",
  48076. height: math.unit(1.81, "meters")
  48077. },
  48078. {
  48079. name: "Mini Macro",
  48080. height: math.unit(181, "meters")
  48081. },
  48082. {
  48083. name: "Macro",
  48084. height: math.unit(452, "meters"),
  48085. default: true
  48086. },
  48087. {
  48088. name: "Mega Macro",
  48089. height: math.unit(1.375, "km")
  48090. },
  48091. {
  48092. name: "Giga Macro",
  48093. height: math.unit(13.575, "km")
  48094. },
  48095. ]
  48096. ))
  48097. characterMakers.push(() => makeCharacter(
  48098. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48099. {
  48100. front: {
  48101. height: math.unit(6, "feet"),
  48102. weight: math.unit(1000, "lb"),
  48103. name: "Front",
  48104. image: {
  48105. source: "./media/characters/asaya/front.svg",
  48106. extra: 1460/1200,
  48107. bottom: 71/1531
  48108. }
  48109. },
  48110. },
  48111. [
  48112. {
  48113. name: "Normal",
  48114. height: math.unit(8, "km"),
  48115. default: true
  48116. },
  48117. ]
  48118. ))
  48119. characterMakers.push(() => makeCharacter(
  48120. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48121. {
  48122. front: {
  48123. height: math.unit(3.5, "meters"),
  48124. name: "Front",
  48125. image: {
  48126. source: "./media/characters/sarzu-and-israz/front.svg",
  48127. extra: 1570/1558,
  48128. bottom: 150/1720
  48129. },
  48130. },
  48131. back: {
  48132. height: math.unit(3.5, "meters"),
  48133. name: "Back",
  48134. image: {
  48135. source: "./media/characters/sarzu-and-israz/back.svg",
  48136. extra: 1523/1509,
  48137. bottom: 132/1655
  48138. },
  48139. },
  48140. frontFemale: {
  48141. height: math.unit(3.5, "meters"),
  48142. name: "Front (Female)",
  48143. image: {
  48144. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48145. extra: 1570/1558,
  48146. bottom: 150/1720
  48147. },
  48148. },
  48149. frontHerm: {
  48150. height: math.unit(3.5, "meters"),
  48151. name: "Front (Herm)",
  48152. image: {
  48153. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48154. extra: 1570/1558,
  48155. bottom: 150/1720
  48156. },
  48157. },
  48158. },
  48159. [
  48160. {
  48161. name: "Normal",
  48162. height: math.unit(3.5, "meters"),
  48163. default: true,
  48164. },
  48165. {
  48166. name: "Macro",
  48167. height: math.unit(65.5, "meters"),
  48168. },
  48169. ],
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48173. {
  48174. front: {
  48175. height: math.unit(6, "feet"),
  48176. weight: math.unit(250, "lb"),
  48177. name: "Front",
  48178. image: {
  48179. source: "./media/characters/zenimma/front.svg",
  48180. extra: 1346/1320,
  48181. bottom: 58/1404
  48182. }
  48183. },
  48184. back: {
  48185. height: math.unit(6, "feet"),
  48186. weight: math.unit(250, "lb"),
  48187. name: "Back",
  48188. image: {
  48189. source: "./media/characters/zenimma/back.svg",
  48190. extra: 1324/1308,
  48191. bottom: 44/1368
  48192. }
  48193. },
  48194. dick: {
  48195. height: math.unit(1.44, "feet"),
  48196. name: "Dick",
  48197. image: {
  48198. source: "./media/characters/zenimma/dick.svg"
  48199. }
  48200. },
  48201. },
  48202. [
  48203. {
  48204. name: "Canon Height",
  48205. height: math.unit(66, "miles"),
  48206. default: true
  48207. },
  48208. ]
  48209. ))
  48210. characterMakers.push(() => makeCharacter(
  48211. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48212. {
  48213. nude: {
  48214. height: math.unit(6, "feet"),
  48215. weight: math.unit(150, "lb"),
  48216. name: "Nude",
  48217. image: {
  48218. source: "./media/characters/shavon/nude.svg",
  48219. extra: 1242/1096,
  48220. bottom: 98/1340
  48221. }
  48222. },
  48223. dressed: {
  48224. height: math.unit(6, "feet"),
  48225. weight: math.unit(150, "lb"),
  48226. name: "Dressed",
  48227. image: {
  48228. source: "./media/characters/shavon/dressed.svg",
  48229. extra: 1242/1096,
  48230. bottom: 98/1340
  48231. }
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Macro",
  48237. height: math.unit(255, "feet"),
  48238. default: true
  48239. },
  48240. ]
  48241. ))
  48242. characterMakers.push(() => makeCharacter(
  48243. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48244. {
  48245. front: {
  48246. height: math.unit(6, "feet"),
  48247. name: "Front",
  48248. image: {
  48249. source: "./media/characters/steph/front.svg",
  48250. extra: 1430/1330,
  48251. bottom: 54/1484
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(6, "feet"),
  48259. default: true
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48265. {
  48266. front: {
  48267. height: math.unit(9, "feet"),
  48268. weight: math.unit(400, "lb"),
  48269. name: "Front",
  48270. image: {
  48271. source: "./media/characters/kil'aman/front.svg",
  48272. extra: 1210/1159,
  48273. bottom: 109/1319
  48274. }
  48275. },
  48276. head: {
  48277. height: math.unit(2.14, "feet"),
  48278. name: "Head",
  48279. image: {
  48280. source: "./media/characters/kil'aman/head.svg"
  48281. }
  48282. },
  48283. maw: {
  48284. height: math.unit(1.21, "feet"),
  48285. name: "Maw",
  48286. image: {
  48287. source: "./media/characters/kil'aman/maw.svg"
  48288. }
  48289. },
  48290. foot: {
  48291. height: math.unit(1.7, "feet"),
  48292. name: "Foot",
  48293. image: {
  48294. source: "./media/characters/kil'aman/foot.svg"
  48295. }
  48296. },
  48297. dick: {
  48298. height: math.unit(2.1, "feet"),
  48299. name: "Dick",
  48300. image: {
  48301. source: "./media/characters/kil'aman/dick.svg"
  48302. }
  48303. },
  48304. },
  48305. [
  48306. {
  48307. name: "Normal",
  48308. height: math.unit(9, "feet")
  48309. },
  48310. {
  48311. name: "Canon Height",
  48312. height: math.unit(10, "miles"),
  48313. default: true
  48314. },
  48315. {
  48316. name: "Maximum",
  48317. height: math.unit(6e9, "miles")
  48318. },
  48319. ]
  48320. ))
  48321. characterMakers.push(() => makeCharacter(
  48322. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48323. {
  48324. front: {
  48325. height: math.unit(90, "feet"),
  48326. weight: math.unit(675000, "lb"),
  48327. name: "Front",
  48328. image: {
  48329. source: "./media/characters/qadan/front.svg",
  48330. extra: 1012/1004,
  48331. bottom: 78/1090
  48332. }
  48333. },
  48334. back: {
  48335. height: math.unit(90, "feet"),
  48336. weight: math.unit(675000, "lb"),
  48337. name: "Back",
  48338. image: {
  48339. source: "./media/characters/qadan/back.svg",
  48340. extra: 1042/1031,
  48341. bottom: 55/1097
  48342. }
  48343. },
  48344. armored: {
  48345. height: math.unit(90, "feet"),
  48346. weight: math.unit(675000, "lb"),
  48347. name: "Armored",
  48348. image: {
  48349. source: "./media/characters/qadan/armored.svg",
  48350. extra: 1047/1037,
  48351. bottom: 48/1095
  48352. }
  48353. },
  48354. },
  48355. [
  48356. {
  48357. name: "Normal",
  48358. height: math.unit(90, "feet"),
  48359. default: true
  48360. },
  48361. ]
  48362. ))
  48363. characterMakers.push(() => makeCharacter(
  48364. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48365. {
  48366. front: {
  48367. height: math.unit(6, "feet"),
  48368. weight: math.unit(225, "lb"),
  48369. name: "Front",
  48370. image: {
  48371. source: "./media/characters/brooke/front.svg",
  48372. extra: 1050/1010,
  48373. bottom: 66/1116
  48374. }
  48375. },
  48376. back: {
  48377. height: math.unit(6, "feet"),
  48378. weight: math.unit(225, "lb"),
  48379. name: "Back",
  48380. image: {
  48381. source: "./media/characters/brooke/back.svg",
  48382. extra: 1053/1013,
  48383. bottom: 41/1094
  48384. }
  48385. },
  48386. dressed: {
  48387. height: math.unit(6, "feet"),
  48388. weight: math.unit(225, "lb"),
  48389. name: "Dressed",
  48390. image: {
  48391. source: "./media/characters/brooke/dressed.svg",
  48392. extra: 1050/1010,
  48393. bottom: 66/1116
  48394. }
  48395. },
  48396. },
  48397. [
  48398. {
  48399. name: "Canon Height",
  48400. height: math.unit(500, "miles"),
  48401. default: true
  48402. },
  48403. ]
  48404. ))
  48405. characterMakers.push(() => makeCharacter(
  48406. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48407. {
  48408. front: {
  48409. height: math.unit(6 + 2/12, "feet"),
  48410. weight: math.unit(210, "lb"),
  48411. name: "Front",
  48412. image: {
  48413. source: "./media/characters/wubs/front.svg",
  48414. extra: 1345/1325,
  48415. bottom: 70/1415
  48416. }
  48417. },
  48418. back: {
  48419. height: math.unit(6 + 2/12, "feet"),
  48420. weight: math.unit(210, "lb"),
  48421. name: "Back",
  48422. image: {
  48423. source: "./media/characters/wubs/back.svg",
  48424. extra: 1296/1275,
  48425. bottom: 58/1354
  48426. }
  48427. },
  48428. },
  48429. [
  48430. {
  48431. name: "Normal",
  48432. height: math.unit(6 + 2/12, "feet"),
  48433. default: true
  48434. },
  48435. {
  48436. name: "Macro",
  48437. height: math.unit(1000, "feet")
  48438. },
  48439. {
  48440. name: "Megamacro",
  48441. height: math.unit(1, "mile")
  48442. },
  48443. ]
  48444. ))
  48445. characterMakers.push(() => makeCharacter(
  48446. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48447. {
  48448. front: {
  48449. height: math.unit(4, "feet"),
  48450. weight: math.unit(120, "lb"),
  48451. name: "Front",
  48452. image: {
  48453. source: "./media/characters/blue/front.svg",
  48454. extra: 1636/1525,
  48455. bottom: 43/1679
  48456. }
  48457. },
  48458. back: {
  48459. height: math.unit(4, "feet"),
  48460. weight: math.unit(120, "lb"),
  48461. name: "Back",
  48462. image: {
  48463. source: "./media/characters/blue/back.svg",
  48464. extra: 1660/1560,
  48465. bottom: 57/1717
  48466. }
  48467. },
  48468. paws: {
  48469. height: math.unit(0.826, "feet"),
  48470. name: "Paws",
  48471. image: {
  48472. source: "./media/characters/blue/paws.svg"
  48473. }
  48474. },
  48475. },
  48476. [
  48477. {
  48478. name: "Micro",
  48479. height: math.unit(3, "inches")
  48480. },
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(4, "feet"),
  48484. default: true
  48485. },
  48486. {
  48487. name: "Femenine Form",
  48488. height: math.unit(14, "feet")
  48489. },
  48490. {
  48491. name: "Werebat Form",
  48492. height: math.unit(18, "feet")
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48498. {
  48499. female: {
  48500. height: math.unit(7 + 4/12, "feet"),
  48501. weight: math.unit(243, "lb"),
  48502. name: "Female",
  48503. image: {
  48504. source: "./media/characters/kaya/female.svg",
  48505. extra: 975/898,
  48506. bottom: 34/1009
  48507. }
  48508. },
  48509. herm: {
  48510. height: math.unit(7 + 4/12, "feet"),
  48511. weight: math.unit(243, "lb"),
  48512. name: "Herm",
  48513. image: {
  48514. source: "./media/characters/kaya/herm.svg",
  48515. extra: 975/898,
  48516. bottom: 34/1009
  48517. }
  48518. },
  48519. },
  48520. [
  48521. {
  48522. name: "Normal",
  48523. height: math.unit(7 + 4/12, "feet"),
  48524. default: true
  48525. },
  48526. ]
  48527. ))
  48528. characterMakers.push(() => makeCharacter(
  48529. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48530. {
  48531. female: {
  48532. height: math.unit(9 + 4/12, "feet"),
  48533. weight: math.unit(398, "lb"),
  48534. name: "Female",
  48535. image: {
  48536. source: "./media/characters/kassandra/female.svg",
  48537. extra: 908/839,
  48538. bottom: 61/969
  48539. }
  48540. },
  48541. intersex: {
  48542. height: math.unit(9 + 4/12, "feet"),
  48543. weight: math.unit(398, "lb"),
  48544. name: "Intersex",
  48545. image: {
  48546. source: "./media/characters/kassandra/intersex.svg",
  48547. extra: 908/839,
  48548. bottom: 61/969
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Normal",
  48555. height: math.unit(9 + 4/12, "feet"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48562. {
  48563. front: {
  48564. height: math.unit(3, "meters"),
  48565. name: "Front",
  48566. image: {
  48567. source: "./media/characters/amy/front.svg",
  48568. extra: 1380/1343,
  48569. bottom: 70/1450
  48570. }
  48571. },
  48572. back: {
  48573. height: math.unit(3, "meters"),
  48574. name: "Back",
  48575. image: {
  48576. source: "./media/characters/amy/back.svg",
  48577. extra: 1380/1347,
  48578. bottom: 66/1446
  48579. }
  48580. },
  48581. },
  48582. [
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(3, "meters"),
  48586. default: true
  48587. },
  48588. ]
  48589. ))
  48590. characterMakers.push(() => makeCharacter(
  48591. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48592. {
  48593. side: {
  48594. height: math.unit(47, "cm"),
  48595. weight: math.unit(10.8, "kg"),
  48596. name: "Side",
  48597. image: {
  48598. source: "./media/characters/alphaschakal/side.svg",
  48599. extra: 1058/568,
  48600. bottom: 62/1120
  48601. }
  48602. },
  48603. back: {
  48604. height: math.unit(78, "cm"),
  48605. weight: math.unit(10.8, "kg"),
  48606. name: "Back",
  48607. image: {
  48608. source: "./media/characters/alphaschakal/back.svg",
  48609. extra: 1102/942,
  48610. bottom: 185/1287
  48611. }
  48612. },
  48613. head: {
  48614. height: math.unit(28, "cm"),
  48615. name: "Head",
  48616. image: {
  48617. source: "./media/characters/alphaschakal/head.svg",
  48618. extra: 696/508,
  48619. bottom: 0/696
  48620. }
  48621. },
  48622. paw: {
  48623. height: math.unit(16, "cm"),
  48624. name: "Paw",
  48625. image: {
  48626. source: "./media/characters/alphaschakal/paw.svg"
  48627. }
  48628. },
  48629. },
  48630. [
  48631. {
  48632. name: "Normal",
  48633. height: math.unit(47, "cm"),
  48634. default: true
  48635. },
  48636. {
  48637. name: "Macro",
  48638. height: math.unit(340, "cm")
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48644. {
  48645. front: {
  48646. height: math.unit(36, "earths"),
  48647. name: "Front",
  48648. image: {
  48649. source: "./media/characters/ecobyss/front.svg",
  48650. extra: 1282/1215,
  48651. bottom: 11/1293
  48652. }
  48653. },
  48654. back: {
  48655. height: math.unit(36, "earths"),
  48656. name: "Back",
  48657. image: {
  48658. source: "./media/characters/ecobyss/back.svg",
  48659. extra: 1291/1222,
  48660. bottom: 8/1299
  48661. }
  48662. },
  48663. },
  48664. [
  48665. {
  48666. name: "Normal",
  48667. height: math.unit(36, "earths"),
  48668. default: true
  48669. },
  48670. ]
  48671. ))
  48672. characterMakers.push(() => makeCharacter(
  48673. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48674. {
  48675. front: {
  48676. height: math.unit(12, "feet"),
  48677. name: "Front",
  48678. image: {
  48679. source: "./media/characters/vasuk/front.svg",
  48680. extra: 1326/1207,
  48681. bottom: 64/1390
  48682. }
  48683. },
  48684. },
  48685. [
  48686. {
  48687. name: "Normal",
  48688. height: math.unit(12, "feet"),
  48689. default: true
  48690. },
  48691. ]
  48692. ))
  48693. characterMakers.push(() => makeCharacter(
  48694. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48695. {
  48696. side: {
  48697. height: math.unit(100, "feet"),
  48698. name: "Side",
  48699. image: {
  48700. source: "./media/characters/linneaus/side.svg",
  48701. extra: 987/807,
  48702. bottom: 47/1034
  48703. }
  48704. },
  48705. },
  48706. [
  48707. {
  48708. name: "Macro",
  48709. height: math.unit(100, "feet"),
  48710. default: true
  48711. },
  48712. ]
  48713. ))
  48714. characterMakers.push(() => makeCharacter(
  48715. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48716. {
  48717. front: {
  48718. height: math.unit(8, "feet"),
  48719. weight: math.unit(1200, "lb"),
  48720. name: "Front",
  48721. image: {
  48722. source: "./media/characters/nyterious-daligdig/front.svg",
  48723. extra: 1284/1094,
  48724. bottom: 84/1368
  48725. }
  48726. },
  48727. back: {
  48728. height: math.unit(8, "feet"),
  48729. weight: math.unit(1200, "lb"),
  48730. name: "Back",
  48731. image: {
  48732. source: "./media/characters/nyterious-daligdig/back.svg",
  48733. extra: 1301/1121,
  48734. bottom: 129/1430
  48735. }
  48736. },
  48737. mouth: {
  48738. height: math.unit(1.464, "feet"),
  48739. name: "Mouth",
  48740. image: {
  48741. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48742. }
  48743. },
  48744. },
  48745. [
  48746. {
  48747. name: "Small",
  48748. height: math.unit(8, "feet"),
  48749. default: true
  48750. },
  48751. {
  48752. name: "Normal",
  48753. height: math.unit(15, "feet")
  48754. },
  48755. {
  48756. name: "Macro",
  48757. height: math.unit(90, "feet")
  48758. },
  48759. ]
  48760. ))
  48761. characterMakers.push(() => makeCharacter(
  48762. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48763. {
  48764. front: {
  48765. height: math.unit(7 + 4/12, "feet"),
  48766. weight: math.unit(252, "lb"),
  48767. name: "Front",
  48768. image: {
  48769. source: "./media/characters/bandel/front.svg",
  48770. extra: 1946/1775,
  48771. bottom: 26/1972
  48772. }
  48773. },
  48774. back: {
  48775. height: math.unit(7 + 4/12, "feet"),
  48776. weight: math.unit(252, "lb"),
  48777. name: "Back",
  48778. image: {
  48779. source: "./media/characters/bandel/back.svg",
  48780. extra: 1940/1770,
  48781. bottom: 25/1965
  48782. }
  48783. },
  48784. maw: {
  48785. height: math.unit(2.15, "feet"),
  48786. name: "Maw",
  48787. image: {
  48788. source: "./media/characters/bandel/maw.svg"
  48789. }
  48790. },
  48791. stomach: {
  48792. height: math.unit(1.95, "feet"),
  48793. name: "Stomach",
  48794. image: {
  48795. source: "./media/characters/bandel/stomach.svg"
  48796. }
  48797. },
  48798. },
  48799. [
  48800. {
  48801. name: "Normal",
  48802. height: math.unit(7 + 4/12, "feet"),
  48803. default: true
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48809. {
  48810. front: {
  48811. height: math.unit(10 + 5/12, "feet"),
  48812. weight: math.unit(773.5, "kg"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/zed/front.svg",
  48816. extra: 987/941,
  48817. bottom: 52/1039
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Short",
  48824. height: math.unit(5 + 4/12, "feet")
  48825. },
  48826. {
  48827. name: "Average",
  48828. height: math.unit(10 + 5/12, "feet"),
  48829. default: true
  48830. },
  48831. {
  48832. name: "Mini-Macro",
  48833. height: math.unit(24 + 9/12, "feet")
  48834. },
  48835. {
  48836. name: "Macro",
  48837. height: math.unit(249, "feet")
  48838. },
  48839. {
  48840. name: "Mega-Macro",
  48841. height: math.unit(12490, "feet")
  48842. },
  48843. {
  48844. name: "Giga-Macro",
  48845. height: math.unit(24.9, "miles")
  48846. },
  48847. {
  48848. name: "Tera-Macro",
  48849. height: math.unit(24900, "miles")
  48850. },
  48851. {
  48852. name: "Cosmic Scale",
  48853. height: math.unit(38.9, "lightyears")
  48854. },
  48855. {
  48856. name: "Universal Scale",
  48857. height: math.unit(138e12, "lightyears")
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48863. {
  48864. front: {
  48865. height: math.unit(1561, "inches"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/ivan/front.svg",
  48869. extra: 1126/1071,
  48870. bottom: 26/1152
  48871. }
  48872. },
  48873. back: {
  48874. height: math.unit(1561, "inches"),
  48875. name: "Back",
  48876. image: {
  48877. source: "./media/characters/ivan/back.svg",
  48878. extra: 1134/1079,
  48879. bottom: 30/1164
  48880. }
  48881. },
  48882. },
  48883. [
  48884. {
  48885. name: "Normal",
  48886. height: math.unit(1561, "inches"),
  48887. default: true
  48888. },
  48889. ]
  48890. ))
  48891. characterMakers.push(() => makeCharacter(
  48892. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48893. {
  48894. front: {
  48895. height: math.unit(5 + 7/12, "feet"),
  48896. weight: math.unit(150, "lb"),
  48897. name: "Front",
  48898. image: {
  48899. source: "./media/characters/robin-arctic-hare/front.svg",
  48900. extra: 1148/974,
  48901. bottom: 20/1168
  48902. }
  48903. },
  48904. },
  48905. [
  48906. {
  48907. name: "Normal",
  48908. height: math.unit(5 + 7/12, "feet"),
  48909. default: true
  48910. },
  48911. ]
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48915. {
  48916. side: {
  48917. height: math.unit(5, "feet"),
  48918. name: "Side",
  48919. image: {
  48920. source: "./media/characters/birch/side.svg",
  48921. extra: 985/796,
  48922. bottom: 111/1096
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(5, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48936. {
  48937. front: {
  48938. height: math.unit(4, "feet"),
  48939. name: "Front",
  48940. image: {
  48941. source: "./media/characters/rasp/front.svg",
  48942. extra: 561/478,
  48943. bottom: 74/635
  48944. }
  48945. },
  48946. },
  48947. [
  48948. {
  48949. name: "Normal",
  48950. height: math.unit(4, "feet"),
  48951. default: true
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(4 + 6/12, "feet"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/agatha/front.svg",
  48963. extra: 947/933,
  48964. bottom: 42/989
  48965. }
  48966. },
  48967. back: {
  48968. height: math.unit(4 + 6/12, "feet"),
  48969. name: "Back",
  48970. image: {
  48971. source: "./media/characters/agatha/back.svg",
  48972. extra: 935/922,
  48973. bottom: 48/983
  48974. }
  48975. },
  48976. },
  48977. [
  48978. {
  48979. name: "Normal",
  48980. height: math.unit(4 + 6 /12, "feet"),
  48981. default: true
  48982. },
  48983. {
  48984. name: "Max Size",
  48985. height: math.unit(500, "feet")
  48986. },
  48987. ]
  48988. ))
  48989. characterMakers.push(() => makeCharacter(
  48990. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48991. {
  48992. side: {
  48993. height: math.unit(30, "feet"),
  48994. name: "Side",
  48995. image: {
  48996. source: "./media/characters/roggy/side.svg",
  48997. extra: 909/643,
  48998. bottom: 63/972
  48999. }
  49000. },
  49001. lounging: {
  49002. height: math.unit(20, "feet"),
  49003. name: "Lounging",
  49004. image: {
  49005. source: "./media/characters/roggy/lounging.svg",
  49006. extra: 643/479,
  49007. bottom: 145/788
  49008. }
  49009. },
  49010. handpaw: {
  49011. height: math.unit(13.1, "feet"),
  49012. name: "Handpaw",
  49013. image: {
  49014. source: "./media/characters/roggy/handpaw.svg"
  49015. }
  49016. },
  49017. footpaw: {
  49018. height: math.unit(15.8, "feet"),
  49019. name: "Footpaw",
  49020. image: {
  49021. source: "./media/characters/roggy/footpaw.svg"
  49022. }
  49023. },
  49024. },
  49025. [
  49026. {
  49027. name: "Menacing",
  49028. height: math.unit(30, "feet"),
  49029. default: true
  49030. },
  49031. ]
  49032. ))
  49033. characterMakers.push(() => makeCharacter(
  49034. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49035. {
  49036. front: {
  49037. height: math.unit(5 + 7/12, "feet"),
  49038. weight: math.unit(135, "lb"),
  49039. name: "Front",
  49040. image: {
  49041. source: "./media/characters/naomi/front.svg",
  49042. extra: 1209/1154,
  49043. bottom: 129/1338
  49044. }
  49045. },
  49046. back: {
  49047. height: math.unit(5 + 7/12, "feet"),
  49048. weight: math.unit(135, "lb"),
  49049. name: "Back",
  49050. image: {
  49051. source: "./media/characters/naomi/back.svg",
  49052. extra: 1252/1190,
  49053. bottom: 23/1275
  49054. }
  49055. },
  49056. },
  49057. [
  49058. {
  49059. name: "Normal",
  49060. height: math.unit(5 + 7 /12, "feet"),
  49061. default: true
  49062. },
  49063. ]
  49064. ))
  49065. characterMakers.push(() => makeCharacter(
  49066. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49067. {
  49068. side: {
  49069. height: math.unit(35, "meters"),
  49070. name: "Side",
  49071. image: {
  49072. source: "./media/characters/kimpi/side.svg",
  49073. extra: 419/382,
  49074. bottom: 63/482
  49075. }
  49076. },
  49077. hand: {
  49078. height: math.unit(8.96, "meters"),
  49079. name: "Hand",
  49080. image: {
  49081. source: "./media/characters/kimpi/hand.svg"
  49082. }
  49083. },
  49084. },
  49085. [
  49086. {
  49087. name: "Normal",
  49088. height: math.unit(35, "meters"),
  49089. default: true
  49090. },
  49091. ]
  49092. ))
  49093. characterMakers.push(() => makeCharacter(
  49094. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49095. {
  49096. front: {
  49097. height: math.unit(4 + 4/12, "feet"),
  49098. name: "Front",
  49099. image: {
  49100. source: "./media/characters/pepper-purrloin/front.svg",
  49101. extra: 1141/1024,
  49102. bottom: 21/1162
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Normal",
  49109. height: math.unit(4 + 4/12, "feet"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(6 + 2/12, "feet"),
  49119. name: "Front",
  49120. image: {
  49121. source: "./media/characters/raphael/front.svg",
  49122. extra: 1101/962,
  49123. bottom: 59/1160
  49124. }
  49125. },
  49126. },
  49127. [
  49128. {
  49129. name: "Normal",
  49130. height: math.unit(6 + 2/12, "feet"),
  49131. default: true
  49132. },
  49133. ]
  49134. ))
  49135. characterMakers.push(() => makeCharacter(
  49136. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49137. {
  49138. front: {
  49139. height: math.unit(6, "feet"),
  49140. weight: math.unit(150, "lb"),
  49141. name: "Front",
  49142. image: {
  49143. source: "./media/characters/victor-williams/front.svg",
  49144. extra: 1894/1825,
  49145. bottom: 67/1961
  49146. }
  49147. },
  49148. },
  49149. [
  49150. {
  49151. name: "Normal",
  49152. height: math.unit(6, "feet"),
  49153. default: true
  49154. },
  49155. ]
  49156. ))
  49157. characterMakers.push(() => makeCharacter(
  49158. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49159. {
  49160. front: {
  49161. height: math.unit(5 + 8/12, "feet"),
  49162. weight: math.unit(150, "lb"),
  49163. name: "Front",
  49164. image: {
  49165. source: "./media/characters/rachel/front.svg",
  49166. extra: 1902/1787,
  49167. bottom: 46/1948
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Base Height",
  49174. height: math.unit(5 + 8/12, "feet"),
  49175. default: true
  49176. },
  49177. {
  49178. name: "Macro",
  49179. height: math.unit(200, "feet")
  49180. },
  49181. {
  49182. name: "Mega Macro",
  49183. height: math.unit(1, "mile")
  49184. },
  49185. {
  49186. name: "Giga Macro",
  49187. height: math.unit(1500, "miles")
  49188. },
  49189. {
  49190. name: "Tera Macro",
  49191. height: math.unit(8000, "miles")
  49192. },
  49193. {
  49194. name: "Tera Macro+",
  49195. height: math.unit(2e5, "miles")
  49196. },
  49197. ]
  49198. ))
  49199. characterMakers.push(() => makeCharacter(
  49200. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49201. {
  49202. front: {
  49203. height: math.unit(6.5, "feet"),
  49204. name: "Front",
  49205. image: {
  49206. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49207. extra: 860/819,
  49208. bottom: 307/1167
  49209. }
  49210. },
  49211. back: {
  49212. height: math.unit(6.5, "feet"),
  49213. name: "Back",
  49214. image: {
  49215. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49216. extra: 880/837,
  49217. bottom: 395/1275
  49218. }
  49219. },
  49220. sleeping: {
  49221. height: math.unit(2.79, "feet"),
  49222. name: "Sleeping",
  49223. image: {
  49224. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49225. extra: 465/383,
  49226. bottom: 263/728
  49227. }
  49228. },
  49229. maw: {
  49230. height: math.unit(2.52, "feet"),
  49231. name: "Maw",
  49232. image: {
  49233. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49234. }
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Normal",
  49240. height: math.unit(6.5, "feet"),
  49241. default: true
  49242. },
  49243. ]
  49244. ))
  49245. characterMakers.push(() => makeCharacter(
  49246. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49247. {
  49248. front: {
  49249. height: math.unit(5, "feet"),
  49250. name: "Front",
  49251. image: {
  49252. source: "./media/characters/nova-nerium/front.svg",
  49253. extra: 1548/1392,
  49254. bottom: 374/1922
  49255. }
  49256. },
  49257. back: {
  49258. height: math.unit(5, "feet"),
  49259. name: "Back",
  49260. image: {
  49261. source: "./media/characters/nova-nerium/back.svg",
  49262. extra: 1658/1468,
  49263. bottom: 257/1915
  49264. }
  49265. },
  49266. },
  49267. [
  49268. {
  49269. name: "Normal",
  49270. height: math.unit(5, "feet"),
  49271. default: true
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(5 + 4/12, "feet"),
  49280. name: "Front",
  49281. image: {
  49282. source: "./media/characters/ashe-pyriph/front.svg",
  49283. extra: 1935/1747,
  49284. bottom: 60/1995
  49285. }
  49286. },
  49287. },
  49288. [
  49289. {
  49290. name: "Normal",
  49291. height: math.unit(5 + 4/12, "feet"),
  49292. default: true
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49298. {
  49299. front: {
  49300. height: math.unit(8.7, "feet"),
  49301. name: "Front",
  49302. image: {
  49303. source: "./media/characters/flicker-wisp/front.svg",
  49304. extra: 1835/1613,
  49305. bottom: 449/2284
  49306. }
  49307. },
  49308. side: {
  49309. height: math.unit(8.7, "feet"),
  49310. name: "Side",
  49311. image: {
  49312. source: "./media/characters/flicker-wisp/side.svg",
  49313. extra: 1841/1642,
  49314. bottom: 336/2177
  49315. },
  49316. default: true
  49317. },
  49318. maw: {
  49319. height: math.unit(3.35, "feet"),
  49320. name: "Maw",
  49321. image: {
  49322. source: "./media/characters/flicker-wisp/maw.svg",
  49323. extra: 2338/1506,
  49324. bottom: 0/2338
  49325. }
  49326. },
  49327. ovipositor: {
  49328. height: math.unit(4.95, "feet"),
  49329. name: "Ovipositor",
  49330. image: {
  49331. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49332. }
  49333. },
  49334. egg: {
  49335. height: math.unit(0.385, "feet"),
  49336. weight: math.unit(2, "lb"),
  49337. name: "Egg",
  49338. image: {
  49339. source: "./media/characters/flicker-wisp/egg.svg"
  49340. }
  49341. },
  49342. },
  49343. [
  49344. {
  49345. name: "Normal",
  49346. height: math.unit(8.7, "feet"),
  49347. default: true
  49348. },
  49349. ]
  49350. ))
  49351. characterMakers.push(() => makeCharacter(
  49352. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49353. {
  49354. side: {
  49355. height: math.unit(11, "feet"),
  49356. name: "Side",
  49357. image: {
  49358. source: "./media/characters/faefnul/side.svg",
  49359. extra: 1100/1007,
  49360. bottom: 0/1100
  49361. }
  49362. },
  49363. },
  49364. [
  49365. {
  49366. name: "Normal",
  49367. height: math.unit(11, "feet"),
  49368. default: true
  49369. },
  49370. ]
  49371. ))
  49372. characterMakers.push(() => makeCharacter(
  49373. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49374. {
  49375. front: {
  49376. height: math.unit(6 + 2/12, "feet"),
  49377. name: "Front",
  49378. image: {
  49379. source: "./media/characters/shady/front.svg",
  49380. extra: 502/461,
  49381. bottom: 9/511
  49382. }
  49383. },
  49384. kneeling: {
  49385. height: math.unit(4.6, "feet"),
  49386. name: "Kneeling",
  49387. image: {
  49388. source: "./media/characters/shady/kneeling.svg",
  49389. extra: 1328/1219,
  49390. bottom: 117/1445
  49391. }
  49392. },
  49393. maw: {
  49394. height: math.unit(2, "feet"),
  49395. name: "Maw",
  49396. image: {
  49397. source: "./media/characters/shady/maw.svg"
  49398. }
  49399. },
  49400. },
  49401. [
  49402. {
  49403. name: "Nano",
  49404. height: math.unit(1, "mm")
  49405. },
  49406. {
  49407. name: "Micro",
  49408. height: math.unit(12, "mm")
  49409. },
  49410. {
  49411. name: "Tiny",
  49412. height: math.unit(3, "inches")
  49413. },
  49414. {
  49415. name: "Normal",
  49416. height: math.unit(6 + 2/12, "feet"),
  49417. default: true
  49418. },
  49419. {
  49420. name: "Big",
  49421. height: math.unit(15, "feet")
  49422. },
  49423. {
  49424. name: "Macro",
  49425. height: math.unit(150, "feet")
  49426. },
  49427. {
  49428. name: "Titanic",
  49429. height: math.unit(500, "feet")
  49430. },
  49431. ]
  49432. ))
  49433. characterMakers.push(() => makeCharacter(
  49434. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49435. {
  49436. front: {
  49437. height: math.unit(12, "feet"),
  49438. name: "Front",
  49439. image: {
  49440. source: "./media/characters/fenrir/front.svg",
  49441. extra: 968/875,
  49442. bottom: 22/990
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Big",
  49449. height: math.unit(12, "feet"),
  49450. default: true
  49451. },
  49452. ]
  49453. ))
  49454. characterMakers.push(() => makeCharacter(
  49455. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49456. {
  49457. front: {
  49458. height: math.unit(5 + 4/12, "feet"),
  49459. name: "Front",
  49460. image: {
  49461. source: "./media/characters/makar/front.svg",
  49462. extra: 1181/1112,
  49463. bottom: 78/1259
  49464. }
  49465. },
  49466. },
  49467. [
  49468. {
  49469. name: "Normal",
  49470. height: math.unit(5 + 4/12, "feet"),
  49471. default: true
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49477. {
  49478. front: {
  49479. height: math.unit(5 + 7/12, "feet"),
  49480. name: "Front",
  49481. image: {
  49482. source: "./media/characters/callow/front.svg",
  49483. extra: 1482/1304,
  49484. bottom: 23/1505
  49485. }
  49486. },
  49487. back: {
  49488. height: math.unit(5 + 7/12, "feet"),
  49489. name: "Back",
  49490. image: {
  49491. source: "./media/characters/callow/back.svg",
  49492. extra: 1484/1296,
  49493. bottom: 25/1509
  49494. }
  49495. },
  49496. },
  49497. [
  49498. {
  49499. name: "Micro",
  49500. height: math.unit(3, "inches"),
  49501. default: true
  49502. },
  49503. {
  49504. name: "Normal",
  49505. height: math.unit(5 + 7/12, "feet")
  49506. },
  49507. ]
  49508. ))
  49509. characterMakers.push(() => makeCharacter(
  49510. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49511. {
  49512. front: {
  49513. height: math.unit(6 + 2/12, "feet"),
  49514. name: "Front",
  49515. image: {
  49516. source: "./media/characters/natel/front.svg",
  49517. extra: 1833/1692,
  49518. bottom: 166/1999
  49519. }
  49520. },
  49521. },
  49522. [
  49523. {
  49524. name: "Normal",
  49525. height: math.unit(6 + 2/12, "feet"),
  49526. default: true
  49527. },
  49528. ]
  49529. ))
  49530. characterMakers.push(() => makeCharacter(
  49531. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49532. {
  49533. front: {
  49534. height: math.unit(1.75, "meters"),
  49535. name: "Front",
  49536. image: {
  49537. source: "./media/characters/misu/front.svg",
  49538. extra: 1690/1558,
  49539. bottom: 234/1924
  49540. }
  49541. },
  49542. back: {
  49543. height: math.unit(1.75, "meters"),
  49544. name: "Back",
  49545. image: {
  49546. source: "./media/characters/misu/back.svg",
  49547. extra: 1762/1618,
  49548. bottom: 146/1908
  49549. }
  49550. },
  49551. frontNude: {
  49552. height: math.unit(1.75, "meters"),
  49553. name: "Front (Nude)",
  49554. image: {
  49555. source: "./media/characters/misu/front-nude.svg",
  49556. extra: 1690/1558,
  49557. bottom: 234/1924
  49558. }
  49559. },
  49560. backNude: {
  49561. height: math.unit(1.75, "meters"),
  49562. name: "Back (Nude)",
  49563. image: {
  49564. source: "./media/characters/misu/back-nude.svg",
  49565. extra: 1762/1618,
  49566. bottom: 146/1908
  49567. }
  49568. },
  49569. frontErect: {
  49570. height: math.unit(1.75, "meters"),
  49571. name: "Front (Erect)",
  49572. image: {
  49573. source: "./media/characters/misu/front-erect.svg",
  49574. extra: 1690/1558,
  49575. bottom: 234/1924
  49576. }
  49577. },
  49578. maw: {
  49579. height: math.unit(0.47, "meters"),
  49580. name: "Maw",
  49581. image: {
  49582. source: "./media/characters/misu/maw.svg"
  49583. }
  49584. },
  49585. head: {
  49586. height: math.unit(0.35, "meters"),
  49587. name: "Head",
  49588. image: {
  49589. source: "./media/characters/misu/head.svg"
  49590. }
  49591. },
  49592. rear: {
  49593. height: math.unit(0.47, "meters"),
  49594. name: "Rear",
  49595. image: {
  49596. source: "./media/characters/misu/rear.svg"
  49597. }
  49598. },
  49599. },
  49600. [
  49601. {
  49602. name: "Normal",
  49603. height: math.unit(1.75, "meters")
  49604. },
  49605. {
  49606. name: "Not good for the people",
  49607. height: math.unit(42, "meters")
  49608. },
  49609. {
  49610. name: "Not good for the neighborhood",
  49611. height: math.unit(135, "meters")
  49612. },
  49613. {
  49614. name: "Bit bigger problem",
  49615. height: math.unit(380, "meters"),
  49616. default: true
  49617. },
  49618. {
  49619. name: "Not good for the city",
  49620. height: math.unit(1.5, "km")
  49621. },
  49622. {
  49623. name: "Not good for the county",
  49624. height: math.unit(5.5, "km")
  49625. },
  49626. {
  49627. name: "Not good for the state",
  49628. height: math.unit(25, "km")
  49629. },
  49630. {
  49631. name: "Not good for the country",
  49632. height: math.unit(125, "km")
  49633. },
  49634. {
  49635. name: "Not good for the continent",
  49636. height: math.unit(2100, "km")
  49637. },
  49638. {
  49639. name: "Not good for the planet",
  49640. height: math.unit(35000, "km")
  49641. },
  49642. {
  49643. name: "Just no",
  49644. height: math.unit(8.5e18, "km")
  49645. },
  49646. ]
  49647. ))
  49648. characterMakers.push(() => makeCharacter(
  49649. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49650. {
  49651. front: {
  49652. height: math.unit(6.5, "feet"),
  49653. name: "Front",
  49654. image: {
  49655. source: "./media/characters/poppy/front.svg",
  49656. extra: 1878/1812,
  49657. bottom: 43/1921
  49658. }
  49659. },
  49660. feet: {
  49661. height: math.unit(1.06, "feet"),
  49662. name: "Feet",
  49663. image: {
  49664. source: "./media/characters/poppy/feet.svg",
  49665. extra: 1083/1083,
  49666. bottom: 87/1170
  49667. }
  49668. },
  49669. },
  49670. [
  49671. {
  49672. name: "Human",
  49673. height: math.unit(6.5, "feet")
  49674. },
  49675. {
  49676. name: "Default",
  49677. height: math.unit(300, "feet"),
  49678. default: true
  49679. },
  49680. {
  49681. name: "Huge",
  49682. height: math.unit(850, "feet")
  49683. },
  49684. {
  49685. name: "Mega",
  49686. height: math.unit(8000, "feet")
  49687. },
  49688. {
  49689. name: "Giga",
  49690. height: math.unit(300, "miles")
  49691. },
  49692. ]
  49693. ))
  49694. characterMakers.push(() => makeCharacter(
  49695. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49696. {
  49697. bipedal: {
  49698. height: math.unit(7, "feet"),
  49699. name: "Bipedal",
  49700. image: {
  49701. source: "./media/characters/zener/bipedal.svg",
  49702. extra: 874/805,
  49703. bottom: 109/983
  49704. }
  49705. },
  49706. quadrupedal: {
  49707. height: math.unit(4.64, "feet"),
  49708. name: "Quadrupedal",
  49709. image: {
  49710. source: "./media/characters/zener/quadrupedal.svg",
  49711. extra: 638/507,
  49712. bottom: 190/828
  49713. }
  49714. },
  49715. cock: {
  49716. height: math.unit(18, "inches"),
  49717. name: "Cock",
  49718. image: {
  49719. source: "./media/characters/zener/cock.svg"
  49720. }
  49721. },
  49722. },
  49723. [
  49724. {
  49725. name: "Normal",
  49726. height: math.unit(7, "feet"),
  49727. default: true
  49728. },
  49729. ]
  49730. ))
  49731. characterMakers.push(() => makeCharacter(
  49732. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49733. {
  49734. nude: {
  49735. height: math.unit(5 + 6/12, "feet"),
  49736. name: "Nude",
  49737. image: {
  49738. source: "./media/characters/charlie-dog/nude.svg",
  49739. extra: 768/734,
  49740. bottom: 26/794
  49741. }
  49742. },
  49743. dressed: {
  49744. height: math.unit(5 + 6/12, "feet"),
  49745. name: "Dressed",
  49746. image: {
  49747. source: "./media/characters/charlie-dog/dressed.svg",
  49748. extra: 768/734,
  49749. bottom: 26/794
  49750. }
  49751. },
  49752. },
  49753. [
  49754. {
  49755. name: "Normal",
  49756. height: math.unit(5 + 6/12, "feet"),
  49757. default: true
  49758. },
  49759. ]
  49760. ))
  49761. characterMakers.push(() => makeCharacter(
  49762. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49763. {
  49764. front: {
  49765. height: math.unit(6 + 4/12, "feet"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/ir'istrasz/front.svg",
  49769. extra: 1014/977,
  49770. bottom: 65/1079
  49771. }
  49772. },
  49773. back: {
  49774. height: math.unit(6 + 4/12, "feet"),
  49775. name: "Back",
  49776. image: {
  49777. source: "./media/characters/ir'istrasz/back.svg",
  49778. extra: 1024/992,
  49779. bottom: 34/1058
  49780. }
  49781. },
  49782. },
  49783. [
  49784. {
  49785. name: "Normal",
  49786. height: math.unit(6 + 4/12, "feet"),
  49787. default: true
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49793. {
  49794. front: {
  49795. height: math.unit(5 + 8/12, "feet"),
  49796. name: "Front",
  49797. image: {
  49798. source: "./media/characters/dee-ditto/front.svg",
  49799. extra: 1874/1785,
  49800. bottom: 68/1942
  49801. }
  49802. },
  49803. back: {
  49804. height: math.unit(5 + 8/12, "feet"),
  49805. name: "Back",
  49806. image: {
  49807. source: "./media/characters/dee-ditto/back.svg",
  49808. extra: 1870/1783,
  49809. bottom: 77/1947
  49810. }
  49811. },
  49812. },
  49813. [
  49814. {
  49815. name: "Normal",
  49816. height: math.unit(5 + 8/12, "feet"),
  49817. default: true
  49818. },
  49819. ]
  49820. ))
  49821. characterMakers.push(() => makeCharacter(
  49822. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49823. {
  49824. front: {
  49825. height: math.unit(7 + 6/12, "feet"),
  49826. name: "Front",
  49827. image: {
  49828. source: "./media/characters/fey/front.svg",
  49829. extra: 995/979,
  49830. bottom: 30/1025
  49831. }
  49832. },
  49833. back: {
  49834. height: math.unit(7 + 6/12, "feet"),
  49835. name: "Back",
  49836. image: {
  49837. source: "./media/characters/fey/back.svg",
  49838. extra: 1079/1008,
  49839. bottom: 5/1084
  49840. }
  49841. },
  49842. dressed: {
  49843. height: math.unit(7 + 6/12, "feet"),
  49844. name: "Dressed",
  49845. image: {
  49846. source: "./media/characters/fey/dressed.svg",
  49847. extra: 995/979,
  49848. bottom: 30/1025
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Normal",
  49855. height: math.unit(7 + 6/12, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49862. {
  49863. standing: {
  49864. height: math.unit(17, "feet"),
  49865. name: "Standing",
  49866. image: {
  49867. source: "./media/characters/aster/standing.svg",
  49868. extra: 1798/1598,
  49869. bottom: 117/1915
  49870. }
  49871. },
  49872. },
  49873. [
  49874. {
  49875. name: "Normal",
  49876. height: math.unit(17, "feet"),
  49877. default: true
  49878. },
  49879. {
  49880. name: "Homewrecker",
  49881. height: math.unit(95, "feet")
  49882. },
  49883. {
  49884. name: "Planet Devourer",
  49885. height: math.unit(1008000, "miles")
  49886. },
  49887. ]
  49888. ))
  49889. characterMakers.push(() => makeCharacter(
  49890. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49891. {
  49892. front: {
  49893. height: math.unit(6 + 5/12, "feet"),
  49894. weight: math.unit(265, "lb"),
  49895. name: "Front",
  49896. image: {
  49897. source: "./media/characters/devon-childs/front.svg",
  49898. extra: 1795/1721,
  49899. bottom: 41/1836
  49900. }
  49901. },
  49902. side: {
  49903. height: math.unit(6 + 5/12, "feet"),
  49904. weight: math.unit(265, "lb"),
  49905. name: "Side",
  49906. image: {
  49907. source: "./media/characters/devon-childs/side.svg",
  49908. extra: 1812/1738,
  49909. bottom: 30/1842
  49910. }
  49911. },
  49912. back: {
  49913. height: math.unit(6 + 5/12, "feet"),
  49914. weight: math.unit(265, "lb"),
  49915. name: "Back",
  49916. image: {
  49917. source: "./media/characters/devon-childs/back.svg",
  49918. extra: 1808/1735,
  49919. bottom: 23/1831
  49920. }
  49921. },
  49922. hand: {
  49923. height: math.unit(1.464, "feet"),
  49924. name: "Hand",
  49925. image: {
  49926. source: "./media/characters/devon-childs/hand.svg"
  49927. }
  49928. },
  49929. foot: {
  49930. height: math.unit(1.6, "feet"),
  49931. name: "Foot",
  49932. image: {
  49933. source: "./media/characters/devon-childs/foot.svg"
  49934. }
  49935. },
  49936. },
  49937. [
  49938. {
  49939. name: "Micro",
  49940. height: math.unit(7, "cm")
  49941. },
  49942. {
  49943. name: "Normal",
  49944. height: math.unit(6 + 5/12, "feet"),
  49945. default: true
  49946. },
  49947. {
  49948. name: "Macro",
  49949. height: math.unit(154, "feet")
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49955. {
  49956. front: {
  49957. height: math.unit(6, "feet"),
  49958. weight: math.unit(180, "lb"),
  49959. name: "Front",
  49960. image: {
  49961. source: "./media/characters/lydemox-vir/front.svg",
  49962. extra: 1632/1435,
  49963. bottom: 58/1690
  49964. }
  49965. },
  49966. frontSFW: {
  49967. height: math.unit(6, "feet"),
  49968. weight: math.unit(180, "lb"),
  49969. name: "Front (SFW)",
  49970. image: {
  49971. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49972. extra: 1632/1435,
  49973. bottom: 58/1690
  49974. }
  49975. },
  49976. back: {
  49977. height: math.unit(6, "feet"),
  49978. weight: math.unit(180, "lb"),
  49979. name: "Back",
  49980. image: {
  49981. source: "./media/characters/lydemox-vir/back.svg",
  49982. extra: 1593/1408,
  49983. bottom: 31/1624
  49984. }
  49985. },
  49986. paw: {
  49987. height: math.unit(1.85, "feet"),
  49988. name: "Paw",
  49989. image: {
  49990. source: "./media/characters/lydemox-vir/paw.svg"
  49991. }
  49992. },
  49993. dick: {
  49994. height: math.unit(1.8, "feet"),
  49995. name: "Dick",
  49996. image: {
  49997. source: "./media/characters/lydemox-vir/dick.svg"
  49998. }
  49999. },
  50000. },
  50001. [
  50002. {
  50003. name: "Macro",
  50004. height: math.unit(100, "feet"),
  50005. default: true
  50006. },
  50007. {
  50008. name: "Teramacro",
  50009. height: math.unit(1, "earth")
  50010. },
  50011. {
  50012. name: "Planetary",
  50013. height: math.unit(20, "earths")
  50014. },
  50015. ]
  50016. ))
  50017. characterMakers.push(() => makeCharacter(
  50018. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50019. {
  50020. front: {
  50021. height: math.unit(15 + 8/12, "feet"),
  50022. weight: math.unit(1237, "kg"),
  50023. name: "Front",
  50024. image: {
  50025. source: "./media/characters/mia/front.svg",
  50026. extra: 1573/1446,
  50027. bottom: 58/1631
  50028. }
  50029. },
  50030. },
  50031. [
  50032. {
  50033. name: "Small",
  50034. height: math.unit(9 + 5/12, "feet")
  50035. },
  50036. {
  50037. name: "Normal",
  50038. height: math.unit(15 + 8/12, "feet"),
  50039. default: true
  50040. },
  50041. ]
  50042. ))
  50043. characterMakers.push(() => makeCharacter(
  50044. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50045. {
  50046. front: {
  50047. height: math.unit(10 + 6/12, "feet"),
  50048. weight: math.unit(1.3, "tons"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/mr-graves/front.svg",
  50052. extra: 1779/1695,
  50053. bottom: 198/1977
  50054. }
  50055. },
  50056. },
  50057. [
  50058. {
  50059. name: "Normal",
  50060. height: math.unit(10 + 6 /12, "feet"),
  50061. default: true
  50062. },
  50063. ]
  50064. ))
  50065. characterMakers.push(() => makeCharacter(
  50066. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50067. {
  50068. dressedFront: {
  50069. height: math.unit(5 + 8/12, "feet"),
  50070. weight: math.unit(125, "lb"),
  50071. name: "Dressed (Front)",
  50072. image: {
  50073. source: "./media/characters/jess/dressed-front.svg",
  50074. extra: 1176/1152,
  50075. bottom: 42/1218
  50076. }
  50077. },
  50078. dressedSide: {
  50079. height: math.unit(5 + 8/12, "feet"),
  50080. weight: math.unit(125, "lb"),
  50081. name: "Dressed (Side)",
  50082. image: {
  50083. source: "./media/characters/jess/dressed-side.svg",
  50084. extra: 1204/1190,
  50085. bottom: 6/1210
  50086. }
  50087. },
  50088. nudeFront: {
  50089. height: math.unit(5 + 8/12, "feet"),
  50090. weight: math.unit(125, "lb"),
  50091. name: "Nude (Front)",
  50092. image: {
  50093. source: "./media/characters/jess/nude-front.svg",
  50094. extra: 1176/1152,
  50095. bottom: 42/1218
  50096. }
  50097. },
  50098. nudeSide: {
  50099. height: math.unit(5 + 8/12, "feet"),
  50100. weight: math.unit(125, "lb"),
  50101. name: "Nude (Side)",
  50102. image: {
  50103. source: "./media/characters/jess/nude-side.svg",
  50104. extra: 1204/1190,
  50105. bottom: 6/1210
  50106. }
  50107. },
  50108. organsFront: {
  50109. height: math.unit(2.83799342105, "feet"),
  50110. name: "Organs (Front)",
  50111. image: {
  50112. source: "./media/characters/jess/organs-front.svg"
  50113. }
  50114. },
  50115. organsSide: {
  50116. height: math.unit(2.64225290474, "feet"),
  50117. name: "Organs (Side)",
  50118. image: {
  50119. source: "./media/characters/jess/organs-side.svg"
  50120. }
  50121. },
  50122. digestiveTractFront: {
  50123. height: math.unit(2.8106580871, "feet"),
  50124. name: "Digestive Tract (Front)",
  50125. image: {
  50126. source: "./media/characters/jess/digestive-tract-front.svg"
  50127. }
  50128. },
  50129. digestiveTractSide: {
  50130. height: math.unit(2.54365045014, "feet"),
  50131. name: "Digestive Tract (Side)",
  50132. image: {
  50133. source: "./media/characters/jess/digestive-tract-side.svg"
  50134. }
  50135. },
  50136. respiratorySystemFront: {
  50137. height: math.unit(1.11196233456, "feet"),
  50138. name: "Respiratory System (Front)",
  50139. image: {
  50140. source: "./media/characters/jess/respiratory-system-front.svg"
  50141. }
  50142. },
  50143. respiratorySystemSide: {
  50144. height: math.unit(0.89327966297, "feet"),
  50145. name: "Respiratory System (Side)",
  50146. image: {
  50147. source: "./media/characters/jess/respiratory-system-side.svg"
  50148. }
  50149. },
  50150. urinaryTractFront: {
  50151. height: math.unit(1.16126356186, "feet"),
  50152. name: "Urinary Tract (Front)",
  50153. image: {
  50154. source: "./media/characters/jess/urinary-tract-front.svg"
  50155. }
  50156. },
  50157. urinaryTractSide: {
  50158. height: math.unit(1.20910039627, "feet"),
  50159. name: "Urinary Tract (Side)",
  50160. image: {
  50161. source: "./media/characters/jess/urinary-tract-side.svg"
  50162. }
  50163. },
  50164. reproductiveOrgansFront: {
  50165. height: math.unit(0.48422591566, "feet"),
  50166. name: "Reproductive Organs (Front)",
  50167. image: {
  50168. source: "./media/characters/jess/reproductive-organs-front.svg"
  50169. }
  50170. },
  50171. reproductiveOrgansSide: {
  50172. height: math.unit(0.61553314481, "feet"),
  50173. name: "Reproductive Organs (Side)",
  50174. image: {
  50175. source: "./media/characters/jess/reproductive-organs-side.svg"
  50176. }
  50177. },
  50178. breastsFront: {
  50179. height: math.unit(0.47690395121, "feet"),
  50180. name: "Breasts (Front)",
  50181. image: {
  50182. source: "./media/characters/jess/breasts-front.svg"
  50183. }
  50184. },
  50185. breastsSide: {
  50186. height: math.unit(0.30556998307, "feet"),
  50187. name: "Breasts (Side)",
  50188. image: {
  50189. source: "./media/characters/jess/breasts-side.svg"
  50190. }
  50191. },
  50192. heartFront: {
  50193. height: math.unit(0.53011022622, "feet"),
  50194. name: "Heart (Front)",
  50195. image: {
  50196. source: "./media/characters/jess/heart-front.svg"
  50197. }
  50198. },
  50199. heartSide: {
  50200. height: math.unit(0.51790695213, "feet"),
  50201. name: "Heart (Side)",
  50202. image: {
  50203. source: "./media/characters/jess/heart-side.svg"
  50204. }
  50205. },
  50206. earsAndNoseFront: {
  50207. height: math.unit(0.29385483995, "feet"),
  50208. name: "Ears and Nose (Front)",
  50209. image: {
  50210. source: "./media/characters/jess/ears-and-nose-front.svg"
  50211. }
  50212. },
  50213. earsAndNoseSide: {
  50214. height: math.unit(0.18109658741, "feet"),
  50215. name: "Ears and Nose (Side)",
  50216. image: {
  50217. source: "./media/characters/jess/ears-and-nose-side.svg"
  50218. }
  50219. },
  50220. },
  50221. [
  50222. {
  50223. name: "Normal",
  50224. height: math.unit(5 + 8/12, "feet"),
  50225. default: true
  50226. },
  50227. ]
  50228. ))
  50229. characterMakers.push(() => makeCharacter(
  50230. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50231. {
  50232. front: {
  50233. height: math.unit(6, "feet"),
  50234. weight: math.unit(6.64467e-7, "grams"),
  50235. name: "Front",
  50236. image: {
  50237. source: "./media/characters/wimpering/front.svg",
  50238. extra: 597/587,
  50239. bottom: 34/631
  50240. }
  50241. },
  50242. },
  50243. [
  50244. {
  50245. name: "Micro",
  50246. height: math.unit(0.4, "mm"),
  50247. default: true
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50253. {
  50254. front: {
  50255. height: math.unit(5 + 2/12, "feet"),
  50256. weight: math.unit(110, "lb"),
  50257. name: "Front",
  50258. image: {
  50259. source: "./media/characters/keltre/front.svg",
  50260. extra: 1099/1057,
  50261. bottom: 22/1121
  50262. }
  50263. },
  50264. back: {
  50265. height: math.unit(5 + 2/12, "feet"),
  50266. weight: math.unit(110, "lb"),
  50267. name: "Back",
  50268. image: {
  50269. source: "./media/characters/keltre/back.svg",
  50270. extra: 1095/1053,
  50271. bottom: 17/1112
  50272. }
  50273. },
  50274. dressed: {
  50275. height: math.unit(5 + 2/12, "feet"),
  50276. weight: math.unit(110, "lb"),
  50277. name: "Dressed",
  50278. image: {
  50279. source: "./media/characters/keltre/dressed.svg",
  50280. extra: 1099/1057,
  50281. bottom: 22/1121
  50282. }
  50283. },
  50284. winter: {
  50285. height: math.unit(5 + 2/12, "feet"),
  50286. weight: math.unit(110, "lb"),
  50287. name: "Winter",
  50288. image: {
  50289. source: "./media/characters/keltre/winter.svg",
  50290. extra: 1099/1057,
  50291. bottom: 22/1121
  50292. }
  50293. },
  50294. head: {
  50295. height: math.unit(1.61 * 0.86, "feet"),
  50296. name: "Head",
  50297. image: {
  50298. source: "./media/characters/keltre/head.svg",
  50299. extra: 534/421,
  50300. bottom: 0/534
  50301. }
  50302. },
  50303. hand: {
  50304. height: math.unit(1.3 * 0.86, "feet"),
  50305. name: "Hand",
  50306. image: {
  50307. source: "./media/characters/keltre/hand.svg"
  50308. }
  50309. },
  50310. foot: {
  50311. height: math.unit(1.8 * 0.86, "feet"),
  50312. name: "Foot",
  50313. image: {
  50314. source: "./media/characters/keltre/foot.svg"
  50315. }
  50316. },
  50317. },
  50318. [
  50319. {
  50320. name: "Fine",
  50321. height: math.unit(1, "inch")
  50322. },
  50323. {
  50324. name: "Dimnutive",
  50325. height: math.unit(4, "inches")
  50326. },
  50327. {
  50328. name: "Tiny",
  50329. height: math.unit(1, "foot")
  50330. },
  50331. {
  50332. name: "Small",
  50333. height: math.unit(3, "feet")
  50334. },
  50335. {
  50336. name: "Normal",
  50337. height: math.unit(5 + 2/12, "feet"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50344. {
  50345. front: {
  50346. height: math.unit(6 + 2/12, "feet"),
  50347. name: "Front",
  50348. image: {
  50349. source: "./media/characters/nox/front.svg",
  50350. extra: 1917/1830,
  50351. bottom: 74/1991
  50352. }
  50353. },
  50354. back: {
  50355. height: math.unit(6 + 2/12, "feet"),
  50356. name: "Back",
  50357. image: {
  50358. source: "./media/characters/nox/back.svg",
  50359. extra: 1896/1815,
  50360. bottom: 21/1917
  50361. }
  50362. },
  50363. head: {
  50364. height: math.unit(1.1, "feet"),
  50365. name: "Head",
  50366. image: {
  50367. source: "./media/characters/nox/head.svg",
  50368. extra: 874/704,
  50369. bottom: 0/874
  50370. }
  50371. },
  50372. tattoo: {
  50373. height: math.unit(0.729, "feet"),
  50374. name: "Tattoo",
  50375. image: {
  50376. source: "./media/characters/nox/tattoo.svg"
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Normal",
  50383. height: math.unit(6 + 2/12, "feet")
  50384. },
  50385. {
  50386. name: "Gigamacro",
  50387. height: math.unit(2, "earths"),
  50388. default: true
  50389. },
  50390. {
  50391. name: "Cosmic",
  50392. height: math.unit(867, "yottameters")
  50393. },
  50394. ]
  50395. ))
  50396. characterMakers.push(() => makeCharacter(
  50397. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50398. {
  50399. front: {
  50400. height: math.unit(6, "feet"),
  50401. weight: math.unit(150, "lb"),
  50402. name: "Front",
  50403. image: {
  50404. source: "./media/characters/caspian/front.svg",
  50405. extra: 1443/1359,
  50406. bottom: 0/1443
  50407. }
  50408. },
  50409. back: {
  50410. height: math.unit(6, "feet"),
  50411. weight: math.unit(150, "lb"),
  50412. name: "Back",
  50413. image: {
  50414. source: "./media/characters/caspian/back.svg",
  50415. extra: 1379/1309,
  50416. bottom: 0/1379
  50417. }
  50418. },
  50419. head: {
  50420. height: math.unit(0.9, "feet"),
  50421. name: "Head",
  50422. image: {
  50423. source: "./media/characters/caspian/head.svg",
  50424. extra: 692/492,
  50425. bottom: 0/692
  50426. }
  50427. },
  50428. headAlt: {
  50429. height: math.unit(0.95, "feet"),
  50430. name: "Head (Alt)",
  50431. image: {
  50432. source: "./media/characters/caspian/head-alt.svg",
  50433. extra: 668/508,
  50434. bottom: 0/668
  50435. }
  50436. },
  50437. hand: {
  50438. height: math.unit(0.8, "feet"),
  50439. name: "Hand",
  50440. image: {
  50441. source: "./media/characters/caspian/hand.svg"
  50442. }
  50443. },
  50444. paw: {
  50445. height: math.unit(0.95, "feet"),
  50446. name: "Paw",
  50447. image: {
  50448. source: "./media/characters/caspian/paw.svg"
  50449. }
  50450. },
  50451. },
  50452. [
  50453. {
  50454. name: "Normal",
  50455. height: math.unit(162, "feet"),
  50456. default: true
  50457. },
  50458. ]
  50459. ))
  50460. characterMakers.push(() => makeCharacter(
  50461. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50462. {
  50463. front: {
  50464. height: math.unit(6, "feet"),
  50465. name: "Front",
  50466. image: {
  50467. source: "./media/characters/myra-aisling/front.svg",
  50468. extra: 1268/1166,
  50469. bottom: 73/1341
  50470. }
  50471. },
  50472. back: {
  50473. height: math.unit(6, "feet"),
  50474. name: "Back",
  50475. image: {
  50476. source: "./media/characters/myra-aisling/back.svg",
  50477. extra: 1249/1149,
  50478. bottom: 79/1328
  50479. }
  50480. },
  50481. dressed: {
  50482. height: math.unit(6, "feet"),
  50483. name: "Dressed",
  50484. image: {
  50485. source: "./media/characters/myra-aisling/dressed.svg",
  50486. extra: 1290/1189,
  50487. bottom: 47/1337
  50488. }
  50489. },
  50490. hand: {
  50491. height: math.unit(1.1, "feet"),
  50492. name: "Hand",
  50493. image: {
  50494. source: "./media/characters/myra-aisling/hand.svg"
  50495. }
  50496. },
  50497. paw: {
  50498. height: math.unit(1.23, "feet"),
  50499. name: "Paw",
  50500. image: {
  50501. source: "./media/characters/myra-aisling/paw.svg"
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Normal",
  50508. height: math.unit(160, "feet"),
  50509. default: true
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50515. {
  50516. front: {
  50517. height: math.unit(6, "feet"),
  50518. name: "Front",
  50519. image: {
  50520. source: "./media/characters/tenley-sidero/front.svg",
  50521. extra: 1365/1276,
  50522. bottom: 47/1412
  50523. }
  50524. },
  50525. back: {
  50526. height: math.unit(6, "feet"),
  50527. name: "Back",
  50528. image: {
  50529. source: "./media/characters/tenley-sidero/back.svg",
  50530. extra: 1383/1283,
  50531. bottom: 35/1418
  50532. }
  50533. },
  50534. dressed: {
  50535. height: math.unit(6, "feet"),
  50536. name: "Dressed",
  50537. image: {
  50538. source: "./media/characters/tenley-sidero/dressed.svg",
  50539. extra: 1364/1275,
  50540. bottom: 42/1406
  50541. }
  50542. },
  50543. head: {
  50544. height: math.unit(1.47, "feet"),
  50545. name: "Head",
  50546. image: {
  50547. source: "./media/characters/tenley-sidero/head.svg",
  50548. extra: 610/490,
  50549. bottom: 0/610
  50550. }
  50551. },
  50552. },
  50553. [
  50554. {
  50555. name: "Normal",
  50556. height: math.unit(154, "feet"),
  50557. default: true
  50558. },
  50559. ]
  50560. ))
  50561. characterMakers.push(() => makeCharacter(
  50562. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50563. {
  50564. front: {
  50565. height: math.unit(5, "inches"),
  50566. name: "Front",
  50567. image: {
  50568. source: "./media/characters/mallory/front.svg",
  50569. extra: 1919/1678,
  50570. bottom: 29/1948
  50571. }
  50572. },
  50573. hand: {
  50574. height: math.unit(0.73, "inches"),
  50575. name: "Hand",
  50576. image: {
  50577. source: "./media/characters/mallory/hand.svg"
  50578. }
  50579. },
  50580. paw: {
  50581. height: math.unit(0.68, "inches"),
  50582. name: "Paw",
  50583. image: {
  50584. source: "./media/characters/mallory/paw.svg"
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Small",
  50591. height: math.unit(5, "inches"),
  50592. default: true
  50593. },
  50594. ]
  50595. ))
  50596. characterMakers.push(() => makeCharacter(
  50597. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50598. {
  50599. naked: {
  50600. height: math.unit(6, "feet"),
  50601. name: "Naked",
  50602. image: {
  50603. source: "./media/characters/mab/naked.svg",
  50604. extra: 1855/1757,
  50605. bottom: 208/2063
  50606. }
  50607. },
  50608. outside: {
  50609. height: math.unit(6, "feet"),
  50610. name: "Outside",
  50611. image: {
  50612. source: "./media/characters/mab/outside.svg",
  50613. extra: 1855/1757,
  50614. bottom: 208/2063
  50615. }
  50616. },
  50617. party: {
  50618. height: math.unit(6, "feet"),
  50619. name: "Party",
  50620. image: {
  50621. source: "./media/characters/mab/party.svg",
  50622. extra: 1855/1757,
  50623. bottom: 208/2063
  50624. }
  50625. },
  50626. },
  50627. [
  50628. {
  50629. name: "Normal",
  50630. height: math.unit(165, "feet"),
  50631. default: true
  50632. },
  50633. ]
  50634. ))
  50635. characterMakers.push(() => makeCharacter(
  50636. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50637. {
  50638. feral: {
  50639. height: math.unit(12, "feet"),
  50640. weight: math.unit(20000, "lb"),
  50641. name: "Side",
  50642. image: {
  50643. source: "./media/characters/winter/feral.svg",
  50644. extra: 1286/943,
  50645. bottom: 112/1398
  50646. },
  50647. form: "feral",
  50648. default: true
  50649. },
  50650. feralNsfw: {
  50651. height: math.unit(12, "feet"),
  50652. weight: math.unit(20000, "lb"),
  50653. name: "Side (NSFW)",
  50654. image: {
  50655. source: "./media/characters/winter/feral-nsfw.svg",
  50656. extra: 1286/943,
  50657. bottom: 112/1398
  50658. },
  50659. form: "feral"
  50660. },
  50661. dick: {
  50662. height: math.unit(3.79, "feet"),
  50663. name: "Dick",
  50664. image: {
  50665. source: "./media/characters/winter/dick.svg"
  50666. },
  50667. form: "feral"
  50668. },
  50669. anthro: {
  50670. height: math.unit(12, "feet"),
  50671. weight: math.unit(10, "tons"),
  50672. name: "Anthro",
  50673. image: {
  50674. source: "./media/characters/winter/anthro.svg",
  50675. extra: 1701/1553,
  50676. bottom: 64/1765
  50677. },
  50678. form: "anthro",
  50679. default: true
  50680. },
  50681. },
  50682. [
  50683. {
  50684. name: "Big",
  50685. height: math.unit(12, "feet"),
  50686. default: true,
  50687. form: "feral"
  50688. },
  50689. {
  50690. name: "Big",
  50691. height: math.unit(12, "feet"),
  50692. default: true,
  50693. form: "anthro"
  50694. },
  50695. ],
  50696. {
  50697. "feral": {
  50698. name: "Feral",
  50699. default: true
  50700. },
  50701. "anthro": {
  50702. name: "Anthro"
  50703. }
  50704. }
  50705. ))
  50706. characterMakers.push(() => makeCharacter(
  50707. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50708. {
  50709. front: {
  50710. height: math.unit(4.1, "inches"),
  50711. name: "Front",
  50712. image: {
  50713. source: "./media/characters/alto/front.svg",
  50714. extra: 736/627,
  50715. bottom: 90/826
  50716. }
  50717. },
  50718. },
  50719. [
  50720. {
  50721. name: "Normal",
  50722. height: math.unit(4.1, "inches"),
  50723. default: true
  50724. },
  50725. ]
  50726. ))
  50727. characterMakers.push(() => makeCharacter(
  50728. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50729. {
  50730. sitting: {
  50731. height: math.unit(3, "feet"),
  50732. name: "Sitting",
  50733. image: {
  50734. source: "./media/characters/ratstrid-v/sitting.svg",
  50735. extra: 355/310,
  50736. bottom: 136/491
  50737. }
  50738. },
  50739. },
  50740. [
  50741. {
  50742. name: "Normal",
  50743. height: math.unit(3, "feet"),
  50744. default: true
  50745. },
  50746. ]
  50747. ))
  50748. characterMakers.push(() => makeCharacter(
  50749. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50750. {
  50751. back: {
  50752. height: math.unit(6, "feet"),
  50753. weight: math.unit(450, "lb"),
  50754. name: "Back",
  50755. image: {
  50756. source: "./media/characters/siz/back.svg",
  50757. extra: 1449/1274,
  50758. bottom: 13/1462
  50759. }
  50760. },
  50761. },
  50762. [
  50763. {
  50764. name: "Smallest",
  50765. height: math.unit(18 + 3/12, "feet")
  50766. },
  50767. {
  50768. name: "Modest",
  50769. height: math.unit(56 + 8/12, "feet"),
  50770. default: true
  50771. },
  50772. {
  50773. name: "Largest",
  50774. height: math.unit(3590, "feet")
  50775. },
  50776. ]
  50777. ))
  50778. characterMakers.push(() => makeCharacter(
  50779. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50780. {
  50781. front: {
  50782. height: math.unit(5 + 9/12, "feet"),
  50783. weight: math.unit(150, "lb"),
  50784. name: "Front",
  50785. image: {
  50786. source: "./media/characters/ven/front.svg",
  50787. extra: 1372/1320,
  50788. bottom: 73/1445
  50789. }
  50790. },
  50791. side: {
  50792. height: math.unit(5 + 9/12, "feet"),
  50793. weight: math.unit(1150, "lb"),
  50794. name: "Side",
  50795. image: {
  50796. source: "./media/characters/ven/side.svg",
  50797. extra: 1119/1070,
  50798. bottom: 42/1161
  50799. },
  50800. default: true
  50801. },
  50802. },
  50803. [
  50804. {
  50805. name: "Normal",
  50806. height: math.unit(5 + 9/12, "feet"),
  50807. default: true
  50808. },
  50809. ]
  50810. ))
  50811. characterMakers.push(() => makeCharacter(
  50812. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50813. {
  50814. front: {
  50815. height: math.unit(12, "feet"),
  50816. weight: math.unit(1000, "kg"),
  50817. name: "Front",
  50818. image: {
  50819. source: "./media/characters/maple/front.svg",
  50820. extra: 1193/1081,
  50821. bottom: 22/1215
  50822. }
  50823. },
  50824. },
  50825. [
  50826. {
  50827. name: "Compressed",
  50828. height: math.unit(7, "feet")
  50829. },
  50830. {
  50831. name: "Normal",
  50832. height: math.unit(12, "feet"),
  50833. default: true
  50834. },
  50835. ]
  50836. ))
  50837. characterMakers.push(() => makeCharacter(
  50838. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50839. {
  50840. front: {
  50841. height: math.unit(9, "feet"),
  50842. weight: math.unit(1500, "lb"),
  50843. name: "Front",
  50844. image: {
  50845. source: "./media/characters/nora/front.svg",
  50846. extra: 1348/1286,
  50847. bottom: 218/1566
  50848. }
  50849. },
  50850. erect: {
  50851. height: math.unit(9, "feet"),
  50852. weight: math.unit(11500, "lb"),
  50853. name: "Erect",
  50854. image: {
  50855. source: "./media/characters/nora/erect.svg",
  50856. extra: 1488/1433,
  50857. bottom: 133/1621
  50858. }
  50859. },
  50860. },
  50861. [
  50862. {
  50863. name: "Normal",
  50864. height: math.unit(9, "feet"),
  50865. default: true
  50866. },
  50867. ]
  50868. ))
  50869. characterMakers.push(() => makeCharacter(
  50870. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50871. {
  50872. front: {
  50873. height: math.unit(25, "feet"),
  50874. weight: math.unit(27500, "lb"),
  50875. name: "Front",
  50876. image: {
  50877. source: "./media/characters/north-caudin/front.svg",
  50878. extra: 1184/1082,
  50879. bottom: 23/1207
  50880. }
  50881. },
  50882. },
  50883. [
  50884. {
  50885. name: "Compressed",
  50886. height: math.unit(10, "feet")
  50887. },
  50888. {
  50889. name: "Normal",
  50890. height: math.unit(25, "feet"),
  50891. default: true
  50892. },
  50893. ]
  50894. ))
  50895. characterMakers.push(() => makeCharacter(
  50896. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50897. {
  50898. front: {
  50899. height: math.unit(9, "feet"),
  50900. weight: math.unit(1250, "lb"),
  50901. name: "Front",
  50902. image: {
  50903. source: "./media/characters/merrian/front.svg",
  50904. extra: 2393/2304,
  50905. bottom: 40/2433
  50906. }
  50907. },
  50908. },
  50909. [
  50910. {
  50911. name: "Normal",
  50912. height: math.unit(9, "feet"),
  50913. default: true
  50914. },
  50915. ]
  50916. ))
  50917. characterMakers.push(() => makeCharacter(
  50918. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50919. {
  50920. front: {
  50921. height: math.unit(9, "feet"),
  50922. weight: math.unit(1000, "lb"),
  50923. name: "Front",
  50924. image: {
  50925. source: "./media/characters/hazel/front.svg",
  50926. extra: 2351/2298,
  50927. bottom: 38/2389
  50928. }
  50929. },
  50930. },
  50931. [
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(9, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(13, "feet"),
  50944. weight: math.unit(3200, "lb"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/emma/front.svg",
  50948. extra: 2263/2029,
  50949. bottom: 68/2331
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Normal",
  50956. height: math.unit(13, "feet"),
  50957. default: true
  50958. },
  50959. ]
  50960. ))
  50961. characterMakers.push(() => makeCharacter(
  50962. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50963. {
  50964. front: {
  50965. height: math.unit(11 + 9/12, "feet"),
  50966. weight: math.unit(2500, "lb"),
  50967. name: "Front",
  50968. image: {
  50969. source: "./media/characters/ilumina/front.svg",
  50970. extra: 2248/2209,
  50971. bottom: 164/2412
  50972. }
  50973. },
  50974. },
  50975. [
  50976. {
  50977. name: "Normal",
  50978. height: math.unit(11 + 9/12, "feet"),
  50979. default: true
  50980. },
  50981. ]
  50982. ))
  50983. characterMakers.push(() => makeCharacter(
  50984. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50985. {
  50986. front: {
  50987. height: math.unit(8 + 10/12, "feet"),
  50988. weight: math.unit(1350, "lb"),
  50989. name: "Front",
  50990. image: {
  50991. source: "./media/characters/moonshine/front.svg",
  50992. extra: 2395/2288,
  50993. bottom: 40/2435
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(8 + 10/12, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(14, "feet"),
  51010. weight: math.unit(3400, "lb"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/aletia/front.svg",
  51014. extra: 1185/1052,
  51015. bottom: 21/1206
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Compressed",
  51022. height: math.unit(8, "feet")
  51023. },
  51024. {
  51025. name: "Normal",
  51026. height: math.unit(14, "feet"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51033. {
  51034. front: {
  51035. height: math.unit(17, "feet"),
  51036. weight: math.unit(6500, "lb"),
  51037. name: "Front",
  51038. image: {
  51039. source: "./media/characters/deidra/front.svg",
  51040. extra: 1201/1081,
  51041. bottom: 16/1217
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Compressed",
  51048. height: math.unit(9 + 6/12, "feet")
  51049. },
  51050. {
  51051. name: "Normal",
  51052. height: math.unit(17, "feet"),
  51053. default: true
  51054. },
  51055. ]
  51056. ))
  51057. characterMakers.push(() => makeCharacter(
  51058. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51059. {
  51060. front: {
  51061. height: math.unit(7 + 4/12, "feet"),
  51062. weight: math.unit(280, "lb"),
  51063. name: "Front",
  51064. image: {
  51065. source: "./media/characters/freki-yrmori/front.svg",
  51066. extra: 1286/1182,
  51067. bottom: 29/1315
  51068. }
  51069. },
  51070. maw: {
  51071. height: math.unit(0.9, "feet"),
  51072. name: "Maw",
  51073. image: {
  51074. source: "./media/characters/freki-yrmori/maw.svg"
  51075. }
  51076. },
  51077. },
  51078. [
  51079. {
  51080. name: "Normal",
  51081. height: math.unit(7 + 4/12, "feet"),
  51082. default: true
  51083. },
  51084. {
  51085. name: "Macro",
  51086. height: math.unit(38.5, "meters")
  51087. },
  51088. ]
  51089. ))
  51090. characterMakers.push(() => makeCharacter(
  51091. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51092. {
  51093. side: {
  51094. height: math.unit(47.2, "meters"),
  51095. weight: math.unit(10000, "tons"),
  51096. name: "Side",
  51097. image: {
  51098. source: "./media/characters/aetherios/side.svg",
  51099. extra: 2363/642,
  51100. bottom: 221/2584
  51101. }
  51102. },
  51103. top: {
  51104. height: math.unit(240, "meters"),
  51105. weight: math.unit(10000, "tons"),
  51106. name: "Top",
  51107. image: {
  51108. source: "./media/characters/aetherios/top.svg"
  51109. }
  51110. },
  51111. bottom: {
  51112. height: math.unit(240, "meters"),
  51113. weight: math.unit(10000, "tons"),
  51114. name: "Bottom",
  51115. image: {
  51116. source: "./media/characters/aetherios/bottom.svg"
  51117. }
  51118. },
  51119. head: {
  51120. height: math.unit(38.6, "meters"),
  51121. name: "Head",
  51122. image: {
  51123. source: "./media/characters/aetherios/head.svg",
  51124. extra: 1335/1112,
  51125. bottom: 0/1335
  51126. }
  51127. },
  51128. front: {
  51129. height: math.unit(29, "meters"),
  51130. name: "Front",
  51131. image: {
  51132. source: "./media/characters/aetherios/front.svg",
  51133. extra: 1266/953,
  51134. bottom: 158/1424
  51135. }
  51136. },
  51137. maw: {
  51138. height: math.unit(16.37, "meters"),
  51139. name: "Maw",
  51140. image: {
  51141. source: "./media/characters/aetherios/maw.svg",
  51142. extra: 748/637,
  51143. bottom: 0/748
  51144. },
  51145. extraAttributes: {
  51146. preyCapacity: {
  51147. name: "Capacity",
  51148. power: 3,
  51149. type: "volume",
  51150. base: math.unit(1000, "people")
  51151. },
  51152. tongueSize: {
  51153. name: "Tongue Size",
  51154. power: 2,
  51155. type: "area",
  51156. base: math.unit(21, "m^2")
  51157. }
  51158. }
  51159. },
  51160. forepaw: {
  51161. height: math.unit(18, "meters"),
  51162. name: "Forepaw",
  51163. image: {
  51164. source: "./media/characters/aetherios/forepaw.svg"
  51165. }
  51166. },
  51167. hindpaw: {
  51168. height: math.unit(23, "meters"),
  51169. name: "Hindpaw",
  51170. image: {
  51171. source: "./media/characters/aetherios/hindpaw.svg"
  51172. }
  51173. },
  51174. genitals: {
  51175. height: math.unit(42, "meters"),
  51176. name: "Genitals",
  51177. image: {
  51178. source: "./media/characters/aetherios/genitals.svg"
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(47.2, "meters"),
  51186. default: true
  51187. },
  51188. {
  51189. name: "Macro",
  51190. height: math.unit(160, "meters")
  51191. },
  51192. {
  51193. name: "Mega",
  51194. height: math.unit(1.87, "km")
  51195. },
  51196. {
  51197. name: "Giga",
  51198. height: math.unit(40000, "km")
  51199. },
  51200. {
  51201. name: "Stellar",
  51202. height: math.unit(158000000, "km")
  51203. },
  51204. {
  51205. name: "Cosmic",
  51206. height: math.unit(9.46e12, "km")
  51207. },
  51208. ]
  51209. ))
  51210. characterMakers.push(() => makeCharacter(
  51211. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51212. {
  51213. front: {
  51214. height: math.unit(5 + 4/12, "feet"),
  51215. weight: math.unit(80, "lb"),
  51216. name: "Front",
  51217. image: {
  51218. source: "./media/characters/mizu-gieeg/front.svg",
  51219. extra: 850/709,
  51220. bottom: 52/902
  51221. }
  51222. },
  51223. back: {
  51224. height: math.unit(5 + 4/12, "feet"),
  51225. weight: math.unit(80, "lb"),
  51226. name: "Back",
  51227. image: {
  51228. source: "./media/characters/mizu-gieeg/back.svg",
  51229. extra: 882/745,
  51230. bottom: 25/907
  51231. }
  51232. },
  51233. },
  51234. [
  51235. {
  51236. name: "Normal",
  51237. height: math.unit(5 + 4/12, "feet"),
  51238. default: true
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51244. {
  51245. front: {
  51246. height: math.unit(6, "feet"),
  51247. name: "Front",
  51248. image: {
  51249. source: "./media/characters/roselle-st-papier/front.svg",
  51250. extra: 1430/1280,
  51251. bottom: 37/1467
  51252. }
  51253. },
  51254. back: {
  51255. height: math.unit(6, "feet"),
  51256. name: "Back",
  51257. image: {
  51258. source: "./media/characters/roselle-st-papier/back.svg",
  51259. extra: 1491/1296,
  51260. bottom: 23/1514
  51261. }
  51262. },
  51263. ear: {
  51264. height: math.unit(1.26, "feet"),
  51265. name: "Ear",
  51266. image: {
  51267. source: "./media/characters/roselle-st-papier/ear.svg"
  51268. }
  51269. },
  51270. },
  51271. [
  51272. {
  51273. name: "Normal",
  51274. height: math.unit(150, "feet"),
  51275. default: true
  51276. },
  51277. ]
  51278. ))
  51279. characterMakers.push(() => makeCharacter(
  51280. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51281. {
  51282. front: {
  51283. height: math.unit(1, "inches"),
  51284. name: "Front",
  51285. image: {
  51286. source: "./media/characters/valargent/front.svg",
  51287. extra: 1825/1694,
  51288. bottom: 62/1887
  51289. }
  51290. },
  51291. back: {
  51292. height: math.unit(1, "inches"),
  51293. name: "Back",
  51294. image: {
  51295. source: "./media/characters/valargent/back.svg",
  51296. extra: 1775/1682,
  51297. bottom: 88/1863
  51298. }
  51299. },
  51300. },
  51301. [
  51302. {
  51303. name: "Micro",
  51304. height: math.unit(1, "inch"),
  51305. default: true
  51306. },
  51307. ]
  51308. ))
  51309. characterMakers.push(() => makeCharacter(
  51310. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51311. {
  51312. front: {
  51313. height: math.unit(3.4, "meters"),
  51314. name: "Front",
  51315. image: {
  51316. source: "./media/characters/zarina/front.svg",
  51317. extra: 1733/1425,
  51318. bottom: 93/1826
  51319. }
  51320. },
  51321. squatting: {
  51322. height: math.unit(2.14, "meters"),
  51323. name: "Squatting",
  51324. image: {
  51325. source: "./media/characters/zarina/squatting.svg",
  51326. extra: 1073/788,
  51327. bottom: 63/1136
  51328. }
  51329. },
  51330. back: {
  51331. height: math.unit(2.14, "meters"),
  51332. name: "Back",
  51333. image: {
  51334. source: "./media/characters/zarina/back.svg",
  51335. extra: 1128/885,
  51336. bottom: 0/1128
  51337. }
  51338. },
  51339. },
  51340. [
  51341. {
  51342. name: "Normal",
  51343. height: math.unit(3.4, "meters"),
  51344. default: true
  51345. },
  51346. {
  51347. name: "Big",
  51348. height: math.unit(5, "meters")
  51349. },
  51350. {
  51351. name: "Macro",
  51352. height: math.unit(110, "meters")
  51353. },
  51354. ]
  51355. ))
  51356. characterMakers.push(() => makeCharacter(
  51357. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51358. {
  51359. front: {
  51360. height: math.unit(7, "feet"),
  51361. name: "Front",
  51362. image: {
  51363. source: "./media/characters/ventus-astro-fox/front.svg",
  51364. extra: 1792/1623,
  51365. bottom: 28/1820
  51366. }
  51367. },
  51368. back: {
  51369. height: math.unit(7, "feet"),
  51370. name: "Back",
  51371. image: {
  51372. source: "./media/characters/ventus-astro-fox/back.svg",
  51373. extra: 1789/1620,
  51374. bottom: 31/1820
  51375. }
  51376. },
  51377. outfit: {
  51378. height: math.unit(7, "feet"),
  51379. name: "Outfit",
  51380. image: {
  51381. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51382. extra: 1054/925,
  51383. bottom: 15/1069
  51384. }
  51385. },
  51386. head: {
  51387. height: math.unit(1.12, "feet"),
  51388. name: "Head",
  51389. image: {
  51390. source: "./media/characters/ventus-astro-fox/head.svg",
  51391. extra: 866/504,
  51392. bottom: 0/866
  51393. }
  51394. },
  51395. hand: {
  51396. height: math.unit(1, "feet"),
  51397. name: "Hand",
  51398. image: {
  51399. source: "./media/characters/ventus-astro-fox/hand.svg"
  51400. }
  51401. },
  51402. paw: {
  51403. height: math.unit(1.5, "feet"),
  51404. name: "Paw",
  51405. image: {
  51406. source: "./media/characters/ventus-astro-fox/paw.svg"
  51407. }
  51408. },
  51409. },
  51410. [
  51411. {
  51412. name: "Normal",
  51413. height: math.unit(7, "feet"),
  51414. default: true
  51415. },
  51416. {
  51417. name: "Macro",
  51418. height: math.unit(200, "feet")
  51419. },
  51420. {
  51421. name: "Cosmic",
  51422. height: math.unit(3, "universes")
  51423. },
  51424. ]
  51425. ))
  51426. characterMakers.push(() => makeCharacter(
  51427. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51428. {
  51429. front: {
  51430. height: math.unit(3, "meters"),
  51431. weight: math.unit(7000, "lb"),
  51432. name: "Front",
  51433. image: {
  51434. source: "./media/characters/core-t/front.svg",
  51435. extra: 5729/4941,
  51436. bottom: 1129/6858
  51437. }
  51438. },
  51439. },
  51440. [
  51441. {
  51442. name: "Big",
  51443. height: math.unit(3, "meters"),
  51444. default: true
  51445. },
  51446. ]
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51450. {
  51451. normal: {
  51452. height: math.unit(6 + 6/12, "feet"),
  51453. weight: math.unit(275, "lb"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/cadbunny/normal.svg",
  51457. extra: 1129/947,
  51458. bottom: 93/1222
  51459. },
  51460. default: true,
  51461. form: "normal"
  51462. },
  51463. gigantamax: {
  51464. height: math.unit(26, "feet"),
  51465. weight: math.unit(16000, "lb"),
  51466. name: "Front",
  51467. image: {
  51468. source: "./media/characters/cadbunny/gigantamax.svg",
  51469. extra: 1133/944,
  51470. bottom: 90/1223
  51471. },
  51472. default: true,
  51473. form: "gigantamax"
  51474. },
  51475. },
  51476. [
  51477. {
  51478. name: "Normal",
  51479. height: math.unit(6 + 6/12, "feet"),
  51480. default: true,
  51481. form: "normal"
  51482. },
  51483. {
  51484. name: "Small",
  51485. height: math.unit(26, "feet"),
  51486. default: true,
  51487. form: "gigantamax"
  51488. },
  51489. {
  51490. name: "Large",
  51491. height: math.unit(78, "feet"),
  51492. form: "gigantamax"
  51493. },
  51494. ],
  51495. {
  51496. "normal": {
  51497. name: "Normal",
  51498. default: true
  51499. },
  51500. "gigantamax": {
  51501. name: "Gigantamax"
  51502. }
  51503. }
  51504. ))
  51505. characterMakers.push(() => makeCharacter(
  51506. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51507. {
  51508. anthroFront: {
  51509. height: math.unit(8, "feet"),
  51510. weight: math.unit(300, "lb"),
  51511. name: "Front",
  51512. image: {
  51513. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51514. extra: 1272/1176,
  51515. bottom: 53/1325
  51516. },
  51517. form: "anthro",
  51518. default: true
  51519. },
  51520. feralSide: {
  51521. height: math.unit(4, "feet"),
  51522. weight: math.unit(250, "lb"),
  51523. name: "Side",
  51524. image: {
  51525. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51526. extra: 731/621,
  51527. bottom: 0/731
  51528. },
  51529. form: "feral",
  51530. default: true
  51531. },
  51532. },
  51533. [
  51534. {
  51535. name: "Regular",
  51536. height: math.unit(8, "feet"),
  51537. form: "anthro"
  51538. },
  51539. {
  51540. name: "Macro",
  51541. height: math.unit(250, "feet"),
  51542. form: "anthro",
  51543. default: true
  51544. },
  51545. {
  51546. name: "Regular",
  51547. height: math.unit(4, "feet"),
  51548. form: "feral"
  51549. },
  51550. {
  51551. name: "Macro",
  51552. height: math.unit(125, "feet"),
  51553. form: "feral",
  51554. default: true
  51555. },
  51556. ],
  51557. {
  51558. "anthro": {
  51559. name: "Anthro",
  51560. default: true
  51561. },
  51562. "feral": {
  51563. name: "Feral",
  51564. },
  51565. }
  51566. ))
  51567. characterMakers.push(() => makeCharacter(
  51568. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51569. {
  51570. front: {
  51571. height: math.unit(11 + 10/12, "feet"),
  51572. weight: math.unit(1587, "kg"),
  51573. name: "Front",
  51574. image: {
  51575. source: "./media/characters/maple-javira-dragon/front.svg",
  51576. extra: 1136/744,
  51577. bottom: 73/1209
  51578. }
  51579. },
  51580. side: {
  51581. height: math.unit(11 + 10/12, "feet"),
  51582. weight: math.unit(1587, "kg"),
  51583. name: "Side",
  51584. image: {
  51585. source: "./media/characters/maple-javira-dragon/side.svg",
  51586. extra: 712/505,
  51587. bottom: 17/729
  51588. }
  51589. },
  51590. head: {
  51591. height: math.unit(8.05, "feet"),
  51592. name: "Head",
  51593. image: {
  51594. source: "./media/characters/maple-javira-dragon/head.svg",
  51595. extra: 1420/1344,
  51596. bottom: 0/1420
  51597. }
  51598. },
  51599. },
  51600. [
  51601. {
  51602. name: "Normal",
  51603. height: math.unit(11 + 10/12, "feet"),
  51604. default: true
  51605. },
  51606. ]
  51607. ))
  51608. characterMakers.push(() => makeCharacter(
  51609. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51610. {
  51611. front: {
  51612. height: math.unit(117, "cm"),
  51613. weight: math.unit(50, "kg"),
  51614. name: "Front",
  51615. image: {
  51616. source: "./media/characters/sonia-wyverntail/front.svg",
  51617. extra: 708/592,
  51618. bottom: 25/733
  51619. }
  51620. },
  51621. },
  51622. [
  51623. {
  51624. name: "Normal",
  51625. height: math.unit(117, "cm"),
  51626. default: true
  51627. },
  51628. ]
  51629. ))
  51630. characterMakers.push(() => makeCharacter(
  51631. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51632. {
  51633. front: {
  51634. height: math.unit(6 + 5/12, "feet"),
  51635. name: "Front",
  51636. image: {
  51637. source: "./media/characters/micah/front.svg",
  51638. extra: 1758/1546,
  51639. bottom: 214/1972
  51640. }
  51641. },
  51642. },
  51643. [
  51644. {
  51645. name: "Normal",
  51646. height: math.unit(6 + 5/12, "feet"),
  51647. default: true
  51648. },
  51649. ]
  51650. ))
  51651. characterMakers.push(() => makeCharacter(
  51652. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51653. {
  51654. front: {
  51655. height: math.unit(1.75, "meters"),
  51656. weight: math.unit(100, "kg"),
  51657. name: "Front",
  51658. image: {
  51659. source: "./media/characters/zarya/front.svg",
  51660. extra: 741/735,
  51661. bottom: 44/785
  51662. },
  51663. extraAttributes: {
  51664. "tailLength": {
  51665. name: "Tail Length",
  51666. power: 1,
  51667. type: "length",
  51668. base: math.unit(180, "cm")
  51669. },
  51670. "pawLength": {
  51671. name: "Paw Length",
  51672. power: 1,
  51673. type: "length",
  51674. base: math.unit(31, "cm")
  51675. },
  51676. }
  51677. },
  51678. side: {
  51679. height: math.unit(1.75, "meters"),
  51680. weight: math.unit(100, "kg"),
  51681. name: "Side",
  51682. image: {
  51683. source: "./media/characters/zarya/side.svg",
  51684. extra: 776/770,
  51685. bottom: 17/793
  51686. },
  51687. extraAttributes: {
  51688. "tailLength": {
  51689. name: "Tail Length",
  51690. power: 1,
  51691. type: "length",
  51692. base: math.unit(180, "cm")
  51693. },
  51694. "pawLength": {
  51695. name: "Paw Length",
  51696. power: 1,
  51697. type: "length",
  51698. base: math.unit(31, "cm")
  51699. },
  51700. }
  51701. },
  51702. back: {
  51703. height: math.unit(1.75, "meters"),
  51704. weight: math.unit(100, "kg"),
  51705. name: "Back",
  51706. image: {
  51707. source: "./media/characters/zarya/back.svg",
  51708. extra: 741/735,
  51709. bottom: 44/785
  51710. },
  51711. extraAttributes: {
  51712. "tailLength": {
  51713. name: "Tail Length",
  51714. power: 1,
  51715. type: "length",
  51716. base: math.unit(180, "cm")
  51717. },
  51718. "pawLength": {
  51719. name: "Paw Length",
  51720. power: 1,
  51721. type: "length",
  51722. base: math.unit(31, "cm")
  51723. },
  51724. }
  51725. },
  51726. frontNoTail: {
  51727. height: math.unit(1.75, "meters"),
  51728. weight: math.unit(100, "kg"),
  51729. name: "Front (No Tail)",
  51730. image: {
  51731. source: "./media/characters/zarya/front-no-tail.svg",
  51732. extra: 741/735,
  51733. bottom: 44/785
  51734. },
  51735. extraAttributes: {
  51736. "tailLength": {
  51737. name: "Tail Length",
  51738. power: 1,
  51739. type: "length",
  51740. base: math.unit(180, "cm")
  51741. },
  51742. "pawLength": {
  51743. name: "Paw Length",
  51744. power: 1,
  51745. type: "length",
  51746. base: math.unit(31, "cm")
  51747. },
  51748. }
  51749. },
  51750. dressed: {
  51751. height: math.unit(1.75, "meters"),
  51752. weight: math.unit(100, "kg"),
  51753. name: "Dressed",
  51754. image: {
  51755. source: "./media/characters/zarya/dressed.svg",
  51756. extra: 683/672,
  51757. bottom: 79/762
  51758. },
  51759. extraAttributes: {
  51760. "tailLength": {
  51761. name: "Tail Length",
  51762. power: 1,
  51763. type: "length",
  51764. base: math.unit(180, "cm")
  51765. },
  51766. "pawLength": {
  51767. name: "Paw Length",
  51768. power: 1,
  51769. type: "length",
  51770. base: math.unit(31, "cm")
  51771. },
  51772. }
  51773. },
  51774. },
  51775. [
  51776. {
  51777. name: "Micro",
  51778. height: math.unit(5, "cm")
  51779. },
  51780. {
  51781. name: "Normal",
  51782. height: math.unit(1.75, "meters"),
  51783. default: true
  51784. },
  51785. {
  51786. name: "Macro",
  51787. height: math.unit(122, "meters")
  51788. },
  51789. ]
  51790. ))
  51791. characterMakers.push(() => makeCharacter(
  51792. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51793. {
  51794. front: {
  51795. height: math.unit(7.5, "feet"),
  51796. name: "Front",
  51797. image: {
  51798. source: "./media/characters/sven-hatisson/front.svg",
  51799. extra: 917/857,
  51800. bottom: 42/959
  51801. }
  51802. },
  51803. back: {
  51804. height: math.unit(7.5, "feet"),
  51805. name: "Back",
  51806. image: {
  51807. source: "./media/characters/sven-hatisson/back.svg",
  51808. extra: 903/856,
  51809. bottom: 15/918
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Base Height",
  51816. height: math.unit(7.5, "feet")
  51817. },
  51818. {
  51819. name: "Usual Height",
  51820. height: math.unit(13.5, "feet"),
  51821. default: true
  51822. },
  51823. {
  51824. name: "Smaller Macro",
  51825. height: math.unit(85, "feet")
  51826. },
  51827. {
  51828. name: "Moderate Macro",
  51829. height: math.unit(320, "feet")
  51830. },
  51831. {
  51832. name: "Large Macro",
  51833. height: math.unit(1000, "feet")
  51834. },
  51835. {
  51836. name: "Largest Size",
  51837. height: math.unit(2, "miles")
  51838. },
  51839. ]
  51840. ))
  51841. characterMakers.push(() => makeCharacter(
  51842. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51843. {
  51844. side: {
  51845. height: math.unit(1.8, "meters"),
  51846. weight: math.unit(275, "kg"),
  51847. name: "Side",
  51848. image: {
  51849. source: "./media/characters/terra/side.svg",
  51850. extra: 1273/1147,
  51851. bottom: 0/1273
  51852. }
  51853. },
  51854. },
  51855. [
  51856. {
  51857. name: "Normal",
  51858. height: math.unit(16.2, "meters"),
  51859. default: true
  51860. },
  51861. ]
  51862. ))
  51863. characterMakers.push(() => makeCharacter(
  51864. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51865. {
  51866. borzoiFront: {
  51867. height: math.unit(6 + 9/12, "feet"),
  51868. name: "Front",
  51869. image: {
  51870. source: "./media/characters/rae/borzoi-front.svg",
  51871. extra: 1161/1098,
  51872. bottom: 31/1192
  51873. },
  51874. form: "borzoi",
  51875. default: true
  51876. },
  51877. werewolfFront: {
  51878. height: math.unit(8 + 7/12, "feet"),
  51879. name: "Front",
  51880. image: {
  51881. source: "./media/characters/rae/werewolf-front.svg",
  51882. extra: 1411/1334,
  51883. bottom: 127/1538
  51884. },
  51885. form: "werewolf",
  51886. default: true
  51887. },
  51888. },
  51889. [
  51890. {
  51891. name: "Normal",
  51892. height: math.unit(6 + 9/12, "feet"),
  51893. default: true,
  51894. form: "borzoi"
  51895. },
  51896. {
  51897. name: "Normal",
  51898. height: math.unit(8 + 7/12, "feet"),
  51899. default: true,
  51900. form: "werewolf"
  51901. },
  51902. ],
  51903. {
  51904. "borzoi": {
  51905. name: "Borzoi",
  51906. default: true
  51907. },
  51908. "werewolf": {
  51909. name: "Werewolf",
  51910. },
  51911. }
  51912. ))
  51913. characterMakers.push(() => makeCharacter(
  51914. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51915. {
  51916. front: {
  51917. height: math.unit(8 + 7/12, "feet"),
  51918. weight: math.unit(482, "lb"),
  51919. name: "Front",
  51920. image: {
  51921. source: "./media/characters/kit/front.svg",
  51922. extra: 1247/1103,
  51923. bottom: 41/1288
  51924. }
  51925. },
  51926. back: {
  51927. height: math.unit(8 + 7/12, "feet"),
  51928. weight: math.unit(482, "lb"),
  51929. name: "Back",
  51930. image: {
  51931. source: "./media/characters/kit/back.svg",
  51932. extra: 1252/1123,
  51933. bottom: 21/1273
  51934. }
  51935. },
  51936. paw: {
  51937. height: math.unit(1.46, "feet"),
  51938. name: "Paw",
  51939. image: {
  51940. source: "./media/characters/kit/paw.svg"
  51941. }
  51942. },
  51943. },
  51944. [
  51945. {
  51946. name: "Normal",
  51947. height: math.unit(2.61, "meters"),
  51948. default: true
  51949. },
  51950. {
  51951. name: "\"Tall\"",
  51952. height: math.unit(8.21, "meters")
  51953. },
  51954. {
  51955. name: "Tall",
  51956. height: math.unit(19.6, "meters")
  51957. },
  51958. {
  51959. name: "Very Tall",
  51960. height: math.unit(57.91, "meters")
  51961. },
  51962. {
  51963. name: "Semi-Macro",
  51964. height: math.unit(138.64, "meters")
  51965. },
  51966. {
  51967. name: "Macro",
  51968. height: math.unit(831.99, "meters")
  51969. },
  51970. {
  51971. name: "EX-Macro",
  51972. height: math.unit(96451121, "meters")
  51973. },
  51974. {
  51975. name: "S1-Omnipotent",
  51976. height: math.unit(4.42074e+9, "meters")
  51977. },
  51978. {
  51979. name: "S2-Omnipotent",
  51980. height: math.unit(9.42074e+17, "meters")
  51981. },
  51982. {
  51983. name: "Omnipotent",
  51984. height: math.unit(4.23112e+24, "meters")
  51985. },
  51986. {
  51987. name: "Hypergod",
  51988. height: math.unit(5.05176e+27, "meters")
  51989. },
  51990. {
  51991. name: "Hypergod-EX",
  51992. height: math.unit(9.45532e+49, "meters")
  51993. },
  51994. {
  51995. name: "Hypergod-SP",
  51996. height: math.unit(9.45532e+195, "meters")
  51997. },
  51998. ]
  51999. ))
  52000. characterMakers.push(() => makeCharacter(
  52001. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52002. {
  52003. side: {
  52004. height: math.unit(0.6, "meters"),
  52005. weight: math.unit(24, "kg"),
  52006. name: "Side",
  52007. image: {
  52008. source: "./media/characters/celeste/side.svg",
  52009. extra: 810/517,
  52010. bottom: 53/863
  52011. }
  52012. },
  52013. },
  52014. [
  52015. {
  52016. name: "Velociraptor",
  52017. height: math.unit(0.6, "meters"),
  52018. default: true
  52019. },
  52020. {
  52021. name: "Utahraptor",
  52022. height: math.unit(1.8, "meters")
  52023. },
  52024. {
  52025. name: "Gallimimus",
  52026. height: math.unit(4.0, "meters")
  52027. },
  52028. {
  52029. name: "Large",
  52030. height: math.unit(20, "meters")
  52031. },
  52032. {
  52033. name: "Planetary",
  52034. height: math.unit(50, "megameters")
  52035. },
  52036. {
  52037. name: "Stellar",
  52038. height: math.unit(1.5, "gigameters")
  52039. },
  52040. {
  52041. name: "Galactic",
  52042. height: math.unit(100, "exameters")
  52043. },
  52044. ]
  52045. ))
  52046. characterMakers.push(() => makeCharacter(
  52047. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52048. {
  52049. front: {
  52050. height: math.unit(6, "feet"),
  52051. weight: math.unit(210, "lb"),
  52052. name: "Front",
  52053. image: {
  52054. source: "./media/characters/glacia/front.svg",
  52055. extra: 958/901,
  52056. bottom: 45/1003
  52057. }
  52058. },
  52059. },
  52060. [
  52061. {
  52062. name: "Macro",
  52063. height: math.unit(1000, "meters"),
  52064. default: true
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52070. {
  52071. front: {
  52072. height: math.unit(4, "meters"),
  52073. name: "Front",
  52074. image: {
  52075. source: "./media/characters/giri/front.svg",
  52076. extra: 966/894,
  52077. bottom: 21/987
  52078. }
  52079. },
  52080. },
  52081. [
  52082. {
  52083. name: "Normal",
  52084. height: math.unit(4, "meters"),
  52085. default: true
  52086. },
  52087. ]
  52088. ))
  52089. characterMakers.push(() => makeCharacter(
  52090. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52091. {
  52092. back: {
  52093. height: math.unit(4, "feet"),
  52094. weight: math.unit(37, "lb"),
  52095. name: "Back",
  52096. image: {
  52097. source: "./media/characters/tin/back.svg",
  52098. extra: 845/780,
  52099. bottom: 28/873
  52100. }
  52101. },
  52102. },
  52103. [
  52104. {
  52105. name: "Normal",
  52106. height: math.unit(4, "feet"),
  52107. default: true
  52108. },
  52109. ]
  52110. ))
  52111. characterMakers.push(() => makeCharacter(
  52112. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52113. {
  52114. front: {
  52115. height: math.unit(25, "feet"),
  52116. name: "Front",
  52117. image: {
  52118. source: "./media/characters/cadenza-vivace/front.svg",
  52119. extra: 1842/1578,
  52120. bottom: 30/1872
  52121. }
  52122. },
  52123. },
  52124. [
  52125. {
  52126. name: "Macro",
  52127. height: math.unit(25, "feet"),
  52128. default: true
  52129. },
  52130. ]
  52131. ))
  52132. characterMakers.push(() => makeCharacter(
  52133. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52134. {
  52135. front: {
  52136. height: math.unit(10, "feet"),
  52137. weight: math.unit(625, "kg"),
  52138. name: "Front",
  52139. image: {
  52140. source: "./media/characters/zain/front.svg",
  52141. extra: 1682/1498,
  52142. bottom: 223/1905
  52143. }
  52144. },
  52145. back: {
  52146. height: math.unit(10, "feet"),
  52147. weight: math.unit(625, "kg"),
  52148. name: "Back",
  52149. image: {
  52150. source: "./media/characters/zain/back.svg",
  52151. extra: 1814/1657,
  52152. bottom: 152/1966
  52153. }
  52154. },
  52155. head: {
  52156. height: math.unit(10, "feet"),
  52157. weight: math.unit(625, "kg"),
  52158. name: "Head",
  52159. image: {
  52160. source: "./media/characters/zain/head.svg",
  52161. extra: 1059/762,
  52162. bottom: 0/1059
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(10, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(6 + 5/12, "feet"),
  52179. weight: math.unit(750, "lb"),
  52180. name: "Front",
  52181. image: {
  52182. source: "./media/characters/ruchex/front.svg",
  52183. extra: 877/820,
  52184. bottom: 17/894
  52185. },
  52186. extraAttributes: {
  52187. "width": {
  52188. name: "Width",
  52189. power: 1,
  52190. type: "length",
  52191. base: math.unit(4.757, "feet")
  52192. },
  52193. }
  52194. },
  52195. },
  52196. [
  52197. {
  52198. name: "Normal",
  52199. height: math.unit(6 + 5/12, "feet"),
  52200. default: true
  52201. },
  52202. ]
  52203. ))
  52204. characterMakers.push(() => makeCharacter(
  52205. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52206. {
  52207. dressedFront: {
  52208. height: math.unit(191, "cm"),
  52209. weight: math.unit(80, "kg"),
  52210. name: "Front",
  52211. image: {
  52212. source: "./media/characters/buster/dressed-front.svg",
  52213. extra: 1022/973,
  52214. bottom: 69/1091
  52215. }
  52216. },
  52217. dressedBack: {
  52218. height: math.unit(191, "cm"),
  52219. weight: math.unit(80, "kg"),
  52220. name: "Back",
  52221. image: {
  52222. source: "./media/characters/buster/dressed-back.svg",
  52223. extra: 1018/970,
  52224. bottom: 55/1073
  52225. }
  52226. },
  52227. nudeFront: {
  52228. height: math.unit(191, "cm"),
  52229. weight: math.unit(80, "kg"),
  52230. name: "Front (Nude)",
  52231. image: {
  52232. source: "./media/characters/buster/nude-front.svg",
  52233. extra: 1022/973,
  52234. bottom: 69/1091
  52235. }
  52236. },
  52237. nudeBack: {
  52238. height: math.unit(191, "cm"),
  52239. weight: math.unit(80, "kg"),
  52240. name: "Back (Nude)",
  52241. image: {
  52242. source: "./media/characters/buster/nude-back.svg",
  52243. extra: 1018/970,
  52244. bottom: 55/1073
  52245. }
  52246. },
  52247. dick: {
  52248. height: math.unit(2.59, "feet"),
  52249. name: "Dick",
  52250. image: {
  52251. source: "./media/characters/buster/dick.svg"
  52252. }
  52253. },
  52254. ass: {
  52255. height: math.unit(1.2, "feet"),
  52256. name: "Ass",
  52257. image: {
  52258. source: "./media/characters/buster/ass.svg"
  52259. }
  52260. },
  52261. },
  52262. [
  52263. {
  52264. name: "Normal",
  52265. height: math.unit(191, "cm"),
  52266. default: true
  52267. },
  52268. ]
  52269. ))
  52270. characterMakers.push(() => makeCharacter(
  52271. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52272. {
  52273. side: {
  52274. height: math.unit(8.1, "feet"),
  52275. weight: math.unit(3500, "lb"),
  52276. name: "Side",
  52277. image: {
  52278. source: "./media/characters/sonya/side.svg",
  52279. extra: 1730/1317,
  52280. bottom: 86/1816
  52281. }
  52282. },
  52283. },
  52284. [
  52285. {
  52286. name: "Normal",
  52287. height: math.unit(8.1, "feet"),
  52288. default: true
  52289. },
  52290. ]
  52291. ))
  52292. characterMakers.push(() => makeCharacter(
  52293. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52294. {
  52295. front: {
  52296. height: math.unit(6, "feet"),
  52297. weight: math.unit(150, "lb"),
  52298. name: "Front",
  52299. image: {
  52300. source: "./media/characters/cadence-andrysiak/front.svg",
  52301. extra: 1164/1121,
  52302. bottom: 60/1224
  52303. }
  52304. },
  52305. back: {
  52306. height: math.unit(6, "feet"),
  52307. weight: math.unit(150, "lb"),
  52308. name: "Back",
  52309. image: {
  52310. source: "./media/characters/cadence-andrysiak/back.svg",
  52311. extra: 1200/1165,
  52312. bottom: 9/1209
  52313. }
  52314. },
  52315. dressed: {
  52316. height: math.unit(6, "feet"),
  52317. weight: math.unit(150, "lb"),
  52318. name: "Dressed",
  52319. image: {
  52320. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52321. extra: 1164/1121,
  52322. bottom: 60/1224
  52323. }
  52324. },
  52325. },
  52326. [
  52327. {
  52328. name: "Micro",
  52329. height: math.unit(1, "mm")
  52330. },
  52331. {
  52332. name: "Normal",
  52333. height: math.unit(6, "feet"),
  52334. default: true
  52335. },
  52336. ]
  52337. ))
  52338. characterMakers.push(() => makeCharacter(
  52339. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52340. {
  52341. front: {
  52342. height: math.unit(60, "inches"),
  52343. weight: math.unit(16, "lb"),
  52344. preyCapacity: math.unit(80, "liters"),
  52345. name: "Front",
  52346. image: {
  52347. source: "./media/characters/penny-lynx/front.svg",
  52348. extra: 1959/1769,
  52349. bottom: 49/2008
  52350. }
  52351. },
  52352. },
  52353. [
  52354. {
  52355. name: "Nokia",
  52356. height: math.unit(2, "inches")
  52357. },
  52358. {
  52359. name: "Desktop",
  52360. height: math.unit(24, "inches")
  52361. },
  52362. {
  52363. name: "TV",
  52364. height: math.unit(60, "inches")
  52365. },
  52366. {
  52367. name: "Jumbotron",
  52368. height: math.unit(12, "feet")
  52369. },
  52370. {
  52371. name: "Billboard",
  52372. height: math.unit(48, "feet"),
  52373. default: true
  52374. },
  52375. {
  52376. name: "IMAX",
  52377. height: math.unit(96, "feet")
  52378. },
  52379. {
  52380. name: "SINGULARITY",
  52381. height: math.unit(864938, "miles")
  52382. },
  52383. ]
  52384. ))
  52385. characterMakers.push(() => makeCharacter(
  52386. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52387. {
  52388. front: {
  52389. height: math.unit(5 + 4/12, "feet"),
  52390. weight: math.unit(230, "lb"),
  52391. name: "Front",
  52392. image: {
  52393. source: "./media/characters/sukebe/front.svg",
  52394. extra: 2130/2038,
  52395. bottom: 90/2220
  52396. }
  52397. },
  52398. back: {
  52399. height: math.unit(3.48, "feet"),
  52400. weight: math.unit(230, "lb"),
  52401. name: "Back",
  52402. image: {
  52403. source: "./media/characters/sukebe/back.svg",
  52404. extra: 1670/1604,
  52405. bottom: 0/1670
  52406. }
  52407. },
  52408. },
  52409. [
  52410. {
  52411. name: "Normal",
  52412. height: math.unit(5 + 4/12, "feet"),
  52413. default: true
  52414. },
  52415. ]
  52416. ))
  52417. characterMakers.push(() => makeCharacter(
  52418. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52419. {
  52420. front: {
  52421. height: math.unit(6, "feet"),
  52422. name: "Front",
  52423. image: {
  52424. source: "./media/characters/nylla/front.svg",
  52425. extra: 1868/1699,
  52426. bottom: 97/1965
  52427. }
  52428. },
  52429. back: {
  52430. height: math.unit(6, "feet"),
  52431. name: "Back",
  52432. image: {
  52433. source: "./media/characters/nylla/back.svg",
  52434. extra: 1889/1712,
  52435. bottom: 93/1982
  52436. }
  52437. },
  52438. frontNsfw: {
  52439. height: math.unit(6, "feet"),
  52440. name: "Front (NSFW)",
  52441. image: {
  52442. source: "./media/characters/nylla/front-nsfw.svg",
  52443. extra: 1868/1699,
  52444. bottom: 97/1965
  52445. },
  52446. extraAttributes: {
  52447. "dickLength": {
  52448. name: "Dick Length",
  52449. power: 1,
  52450. type: "length",
  52451. base: math.unit(1.4, "feet")
  52452. },
  52453. "cumVolume": {
  52454. name: "Cum Volume",
  52455. power: 3,
  52456. type: "volume",
  52457. base: math.unit(100, "mL")
  52458. },
  52459. }
  52460. },
  52461. backNsfw: {
  52462. height: math.unit(6, "feet"),
  52463. name: "Back (NSFW)",
  52464. image: {
  52465. source: "./media/characters/nylla/back-nsfw.svg",
  52466. extra: 1889/1712,
  52467. bottom: 93/1982
  52468. }
  52469. },
  52470. maw: {
  52471. height: math.unit(2.10, "feet"),
  52472. name: "Maw",
  52473. image: {
  52474. source: "./media/characters/nylla/maw.svg"
  52475. }
  52476. },
  52477. paws: {
  52478. height: math.unit(2.06, "feet"),
  52479. name: "Paws",
  52480. image: {
  52481. source: "./media/characters/nylla/paws.svg"
  52482. }
  52483. },
  52484. muzzle: {
  52485. height: math.unit(0.61, "feet"),
  52486. name: "Muzzle",
  52487. image: {
  52488. source: "./media/characters/nylla/muzzle.svg"
  52489. }
  52490. },
  52491. sheath: {
  52492. height: math.unit(1.305, "feet"),
  52493. name: "Sheath",
  52494. image: {
  52495. source: "./media/characters/nylla/sheath.svg"
  52496. }
  52497. },
  52498. },
  52499. [
  52500. {
  52501. name: "Micro",
  52502. height: math.unit(7.5, "inches")
  52503. },
  52504. {
  52505. name: "Normal",
  52506. height: math.unit(7, "feet"),
  52507. default: true
  52508. },
  52509. {
  52510. name: "Macro",
  52511. height: math.unit(60, "feet")
  52512. },
  52513. {
  52514. name: "Mega",
  52515. height: math.unit(200, "feet")
  52516. },
  52517. ]
  52518. ))
  52519. characterMakers.push(() => makeCharacter(
  52520. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52521. {
  52522. front: {
  52523. height: math.unit(10, "feet"),
  52524. weight: math.unit(2300, "lb"),
  52525. name: "Front",
  52526. image: {
  52527. source: "./media/characters/hunt3r/front.svg",
  52528. extra: 1909/1742,
  52529. bottom: 46/1955
  52530. }
  52531. },
  52532. },
  52533. [
  52534. {
  52535. name: "Normal",
  52536. height: math.unit(10, "feet"),
  52537. default: true
  52538. },
  52539. ]
  52540. ))
  52541. characterMakers.push(() => makeCharacter(
  52542. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52543. {
  52544. dressed: {
  52545. height: math.unit(11, "feet"),
  52546. weight: math.unit(18500, "lb"),
  52547. preyCapacity: math.unit(9, "people"),
  52548. name: "Dressed",
  52549. image: {
  52550. source: "./media/characters/cylphis/dressed.svg",
  52551. extra: 1028/1003,
  52552. bottom: 75/1103
  52553. },
  52554. },
  52555. undressed: {
  52556. height: math.unit(11, "feet"),
  52557. weight: math.unit(18500, "lb"),
  52558. preyCapacity: math.unit(9, "people"),
  52559. name: "Undressed",
  52560. image: {
  52561. source: "./media/characters/cylphis/undressed.svg",
  52562. extra: 1028/1003,
  52563. bottom: 75/1103
  52564. }
  52565. },
  52566. full: {
  52567. height: math.unit(11, "feet"),
  52568. weight: math.unit(18500 + 150*9, "lb"),
  52569. preyCapacity: math.unit(9, "people"),
  52570. name: "Full",
  52571. image: {
  52572. source: "./media/characters/cylphis/full.svg",
  52573. extra: 1028/1003,
  52574. bottom: 75/1103
  52575. }
  52576. },
  52577. },
  52578. [
  52579. {
  52580. name: "Small",
  52581. height: math.unit(8, "feet")
  52582. },
  52583. {
  52584. name: "Normal",
  52585. height: math.unit(11, "feet"),
  52586. default: true
  52587. },
  52588. ]
  52589. ))
  52590. characterMakers.push(() => makeCharacter(
  52591. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52592. {
  52593. front: {
  52594. height: math.unit(2 + 7/12, "feet"),
  52595. name: "Front",
  52596. image: {
  52597. source: "./media/characters/orishan/front.svg",
  52598. extra: 1058/1023,
  52599. bottom: 23/1081
  52600. }
  52601. },
  52602. back: {
  52603. height: math.unit(2 + 7/12, "feet"),
  52604. name: "Back",
  52605. image: {
  52606. source: "./media/characters/orishan/back.svg",
  52607. extra: 1058/1023,
  52608. bottom: 23/1081
  52609. }
  52610. },
  52611. },
  52612. [
  52613. {
  52614. name: "Micro",
  52615. height: math.unit(2, "cm")
  52616. },
  52617. {
  52618. name: "Normal",
  52619. height: math.unit(2 + 7/12, "feet"),
  52620. default: true
  52621. },
  52622. ]
  52623. ))
  52624. characterMakers.push(() => makeCharacter(
  52625. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52626. {
  52627. front: {
  52628. height: math.unit(3, "meters"),
  52629. weight: math.unit(508, "kg"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/seranis/front.svg",
  52633. extra: 1478/1454,
  52634. bottom: 41/1519
  52635. }
  52636. },
  52637. },
  52638. [
  52639. {
  52640. name: "Normal",
  52641. height: math.unit(3, "meters"),
  52642. default: true
  52643. },
  52644. {
  52645. name: "Macro",
  52646. height: math.unit(108, "meters")
  52647. },
  52648. {
  52649. name: "Megamacro",
  52650. height: math.unit(1250, "meters")
  52651. },
  52652. ]
  52653. ))
  52654. characterMakers.push(() => makeCharacter(
  52655. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52656. {
  52657. undressed: {
  52658. height: math.unit(5 + 3/12, "feet"),
  52659. name: "Undressed",
  52660. image: {
  52661. source: "./media/characters/ankou/undressed.svg",
  52662. extra: 1301/1213,
  52663. bottom: 87/1388
  52664. }
  52665. },
  52666. dressed: {
  52667. height: math.unit(5 + 3/12, "feet"),
  52668. name: "Dressed",
  52669. image: {
  52670. source: "./media/characters/ankou/dressed.svg",
  52671. extra: 1301/1213,
  52672. bottom: 87/1388
  52673. }
  52674. },
  52675. head: {
  52676. height: math.unit(1.61, "feet"),
  52677. name: "Head",
  52678. image: {
  52679. source: "./media/characters/ankou/head.svg"
  52680. }
  52681. },
  52682. },
  52683. [
  52684. {
  52685. name: "Normal",
  52686. height: math.unit(5 + 3/12, "feet"),
  52687. default: true
  52688. },
  52689. ]
  52690. ))
  52691. characterMakers.push(() => makeCharacter(
  52692. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52693. {
  52694. side: {
  52695. height: math.unit(6 + 3/12, "feet"),
  52696. weight: math.unit(200, "kg"),
  52697. name: "Side",
  52698. image: {
  52699. source: "./media/characters/juniper-skunktaur/side.svg",
  52700. extra: 1574/1229,
  52701. bottom: 38/1612
  52702. }
  52703. },
  52704. front: {
  52705. height: math.unit(6 + 3/12, "feet"),
  52706. weight: math.unit(200, "kg"),
  52707. name: "Front",
  52708. image: {
  52709. source: "./media/characters/juniper-skunktaur/front.svg",
  52710. extra: 1337/1278,
  52711. bottom: 22/1359
  52712. }
  52713. },
  52714. back: {
  52715. height: math.unit(6 + 3/12, "feet"),
  52716. weight: math.unit(200, "kg"),
  52717. name: "Back",
  52718. image: {
  52719. source: "./media/characters/juniper-skunktaur/back.svg",
  52720. extra: 1618/1273,
  52721. bottom: 13/1631
  52722. }
  52723. },
  52724. top: {
  52725. height: math.unit(2.62, "feet"),
  52726. weight: math.unit(200, "kg"),
  52727. name: "Top",
  52728. image: {
  52729. source: "./media/characters/juniper-skunktaur/top.svg"
  52730. }
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(6 + 3/12, "feet"),
  52737. default: true
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52743. {
  52744. front: {
  52745. height: math.unit(20.5, "feet"),
  52746. name: "Front",
  52747. image: {
  52748. source: "./media/characters/rei/front.svg",
  52749. extra: 1349/1195,
  52750. bottom: 31/1380
  52751. }
  52752. },
  52753. back: {
  52754. height: math.unit(20.5, "feet"),
  52755. name: "Back",
  52756. image: {
  52757. source: "./media/characters/rei/back.svg",
  52758. extra: 1358/1204,
  52759. bottom: 22/1380
  52760. }
  52761. },
  52762. pawsDigi: {
  52763. height: math.unit(3.45, "feet"),
  52764. name: "Paws (Digi)",
  52765. image: {
  52766. source: "./media/characters/rei/paws-digi.svg"
  52767. }
  52768. },
  52769. pawsPlanti: {
  52770. height: math.unit(3.45, "feet"),
  52771. name: "Paws (Planti)",
  52772. image: {
  52773. source: "./media/characters/rei/paws-planti.svg"
  52774. }
  52775. },
  52776. },
  52777. [
  52778. {
  52779. name: "Normal",
  52780. height: math.unit(20.5, "feet"),
  52781. default: true
  52782. },
  52783. ]
  52784. ))
  52785. characterMakers.push(() => makeCharacter(
  52786. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52787. {
  52788. front: {
  52789. height: math.unit(5 + 11/12, "feet"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/carina/front.svg",
  52793. extra: 1720/1449,
  52794. bottom: 14/1734
  52795. }
  52796. },
  52797. back: {
  52798. height: math.unit(5 + 11/12, "feet"),
  52799. name: "Back",
  52800. image: {
  52801. source: "./media/characters/carina/back.svg",
  52802. extra: 1493/1445,
  52803. bottom: 17/1510
  52804. }
  52805. },
  52806. paw: {
  52807. height: math.unit(0.92, "feet"),
  52808. name: "Paw",
  52809. image: {
  52810. source: "./media/characters/carina/paw.svg"
  52811. }
  52812. },
  52813. },
  52814. [
  52815. {
  52816. name: "Normal",
  52817. height: math.unit(5 + 11/12, "feet"),
  52818. default: true
  52819. },
  52820. ]
  52821. ))
  52822. characterMakers.push(() => makeCharacter(
  52823. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52824. {
  52825. normal_front: {
  52826. height: math.unit(4.88, "meters"),
  52827. name: "Front",
  52828. image: {
  52829. source: "./media/characters/maya/normal-front.svg",
  52830. extra: 1222/1145,
  52831. bottom: 57/1279
  52832. },
  52833. form: "normal",
  52834. default: true
  52835. },
  52836. monstrous_front: {
  52837. height: math.unit(10, "meters"),
  52838. name: "Front",
  52839. image: {
  52840. source: "./media/characters/maya/monstrous-front.svg",
  52841. extra: 1523/1109,
  52842. bottom: 113/1636
  52843. },
  52844. form: "monstrous",
  52845. extraAttributes: {
  52846. "swallowSize": {
  52847. name: "Tailmaw Bite Size",
  52848. power: 3,
  52849. type: "volume",
  52850. base: math.unit(43000, "liters")
  52851. },
  52852. }
  52853. },
  52854. taur_front: {
  52855. height: math.unit(10, "meters"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/maya/taur-front.svg",
  52859. extra: 743/506,
  52860. bottom: 101/844
  52861. },
  52862. form: "taur",
  52863. },
  52864. },
  52865. [
  52866. {
  52867. name: "Normal",
  52868. height: math.unit(4.88, "meters"),
  52869. default: true,
  52870. form: "normal"
  52871. },
  52872. {
  52873. name: "Macro",
  52874. height: math.unit(38.1, "meters"),
  52875. form: "normal"
  52876. },
  52877. {
  52878. name: "Macro+",
  52879. height: math.unit(152.4, "meters"),
  52880. form: "normal"
  52881. },
  52882. {
  52883. name: "Macro++",
  52884. height: math.unit(16.09, "km"),
  52885. form: "normal"
  52886. },
  52887. {
  52888. name: "Mega-macro",
  52889. height: math.unit(700, "megameters"),
  52890. form: "normal"
  52891. },
  52892. {
  52893. name: "Satiated",
  52894. height: math.unit(10, "meters"),
  52895. default: true,
  52896. form: "monstrous"
  52897. },
  52898. {
  52899. name: "Hungry",
  52900. height: math.unit(75, "meters"),
  52901. form: "monstrous"
  52902. },
  52903. {
  52904. name: "Ravenous",
  52905. height: math.unit(500, "meters"),
  52906. form: "monstrous"
  52907. },
  52908. {
  52909. name: "\"Normal\"",
  52910. height: math.unit(10, "meters"),
  52911. form: "taur"
  52912. },
  52913. {
  52914. name: "Macro",
  52915. height: math.unit(50, "meters"),
  52916. form: "taur"
  52917. },
  52918. ],
  52919. {
  52920. "normal": {
  52921. name: "Normal",
  52922. default: true
  52923. },
  52924. "monstrous": {
  52925. name: "Monstrous",
  52926. },
  52927. "taur": {
  52928. name: "Taur",
  52929. },
  52930. }
  52931. ))
  52932. characterMakers.push(() => makeCharacter(
  52933. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52934. {
  52935. front: {
  52936. height: math.unit(6 + 2/12, "feet"),
  52937. weight: math.unit(500, "lb"),
  52938. preyCapacity: math.unit(4, "people"),
  52939. name: "Front",
  52940. image: {
  52941. source: "./media/characters/yepir/front.svg"
  52942. }
  52943. },
  52944. side: {
  52945. height: math.unit(6 + 2/12, "feet"),
  52946. weight: math.unit(500, "lb"),
  52947. preyCapacity: math.unit(4, "people"),
  52948. name: "Side",
  52949. image: {
  52950. source: "./media/characters/yepir/side.svg"
  52951. }
  52952. },
  52953. paw: {
  52954. height: math.unit(1.05, "feet"),
  52955. name: "Paw",
  52956. image: {
  52957. source: "./media/characters/yepir/paw.svg"
  52958. }
  52959. },
  52960. },
  52961. [
  52962. {
  52963. name: "Normal",
  52964. height: math.unit(6 + 2/12, "feet"),
  52965. default: true
  52966. },
  52967. ]
  52968. ))
  52969. characterMakers.push(() => makeCharacter(
  52970. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52971. {
  52972. front: {
  52973. height: math.unit(5 + 4/12, "feet"),
  52974. name: "Front",
  52975. image: {
  52976. source: "./media/characters/russec/front.svg",
  52977. extra: 1926/1626,
  52978. bottom: 72/1998
  52979. }
  52980. },
  52981. back: {
  52982. height: math.unit(5 + 4/12, "feet"),
  52983. name: "Back",
  52984. image: {
  52985. source: "./media/characters/russec/back.svg",
  52986. extra: 1910/1591,
  52987. bottom: 48/1958
  52988. }
  52989. },
  52990. },
  52991. [
  52992. {
  52993. name: "Small",
  52994. height: math.unit(5 + 4/12, "feet")
  52995. },
  52996. {
  52997. name: "Normal",
  52998. height: math.unit(72, "feet"),
  52999. default: true
  53000. },
  53001. ]
  53002. ))
  53003. characterMakers.push(() => makeCharacter(
  53004. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53005. {
  53006. side: {
  53007. height: math.unit(12, "feet"),
  53008. name: "Side",
  53009. image: {
  53010. source: "./media/characters/cianus/side.svg",
  53011. extra: 808/526,
  53012. bottom: 61/869
  53013. }
  53014. },
  53015. },
  53016. [
  53017. {
  53018. name: "Normal",
  53019. height: math.unit(12, "feet"),
  53020. default: true
  53021. },
  53022. ]
  53023. ))
  53024. characterMakers.push(() => makeCharacter(
  53025. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53026. {
  53027. front: {
  53028. height: math.unit(9 + 6/12, "feet"),
  53029. weight: math.unit(300, "lb"),
  53030. name: "Front",
  53031. image: {
  53032. source: "./media/characters/ahab/front.svg",
  53033. extra: 1897/1868,
  53034. bottom: 121/2018
  53035. }
  53036. },
  53037. frontNsfw: {
  53038. height: math.unit(9 + 6/12, "feet"),
  53039. weight: math.unit(300, "lb"),
  53040. name: "Front-nsfw",
  53041. image: {
  53042. source: "./media/characters/ahab/front-nsfw.svg",
  53043. extra: 1897/1868,
  53044. bottom: 121/2018
  53045. }
  53046. },
  53047. },
  53048. [
  53049. {
  53050. name: "Normal",
  53051. height: math.unit(9 + 6/12, "feet")
  53052. },
  53053. {
  53054. name: "Macro",
  53055. height: math.unit(657, "feet"),
  53056. default: true
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(2.69, "meters"),
  53065. weight: math.unit(132, "kg"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/aarkus/front.svg",
  53069. extra: 1400/1231,
  53070. bottom: 34/1434
  53071. }
  53072. },
  53073. back: {
  53074. height: math.unit(2.69, "meters"),
  53075. weight: math.unit(132, "kg"),
  53076. name: "Back",
  53077. image: {
  53078. source: "./media/characters/aarkus/back.svg",
  53079. extra: 1381/1218,
  53080. bottom: 30/1411
  53081. }
  53082. },
  53083. frontNsfw: {
  53084. height: math.unit(2.69, "meters"),
  53085. weight: math.unit(132, "kg"),
  53086. name: "Front (NSFW)",
  53087. image: {
  53088. source: "./media/characters/aarkus/front-nsfw.svg",
  53089. extra: 1400/1231,
  53090. bottom: 34/1434
  53091. }
  53092. },
  53093. foot: {
  53094. height: math.unit(1.45, "feet"),
  53095. name: "Foot",
  53096. image: {
  53097. source: "./media/characters/aarkus/foot.svg"
  53098. }
  53099. },
  53100. head: {
  53101. height: math.unit(2.85, "feet"),
  53102. name: "Head",
  53103. image: {
  53104. source: "./media/characters/aarkus/head.svg"
  53105. }
  53106. },
  53107. headAlt: {
  53108. height: math.unit(3.07, "feet"),
  53109. name: "Head (Alt)",
  53110. image: {
  53111. source: "./media/characters/aarkus/head-alt.svg"
  53112. }
  53113. },
  53114. mouth: {
  53115. height: math.unit(1.25, "feet"),
  53116. name: "Mouth",
  53117. image: {
  53118. source: "./media/characters/aarkus/mouth.svg"
  53119. }
  53120. },
  53121. dick: {
  53122. height: math.unit(1.77, "feet"),
  53123. name: "Dick",
  53124. image: {
  53125. source: "./media/characters/aarkus/dick.svg"
  53126. }
  53127. },
  53128. },
  53129. [
  53130. {
  53131. name: "Normal",
  53132. height: math.unit(2.69, "meters"),
  53133. default: true
  53134. },
  53135. {
  53136. name: "Macro",
  53137. height: math.unit(269, "meters")
  53138. },
  53139. {
  53140. name: "Macro+",
  53141. height: math.unit(672.5, "meters")
  53142. },
  53143. {
  53144. name: "Megamacro",
  53145. height: math.unit(2.017, "km")
  53146. },
  53147. ]
  53148. ))
  53149. characterMakers.push(() => makeCharacter(
  53150. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53151. {
  53152. front: {
  53153. height: math.unit(23.47, "cm"),
  53154. weight: math.unit(600, "grams"),
  53155. name: "Front",
  53156. image: {
  53157. source: "./media/characters/diode/front.svg",
  53158. extra: 1778/1396,
  53159. bottom: 95/1873
  53160. }
  53161. },
  53162. side: {
  53163. height: math.unit(23.47, "cm"),
  53164. weight: math.unit(600, "grams"),
  53165. name: "Side",
  53166. image: {
  53167. source: "./media/characters/diode/side.svg",
  53168. extra: 1831/1404,
  53169. bottom: 86/1917
  53170. }
  53171. },
  53172. wings: {
  53173. height: math.unit(0.683, "feet"),
  53174. name: "Wings",
  53175. image: {
  53176. source: "./media/characters/diode/wings.svg"
  53177. }
  53178. },
  53179. },
  53180. [
  53181. {
  53182. name: "Normal",
  53183. height: math.unit(23.47, "cm"),
  53184. default: true
  53185. },
  53186. ]
  53187. ))
  53188. characterMakers.push(() => makeCharacter(
  53189. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53190. {
  53191. front: {
  53192. height: math.unit(6 + 3/12, "feet"),
  53193. weight: math.unit(250, "lb"),
  53194. name: "Front",
  53195. image: {
  53196. source: "./media/characters/reika/front.svg",
  53197. extra: 1120/1078,
  53198. bottom: 86/1206
  53199. }
  53200. },
  53201. },
  53202. [
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(6 + 3/12, "feet"),
  53206. default: true
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53212. {
  53213. front: {
  53214. height: math.unit(16 + 8/12, "feet"),
  53215. weight: math.unit(9000, "lb"),
  53216. name: "Front",
  53217. image: {
  53218. source: "./media/characters/lokuto-takama/front.svg",
  53219. extra: 1774/1632,
  53220. bottom: 147/1921
  53221. },
  53222. extraAttributes: {
  53223. "bustWidth": {
  53224. name: "Bust Width",
  53225. power: 1,
  53226. type: "length",
  53227. base: math.unit(2.4, "meters")
  53228. },
  53229. "breastWeight": {
  53230. name: "Breast Weight",
  53231. power: 3,
  53232. type: "mass",
  53233. base: math.unit(1000, "kg")
  53234. },
  53235. }
  53236. },
  53237. },
  53238. [
  53239. {
  53240. name: "Normal",
  53241. height: math.unit(16 + 8/12, "feet"),
  53242. default: true
  53243. },
  53244. ]
  53245. ))
  53246. characterMakers.push(() => makeCharacter(
  53247. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53248. {
  53249. front: {
  53250. height: math.unit(10, "cm"),
  53251. weight: math.unit(850, "grams"),
  53252. name: "Front",
  53253. image: {
  53254. source: "./media/characters/owak-bone/front.svg",
  53255. extra: 1965/1801,
  53256. bottom: 31/1996
  53257. }
  53258. },
  53259. },
  53260. [
  53261. {
  53262. name: "Normal",
  53263. height: math.unit(10, "cm"),
  53264. default: true
  53265. },
  53266. ]
  53267. ))
  53268. characterMakers.push(() => makeCharacter(
  53269. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53270. {
  53271. front: {
  53272. height: math.unit(2 + 6/12, "feet"),
  53273. weight: math.unit(9, "lb"),
  53274. name: "Front",
  53275. image: {
  53276. source: "./media/characters/muffin/front.svg",
  53277. extra: 1220/1195,
  53278. bottom: 84/1304
  53279. }
  53280. },
  53281. },
  53282. [
  53283. {
  53284. name: "Normal",
  53285. height: math.unit(2 + 6/12, "feet"),
  53286. default: true
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53292. {
  53293. front: {
  53294. height: math.unit(7, "feet"),
  53295. name: "Front",
  53296. image: {
  53297. source: "./media/characters/chimera/front.svg",
  53298. extra: 1752/1614,
  53299. bottom: 68/1820
  53300. }
  53301. },
  53302. },
  53303. [
  53304. {
  53305. name: "Normal",
  53306. height: math.unit(7, "feet")
  53307. },
  53308. {
  53309. name: "Gigamacro",
  53310. height: math.unit(2.9, "gigameters"),
  53311. default: true
  53312. },
  53313. {
  53314. name: "Universal",
  53315. height: math.unit(1.56e26, "yottameters")
  53316. },
  53317. ]
  53318. ))
  53319. characterMakers.push(() => makeCharacter(
  53320. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53321. {
  53322. front: {
  53323. height: math.unit(3, "feet"),
  53324. weight: math.unit(20, "lb"),
  53325. name: "Front",
  53326. image: {
  53327. source: "./media/characters/kit-fennec-fox/front.svg",
  53328. extra: 1027/932,
  53329. bottom: 16/1043
  53330. }
  53331. },
  53332. back: {
  53333. height: math.unit(3, "feet"),
  53334. weight: math.unit(20, "lb"),
  53335. name: "Back",
  53336. image: {
  53337. source: "./media/characters/kit-fennec-fox/back.svg",
  53338. extra: 1027/932,
  53339. bottom: 16/1043
  53340. }
  53341. },
  53342. },
  53343. [
  53344. {
  53345. name: "Normal",
  53346. height: math.unit(3, "feet"),
  53347. default: true
  53348. },
  53349. ]
  53350. ))
  53351. characterMakers.push(() => makeCharacter(
  53352. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53353. {
  53354. front: {
  53355. height: math.unit(167, "cm"),
  53356. name: "Front",
  53357. image: {
  53358. source: "./media/characters/blue-otter/front.svg",
  53359. extra: 1951/1920,
  53360. bottom: 31/1982
  53361. }
  53362. },
  53363. },
  53364. [
  53365. {
  53366. name: "Otter-Sized",
  53367. height: math.unit(100, "cm")
  53368. },
  53369. {
  53370. name: "Normal",
  53371. height: math.unit(167, "cm"),
  53372. default: true
  53373. },
  53374. ]
  53375. ))
  53376. characterMakers.push(() => makeCharacter(
  53377. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53378. {
  53379. front: {
  53380. height: math.unit(4 + 4/12, "feet"),
  53381. name: "Front",
  53382. image: {
  53383. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53384. extra: 1072/1067,
  53385. bottom: 117/1189
  53386. }
  53387. },
  53388. back: {
  53389. height: math.unit(4 + 4/12, "feet"),
  53390. name: "Back",
  53391. image: {
  53392. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53393. extra: 1135/1129,
  53394. bottom: 57/1192
  53395. }
  53396. },
  53397. head: {
  53398. height: math.unit(1.77, "feet"),
  53399. name: "Head",
  53400. image: {
  53401. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53402. }
  53403. },
  53404. },
  53405. [
  53406. {
  53407. name: "Normal",
  53408. height: math.unit(4 + 4/12, "feet"),
  53409. default: true
  53410. },
  53411. ]
  53412. ))
  53413. characterMakers.push(() => makeCharacter(
  53414. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53415. {
  53416. front: {
  53417. height: math.unit(2, "inches"),
  53418. name: "Front",
  53419. image: {
  53420. source: "./media/characters/carley-hartford/front.svg",
  53421. extra: 1035/988,
  53422. bottom: 23/1058
  53423. }
  53424. },
  53425. back: {
  53426. height: math.unit(2, "inches"),
  53427. name: "Back",
  53428. image: {
  53429. source: "./media/characters/carley-hartford/back.svg",
  53430. extra: 1035/988,
  53431. bottom: 23/1058
  53432. }
  53433. },
  53434. dressed: {
  53435. height: math.unit(2, "inches"),
  53436. name: "Dressed",
  53437. image: {
  53438. source: "./media/characters/carley-hartford/dressed.svg",
  53439. extra: 651/620,
  53440. bottom: 0/651
  53441. }
  53442. },
  53443. },
  53444. [
  53445. {
  53446. name: "Micro",
  53447. height: math.unit(2, "inches"),
  53448. default: true
  53449. },
  53450. {
  53451. name: "Macro",
  53452. height: math.unit(6 + 3/12, "feet")
  53453. },
  53454. ]
  53455. ))
  53456. characterMakers.push(() => makeCharacter(
  53457. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53458. {
  53459. front: {
  53460. height: math.unit(2 + 3/12, "feet"),
  53461. weight: math.unit(15 + 7/16, "lb"),
  53462. name: "Front",
  53463. image: {
  53464. source: "./media/characters/duke/front.svg",
  53465. extra: 910/815,
  53466. bottom: 30/940
  53467. }
  53468. },
  53469. },
  53470. [
  53471. {
  53472. name: "Normal",
  53473. height: math.unit(2 + 3/12, "feet"),
  53474. default: true
  53475. },
  53476. ]
  53477. ))
  53478. characterMakers.push(() => makeCharacter(
  53479. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53480. {
  53481. front: {
  53482. height: math.unit(5 + 4/12, "feet"),
  53483. weight: math.unit(156, "lb"),
  53484. name: "Front",
  53485. image: {
  53486. source: "./media/characters/dein/front.svg",
  53487. extra: 855/815,
  53488. bottom: 48/903
  53489. }
  53490. },
  53491. side: {
  53492. height: math.unit(5 + 4/12, "feet"),
  53493. weight: math.unit(156, "lb"),
  53494. name: "side",
  53495. image: {
  53496. source: "./media/characters/dein/side.svg",
  53497. extra: 846/803,
  53498. bottom: 25/871
  53499. }
  53500. },
  53501. maw: {
  53502. height: math.unit(1.45, "feet"),
  53503. name: "Maw",
  53504. image: {
  53505. source: "./media/characters/dein/maw.svg"
  53506. }
  53507. },
  53508. },
  53509. [
  53510. {
  53511. name: "Ferret Sized",
  53512. height: math.unit(2 + 5/12, "feet")
  53513. },
  53514. {
  53515. name: "Normal",
  53516. height: math.unit(5 + 4/12, "feet"),
  53517. default: true
  53518. },
  53519. ]
  53520. ))
  53521. characterMakers.push(() => makeCharacter(
  53522. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53523. {
  53524. front: {
  53525. height: math.unit(84 + 8/12, "feet"),
  53526. weight: math.unit(942180, "lb"),
  53527. name: "Front",
  53528. image: {
  53529. source: "./media/characters/daurine-arima/front.svg",
  53530. extra: 1989/1782,
  53531. bottom: 37/2026
  53532. }
  53533. },
  53534. side: {
  53535. height: math.unit(84 + 8/12, "feet"),
  53536. weight: math.unit(942180, "lb"),
  53537. name: "Side",
  53538. image: {
  53539. source: "./media/characters/daurine-arima/side.svg",
  53540. extra: 1997/1790,
  53541. bottom: 21/2018
  53542. }
  53543. },
  53544. back: {
  53545. height: math.unit(84 + 8/12, "feet"),
  53546. weight: math.unit(942180, "lb"),
  53547. name: "Back",
  53548. image: {
  53549. source: "./media/characters/daurine-arima/back.svg",
  53550. extra: 1992/1800,
  53551. bottom: 12/2004
  53552. }
  53553. },
  53554. head: {
  53555. height: math.unit(15.5, "feet"),
  53556. name: "Head",
  53557. image: {
  53558. source: "./media/characters/daurine-arima/head.svg"
  53559. }
  53560. },
  53561. headAlt: {
  53562. height: math.unit(19.19, "feet"),
  53563. name: "Head (Alt)",
  53564. image: {
  53565. source: "./media/characters/daurine-arima/head-alt.svg"
  53566. }
  53567. },
  53568. },
  53569. [
  53570. {
  53571. name: "Minimum height",
  53572. height: math.unit(8 + 10/12, "feet")
  53573. },
  53574. {
  53575. name: "Comfort height",
  53576. height: math.unit(19 + 6 /12, "feet")
  53577. },
  53578. {
  53579. name: "\"Normal\" height",
  53580. height: math.unit(28 + 10/12, "feet")
  53581. },
  53582. {
  53583. name: "Base height",
  53584. height: math.unit(84 + 8/12, "feet"),
  53585. default: true
  53586. },
  53587. {
  53588. name: "Mini-macro",
  53589. height: math.unit(2360, "feet")
  53590. },
  53591. {
  53592. name: "Macro",
  53593. height: math.unit(10, "miles")
  53594. },
  53595. {
  53596. name: "Goddess",
  53597. height: math.unit(9.99e40, "yottameters")
  53598. },
  53599. ]
  53600. ))
  53601. characterMakers.push(() => makeCharacter(
  53602. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53603. {
  53604. front: {
  53605. height: math.unit(2.3, "meters"),
  53606. name: "Front",
  53607. image: {
  53608. source: "./media/characters/cilenomon/front.svg",
  53609. extra: 1963/1778,
  53610. bottom: 54/2017
  53611. }
  53612. },
  53613. },
  53614. [
  53615. {
  53616. name: "Normal",
  53617. height: math.unit(2.3, "meters"),
  53618. default: true
  53619. },
  53620. {
  53621. name: "Big",
  53622. height: math.unit(5, "meters")
  53623. },
  53624. {
  53625. name: "Macro",
  53626. height: math.unit(30, "meters")
  53627. },
  53628. {
  53629. name: "True",
  53630. height: math.unit(1, "universe")
  53631. },
  53632. ]
  53633. ))
  53634. characterMakers.push(() => makeCharacter(
  53635. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53636. {
  53637. front: {
  53638. height: math.unit(5, "feet"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/sen-mink/front.svg",
  53642. extra: 1727/1675,
  53643. bottom: 35/1762
  53644. }
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Normal",
  53650. height: math.unit(5, "feet"),
  53651. default: true
  53652. },
  53653. ]
  53654. ))
  53655. characterMakers.push(() => makeCharacter(
  53656. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53657. {
  53658. front: {
  53659. height: math.unit(5.42999, "feet"),
  53660. weight: math.unit(100, "lb"),
  53661. name: "Front",
  53662. image: {
  53663. source: "./media/characters/ophois/front.svg",
  53664. extra: 1429/1286,
  53665. bottom: 60/1489
  53666. }
  53667. },
  53668. },
  53669. [
  53670. {
  53671. name: "Normal",
  53672. height: math.unit(5.42999, "feet"),
  53673. default: true
  53674. },
  53675. ]
  53676. ))
  53677. characterMakers.push(() => makeCharacter(
  53678. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53679. {
  53680. front: {
  53681. height: math.unit(2, "meters"),
  53682. name: "Front",
  53683. image: {
  53684. source: "./media/characters/riley/front.svg",
  53685. extra: 1779/1754,
  53686. bottom: 139/1918
  53687. }
  53688. },
  53689. },
  53690. [
  53691. {
  53692. name: "Normal",
  53693. height: math.unit(2, "meters"),
  53694. default: true
  53695. },
  53696. ]
  53697. ))
  53698. characterMakers.push(() => makeCharacter(
  53699. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53700. {
  53701. front: {
  53702. height: math.unit(6 + 2/12, "feet"),
  53703. weight: math.unit(195, "lb"),
  53704. preyCapacity: math.unit(6, "people"),
  53705. name: "Front",
  53706. image: {
  53707. source: "./media/characters/shuken-flash/front.svg",
  53708. extra: 1905/1739,
  53709. bottom: 65/1970
  53710. }
  53711. },
  53712. back: {
  53713. height: math.unit(6 + 2/12, "feet"),
  53714. weight: math.unit(195, "lb"),
  53715. preyCapacity: math.unit(6, "people"),
  53716. name: "Back",
  53717. image: {
  53718. source: "./media/characters/shuken-flash/back.svg",
  53719. extra: 1912/1751,
  53720. bottom: 13/1925
  53721. }
  53722. },
  53723. },
  53724. [
  53725. {
  53726. name: "Normal",
  53727. height: math.unit(6 + 2/12, "feet"),
  53728. default: true
  53729. },
  53730. ]
  53731. ))
  53732. characterMakers.push(() => makeCharacter(
  53733. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53734. {
  53735. front: {
  53736. height: math.unit(5 + 9/12, "feet"),
  53737. weight: math.unit(150, "lb"),
  53738. name: "Front",
  53739. image: {
  53740. source: "./media/characters/plat/front.svg",
  53741. extra: 1816/1703,
  53742. bottom: 43/1859
  53743. }
  53744. },
  53745. side: {
  53746. height: math.unit(5 + 9/12, "feet"),
  53747. weight: math.unit(300, "lb"),
  53748. name: "Side",
  53749. image: {
  53750. source: "./media/characters/plat/side.svg",
  53751. extra: 1824/1699,
  53752. bottom: 18/1842
  53753. }
  53754. },
  53755. },
  53756. [
  53757. {
  53758. name: "Normal",
  53759. height: math.unit(5 + 9/12, "feet"),
  53760. default: true
  53761. },
  53762. ]
  53763. ))
  53764. characterMakers.push(() => makeCharacter(
  53765. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53766. {
  53767. front: {
  53768. height: math.unit(9, "feet"),
  53769. weight: math.unit(1800, "lb"),
  53770. name: "Front",
  53771. image: {
  53772. source: "./media/characters/elaine/front.svg",
  53773. extra: 1833/1354,
  53774. bottom: 25/1858
  53775. }
  53776. },
  53777. back: {
  53778. height: math.unit(8.8, "feet"),
  53779. weight: math.unit(1800, "lb"),
  53780. name: "Back",
  53781. image: {
  53782. source: "./media/characters/elaine/back.svg",
  53783. extra: 1641/1233,
  53784. bottom: 53/1694
  53785. }
  53786. },
  53787. },
  53788. [
  53789. {
  53790. name: "Normal",
  53791. height: math.unit(9, "feet"),
  53792. default: true
  53793. },
  53794. ]
  53795. ))
  53796. characterMakers.push(() => makeCharacter(
  53797. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53798. {
  53799. front: {
  53800. height: math.unit(17 + 9/12, "feet"),
  53801. weight: math.unit(8000, "lb"),
  53802. name: "Front",
  53803. image: {
  53804. source: "./media/characters/vera-raven/front.svg",
  53805. extra: 1457/1412,
  53806. bottom: 121/1578
  53807. }
  53808. },
  53809. side: {
  53810. height: math.unit(17 + 9/12, "feet"),
  53811. weight: math.unit(8000, "lb"),
  53812. name: "Side",
  53813. image: {
  53814. source: "./media/characters/vera-raven/side.svg",
  53815. extra: 1510/1464,
  53816. bottom: 54/1564
  53817. }
  53818. },
  53819. },
  53820. [
  53821. {
  53822. name: "Normal",
  53823. height: math.unit(17 + 9/12, "feet"),
  53824. default: true
  53825. },
  53826. ]
  53827. ))
  53828. characterMakers.push(() => makeCharacter(
  53829. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53830. {
  53831. dressed: {
  53832. height: math.unit(6 + 9/12, "feet"),
  53833. name: "Dressed",
  53834. image: {
  53835. source: "./media/characters/nakisha/dressed.svg",
  53836. extra: 1909/1757,
  53837. bottom: 48/1957
  53838. }
  53839. },
  53840. nude: {
  53841. height: math.unit(6 + 9/12, "feet"),
  53842. name: "Nude",
  53843. image: {
  53844. source: "./media/characters/nakisha/nude.svg",
  53845. extra: 1917/1765,
  53846. bottom: 34/1951
  53847. }
  53848. },
  53849. },
  53850. [
  53851. {
  53852. name: "Normal",
  53853. height: math.unit(6 + 9/12, "feet"),
  53854. default: true
  53855. },
  53856. ]
  53857. ))
  53858. characterMakers.push(() => makeCharacter(
  53859. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53860. {
  53861. front: {
  53862. height: math.unit(87, "meters"),
  53863. name: "Front",
  53864. image: {
  53865. source: "./media/characters/serafin/front.svg",
  53866. extra: 1919/1776,
  53867. bottom: 65/1984
  53868. }
  53869. },
  53870. },
  53871. [
  53872. {
  53873. name: "Normal",
  53874. height: math.unit(87, "meters"),
  53875. default: true
  53876. },
  53877. ]
  53878. ))
  53879. characterMakers.push(() => makeCharacter(
  53880. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53881. {
  53882. front: {
  53883. height: math.unit(6, "feet"),
  53884. weight: math.unit(200, "lb"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/poptart/front.svg",
  53888. extra: 615/583,
  53889. bottom: 23/638
  53890. }
  53891. },
  53892. back: {
  53893. height: math.unit(6, "feet"),
  53894. weight: math.unit(200, "lb"),
  53895. name: "Back",
  53896. image: {
  53897. source: "./media/characters/poptart/back.svg",
  53898. extra: 617/584,
  53899. bottom: 22/639
  53900. }
  53901. },
  53902. frontNsfw: {
  53903. height: math.unit(6, "feet"),
  53904. weight: math.unit(200, "lb"),
  53905. name: "Front (NSFW)",
  53906. image: {
  53907. source: "./media/characters/poptart/front-nsfw.svg",
  53908. extra: 615/583,
  53909. bottom: 23/638
  53910. }
  53911. },
  53912. backNsfw: {
  53913. height: math.unit(6, "feet"),
  53914. weight: math.unit(200, "lb"),
  53915. name: "Back (NSFW)",
  53916. image: {
  53917. source: "./media/characters/poptart/back-nsfw.svg",
  53918. extra: 617/584,
  53919. bottom: 22/639
  53920. }
  53921. },
  53922. hand: {
  53923. height: math.unit(1.14, "feet"),
  53924. name: "Hand",
  53925. image: {
  53926. source: "./media/characters/poptart/hand.svg"
  53927. }
  53928. },
  53929. foot: {
  53930. height: math.unit(1.5, "feet"),
  53931. name: "Foot",
  53932. image: {
  53933. source: "./media/characters/poptart/foot.svg"
  53934. }
  53935. },
  53936. },
  53937. [
  53938. {
  53939. name: "Normal",
  53940. height: math.unit(6, "feet"),
  53941. default: true
  53942. },
  53943. {
  53944. name: "Grande",
  53945. height: math.unit(350, "feet")
  53946. },
  53947. {
  53948. name: "Massif",
  53949. height: math.unit(967, "feet")
  53950. },
  53951. ]
  53952. ))
  53953. characterMakers.push(() => makeCharacter(
  53954. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53955. {
  53956. hyenaSide: {
  53957. height: math.unit(120, "cm"),
  53958. weight: math.unit(120, "lb"),
  53959. name: "Side",
  53960. image: {
  53961. source: "./media/characters/trance/hyena-side.svg",
  53962. extra: 998/904,
  53963. bottom: 76/1074
  53964. }
  53965. },
  53966. },
  53967. [
  53968. {
  53969. name: "Normal",
  53970. height: math.unit(120, "cm"),
  53971. default: true
  53972. },
  53973. {
  53974. name: "Dire",
  53975. height: math.unit(230, "cm")
  53976. },
  53977. {
  53978. name: "Macro",
  53979. height: math.unit(37, "feet")
  53980. },
  53981. ]
  53982. ))
  53983. characterMakers.push(() => makeCharacter(
  53984. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53985. {
  53986. front: {
  53987. height: math.unit(6 + 3/12, "feet"),
  53988. name: "Front",
  53989. image: {
  53990. source: "./media/characters/michael-berretta/front.svg",
  53991. extra: 515/494,
  53992. bottom: 20/535
  53993. }
  53994. },
  53995. back: {
  53996. height: math.unit(6 + 3/12, "feet"),
  53997. name: "Back",
  53998. image: {
  53999. source: "./media/characters/michael-berretta/back.svg",
  54000. extra: 520/497,
  54001. bottom: 21/541
  54002. }
  54003. },
  54004. frontNsfw: {
  54005. height: math.unit(6 + 3/12, "feet"),
  54006. name: "Front (NSFW)",
  54007. image: {
  54008. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54009. extra: 515/494,
  54010. bottom: 20/535
  54011. }
  54012. },
  54013. dick: {
  54014. height: math.unit(1, "feet"),
  54015. name: "Dick",
  54016. image: {
  54017. source: "./media/characters/michael-berretta/dick.svg"
  54018. }
  54019. },
  54020. },
  54021. [
  54022. {
  54023. name: "Normal",
  54024. height: math.unit(6 + 3/12, "feet"),
  54025. default: true
  54026. },
  54027. {
  54028. name: "Big",
  54029. height: math.unit(12, "feet")
  54030. },
  54031. {
  54032. name: "Macro",
  54033. height: math.unit(187.5, "feet")
  54034. },
  54035. ]
  54036. ))
  54037. characterMakers.push(() => makeCharacter(
  54038. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54039. {
  54040. front: {
  54041. height: math.unit(9 + 9/12, "feet"),
  54042. weight: math.unit(1244, "lb"),
  54043. name: "Front",
  54044. image: {
  54045. source: "./media/characters/stella-edgecomb/front.svg",
  54046. extra: 1835/1706,
  54047. bottom: 49/1884
  54048. }
  54049. },
  54050. pen: {
  54051. height: math.unit(0.95, "feet"),
  54052. name: "Pen",
  54053. image: {
  54054. source: "./media/characters/stella-edgecomb/pen.svg"
  54055. }
  54056. },
  54057. },
  54058. [
  54059. {
  54060. name: "Cozy Bear",
  54061. height: math.unit(0.5, "inches")
  54062. },
  54063. {
  54064. name: "Normal",
  54065. height: math.unit(9 + 9/12, "feet"),
  54066. default: true
  54067. },
  54068. {
  54069. name: "Giga Bear",
  54070. height: math.unit(1, "mile")
  54071. },
  54072. {
  54073. name: "Great Bear",
  54074. height: math.unit(53, "miles")
  54075. },
  54076. {
  54077. name: "Goddess Bear",
  54078. height: math.unit(40000, "miles")
  54079. },
  54080. {
  54081. name: "Sun Bear",
  54082. height: math.unit(900000, "miles")
  54083. },
  54084. ]
  54085. ))
  54086. characterMakers.push(() => makeCharacter(
  54087. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54088. {
  54089. anthroFront: {
  54090. height: math.unit(556, "cm"),
  54091. weight: math.unit(2650, "kg"),
  54092. preyCapacity: math.unit(3, "people"),
  54093. name: "Front",
  54094. image: {
  54095. source: "./media/characters/ash´iika/front.svg",
  54096. extra: 710/673,
  54097. bottom: 15/725
  54098. },
  54099. form: "anthro",
  54100. default: true
  54101. },
  54102. anthroSide: {
  54103. height: math.unit(556, "cm"),
  54104. weight: math.unit(2650, "kg"),
  54105. preyCapacity: math.unit(3, "people"),
  54106. name: "Side",
  54107. image: {
  54108. source: "./media/characters/ash´iika/side.svg",
  54109. extra: 696/676,
  54110. bottom: 13/709
  54111. },
  54112. form: "anthro"
  54113. },
  54114. anthroDressed: {
  54115. height: math.unit(556, "cm"),
  54116. weight: math.unit(2650, "kg"),
  54117. preyCapacity: math.unit(3, "people"),
  54118. name: "Dressed",
  54119. image: {
  54120. source: "./media/characters/ash´iika/dressed.svg",
  54121. extra: 710/673,
  54122. bottom: 15/725
  54123. },
  54124. form: "anthro"
  54125. },
  54126. anthroHead: {
  54127. height: math.unit(3.5, "feet"),
  54128. name: "Head",
  54129. image: {
  54130. source: "./media/characters/ash´iika/head.svg",
  54131. extra: 348/291,
  54132. bottom: 45/393
  54133. },
  54134. form: "anthro"
  54135. },
  54136. feralSide: {
  54137. height: math.unit(870, "cm"),
  54138. weight: math.unit(17500, "kg"),
  54139. preyCapacity: math.unit(15, "people"),
  54140. name: "Side",
  54141. image: {
  54142. source: "./media/characters/ash´iika/feral.svg",
  54143. extra: 595/199,
  54144. bottom: 7/602
  54145. },
  54146. form: "feral",
  54147. default: true,
  54148. },
  54149. },
  54150. [
  54151. {
  54152. name: "Normal",
  54153. height: math.unit(556, "cm"),
  54154. default: true,
  54155. form: "anthro"
  54156. },
  54157. {
  54158. name: "Macro",
  54159. height: math.unit(88, "meters"),
  54160. form: "anthro"
  54161. },
  54162. {
  54163. name: "Normal",
  54164. height: math.unit(870, "cm"),
  54165. default: true,
  54166. form: "feral"
  54167. },
  54168. {
  54169. name: "Large",
  54170. height: math.unit(25, "meters"),
  54171. form: "feral"
  54172. },
  54173. ],
  54174. {
  54175. "anthro": {
  54176. name: "Anthro",
  54177. default: true
  54178. },
  54179. "feral": {
  54180. name: "Feral",
  54181. },
  54182. }
  54183. ))
  54184. characterMakers.push(() => makeCharacter(
  54185. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54186. {
  54187. front: {
  54188. height: math.unit(10, "feet"),
  54189. weight: math.unit(800, "lb"),
  54190. name: "Front",
  54191. image: {
  54192. source: "./media/characters/yen/front.svg",
  54193. extra: 443/411,
  54194. bottom: 6/449
  54195. }
  54196. },
  54197. sleeping: {
  54198. height: math.unit(10, "feet"),
  54199. weight: math.unit(800, "lb"),
  54200. name: "Sleeping",
  54201. image: {
  54202. source: "./media/characters/yen/sleeping.svg",
  54203. extra: 470/422,
  54204. bottom: 0/470
  54205. }
  54206. },
  54207. head: {
  54208. height: math.unit(2.2, "feet"),
  54209. name: "Head",
  54210. image: {
  54211. source: "./media/characters/yen/head.svg"
  54212. }
  54213. },
  54214. headAlt: {
  54215. height: math.unit(2.1, "feet"),
  54216. name: "Head (Alt)",
  54217. image: {
  54218. source: "./media/characters/yen/head-alt.svg"
  54219. }
  54220. },
  54221. },
  54222. [
  54223. {
  54224. name: "Normal",
  54225. height: math.unit(10, "feet"),
  54226. default: true
  54227. },
  54228. ]
  54229. ))
  54230. characterMakers.push(() => makeCharacter(
  54231. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54232. {
  54233. front: {
  54234. height: math.unit(12, "feet"),
  54235. name: "Front",
  54236. image: {
  54237. source: "./media/characters/citra/front.svg",
  54238. extra: 1950/1710,
  54239. bottom: 47/1997
  54240. }
  54241. },
  54242. },
  54243. [
  54244. {
  54245. name: "Normal",
  54246. height: math.unit(12, "feet"),
  54247. default: true
  54248. },
  54249. ]
  54250. ))
  54251. characterMakers.push(() => makeCharacter(
  54252. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54253. {
  54254. side: {
  54255. height: math.unit(7 + 10/12, "feet"),
  54256. name: "Side",
  54257. image: {
  54258. source: "./media/characters/sholstim/side.svg",
  54259. extra: 786/682,
  54260. bottom: 40/826
  54261. }
  54262. },
  54263. },
  54264. [
  54265. {
  54266. name: "Normal",
  54267. height: math.unit(7 + 10/12, "feet"),
  54268. default: true
  54269. },
  54270. ]
  54271. ))
  54272. characterMakers.push(() => makeCharacter(
  54273. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54274. {
  54275. front: {
  54276. height: math.unit(3.10, "meters"),
  54277. name: "Front",
  54278. image: {
  54279. source: "./media/characters/aggyn/front.svg",
  54280. extra: 1188/963,
  54281. bottom: 24/1212
  54282. }
  54283. },
  54284. },
  54285. [
  54286. {
  54287. name: "Normal",
  54288. height: math.unit(3.10, "meters"),
  54289. default: true
  54290. },
  54291. ]
  54292. ))
  54293. characterMakers.push(() => makeCharacter(
  54294. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54295. {
  54296. front: {
  54297. height: math.unit(7 + 5/12, "feet"),
  54298. weight: math.unit(687, "lb"),
  54299. name: "Front",
  54300. image: {
  54301. source: "./media/characters/alsandair-hergenroether/front.svg",
  54302. extra: 1251/1186,
  54303. bottom: 75/1326
  54304. }
  54305. },
  54306. back: {
  54307. height: math.unit(7 + 5/12, "feet"),
  54308. weight: math.unit(687, "lb"),
  54309. name: "Back",
  54310. image: {
  54311. source: "./media/characters/alsandair-hergenroether/back.svg",
  54312. extra: 1290/1229,
  54313. bottom: 17/1307
  54314. }
  54315. },
  54316. },
  54317. [
  54318. {
  54319. name: "Max Compression",
  54320. height: math.unit(7 + 5/12, "feet"),
  54321. default: true
  54322. },
  54323. {
  54324. name: "\"Normal\"",
  54325. height: math.unit(2, "universes")
  54326. },
  54327. ]
  54328. ))
  54329. characterMakers.push(() => makeCharacter(
  54330. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54331. {
  54332. front: {
  54333. height: math.unit(4 + 1/12, "feet"),
  54334. weight: math.unit(92, "lb"),
  54335. name: "Front",
  54336. image: {
  54337. source: "./media/characters/ie/front.svg",
  54338. extra: 1585/1352,
  54339. bottom: 91/1676
  54340. }
  54341. },
  54342. },
  54343. [
  54344. {
  54345. name: "Normal",
  54346. height: math.unit(4 + 1/12, "feet"),
  54347. default: true
  54348. },
  54349. ]
  54350. ))
  54351. characterMakers.push(() => makeCharacter(
  54352. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54353. {
  54354. anthro: {
  54355. height: math.unit(6, "feet"),
  54356. weight: math.unit(150, "lb"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/willow/anthro.svg",
  54360. extra: 1073/986,
  54361. bottom: 34/1107
  54362. },
  54363. form: "anthro",
  54364. default: true
  54365. },
  54366. taur: {
  54367. height: math.unit(6, "feet"),
  54368. weight: math.unit(150, "lb"),
  54369. name: "Side",
  54370. image: {
  54371. source: "./media/characters/willow/taur.svg",
  54372. extra: 647/512,
  54373. bottom: 136/783
  54374. },
  54375. form: "taur",
  54376. default: true
  54377. },
  54378. },
  54379. [
  54380. {
  54381. name: "Humanoid",
  54382. height: math.unit(2.7, "meters"),
  54383. form: "anthro"
  54384. },
  54385. {
  54386. name: "Normal",
  54387. height: math.unit(9, "meters"),
  54388. form: "anthro",
  54389. default: true
  54390. },
  54391. {
  54392. name: "Humanoid",
  54393. height: math.unit(2.1, "meters"),
  54394. form: "taur"
  54395. },
  54396. {
  54397. name: "Normal",
  54398. height: math.unit(7, "meters"),
  54399. form: "taur",
  54400. default: true
  54401. },
  54402. ],
  54403. {
  54404. "anthro": {
  54405. name: "Anthro",
  54406. default: true
  54407. },
  54408. "taur": {
  54409. name: "Taur",
  54410. },
  54411. }
  54412. ))
  54413. characterMakers.push(() => makeCharacter(
  54414. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54415. {
  54416. front: {
  54417. height: math.unit(2 + 5/12, "feet"),
  54418. name: "Front",
  54419. image: {
  54420. source: "./media/characters/kyan/front.svg",
  54421. extra: 460/334,
  54422. bottom: 23/483
  54423. },
  54424. extraAttributes: {
  54425. "toeLength": {
  54426. name: "Toe Length",
  54427. power: 1,
  54428. type: "length",
  54429. base: math.unit(7, "cm")
  54430. },
  54431. "toeclawLength": {
  54432. name: "Toeclaw Length",
  54433. power: 1,
  54434. type: "length",
  54435. base: math.unit(4.7, "cm")
  54436. },
  54437. "earHeight": {
  54438. name: "Ear Height",
  54439. power: 1,
  54440. type: "length",
  54441. base: math.unit(14.1, "cm")
  54442. },
  54443. }
  54444. },
  54445. paws: {
  54446. height: math.unit(0.45, "feet"),
  54447. name: "Paws",
  54448. image: {
  54449. source: "./media/characters/kyan/paws.svg",
  54450. extra: 581/581,
  54451. bottom: 114/695
  54452. }
  54453. },
  54454. },
  54455. [
  54456. {
  54457. name: "Normal",
  54458. height: math.unit(2 + 5/12, "feet"),
  54459. default: true
  54460. },
  54461. ]
  54462. ))
  54463. characterMakers.push(() => makeCharacter(
  54464. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54465. {
  54466. front: {
  54467. height: math.unit(2 + 2/3, "feet"),
  54468. name: "Front",
  54469. image: {
  54470. source: "./media/characters/xazzon/front.svg",
  54471. extra: 1109/984,
  54472. bottom: 42/1151
  54473. }
  54474. },
  54475. back: {
  54476. height: math.unit(2 + 2/3, "feet"),
  54477. name: "Back",
  54478. image: {
  54479. source: "./media/characters/xazzon/back.svg",
  54480. extra: 1095/971,
  54481. bottom: 23/1118
  54482. }
  54483. },
  54484. },
  54485. [
  54486. {
  54487. name: "Normal",
  54488. height: math.unit(2 + 2/3, "feet"),
  54489. default: true
  54490. },
  54491. ]
  54492. ))
  54493. characterMakers.push(() => makeCharacter(
  54494. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54495. {
  54496. dressed: {
  54497. height: math.unit(5 + 7/12, "feet"),
  54498. weight: math.unit(173, "lb"),
  54499. name: "Dressed",
  54500. image: {
  54501. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54502. extra: 3262/2862,
  54503. bottom: 188/3450
  54504. }
  54505. },
  54506. undressed: {
  54507. height: math.unit(5 + 7/12, "feet"),
  54508. weight: math.unit(173, "lb"),
  54509. name: "Undressed",
  54510. image: {
  54511. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54512. extra: 3262/2862,
  54513. bottom: 188/3450
  54514. }
  54515. },
  54516. },
  54517. [
  54518. {
  54519. name: "The void",
  54520. height: math.unit(7.29193e-34, "angstroms")
  54521. },
  54522. {
  54523. name: "Uh-Oh.",
  54524. height: math.unit(5.734e-7, "angstroms")
  54525. },
  54526. {
  54527. name: "Pico",
  54528. height: math.unit(0.876, "angstroms")
  54529. },
  54530. {
  54531. name: "Nano",
  54532. height: math.unit(0.000134200, "mm")
  54533. },
  54534. {
  54535. name: "Micro",
  54536. height: math.unit(0.0673020, "mm")
  54537. },
  54538. {
  54539. name: "Tiny",
  54540. height: math.unit(2.4, "mm")
  54541. },
  54542. {
  54543. name: "Actual Normal",
  54544. height: math.unit(3, "inches"),
  54545. default: true
  54546. },
  54547. {
  54548. name: "Normal",
  54549. height: math.unit(5 + 8/12, "feet")
  54550. },
  54551. {
  54552. name: "Giant",
  54553. height: math.unit(12, "feet")
  54554. },
  54555. {
  54556. name: "City Ruler",
  54557. height: math.unit(270, "meters")
  54558. },
  54559. {
  54560. name: "Giga",
  54561. height: math.unit(1117.6, "km")
  54562. },
  54563. {
  54564. name: "All-Powerful Queen",
  54565. height: math.unit(70.8, "gigameters")
  54566. },
  54567. {
  54568. name: "'Goddess'",
  54569. height: math.unit(600, "yottameters")
  54570. },
  54571. {
  54572. name: "Biggest!",
  54573. height: math.unit(4.23e5, "yottameters")
  54574. },
  54575. ]
  54576. ))
  54577. characterMakers.push(() => makeCharacter(
  54578. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54579. {
  54580. front: {
  54581. height: math.unit(8, "feet"),
  54582. weight: math.unit(300, "lb"),
  54583. name: "Front",
  54584. image: {
  54585. source: "./media/characters/khyla-shadowsong/front.svg",
  54586. extra: 861/798,
  54587. bottom: 32/893
  54588. }
  54589. },
  54590. side: {
  54591. height: math.unit(8, "feet"),
  54592. weight: math.unit(300, "lb"),
  54593. name: "Side",
  54594. image: {
  54595. source: "./media/characters/khyla-shadowsong/side.svg",
  54596. extra: 790/750,
  54597. bottom: 87/877
  54598. }
  54599. },
  54600. back: {
  54601. height: math.unit(8, "feet"),
  54602. weight: math.unit(300, "lb"),
  54603. name: "Back",
  54604. image: {
  54605. source: "./media/characters/khyla-shadowsong/back.svg",
  54606. extra: 855/808,
  54607. bottom: 14/869
  54608. }
  54609. },
  54610. head: {
  54611. height: math.unit(2.7, "feet"),
  54612. name: "Head",
  54613. image: {
  54614. source: "./media/characters/khyla-shadowsong/head.svg"
  54615. }
  54616. },
  54617. },
  54618. [
  54619. {
  54620. name: "Micro",
  54621. height: math.unit(6, "inches")
  54622. },
  54623. {
  54624. name: "Normal",
  54625. height: math.unit(8, "feet"),
  54626. default: true
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54632. {
  54633. hyperFront: {
  54634. height: math.unit(9 + 4/12, "feet"),
  54635. weight: math.unit(2000, "lb"),
  54636. name: "Front",
  54637. image: {
  54638. source: "./media/characters/tiden/hyper-front.svg",
  54639. extra: 400/382,
  54640. bottom: 6/406
  54641. },
  54642. form: "hyper",
  54643. },
  54644. regularFront: {
  54645. height: math.unit(7 + 10/12, "feet"),
  54646. weight: math.unit(470, "lb"),
  54647. name: "Front",
  54648. image: {
  54649. source: "./media/characters/tiden/regular-front.svg",
  54650. extra: 468/442,
  54651. bottom: 6/474
  54652. },
  54653. form: "regular",
  54654. },
  54655. },
  54656. [
  54657. {
  54658. name: "Normal",
  54659. height: math.unit(9 + 4/12, "feet"),
  54660. default: true,
  54661. form: "hyper"
  54662. },
  54663. {
  54664. name: "Normal",
  54665. height: math.unit(7 + 10/12, "feet"),
  54666. default: true,
  54667. form: "regular"
  54668. },
  54669. ],
  54670. {
  54671. "hyper": {
  54672. name: "Hyper",
  54673. default: true
  54674. },
  54675. "regular": {
  54676. name: "Regular",
  54677. },
  54678. }
  54679. ))
  54680. characterMakers.push(() => makeCharacter(
  54681. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54682. {
  54683. side: {
  54684. height: math.unit(6, "feet"),
  54685. weight: math.unit(150, "lb"),
  54686. name: "Side",
  54687. image: {
  54688. source: "./media/characters/jason-crowe/side.svg",
  54689. extra: 1771/766,
  54690. bottom: 219/1990
  54691. }
  54692. },
  54693. },
  54694. [
  54695. {
  54696. name: "Pocket Gryphon",
  54697. height: math.unit(6, "cm")
  54698. },
  54699. {
  54700. name: "Raven",
  54701. height: math.unit(60, "cm")
  54702. },
  54703. {
  54704. name: "Normal",
  54705. height: math.unit(1, "meter"),
  54706. default: true
  54707. },
  54708. ]
  54709. ))
  54710. characterMakers.push(() => makeCharacter(
  54711. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54712. {
  54713. front: {
  54714. height: math.unit(9 + 6/12, "feet"),
  54715. weight: math.unit(1100, "lb"),
  54716. name: "Front",
  54717. image: {
  54718. source: "./media/characters/django/front.svg",
  54719. extra: 1231/1136,
  54720. bottom: 34/1265
  54721. }
  54722. },
  54723. side: {
  54724. height: math.unit(9 + 6/12, "feet"),
  54725. weight: math.unit(1100, "lb"),
  54726. name: "Side",
  54727. image: {
  54728. source: "./media/characters/django/side.svg",
  54729. extra: 1267/1174,
  54730. bottom: 9/1276
  54731. }
  54732. },
  54733. },
  54734. [
  54735. {
  54736. name: "Normal",
  54737. height: math.unit(9 + 6/12, "feet"),
  54738. default: true
  54739. },
  54740. {
  54741. name: "Macro 1",
  54742. height: math.unit(50, "feet")
  54743. },
  54744. {
  54745. name: "Macro 2",
  54746. height: math.unit(500, "feet")
  54747. },
  54748. {
  54749. name: "Mega Macro",
  54750. height: math.unit(5300, "feet")
  54751. },
  54752. ]
  54753. ))
  54754. characterMakers.push(() => makeCharacter(
  54755. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54756. {
  54757. frontSfw: {
  54758. height: math.unit(120, "cm"),
  54759. weight: math.unit(15, "kg"),
  54760. name: "Front (SFW)",
  54761. image: {
  54762. source: "./media/characters/eri/front-sfw.svg",
  54763. extra: 1014/939,
  54764. bottom: 37/1051
  54765. },
  54766. form: "moth",
  54767. },
  54768. frontNsfw: {
  54769. height: math.unit(120, "cm"),
  54770. weight: math.unit(15, "kg"),
  54771. name: "Front (NSFW)",
  54772. image: {
  54773. source: "./media/characters/eri/front-nsfw.svg",
  54774. extra: 1014/939,
  54775. bottom: 37/1051
  54776. },
  54777. form: "moth",
  54778. default: true
  54779. },
  54780. egg: {
  54781. height: math.unit(10, "cm"),
  54782. name: "Egg",
  54783. image: {
  54784. source: "./media/characters/eri/egg.svg"
  54785. },
  54786. form: "egg",
  54787. default: true
  54788. },
  54789. },
  54790. [
  54791. {
  54792. name: "Normal",
  54793. height: math.unit(120, "cm"),
  54794. default: true,
  54795. form: "moth"
  54796. },
  54797. {
  54798. name: "Normal",
  54799. height: math.unit(10, "cm"),
  54800. default: true,
  54801. form: "egg"
  54802. },
  54803. ],
  54804. {
  54805. "moth": {
  54806. name: "Moth",
  54807. default: true
  54808. },
  54809. "egg": {
  54810. name: "Egg",
  54811. },
  54812. }
  54813. ))
  54814. characterMakers.push(() => makeCharacter(
  54815. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54816. {
  54817. front: {
  54818. height: math.unit(200, "feet"),
  54819. name: "Front",
  54820. image: {
  54821. source: "./media/characters/bishop-dowser/front.svg",
  54822. extra: 933/868,
  54823. bottom: 106/1039
  54824. }
  54825. },
  54826. },
  54827. [
  54828. {
  54829. name: "Giant",
  54830. height: math.unit(200, "feet"),
  54831. default: true
  54832. },
  54833. ]
  54834. ))
  54835. characterMakers.push(() => makeCharacter(
  54836. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54837. {
  54838. front: {
  54839. height: math.unit(2, "meters"),
  54840. preyCapacity: math.unit(3, "people"),
  54841. name: "Front",
  54842. image: {
  54843. source: "./media/characters/fryra/front.svg",
  54844. extra: 1025/948,
  54845. bottom: 30/1055
  54846. },
  54847. extraAttributes: {
  54848. "breastVolume": {
  54849. name: "Breast Volume",
  54850. power: 3,
  54851. type: "volume",
  54852. base: math.unit(8, "liters")
  54853. },
  54854. }
  54855. },
  54856. back: {
  54857. height: math.unit(2, "meters"),
  54858. preyCapacity: math.unit(3, "people"),
  54859. name: "Back",
  54860. image: {
  54861. source: "./media/characters/fryra/back.svg",
  54862. extra: 993/938,
  54863. bottom: 38/1031
  54864. },
  54865. extraAttributes: {
  54866. "breastVolume": {
  54867. name: "Breast Volume",
  54868. power: 3,
  54869. type: "volume",
  54870. base: math.unit(8, "liters")
  54871. },
  54872. }
  54873. },
  54874. head: {
  54875. height: math.unit(1.33, "feet"),
  54876. name: "Head",
  54877. image: {
  54878. source: "./media/characters/fryra/head.svg"
  54879. }
  54880. },
  54881. maw: {
  54882. height: math.unit(0.56, "feet"),
  54883. name: "Maw",
  54884. image: {
  54885. source: "./media/characters/fryra/maw.svg"
  54886. }
  54887. },
  54888. },
  54889. [
  54890. {
  54891. name: "Micro",
  54892. height: math.unit(5, "cm")
  54893. },
  54894. {
  54895. name: "Normal",
  54896. height: math.unit(2, "meters"),
  54897. default: true
  54898. },
  54899. {
  54900. name: "Small Macro",
  54901. height: math.unit(8, "meters")
  54902. },
  54903. {
  54904. name: "Macro",
  54905. height: math.unit(50, "meters")
  54906. },
  54907. {
  54908. name: "Megamacro",
  54909. height: math.unit(1, "km")
  54910. },
  54911. {
  54912. name: "Planetary",
  54913. height: math.unit(300000, "km")
  54914. },
  54915. {
  54916. name: "Universal",
  54917. height: math.unit(250, "lightyears")
  54918. },
  54919. {
  54920. name: "Fabric of Reality",
  54921. height: math.unit(1000, "multiverses")
  54922. },
  54923. ]
  54924. ))
  54925. characterMakers.push(() => makeCharacter(
  54926. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54927. {
  54928. frontDressed: {
  54929. height: math.unit(6 + 2/12, "feet"),
  54930. name: "Front (Dressed)",
  54931. image: {
  54932. source: "./media/characters/fiera/front-dressed.svg",
  54933. extra: 1883/1793,
  54934. bottom: 70/1953
  54935. }
  54936. },
  54937. backDressed: {
  54938. height: math.unit(6 + 2/12, "feet"),
  54939. name: "Back (Dressed)",
  54940. image: {
  54941. source: "./media/characters/fiera/back-dressed.svg",
  54942. extra: 1847/1780,
  54943. bottom: 70/1917
  54944. }
  54945. },
  54946. frontNude: {
  54947. height: math.unit(6 + 2/12, "feet"),
  54948. name: "Front (Nude)",
  54949. image: {
  54950. source: "./media/characters/fiera/front-nude.svg",
  54951. extra: 1875/1785,
  54952. bottom: 66/1941
  54953. }
  54954. },
  54955. backNude: {
  54956. height: math.unit(6 + 2/12, "feet"),
  54957. name: "Back (Nude)",
  54958. image: {
  54959. source: "./media/characters/fiera/back-nude.svg",
  54960. extra: 1855/1788,
  54961. bottom: 44/1899
  54962. }
  54963. },
  54964. maw: {
  54965. height: math.unit(1.3, "feet"),
  54966. name: "Maw",
  54967. image: {
  54968. source: "./media/characters/fiera/maw.svg"
  54969. }
  54970. },
  54971. paw: {
  54972. height: math.unit(1, "feet"),
  54973. name: "Paw",
  54974. image: {
  54975. source: "./media/characters/fiera/paw.svg"
  54976. }
  54977. },
  54978. shoe: {
  54979. height: math.unit(1.05, "feet"),
  54980. name: "Shoe",
  54981. image: {
  54982. source: "./media/characters/fiera/shoe.svg"
  54983. }
  54984. },
  54985. },
  54986. [
  54987. {
  54988. name: "Normal",
  54989. height: math.unit(6 + 2/12, "feet"),
  54990. default: true
  54991. },
  54992. {
  54993. name: "Size Difference",
  54994. height: math.unit(13, "feet")
  54995. },
  54996. {
  54997. name: "Macro",
  54998. height: math.unit(60, "feet")
  54999. },
  55000. {
  55001. name: "Mega Macro",
  55002. height: math.unit(200, "feet")
  55003. },
  55004. ]
  55005. ))
  55006. characterMakers.push(() => makeCharacter(
  55007. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55008. {
  55009. back: {
  55010. height: math.unit(6, "feet"),
  55011. name: "Back",
  55012. image: {
  55013. source: "./media/characters/flare/back.svg",
  55014. extra: 1883/1765,
  55015. bottom: 32/1915
  55016. }
  55017. },
  55018. },
  55019. [
  55020. {
  55021. name: "Normal",
  55022. height: math.unit(6 + 2/12, "feet"),
  55023. default: true
  55024. },
  55025. {
  55026. name: "Size Difference",
  55027. height: math.unit(13, "feet")
  55028. },
  55029. {
  55030. name: "Macro",
  55031. height: math.unit(60, "feet")
  55032. },
  55033. {
  55034. name: "Macro 2",
  55035. height: math.unit(100, "feet")
  55036. },
  55037. {
  55038. name: "Mega Macro",
  55039. height: math.unit(200, "feet")
  55040. },
  55041. ]
  55042. ))
  55043. characterMakers.push(() => makeCharacter(
  55044. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55045. {
  55046. front: {
  55047. height: math.unit(2.2, "m"),
  55048. weight: math.unit(300, "kg"),
  55049. name: "Front",
  55050. image: {
  55051. source: "./media/characters/hanna/front.svg",
  55052. extra: 1696/1502,
  55053. bottom: 206/1902
  55054. }
  55055. },
  55056. },
  55057. [
  55058. {
  55059. name: "Humanoid",
  55060. height: math.unit(2.2, "meters")
  55061. },
  55062. {
  55063. name: "Normal",
  55064. height: math.unit(4.8, "meters"),
  55065. default: true
  55066. },
  55067. ]
  55068. ))
  55069. characterMakers.push(() => makeCharacter(
  55070. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55071. {
  55072. front: {
  55073. height: math.unit(2.8, "meters"),
  55074. name: "Front",
  55075. image: {
  55076. source: "./media/characters/argo/front.svg",
  55077. extra: 731/518,
  55078. bottom: 84/815
  55079. }
  55080. },
  55081. },
  55082. [
  55083. {
  55084. name: "Normal",
  55085. height: math.unit(3, "meters"),
  55086. default: true
  55087. },
  55088. ]
  55089. ))
  55090. characterMakers.push(() => makeCharacter(
  55091. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55092. {
  55093. side: {
  55094. height: math.unit(3.8, "meters"),
  55095. name: "Side",
  55096. image: {
  55097. source: "./media/characters/sybil/side.svg",
  55098. extra: 382/361,
  55099. bottom: 25/407
  55100. }
  55101. },
  55102. },
  55103. [
  55104. {
  55105. name: "Normal",
  55106. height: math.unit(3.8, "meters"),
  55107. default: true
  55108. },
  55109. ]
  55110. ))
  55111. characterMakers.push(() => makeCharacter(
  55112. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55113. {
  55114. side: {
  55115. height: math.unit(6, "meters"),
  55116. name: "Side",
  55117. image: {
  55118. source: "./media/characters/plum/side.svg",
  55119. extra: 858/755,
  55120. bottom: 45/903
  55121. },
  55122. form: "taur",
  55123. default: true
  55124. },
  55125. back: {
  55126. height: math.unit(6.3, "meters"),
  55127. name: "Back",
  55128. image: {
  55129. source: "./media/characters/plum/back.svg",
  55130. extra: 887/813,
  55131. bottom: 32/919
  55132. },
  55133. form: "taur",
  55134. },
  55135. feral: {
  55136. height: math.unit(5.5, "meter"),
  55137. name: "Front",
  55138. image: {
  55139. source: "./media/characters/plum/feral.svg",
  55140. extra: 568/403,
  55141. bottom: 51/619
  55142. },
  55143. form: "feral",
  55144. default: true
  55145. },
  55146. head: {
  55147. height: math.unit(1.46, "meter"),
  55148. name: "Head",
  55149. image: {
  55150. source: "./media/characters/plum/head.svg"
  55151. },
  55152. form: "taur"
  55153. },
  55154. tailTop: {
  55155. height: math.unit(5.6, "meter"),
  55156. name: "Tail (Top)",
  55157. image: {
  55158. source: "./media/characters/plum/tail-top.svg"
  55159. },
  55160. form: "taur",
  55161. },
  55162. tailBottom: {
  55163. height: math.unit(5.6, "meter"),
  55164. name: "Tail (Bottom)",
  55165. image: {
  55166. source: "./media/characters/plum/tail-bottom.svg"
  55167. },
  55168. form: "taur",
  55169. },
  55170. feralHead: {
  55171. height: math.unit(2.56549521, "meter"),
  55172. name: "Head",
  55173. image: {
  55174. source: "./media/characters/plum/head.svg"
  55175. },
  55176. form: "feral"
  55177. },
  55178. feralTailTop: {
  55179. height: math.unit(5.44728435, "meter"),
  55180. name: "Tail (Top)",
  55181. image: {
  55182. source: "./media/characters/plum/tail-top.svg"
  55183. },
  55184. form: "feral",
  55185. },
  55186. feralTailBottom: {
  55187. height: math.unit(5.44728435, "meter"),
  55188. name: "Tail (Bottom)",
  55189. image: {
  55190. source: "./media/characters/plum/tail-bottom.svg"
  55191. },
  55192. form: "feral",
  55193. },
  55194. },
  55195. [
  55196. {
  55197. name: "Normal",
  55198. height: math.unit(6, "meters"),
  55199. default: true,
  55200. form: "taur"
  55201. },
  55202. {
  55203. name: "Normal",
  55204. height: math.unit(5.5, "meters"),
  55205. default: true,
  55206. form: "feral"
  55207. },
  55208. ],
  55209. {
  55210. "taur": {
  55211. name: "Taur",
  55212. default: true
  55213. },
  55214. "feral": {
  55215. name: "Feral",
  55216. },
  55217. }
  55218. ))
  55219. characterMakers.push(() => makeCharacter(
  55220. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55221. {
  55222. front: {
  55223. height: math.unit(6, "feet"),
  55224. weight: math.unit(115, "lb"),
  55225. name: "Front",
  55226. image: {
  55227. source: "./media/characters/celeste-kitsune/front.svg",
  55228. extra: 393/366,
  55229. bottom: 7/400
  55230. }
  55231. },
  55232. side: {
  55233. height: math.unit(6, "feet"),
  55234. weight: math.unit(115, "lb"),
  55235. name: "Side",
  55236. image: {
  55237. source: "./media/characters/celeste-kitsune/side.svg",
  55238. extra: 818/765,
  55239. bottom: 40/858
  55240. }
  55241. },
  55242. },
  55243. [
  55244. {
  55245. name: "Megamacro",
  55246. height: math.unit(1500, "miles"),
  55247. default: true
  55248. },
  55249. ]
  55250. ))
  55251. characterMakers.push(() => makeCharacter(
  55252. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55253. {
  55254. front: {
  55255. height: math.unit(8, "meters"),
  55256. name: "Front",
  55257. image: {
  55258. source: "./media/characters/io/front.svg",
  55259. extra: 865/722,
  55260. bottom: 58/923
  55261. }
  55262. },
  55263. back: {
  55264. height: math.unit(8, "meters"),
  55265. name: "Back",
  55266. image: {
  55267. source: "./media/characters/io/back.svg",
  55268. extra: 920/776,
  55269. bottom: 42/962
  55270. }
  55271. },
  55272. head: {
  55273. height: math.unit(5.09, "meters"),
  55274. name: "Head",
  55275. image: {
  55276. source: "./media/characters/io/head.svg"
  55277. }
  55278. },
  55279. hand: {
  55280. height: math.unit(1.6, "meters"),
  55281. name: "Hand",
  55282. image: {
  55283. source: "./media/characters/io/hand.svg"
  55284. }
  55285. },
  55286. foot: {
  55287. height: math.unit(2.4, "meters"),
  55288. name: "Foot",
  55289. image: {
  55290. source: "./media/characters/io/foot.svg"
  55291. }
  55292. },
  55293. },
  55294. [
  55295. {
  55296. name: "Normal",
  55297. height: math.unit(8, "meters"),
  55298. default: true
  55299. },
  55300. ]
  55301. ))
  55302. characterMakers.push(() => makeCharacter(
  55303. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55304. {
  55305. side: {
  55306. height: math.unit(6 + 3/12, "feet"),
  55307. weight: math.unit(225, "lb"),
  55308. name: "Side",
  55309. image: {
  55310. source: "./media/characters/silas/side.svg",
  55311. extra: 703/653,
  55312. bottom: 23/726
  55313. },
  55314. extraAttributes: {
  55315. "pawLength": {
  55316. name: "Paw Length",
  55317. power: 1,
  55318. type: "length",
  55319. base: math.unit(12, "inches")
  55320. },
  55321. "pawWidth": {
  55322. name: "Paw Width",
  55323. power: 1,
  55324. type: "length",
  55325. base: math.unit(4.5, "inches")
  55326. },
  55327. "pawArea": {
  55328. name: "Paw Area",
  55329. power: 2,
  55330. type: "area",
  55331. base: math.unit(12 * 4.5, "inches^2")
  55332. },
  55333. }
  55334. },
  55335. },
  55336. [
  55337. {
  55338. name: "Normal",
  55339. height: math.unit(6 + 3/12, "feet"),
  55340. default: true
  55341. },
  55342. ]
  55343. ))
  55344. characterMakers.push(() => makeCharacter(
  55345. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55346. {
  55347. back: {
  55348. height: math.unit(1.6, "meters"),
  55349. weight: math.unit(150, "lb"),
  55350. name: "Back",
  55351. image: {
  55352. source: "./media/characters/zari/back.svg",
  55353. extra: 424/411,
  55354. bottom: 32/456
  55355. },
  55356. extraAttributes: {
  55357. "bladderCapacity": {
  55358. name: "Bladder Size",
  55359. power: 3,
  55360. type: "volume",
  55361. base: math.unit(500, "mL")
  55362. },
  55363. "bladderFlow": {
  55364. name: "Flow Rate",
  55365. power: 3,
  55366. type: "volume",
  55367. base: math.unit(25, "mL")
  55368. },
  55369. }
  55370. },
  55371. },
  55372. [
  55373. {
  55374. name: "Normal",
  55375. height: math.unit(1.6, "meters"),
  55376. default: true
  55377. },
  55378. ]
  55379. ))
  55380. characterMakers.push(() => makeCharacter(
  55381. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55382. {
  55383. front: {
  55384. height: math.unit(25, "feet"),
  55385. weight: math.unit(5, "tons"),
  55386. name: "Front",
  55387. image: {
  55388. source: "./media/characters/charlie-human/front.svg",
  55389. extra: 1870/1740,
  55390. bottom: 102/1972
  55391. },
  55392. extraAttributes: {
  55393. "dickLength": {
  55394. name: "Dick Length",
  55395. power: 1,
  55396. type: "length",
  55397. base: math.unit(9, "feet")
  55398. },
  55399. }
  55400. },
  55401. back: {
  55402. height: math.unit(25, "feet"),
  55403. weight: math.unit(5, "tons"),
  55404. name: "Back",
  55405. image: {
  55406. source: "./media/characters/charlie-human/back.svg",
  55407. extra: 1858/1733,
  55408. bottom: 105/1963
  55409. },
  55410. extraAttributes: {
  55411. "dickLength": {
  55412. name: "Dick Length",
  55413. power: 1,
  55414. type: "length",
  55415. base: math.unit(9, "feet")
  55416. },
  55417. }
  55418. },
  55419. },
  55420. [
  55421. {
  55422. name: "\"Normal\"",
  55423. height: math.unit(6 + 4/12, "feet")
  55424. },
  55425. {
  55426. name: "Big",
  55427. height: math.unit(25, "feet"),
  55428. default: true
  55429. },
  55430. ]
  55431. ))
  55432. characterMakers.push(() => makeCharacter(
  55433. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55434. {
  55435. front: {
  55436. height: math.unit(6 + 4/12, "feet"),
  55437. weight: math.unit(320, "lb"),
  55438. name: "Front",
  55439. image: {
  55440. source: "./media/characters/ookitsu/front.svg",
  55441. extra: 1160/976,
  55442. bottom: 38/1198
  55443. }
  55444. },
  55445. frontNsfw: {
  55446. height: math.unit(6 + 4/12, "feet"),
  55447. weight: math.unit(320, "lb"),
  55448. name: "Front (NSFW)",
  55449. image: {
  55450. source: "./media/characters/ookitsu/front-nsfw.svg",
  55451. extra: 1160/976,
  55452. bottom: 38/1198
  55453. }
  55454. },
  55455. back: {
  55456. height: math.unit(6 + 4/12, "feet"),
  55457. weight: math.unit(320, "lb"),
  55458. name: "Back",
  55459. image: {
  55460. source: "./media/characters/ookitsu/back.svg",
  55461. extra: 1030/975,
  55462. bottom: 70/1100
  55463. }
  55464. },
  55465. head: {
  55466. height: math.unit(1.79, "feet"),
  55467. name: "Head",
  55468. image: {
  55469. source: "./media/characters/ookitsu/head.svg"
  55470. }
  55471. },
  55472. hand: {
  55473. height: math.unit(0.92, "feet"),
  55474. name: "Hand",
  55475. image: {
  55476. source: "./media/characters/ookitsu/hand.svg"
  55477. }
  55478. },
  55479. tails: {
  55480. height: math.unit(3.3, "feet"),
  55481. name: "Tails",
  55482. image: {
  55483. source: "./media/characters/ookitsu/tails.svg"
  55484. }
  55485. },
  55486. dick: {
  55487. height: math.unit(1.10833, "feet"),
  55488. name: "Dick",
  55489. image: {
  55490. source: "./media/characters/ookitsu/dick.svg"
  55491. }
  55492. },
  55493. },
  55494. [
  55495. {
  55496. name: "Normal",
  55497. height: math.unit(6 + 4/12, "feet"),
  55498. default: true
  55499. },
  55500. {
  55501. name: "Macro",
  55502. height: math.unit(30, "feet")
  55503. },
  55504. ]
  55505. ))
  55506. characterMakers.push(() => makeCharacter(
  55507. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55508. {
  55509. anthroFront: {
  55510. height: math.unit(6, "feet"),
  55511. weight: math.unit(250, "lb"),
  55512. name: "Front",
  55513. image: {
  55514. source: "./media/characters/jhusky/anthro-front.svg",
  55515. extra: 474/439,
  55516. bottom: 7/481
  55517. },
  55518. form: "anthro",
  55519. default: true
  55520. },
  55521. taurSideSfw: {
  55522. height: math.unit(6 + 4/12, "feet"),
  55523. weight: math.unit(500, "lb"),
  55524. name: "Side (SFW)",
  55525. image: {
  55526. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55527. extra: 1741/1629,
  55528. bottom: 196/1937
  55529. },
  55530. form: "taur",
  55531. default: true
  55532. },
  55533. taurSideNsfw: {
  55534. height: math.unit(6 + 4/12, "feet"),
  55535. weight: math.unit(500, "lb"),
  55536. name: "Taur (NSFW)",
  55537. image: {
  55538. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55539. extra: 1741/1629,
  55540. bottom: 196/1937
  55541. },
  55542. form: "taur",
  55543. },
  55544. },
  55545. [
  55546. {
  55547. name: "Huge",
  55548. height: math.unit(500, "feet"),
  55549. form: "anthro"
  55550. },
  55551. {
  55552. name: "Macro",
  55553. height: math.unit(1000, "feet"),
  55554. default: true,
  55555. form: "anthro"
  55556. },
  55557. {
  55558. name: "Megamacro",
  55559. height: math.unit(10000, "feet"),
  55560. form: "anthro"
  55561. },
  55562. {
  55563. name: "Huge",
  55564. height: math.unit(528, "feet"),
  55565. form: "taur"
  55566. },
  55567. {
  55568. name: "Macro",
  55569. height: math.unit(1056, "feet"),
  55570. default: true,
  55571. form: "taur"
  55572. },
  55573. {
  55574. name: "Megamacro",
  55575. height: math.unit(10556, "feet"),
  55576. form: "taur"
  55577. },
  55578. ],
  55579. {
  55580. "anthro": {
  55581. name: "Anthro",
  55582. default: true
  55583. },
  55584. "taur": {
  55585. name: "Taur",
  55586. },
  55587. }
  55588. ))
  55589. characterMakers.push(() => makeCharacter(
  55590. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55591. {
  55592. front: {
  55593. height: math.unit(8, "feet"),
  55594. weight: math.unit(500, "lb"),
  55595. name: "Front",
  55596. image: {
  55597. source: "./media/characters/armail/front.svg",
  55598. extra: 1753/1669,
  55599. bottom: 155/1908
  55600. }
  55601. },
  55602. back: {
  55603. height: math.unit(8, "feet"),
  55604. weight: math.unit(500, "lb"),
  55605. name: "Back",
  55606. image: {
  55607. source: "./media/characters/armail/back.svg",
  55608. extra: 1872/1803,
  55609. bottom: 63/1935
  55610. }
  55611. },
  55612. },
  55613. [
  55614. {
  55615. name: "Micro",
  55616. height: math.unit(0.25, "feet")
  55617. },
  55618. {
  55619. name: "Normal",
  55620. height: math.unit(8, "feet"),
  55621. default: true
  55622. },
  55623. {
  55624. name: "Mini-macro",
  55625. height: math.unit(30, "feet")
  55626. },
  55627. {
  55628. name: "Macro",
  55629. height: math.unit(400, "feet")
  55630. },
  55631. {
  55632. name: "Mega-macro",
  55633. height: math.unit(6000, "feet")
  55634. },
  55635. ]
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55639. {
  55640. front: {
  55641. height: math.unit(6 + 7/12, "feet"),
  55642. weight: math.unit(210, "lb"),
  55643. name: "Front",
  55644. image: {
  55645. source: "./media/characters/wilfred-t-buxton/front.svg",
  55646. extra: 1068/882,
  55647. bottom: 28/1096
  55648. }
  55649. },
  55650. },
  55651. [
  55652. {
  55653. name: "Normal",
  55654. height: math.unit(6 + 7/12, "feet"),
  55655. default: true
  55656. },
  55657. ]
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(5 + 2/12, "feet"),
  55664. weight: math.unit(120, "lb"),
  55665. name: "Front",
  55666. image: {
  55667. source: "./media/characters/leighton-marrow/front.svg",
  55668. extra: 441/409,
  55669. bottom: 37/478
  55670. }
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Normal",
  55676. height: math.unit(5 + 2/12, "feet"),
  55677. default: true
  55678. },
  55679. ]
  55680. ))
  55681. characterMakers.push(() => makeCharacter(
  55682. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55683. {
  55684. front: {
  55685. height: math.unit(4, "meters"),
  55686. weight: math.unit(1200, "kg"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/licos/front.svg",
  55690. extra: 1727/1604,
  55691. bottom: 101/1828
  55692. },
  55693. form: "anthro",
  55694. default: true
  55695. },
  55696. taur_side: {
  55697. height: math.unit(20, "meters"),
  55698. weight: math.unit(1100000, "kg"),
  55699. name: "Side",
  55700. image: {
  55701. source: "./media/characters/licos/taur.svg",
  55702. extra: 1158/1091,
  55703. bottom: 80/1238
  55704. },
  55705. form: "taur",
  55706. default: true
  55707. },
  55708. },
  55709. [
  55710. {
  55711. name: "Normal",
  55712. height: math.unit(4, "meters"),
  55713. default: true,
  55714. form: "anthro"
  55715. },
  55716. {
  55717. name: "Normal",
  55718. height: math.unit(20, "meters"),
  55719. default: true,
  55720. form: "taur"
  55721. },
  55722. ],
  55723. {
  55724. "anthro": {
  55725. name: "Anthro",
  55726. default: true
  55727. },
  55728. "taur": {
  55729. name: "Taur",
  55730. },
  55731. }
  55732. ))
  55733. characterMakers.push(() => makeCharacter(
  55734. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55735. {
  55736. front: {
  55737. height: math.unit(10 + 3/12, "feet"),
  55738. name: "Front",
  55739. image: {
  55740. source: "./media/characters/theo-monkey/front.svg",
  55741. extra: 1735/1658,
  55742. bottom: 73/1808
  55743. }
  55744. },
  55745. back: {
  55746. height: math.unit(10 + 3/12, "feet"),
  55747. name: "Back",
  55748. image: {
  55749. source: "./media/characters/theo-monkey/back.svg",
  55750. extra: 1742/1664,
  55751. bottom: 33/1775
  55752. }
  55753. },
  55754. head: {
  55755. height: math.unit(2.29, "feet"),
  55756. name: "Head",
  55757. image: {
  55758. source: "./media/characters/theo-monkey/head.svg"
  55759. }
  55760. },
  55761. handPalm: {
  55762. height: math.unit(1.73, "feet"),
  55763. name: "Hand (Palm)",
  55764. image: {
  55765. source: "./media/characters/theo-monkey/hand-palm.svg"
  55766. }
  55767. },
  55768. handBack: {
  55769. height: math.unit(1.63, "feet"),
  55770. name: "Hand (Back)",
  55771. image: {
  55772. source: "./media/characters/theo-monkey/hand-back.svg"
  55773. }
  55774. },
  55775. footSole: {
  55776. height: math.unit(2.15, "feet"),
  55777. name: "Foot (Sole)",
  55778. image: {
  55779. source: "./media/characters/theo-monkey/foot-sole.svg"
  55780. }
  55781. },
  55782. footSide: {
  55783. height: math.unit(1.6, "feet"),
  55784. name: "Foot (Side)",
  55785. image: {
  55786. source: "./media/characters/theo-monkey/foot-side.svg"
  55787. }
  55788. },
  55789. },
  55790. [
  55791. {
  55792. name: "Normal",
  55793. height: math.unit(10 + 3/12, "feet"),
  55794. default: true
  55795. },
  55796. ]
  55797. ))
  55798. characterMakers.push(() => makeCharacter(
  55799. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55800. {
  55801. front: {
  55802. height: math.unit(11, "feet"),
  55803. weight: math.unit(3000, "lb"),
  55804. preyCapacity: math.unit(10, "people"),
  55805. name: "Front",
  55806. image: {
  55807. source: "./media/characters/brook/front.svg",
  55808. extra: 909/835,
  55809. bottom: 108/1017
  55810. }
  55811. },
  55812. back: {
  55813. height: math.unit(11, "feet"),
  55814. weight: math.unit(3000, "lb"),
  55815. preyCapacity: math.unit(10, "people"),
  55816. name: "Back",
  55817. image: {
  55818. source: "./media/characters/brook/back.svg",
  55819. extra: 976/916,
  55820. bottom: 34/1010
  55821. }
  55822. },
  55823. backAlt: {
  55824. height: math.unit(11, "feet"),
  55825. weight: math.unit(3000, "lb"),
  55826. preyCapacity: math.unit(10, "people"),
  55827. name: "Back (Alt)",
  55828. image: {
  55829. source: "./media/characters/brook/back-alt.svg",
  55830. extra: 1283/1213,
  55831. bottom: 35/1318
  55832. }
  55833. },
  55834. bust: {
  55835. height: math.unit(9.0859030837, "feet"),
  55836. weight: math.unit(3000, "lb"),
  55837. preyCapacity: math.unit(10, "people"),
  55838. name: "Bust",
  55839. image: {
  55840. source: "./media/characters/brook/bust.svg",
  55841. extra: 2043/1923,
  55842. bottom: 0/2043
  55843. }
  55844. },
  55845. },
  55846. [
  55847. {
  55848. name: "Small",
  55849. height: math.unit(11, "feet"),
  55850. default: true
  55851. },
  55852. {
  55853. name: "Towering",
  55854. height: math.unit(5, "km")
  55855. },
  55856. {
  55857. name: "Enormous",
  55858. height: math.unit(25, "earths")
  55859. },
  55860. ]
  55861. ))
  55862. characterMakers.push(() => makeCharacter(
  55863. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55864. {
  55865. front: {
  55866. height: math.unit(4, "feet"),
  55867. weight: math.unit(150, "lb"),
  55868. name: "Front",
  55869. image: {
  55870. source: "./media/characters/squishi/front.svg",
  55871. extra: 1428/1271,
  55872. bottom: 30/1458
  55873. },
  55874. extraAttributes: {
  55875. "pawSize": {
  55876. name: "Paw Size",
  55877. power: 1,
  55878. type: "length",
  55879. base: math.unit(14, "ShoeSizeMensUS"),
  55880. defaultUnit: "ShoeSizeMensUS"
  55881. },
  55882. }
  55883. },
  55884. side: {
  55885. height: math.unit(4, "feet"),
  55886. weight: math.unit(150, "lb"),
  55887. name: "Side",
  55888. image: {
  55889. source: "./media/characters/squishi/side.svg",
  55890. extra: 1428/1271,
  55891. bottom: 30/1458
  55892. },
  55893. extraAttributes: {
  55894. "pawSize": {
  55895. name: "Paw Size",
  55896. power: 1,
  55897. type: "length",
  55898. base: math.unit(14, "ShoeSizeMensUS"),
  55899. defaultUnit: "ShoeSizeMensUS"
  55900. },
  55901. }
  55902. },
  55903. back: {
  55904. height: math.unit(4, "feet"),
  55905. weight: math.unit(150, "lb"),
  55906. name: "Back",
  55907. image: {
  55908. source: "./media/characters/squishi/back.svg",
  55909. extra: 1428/1271,
  55910. bottom: 30/1458
  55911. },
  55912. extraAttributes: {
  55913. "pawSize": {
  55914. name: "Paw Size",
  55915. power: 1,
  55916. type: "length",
  55917. base: math.unit(14, "ShoeSizeMensUS"),
  55918. defaultUnit: "ShoeSizeMensUS"
  55919. },
  55920. }
  55921. },
  55922. },
  55923. [
  55924. {
  55925. name: "Normal",
  55926. height: math.unit(4, "feet"),
  55927. default: true
  55928. },
  55929. ]
  55930. ))
  55931. characterMakers.push(() => makeCharacter(
  55932. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55933. {
  55934. front: {
  55935. height: math.unit(7 + 8/12, "feet"),
  55936. weight: math.unit(333, "lb"),
  55937. name: "Front",
  55938. image: {
  55939. source: "./media/characters/vincent-vasroc/front.svg",
  55940. extra: 1962/1860,
  55941. bottom: 41/2003
  55942. }
  55943. },
  55944. back: {
  55945. height: math.unit(7 + 8/12, "feet"),
  55946. weight: math.unit(333, "lb"),
  55947. name: "Back",
  55948. image: {
  55949. source: "./media/characters/vincent-vasroc/back.svg",
  55950. extra: 1952/1815,
  55951. bottom: 33/1985
  55952. }
  55953. },
  55954. paw: {
  55955. height: math.unit(1.24, "feet"),
  55956. name: "Paw",
  55957. image: {
  55958. source: "./media/characters/vincent-vasroc/paw.svg"
  55959. }
  55960. },
  55961. ear: {
  55962. height: math.unit(0.75, "feet"),
  55963. name: "Ear",
  55964. image: {
  55965. source: "./media/characters/vincent-vasroc/ear.svg"
  55966. }
  55967. },
  55968. },
  55969. [
  55970. {
  55971. name: "Nano",
  55972. height: math.unit(92, "micrometers")
  55973. },
  55974. {
  55975. name: "Normal",
  55976. height: math.unit(7 + 8/12, "feet"),
  55977. default: true
  55978. },
  55979. ]
  55980. ))
  55981. characterMakers.push(() => makeCharacter(
  55982. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55983. {
  55984. frontNsfw: {
  55985. height: math.unit(40, "feet"),
  55986. weight: math.unit(58, "tons"),
  55987. name: "Front (NSFW)",
  55988. image: {
  55989. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55990. extra: 1265/965,
  55991. bottom: 155/1420
  55992. }
  55993. },
  55994. frontSfw: {
  55995. height: math.unit(40, "feet"),
  55996. weight: math.unit(58, "tons"),
  55997. name: "Front (SFW)",
  55998. image: {
  55999. source: "./media/characters/ru-kahn/front-sfw.svg",
  56000. extra: 1265/965,
  56001. bottom: 80/1345
  56002. }
  56003. },
  56004. },
  56005. [
  56006. {
  56007. name: "Small",
  56008. height: math.unit(4, "feet")
  56009. },
  56010. {
  56011. name: "Normal",
  56012. height: math.unit(40, "feet"),
  56013. default: true
  56014. },
  56015. {
  56016. name: "Macro",
  56017. height: math.unit(400, "feet")
  56018. },
  56019. ]
  56020. ))
  56021. characterMakers.push(() => makeCharacter(
  56022. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56023. {
  56024. frontNude: {
  56025. height: math.unit(6 + 5/12, "feet"),
  56026. name: "Front (Nude)",
  56027. image: {
  56028. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56029. extra: 1369/1366,
  56030. bottom: 68/1437
  56031. }
  56032. },
  56033. frontDressed: {
  56034. height: math.unit(6 + 5/12, "feet"),
  56035. name: "Front (Dressed)",
  56036. image: {
  56037. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56038. extra: 1369/1366,
  56039. bottom: 68/1437
  56040. }
  56041. },
  56042. },
  56043. [
  56044. {
  56045. name: "Normal",
  56046. height: math.unit(6 + 5/12, "feet"),
  56047. default: true
  56048. },
  56049. {
  56050. name: "Maximum",
  56051. height: math.unit(1930, "feet")
  56052. },
  56053. ]
  56054. ))
  56055. characterMakers.push(() => makeCharacter(
  56056. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56057. {
  56058. front: {
  56059. height: math.unit(5 + 6/12, "feet"),
  56060. name: "Front",
  56061. image: {
  56062. source: "./media/characters/kaja/front.svg",
  56063. extra: 1874/1514,
  56064. bottom: 117/1991
  56065. }
  56066. },
  56067. },
  56068. [
  56069. {
  56070. name: "Normal",
  56071. height: math.unit(5 + 6/12, "feet"),
  56072. default: true
  56073. },
  56074. ]
  56075. ))
  56076. characterMakers.push(() => makeCharacter(
  56077. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56078. {
  56079. front: {
  56080. height: math.unit(5 + 9/12, "feet"),
  56081. weight: math.unit(200, "lb"),
  56082. name: "Front",
  56083. image: {
  56084. source: "./media/characters/mark-smith/front.svg",
  56085. extra: 1004/943,
  56086. bottom: 58/1062
  56087. }
  56088. },
  56089. back: {
  56090. height: math.unit(5 + 9/12, "feet"),
  56091. weight: math.unit(200, "lb"),
  56092. name: "Back",
  56093. image: {
  56094. source: "./media/characters/mark-smith/back.svg",
  56095. extra: 1023/953,
  56096. bottom: 24/1047
  56097. }
  56098. },
  56099. head: {
  56100. height: math.unit(1.82, "feet"),
  56101. name: "Head",
  56102. image: {
  56103. source: "./media/characters/mark-smith/head.svg"
  56104. }
  56105. },
  56106. hand: {
  56107. height: math.unit(1.4, "feet"),
  56108. name: "Hand",
  56109. image: {
  56110. source: "./media/characters/mark-smith/hand.svg"
  56111. }
  56112. },
  56113. paw: {
  56114. height: math.unit(1.69, "feet"),
  56115. name: "Paw",
  56116. image: {
  56117. source: "./media/characters/mark-smith/paw.svg"
  56118. }
  56119. },
  56120. },
  56121. [
  56122. {
  56123. name: "Micro",
  56124. height: math.unit(0.25, "inches")
  56125. },
  56126. {
  56127. name: "Normal",
  56128. height: math.unit(5 + 9/12, "feet"),
  56129. default: true
  56130. },
  56131. {
  56132. name: "Macro",
  56133. height: math.unit(500, "feet")
  56134. },
  56135. ]
  56136. ))
  56137. characterMakers.push(() => makeCharacter(
  56138. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56139. {
  56140. frontNude: {
  56141. height: math.unit(6, "feet"),
  56142. name: "Front (Nude)",
  56143. image: {
  56144. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56145. extra: 1384/1321,
  56146. bottom: 57/1441
  56147. }
  56148. },
  56149. frontDressed: {
  56150. height: math.unit(6, "feet"),
  56151. name: "Front (Dressed)",
  56152. image: {
  56153. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56154. extra: 1384/1321,
  56155. bottom: 57/1441
  56156. }
  56157. },
  56158. },
  56159. [
  56160. {
  56161. name: "Normal",
  56162. height: math.unit(6, "feet"),
  56163. default: true
  56164. },
  56165. {
  56166. name: "Maximum",
  56167. height: math.unit(1776, "feet")
  56168. },
  56169. ]
  56170. ))
  56171. characterMakers.push(() => makeCharacter(
  56172. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56173. {
  56174. front: {
  56175. height: math.unit(2 + 4/12, "feet"),
  56176. weight: math.unit(350, "lb"),
  56177. name: "Front",
  56178. image: {
  56179. source: "./media/characters/devos/front.svg",
  56180. extra: 958/852,
  56181. bottom: 143/1101
  56182. }
  56183. },
  56184. },
  56185. [
  56186. {
  56187. name: "Base",
  56188. height: math.unit(2 + 4/12, "feet"),
  56189. default: true
  56190. },
  56191. ]
  56192. ))
  56193. characterMakers.push(() => makeCharacter(
  56194. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56195. {
  56196. front: {
  56197. height: math.unit(9 + 2/12, "feet"),
  56198. name: "Front",
  56199. image: {
  56200. source: "./media/characters/hiveheart/front.svg",
  56201. extra: 394/364,
  56202. bottom: 65/459
  56203. }
  56204. },
  56205. back: {
  56206. height: math.unit(9 + 2/12, "feet"),
  56207. name: "Back",
  56208. image: {
  56209. source: "./media/characters/hiveheart/back.svg",
  56210. extra: 374/357,
  56211. bottom: 63/437
  56212. }
  56213. },
  56214. },
  56215. [
  56216. {
  56217. name: "Base",
  56218. height: math.unit(9 + 2/12, "feet"),
  56219. default: true
  56220. },
  56221. ]
  56222. ))
  56223. characterMakers.push(() => makeCharacter(
  56224. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56225. {
  56226. front: {
  56227. height: math.unit(2.5, "inches"),
  56228. weight: math.unit(0.6, "oz"),
  56229. name: "Front",
  56230. image: {
  56231. source: "./media/characters/bryn/front.svg",
  56232. extra: 1480/1205,
  56233. bottom: 27/1507
  56234. }
  56235. },
  56236. back: {
  56237. height: math.unit(2.5, "inches"),
  56238. weight: math.unit(0.6, "oz"),
  56239. name: "Back",
  56240. image: {
  56241. source: "./media/characters/bryn/back.svg",
  56242. extra: 1475/1201,
  56243. bottom: 39/1514
  56244. }
  56245. },
  56246. foot: {
  56247. height: math.unit(0.4, "inches"),
  56248. name: "Foot",
  56249. image: {
  56250. source: "./media/characters/bryn/foot.svg"
  56251. }
  56252. },
  56253. },
  56254. [
  56255. {
  56256. name: "Normal",
  56257. height: math.unit(2.5, "inches"),
  56258. default: true
  56259. },
  56260. ]
  56261. ))
  56262. characterMakers.push(() => makeCharacter(
  56263. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56264. {
  56265. side: {
  56266. height: math.unit(7, "feet"),
  56267. weight: math.unit(657, "kg"),
  56268. name: "Side",
  56269. image: {
  56270. source: "./media/characters/delta/side.svg",
  56271. extra: 781/212,
  56272. bottom: 7/788
  56273. },
  56274. extraAttributes: {
  56275. "wingspan": {
  56276. name: "Wingspan",
  56277. power: 1,
  56278. type: "length",
  56279. base: math.unit(48, "feet")
  56280. },
  56281. "length": {
  56282. name: "Length",
  56283. power: 1,
  56284. type: "length",
  56285. base: math.unit(21, "feet")
  56286. },
  56287. "pawSize": {
  56288. name: "Paw Size",
  56289. power: 2,
  56290. type: "area",
  56291. base: math.unit(1.5*1.4, "feet^2")
  56292. },
  56293. }
  56294. },
  56295. },
  56296. [
  56297. {
  56298. name: "Normal",
  56299. height: math.unit(6, "feet"),
  56300. default: true
  56301. },
  56302. ]
  56303. ))
  56304. characterMakers.push(() => makeCharacter(
  56305. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56306. {
  56307. front: {
  56308. height: math.unit(6, "feet"),
  56309. name: "Front",
  56310. image: {
  56311. source: "./media/characters/pyrow/front.svg",
  56312. extra: 513/486,
  56313. bottom: 14/527
  56314. }
  56315. },
  56316. frontWing: {
  56317. height: math.unit(6, "feet"),
  56318. name: "Front (Wing)",
  56319. image: {
  56320. source: "./media/characters/pyrow/front-wing.svg",
  56321. extra: 539/383,
  56322. bottom: 20/559
  56323. }
  56324. },
  56325. back: {
  56326. height: math.unit(6, "feet"),
  56327. name: "Back",
  56328. image: {
  56329. source: "./media/characters/pyrow/back.svg",
  56330. extra: 500/473,
  56331. bottom: 9/509
  56332. }
  56333. },
  56334. },
  56335. [
  56336. {
  56337. name: "Normal",
  56338. height: math.unit(6, "feet"),
  56339. default: true
  56340. },
  56341. ]
  56342. ))
  56343. characterMakers.push(() => makeCharacter(
  56344. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56345. {
  56346. front: {
  56347. height: math.unit(5, "meters"),
  56348. weight: math.unit(3, "tonnes"),
  56349. name: "Front",
  56350. image: {
  56351. source: "./media/characters/velikan/front.svg",
  56352. extra: 867/744,
  56353. bottom: 71/938
  56354. },
  56355. extraAttributes: {
  56356. "shoeSize": {
  56357. name: "Shoe Size",
  56358. power: 1,
  56359. type: "length",
  56360. base: math.unit(135, "ShoeSizeUK"),
  56361. defaultUnit: "ShoeSizeUK"
  56362. },
  56363. }
  56364. },
  56365. },
  56366. [
  56367. {
  56368. name: "Normal",
  56369. height: math.unit(5, "meters"),
  56370. default: true
  56371. },
  56372. {
  56373. name: "Macro",
  56374. height: math.unit(1, "km")
  56375. },
  56376. {
  56377. name: "Mega Macro",
  56378. height: math.unit(100, "km")
  56379. },
  56380. {
  56381. name: "Giga Macro",
  56382. height: math.unit(2, "megameters")
  56383. },
  56384. {
  56385. name: "Planetary",
  56386. height: math.unit(22, "megameters")
  56387. },
  56388. {
  56389. name: "Solar",
  56390. height: math.unit(8, "gigameters")
  56391. },
  56392. {
  56393. name: "Cosmic",
  56394. height: math.unit(10, "zettameters")
  56395. },
  56396. {
  56397. name: "Omni",
  56398. height: math.unit(9e260, "multiverses")
  56399. },
  56400. ]
  56401. ))
  56402. characterMakers.push(() => makeCharacter(
  56403. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56404. {
  56405. front: {
  56406. height: math.unit(4 + 3/12, "feet"),
  56407. weight: math.unit(90, "lb"),
  56408. name: "Front",
  56409. image: {
  56410. source: "./media/characters/sabiki/front.svg",
  56411. extra: 1662/1423,
  56412. bottom: 65/1727
  56413. }
  56414. },
  56415. },
  56416. [
  56417. {
  56418. name: "Normal",
  56419. height: math.unit(4 + 3/12, "feet"),
  56420. default: true
  56421. },
  56422. ]
  56423. ))
  56424. characterMakers.push(() => makeCharacter(
  56425. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56426. {
  56427. frontSfw: {
  56428. height: math.unit(2, "mm"),
  56429. name: "Front (SFW)",
  56430. image: {
  56431. source: "./media/characters/carmel/front-sfw.svg",
  56432. extra: 1131/1006,
  56433. bottom: 66/1197
  56434. }
  56435. },
  56436. frontNsfw: {
  56437. height: math.unit(2, "mm"),
  56438. name: "Front (NSFW)",
  56439. image: {
  56440. source: "./media/characters/carmel/front-nsfw.svg",
  56441. extra: 1131/1006,
  56442. bottom: 66/1197
  56443. }
  56444. },
  56445. foot: {
  56446. height: math.unit(0.3, "mm"),
  56447. name: "Foot",
  56448. image: {
  56449. source: "./media/characters/carmel/foot.svg"
  56450. }
  56451. },
  56452. tongue: {
  56453. height: math.unit(0.71, "mm"),
  56454. name: "Tongue",
  56455. image: {
  56456. source: "./media/characters/carmel/tongue.svg"
  56457. }
  56458. },
  56459. dick: {
  56460. height: math.unit(0.085, "mm"),
  56461. name: "Dick",
  56462. image: {
  56463. source: "./media/characters/carmel/dick.svg"
  56464. }
  56465. },
  56466. },
  56467. [
  56468. {
  56469. name: "Micro",
  56470. height: math.unit(2, "mm"),
  56471. default: true
  56472. },
  56473. {
  56474. name: "Normal",
  56475. height: math.unit(4 + 8/12, "feet")
  56476. },
  56477. {
  56478. name: "Mega Macro",
  56479. height: math.unit(250, "feet")
  56480. },
  56481. {
  56482. name: "BIGGER",
  56483. height: math.unit(1000, "feet")
  56484. },
  56485. {
  56486. name: "BIGGEST",
  56487. height: math.unit(2, "miles")
  56488. },
  56489. ]
  56490. ))
  56491. characterMakers.push(() => makeCharacter(
  56492. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56493. {
  56494. front: {
  56495. height: math.unit(6.5, "feet"),
  56496. weight: math.unit(198, "lb"),
  56497. name: "Front",
  56498. image: {
  56499. source: "./media/characters/tamani/anthro.svg",
  56500. extra: 930/890,
  56501. bottom: 34/964
  56502. },
  56503. form: "anthro",
  56504. default: true
  56505. },
  56506. side: {
  56507. height: math.unit(6, "feet"),
  56508. weight: math.unit(198*2, "lb"),
  56509. name: "Side",
  56510. image: {
  56511. source: "./media/characters/tamani/feral.svg",
  56512. extra: 559/519,
  56513. bottom: 43/602
  56514. },
  56515. form: "feral"
  56516. },
  56517. },
  56518. [
  56519. {
  56520. name: "Normal",
  56521. height: math.unit(6.5, "feet"),
  56522. default: true,
  56523. form: "anthro"
  56524. },
  56525. {
  56526. name: "Normal",
  56527. height: math.unit(6, "feet"),
  56528. default: true,
  56529. form: "feral"
  56530. },
  56531. ],
  56532. {
  56533. "anthro": {
  56534. name: "Anthro",
  56535. default: true
  56536. },
  56537. "feral": {
  56538. name: "Feral",
  56539. },
  56540. }
  56541. ))
  56542. characterMakers.push(() => makeCharacter(
  56543. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56544. {
  56545. front: {
  56546. height: math.unit(4 + 1/12, "feet"),
  56547. weight: math.unit(114, "lb"),
  56548. name: "Front",
  56549. image: {
  56550. source: "./media/characters/dex/front.svg",
  56551. extra: 787/680,
  56552. bottom: 18/805
  56553. }
  56554. },
  56555. side: {
  56556. height: math.unit(4 + 1/12, "feet"),
  56557. weight: math.unit(114, "lb"),
  56558. name: "Side",
  56559. image: {
  56560. source: "./media/characters/dex/side.svg",
  56561. extra: 785/680,
  56562. bottom: 12/797
  56563. }
  56564. },
  56565. back: {
  56566. height: math.unit(4 + 1/12, "feet"),
  56567. weight: math.unit(114, "lb"),
  56568. name: "Back",
  56569. image: {
  56570. source: "./media/characters/dex/back.svg",
  56571. extra: 785/681,
  56572. bottom: 17/802
  56573. }
  56574. },
  56575. loungewear: {
  56576. height: math.unit(4 + 1/12, "feet"),
  56577. weight: math.unit(114, "lb"),
  56578. name: "Loungewear",
  56579. image: {
  56580. source: "./media/characters/dex/loungewear.svg",
  56581. extra: 787/680,
  56582. bottom: 18/805
  56583. }
  56584. },
  56585. workout: {
  56586. height: math.unit(4 + 1/12, "feet"),
  56587. weight: math.unit(114, "lb"),
  56588. name: "Workout",
  56589. image: {
  56590. source: "./media/characters/dex/workout.svg",
  56591. extra: 787/680,
  56592. bottom: 18/805
  56593. }
  56594. },
  56595. schoolUniform: {
  56596. height: math.unit(4 + 1/12, "feet"),
  56597. weight: math.unit(114, "lb"),
  56598. name: "School-uniform",
  56599. image: {
  56600. source: "./media/characters/dex/school-uniform.svg",
  56601. extra: 787/680,
  56602. bottom: 18/805
  56603. }
  56604. },
  56605. maw: {
  56606. height: math.unit(0.55, "feet"),
  56607. name: "Maw",
  56608. image: {
  56609. source: "./media/characters/dex/maw.svg"
  56610. }
  56611. },
  56612. paw: {
  56613. height: math.unit(0.87, "feet"),
  56614. name: "Paw",
  56615. image: {
  56616. source: "./media/characters/dex/paw.svg"
  56617. }
  56618. },
  56619. bust: {
  56620. height: math.unit(1.67, "feet"),
  56621. name: "Bust",
  56622. image: {
  56623. source: "./media/characters/dex/bust.svg"
  56624. }
  56625. },
  56626. },
  56627. [
  56628. {
  56629. name: "Normal",
  56630. height: math.unit(4 + 1/12, "feet"),
  56631. default: true
  56632. },
  56633. ]
  56634. ))
  56635. characterMakers.push(() => makeCharacter(
  56636. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56637. {
  56638. front: {
  56639. height: math.unit(4 + 3/12, "feet"),
  56640. weight: math.unit(60, "lb"),
  56641. name: "Front",
  56642. image: {
  56643. source: "./media/characters/silke/front.svg",
  56644. extra: 1334/1122,
  56645. bottom: 21/1355
  56646. }
  56647. },
  56648. back: {
  56649. height: math.unit(4 + 3/12, "feet"),
  56650. weight: math.unit(60, "lb"),
  56651. name: "Back",
  56652. image: {
  56653. source: "./media/characters/silke/back.svg",
  56654. extra: 1328/1092,
  56655. bottom: 16/1344
  56656. }
  56657. },
  56658. dressed: {
  56659. height: math.unit(4 + 3/12, "feet"),
  56660. weight: math.unit(60, "lb"),
  56661. name: "Dressed",
  56662. image: {
  56663. source: "./media/characters/silke/dressed.svg",
  56664. extra: 1334/1122,
  56665. bottom: 43/1377
  56666. }
  56667. },
  56668. },
  56669. [
  56670. {
  56671. name: "Normal",
  56672. height: math.unit(4 + 3/12, "feet"),
  56673. default: true
  56674. },
  56675. ]
  56676. ))
  56677. characterMakers.push(() => makeCharacter(
  56678. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56679. {
  56680. front: {
  56681. height: math.unit(1.58, "meters"),
  56682. weight: math.unit(47, "kg"),
  56683. name: "Front",
  56684. image: {
  56685. source: "./media/characters/wireshark/front.svg",
  56686. extra: 883/838,
  56687. bottom: 66/949
  56688. }
  56689. },
  56690. },
  56691. [
  56692. {
  56693. name: "Normal",
  56694. height: math.unit(1.58, "meters"),
  56695. default: true
  56696. },
  56697. ]
  56698. ))
  56699. characterMakers.push(() => makeCharacter(
  56700. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56701. {
  56702. front: {
  56703. height: math.unit(6, "meters"),
  56704. weight: math.unit(15000, "kg"),
  56705. name: "Front",
  56706. image: {
  56707. source: "./media/characters/gallagher/front.svg",
  56708. extra: 532/493,
  56709. bottom: 0/532
  56710. }
  56711. },
  56712. },
  56713. [
  56714. {
  56715. name: "Normal",
  56716. height: math.unit(6, "meters"),
  56717. default: true
  56718. },
  56719. ]
  56720. ))
  56721. characterMakers.push(() => makeCharacter(
  56722. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56723. {
  56724. front: {
  56725. height: math.unit(2.4, "meters"),
  56726. weight: math.unit(270, "kg"),
  56727. name: "Front",
  56728. image: {
  56729. source: "./media/characters/alice/front.svg",
  56730. extra: 950/900,
  56731. bottom: 36/986
  56732. }
  56733. },
  56734. side: {
  56735. height: math.unit(2.4, "meters"),
  56736. weight: math.unit(270, "kg"),
  56737. name: "Side",
  56738. image: {
  56739. source: "./media/characters/alice/side.svg",
  56740. extra: 921/876,
  56741. bottom: 19/940
  56742. }
  56743. },
  56744. dressed: {
  56745. height: math.unit(2.4, "meters"),
  56746. weight: math.unit(270, "kg"),
  56747. name: "Dressed",
  56748. image: {
  56749. source: "./media/characters/alice/dressed.svg",
  56750. extra: 905/850,
  56751. bottom: 81/986
  56752. }
  56753. },
  56754. fishnet: {
  56755. height: math.unit(2.4, "meters"),
  56756. weight: math.unit(270, "kg"),
  56757. name: "Fishnet",
  56758. image: {
  56759. source: "./media/characters/alice/fishnet.svg",
  56760. extra: 905/850,
  56761. bottom: 81/986
  56762. }
  56763. },
  56764. },
  56765. [
  56766. {
  56767. name: "Normal",
  56768. height: math.unit(2.4, "meters"),
  56769. default: true
  56770. },
  56771. ]
  56772. ))
  56773. characterMakers.push(() => makeCharacter(
  56774. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56775. {
  56776. front: {
  56777. height: math.unit(175.25, "feet"),
  56778. name: "Front",
  56779. image: {
  56780. source: "./media/characters/fio/front.svg",
  56781. extra: 1883/1591,
  56782. bottom: 34/1917
  56783. }
  56784. },
  56785. },
  56786. [
  56787. {
  56788. name: "Normal",
  56789. height: math.unit(175.25, "cm"),
  56790. default: true
  56791. },
  56792. ]
  56793. ))
  56794. characterMakers.push(() => makeCharacter(
  56795. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56796. {
  56797. side: {
  56798. height: math.unit(6, "meters"),
  56799. weight: math.unit(3400, "kg"),
  56800. preyCapacity: math.unit(1700, "liters"),
  56801. name: "Side",
  56802. image: {
  56803. source: "./media/characters/hass/side.svg",
  56804. extra: 1058/997,
  56805. bottom: 177/1235
  56806. }
  56807. },
  56808. feeding: {
  56809. height: math.unit(6*0.63, "meters"),
  56810. weight: math.unit(3400, "kg"),
  56811. preyCapacity: math.unit(1700, "liters"),
  56812. name: "Feeding",
  56813. image: {
  56814. source: "./media/characters/hass/feeding.svg",
  56815. extra: 689/579,
  56816. bottom: 146/835
  56817. }
  56818. },
  56819. guts: {
  56820. height: math.unit(6, "meters"),
  56821. weight: math.unit(3400, "kg"),
  56822. name: "Guts",
  56823. image: {
  56824. source: "./media/characters/hass/guts.svg",
  56825. extra: 1223/1198,
  56826. bottom: 182/1405
  56827. }
  56828. },
  56829. dickFront: {
  56830. height: math.unit(1.4, "meters"),
  56831. name: "Dick (Front)",
  56832. image: {
  56833. source: "./media/characters/hass/dick-front.svg"
  56834. }
  56835. },
  56836. dickSide: {
  56837. height: math.unit(1.3, "meters"),
  56838. name: "Dick (Side)",
  56839. image: {
  56840. source: "./media/characters/hass/dick-side.svg"
  56841. }
  56842. },
  56843. dickBack: {
  56844. height: math.unit(1.4, "meters"),
  56845. name: "Dick (Back)",
  56846. image: {
  56847. source: "./media/characters/hass/dick-back.svg"
  56848. }
  56849. },
  56850. },
  56851. [
  56852. {
  56853. name: "Normal",
  56854. height: math.unit(6, "meters"),
  56855. default: true
  56856. },
  56857. ]
  56858. ))
  56859. characterMakers.push(() => makeCharacter(
  56860. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56861. {
  56862. front: {
  56863. height: math.unit(4, "feet"),
  56864. weight: math.unit(60, "lb"),
  56865. name: "Front",
  56866. image: {
  56867. source: "./media/characters/hickory-finnegan/front.svg",
  56868. extra: 444/411,
  56869. bottom: 10/454
  56870. }
  56871. },
  56872. side: {
  56873. height: math.unit(4, "feet"),
  56874. weight: math.unit(60, "lb"),
  56875. name: "Side",
  56876. image: {
  56877. source: "./media/characters/hickory-finnegan/side.svg",
  56878. extra: 444/411,
  56879. bottom: 10/454
  56880. }
  56881. },
  56882. back: {
  56883. height: math.unit(4, "feet"),
  56884. weight: math.unit(60, "lb"),
  56885. name: "Back",
  56886. image: {
  56887. source: "./media/characters/hickory-finnegan/back.svg",
  56888. extra: 444/411,
  56889. bottom: 10/454
  56890. }
  56891. },
  56892. },
  56893. [
  56894. {
  56895. name: "Normal",
  56896. height: math.unit(4, "feet"),
  56897. default: true
  56898. },
  56899. ]
  56900. ))
  56901. characterMakers.push(() => makeCharacter(
  56902. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56903. {
  56904. snivy_front: {
  56905. height: math.unit(2, "feet"),
  56906. weight: math.unit(17.9, "lb"),
  56907. name: "Front",
  56908. image: {
  56909. source: "./media/characters/robin-phox/snivy-front.svg",
  56910. extra: 569/504,
  56911. bottom: 33/602
  56912. },
  56913. form: "snivy",
  56914. default: true
  56915. },
  56916. snivy_frontNsfw: {
  56917. height: math.unit(2, "feet"),
  56918. weight: math.unit(17.9, "lb"),
  56919. name: "Front (NSFW)",
  56920. image: {
  56921. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56922. extra: 569/504,
  56923. bottom: 33/602
  56924. },
  56925. form: "snivy",
  56926. },
  56927. snivy_back: {
  56928. height: math.unit(2, "feet"),
  56929. weight: math.unit(17.9, "lb"),
  56930. name: "Back",
  56931. image: {
  56932. source: "./media/characters/robin-phox/snivy-back.svg",
  56933. extra: 577/508,
  56934. bottom: 21/598
  56935. },
  56936. form: "snivy",
  56937. },
  56938. snivy_foot: {
  56939. height: math.unit(0.68, "feet"),
  56940. name: "Foot",
  56941. image: {
  56942. source: "./media/characters/robin-phox/snivy-foot.svg"
  56943. },
  56944. form: "snivy",
  56945. },
  56946. snivy_sole: {
  56947. height: math.unit(0.68, "feet"),
  56948. name: "Sole",
  56949. image: {
  56950. source: "./media/characters/robin-phox/snivy-sole.svg"
  56951. },
  56952. form: "snivy",
  56953. },
  56954. yoshi_front: {
  56955. height: math.unit(6, "feet"),
  56956. weight: math.unit(150, "lb"),
  56957. name: "Front",
  56958. image: {
  56959. source: "./media/characters/robin-phox/yoshi-front.svg",
  56960. extra: 890/792,
  56961. bottom: 29/919
  56962. },
  56963. form: "yoshi",
  56964. default: true
  56965. },
  56966. yoshi_frontNsfw: {
  56967. height: math.unit(6, "feet"),
  56968. weight: math.unit(150, "lb"),
  56969. name: "Front (NSFW)",
  56970. image: {
  56971. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56972. extra: 890/792,
  56973. bottom: 29/919
  56974. },
  56975. form: "yoshi",
  56976. },
  56977. yoshi_back: {
  56978. height: math.unit(6, "feet"),
  56979. weight: math.unit(150, "lb"),
  56980. name: "Back",
  56981. image: {
  56982. source: "./media/characters/robin-phox/yoshi-back.svg",
  56983. extra: 890/792,
  56984. bottom: 29/919
  56985. },
  56986. form: "yoshi",
  56987. },
  56988. yoshi_foot: {
  56989. height: math.unit(1.5, "feet"),
  56990. name: "Foot",
  56991. image: {
  56992. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56993. },
  56994. form: "yoshi",
  56995. },
  56996. delphox_front: {
  56997. height: math.unit(4 + 11/12, "feet"),
  56998. weight: math.unit(86, "lb"),
  56999. name: "Front",
  57000. image: {
  57001. source: "./media/characters/robin-phox/delphox-front.svg",
  57002. extra: 1266/1069,
  57003. bottom: 32/1298
  57004. },
  57005. form: "delphox",
  57006. default: true
  57007. },
  57008. delphox_frontNsfw: {
  57009. height: math.unit(4 + 11/12, "feet"),
  57010. weight: math.unit(86, "lb"),
  57011. name: "Front (NSFW)",
  57012. image: {
  57013. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57014. extra: 1266/1069,
  57015. bottom: 32/1298
  57016. },
  57017. form: "delphox",
  57018. },
  57019. delphox_back: {
  57020. height: math.unit(4 + 11/12, "feet"),
  57021. weight: math.unit(86, "lb"),
  57022. name: "Back",
  57023. image: {
  57024. source: "./media/characters/robin-phox/delphox-back.svg",
  57025. extra: 1269/1083,
  57026. bottom: 15/1284
  57027. },
  57028. form: "delphox",
  57029. },
  57030. mienshao_front: {
  57031. height: math.unit(4 + 7/12, "feet"),
  57032. weight: math.unit(78.3, "lb"),
  57033. name: "Front",
  57034. image: {
  57035. source: "./media/characters/robin-phox/mienshao-front.svg",
  57036. extra: 1052/970,
  57037. bottom: 108/1160
  57038. },
  57039. form: "mienshao",
  57040. default: true
  57041. },
  57042. mienshao_frontNsfw: {
  57043. height: math.unit(4 + 7/12, "feet"),
  57044. weight: math.unit(78.3, "lb"),
  57045. name: "Front (NSFW)",
  57046. image: {
  57047. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57048. extra: 1052/970,
  57049. bottom: 108/1160
  57050. },
  57051. form: "mienshao",
  57052. },
  57053. mienshao_back: {
  57054. height: math.unit(4 + 7/12, "feet"),
  57055. weight: math.unit(78.3, "lb"),
  57056. name: "Back",
  57057. image: {
  57058. source: "./media/characters/robin-phox/mienshao-back.svg",
  57059. extra: 1102/982,
  57060. bottom: 32/1134
  57061. },
  57062. form: "mienshao",
  57063. },
  57064. inteleon_front: {
  57065. height: math.unit(6 + 3/12, "feet"),
  57066. weight: math.unit(99.6, "lb"),
  57067. name: "Front",
  57068. image: {
  57069. source: "./media/characters/robin-phox/inteleon-front.svg",
  57070. extra: 910/799,
  57071. bottom: 76/986
  57072. },
  57073. form: "inteleon",
  57074. default: true
  57075. },
  57076. inteleon_frontNsfw: {
  57077. height: math.unit(6 + 3/12, "feet"),
  57078. weight: math.unit(99.6, "lb"),
  57079. name: "Front (NSFW)",
  57080. image: {
  57081. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57082. extra: 910/799,
  57083. bottom: 76/986
  57084. },
  57085. form: "inteleon",
  57086. },
  57087. inteleon_back: {
  57088. height: math.unit(6 + 3/12, "feet"),
  57089. weight: math.unit(99.6, "lb"),
  57090. name: "Back",
  57091. image: {
  57092. source: "./media/characters/robin-phox/inteleon-back.svg",
  57093. extra: 907/796,
  57094. bottom: 25/932
  57095. },
  57096. form: "inteleon",
  57097. },
  57098. reshiram_front: {
  57099. height: math.unit(10 + 6/12, "feet"),
  57100. weight: math.unit(727.5, "lb"),
  57101. name: "Front",
  57102. image: {
  57103. source: "./media/characters/robin-phox/reshiram-front.svg",
  57104. extra: 1198/940,
  57105. bottom: 123/1321
  57106. },
  57107. form: "reshiram",
  57108. },
  57109. reshiram_frontNsfw: {
  57110. height: math.unit(10 + 6/12, "feet"),
  57111. weight: math.unit(727.5, "lb"),
  57112. name: "Front-nsfw",
  57113. image: {
  57114. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57115. extra: 1198/940,
  57116. bottom: 123/1321
  57117. },
  57118. form: "reshiram",
  57119. },
  57120. reshiram_back: {
  57121. height: math.unit(10 + 6/12, "feet"),
  57122. weight: math.unit(727.5, "lb"),
  57123. name: "Back",
  57124. image: {
  57125. source: "./media/characters/robin-phox/reshiram-back.svg",
  57126. extra: 1024/904,
  57127. bottom: 85/1109
  57128. },
  57129. form: "reshiram",
  57130. },
  57131. samurott_front: {
  57132. height: math.unit(8, "feet"),
  57133. weight: math.unit(208.6, "lb"),
  57134. name: "Front",
  57135. image: {
  57136. source: "./media/characters/robin-phox/samurott-front.svg",
  57137. extra: 1048/984,
  57138. bottom: 100/1148
  57139. },
  57140. form: "samurott",
  57141. },
  57142. samurott_frontNsfw: {
  57143. height: math.unit(8, "feet"),
  57144. weight: math.unit(208.6, "lb"),
  57145. name: "Front-nsfw",
  57146. image: {
  57147. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57148. extra: 1048/984,
  57149. bottom: 100/1148
  57150. },
  57151. form: "samurott",
  57152. },
  57153. samurott_back: {
  57154. height: math.unit(8, "feet"),
  57155. weight: math.unit(208.6, "lb"),
  57156. name: "Back",
  57157. image: {
  57158. source: "./media/characters/robin-phox/samurott-back.svg",
  57159. extra: 1110/1042,
  57160. bottom: 12/1122
  57161. },
  57162. form: "samurott",
  57163. },
  57164. samurott_feral: {
  57165. height: math.unit(4 + 11/12, "feet"),
  57166. weight: math.unit(208.6, "lb"),
  57167. name: "Feral",
  57168. image: {
  57169. source: "./media/characters/robin-phox/samurott-feral.svg",
  57170. extra: 766/681,
  57171. bottom: 108/874
  57172. },
  57173. form: "samurott",
  57174. },
  57175. },
  57176. [
  57177. {
  57178. name: "Normal",
  57179. height: math.unit(2, "feet"),
  57180. default: true,
  57181. form: "snivy"
  57182. },
  57183. {
  57184. name: "Normal",
  57185. height: math.unit(6, "feet"),
  57186. default: true,
  57187. form: "yoshi"
  57188. },
  57189. {
  57190. name: "Normal",
  57191. height: math.unit(4 + 11/12, "feet"),
  57192. default: true,
  57193. form: "delphox"
  57194. },
  57195. {
  57196. name: "Normal",
  57197. height: math.unit(4 + 7/12, "feet"),
  57198. default: true,
  57199. form: "mienshao"
  57200. },
  57201. {
  57202. name: "Normal",
  57203. height: math.unit(6 + 3/12, "feet"),
  57204. default: true,
  57205. form: "inteleon"
  57206. },
  57207. {
  57208. name: "Normal",
  57209. height: math.unit(10 + 6/12, "feet"),
  57210. default: true,
  57211. form: "reshiram"
  57212. },
  57213. {
  57214. name: "Normal",
  57215. height: math.unit(8, "feet"),
  57216. default: true,
  57217. form: "samurott"
  57218. },
  57219. {
  57220. name: "Macro",
  57221. height: math.unit(500, "feet"),
  57222. allForms: true
  57223. },
  57224. {
  57225. name: "Mega Macro",
  57226. height: math.unit(10, "earths"),
  57227. allForms: true
  57228. },
  57229. {
  57230. name: "Giga Macro",
  57231. height: math.unit(1, "galaxy"),
  57232. allForms: true
  57233. },
  57234. {
  57235. name: "Godly Macro",
  57236. height: math.unit(1e10, "multiverses"),
  57237. allForms: true
  57238. },
  57239. ],
  57240. {
  57241. "snivy": {
  57242. name: "Snivy",
  57243. default: true
  57244. },
  57245. "yoshi": {
  57246. name: "Yoshi",
  57247. },
  57248. "delphox": {
  57249. name: "Delphox",
  57250. },
  57251. "mienshao": {
  57252. name: "Mienshao",
  57253. },
  57254. "inteleon": {
  57255. name: "Inteleon",
  57256. },
  57257. "reshiram": {
  57258. name: "Reshiram",
  57259. },
  57260. "samurott": {
  57261. name: "Samurott",
  57262. },
  57263. }
  57264. ))
  57265. characterMakers.push(() => makeCharacter(
  57266. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57267. {
  57268. front: {
  57269. height: math.unit(4, "feet"),
  57270. name: "Front",
  57271. image: {
  57272. source: "./media/characters/ash-leung/front.svg",
  57273. extra: 1916/1792,
  57274. bottom: 50/1966
  57275. }
  57276. },
  57277. },
  57278. [
  57279. {
  57280. name: "Atomic",
  57281. height: math.unit(1, "angstrom")
  57282. },
  57283. {
  57284. name: "Microscopic",
  57285. height: math.unit(4000, "angstroms")
  57286. },
  57287. {
  57288. name: "Speck",
  57289. height: math.unit(1, "mm")
  57290. },
  57291. {
  57292. name: "Small",
  57293. height: math.unit(1, "inch")
  57294. },
  57295. {
  57296. name: "Normal",
  57297. height: math.unit(4, "feet"),
  57298. default: true
  57299. },
  57300. ]
  57301. ))
  57302. characterMakers.push(() => makeCharacter(
  57303. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57304. {
  57305. frontDressed: {
  57306. height: math.unit(2.08, "meters"),
  57307. weight: math.unit(175, "lb"),
  57308. name: "Front (Dressed)",
  57309. image: {
  57310. source: "./media/characters/carie/front-dressed.svg",
  57311. extra: 456/417,
  57312. bottom: 7/463
  57313. }
  57314. },
  57315. backDressed: {
  57316. height: math.unit(2.08, "meters"),
  57317. weight: math.unit(175, "lb"),
  57318. name: "Back (Dressed)",
  57319. image: {
  57320. source: "./media/characters/carie/back-dressed.svg",
  57321. extra: 455/414,
  57322. bottom: 11/466
  57323. }
  57324. },
  57325. front: {
  57326. height: math.unit(2, "meters"),
  57327. weight: math.unit(175, "lb"),
  57328. name: "Front",
  57329. image: {
  57330. source: "./media/characters/carie/front.svg",
  57331. extra: 438/399,
  57332. bottom: 12/450
  57333. }
  57334. },
  57335. back: {
  57336. height: math.unit(2, "meters"),
  57337. weight: math.unit(175, "lb"),
  57338. name: "Back",
  57339. image: {
  57340. source: "./media/characters/carie/back.svg",
  57341. extra: 438/397,
  57342. bottom: 7/445
  57343. }
  57344. },
  57345. },
  57346. [
  57347. {
  57348. name: "Normal",
  57349. height: math.unit(2.08, "meters"),
  57350. default: true
  57351. },
  57352. {
  57353. name: "Macro",
  57354. height: math.unit(2.08e3, "meters")
  57355. },
  57356. {
  57357. name: "Mega Macro",
  57358. height: math.unit(2.08e6, "meters")
  57359. },
  57360. {
  57361. name: "Giga Macro",
  57362. height: math.unit(2.08e9, "meters")
  57363. },
  57364. {
  57365. name: "Tera Macro",
  57366. height: math.unit(2.08e12, "meters")
  57367. },
  57368. {
  57369. name: "Peta Macro",
  57370. height: math.unit(2.08e15, "meters")
  57371. },
  57372. {
  57373. name: "Exa Macro",
  57374. height: math.unit(2.08e18, "meters")
  57375. },
  57376. {
  57377. name: "Zetta Macro",
  57378. height: math.unit(2.08e21, "meters")
  57379. },
  57380. {
  57381. name: "Yotta Macro",
  57382. height: math.unit(2.08e24, "meters")
  57383. },
  57384. ]
  57385. ))
  57386. characterMakers.push(() => makeCharacter(
  57387. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57388. {
  57389. front: {
  57390. height: math.unit(5 + 2/12, "feet"),
  57391. weight: math.unit(120, "lb"),
  57392. name: "Front",
  57393. image: {
  57394. source: "./media/characters/sai-bree/front.svg",
  57395. extra: 1843/1702,
  57396. bottom: 91/1934
  57397. }
  57398. },
  57399. back: {
  57400. height: math.unit(5 + 2/12, "feet"),
  57401. weight: math.unit(120, "lb"),
  57402. name: "Back",
  57403. image: {
  57404. source: "./media/characters/sai-bree/back.svg",
  57405. extra: 1809/1637,
  57406. bottom: 56/1865
  57407. }
  57408. },
  57409. },
  57410. [
  57411. {
  57412. name: "Normal",
  57413. height: math.unit(5 + 2/12, "feet"),
  57414. default: true
  57415. },
  57416. {
  57417. name: "Macro",
  57418. height: math.unit(500, "feet")
  57419. },
  57420. ]
  57421. ))
  57422. characterMakers.push(() => makeCharacter(
  57423. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57424. {
  57425. side: {
  57426. height: math.unit(0.77, "meters"),
  57427. weight: math.unit(120, "lb"),
  57428. name: "Side",
  57429. image: {
  57430. source: "./media/characters/davwyn/side.svg",
  57431. extra: 1557/1225,
  57432. bottom: 131/1688
  57433. }
  57434. },
  57435. front: {
  57436. height: math.unit(0.835410, "meters"),
  57437. weight: math.unit(120, "lb"),
  57438. name: "Front",
  57439. image: {
  57440. source: "./media/characters/davwyn/front.svg",
  57441. extra: 870/843,
  57442. bottom: 175/1045
  57443. }
  57444. },
  57445. },
  57446. [
  57447. {
  57448. name: "Minidrake",
  57449. height: math.unit(0.77/4, "meters")
  57450. },
  57451. {
  57452. name: "Normal",
  57453. height: math.unit(0.77, "meters"),
  57454. default: true
  57455. },
  57456. ]
  57457. ))
  57458. characterMakers.push(() => makeCharacter(
  57459. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57460. {
  57461. front: {
  57462. height: math.unit(10 + 3/12, "feet"),
  57463. weight: math.unit(2857, "lb"),
  57464. name: "Front",
  57465. image: {
  57466. source: "./media/characters/balans/front.svg",
  57467. extra: 427/402,
  57468. bottom: 26/453
  57469. }
  57470. },
  57471. side: {
  57472. height: math.unit(10 + 3/12, "feet"),
  57473. weight: math.unit(2857, "lb"),
  57474. name: "Side",
  57475. image: {
  57476. source: "./media/characters/balans/side.svg",
  57477. extra: 397/371,
  57478. bottom: 17/414
  57479. }
  57480. },
  57481. back: {
  57482. height: math.unit(10 + 3/12, "feet"),
  57483. weight: math.unit(2857, "lb"),
  57484. name: "Back",
  57485. image: {
  57486. source: "./media/characters/balans/back.svg",
  57487. extra: 408/381,
  57488. bottom: 14/422
  57489. }
  57490. },
  57491. hand: {
  57492. height: math.unit(1.15, "feet"),
  57493. name: "Hand",
  57494. image: {
  57495. source: "./media/characters/balans/hand.svg"
  57496. }
  57497. },
  57498. footRest: {
  57499. height: math.unit(3.1, "feet"),
  57500. name: "Foot (Rest)",
  57501. image: {
  57502. source: "./media/characters/balans/foot-rest.svg"
  57503. }
  57504. },
  57505. footActive: {
  57506. height: math.unit(3.5, "feet"),
  57507. name: "Foot (Active)",
  57508. image: {
  57509. source: "./media/characters/balans/foot-active.svg"
  57510. }
  57511. },
  57512. },
  57513. [
  57514. {
  57515. name: "Normal",
  57516. height: math.unit(10 + 3/12, "feet"),
  57517. default: true
  57518. },
  57519. ]
  57520. ))
  57521. characterMakers.push(() => makeCharacter(
  57522. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57523. {
  57524. side: {
  57525. height: math.unit(9, "meters"),
  57526. weight: math.unit(114, "tonnes"),
  57527. name: "Side",
  57528. image: {
  57529. source: "./media/characters/eldkveikir/side.svg",
  57530. extra: 1927/338,
  57531. bottom: 42/1969
  57532. }
  57533. },
  57534. sitting: {
  57535. height: math.unit(13.4, "meters"),
  57536. weight: math.unit(114, "tonnes"),
  57537. name: "Sitting",
  57538. image: {
  57539. source: "./media/characters/eldkveikir/sitting.svg",
  57540. extra: 1108/963,
  57541. bottom: 610/1718
  57542. }
  57543. },
  57544. maw: {
  57545. height: math.unit(8.36, "meters"),
  57546. name: "Maw",
  57547. image: {
  57548. source: "./media/characters/eldkveikir/maw.svg"
  57549. }
  57550. },
  57551. hand: {
  57552. height: math.unit(4.84, "meters"),
  57553. name: "Hand",
  57554. image: {
  57555. source: "./media/characters/eldkveikir/hand.svg"
  57556. }
  57557. },
  57558. foot: {
  57559. height: math.unit(6.9, "meters"),
  57560. name: "Foot",
  57561. image: {
  57562. source: "./media/characters/eldkveikir/foot.svg"
  57563. }
  57564. },
  57565. genitals: {
  57566. height: math.unit(9.6, "meters"),
  57567. name: "Genitals",
  57568. image: {
  57569. source: "./media/characters/eldkveikir/genitals.svg"
  57570. }
  57571. },
  57572. },
  57573. [
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(9, "meters"),
  57577. default: true
  57578. },
  57579. ]
  57580. ))
  57581. characterMakers.push(() => makeCharacter(
  57582. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57583. {
  57584. front: {
  57585. height: math.unit(14, "feet"),
  57586. weight: math.unit(4100, "lb"),
  57587. name: "Front",
  57588. image: {
  57589. source: "./media/characters/arrow/front.svg",
  57590. extra: 330/318,
  57591. bottom: 56/386
  57592. }
  57593. },
  57594. },
  57595. [
  57596. {
  57597. name: "Normal",
  57598. height: math.unit(14, "feet"),
  57599. default: true
  57600. },
  57601. {
  57602. name: "Minimacro",
  57603. height: math.unit(63, "feet")
  57604. },
  57605. {
  57606. name: "Macro",
  57607. height: math.unit(630, "feet")
  57608. },
  57609. {
  57610. name: "Megamacro",
  57611. height: math.unit(12600, "feet")
  57612. },
  57613. {
  57614. name: "Gigamacro",
  57615. height: math.unit(18000, "miles")
  57616. },
  57617. ]
  57618. ))
  57619. characterMakers.push(() => makeCharacter(
  57620. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57621. {
  57622. front: {
  57623. height: math.unit(10, "feet"),
  57624. weight: math.unit(2.4, "tons"),
  57625. name: "Front",
  57626. image: {
  57627. source: "./media/characters/3yk-k0-unit/front.svg",
  57628. extra: 573/561,
  57629. bottom: 33/606
  57630. }
  57631. },
  57632. back: {
  57633. height: math.unit(10, "feet"),
  57634. weight: math.unit(2.4, "tons"),
  57635. name: "Back",
  57636. image: {
  57637. source: "./media/characters/3yk-k0-unit/back.svg",
  57638. extra: 614/573,
  57639. bottom: 32/646
  57640. }
  57641. },
  57642. maw: {
  57643. height: math.unit(2.15, "feet"),
  57644. name: "Maw",
  57645. image: {
  57646. source: "./media/characters/3yk-k0-unit/maw.svg"
  57647. }
  57648. },
  57649. },
  57650. [
  57651. {
  57652. name: "Normal",
  57653. height: math.unit(10, "feet"),
  57654. default: true
  57655. },
  57656. ]
  57657. ))
  57658. characterMakers.push(() => makeCharacter(
  57659. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57660. {
  57661. front: {
  57662. height: math.unit(8 + 8/12, "feet"),
  57663. name: "Front",
  57664. image: {
  57665. source: "./media/characters/nemo/front.svg",
  57666. extra: 1308/1217,
  57667. bottom: 57/1365
  57668. }
  57669. },
  57670. },
  57671. [
  57672. {
  57673. name: "Normal",
  57674. height: math.unit(8 + 8/12, "feet"),
  57675. default: true
  57676. },
  57677. ]
  57678. ))
  57679. characterMakers.push(() => makeCharacter(
  57680. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57681. {
  57682. front: {
  57683. height: math.unit(8, "feet"),
  57684. weight: math.unit(760, "lb"),
  57685. name: "Front",
  57686. image: {
  57687. source: "./media/characters/rexx/front.svg",
  57688. extra: 786/750,
  57689. bottom: 17/803
  57690. },
  57691. extraAttributes: {
  57692. "pawLength": {
  57693. name: "Paw Length",
  57694. power: 1,
  57695. type: "length",
  57696. base: math.unit(27, "inches")
  57697. },
  57698. }
  57699. },
  57700. },
  57701. [
  57702. {
  57703. name: "Micro",
  57704. height: math.unit(2, "inches")
  57705. },
  57706. {
  57707. name: "Normal",
  57708. height: math.unit(8, "feet"),
  57709. default: true
  57710. },
  57711. {
  57712. name: "Macro",
  57713. height: math.unit(150, "feet")
  57714. },
  57715. ]
  57716. ))
  57717. characterMakers.push(() => makeCharacter(
  57718. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57719. {
  57720. front: {
  57721. height: math.unit(18, "feet"),
  57722. weight: math.unit(1975, "lb"),
  57723. name: "Front",
  57724. image: {
  57725. source: "./media/characters/draco/front.svg",
  57726. extra: 1325/1241,
  57727. bottom: 83/1408
  57728. }
  57729. },
  57730. back: {
  57731. height: math.unit(18, "feet"),
  57732. weight: math.unit(1975, "lb"),
  57733. name: "Back",
  57734. image: {
  57735. source: "./media/characters/draco/back.svg",
  57736. extra: 1332/1250,
  57737. bottom: 43/1375
  57738. }
  57739. },
  57740. dick: {
  57741. height: math.unit(7.5, "feet"),
  57742. name: "Dick",
  57743. image: {
  57744. source: "./media/characters/draco/dick.svg"
  57745. }
  57746. },
  57747. },
  57748. [
  57749. {
  57750. name: "Normal",
  57751. height: math.unit(18, "feet"),
  57752. default: true
  57753. },
  57754. ]
  57755. ))
  57756. characterMakers.push(() => makeCharacter(
  57757. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57758. {
  57759. front: {
  57760. height: math.unit(3.2, "meters"),
  57761. name: "Front",
  57762. image: {
  57763. source: "./media/characters/harriett/front.svg",
  57764. extra: 1966/1915,
  57765. bottom: 9/1975
  57766. }
  57767. },
  57768. },
  57769. [
  57770. {
  57771. name: "Normal",
  57772. height: math.unit(3.2, "meters"),
  57773. default: true
  57774. },
  57775. ]
  57776. ))
  57777. characterMakers.push(() => makeCharacter(
  57778. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57779. {
  57780. sitting: {
  57781. height: math.unit(0.8, "meter"),
  57782. name: "Sitting",
  57783. image: {
  57784. source: "./media/characters/serpentus/sitting.svg",
  57785. extra: 293/290,
  57786. bottom: 140/433
  57787. }
  57788. },
  57789. },
  57790. [
  57791. {
  57792. name: "Normal",
  57793. height: math.unit(0.8, "meter"),
  57794. default: true
  57795. },
  57796. ]
  57797. ))
  57798. characterMakers.push(() => makeCharacter(
  57799. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57800. {
  57801. front: {
  57802. height: math.unit(5.7174385736, "feet"),
  57803. name: "Front",
  57804. image: {
  57805. source: "./media/characters/nova-polecat/front.svg",
  57806. extra: 1317/1216,
  57807. bottom: 92/1409
  57808. }
  57809. },
  57810. },
  57811. [
  57812. {
  57813. name: "Normal",
  57814. height: math.unit(5.7174385736, "feet"),
  57815. default: true
  57816. },
  57817. ]
  57818. ))
  57819. characterMakers.push(() => makeCharacter(
  57820. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57821. {
  57822. front: {
  57823. height: math.unit(5 + 4/12, "feet"),
  57824. weight: math.unit(250, "lb"),
  57825. name: "Front",
  57826. image: {
  57827. source: "./media/characters/mook/front.svg",
  57828. extra: 1088/1037,
  57829. bottom: 132/1220
  57830. }
  57831. },
  57832. back: {
  57833. height: math.unit(5 + 1/12, "feet"),
  57834. weight: math.unit(250, "lb"),
  57835. name: "Back",
  57836. image: {
  57837. source: "./media/characters/mook/back.svg",
  57838. extra: 1184/905,
  57839. bottom: 96/1280
  57840. }
  57841. },
  57842. head: {
  57843. height: math.unit(1.85, "feet"),
  57844. name: "Head",
  57845. image: {
  57846. source: "./media/characters/mook/head.svg"
  57847. }
  57848. },
  57849. hand: {
  57850. height: math.unit(1.9, "feet"),
  57851. name: "Hand",
  57852. image: {
  57853. source: "./media/characters/mook/hand.svg"
  57854. }
  57855. },
  57856. palm: {
  57857. height: math.unit(1.84, "feet"),
  57858. name: "Palm",
  57859. image: {
  57860. source: "./media/characters/mook/palm.svg"
  57861. }
  57862. },
  57863. foot: {
  57864. height: math.unit(1.44, "feet"),
  57865. name: "Foot",
  57866. image: {
  57867. source: "./media/characters/mook/foot.svg"
  57868. }
  57869. },
  57870. sole: {
  57871. height: math.unit(1.44, "feet"),
  57872. name: "Sole",
  57873. image: {
  57874. source: "./media/characters/mook/sole.svg"
  57875. }
  57876. },
  57877. },
  57878. [
  57879. {
  57880. name: "Normal",
  57881. height: math.unit(5 + 4/12, "feet"),
  57882. default: true
  57883. },
  57884. {
  57885. name: "Big",
  57886. height: math.unit(12, "feet")
  57887. },
  57888. ]
  57889. ))
  57890. characterMakers.push(() => makeCharacter(
  57891. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57892. {
  57893. front: {
  57894. height: math.unit(6 + 10/12, "feet"),
  57895. weight: math.unit(233, "lb"),
  57896. name: "Front",
  57897. image: {
  57898. source: "./media/characters/kayla/front.svg",
  57899. extra: 1850/1775,
  57900. bottom: 65/1915
  57901. }
  57902. },
  57903. },
  57904. [
  57905. {
  57906. name: "Normal",
  57907. height: math.unit(6 + 10/12, "feet"),
  57908. default: true
  57909. },
  57910. {
  57911. name: "Amazonian",
  57912. height: math.unit(12 + 5/12, "feet")
  57913. },
  57914. {
  57915. name: "Mini Giantess",
  57916. height: math.unit(26, "feet")
  57917. },
  57918. {
  57919. name: "Giantess",
  57920. height: math.unit(200, "feet")
  57921. },
  57922. {
  57923. name: "Mega Giantess",
  57924. height: math.unit(2500, "feet")
  57925. },
  57926. {
  57927. name: "City Sized",
  57928. height: math.unit(50, "miles")
  57929. },
  57930. {
  57931. name: "Country Sized",
  57932. height: math.unit(500, "miles")
  57933. },
  57934. {
  57935. name: "Continent Sized",
  57936. height: math.unit(2500, "miles")
  57937. },
  57938. {
  57939. name: "Planet Sized",
  57940. height: math.unit(10000, "miles")
  57941. },
  57942. {
  57943. name: "Star Sized",
  57944. height: math.unit(5e6, "miles")
  57945. },
  57946. {
  57947. name: "Solar System Sized",
  57948. height: math.unit(125, "AU")
  57949. },
  57950. {
  57951. name: "Galaxy Sized",
  57952. height: math.unit(300e3, "lightyears")
  57953. },
  57954. {
  57955. name: "Universe Sized",
  57956. height: math.unit(200e9, "lightyears")
  57957. },
  57958. {
  57959. name: "Multiverse Sized",
  57960. height: math.unit(20, "exauniverses")
  57961. },
  57962. {
  57963. name: "Mother of Existence",
  57964. height: math.unit(1e6, "yottauniverses")
  57965. },
  57966. ]
  57967. ))
  57968. characterMakers.push(() => makeCharacter(
  57969. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57970. {
  57971. side: {
  57972. height: math.unit(9.5, "meters"),
  57973. name: "Side",
  57974. image: {
  57975. source: "./media/characters/kulve-ragnarok/side.svg",
  57976. extra: 364/326,
  57977. bottom: 50/414
  57978. }
  57979. },
  57980. },
  57981. [
  57982. {
  57983. name: "Normal",
  57984. height: math.unit(9.5, "meters"),
  57985. default: true
  57986. },
  57987. ]
  57988. ))
  57989. characterMakers.push(() => makeCharacter(
  57990. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57991. {
  57992. front: {
  57993. height: math.unit(8 + 9/12, "feet"),
  57994. name: "Front",
  57995. image: {
  57996. source: "./media/characters/atlas-goat/front.svg",
  57997. extra: 1462/1323,
  57998. bottom: 12/1474
  57999. }
  58000. },
  58001. },
  58002. [
  58003. {
  58004. name: "Normal",
  58005. height: math.unit(8 + 9/12, "feet"),
  58006. default: true
  58007. },
  58008. {
  58009. name: "Skyline",
  58010. height: math.unit(845, "feet")
  58011. },
  58012. {
  58013. name: "Orbital",
  58014. height: math.unit(93000, "miles")
  58015. },
  58016. {
  58017. name: "Constellation",
  58018. height: math.unit(27000, "lightyears")
  58019. },
  58020. ]
  58021. ))
  58022. characterMakers.push(() => makeCharacter(
  58023. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58024. {
  58025. side: {
  58026. height: math.unit(1.8, "meters"),
  58027. weight: math.unit(120, "kg"),
  58028. name: "Side",
  58029. image: {
  58030. source: "./media/characters/xie-ling/side.svg",
  58031. extra: 646/574,
  58032. bottom: 44/690
  58033. }
  58034. },
  58035. },
  58036. [
  58037. {
  58038. name: "Tiny",
  58039. height: math.unit(1.80, "meters")
  58040. },
  58041. {
  58042. name: "Small",
  58043. height: math.unit(6, "meters")
  58044. },
  58045. {
  58046. name: "Medium",
  58047. height: math.unit(15, "meters")
  58048. },
  58049. {
  58050. name: "Normal",
  58051. height: math.unit(30, "meters"),
  58052. default: true
  58053. },
  58054. {
  58055. name: "Above Normal",
  58056. height: math.unit(60, "meters")
  58057. },
  58058. {
  58059. name: "Big",
  58060. height: math.unit(220, "meters")
  58061. },
  58062. {
  58063. name: "Giant",
  58064. height: math.unit(2.2, "km")
  58065. },
  58066. {
  58067. name: "Macro",
  58068. height: math.unit(25, "km")
  58069. },
  58070. {
  58071. name: "Mega Macro",
  58072. height: math.unit(350, "km")
  58073. },
  58074. {
  58075. name: "Mega Macro+",
  58076. height: math.unit(5000, "km")
  58077. },
  58078. {
  58079. name: "Goddess",
  58080. height: math.unit(3, "multiverses")
  58081. },
  58082. ]
  58083. ))
  58084. characterMakers.push(() => makeCharacter(
  58085. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58086. {
  58087. frontSfw: {
  58088. height: math.unit(5 + 11/12, "feet"),
  58089. weight: math.unit(210, "lb"),
  58090. name: "Front",
  58091. image: {
  58092. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58093. extra: 1928/1821,
  58094. bottom: 45/1973
  58095. }
  58096. },
  58097. backSfw: {
  58098. height: math.unit(5 + 11/12, "feet"),
  58099. weight: math.unit(210, "lb"),
  58100. name: "Back",
  58101. image: {
  58102. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58103. extra: 1920/1813,
  58104. bottom: 34/1954
  58105. }
  58106. },
  58107. frontNsfw: {
  58108. height: math.unit(5 + 11/12, "feet"),
  58109. weight: math.unit(210, "lb"),
  58110. name: "Front (NSFW)",
  58111. image: {
  58112. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58113. extra: 1928/1821,
  58114. bottom: 45/1973
  58115. }
  58116. },
  58117. backNsfw: {
  58118. height: math.unit(5 + 11/12, "feet"),
  58119. weight: math.unit(210, "lb"),
  58120. name: "Back (NSFW)",
  58121. image: {
  58122. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58123. extra: 1920/1813,
  58124. bottom: 34/1954
  58125. }
  58126. },
  58127. },
  58128. [
  58129. {
  58130. name: "Normal",
  58131. height: math.unit(5 + 11/12, "feet"),
  58132. default: true
  58133. },
  58134. {
  58135. name: "Goddess",
  58136. height: math.unit(20 + 3/12, "feet")
  58137. },
  58138. {
  58139. name: "Breaker of Man",
  58140. height: math.unit(329 + 9/12, "feet")
  58141. },
  58142. {
  58143. name: "Solar Justice",
  58144. height: math.unit(0.6, "solarradii")
  58145. },
  58146. {
  58147. name: "She Who Judges",
  58148. height: math.unit(1, "universe")
  58149. },
  58150. ]
  58151. ))
  58152. characterMakers.push(() => makeCharacter(
  58153. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58154. {
  58155. casual_front: {
  58156. height: math.unit(6 + 1/12, "feet"),
  58157. weight: math.unit(190, "lb"),
  58158. preyCapacity: math.unit(1, "people"),
  58159. name: "Front",
  58160. image: {
  58161. source: "./media/characters/managarmr/casual-front.svg",
  58162. extra: 411/381,
  58163. bottom: 15/426
  58164. },
  58165. extraAttributes: {
  58166. "pawSize": {
  58167. name: "Paw Size",
  58168. power: 1,
  58169. type: "length",
  58170. base: math.unit(0.2, "meters")
  58171. },
  58172. },
  58173. form: "casual",
  58174. },
  58175. casual_back: {
  58176. height: math.unit(6 + 1/12, "feet"),
  58177. weight: math.unit(190, "lb"),
  58178. preyCapacity: math.unit(1, "people"),
  58179. name: "Back",
  58180. image: {
  58181. source: "./media/characters/managarmr/casual-back.svg",
  58182. extra: 413/383,
  58183. bottom: 13/426
  58184. },
  58185. extraAttributes: {
  58186. "pawSize": {
  58187. name: "Paw Size",
  58188. power: 1,
  58189. type: "length",
  58190. base: math.unit(0.2, "meters")
  58191. },
  58192. },
  58193. form: "casual",
  58194. },
  58195. base_front: {
  58196. height: math.unit(7, "feet"),
  58197. weight: math.unit(210, "lb"),
  58198. preyCapacity: math.unit(2, "people"),
  58199. name: "Front",
  58200. image: {
  58201. source: "./media/characters/managarmr/base-front.svg",
  58202. extra: 580/485,
  58203. bottom: 32/612
  58204. },
  58205. extraAttributes: {
  58206. "wingspan": {
  58207. name: "Wingspan",
  58208. power: 1,
  58209. type: "length",
  58210. base: math.unit(4, "meters")
  58211. },
  58212. "pawSize": {
  58213. name: "Paw Size",
  58214. power: 1,
  58215. type: "length",
  58216. base: math.unit(0.2, "meters")
  58217. },
  58218. },
  58219. form: "base",
  58220. },
  58221. "true-divine_front": {
  58222. height: math.unit(40, "feet"),
  58223. weight: math.unit(39000, "lb"),
  58224. preyCapacity: math.unit(375, "people"),
  58225. name: "Front",
  58226. image: {
  58227. source: "./media/characters/managarmr/true-divine-front.svg",
  58228. extra: 725/573,
  58229. bottom: 120/845
  58230. },
  58231. extraAttributes: {
  58232. "wingspan": {
  58233. name: "Wingspan",
  58234. power: 1,
  58235. type: "length",
  58236. base: math.unit(20, "meters")
  58237. },
  58238. "pawSize": {
  58239. name: "Paw Size",
  58240. power: 1,
  58241. type: "length",
  58242. base: math.unit(1.5, "meters")
  58243. },
  58244. },
  58245. form: "true-divine",
  58246. },
  58247. },
  58248. [
  58249. {
  58250. name: "Normal",
  58251. height: math.unit(6 + 1/12, "feet"),
  58252. form: "casual",
  58253. default: true
  58254. },
  58255. {
  58256. name: "Normal",
  58257. height: math.unit(7, "feet"),
  58258. form: "base",
  58259. default: true
  58260. },
  58261. ],
  58262. {
  58263. "casual": {
  58264. name: "Casual",
  58265. default: true
  58266. },
  58267. "base": {
  58268. name: "Base",
  58269. },
  58270. "true-divine": {
  58271. name: "True Divine",
  58272. },
  58273. }
  58274. ))
  58275. characterMakers.push(() => makeCharacter(
  58276. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58277. {
  58278. front: {
  58279. height: math.unit(1.8, "meters"),
  58280. weight: math.unit(110, "kg"),
  58281. name: "Front",
  58282. image: {
  58283. source: "./media/characters/mystra/front.svg",
  58284. extra: 529/442,
  58285. bottom: 31/560
  58286. }
  58287. },
  58288. frontLewd: {
  58289. height: math.unit(1.8, "meters"),
  58290. weight: math.unit(110, "kg"),
  58291. name: "Front (Lewd)",
  58292. image: {
  58293. source: "./media/characters/mystra/front-lewd.svg",
  58294. extra: 529/442,
  58295. bottom: 31/560
  58296. }
  58297. },
  58298. head: {
  58299. height: math.unit(1.63, "feet"),
  58300. name: "Head",
  58301. image: {
  58302. source: "./media/characters/mystra/head.svg"
  58303. }
  58304. },
  58305. paw: {
  58306. height: math.unit(1.9, "feet"),
  58307. name: "Paw",
  58308. image: {
  58309. source: "./media/characters/mystra/paw.svg"
  58310. }
  58311. },
  58312. },
  58313. [
  58314. {
  58315. name: "Incognito",
  58316. height: math.unit(2.3, "meters")
  58317. },
  58318. {
  58319. name: "Small Macro",
  58320. height: math.unit(300, "meters")
  58321. },
  58322. {
  58323. name: "Small Mega",
  58324. height: math.unit(2, "km")
  58325. },
  58326. {
  58327. name: "Mega",
  58328. height: math.unit(30, "km")
  58329. },
  58330. {
  58331. name: "Small Giga",
  58332. height: math.unit(100, "km")
  58333. },
  58334. {
  58335. name: "Giga",
  58336. height: math.unit(1000, "km"),
  58337. default: true
  58338. },
  58339. {
  58340. name: "Continental",
  58341. height: math.unit(5000, "km")
  58342. },
  58343. {
  58344. name: "Terra",
  58345. height: math.unit(20000, "km")
  58346. },
  58347. {
  58348. name: "Solar",
  58349. height: math.unit(2e6, "km")
  58350. },
  58351. {
  58352. name: "Galactic",
  58353. height: math.unit(528502, "lightyears")
  58354. },
  58355. {
  58356. name: "Universal",
  58357. height: math.unit(20, "universes")
  58358. },
  58359. ]
  58360. ))
  58361. characterMakers.push(() => makeCharacter(
  58362. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58363. {
  58364. front: {
  58365. height: math.unit(2, "meters"),
  58366. weight: math.unit(140, "kg"),
  58367. name: "Front",
  58368. image: {
  58369. source: "./media/characters/caleb/front.svg",
  58370. extra: 873/817,
  58371. bottom: 47/920
  58372. }
  58373. },
  58374. back: {
  58375. height: math.unit(2, "meters"),
  58376. weight: math.unit(140, "kg"),
  58377. name: "Back",
  58378. image: {
  58379. source: "./media/characters/caleb/back.svg",
  58380. extra: 877/828,
  58381. bottom: 24/901
  58382. }
  58383. },
  58384. snakeTail: {
  58385. height: math.unit(1.44, "feet"),
  58386. name: "Snake Tail",
  58387. image: {
  58388. source: "./media/characters/caleb/snake-tail.svg"
  58389. }
  58390. },
  58391. dick: {
  58392. height: math.unit(2.6, "feet"),
  58393. name: "Dick",
  58394. image: {
  58395. source: "./media/characters/caleb/dick.svg"
  58396. }
  58397. },
  58398. },
  58399. [
  58400. {
  58401. name: "Incognito",
  58402. height: math.unit(3, "meters")
  58403. },
  58404. {
  58405. name: "Home Size",
  58406. height: math.unit(200, "meters"),
  58407. default: true
  58408. },
  58409. {
  58410. name: "Macro",
  58411. height: math.unit(500, "meters")
  58412. },
  58413. {
  58414. name: "Big Macro",
  58415. height: math.unit(5, "km")
  58416. },
  58417. {
  58418. name: "Giga",
  58419. height: math.unit(250, "km")
  58420. },
  58421. {
  58422. name: "Giga+",
  58423. height: math.unit(5000, "km")
  58424. },
  58425. {
  58426. name: "Small Terra",
  58427. height: math.unit(35e3, "km")
  58428. },
  58429. {
  58430. name: "Terra",
  58431. height: math.unit(2e6, "km")
  58432. },
  58433. {
  58434. name: "Terra+",
  58435. height: math.unit(1.5e6, "km")
  58436. },
  58437. ]
  58438. ))
  58439. characterMakers.push(() => makeCharacter(
  58440. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58441. {
  58442. front: {
  58443. height: math.unit(2, "meters"),
  58444. weight: math.unit(120, "kg"),
  58445. name: "Front",
  58446. image: {
  58447. source: "./media/characters/gilirian/front.svg",
  58448. extra: 805/737,
  58449. bottom: 13/818
  58450. }
  58451. },
  58452. side: {
  58453. height: math.unit(2, "meters"),
  58454. weight: math.unit(120, "kg"),
  58455. name: "Side",
  58456. image: {
  58457. source: "./media/characters/gilirian/side.svg",
  58458. extra: 810/746,
  58459. bottom: 6/816
  58460. }
  58461. },
  58462. back: {
  58463. height: math.unit(2, "meters"),
  58464. weight: math.unit(120, "kg"),
  58465. name: "Back",
  58466. image: {
  58467. source: "./media/characters/gilirian/back.svg",
  58468. extra: 815/745,
  58469. bottom: 15/830
  58470. }
  58471. },
  58472. frontNsfw: {
  58473. height: math.unit(2, "meters"),
  58474. weight: math.unit(120, "kg"),
  58475. name: "Front (NSFW)",
  58476. image: {
  58477. source: "./media/characters/gilirian/front-nsfw.svg",
  58478. extra: 805/737,
  58479. bottom: 13/818
  58480. }
  58481. },
  58482. sideNsfw: {
  58483. height: math.unit(2, "meters"),
  58484. weight: math.unit(120, "kg"),
  58485. name: "Side (NSFW)",
  58486. image: {
  58487. source: "./media/characters/gilirian/side-nsfw.svg",
  58488. extra: 810/746,
  58489. bottom: 6/816
  58490. }
  58491. },
  58492. },
  58493. [
  58494. {
  58495. name: "Incognito",
  58496. height: math.unit(2, "meters"),
  58497. default: true
  58498. },
  58499. {
  58500. name: "Macro",
  58501. height: math.unit(250, "meters")
  58502. },
  58503. {
  58504. name: "Big Macro",
  58505. height: math.unit(1500, "meters")
  58506. },
  58507. {
  58508. name: "Mega",
  58509. height: math.unit(40, "km")
  58510. },
  58511. {
  58512. name: "Giga",
  58513. height: math.unit(300, "km")
  58514. },
  58515. {
  58516. name: "Extra Giga",
  58517. height: math.unit(5000, "km")
  58518. },
  58519. {
  58520. name: "Small Terra",
  58521. height: math.unit(10e3, "km")
  58522. },
  58523. {
  58524. name: "Terra",
  58525. height: math.unit(3e5, "km")
  58526. },
  58527. {
  58528. name: "Galactic",
  58529. height: math.unit(369950, "lightyears")
  58530. },
  58531. ]
  58532. ))
  58533. characterMakers.push(() => makeCharacter(
  58534. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58535. {
  58536. front: {
  58537. height: math.unit(2.5, "meters"),
  58538. weight: math.unit(230, "lb"),
  58539. name: "Front",
  58540. image: {
  58541. source: "./media/characters/tarken/front.svg",
  58542. extra: 764/720,
  58543. bottom: 49/813
  58544. }
  58545. },
  58546. back: {
  58547. height: math.unit(2.5, "meters"),
  58548. weight: math.unit(230, "lb"),
  58549. name: "Back",
  58550. image: {
  58551. source: "./media/characters/tarken/back.svg",
  58552. extra: 756/720,
  58553. bottom: 35/791
  58554. }
  58555. },
  58556. frontNsfw: {
  58557. height: math.unit(2.5, "meters"),
  58558. weight: math.unit(230, "lb"),
  58559. name: "Front (NSFW)",
  58560. image: {
  58561. source: "./media/characters/tarken/front-nsfw.svg",
  58562. extra: 764/720,
  58563. bottom: 49/813
  58564. }
  58565. },
  58566. backNsfw: {
  58567. height: math.unit(2.5, "meters"),
  58568. weight: math.unit(230, "lb"),
  58569. name: "Back (NSFW)",
  58570. image: {
  58571. source: "./media/characters/tarken/back-nsfw.svg",
  58572. extra: 756/720,
  58573. bottom: 35/791
  58574. }
  58575. },
  58576. head: {
  58577. height: math.unit(2.22, "feet"),
  58578. name: "Head",
  58579. image: {
  58580. source: "./media/characters/tarken/head.svg"
  58581. }
  58582. },
  58583. tail: {
  58584. height: math.unit(5.25, "feet"),
  58585. name: "Tail",
  58586. image: {
  58587. source: "./media/characters/tarken/tail.svg"
  58588. }
  58589. },
  58590. dick: {
  58591. height: math.unit(1.95, "feet"),
  58592. name: "Dick",
  58593. image: {
  58594. source: "./media/characters/tarken/dick.svg"
  58595. }
  58596. },
  58597. hand: {
  58598. height: math.unit(1.78, "feet"),
  58599. name: "Hand",
  58600. image: {
  58601. source: "./media/characters/tarken/hand.svg"
  58602. }
  58603. },
  58604. beam: {
  58605. height: math.unit(1.5, "feet"),
  58606. name: "Beam",
  58607. image: {
  58608. source: "./media/characters/tarken/beam.svg"
  58609. }
  58610. },
  58611. },
  58612. [
  58613. {
  58614. name: "Original Size",
  58615. height: math.unit(2.5, "meters")
  58616. },
  58617. {
  58618. name: "Macro",
  58619. height: math.unit(150, "meters"),
  58620. default: true
  58621. },
  58622. {
  58623. name: "Macro+",
  58624. height: math.unit(300, "meters")
  58625. },
  58626. {
  58627. name: "Mega",
  58628. height: math.unit(2, "km")
  58629. },
  58630. {
  58631. name: "Mega+",
  58632. height: math.unit(35, "km")
  58633. },
  58634.  {
  58635. name: "Mega++",
  58636. height: math.unit(60, "km")
  58637. },
  58638. {
  58639. name: "Giga",
  58640. height: math.unit(200, "km")
  58641. },
  58642. {
  58643. name: "Giga+",
  58644. height: math.unit(2500, "km")
  58645. },
  58646. {
  58647. name: "Giga++",
  58648. height: math.unit(6600, "km")
  58649. },
  58650. {
  58651. name: "Terra",
  58652. height: math.unit(20000, "km")
  58653. },
  58654. {
  58655. name: "Terra+",
  58656. height: math.unit(300000, "km")
  58657. },
  58658. ]
  58659. ))
  58660. characterMakers.push(() => makeCharacter(
  58661. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58662. {
  58663. magpie_dressed: {
  58664. height: math.unit(1.7, "meters"),
  58665. weight: math.unit(70, "kg"),
  58666. name: "Dressed",
  58667. image: {
  58668. source: "./media/characters/otreus/magpie-dressed.svg",
  58669. extra: 691/672,
  58670. bottom: 116/807
  58671. },
  58672. form: "magpie",
  58673. default: true
  58674. },
  58675. magpie_nude: {
  58676. height: math.unit(1.7, "meters"),
  58677. weight: math.unit(70, "kg"),
  58678. name: "Nude",
  58679. image: {
  58680. source: "./media/characters/otreus/magpie-nude.svg",
  58681. extra: 691/672,
  58682. bottom: 116/807
  58683. },
  58684. form: "magpie",
  58685. },
  58686. magpie_dressedLewd: {
  58687. height: math.unit(1.7, "meters"),
  58688. weight: math.unit(70, "kg"),
  58689. name: "Dressed (Lewd)",
  58690. image: {
  58691. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58692. extra: 691/672,
  58693. bottom: 116/807
  58694. },
  58695. form: "magpie",
  58696. },
  58697. magpie_nudeLewd: {
  58698. height: math.unit(1.7, "meters"),
  58699. weight: math.unit(70, "kg"),
  58700. name: "Nude (Lewd)",
  58701. image: {
  58702. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58703. extra: 691/672,
  58704. bottom: 116/807
  58705. },
  58706. form: "magpie",
  58707. },
  58708. magpie_leftFoot: {
  58709. height: math.unit(1.58, "feet"),
  58710. name: "Left Foot",
  58711. image: {
  58712. source: "./media/characters/otreus/magpie-left-foot.svg"
  58713. },
  58714. form: "magpie",
  58715. },
  58716. magpie_rightFoot: {
  58717. height: math.unit(1.58, "feet"),
  58718. name: "Right Foot",
  58719. image: {
  58720. source: "./media/characters/otreus/magpie-right-foot.svg"
  58721. },
  58722. form: "magpie",
  58723. },
  58724. magpie_wingspan: {
  58725. height: math.unit(2, "meters"),
  58726. weight: math.unit(70, "kg"),
  58727. name: "Wingspan",
  58728. image: {
  58729. source: "./media/characters/otreus/magpie-wingspan.svg"
  58730. },
  58731. extraAttributes: {
  58732. "wingspan": {
  58733. name: "Wingspan",
  58734. power: 1,
  58735. type: "length",
  58736. base: math.unit(3.35, "meters")
  58737. },
  58738. },
  58739. form: "magpie",
  58740. },
  58741. hippogriff_dressed: {
  58742. height: math.unit(1.7, "meters"),
  58743. weight: math.unit(70, "kg"),
  58744. name: "Dressed",
  58745. image: {
  58746. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58747. extra: 710/689,
  58748. bottom: 67/777
  58749. },
  58750. form: "hippogriff",
  58751. default: true
  58752. },
  58753. hippogriff_nude: {
  58754. height: math.unit(1.7, "meters"),
  58755. weight: math.unit(70, "kg"),
  58756. name: "Nude",
  58757. image: {
  58758. source: "./media/characters/otreus/hippogriff-nude.svg",
  58759. extra: 710/689,
  58760. bottom: 67/777
  58761. },
  58762. form: "hippogriff",
  58763. },
  58764. hippogriff_dressedLewd: {
  58765. height: math.unit(1.7, "meters"),
  58766. weight: math.unit(70, "kg"),
  58767. name: "Dressed (Lewd)",
  58768. image: {
  58769. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58770. extra: 710/689,
  58771. bottom: 67/777
  58772. },
  58773. form: "hippogriff",
  58774. },
  58775. hippogriff_nudeLewd: {
  58776. height: math.unit(1.7, "meters"),
  58777. weight: math.unit(70, "kg"),
  58778. name: "Nude (Lewd)",
  58779. image: {
  58780. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58781. extra: 710/689,
  58782. bottom: 67/777
  58783. },
  58784. form: "hippogriff",
  58785. },
  58786. },
  58787. [
  58788. {
  58789. name: "Original Size",
  58790. height: math.unit(1.7, "meters"),
  58791. allForms: true
  58792. },
  58793. {
  58794. name: "Incognito Size",
  58795. height: math.unit(2, "meters"),
  58796. allForms: true
  58797. },
  58798. {
  58799. name: "Mega",
  58800. height: math.unit(2, "km"),
  58801. allForms: true
  58802. },
  58803. {
  58804. name: "Mega+",
  58805. height: math.unit(40, "km"),
  58806. allForms: true
  58807. },
  58808. {
  58809. name: "Giga",
  58810. height: math.unit(250, "km"),
  58811. allForms: true
  58812. },
  58813. {
  58814. name: "Giga+",
  58815. height: math.unit(3000, "km"),
  58816. allForms: true
  58817. },
  58818. {
  58819. name: "Terra",
  58820. height: math.unit(20000, "km"),
  58821. allForms: true
  58822. },
  58823. {
  58824. name: "Solar (Home Size)",
  58825. height: math.unit(3e6, "km"),
  58826. allForms: true,
  58827. default: true
  58828. },
  58829. ],
  58830. {
  58831. "magpie": {
  58832. name: "Magpie",
  58833. default: true
  58834. },
  58835. "hippogriff": {
  58836. name: "Hippogriff",
  58837. },
  58838. }
  58839. ))
  58840. characterMakers.push(() => makeCharacter(
  58841. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58842. {
  58843. frontDressed: {
  58844. height: math.unit(1.8, "meters"),
  58845. weight: math.unit(90, "kg"),
  58846. name: "Front (Dressed)",
  58847. image: {
  58848. source: "./media/characters/thalia/front-dressed.svg",
  58849. extra: 478/402,
  58850. bottom: 55/533
  58851. }
  58852. },
  58853. backDressed: {
  58854. height: math.unit(1.8, "meters"),
  58855. weight: math.unit(90, "kg"),
  58856. name: "Back (Dressed)",
  58857. image: {
  58858. source: "./media/characters/thalia/back-dressed.svg",
  58859. extra: 500/424,
  58860. bottom: 15/515
  58861. }
  58862. },
  58863. frontNude: {
  58864. height: math.unit(1.8, "meters"),
  58865. weight: math.unit(90, "kg"),
  58866. name: "Front (Nude)",
  58867. image: {
  58868. source: "./media/characters/thalia/front-nude.svg",
  58869. extra: 478/402,
  58870. bottom: 55/533
  58871. }
  58872. },
  58873. backNude: {
  58874. height: math.unit(1.8, "meters"),
  58875. weight: math.unit(90, "kg"),
  58876. name: "Back (Nude)",
  58877. image: {
  58878. source: "./media/characters/thalia/back-nude.svg",
  58879. extra: 500/424,
  58880. bottom: 15/515
  58881. }
  58882. },
  58883. },
  58884. [
  58885. {
  58886. name: "Incognito",
  58887. height: math.unit(3, "meters")
  58888. },
  58889. {
  58890. name: "Macro",
  58891. height: math.unit(500, "meters")
  58892. },
  58893. {
  58894. name: "Mega",
  58895. height: math.unit(5, "km")
  58896. },
  58897. {
  58898. name: "Mega+",
  58899. height: math.unit(30, "km")
  58900. },
  58901. {
  58902. name: "Giga",
  58903. height: math.unit(350, "km")
  58904. },
  58905. {
  58906. name: "Giga+",
  58907. height: math.unit(4000, "km")
  58908. },
  58909. {
  58910. name: "Terra",
  58911. height: math.unit(35000, "km")
  58912. },
  58913. {
  58914. name: "Original Size",
  58915. height: math.unit(130000, "km")
  58916. },
  58917. {
  58918. name: "Solar (Home Size)",
  58919. height: math.unit(4e6, "km"),
  58920. default: true
  58921. },
  58922. ]
  58923. ))
  58924. characterMakers.push(() => makeCharacter(
  58925. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58926. {
  58927. front: {
  58928. height: math.unit(1.8, "meters"),
  58929. weight: math.unit(95, "kg"),
  58930. name: "Front",
  58931. image: {
  58932. source: "./media/characters/shango/front.svg",
  58933. extra: 1925/1774,
  58934. bottom: 67/1992
  58935. }
  58936. },
  58937. back: {
  58938. height: math.unit(1.8, "meters"),
  58939. weight: math.unit(95, "kg"),
  58940. name: "Back",
  58941. image: {
  58942. source: "./media/characters/shango/back.svg",
  58943. extra: 1915/1766,
  58944. bottom: 52/1967
  58945. }
  58946. },
  58947. frontLewd: {
  58948. height: math.unit(1.8, "meters"),
  58949. weight: math.unit(95, "kg"),
  58950. name: "Front (Lewd)",
  58951. image: {
  58952. source: "./media/characters/shango/front-lewd.svg",
  58953. extra: 1925/1774,
  58954. bottom: 67/1992
  58955. }
  58956. },
  58957. backLewd: {
  58958. height: math.unit(1.8, "meters"),
  58959. weight: math.unit(95, "kg"),
  58960. name: "Back (Lewd)",
  58961. image: {
  58962. source: "./media/characters/shango/back-lewd.svg",
  58963. extra: 1915/1766,
  58964. bottom: 52/1967
  58965. }
  58966. },
  58967. maw: {
  58968. height: math.unit(1.64, "feet"),
  58969. name: "Maw",
  58970. image: {
  58971. source: "./media/characters/shango/maw.svg"
  58972. }
  58973. },
  58974. dick: {
  58975. height: math.unit(2.14, "feet"),
  58976. name: "Dick",
  58977. image: {
  58978. source: "./media/characters/shango/dick.svg"
  58979. }
  58980. },
  58981. },
  58982. [
  58983. {
  58984. name: "Incognito",
  58985. height: math.unit(1.8, "meters")
  58986. },
  58987. {
  58988. name: "Home Size",
  58989. height: math.unit(60, "meters"),
  58990. default: true
  58991. },
  58992. {
  58993. name: "Macro",
  58994. height: math.unit(450, "meters")
  58995. },
  58996. {
  58997. name: "Mega",
  58998. height: math.unit(6, "km")
  58999. },
  59000. {
  59001. name: "Mega+",
  59002. height: math.unit(35, "km")
  59003. },
  59004. {
  59005. name: "Giga",
  59006. height: math.unit(500, "km")
  59007. },
  59008. {
  59009. name: "Giga+",
  59010. height: math.unit(5000, "km")
  59011. },
  59012. {
  59013. name: "Terra",
  59014. height: math.unit(60000, "km")
  59015. },
  59016. {
  59017. name: "Terra+",
  59018. height: math.unit(400000, "km")
  59019. },
  59020. ]
  59021. ))
  59022. characterMakers.push(() => makeCharacter(
  59023. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59024. {
  59025. front: {
  59026. height: math.unit(2, "meters"),
  59027. weight: math.unit(95, "kg"),
  59028. name: "Front",
  59029. image: {
  59030. source: "./media/characters/osiris-gryphon/front.svg",
  59031. extra: 1508/1313,
  59032. bottom: 87/1595
  59033. }
  59034. },
  59035. back: {
  59036. height: math.unit(2, "meters"),
  59037. weight: math.unit(95, "kg"),
  59038. name: "Back",
  59039. image: {
  59040. source: "./media/characters/osiris-gryphon/back.svg",
  59041. extra: 1436/1309,
  59042. bottom: 64/1500
  59043. }
  59044. },
  59045. frontLewd: {
  59046. height: math.unit(2, "meters"),
  59047. weight: math.unit(95, "kg"),
  59048. name: "Front-lewd",
  59049. image: {
  59050. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59051. extra: 1508/1313,
  59052. bottom: 87/1595
  59053. }
  59054. },
  59055. wing: {
  59056. height: math.unit(6.3333, "feet"),
  59057. name: "Wing",
  59058. image: {
  59059. source: "./media/characters/osiris-gryphon/wing.svg"
  59060. }
  59061. },
  59062. },
  59063. [
  59064. {
  59065. name: "Incognito",
  59066. height: math.unit(2, "meters")
  59067. },
  59068. {
  59069. name: "Home Size",
  59070. height: math.unit(30, "meters"),
  59071. default: true
  59072. },
  59073. {
  59074. name: "Macro",
  59075. height: math.unit(100, "meters")
  59076. },
  59077. {
  59078. name: "Macro+",
  59079. height: math.unit(350, "meters")
  59080. },
  59081. {
  59082. name: "Mega",
  59083. height: math.unit(40, "km")
  59084. },
  59085. {
  59086. name: "Giga",
  59087. height: math.unit(300, "km")
  59088. },
  59089. {
  59090. name: "Giga+",
  59091. height: math.unit(2000, "km")
  59092. },
  59093. {
  59094. name: "Terra",
  59095. height: math.unit(30000, "km")
  59096. },
  59097. ]
  59098. ))
  59099. characterMakers.push(() => makeCharacter(
  59100. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59101. {
  59102. front: {
  59103. height: math.unit(2.5, "meters"),
  59104. weight: math.unit(200, "kg"),
  59105. name: "Front",
  59106. image: {
  59107. source: "./media/characters/atlas-dragon/front.svg",
  59108. extra: 745/462,
  59109. bottom: 36/781
  59110. }
  59111. },
  59112. back: {
  59113. height: math.unit(2.5, "meters"),
  59114. weight: math.unit(200, "kg"),
  59115. name: "Back",
  59116. image: {
  59117. source: "./media/characters/atlas-dragon/back.svg",
  59118. extra: 848/822,
  59119. bottom: 57/905
  59120. }
  59121. },
  59122. frontLewd: {
  59123. height: math.unit(2.5, "meters"),
  59124. weight: math.unit(200, "kg"),
  59125. name: "Front (Lewd)",
  59126. image: {
  59127. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59128. extra: 745/462,
  59129. bottom: 36/781
  59130. }
  59131. },
  59132. backLewd: {
  59133. height: math.unit(2.5, "meters"),
  59134. weight: math.unit(200, "kg"),
  59135. name: "Back (Lewd)",
  59136. image: {
  59137. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59138. extra: 848/822,
  59139. bottom: 57/905
  59140. }
  59141. },
  59142. },
  59143. [
  59144. {
  59145. name: "Incognito",
  59146. height: math.unit(2.5, "meters")
  59147. },
  59148. {
  59149. name: "Small Macro",
  59150. height: math.unit(50, "meters")
  59151. },
  59152. {
  59153. name: "Macro",
  59154. height: math.unit(350, "meters")
  59155. },
  59156. {
  59157. name: "Mega",
  59158. height: math.unit(5.5, "kilometers")
  59159. },
  59160. {
  59161. name: "Mega+",
  59162. height: math.unit(50, "km")
  59163. },
  59164. {
  59165. name: "Giga",
  59166. height: math.unit(350, "km")
  59167. },
  59168. {
  59169. name: "Giga+",
  59170. height: math.unit(2000, "km")
  59171. },
  59172. {
  59173. name: "Giga++",
  59174. height: math.unit(6500, "km")
  59175. },
  59176. {
  59177. name: "Terra",
  59178. height: math.unit(30000, "km")
  59179. },
  59180. {
  59181. name: "Terra+",
  59182. height: math.unit(250000, "km")
  59183. },
  59184. {
  59185. name: "True Size",
  59186. height: math.unit(100, "multiverses"),
  59187. default: true
  59188. },
  59189. ]
  59190. ))
  59191. characterMakers.push(() => makeCharacter(
  59192. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59193. {
  59194. front: {
  59195. height: math.unit(1.8, "m"),
  59196. weight: math.unit(120, "kg"),
  59197. name: "Front",
  59198. image: {
  59199. source: "./media/characters/chey/front.svg",
  59200. extra: 1359/1270,
  59201. bottom: 18/1377
  59202. }
  59203. },
  59204. arm: {
  59205. height: math.unit(2.05, "feet"),
  59206. name: "Arm",
  59207. image: {
  59208. source: "./media/characters/chey/arm.svg"
  59209. }
  59210. },
  59211. head: {
  59212. height: math.unit(1.89, "feet"),
  59213. name: "Head",
  59214. image: {
  59215. source: "./media/characters/chey/head.svg"
  59216. }
  59217. },
  59218. },
  59219. [
  59220. {
  59221. name: "Original Size",
  59222. height: math.unit(5, "cm")
  59223. },
  59224. {
  59225. name: "Incognito Size",
  59226. height: math.unit(2.4, "m")
  59227. },
  59228. {
  59229. name: "Home Size",
  59230. height: math.unit(200, "meters"),
  59231. default: true
  59232. },
  59233. {
  59234. name: "Mega",
  59235. height: math.unit(2, "km")
  59236. },
  59237. {
  59238. name: "Giga (Preferred Size)",
  59239. height: math.unit(2000, "km")
  59240. },
  59241. {
  59242. name: "Giga+",
  59243. height: math.unit(6000, "km")
  59244. },
  59245. {
  59246. name: "Terra",
  59247. height: math.unit(17000, "km")
  59248. },
  59249. {
  59250. name: "Terra+",
  59251. height: math.unit(75000, "km")
  59252. },
  59253. {
  59254. name: "Terra++",
  59255. height: math.unit(225000, "km")
  59256. },
  59257. ]
  59258. ))
  59259. characterMakers.push(() => makeCharacter(
  59260. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59261. {
  59262. side: {
  59263. height: math.unit(7.8, "meters"),
  59264. name: "Side",
  59265. image: {
  59266. source: "./media/characters/ragnarok/side.svg",
  59267. extra: 725/621,
  59268. bottom: 72/797
  59269. }
  59270. },
  59271. },
  59272. [
  59273. {
  59274. name: "Normal",
  59275. height: math.unit(7.8, "meters"),
  59276. default: true
  59277. },
  59278. ]
  59279. ))
  59280. characterMakers.push(() => makeCharacter(
  59281. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59282. {
  59283. hyena_front: {
  59284. height: math.unit(2.1, "meters"),
  59285. weight: math.unit(110, "kg"),
  59286. name: "Front",
  59287. image: {
  59288. source: "./media/characters/nima/hyena-front.svg",
  59289. extra: 1904/1796,
  59290. bottom: 67/1971
  59291. },
  59292. form: "hyena",
  59293. },
  59294. hyena_back: {
  59295. height: math.unit(2.1, "meters"),
  59296. weight: math.unit(110, "kg"),
  59297. name: "Back",
  59298. image: {
  59299. source: "./media/characters/nima/hyena-back.svg",
  59300. extra: 1964/1884,
  59301. bottom: 35/1999
  59302. },
  59303. form: "hyena",
  59304. },
  59305. shark_front: {
  59306. height: math.unit(1.95, "meters"),
  59307. weight: math.unit(110, "kg"),
  59308. name: "Front",
  59309. image: {
  59310. source: "./media/characters/nima/shark-front.svg",
  59311. extra: 2238/2013,
  59312. bottom: 0/223
  59313. },
  59314. form: "shark",
  59315. },
  59316. paw: {
  59317. height: math.unit(1, "feet"),
  59318. name: "Paw",
  59319. image: {
  59320. source: "./media/characters/nima/paw.svg"
  59321. }
  59322. },
  59323. circlet: {
  59324. height: math.unit(0.3, "feet"),
  59325. name: "Circlet",
  59326. image: {
  59327. source: "./media/characters/nima/circlet.svg"
  59328. }
  59329. },
  59330. necklace: {
  59331. height: math.unit(1.2, "feet"),
  59332. name: "Necklace",
  59333. image: {
  59334. source: "./media/characters/nima/necklace.svg"
  59335. }
  59336. },
  59337. bracelet: {
  59338. height: math.unit(0.51, "feet"),
  59339. name: "Bracelet",
  59340. image: {
  59341. source: "./media/characters/nima/bracelet.svg"
  59342. }
  59343. },
  59344. armband: {
  59345. height: math.unit(1.3, "feet"),
  59346. name: "Armband",
  59347. image: {
  59348. source: "./media/characters/nima/armband.svg"
  59349. }
  59350. },
  59351. },
  59352. [
  59353. {
  59354. name: "Incognito",
  59355. height: math.unit(2.1, "meters"),
  59356. allForms: true
  59357. },
  59358. {
  59359. name: "Small Macro",
  59360. height: math.unit(50, "meters"),
  59361. allForms: true
  59362. },
  59363. {
  59364. name: "Macro",
  59365. height: math.unit(200, "meters"),
  59366. allForms: true
  59367. },
  59368. {
  59369. name: "Mega",
  59370. height: math.unit(2.5, "km"),
  59371. allForms: true
  59372. },
  59373. {
  59374. name: "Mega+",
  59375. height: math.unit(30, "km"),
  59376. allForms: true
  59377. },
  59378. {
  59379. name: "Giga (Home Size)",
  59380. height: math.unit(400, "km"),
  59381. allForms: true,
  59382. default: true
  59383. },
  59384. {
  59385. name: "Giga+",
  59386. height: math.unit(2500, "km"),
  59387. allForms: true
  59388. },
  59389. {
  59390. name: "Giga++",
  59391. height: math.unit(8000, "km"),
  59392. allForms: true
  59393. },
  59394. {
  59395. name: "Terra",
  59396. height: math.unit(20000, "km"),
  59397. allForms: true
  59398. },
  59399. {
  59400. name: "Terra+",
  59401. height: math.unit(70000, "km"),
  59402. allForms: true
  59403. },
  59404. {
  59405. name: "Terra++",
  59406. height: math.unit(600000, "km"),
  59407. allForms: true
  59408. },
  59409. {
  59410. name: "Galactic",
  59411. height: math.unit(40, "galaxies"),
  59412. allForms: true
  59413. },
  59414. {
  59415. name: "Universal",
  59416. height: math.unit(40, "universes"),
  59417. allForms: true
  59418. },
  59419. ],
  59420. {
  59421. "hyena": {
  59422. name: "Hyena",
  59423. default: true
  59424. },
  59425. "shark": {
  59426. name: "Shark",
  59427. },
  59428. }
  59429. ))
  59430. characterMakers.push(() => makeCharacter(
  59431. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59432. {
  59433. anthro_front: {
  59434. height: math.unit(1.5, "meters"),
  59435. name: "Front",
  59436. image: {
  59437. source: "./media/characters/adelaide/anthro-front.svg",
  59438. extra: 860/783,
  59439. bottom: 60/920
  59440. },
  59441. form: "anthro",
  59442. default: true
  59443. },
  59444. hand: {
  59445. height: math.unit(0.65, "feet"),
  59446. name: "Hand",
  59447. image: {
  59448. source: "./media/characters/adelaide/hand.svg"
  59449. },
  59450. form: "anthro"
  59451. },
  59452. foot: {
  59453. height: math.unit(1.38 * 259 / 314, "feet"),
  59454. name: "Foot",
  59455. image: {
  59456. source: "./media/characters/adelaide/foot.svg",
  59457. extra: 259/259,
  59458. bottom: 55/314
  59459. },
  59460. form: "anthro"
  59461. },
  59462. feather: {
  59463. height: math.unit(0.85, "feet"),
  59464. name: "Feather",
  59465. image: {
  59466. source: "./media/characters/adelaide/feather.svg"
  59467. },
  59468. form: "anthro"
  59469. },
  59470. feral_side: {
  59471. height: math.unit(1, "meters"),
  59472. name: "Side",
  59473. image: {
  59474. source: "./media/characters/adelaide/feral-side.svg",
  59475. extra: 550/467,
  59476. bottom: 37/587
  59477. },
  59478. form: "feral",
  59479. default: true
  59480. },
  59481. feral_hand: {
  59482. height: math.unit(0.58, "feet"),
  59483. name: "Hand",
  59484. image: {
  59485. source: "./media/characters/adelaide/hand.svg"
  59486. },
  59487. form: "feral"
  59488. },
  59489. feral_foot: {
  59490. height: math.unit(1.2 * 259 / 314, "feet"),
  59491. name: "Foot",
  59492. image: {
  59493. source: "./media/characters/adelaide/foot.svg",
  59494. extra: 259/259,
  59495. bottom: 55/314
  59496. },
  59497. form: "feral"
  59498. },
  59499. feral_feather: {
  59500. height: math.unit(0.63, "feet"),
  59501. name: "Feather",
  59502. image: {
  59503. source: "./media/characters/adelaide/feather.svg"
  59504. },
  59505. form: "feral"
  59506. },
  59507. },
  59508. [
  59509. {
  59510. name: "Normal",
  59511. height: math.unit(1.5, "meters"),
  59512. form: "anthro",
  59513. default: true
  59514. },
  59515. {
  59516. name: "Normal",
  59517. height: math.unit(1, "meters"),
  59518. form: "feral",
  59519. default: true
  59520. },
  59521. ],
  59522. {
  59523. "anthro": {
  59524. name: "Anthro",
  59525. default: true
  59526. },
  59527. "feral": {
  59528. name: "Feral",
  59529. },
  59530. }
  59531. ))
  59532. characterMakers.push(() => makeCharacter(
  59533. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59534. {
  59535. front: {
  59536. height: math.unit(2.5, "meters"),
  59537. name: "Front",
  59538. image: {
  59539. source: "./media/characters/goa/front.svg",
  59540. extra: 1109/1013,
  59541. bottom: 150/1259
  59542. }
  59543. },
  59544. },
  59545. [
  59546. {
  59547. name: "Normal",
  59548. height: math.unit(2.5, "meters"),
  59549. default: true
  59550. },
  59551. ]
  59552. ))
  59553. characterMakers.push(() => makeCharacter(
  59554. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59555. {
  59556. front: {
  59557. height: math.unit(2, "meters"),
  59558. weight: math.unit(100, "kg"),
  59559. name: "Front",
  59560. image: {
  59561. source: "./media/characters/kiki-weavile/front.svg",
  59562. extra: 357/332,
  59563. bottom: 60/417
  59564. }
  59565. },
  59566. },
  59567. [
  59568. {
  59569. name: "Normal",
  59570. height: math.unit(2, "meters"),
  59571. default: true
  59572. },
  59573. ]
  59574. ))
  59575. characterMakers.push(() => makeCharacter(
  59576. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59577. {
  59578. side: {
  59579. height: math.unit(1.6, "meters"),
  59580. name: "Side",
  59581. image: {
  59582. source: "./media/characters/liza/side.svg",
  59583. extra: 943/915,
  59584. bottom: 72/1015
  59585. }
  59586. },
  59587. },
  59588. [
  59589. {
  59590. name: "Normal",
  59591. height: math.unit(1.6, "meters"),
  59592. default: true
  59593. },
  59594. ]
  59595. ))
  59596. characterMakers.push(() => makeCharacter(
  59597. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59598. {
  59599. side: {
  59600. height: math.unit(2.5, "meters"),
  59601. preyCapacity: math.unit(1, "people"),
  59602. name: "Side",
  59603. image: {
  59604. source: "./media/characters/persephone-sweetbreath/side.svg",
  59605. extra: 796/700,
  59606. bottom: 44/840
  59607. }
  59608. },
  59609. sideVore: {
  59610. height: math.unit(2.5, "meters"),
  59611. preyCapacity: math.unit(1, "people"),
  59612. name: "Side (Full)",
  59613. image: {
  59614. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59615. extra: 796/700,
  59616. bottom: 44/840
  59617. }
  59618. },
  59619. },
  59620. [
  59621. {
  59622. name: "Normal",
  59623. height: math.unit(2.5, "meters"),
  59624. default: true
  59625. },
  59626. ]
  59627. ))
  59628. characterMakers.push(() => makeCharacter(
  59629. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59630. {
  59631. front: {
  59632. height: math.unit(32, "meters"),
  59633. name: "Front",
  59634. image: {
  59635. source: "./media/characters/pierce/front.svg",
  59636. extra: 1695/1475,
  59637. bottom: 185/1880
  59638. }
  59639. },
  59640. side: {
  59641. height: math.unit(32, "meters"),
  59642. name: "Side",
  59643. image: {
  59644. source: "./media/characters/pierce/side.svg",
  59645. extra: 974/859,
  59646. bottom: 43/1017
  59647. }
  59648. },
  59649. frontWingless: {
  59650. height: math.unit(32, "meters"),
  59651. name: "Front (Wingless)",
  59652. image: {
  59653. source: "./media/characters/pierce/front-wingless.svg",
  59654. extra: 1695/1475,
  59655. bottom: 185/1880
  59656. }
  59657. },
  59658. sideWingless: {
  59659. height: math.unit(32, "meters"),
  59660. name: "Side (Wingless)",
  59661. image: {
  59662. source: "./media/characters/pierce/side-wingless.svg",
  59663. extra: 974/859,
  59664. bottom: 43/1017
  59665. }
  59666. },
  59667. maw: {
  59668. height: math.unit(19.3, "meters"),
  59669. name: "Maw",
  59670. image: {
  59671. source: "./media/characters/pierce/maw.svg"
  59672. }
  59673. },
  59674. },
  59675. [
  59676. {
  59677. name: "Small",
  59678. height: math.unit(8.5, "meters")
  59679. },
  59680. {
  59681. name: "Normal",
  59682. height: math.unit(32, "meters"),
  59683. default: true
  59684. },
  59685. ]
  59686. ))
  59687. characterMakers.push(() => makeCharacter(
  59688. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59689. {
  59690. front: {
  59691. height: math.unit(2.3, "meters"),
  59692. weight: math.unit(165, "kg"),
  59693. name: "Front",
  59694. image: {
  59695. source: "./media/characters/shira/front.svg",
  59696. extra: 924/919,
  59697. bottom: 17/941
  59698. },
  59699. form: "cobra",
  59700. default: true
  59701. },
  59702. back: {
  59703. height: math.unit(2.3, "meters"),
  59704. weight: math.unit(165, "kg"),
  59705. name: "Back",
  59706. image: {
  59707. source: "./media/characters/shira/back.svg",
  59708. extra: 928/922,
  59709. bottom: 18/946
  59710. },
  59711. form: "cobra"
  59712. },
  59713. frontLewd: {
  59714. height: math.unit(2.3, "meters"),
  59715. weight: math.unit(165, "kg"),
  59716. name: "Front (Lewd)",
  59717. image: {
  59718. source: "./media/characters/shira/front-lewd.svg",
  59719. extra: 924/919,
  59720. bottom: 17/941
  59721. },
  59722. form: "cobra"
  59723. },
  59724. backLewd: {
  59725. height: math.unit(2.3, "meters"),
  59726. weight: math.unit(165, "kg"),
  59727. name: "Back (Lewd)",
  59728. image: {
  59729. source: "./media/characters/shira/back-lewd.svg",
  59730. extra: 928/922,
  59731. bottom: 18/946
  59732. },
  59733. form: "cobra"
  59734. },
  59735. maw: {
  59736. height: math.unit(1.14, "feet"),
  59737. name: "Maw",
  59738. image: {
  59739. source: "./media/characters/shira/maw.svg"
  59740. },
  59741. form: "cobra"
  59742. },
  59743. magma_front: {
  59744. height: math.unit(2.3, "meters"),
  59745. weight: math.unit(165, "kg"),
  59746. name: "Front",
  59747. image: {
  59748. source: "./media/characters/shira/magma-front.svg",
  59749. extra: 1870/1693,
  59750. bottom: 24/1894
  59751. },
  59752. form: "magma",
  59753. },
  59754. magma_back: {
  59755. height: math.unit(2.3, "meters"),
  59756. weight: math.unit(165, "kg"),
  59757. name: "Back",
  59758. image: {
  59759. source: "./media/characters/shira/magma-back.svg",
  59760. extra: 1918/1756,
  59761. bottom: 46/1964
  59762. },
  59763. form: "magma",
  59764. },
  59765. },
  59766. [
  59767. {
  59768. name: "Incognito",
  59769. height: math.unit(2.3, "meters"),
  59770. allForms: true
  59771. },
  59772. {
  59773. name: "Home Size",
  59774. height: math.unit(150, "meters"),
  59775. default: true,
  59776. allForms: true
  59777. },
  59778. {
  59779. name: "Macro",
  59780. height: math.unit(2, "km"),
  59781. allForms: true
  59782. },
  59783. {
  59784. name: "Mega",
  59785. height: math.unit(30, "km"),
  59786. allForms: true
  59787. },
  59788. {
  59789. name: "Giga",
  59790. height: math.unit(450, "km"),
  59791. allForms: true
  59792. },
  59793. {
  59794. name: "Giga+",
  59795. height: math.unit(3000, "km"),
  59796. allForms: true
  59797. },
  59798. {
  59799. name: "Giga++",
  59800. height: math.unit(6000, "km"),
  59801. allForms: true
  59802. },
  59803. {
  59804. name: "Terra",
  59805. height: math.unit(80000, "km"),
  59806. allForms: true
  59807. },
  59808. {
  59809. name: "Terra+",
  59810. height: math.unit(350000, "km"),
  59811. allForms: true
  59812. },
  59813. {
  59814. name: "Solar",
  59815. height: math.unit(1e6, "km"),
  59816. allForms: true
  59817. },
  59818. ],
  59819. {
  59820. "cobra": {
  59821. name: "Cobra",
  59822. default: true
  59823. },
  59824. "magma": {
  59825. name: "Magma Dragon",
  59826. },
  59827. }
  59828. ))
  59829. characterMakers.push(() => makeCharacter(
  59830. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59831. {
  59832. front: {
  59833. height: math.unit(2, "meters"),
  59834. weight: math.unit(160, "kg"),
  59835. name: "Front",
  59836. image: {
  59837. source: "./media/characters/daxerios/front.svg",
  59838. extra: 1334/1277,
  59839. bottom: 45/1379
  59840. }
  59841. },
  59842. frontLewd: {
  59843. height: math.unit(2, "meters"),
  59844. weight: math.unit(160, "kg"),
  59845. name: "Front (Lewd)",
  59846. image: {
  59847. source: "./media/characters/daxerios/front-lewd.svg",
  59848. extra: 1334/1277,
  59849. bottom: 45/1379
  59850. }
  59851. },
  59852. dick: {
  59853. height: math.unit(2.35, "feet"),
  59854. name: "Dick",
  59855. image: {
  59856. source: "./media/characters/daxerios/dick.svg"
  59857. }
  59858. },
  59859. },
  59860. [
  59861. {
  59862. name: "\"Small\"",
  59863. height: math.unit(5, "meters")
  59864. },
  59865. {
  59866. name: "Original Size",
  59867. height: math.unit(500, "meters"),
  59868. default: true
  59869. },
  59870. {
  59871. name: "Mega",
  59872. height: math.unit(2, "km")
  59873. },
  59874. {
  59875. name: "Mega+",
  59876. height: math.unit(35, "km")
  59877. },
  59878. {
  59879. name: "Giga",
  59880. height: math.unit(250, "km")
  59881. },
  59882. {
  59883. name: "Giga+",
  59884. height: math.unit(3000, "km")
  59885. },
  59886. {
  59887. name: "Terra",
  59888. height: math.unit(25000, "km")
  59889. },
  59890. {
  59891. name: "Terra+",
  59892. height: math.unit(300000, "km")
  59893. },
  59894. {
  59895. name: "Solar",
  59896. height: math.unit(1e6, "km")
  59897. },
  59898. ]
  59899. ))
  59900. characterMakers.push(() => makeCharacter(
  59901. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59902. {
  59903. front: {
  59904. height: math.unit(8 + 4/12, "feet"),
  59905. weight: math.unit(464, "lb"),
  59906. name: "Front",
  59907. image: {
  59908. source: "./media/characters/caveat/front.svg",
  59909. extra: 1861/1678,
  59910. bottom: 40/1901
  59911. }
  59912. },
  59913. },
  59914. [
  59915. {
  59916. name: "Normal",
  59917. height: math.unit(8 + 4/12, "feet"),
  59918. default: true
  59919. },
  59920. ]
  59921. ))
  59922. characterMakers.push(() => makeCharacter(
  59923. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59924. {
  59925. front: {
  59926. height: math.unit(12, "feet"),
  59927. weight: math.unit(1800, "lb"),
  59928. name: "Front",
  59929. image: {
  59930. source: "./media/characters/centbair/front.svg",
  59931. extra: 781/663,
  59932. bottom: 25/806
  59933. }
  59934. },
  59935. frontNsfw: {
  59936. height: math.unit(12, "feet"),
  59937. weight: math.unit(1800, "lb"),
  59938. name: "Front (NSFW)",
  59939. image: {
  59940. source: "./media/characters/centbair/front-nsfw.svg",
  59941. extra: 781/663,
  59942. bottom: 25/806
  59943. }
  59944. },
  59945. back: {
  59946. height: math.unit(12, "feet"),
  59947. weight: math.unit(1800, "lb"),
  59948. name: "Back",
  59949. image: {
  59950. source: "./media/characters/centbair/back.svg",
  59951. extra: 808/761,
  59952. bottom: 19/827
  59953. }
  59954. },
  59955. dick: {
  59956. height: math.unit(6.5, "feet"),
  59957. name: "Dick",
  59958. image: {
  59959. source: "./media/characters/centbair/dick.svg"
  59960. }
  59961. },
  59962. slit: {
  59963. height: math.unit(3.25, "feet"),
  59964. name: "Slit",
  59965. image: {
  59966. source: "./media/characters/centbair/slit.svg"
  59967. }
  59968. },
  59969. },
  59970. [
  59971. {
  59972. name: "Normal",
  59973. height: math.unit(12, "feet"),
  59974. default: true
  59975. },
  59976. ]
  59977. ))
  59978. characterMakers.push(() => makeCharacter(
  59979. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59980. {
  59981. front: {
  59982. height: math.unit(5 + 7/12, "feet"),
  59983. name: "Front",
  59984. image: {
  59985. source: "./media/characters/andy/front.svg",
  59986. extra: 634/588,
  59987. bottom: 36/670
  59988. },
  59989. extraAttributes: {
  59990. "pawLength": {
  59991. name: "Paw Length",
  59992. power: 1,
  59993. type: "length",
  59994. base: math.unit(1, "feet")
  59995. },
  59996. }
  59997. },
  59998. side: {
  59999. height: math.unit(5 + 7/12, "feet"),
  60000. name: "Side",
  60001. image: {
  60002. source: "./media/characters/andy/side.svg",
  60003. extra: 641/596,
  60004. bottom: 34/675
  60005. },
  60006. extraAttributes: {
  60007. "pawLength": {
  60008. name: "Paw Length",
  60009. power: 1,
  60010. type: "length",
  60011. base: math.unit(1, "feet")
  60012. },
  60013. }
  60014. },
  60015. back: {
  60016. height: math.unit(5 + 7/12, "feet"),
  60017. name: "Back",
  60018. image: {
  60019. source: "./media/characters/andy/back.svg",
  60020. extra: 618/583,
  60021. bottom: 39/657
  60022. },
  60023. extraAttributes: {
  60024. "pawLength": {
  60025. name: "Paw Length",
  60026. power: 1,
  60027. type: "length",
  60028. base: math.unit(1, "feet")
  60029. },
  60030. }
  60031. },
  60032. paw: {
  60033. height: math.unit(1.13, "feet"),
  60034. name: "Paw",
  60035. image: {
  60036. source: "./media/characters/andy/paw.svg"
  60037. }
  60038. },
  60039. },
  60040. [
  60041. {
  60042. name: "Micro",
  60043. height: math.unit(4, "inches")
  60044. },
  60045. {
  60046. name: "Normal",
  60047. height: math.unit(5 + 7/12, "feet"),
  60048. default: true
  60049. },
  60050. {
  60051. name: "Macro",
  60052. height: math.unit(390.42, "feet")
  60053. },
  60054. ]
  60055. ))
  60056. characterMakers.push(() => makeCharacter(
  60057. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60058. {
  60059. front: {
  60060. height: math.unit(7, "feet"),
  60061. weight: math.unit(250, "lb"),
  60062. name: "Front",
  60063. image: {
  60064. source: "./media/characters/vix-titan/front.svg",
  60065. extra: 460/428,
  60066. bottom: 15/475
  60067. },
  60068. extraAttributes: {
  60069. "pawWidth": {
  60070. name: "Paw Width",
  60071. power: 1,
  60072. type: "length",
  60073. base: math.unit(0.75, "feet")
  60074. },
  60075. }
  60076. },
  60077. },
  60078. [
  60079. {
  60080. name: "Normal",
  60081. height: math.unit(7, "feet"),
  60082. default: true
  60083. },
  60084. {
  60085. name: "Giant",
  60086. height: math.unit(1500, "feet")
  60087. },
  60088. {
  60089. name: "Mega",
  60090. height: math.unit(10, "miles")
  60091. },
  60092. {
  60093. name: "Giga",
  60094. height: math.unit(150, "miles")
  60095. },
  60096. {
  60097. name: "Tera",
  60098. height: math.unit(144000, "miles")
  60099. },
  60100. ]
  60101. ))
  60102. characterMakers.push(() => makeCharacter(
  60103. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60104. {
  60105. front: {
  60106. height: math.unit(6 + 2/12, "feet"),
  60107. name: "Front",
  60108. image: {
  60109. source: "./media/characters/reiku/front.svg",
  60110. extra: 1910/1757,
  60111. bottom: 103/2013
  60112. },
  60113. extraAttributes: {
  60114. "thighThickness": {
  60115. name: "Thigh Thickness",
  60116. power: 1,
  60117. type: "length",
  60118. base: math.unit(1.12, "feet")
  60119. },
  60120. "assThickness": {
  60121. name: "Ass Thickness",
  60122. power: 1,
  60123. type: "length",
  60124. base: math.unit(1.12*2, "feet")
  60125. },
  60126. }
  60127. },
  60128. side: {
  60129. height: math.unit(6 + 2/12, "feet"),
  60130. name: "Side",
  60131. image: {
  60132. source: "./media/characters/reiku/side.svg",
  60133. extra: 1846/1748,
  60134. bottom: 99/1945
  60135. },
  60136. extraAttributes: {
  60137. "thighThickness": {
  60138. name: "Thigh Thickness",
  60139. power: 1,
  60140. type: "length",
  60141. base: math.unit(1.12, "feet")
  60142. },
  60143. "assThickness": {
  60144. name: "Ass Thickness",
  60145. power: 1,
  60146. type: "length",
  60147. base: math.unit(1.12*2, "feet")
  60148. },
  60149. }
  60150. },
  60151. back: {
  60152. height: math.unit(6 + 2/12, "feet"),
  60153. name: "Back",
  60154. image: {
  60155. source: "./media/characters/reiku/back.svg",
  60156. extra: 1941/1786,
  60157. bottom: 34/1975
  60158. },
  60159. extraAttributes: {
  60160. "thighThickness": {
  60161. name: "Thigh Thickness",
  60162. power: 1,
  60163. type: "length",
  60164. base: math.unit(1.12, "feet")
  60165. },
  60166. "assThickness": {
  60167. name: "Ass Thickness",
  60168. power: 1,
  60169. type: "length",
  60170. base: math.unit(1.12*2, "feet")
  60171. },
  60172. }
  60173. },
  60174. head: {
  60175. height: math.unit(1.8, "feet"),
  60176. name: "Head",
  60177. image: {
  60178. source: "./media/characters/reiku/head.svg"
  60179. }
  60180. },
  60181. tailTop: {
  60182. height: math.unit(8.4, "feet"),
  60183. name: "Tail (Top)",
  60184. image: {
  60185. source: "./media/characters/reiku/tail-top.svg"
  60186. }
  60187. },
  60188. tailBottom: {
  60189. height: math.unit(8.4, "feet"),
  60190. name: "Tail (Bottom)",
  60191. image: {
  60192. source: "./media/characters/reiku/tail-bottom.svg"
  60193. }
  60194. },
  60195. foot: {
  60196. height: math.unit(2.6, "feet"),
  60197. name: "Foot",
  60198. image: {
  60199. source: "./media/characters/reiku/foot.svg"
  60200. }
  60201. },
  60202. footCurled: {
  60203. height: math.unit(2.3, "feet"),
  60204. name: "Foot (Curled)",
  60205. image: {
  60206. source: "./media/characters/reiku/foot-curled.svg"
  60207. }
  60208. },
  60209. footSide: {
  60210. height: math.unit(1.26, "feet"),
  60211. name: "Foot (Side)",
  60212. image: {
  60213. source: "./media/characters/reiku/foot-side.svg"
  60214. }
  60215. },
  60216. },
  60217. [
  60218. {
  60219. name: "Normal",
  60220. height: math.unit(6 + 2/12, "feet"),
  60221. default: true
  60222. },
  60223. ]
  60224. ))
  60225. characterMakers.push(() => makeCharacter(
  60226. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60227. {
  60228. front: {
  60229. height: math.unit(7, "feet"),
  60230. weight: math.unit(500, "kg"),
  60231. name: "Front",
  60232. image: {
  60233. source: "./media/characters/cialda/front.svg",
  60234. extra: 912/745,
  60235. bottom: 55/967
  60236. }
  60237. },
  60238. },
  60239. [
  60240. {
  60241. name: "Normal",
  60242. height: math.unit(7, "feet"),
  60243. default: true
  60244. },
  60245. ]
  60246. ))
  60247. characterMakers.push(() => makeCharacter(
  60248. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60249. {
  60250. side: {
  60251. height: math.unit(6, "feet"),
  60252. weight: math.unit(600, "lb"),
  60253. preyCapacity: math.unit(25, "liters"),
  60254. name: "Side",
  60255. image: {
  60256. source: "./media/characters/darkkin/side.svg",
  60257. extra: 1597/1447,
  60258. bottom: 101/1698
  60259. }
  60260. },
  60261. },
  60262. [
  60263. {
  60264. name: "Canon Height",
  60265. height: math.unit(568, "feet"),
  60266. default: true
  60267. },
  60268. ]
  60269. ))
  60270. characterMakers.push(() => makeCharacter(
  60271. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60272. {
  60273. front: {
  60274. height: math.unit(6, "feet"),
  60275. weight: math.unit(1500, "lb"),
  60276. preyCapacity: math.unit(3, "people"),
  60277. name: "Front",
  60278. image: {
  60279. source: "./media/characters/livnia/front.svg",
  60280. extra: 934/932,
  60281. bottom: 83/1017
  60282. }
  60283. },
  60284. back: {
  60285. height: math.unit(6, "feet"),
  60286. weight: math.unit(1500, "lb"),
  60287. preyCapacity: math.unit(3, "people"),
  60288. name: "Back",
  60289. image: {
  60290. source: "./media/characters/livnia/back.svg",
  60291. extra: 916/915,
  60292. bottom: 58/974
  60293. }
  60294. },
  60295. head: {
  60296. height: math.unit(1.53, "feet"),
  60297. name: "Head",
  60298. image: {
  60299. source: "./media/characters/livnia/head.svg"
  60300. }
  60301. },
  60302. maw: {
  60303. height: math.unit(0.78, "feet"),
  60304. name: "Maw",
  60305. image: {
  60306. source: "./media/characters/livnia/maw.svg"
  60307. }
  60308. },
  60309. genitals: {
  60310. height: math.unit(0.35, "feet"),
  60311. name: "Genitals",
  60312. image: {
  60313. source: "./media/characters/livnia/genitals.svg"
  60314. }
  60315. },
  60316. },
  60317. [
  60318. {
  60319. name: "Normal",
  60320. height: math.unit(1000, "feet"),
  60321. default: true
  60322. },
  60323. ]
  60324. ))
  60325. characterMakers.push(() => makeCharacter(
  60326. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60327. {
  60328. front: {
  60329. height: math.unit(4, "feet"),
  60330. weight: math.unit(73, "lb"),
  60331. name: "Front",
  60332. image: {
  60333. source: "./media/characters/hayaku/front.svg",
  60334. extra: 1011/888,
  60335. bottom: 33/1044
  60336. }
  60337. },
  60338. back: {
  60339. height: math.unit(4, "feet"),
  60340. weight: math.unit(73, "lb"),
  60341. name: "Back",
  60342. image: {
  60343. source: "./media/characters/hayaku/back.svg",
  60344. extra: 1040/930,
  60345. bottom: 20/1060
  60346. }
  60347. },
  60348. },
  60349. [
  60350. {
  60351. name: "Normal",
  60352. height: math.unit(4, "feet"),
  60353. default: true
  60354. },
  60355. ]
  60356. ))
  60357. characterMakers.push(() => makeCharacter(
  60358. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60359. {
  60360. front: {
  60361. height: math.unit(6 + 7/12, "feet"),
  60362. weight: math.unit(300, "lb"),
  60363. name: "Front",
  60364. image: {
  60365. source: "./media/characters/athena-bryzant/front.svg",
  60366. extra: 870/835,
  60367. bottom: 33/903
  60368. }
  60369. },
  60370. back: {
  60371. height: math.unit(6 + 7/12, "feet"),
  60372. weight: math.unit(300, "lb"),
  60373. name: "Back",
  60374. image: {
  60375. source: "./media/characters/athena-bryzant/back.svg",
  60376. extra: 858/823,
  60377. bottom: 30/888
  60378. }
  60379. },
  60380. head: {
  60381. height: math.unit(2.38, "feet"),
  60382. name: "Head",
  60383. image: {
  60384. source: "./media/characters/athena-bryzant/head.svg"
  60385. }
  60386. },
  60387. wings: {
  60388. height: math.unit(2.85, "feet"),
  60389. name: "Wings",
  60390. image: {
  60391. source: "./media/characters/athena-bryzant/wings.svg"
  60392. }
  60393. },
  60394. },
  60395. [
  60396. {
  60397. name: "Normal",
  60398. height: math.unit(6 + 7/12, "feet"),
  60399. default: true
  60400. },
  60401. {
  60402. name: "Big",
  60403. height: math.unit(8, "feet")
  60404. },
  60405. {
  60406. name: "Very Big",
  60407. height: math.unit(11, "feet")
  60408. },
  60409. ]
  60410. ))
  60411. characterMakers.push(() => makeCharacter(
  60412. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60413. {
  60414. side: {
  60415. height: math.unit(3, "meters"),
  60416. weight: math.unit(7500, "kg"),
  60417. preyCapacity: math.unit(1e12, "people"),
  60418. name: "Side",
  60419. image: {
  60420. source: "./media/characters/zel-kesh/side.svg",
  60421. extra: 910/407,
  60422. bottom: 147/1057
  60423. }
  60424. },
  60425. },
  60426. [
  60427. {
  60428. name: "Normal",
  60429. height: math.unit(3, "meters"),
  60430. default: true
  60431. },
  60432. ]
  60433. ))
  60434. characterMakers.push(() => makeCharacter(
  60435. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60436. {
  60437. front: {
  60438. height: math.unit(2, "meters"),
  60439. weight: math.unit(95, "kg"),
  60440. name: "Front",
  60441. image: {
  60442. source: "./media/characters/kane-fox/front.svg",
  60443. extra: 945/888,
  60444. bottom: 27/972
  60445. }
  60446. },
  60447. back: {
  60448. height: math.unit(2, "meters"),
  60449. weight: math.unit(95, "kg"),
  60450. name: "Back",
  60451. image: {
  60452. source: "./media/characters/kane-fox/back.svg",
  60453. extra: 959/914,
  60454. bottom: 15/974
  60455. }
  60456. },
  60457. frontLewd: {
  60458. height: math.unit(2, "meters"),
  60459. weight: math.unit(95, "kg"),
  60460. name: "Front (Lewd)",
  60461. image: {
  60462. source: "./media/characters/kane-fox/front-lewd.svg",
  60463. extra: 945/888,
  60464. bottom: 27/972
  60465. }
  60466. },
  60467. },
  60468. [
  60469. {
  60470. name: "Home Size",
  60471. height: math.unit(2, "meters"),
  60472. default: true
  60473. },
  60474. {
  60475. name: "Macro",
  60476. height: math.unit(200, "meters")
  60477. },
  60478. {
  60479. name: "Small Mega",
  60480. height: math.unit(3, "km")
  60481. },
  60482. {
  60483. name: "Mega",
  60484. height: math.unit(50, "km")
  60485. },
  60486. {
  60487. name: "Giga",
  60488. height: math.unit(200, "km")
  60489. },
  60490. {
  60491. name: "Giga+",
  60492. height: math.unit(2500, "km")
  60493. },
  60494. {
  60495. name: "Terra",
  60496. height: math.unit(70000, "km")
  60497. },
  60498. {
  60499. name: "Terra+",
  60500. height: math.unit(150000, "km")
  60501. },
  60502. {
  60503. name: "Terra++",
  60504. height: math.unit(400000, "km")
  60505. },
  60506. ]
  60507. ))
  60508. characterMakers.push(() => makeCharacter(
  60509. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60510. {
  60511. otter_front: {
  60512. height: math.unit(1.8, "meters"),
  60513. weight: math.unit(90, "kg"),
  60514. name: "Front",
  60515. image: {
  60516. source: "./media/characters/ayranus/otter-front.svg",
  60517. extra: 468/452,
  60518. bottom: 43/511
  60519. },
  60520. form: "otter",
  60521. },
  60522. otter_frontLewd: {
  60523. height: math.unit(1.8, "meters"),
  60524. weight: math.unit(90, "kg"),
  60525. name: "Front (Lewd)",
  60526. image: {
  60527. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60528. extra: 468/452,
  60529. bottom: 43/511
  60530. },
  60531. form: "otter",
  60532. },
  60533. lionbat_front: {
  60534. height: math.unit(1.8, "meters"),
  60535. weight: math.unit(90, "kg"),
  60536. name: "Front (Lewd)",
  60537. image: {
  60538. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60539. extra: 797/740,
  60540. bottom: 78/875
  60541. },
  60542. form: "lionbat",
  60543. },
  60544. paw: {
  60545. height: math.unit(1.5, "feet"),
  60546. name: "Paw",
  60547. image: {
  60548. source: "./media/characters/ayranus/paw.svg"
  60549. },
  60550. },
  60551. },
  60552. [
  60553. {
  60554. name: "Incognito",
  60555. height: math.unit(1.8, "meters"),
  60556. allForms: true
  60557. },
  60558. {
  60559. name: "Macro",
  60560. height: math.unit(60, "meters"),
  60561. allForms: true
  60562. },
  60563. {
  60564. name: "Macro+",
  60565. height: math.unit(200, "meters"),
  60566. allForms: true
  60567. },
  60568. {
  60569. name: "Mega",
  60570. height: math.unit(35, "km"),
  60571. allForms: true
  60572. },
  60573. {
  60574. name: "Giga",
  60575. height: math.unit(220, "km"),
  60576. allForms: true
  60577. },
  60578. {
  60579. name: "Giga+",
  60580. height: math.unit(1500, "km"),
  60581. allForms: true
  60582. },
  60583. {
  60584. name: "Terra",
  60585. height: math.unit(13000, "km"),
  60586. allForms: true
  60587. },
  60588. {
  60589. name: "Terra+",
  60590. height: math.unit(500000, "km"),
  60591. allForms: true
  60592. },
  60593. {
  60594. name: "Galactic",
  60595. height: math.unit(486080, "parsecs"),
  60596. default: true,
  60597. allForms: true
  60598. },
  60599. ],
  60600. {
  60601. "otter": {
  60602. name: "Otter",
  60603. default: true
  60604. },
  60605. "lionbat": {
  60606. name: "Lionbat",
  60607. },
  60608. }
  60609. ))
  60610. characterMakers.push(() => makeCharacter(
  60611. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60612. {
  60613. front: {
  60614. height: math.unit(7 + 4/12, "feet"),
  60615. weight: math.unit(400, "lb"),
  60616. name: "Front",
  60617. image: {
  60618. source: "./media/characters/proxy/front.svg",
  60619. extra: 1605/1542,
  60620. bottom: 55/1660
  60621. }
  60622. },
  60623. side: {
  60624. height: math.unit(7 + 4/12, "feet"),
  60625. weight: math.unit(400, "lb"),
  60626. name: "Side",
  60627. image: {
  60628. source: "./media/characters/proxy/side.svg",
  60629. extra: 794/759,
  60630. bottom: 6/800
  60631. }
  60632. },
  60633. hand: {
  60634. height: math.unit(1.54, "feet"),
  60635. name: "Hand",
  60636. image: {
  60637. source: "./media/characters/proxy/hand.svg"
  60638. }
  60639. },
  60640. paw: {
  60641. height: math.unit(1.53, "feet"),
  60642. name: "Paw",
  60643. image: {
  60644. source: "./media/characters/proxy/paw.svg"
  60645. }
  60646. },
  60647. maw: {
  60648. height: math.unit(1.9, "feet"),
  60649. name: "Maw",
  60650. image: {
  60651. source: "./media/characters/proxy/maw.svg"
  60652. }
  60653. },
  60654. },
  60655. [
  60656. {
  60657. name: "Normal",
  60658. height: math.unit(7 + 4/12, "feet"),
  60659. default: true
  60660. },
  60661. ]
  60662. ))
  60663. characterMakers.push(() => makeCharacter(
  60664. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60665. {
  60666. front: {
  60667. height: math.unit(4, "meters"),
  60668. name: "Front",
  60669. image: {
  60670. source: "./media/characters/crocozilla/front.svg",
  60671. extra: 1790/1742,
  60672. bottom: 78/1868
  60673. }
  60674. },
  60675. },
  60676. [
  60677. {
  60678. name: "Normal",
  60679. height: math.unit(4, "meters"),
  60680. default: true
  60681. },
  60682. ]
  60683. ))
  60684. characterMakers.push(() => makeCharacter(
  60685. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60686. {
  60687. front: {
  60688. height: math.unit(1.8, "meters"),
  60689. weight: math.unit(120, "kg"),
  60690. name: "Front",
  60691. image: {
  60692. source: "./media/characters/kurz/front.svg",
  60693. extra: 1960/1824,
  60694. bottom: 41/2001
  60695. }
  60696. },
  60697. back: {
  60698. height: math.unit(1.8, "meters"),
  60699. weight: math.unit(120, "kg"),
  60700. name: "Back",
  60701. image: {
  60702. source: "./media/characters/kurz/back.svg",
  60703. extra: 1906/1787,
  60704. bottom: 60/1966
  60705. }
  60706. },
  60707. frontLewd: {
  60708. height: math.unit(1.8, "meters"),
  60709. weight: math.unit(120, "kg"),
  60710. name: "Front (Lewd)",
  60711. image: {
  60712. source: "./media/characters/kurz/front-lewd.svg",
  60713. extra: 1960/1824,
  60714. bottom: 41/2001
  60715. }
  60716. },
  60717. maw: {
  60718. height: math.unit(0.69, "meters"),
  60719. name: "Maw",
  60720. image: {
  60721. source: "./media/characters/kurz/maw.svg"
  60722. }
  60723. },
  60724. },
  60725. [
  60726. {
  60727. name: "Original Size",
  60728. height: math.unit(1.8, "meters")
  60729. },
  60730. {
  60731. name: "Incognito Size",
  60732. height: math.unit(2.4, "meters"),
  60733. default: true
  60734. },
  60735. {
  60736. name: "Macro",
  60737. height: math.unit(30, "meters")
  60738. },
  60739. {
  60740. name: "Macro+",
  60741. height: math.unit(250, "meters")
  60742. },
  60743. {
  60744. name: "Mega",
  60745. height: math.unit(2, "km")
  60746. },
  60747. {
  60748. name: "Mega+",
  60749. height: math.unit(35, "km")
  60750. },
  60751. {
  60752. name: "Mega++",
  60753. height: math.unit(75, "km")
  60754. },
  60755. {
  60756. name: "Giga",
  60757. height: math.unit(250, "km")
  60758. },
  60759. {
  60760. name: "Terra",
  60761. height: math.unit(15000, "km")
  60762. },
  60763. {
  60764. name: "Terra+",
  60765. height: math.unit(2250000, "km")
  60766. },
  60767. ]
  60768. ))
  60769. characterMakers.push(() => makeCharacter(
  60770. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60771. {
  60772. front: {
  60773. height: math.unit(16 + 3/12, "feet"),
  60774. weight: math.unit(3575, "lb"),
  60775. name: "Front",
  60776. image: {
  60777. source: "./media/characters/nikita/front.svg",
  60778. extra: 1064/955,
  60779. bottom: 47/1111
  60780. }
  60781. },
  60782. },
  60783. [
  60784. {
  60785. name: "Normal",
  60786. height: math.unit(16 + 3/12, "feet"),
  60787. default: true
  60788. },
  60789. {
  60790. name: "Big",
  60791. height: math.unit(21, "feet")
  60792. },
  60793. {
  60794. name: "Biggest",
  60795. height: math.unit(50, "feet")
  60796. },
  60797. ]
  60798. ))
  60799. characterMakers.push(() => makeCharacter(
  60800. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60801. {
  60802. front: {
  60803. height: math.unit(1.92, "m"),
  60804. weight: math.unit(76, "kg"),
  60805. name: "Front",
  60806. image: {
  60807. source: "./media/characters/kyara/front.svg",
  60808. extra: 1550/1438,
  60809. bottom: 139/1689
  60810. }
  60811. },
  60812. back: {
  60813. height: math.unit(1.92, "m"),
  60814. weight: math.unit(76, "kg"),
  60815. name: "Back",
  60816. image: {
  60817. source: "./media/characters/kyara/back.svg",
  60818. extra: 1523/1427,
  60819. bottom: 83/1606
  60820. }
  60821. },
  60822. head: {
  60823. height: math.unit(1.22, "feet"),
  60824. name: "Head",
  60825. image: {
  60826. source: "./media/characters/kyara/head.svg"
  60827. }
  60828. },
  60829. maw: {
  60830. height: math.unit(0.73, "feet"),
  60831. name: "Maw",
  60832. image: {
  60833. source: "./media/characters/kyara/maw.svg"
  60834. }
  60835. },
  60836. paws: {
  60837. height: math.unit(0.95, "feet"),
  60838. name: "Paws",
  60839. image: {
  60840. source: "./media/characters/kyara/paws.svg"
  60841. }
  60842. },
  60843. },
  60844. [
  60845. {
  60846. name: "Normal",
  60847. height: math.unit(1.92, "meters"),
  60848. default: true
  60849. },
  60850. {
  60851. name: "Mini Macro",
  60852. height: math.unit(192, "meters")
  60853. },
  60854. {
  60855. name: "Macro",
  60856. height: math.unit(480, "meters")
  60857. },
  60858. {
  60859. name: "Mega Macro",
  60860. height: math.unit(1440, "meters")
  60861. },
  60862. ]
  60863. ))
  60864. characterMakers.push(() => makeCharacter(
  60865. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60866. {
  60867. front: {
  60868. height: math.unit(6, "feet"),
  60869. weight: math.unit(160, "lbs"),
  60870. preyCapacity: math.unit(0.05, "people"),
  60871. name: "Front",
  60872. image: {
  60873. source: "./media/characters/layla-amari/front.svg",
  60874. extra: 1922/1723,
  60875. bottom: 90/2012
  60876. }
  60877. },
  60878. back: {
  60879. height: math.unit(6, "feet"),
  60880. weight: math.unit(160, "lbs"),
  60881. preyCapacity: math.unit(0.05, "people"),
  60882. name: "Back",
  60883. image: {
  60884. source: "./media/characters/layla-amari/back.svg",
  60885. extra: 1917/1718,
  60886. bottom: 50/1967
  60887. }
  60888. },
  60889. frontDressed: {
  60890. height: math.unit(6, "feet"),
  60891. weight: math.unit(160, "lbs"),
  60892. preyCapacity: math.unit(0.05, "people"),
  60893. name: "Front (Dressed)",
  60894. image: {
  60895. source: "./media/characters/layla-amari/front-dressed.svg",
  60896. extra: 1922/1723,
  60897. bottom: 90/2012
  60898. }
  60899. },
  60900. face: {
  60901. height: math.unit(0.93, "feet"),
  60902. name: "Face",
  60903. image: {
  60904. source: "./media/characters/layla-amari/face.svg"
  60905. }
  60906. },
  60907. hand: {
  60908. height: math.unit(0.66 , "feet"),
  60909. name: "Hand",
  60910. image: {
  60911. source: "./media/characters/layla-amari/hand.svg"
  60912. }
  60913. },
  60914. foot: {
  60915. height: math.unit(1, "feet"),
  60916. name: "Foot",
  60917. image: {
  60918. source: "./media/characters/layla-amari/foot.svg"
  60919. }
  60920. },
  60921. necklace: {
  60922. height: math.unit(0.32, "feet"),
  60923. name: "Necklace",
  60924. image: {
  60925. source: "./media/characters/layla-amari/necklace.svg"
  60926. }
  60927. },
  60928. nipple: {
  60929. height: math.unit(0.2, "feet"),
  60930. name: "Nipple",
  60931. image: {
  60932. source: "./media/characters/layla-amari/nipple.svg"
  60933. }
  60934. },
  60935. slit: {
  60936. height: math.unit(0.26, "feet"),
  60937. name: "Slit",
  60938. image: {
  60939. source: "./media/characters/layla-amari/slit.svg"
  60940. }
  60941. },
  60942. },
  60943. [
  60944. {
  60945. name: "Natural",
  60946. height: math.unit(825, "feet"),
  60947. default: true
  60948. },
  60949. {
  60950. name: "Enhanced",
  60951. height: math.unit(8250, "feet")
  60952. },
  60953. {
  60954. name: "Apparent Size",
  60955. height: math.unit(9.04363e+8, "meters")
  60956. },
  60957. ]
  60958. ))
  60959. characterMakers.push(() => makeCharacter(
  60960. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60961. {
  60962. front: {
  60963. height: math.unit(1.3, "meters"),
  60964. name: "Front",
  60965. image: {
  60966. source: "./media/characters/percy/front.svg",
  60967. extra: 1444/1289,
  60968. bottom: 54/1498
  60969. }
  60970. },
  60971. },
  60972. [
  60973. {
  60974. name: "Normal",
  60975. height: math.unit(1.3, "meters"),
  60976. default: true
  60977. },
  60978. ]
  60979. ))
  60980. characterMakers.push(() => makeCharacter(
  60981. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60982. {
  60983. side: {
  60984. height: math.unit(10, "meters"),
  60985. name: "Side",
  60986. image: {
  60987. source: "./media/characters/grev/side.svg",
  60988. extra: 653/266,
  60989. bottom: 77/730
  60990. }
  60991. },
  60992. head: {
  60993. height: math.unit(16.2, "m"),
  60994. name: "Head",
  60995. image: {
  60996. source: "./media/characters/grev/head.svg"
  60997. }
  60998. },
  60999. dick: {
  61000. height: math.unit(2.8135932034, "m"),
  61001. name: "Dick",
  61002. image: {
  61003. source: "./media/characters/grev/dick.svg"
  61004. }
  61005. },
  61006. },
  61007. [
  61008. {
  61009. name: "Friend-Sized",
  61010. height: math.unit(80, "cm")
  61011. },
  61012. {
  61013. name: "Normal",
  61014. height: math.unit(10, "meters"),
  61015. default: true
  61016. },
  61017. {
  61018. name: "Macro",
  61019. height: math.unit(200, "meters")
  61020. },
  61021. ]
  61022. ))
  61023. characterMakers.push(() => makeCharacter(
  61024. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61025. {
  61026. front: {
  61027. height: math.unit(19.75, "feet"),
  61028. weight: math.unit(20000, "lb"),
  61029. name: "Front",
  61030. image: {
  61031. source: "./media/characters/azuuca/front.svg",
  61032. extra: 1593/1511,
  61033. bottom: 55/1648
  61034. }
  61035. },
  61036. },
  61037. [
  61038. {
  61039. name: "Normal",
  61040. height: math.unit(19.75, "feet"),
  61041. default: true
  61042. },
  61043. ]
  61044. ))
  61045. characterMakers.push(() => makeCharacter(
  61046. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61047. {
  61048. front: {
  61049. height: math.unit(15, "feet"),
  61050. weight: math.unit(1500, "lb"),
  61051. name: "Front",
  61052. image: {
  61053. source: "./media/characters/valuria/front.svg",
  61054. extra: 1588/1486,
  61055. bottom: 31/1619
  61056. }
  61057. },
  61058. },
  61059. [
  61060. {
  61061. name: "Normal",
  61062. height: math.unit(15, "feet"),
  61063. default: true
  61064. },
  61065. {
  61066. name: "Small",
  61067. height: math.unit(500, "feet")
  61068. },
  61069. {
  61070. name: "Macro",
  61071. height: math.unit(4000, "feet")
  61072. },
  61073. {
  61074. name: "Mega Macro",
  61075. height: math.unit(2000, "miles")
  61076. },
  61077. {
  61078. name: "Giga Macro",
  61079. height: math.unit(3e6, "miles")
  61080. },
  61081. ]
  61082. ))
  61083. characterMakers.push(() => makeCharacter(
  61084. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61085. {
  61086. front: {
  61087. height: math.unit(3500, "solarradii"),
  61088. name: "Front",
  61089. image: {
  61090. source: "./media/characters/terigaia/front.svg",
  61091. extra: 1531/1451,
  61092. bottom: 98/1629
  61093. }
  61094. },
  61095. },
  61096. [
  61097. {
  61098. name: "Normal",
  61099. height: math.unit(3500, "solarradii"),
  61100. default: true
  61101. },
  61102. ]
  61103. ))
  61104. characterMakers.push(() => makeCharacter(
  61105. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61106. {
  61107. front: {
  61108. height: math.unit(9.34, "feet"),
  61109. weight: math.unit(600, "lb"),
  61110. name: "Front",
  61111. image: {
  61112. source: "./media/characters/blair-blaziken/front.svg",
  61113. extra: 1557/1462,
  61114. bottom: 55/1612
  61115. }
  61116. },
  61117. },
  61118. [
  61119. {
  61120. name: "Normal",
  61121. height: math.unit(9.34, "feet"),
  61122. default: true
  61123. },
  61124. ]
  61125. ))
  61126. characterMakers.push(() => makeCharacter(
  61127. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61128. {
  61129. pistrogre_front: {
  61130. height: math.unit(10, "feet"),
  61131. weight: math.unit(10, "tons"),
  61132. name: "Front",
  61133. image: {
  61134. source: "./media/characters/braxia/pistrogre-front.svg",
  61135. extra: 1531/1334,
  61136. bottom: 114/1645
  61137. },
  61138. form: "pistrogre",
  61139. default: true
  61140. },
  61141. human_front: {
  61142. height: math.unit(10, "feet"),
  61143. weight: math.unit(10, "tons"),
  61144. name: "Front",
  61145. image: {
  61146. source: "./media/characters/braxia/human-front.svg",
  61147. extra: 1574/1501,
  61148. bottom: 37/1611
  61149. },
  61150. form: "human",
  61151. default: true
  61152. },
  61153. },
  61154. [
  61155. {
  61156. name: "Normal",
  61157. height: math.unit(10, "feet"),
  61158. default: true,
  61159. allForms: true
  61160. },
  61161. {
  61162. name: "Macro",
  61163. height: math.unit(1000, "feet"),
  61164. allForms: true
  61165. },
  61166. {
  61167. name: "Mega Macro",
  61168. height: math.unit(100, "miles"),
  61169. allForms: true
  61170. },
  61171. {
  61172. name: "Cosmic",
  61173. height: math.unit(1000000, "lightyears"),
  61174. allForms: true
  61175. },
  61176. {
  61177. name: "ϐѮԆԬӁꭍϞԢ",
  61178. height: math.unit(1000, "multiverses"),
  61179. allForms: true
  61180. },
  61181. ],
  61182. {
  61183. "pistrogre": {
  61184. name: "Pistrogre",
  61185. default: true
  61186. },
  61187. "human": {
  61188. name: "Human",
  61189. },
  61190. }
  61191. ))
  61192. characterMakers.push(() => makeCharacter(
  61193. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61194. {
  61195. front: {
  61196. height: math.unit(6 + 1/12, "feet"),
  61197. weight: math.unit(280, "lb"),
  61198. name: "Front",
  61199. image: {
  61200. source: "./media/characters/kiriga-yato/front.svg",
  61201. extra: 445/394,
  61202. bottom: 11/456
  61203. }
  61204. },
  61205. },
  61206. [
  61207. {
  61208. name: "Descended",
  61209. height: math.unit(3, "feet")
  61210. },
  61211. {
  61212. name: "Average",
  61213. height: math.unit(6 + 1/12, "feet"),
  61214. default: true
  61215. },
  61216. {
  61217. name: "Ascended",
  61218. height: math.unit(9 + 2/12, "feet")
  61219. },
  61220. ]
  61221. ))
  61222. characterMakers.push(() => makeCharacter(
  61223. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61224. {
  61225. front: {
  61226. height: math.unit(6, "feet"),
  61227. weight: math.unit(150, "lb"),
  61228. name: "Front",
  61229. image: {
  61230. source: "./media/characters/kylie/front.svg",
  61231. extra: 1114/1046,
  61232. bottom: 65/1179
  61233. },
  61234. extraAttributes: {
  61235. "hoofSize": {
  61236. name: "Hoof Size",
  61237. power: 2,
  61238. type: "area",
  61239. base: math.unit(0.034, "m^2")
  61240. },
  61241. "footSize": {
  61242. name: "Foot Size",
  61243. power: 2,
  61244. type: "area",
  61245. base: math.unit(0.75, "m^2")
  61246. },
  61247. }
  61248. },
  61249. side: {
  61250. height: math.unit(6, "feet"),
  61251. weight: math.unit(150, "lb"),
  61252. name: "Side",
  61253. image: {
  61254. source: "./media/characters/kylie/side.svg",
  61255. extra: 1178/1110,
  61256. bottom: 21/1199
  61257. },
  61258. extraAttributes: {
  61259. "hoofSize": {
  61260. name: "Hoof Size",
  61261. power: 2,
  61262. type: "area",
  61263. base: math.unit(0.034, "m^2")
  61264. },
  61265. "footSize": {
  61266. name: "Foot Size",
  61267. power: 2,
  61268. type: "area",
  61269. base: math.unit(0.75, "m^2")
  61270. },
  61271. }
  61272. },
  61273. back: {
  61274. height: math.unit(6, "feet"),
  61275. weight: math.unit(150, "lb"),
  61276. name: "Back",
  61277. image: {
  61278. source: "./media/characters/kylie/back.svg",
  61279. extra: 1115/1047,
  61280. bottom: 66/1181
  61281. },
  61282. extraAttributes: {
  61283. "hoofSize": {
  61284. name: "Hoof Size",
  61285. power: 2,
  61286. type: "area",
  61287. base: math.unit(0.034, "m^2")
  61288. },
  61289. "footSize": {
  61290. name: "Foot Size",
  61291. power: 2,
  61292. type: "area",
  61293. base: math.unit(0.75, "m^2")
  61294. },
  61295. }
  61296. },
  61297. head: {
  61298. height: math.unit(1.85, "feet"),
  61299. name: "Head",
  61300. image: {
  61301. source: "./media/characters/kylie/head.svg"
  61302. }
  61303. },
  61304. },
  61305. [
  61306. {
  61307. name: "Normal",
  61308. height: math.unit(90, "meters"),
  61309. default: true
  61310. },
  61311. ]
  61312. ))
  61313. characterMakers.push(() => makeCharacter(
  61314. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61315. {
  61316. front: {
  61317. height: math.unit(245, "feet"),
  61318. weight: math.unit(400000, "lb"),
  61319. name: "Front",
  61320. image: {
  61321. source: "./media/characters/sabado/front.svg",
  61322. extra: 1309/1164,
  61323. bottom: 29/1338
  61324. }
  61325. },
  61326. },
  61327. [
  61328. {
  61329. name: "Normal",
  61330. height: math.unit(245, "feet"),
  61331. default: true
  61332. },
  61333. ]
  61334. ))
  61335. characterMakers.push(() => makeCharacter(
  61336. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61337. {
  61338. shark_front: {
  61339. height: math.unit(2, "meters"),
  61340. weight: math.unit(200, "kg"),
  61341. name: "Front",
  61342. image: {
  61343. source: "./media/characters/zechal/shark-front.svg",
  61344. extra: 969/925,
  61345. bottom: 74/1043
  61346. },
  61347. form: "shark",
  61348. },
  61349. shark_back: {
  61350. height: math.unit(2, "meters"),
  61351. weight: math.unit(200, "kg"),
  61352. name: "Back",
  61353. image: {
  61354. source: "./media/characters/zechal/shark-back.svg",
  61355. extra: 994/949,
  61356. bottom: 176/1170
  61357. },
  61358. form: "shark",
  61359. },
  61360. shark_frontLewd: {
  61361. height: math.unit(2, "meters"),
  61362. weight: math.unit(200, "kg"),
  61363. name: "Front (Lewd)",
  61364. image: {
  61365. source: "./media/characters/zechal/shark-front-lewd.svg",
  61366. extra: 969/925,
  61367. bottom: 74/1043
  61368. },
  61369. form: "shark",
  61370. },
  61371. shark_side: {
  61372. height: math.unit(1.56, "meters"),
  61373. weight: math.unit(200, "kg"),
  61374. name: "Side",
  61375. image: {
  61376. source: "./media/characters/zechal/shark-side.svg"
  61377. },
  61378. form: "shark",
  61379. },
  61380. dragon_front: {
  61381. height: math.unit(2, "meters"),
  61382. weight: math.unit(200, "kg"),
  61383. name: "Front",
  61384. image: {
  61385. source: "./media/characters/zechal/dragon-front.svg",
  61386. extra: 1041/925,
  61387. bottom: 74/1115
  61388. },
  61389. form: "dragon",
  61390. },
  61391. dragon_back: {
  61392. height: math.unit(2, "meters"),
  61393. weight: math.unit(200, "kg"),
  61394. name: "Back",
  61395. image: {
  61396. source: "./media/characters/zechal/dragon-back.svg",
  61397. extra: 1061/949,
  61398. bottom: 176/1237
  61399. },
  61400. form: "dragon",
  61401. },
  61402. dragon_frontLewd: {
  61403. height: math.unit(2, "meters"),
  61404. weight: math.unit(200, "kg"),
  61405. name: "Front (Lewd)",
  61406. image: {
  61407. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61408. extra: 1041/925,
  61409. bottom: 74/1115
  61410. },
  61411. form: "dragon",
  61412. },
  61413. dragon_side: {
  61414. height: math.unit(1.56, "meters"),
  61415. weight: math.unit(200, "kg"),
  61416. name: "Side",
  61417. image: {
  61418. source: "./media/characters/zechal/dragon-side.svg"
  61419. },
  61420. form: "dragon",
  61421. },
  61422. foot: {
  61423. height: math.unit(0.5, "meters"),
  61424. name: "Foot",
  61425. image: {
  61426. source: "./media/characters/zechal/foot.svg"
  61427. }
  61428. },
  61429. sheathFront: {
  61430. height: math.unit(0.45, "meters"),
  61431. name: "Sheath (Front)",
  61432. image: {
  61433. source: "./media/characters/zechal/sheath-front.svg"
  61434. }
  61435. },
  61436. sheathSide: {
  61437. height: math.unit(0.45, "meters"),
  61438. name: "Sheath (Side)",
  61439. image: {
  61440. source: "./media/characters/zechal/sheath-side.svg"
  61441. }
  61442. },
  61443. },
  61444. [
  61445. {
  61446. name: "Incognito",
  61447. height: math.unit(2, "meters"),
  61448. allForms: true
  61449. },
  61450. {
  61451. name: "Small Rampage",
  61452. height: math.unit(25, "meters"),
  61453. allForms: true
  61454. },
  61455. {
  61456. name: "Home Size",
  61457. height: math.unit(250, "meters"),
  61458. allForms: true,
  61459. default: true
  61460. },
  61461. {
  61462. name: "Macro+",
  61463. height: math.unit(700, "meters"),
  61464. allForms: true
  61465. },
  61466. {
  61467. name: "Small Mega",
  61468. height: math.unit(3, "km"),
  61469. allForms: true
  61470. },
  61471. {
  61472. name: "Mega",
  61473. height: math.unit(15, "km"),
  61474. allForms: true
  61475. },
  61476. {
  61477. name: "Giga",
  61478. height: math.unit(300, "km"),
  61479. allForms: true
  61480. },
  61481. {
  61482. name: "Giga+",
  61483. height: math.unit(1750, "km"),
  61484. allForms: true
  61485. },
  61486. {
  61487. name: "Continental",
  61488. height: math.unit(5000, "km"),
  61489. allForms: true
  61490. },
  61491. {
  61492. name: "Terra",
  61493. height: math.unit(20000, "km"),
  61494. allForms: true
  61495. },
  61496. {
  61497. name: "Terra+",
  61498. height: math.unit(300000, "km"),
  61499. allForms: true
  61500. },
  61501. {
  61502. name: "Solar",
  61503. height: math.unit(40000000, "km"),
  61504. allForms: true
  61505. },
  61506. {
  61507. name: "Galactic",
  61508. height: math.unit(810133, "parsecs"),
  61509. allForms: true
  61510. },
  61511. {
  61512. name: "Universal",
  61513. height: math.unit(25, "universes"),
  61514. allForms: true
  61515. },
  61516. ],
  61517. {
  61518. "shark": {
  61519. name: "Shark",
  61520. default: true
  61521. },
  61522. "dragon": {
  61523. name: "Dragon",
  61524. },
  61525. }
  61526. ))
  61527. characterMakers.push(() => makeCharacter(
  61528. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61529. {
  61530. front: {
  61531. height: math.unit(2.2, "meters"),
  61532. weight: math.unit(150, "kg"),
  61533. name: "Front",
  61534. image: {
  61535. source: "./media/characters/sergis/front.svg",
  61536. extra: 1314/1312,
  61537. bottom: 112/1426
  61538. }
  61539. },
  61540. back: {
  61541. height: math.unit(2.2, "meters"),
  61542. weight: math.unit(150, "kg"),
  61543. name: "Back",
  61544. image: {
  61545. source: "./media/characters/sergis/back.svg",
  61546. extra: 1335/1333,
  61547. bottom: 19/1354
  61548. }
  61549. },
  61550. frontLewd: {
  61551. height: math.unit(2.2, "meters"),
  61552. weight: math.unit(150, "kg"),
  61553. name: "Front (Lewd)",
  61554. image: {
  61555. source: "./media/characters/sergis/front-lewd.svg",
  61556. extra: 1314/1312,
  61557. bottom: 112/1426
  61558. }
  61559. },
  61560. frontDressed: {
  61561. height: math.unit(2.2, "meters"),
  61562. weight: math.unit(150, "kg"),
  61563. name: "Front (Dressed)",
  61564. image: {
  61565. source: "./media/characters/sergis/front-dressed.svg",
  61566. extra: 1330/1328,
  61567. bottom: 95/1425
  61568. }
  61569. },
  61570. frontDressedLewd: {
  61571. height: math.unit(2.2, "meters"),
  61572. weight: math.unit(150, "kg"),
  61573. name: "Front (Dressed, Lewd)",
  61574. image: {
  61575. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61576. extra: 1330/1328,
  61577. bottom: 95/1425
  61578. }
  61579. },
  61580. maw: {
  61581. height: math.unit(0.48, "meters"),
  61582. name: "Maw",
  61583. image: {
  61584. source: "./media/characters/sergis/maw.svg"
  61585. }
  61586. },
  61587. sheath: {
  61588. height: math.unit(0.38, "meters"),
  61589. name: "Sheath",
  61590. image: {
  61591. source: "./media/characters/sergis/sheath.svg"
  61592. }
  61593. },
  61594. },
  61595. [
  61596. {
  61597. name: "Incognito Size",
  61598. height: math.unit(2.2, "meters")
  61599. },
  61600. {
  61601. name: "Small Macro",
  61602. height: math.unit(40, "meters")
  61603. },
  61604. {
  61605. name: "Macro",
  61606. height: math.unit(150, "meters")
  61607. },
  61608. {
  61609. name: "Macro+",
  61610. height: math.unit(300, "meters")
  61611. },
  61612. {
  61613. name: "Mega",
  61614. height: math.unit(2.5, "km")
  61615. },
  61616. {
  61617. name: "Mega+",
  61618. height: math.unit(30, "km")
  61619. },
  61620. {
  61621. name: "Home Size",
  61622. height: math.unit(300, "km"),
  61623. default: true
  61624. },
  61625. {
  61626. name: "Giga+",
  61627. height: math.unit(1000, "km")
  61628. },
  61629. {
  61630. name: "Giga++",
  61631. height: math.unit(6000, "km")
  61632. },
  61633. {
  61634. name: "Terra",
  61635. height: math.unit(70000, "km")
  61636. },
  61637. {
  61638. name: "Terra+",
  61639. height: math.unit(200000, "km")
  61640. },
  61641. {
  61642. name: "Galactic",
  61643. height: math.unit(634200, "lightyears")
  61644. },
  61645. ]
  61646. ))
  61647. characterMakers.push(() => makeCharacter(
  61648. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61649. {
  61650. standard: {
  61651. height: math.unit(1 + 5/12, "feet"),
  61652. name: "Standard",
  61653. image: {
  61654. source: "./media/characters/spade/standard.svg",
  61655. extra: 1794/1703,
  61656. bottom: 115/1909
  61657. }
  61658. },
  61659. disguised: {
  61660. height: math.unit(1 + 5/12, "feet"),
  61661. name: "Disguised",
  61662. image: {
  61663. source: "./media/characters/spade/disguised.svg",
  61664. extra: 1794/1700,
  61665. bottom: 98/1892
  61666. }
  61667. },
  61668. },
  61669. [
  61670. {
  61671. name: "Normal",
  61672. height: math.unit(1 + 5/12, "feet"),
  61673. default: true
  61674. },
  61675. ]
  61676. ))
  61677. characterMakers.push(() => makeCharacter(
  61678. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61679. {
  61680. frontNsfw: {
  61681. height: math.unit(5, "meters"),
  61682. weight: math.unit(2000, "kg"),
  61683. preyCapacity: math.unit(5, "people"),
  61684. name: "Front (NSFW)",
  61685. image: {
  61686. source: "./media/characters/zeanlain/front-nsfw.svg",
  61687. extra: 1087/938,
  61688. bottom: 93/1180
  61689. },
  61690. extraAttributes: {
  61691. "wingspan": {
  61692. name: "Wingspan",
  61693. power: 1,
  61694. type: "length",
  61695. base: math.unit(10, "meters")
  61696. },
  61697. "footSize": {
  61698. name: "Foot Size",
  61699. power: 1,
  61700. type: "length",
  61701. base: math.unit(0.68, "meters")
  61702. },
  61703. "cockLength": {
  61704. name: "Cock Length",
  61705. power: 1,
  61706. type: "length",
  61707. base: math.unit(1.69, "meters")
  61708. },
  61709. "ballVolume": {
  61710. name: "Ball Volume",
  61711. power: 3,
  61712. type: "volume",
  61713. base: math.unit(0.028, "m^3")
  61714. },
  61715. }
  61716. },
  61717. front: {
  61718. height: math.unit(5, "meters"),
  61719. weight: math.unit(2000, "kg"),
  61720. preyCapacity: math.unit(3, "people"),
  61721. name: "Front",
  61722. image: {
  61723. source: "./media/characters/zeanlain/front.svg",
  61724. extra: 1087/938,
  61725. bottom: 93/1180
  61726. },
  61727. extraAttributes: {
  61728. "wingspan": {
  61729. name: "Wingspan",
  61730. power: 1,
  61731. type: "length",
  61732. base: math.unit(10, "meters")
  61733. },
  61734. "footSize": {
  61735. name: "Foot Size",
  61736. power: 1,
  61737. type: "length",
  61738. base: math.unit(0.68, "meters")
  61739. },
  61740. }
  61741. },
  61742. },
  61743. [
  61744. {
  61745. name: "Normal",
  61746. height: math.unit(5, "meters"),
  61747. default: true
  61748. },
  61749. ]
  61750. ))
  61751. characterMakers.push(() => makeCharacter(
  61752. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61753. {
  61754. front: {
  61755. height: math.unit(10, "meters"),
  61756. weight: math.unit(250000, "kg"),
  61757. name: "Front",
  61758. image: {
  61759. source: "./media/characters/airamis/front.svg",
  61760. extra: 865/835,
  61761. bottom: 13/878
  61762. }
  61763. },
  61764. },
  61765. [
  61766. {
  61767. name: "Normal",
  61768. height: math.unit(10, "meters"),
  61769. default: true
  61770. },
  61771. ]
  61772. ))
  61773. characterMakers.push(() => makeCharacter(
  61774. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61775. {
  61776. front: {
  61777. height: math.unit(3 + 3/12, "feet"),
  61778. weight: math.unit(75, "lb"),
  61779. name: "Front",
  61780. image: {
  61781. source: "./media/characters/corra-tourmaline/front.svg",
  61782. extra: 1037/864,
  61783. bottom: 39/1076
  61784. }
  61785. },
  61786. back: {
  61787. height: math.unit(3 + 3/12, "feet"),
  61788. weight: math.unit(75, "lb"),
  61789. name: "Back",
  61790. image: {
  61791. source: "./media/characters/corra-tourmaline/back.svg",
  61792. extra: 1022/849,
  61793. bottom: 26/1048
  61794. }
  61795. },
  61796. dressed: {
  61797. height: math.unit(3 + 3/12, "feet"),
  61798. weight: math.unit(75, "lb"),
  61799. name: "Dressed",
  61800. image: {
  61801. source: "./media/characters/corra-tourmaline/dressed.svg",
  61802. extra: 1037/864,
  61803. bottom: 39/1076
  61804. }
  61805. },
  61806. beans: {
  61807. height: math.unit(0.37, "feet"),
  61808. name: "Beans",
  61809. image: {
  61810. source: "./media/characters/corra-tourmaline/beans.svg"
  61811. }
  61812. },
  61813. },
  61814. [
  61815. {
  61816. name: "Normal",
  61817. height: math.unit(3 + 3/12, "feet"),
  61818. default: true
  61819. },
  61820. {
  61821. name: "Macro",
  61822. height: math.unit(32, "feet")
  61823. },
  61824. ]
  61825. ))
  61826. characterMakers.push(() => makeCharacter(
  61827. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61828. {
  61829. front: {
  61830. height: math.unit(6 + 2/12, "feet"),
  61831. weight: math.unit(203, "lb"),
  61832. name: "Front",
  61833. image: {
  61834. source: "./media/characters/maki-kawa/front.svg",
  61835. extra: 950/890,
  61836. bottom: 62/1012
  61837. }
  61838. },
  61839. back: {
  61840. height: math.unit(6 + 2/12, "feet"),
  61841. weight: math.unit(203, "lb"),
  61842. name: "Back",
  61843. image: {
  61844. source: "./media/characters/maki-kawa/back.svg",
  61845. extra: 953/878,
  61846. bottom: 49/1002
  61847. }
  61848. },
  61849. frontBarista: {
  61850. height: math.unit(6 + 2/12, "feet"),
  61851. weight: math.unit(203, "lb"),
  61852. name: "Front (Barista)",
  61853. image: {
  61854. source: "./media/characters/maki-kawa/front-barista.svg",
  61855. extra: 943/883,
  61856. bottom: 69/1012
  61857. }
  61858. },
  61859. backBarista: {
  61860. height: math.unit(6 + 2/12, "feet"),
  61861. weight: math.unit(203, "lb"),
  61862. name: "Back (Barista)",
  61863. image: {
  61864. source: "./media/characters/maki-kawa/back-barista.svg",
  61865. extra: 953/878,
  61866. bottom: 49/1002
  61867. }
  61868. },
  61869. frontWrestler: {
  61870. height: math.unit(6 + 2/12, "feet"),
  61871. weight: math.unit(203, "lb"),
  61872. name: "Front (Wrestler)",
  61873. image: {
  61874. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61875. extra: 950/890,
  61876. bottom: 62/1012
  61877. }
  61878. },
  61879. backWrestler: {
  61880. height: math.unit(6 + 2/12, "feet"),
  61881. weight: math.unit(203, "lb"),
  61882. name: "Back (Wrestler)",
  61883. image: {
  61884. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61885. extra: 953/878,
  61886. bottom: 49/1002
  61887. }
  61888. },
  61889. headFront: {
  61890. height: math.unit(1.64, "feet"),
  61891. name: "Head (Front)",
  61892. image: {
  61893. source: "./media/characters/maki-kawa/head-front.svg"
  61894. }
  61895. },
  61896. headSide: {
  61897. height: math.unit(1.59, "feet"),
  61898. name: "Head (Side)",
  61899. image: {
  61900. source: "./media/characters/maki-kawa/head-side.svg"
  61901. }
  61902. },
  61903. paw: {
  61904. height: math.unit(0.9, "feet"),
  61905. name: "Paw",
  61906. image: {
  61907. source: "./media/characters/maki-kawa/paw.svg"
  61908. }
  61909. },
  61910. },
  61911. [
  61912. {
  61913. name: "Normal",
  61914. height: math.unit(6 + 2/12, "feet"),
  61915. default: true
  61916. },
  61917. {
  61918. name: "Macro",
  61919. height: math.unit(617, "feet")
  61920. },
  61921. ]
  61922. ))
  61923. characterMakers.push(() => makeCharacter(
  61924. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61925. {
  61926. front: {
  61927. height: math.unit(10, "feet"),
  61928. weight: math.unit(1500, "lb"),
  61929. name: "Front",
  61930. image: {
  61931. source: "./media/characters/lennox/front.svg",
  61932. extra: 1623/1496,
  61933. bottom: 18/1641
  61934. }
  61935. },
  61936. back: {
  61937. height: math.unit(10, "feet"),
  61938. weight: math.unit(1500, "lb"),
  61939. name: "Back",
  61940. image: {
  61941. source: "./media/characters/lennox/back.svg",
  61942. extra: 1641/1481,
  61943. bottom: 13/1654
  61944. }
  61945. },
  61946. maw: {
  61947. height: math.unit(2.94, "feet"),
  61948. name: "Maw",
  61949. image: {
  61950. source: "./media/characters/lennox/maw.svg"
  61951. }
  61952. },
  61953. },
  61954. [
  61955. {
  61956. name: "Micro",
  61957. height: math.unit(1, "inch")
  61958. },
  61959. {
  61960. name: "Normal",
  61961. height: math.unit(10, "feet"),
  61962. default: true
  61963. },
  61964. {
  61965. name: "Macro",
  61966. height: math.unit(200, "feet")
  61967. },
  61968. ]
  61969. ))
  61970. //characters
  61971. function makeCharacters() {
  61972. const results = [];
  61973. characterMakers.forEach(character => {
  61974. results.push(character());
  61975. });
  61976. return results;
  61977. }