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.
 
 
 

63614 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. }
  2327. //species
  2328. function getSpeciesInfo(speciesList) {
  2329. let result = new Set();
  2330. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2331. result.add(entry)
  2332. });
  2333. return Array.from(result);
  2334. };
  2335. function getSpeciesInfoHelper(species) {
  2336. if (!speciesData[species]) {
  2337. console.warn(species + " doesn't exist");
  2338. return [];
  2339. }
  2340. if (speciesData[species].parents) {
  2341. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2342. } else {
  2343. return [species];
  2344. }
  2345. }
  2346. characterMakers.push(() => makeCharacter(
  2347. {
  2348. name: "Fen",
  2349. species: ["crux"],
  2350. description: {
  2351. title: "Bio",
  2352. text: "Very furry. Sheds on everything."
  2353. },
  2354. tags: [
  2355. "anthro",
  2356. "goo"
  2357. ]
  2358. },
  2359. {
  2360. front: {
  2361. height: math.unit(12, "feet"),
  2362. weight: math.unit(2400, "lb"),
  2363. preyCapacity: math.unit(1, "people"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/fen/front.svg",
  2367. extra: 1804/1562,
  2368. bottom: 205/2009
  2369. },
  2370. extraAttributes: {
  2371. pawSize: {
  2372. name: "Paw Size",
  2373. power: 2,
  2374. type: "area",
  2375. base: math.unit(0.35, "m^2")
  2376. }
  2377. }
  2378. },
  2379. diving: {
  2380. height: math.unit(4.9, "meters"),
  2381. weight: math.unit(2400, "lb"),
  2382. name: "Diving",
  2383. image: {
  2384. source: "./media/characters/fen/diving.svg"
  2385. }
  2386. },
  2387. sleeby: {
  2388. height: math.unit(3.45, "meters"),
  2389. weight: math.unit(2400, "lb"),
  2390. name: "Sleeby",
  2391. image: {
  2392. source: "./media/characters/fen/sleeby.svg"
  2393. }
  2394. },
  2395. goo: {
  2396. height: math.unit(12, "feet"),
  2397. weight: math.unit(3600, "lb"),
  2398. volume: math.unit(1000, "liters"),
  2399. preyCapacity: math.unit(6, "people"),
  2400. name: "Goo",
  2401. image: {
  2402. source: "./media/characters/fen/goo.svg",
  2403. extra: 1307/1071,
  2404. bottom: 134/1441
  2405. }
  2406. },
  2407. horror: {
  2408. height: math.unit(13.6, "feet"),
  2409. weight: math.unit(2400, "lb"),
  2410. preyCapacity: math.unit(1, "people"),
  2411. name: "Horror",
  2412. image: {
  2413. source: "./media/characters/fen/horror.svg",
  2414. extra: 893/797,
  2415. bottom: 0/893
  2416. }
  2417. },
  2418. gooNsfw: {
  2419. height: math.unit(12, "feet"),
  2420. weight: math.unit(3750, "lb"),
  2421. volume: math.unit(1000, "liters"),
  2422. preyCapacity: math.unit(6, "people"),
  2423. name: "Goo (NSFW)",
  2424. image: {
  2425. source: "./media/characters/fen/goo-nsfw.svg",
  2426. extra: 1875/1734,
  2427. bottom: 122/1997
  2428. }
  2429. },
  2430. maw: {
  2431. height: math.unit(5.03, "feet"),
  2432. name: "Maw",
  2433. image: {
  2434. source: "./media/characters/fen/maw.svg"
  2435. }
  2436. },
  2437. gooCeiling: {
  2438. height: math.unit(6.6, "feet"),
  2439. weight: math.unit(3000, "lb"),
  2440. volume: math.unit(1000, "liters"),
  2441. preyCapacity: math.unit(6, "people"),
  2442. name: "Maw (Goo)",
  2443. image: {
  2444. source: "./media/characters/fen/goo-maw.svg"
  2445. }
  2446. },
  2447. paw: {
  2448. height: math.unit(3.77, "feet"),
  2449. name: "Paw",
  2450. image: {
  2451. source: "./media/characters/fen/paw.svg"
  2452. },
  2453. extraAttributes: {
  2454. "toeSize": {
  2455. name: "Toe Size",
  2456. power: 2,
  2457. type: "area",
  2458. base: math.unit(0.02875, "m^2")
  2459. },
  2460. "pawSize": {
  2461. name: "Paw Size",
  2462. power: 2,
  2463. type: "area",
  2464. base: math.unit(0.378, "m^2")
  2465. },
  2466. }
  2467. },
  2468. tail: {
  2469. height: math.unit(12.1, "feet"),
  2470. name: "Tail",
  2471. image: {
  2472. source: "./media/characters/fen/tail.svg"
  2473. }
  2474. },
  2475. tailFull: {
  2476. height: math.unit(12.1, "feet"),
  2477. name: "Full Tail",
  2478. image: {
  2479. source: "./media/characters/fen/tail-full.svg"
  2480. }
  2481. },
  2482. back: {
  2483. height: math.unit(12, "feet"),
  2484. weight: math.unit(2400, "lb"),
  2485. name: "Back",
  2486. image: {
  2487. source: "./media/characters/fen/back.svg",
  2488. },
  2489. info: {
  2490. description: {
  2491. mode: "append",
  2492. text: "\n\nHe is not currently looking at you."
  2493. }
  2494. }
  2495. },
  2496. full: {
  2497. height: math.unit(1.85, "meter"),
  2498. weight: math.unit(3200, "lb"),
  2499. preyCapacity: math.unit(3, "people"),
  2500. name: "Full",
  2501. image: {
  2502. source: "./media/characters/fen/full.svg",
  2503. extra: 1133/859,
  2504. bottom: 145/1278
  2505. },
  2506. info: {
  2507. description: {
  2508. mode: "append",
  2509. text: "\n\nMunch."
  2510. }
  2511. }
  2512. },
  2513. gooLounging: {
  2514. height: math.unit(4.53, "feet"),
  2515. weight: math.unit(3000, "lb"),
  2516. preyCapacity: math.unit(6, "people"),
  2517. name: "Goo (Lounging)",
  2518. image: {
  2519. source: "./media/characters/fen/goo-lounging.svg",
  2520. bottom: 116 / 613
  2521. }
  2522. },
  2523. lounging: {
  2524. height: math.unit(10.52, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. name: "Lounging",
  2527. image: {
  2528. source: "./media/characters/fen/lounging.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Small",
  2535. height: math.unit(2.2428, "meter")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(12, "feet"),
  2540. default: true,
  2541. },
  2542. {
  2543. name: "Big",
  2544. height: math.unit(20, "feet")
  2545. },
  2546. {
  2547. name: "Minimacro",
  2548. height: math.unit(40, "feet"),
  2549. info: {
  2550. description: {
  2551. mode: "append",
  2552. text: "\n\nTOO DAMN BIG"
  2553. }
  2554. }
  2555. },
  2556. {
  2557. name: "Macro",
  2558. height: math.unit(100, "feet"),
  2559. info: {
  2560. description: {
  2561. mode: "append",
  2562. text: "\n\nTOO DAMN BIG"
  2563. }
  2564. }
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(2, "miles")
  2569. },
  2570. {
  2571. name: "Gigamacro",
  2572. height: math.unit(10, "earths")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(183, "cm"),
  2581. weight: math.unit(80, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/sofia-fluttertail/front.svg",
  2585. bottom: 0.01,
  2586. extra: 2154 / 2081
  2587. }
  2588. },
  2589. frontAlt: {
  2590. height: math.unit(183, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Front (alt)",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(183, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/back.svg"
  2603. }
  2604. },
  2605. kneeling: {
  2606. height: math.unit(125, "cm"),
  2607. weight: math.unit(80, "kg"),
  2608. name: "Kneeling",
  2609. image: {
  2610. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2611. extra: 1033 / 977,
  2612. bottom: 23.7 / 1057
  2613. }
  2614. },
  2615. maw: {
  2616. height: math.unit(183 / 5, "cm"),
  2617. name: "Maw",
  2618. image: {
  2619. source: "./media/characters/sofia-fluttertail/maw.svg"
  2620. }
  2621. },
  2622. mawcloseup: {
  2623. height: math.unit(183 / 5 * 0.41, "cm"),
  2624. name: "Maw (Closeup)",
  2625. image: {
  2626. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2627. }
  2628. },
  2629. paws: {
  2630. height: math.unit(1.17, "feet"),
  2631. name: "Paws",
  2632. image: {
  2633. source: "./media/characters/sofia-fluttertail/paws.svg",
  2634. extra: 851 / 851,
  2635. bottom: 17 / 868
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(1.83, "meter")
  2643. },
  2644. {
  2645. name: "Size Thief",
  2646. height: math.unit(18, "feet")
  2647. },
  2648. {
  2649. name: "50 Foot Collie",
  2650. height: math.unit(50, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(96, "feet"),
  2655. default: true
  2656. },
  2657. {
  2658. name: "Megamerger",
  2659. height: math.unit(650, "feet")
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(7, "feet"),
  2668. weight: math.unit(100, "kg"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/march/front.svg",
  2672. extra: 1992/1851,
  2673. bottom: 39/2031
  2674. }
  2675. },
  2676. foot: {
  2677. height: math.unit(0.9, "feet"),
  2678. name: "Foot",
  2679. image: {
  2680. source: "./media/characters/march/foot.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(7.9, "feet")
  2688. },
  2689. {
  2690. name: "Macro",
  2691. height: math.unit(220, "meters")
  2692. },
  2693. {
  2694. name: "Megamacro",
  2695. height: math.unit(2.98, "km"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Gigamacro",
  2700. height: math.unit(15963, "km")
  2701. },
  2702. {
  2703. name: "Teramacro",
  2704. height: math.unit(2980000000, "km")
  2705. },
  2706. {
  2707. name: "Examacro",
  2708. height: math.unit(250, "parsecs")
  2709. },
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2714. {
  2715. front: {
  2716. height: math.unit(6, "feet"),
  2717. weight: math.unit(60, "kg"),
  2718. name: "Front",
  2719. image: {
  2720. source: "./media/characters/noir/front.svg",
  2721. extra: 1,
  2722. bottom: 0.032
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(6.6, "feet")
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(500, "feet")
  2734. },
  2735. {
  2736. name: "Megamacro",
  2737. height: math.unit(2.5, "km"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(22500, "km")
  2743. },
  2744. {
  2745. name: "Teramacro",
  2746. height: math.unit(2500000000, "km")
  2747. },
  2748. {
  2749. name: "Examacro",
  2750. height: math.unit(200, "parsecs")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(7, "feet"),
  2759. weight: math.unit(100, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/okuri/front.svg",
  2763. extra: 739/665,
  2764. bottom: 39/778
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(7, "feet"),
  2769. weight: math.unit(100, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/okuri/back.svg",
  2773. extra: 734/653,
  2774. bottom: 13/747
  2775. }
  2776. },
  2777. sitting: {
  2778. height: math.unit(2.95, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Sitting",
  2781. image: {
  2782. source: "./media/characters/okuri/sitting.svg",
  2783. extra: 370/318,
  2784. bottom: 99/469
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Smallest",
  2791. height: math.unit(5 + 2/12, "feet")
  2792. },
  2793. {
  2794. name: "Smaller",
  2795. height: math.unit(300, "feet")
  2796. },
  2797. {
  2798. name: "Small",
  2799. height: math.unit(1000, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(1, "mile")
  2804. },
  2805. {
  2806. name: "Mega Macro (Small)",
  2807. height: math.unit(20, "km")
  2808. },
  2809. {
  2810. name: "Mega Macro (Large)",
  2811. height: math.unit(600, "km")
  2812. },
  2813. {
  2814. name: "Giga Macro",
  2815. height: math.unit(10000, "km")
  2816. },
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(577560, "km"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Large",
  2824. height: math.unit(4, "galaxies")
  2825. },
  2826. {
  2827. name: "Largest",
  2828. height: math.unit(15, "multiverses")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(7, "feet"),
  2837. weight: math.unit(100, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/manny/front.svg",
  2841. extra: 1,
  2842. bottom: 0.06
  2843. }
  2844. },
  2845. back: {
  2846. height: math.unit(7, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Back",
  2849. image: {
  2850. source: "./media/characters/manny/back.svg",
  2851. extra: 1,
  2852. bottom: 0.014
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(7, "feet"),
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(78, "feet"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Macro+",
  2868. height: math.unit(300, "meters")
  2869. },
  2870. {
  2871. name: "Macro++",
  2872. height: math.unit(2400, "meters")
  2873. },
  2874. {
  2875. name: "Megamacro",
  2876. height: math.unit(5167, "meters")
  2877. },
  2878. {
  2879. name: "Gigamacro",
  2880. height: math.unit(41769, "miles")
  2881. },
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/adake/front-1.svg"
  2893. }
  2894. },
  2895. frontAlt: {
  2896. height: math.unit(7, "feet"),
  2897. weight: math.unit(100, "kg"),
  2898. name: "Front (Alt)",
  2899. image: {
  2900. source: "./media/characters/adake/front-2.svg",
  2901. extra: 1,
  2902. bottom: 0.01
  2903. }
  2904. },
  2905. back: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Back",
  2909. image: {
  2910. source: "./media/characters/adake/back.svg",
  2911. }
  2912. },
  2913. kneel: {
  2914. height: math.unit(5.385, "feet"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Kneeling",
  2917. image: {
  2918. source: "./media/characters/adake/kneel.svg",
  2919. bottom: 0.052
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(7, "feet"),
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(78, "feet"),
  2931. default: true
  2932. },
  2933. {
  2934. name: "Macro+",
  2935. height: math.unit(300, "meters")
  2936. },
  2937. {
  2938. name: "Macro++",
  2939. height: math.unit(2400, "meters")
  2940. },
  2941. {
  2942. name: "Megamacro",
  2943. height: math.unit(5167, "meters")
  2944. },
  2945. {
  2946. name: "Gigamacro",
  2947. height: math.unit(41769, "miles")
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(1.65, "meters"),
  2956. weight: math.unit(50, "kg"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/elijah/front.svg",
  2960. extra: 858 / 830,
  2961. bottom: 95.5 / 953.8559
  2962. }
  2963. },
  2964. back: {
  2965. height: math.unit(1.65, "meters"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Back",
  2968. image: {
  2969. source: "./media/characters/elijah/back.svg",
  2970. extra: 895 / 850,
  2971. bottom: 5.3 / 897.956
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(1.65, "meters"),
  2976. weight: math.unit(50, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/elijah/front-nsfw.svg",
  2980. extra: 858 / 830,
  2981. bottom: 95.5 / 953.8559
  2982. }
  2983. },
  2984. backNsfw: {
  2985. height: math.unit(1.65, "meters"),
  2986. weight: math.unit(50, "kg"),
  2987. name: "Back (NSFW)",
  2988. image: {
  2989. source: "./media/characters/elijah/back-nsfw.svg",
  2990. extra: 895 / 850,
  2991. bottom: 5.3 / 897.956
  2992. }
  2993. },
  2994. dick: {
  2995. height: math.unit(1, "feet"),
  2996. name: "Dick",
  2997. image: {
  2998. source: "./media/characters/elijah/dick.svg"
  2999. }
  3000. },
  3001. beakOpen: {
  3002. height: math.unit(1.25, "feet"),
  3003. name: "Beak (Open)",
  3004. image: {
  3005. source: "./media/characters/elijah/beak-open.svg"
  3006. }
  3007. },
  3008. beakShut: {
  3009. height: math.unit(1.25, "feet"),
  3010. name: "Beak (Shut)",
  3011. image: {
  3012. source: "./media/characters/elijah/beak-shut.svg"
  3013. }
  3014. },
  3015. footFlexing: {
  3016. height: math.unit(1.61, "feet"),
  3017. name: "Foot (Flexing)",
  3018. image: {
  3019. source: "./media/characters/elijah/foot-flexing.svg"
  3020. }
  3021. },
  3022. footStepping: {
  3023. height: math.unit(1.44, "feet"),
  3024. name: "Foot (Stepping)",
  3025. image: {
  3026. source: "./media/characters/elijah/foot-stepping.svg"
  3027. }
  3028. },
  3029. plantigradeLeg: {
  3030. height: math.unit(2.34, "feet"),
  3031. name: "Plantigrade Leg",
  3032. image: {
  3033. source: "./media/characters/elijah/plantigrade-leg.svg"
  3034. }
  3035. },
  3036. plantigradeFootLeft: {
  3037. height: math.unit(0.9, "feet"),
  3038. name: "Plantigrade Foot (Left)",
  3039. image: {
  3040. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3041. }
  3042. },
  3043. plantigradeFootRight: {
  3044. height: math.unit(0.9, "feet"),
  3045. name: "Plantigrade Foot (Right)",
  3046. image: {
  3047. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(1.65, "meters")
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(55, "meters"),
  3059. default: true
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(105, "meters")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(7 + 2/12, "feet"),
  3072. weight: math.unit(320, "kg"),
  3073. preyCapacity: math.unit(0.276549935, "people"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/rai/front.svg",
  3077. extra: 1802/1696,
  3078. bottom: 68/1870
  3079. },
  3080. form: "anthro",
  3081. default: true
  3082. },
  3083. frontDressed: {
  3084. height: math.unit(7 + 2/12, "feet"),
  3085. weight: math.unit(320, "kg"),
  3086. preyCapacity: math.unit(0.276549935, "people"),
  3087. name: "Front (Dressed)",
  3088. image: {
  3089. source: "./media/characters/rai/front-dressed.svg",
  3090. extra: 1802/1696,
  3091. bottom: 68/1870
  3092. },
  3093. form: "anthro"
  3094. },
  3095. side: {
  3096. height: math.unit(7 + 2/12, "feet"),
  3097. weight: math.unit(320, "kg"),
  3098. preyCapacity: math.unit(0.276549935, "people"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/rai/side.svg",
  3102. extra: 1789/1710,
  3103. bottom: 115/1904
  3104. },
  3105. form: "anthro"
  3106. },
  3107. back: {
  3108. height: math.unit(7 + 2/12, "feet"),
  3109. weight: math.unit(320, "kg"),
  3110. preyCapacity: math.unit(0.276549935, "people"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/rai/back.svg",
  3114. extra: 1770/1707,
  3115. bottom: 28/1798
  3116. },
  3117. form: "anthro"
  3118. },
  3119. feral: {
  3120. height: math.unit(9.5, "feet"),
  3121. weight: math.unit(640, "kg"),
  3122. preyCapacity: math.unit(4, "people"),
  3123. name: "Feral",
  3124. image: {
  3125. source: "./media/characters/rai/feral.svg",
  3126. extra: 945/553,
  3127. bottom: 176/1121
  3128. },
  3129. form: "feral",
  3130. default: true
  3131. },
  3132. dragon: {
  3133. height: math.unit(23, "feet"),
  3134. weight: math.unit(50000, "lb"),
  3135. name: "Dragon",
  3136. image: {
  3137. source: "./media/characters/rai/dragon.svg",
  3138. extra: 2498 / 2030,
  3139. bottom: 85.2 / 2584
  3140. },
  3141. form: "dragon",
  3142. default: true
  3143. },
  3144. maw: {
  3145. height: math.unit(1.69, "feet"),
  3146. name: "Maw",
  3147. image: {
  3148. source: "./media/characters/rai/maw.svg"
  3149. },
  3150. form: "anthro"
  3151. },
  3152. },
  3153. [
  3154. {
  3155. name: "Normal",
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. form: "anthro"
  3158. },
  3159. {
  3160. name: "Big",
  3161. height: math.unit(11, "feet"),
  3162. form: "anthro"
  3163. },
  3164. {
  3165. name: "Minimacro",
  3166. height: math.unit(77, "feet"),
  3167. form: "anthro"
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(302, "feet"),
  3172. default: true,
  3173. form: "anthro"
  3174. },
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(9.5, "feet"),
  3178. form: "feral",
  3179. default: true
  3180. },
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(23, "feet"),
  3184. form: "dragon",
  3185. default: true
  3186. }
  3187. ],
  3188. {
  3189. "anthro": {
  3190. name: "Anthro",
  3191. default: true
  3192. },
  3193. "feral": {
  3194. name: "Feral",
  3195. },
  3196. "dragon": {
  3197. name: "Dragon",
  3198. },
  3199. }
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3203. {
  3204. frontDressed: {
  3205. height: math.unit(216, "feet"),
  3206. weight: math.unit(7000000, "lb"),
  3207. preyCapacity: math.unit(1321, "people"),
  3208. name: "Front (Dressed)",
  3209. image: {
  3210. source: "./media/characters/jazzy/front-dressed.svg",
  3211. extra: 2738 / 2651,
  3212. bottom: 41.8 / 2786
  3213. }
  3214. },
  3215. backDressed: {
  3216. height: math.unit(216, "feet"),
  3217. weight: math.unit(7000000, "lb"),
  3218. preyCapacity: math.unit(1321, "people"),
  3219. name: "Back (Dressed)",
  3220. image: {
  3221. source: "./media/characters/jazzy/back-dressed.svg",
  3222. extra: 2775 / 2673,
  3223. bottom: 36.8 / 2817
  3224. }
  3225. },
  3226. front: {
  3227. height: math.unit(216, "feet"),
  3228. weight: math.unit(7000000, "lb"),
  3229. preyCapacity: math.unit(1321, "people"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/jazzy/front.svg",
  3233. extra: 2738 / 2651,
  3234. bottom: 41.8 / 2786
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(216, "feet"),
  3239. weight: math.unit(7000000, "lb"),
  3240. preyCapacity: math.unit(1321, "people"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/jazzy/back.svg",
  3244. extra: 2775 / 2673,
  3245. bottom: 36.8 / 2817
  3246. }
  3247. },
  3248. maw: {
  3249. height: math.unit(20, "feet"),
  3250. name: "Maw",
  3251. image: {
  3252. source: "./media/characters/jazzy/maw.svg"
  3253. }
  3254. },
  3255. paws: {
  3256. height: math.unit(27.5, "feet"),
  3257. name: "Paws",
  3258. image: {
  3259. source: "./media/characters/jazzy/paws.svg"
  3260. }
  3261. },
  3262. eye: {
  3263. height: math.unit(4.4, "feet"),
  3264. name: "Eye",
  3265. image: {
  3266. source: "./media/characters/jazzy/eye.svg"
  3267. }
  3268. },
  3269. droneOffense: {
  3270. height: math.unit(9.5, "inches"),
  3271. name: "Drone (Offense)",
  3272. image: {
  3273. source: "./media/characters/jazzy/drone-offense.svg"
  3274. }
  3275. },
  3276. droneRecon: {
  3277. height: math.unit(9.5, "inches"),
  3278. name: "Drone (Recon)",
  3279. image: {
  3280. source: "./media/characters/jazzy/drone-recon.svg"
  3281. }
  3282. },
  3283. droneDefense: {
  3284. height: math.unit(9.5, "inches"),
  3285. name: "Drone (Defense)",
  3286. image: {
  3287. source: "./media/characters/jazzy/drone-defense.svg"
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(216, "feet"),
  3295. default: true
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(9 + 6/12, "feet"),
  3304. weight: math.unit(700, "lb"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/flamm/front.svg",
  3308. extra: 1736/1596,
  3309. bottom: 93/1829
  3310. }
  3311. },
  3312. buff: {
  3313. height: math.unit(9 + 6/12, "feet"),
  3314. weight: math.unit(950, "lb"),
  3315. name: "Buff",
  3316. image: {
  3317. source: "./media/characters/flamm/buff.svg",
  3318. extra: 3018/2874,
  3319. bottom: 221/3239
  3320. }
  3321. },
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(9.5, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(200, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(5 + 3/12, "feet"),
  3340. weight: math.unit(60, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/zephiro/front.svg",
  3344. extra: 1873/1761,
  3345. bottom: 147/2020
  3346. }
  3347. },
  3348. side: {
  3349. height: math.unit(5 + 3/12, "feet"),
  3350. weight: math.unit(60, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/zephiro/side.svg",
  3354. extra: 1929/1827,
  3355. bottom: 65/1994
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(5 + 3/12, "feet"),
  3360. weight: math.unit(60, "kg"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/zephiro/back.svg",
  3364. extra: 1926/1816,
  3365. bottom: 41/1967
  3366. }
  3367. },
  3368. hand: {
  3369. height: math.unit(0.68, "feet"),
  3370. name: "Hand",
  3371. image: {
  3372. source: "./media/characters/zephiro/hand.svg"
  3373. }
  3374. },
  3375. paw: {
  3376. height: math.unit(1, "feet"),
  3377. name: "Paw",
  3378. image: {
  3379. source: "./media/characters/zephiro/paw.svg"
  3380. }
  3381. },
  3382. beans: {
  3383. height: math.unit(0.93, "feet"),
  3384. name: "Beans",
  3385. image: {
  3386. source: "./media/characters/zephiro/beans.svg"
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Micro",
  3393. height: math.unit(3, "inches")
  3394. },
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5 + 3 / 12, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(118, "feet")
  3403. },
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(5, "feet"),
  3411. weight: math.unit(90, "kg"),
  3412. preyCapacity: math.unit(14, "people"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/fory/front.svg",
  3416. extra: 2862 / 2674,
  3417. bottom: 180 / 3043.8
  3418. },
  3419. form: "weaselbun",
  3420. default: true,
  3421. extraAttributes: {
  3422. "pawSize": {
  3423. name: "Paw Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.1596, "m^2")
  3427. },
  3428. "pawLength": {
  3429. name: "Paw Length",
  3430. power: 1,
  3431. type: "length",
  3432. base: math.unit(0.7, "m")
  3433. }
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(5, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. preyCapacity: math.unit(14, "people"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/fory/back.svg",
  3443. extra: 1790/1672,
  3444. bottom: 84/1874
  3445. },
  3446. form: "weaselbun",
  3447. extraAttributes: {
  3448. "pawSize": {
  3449. name: "Paw Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.1596, "m^2")
  3453. },
  3454. "pawLength": {
  3455. name: "Paw Length",
  3456. power: 1,
  3457. type: "length",
  3458. base: math.unit(0.7, "m")
  3459. }
  3460. }
  3461. },
  3462. paw: {
  3463. height: math.unit(2.14, "feet"),
  3464. name: "Paw",
  3465. image: {
  3466. source: "./media/characters/fory/paw.svg"
  3467. },
  3468. form: "weaselbun",
  3469. extraAttributes: {
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.1596, "m^2")
  3475. },
  3476. "pawLength": {
  3477. name: "Paw Length",
  3478. power: 1,
  3479. type: "length",
  3480. base: math.unit(0.48, "m")
  3481. }
  3482. }
  3483. },
  3484. bunBack: {
  3485. height: math.unit(3, "feet"),
  3486. weight: math.unit(20, "kg"),
  3487. preyCapacity: math.unit(3, "people"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/fory/bun-back.svg",
  3491. extra: 1749/1564,
  3492. bottom: 246/1995
  3493. },
  3494. form: "bun",
  3495. default: true,
  3496. extraAttributes: {
  3497. "pawSize": {
  3498. name: "Paw Size",
  3499. power: 2,
  3500. type: "area",
  3501. base: math.unit(0.072, "m^2")
  3502. },
  3503. "pawLength": {
  3504. name: "Paw Length",
  3505. power: 1,
  3506. type: "length",
  3507. base: math.unit(0.45, "m")
  3508. }
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5, "feet"),
  3516. form: "weaselbun"
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(50, "feet"),
  3521. default: true,
  3522. form: "weaselbun"
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(10, "miles"),
  3527. form: "weaselbun"
  3528. },
  3529. {
  3530. name: "Gigamacro",
  3531. height: math.unit(5, "earths"),
  3532. form: "weaselbun"
  3533. },
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(3, "feet"),
  3537. default: true,
  3538. form: "bun"
  3539. },
  3540. {
  3541. name: "Fun-Size",
  3542. height: math.unit(12, "feet"),
  3543. form: "bun"
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(100, "feet"),
  3548. form: "bun"
  3549. },
  3550. {
  3551. name: "Planetary",
  3552. height: math.unit(3, "earths"),
  3553. form: "bun"
  3554. },
  3555. ],
  3556. {
  3557. "weaselbun": {
  3558. name: "Weaselbun",
  3559. default: true
  3560. },
  3561. "bun": {
  3562. name: "Bun",
  3563. },
  3564. }
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(7, "feet"),
  3571. weight: math.unit(90, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/kurrikage/front.svg",
  3575. extra: 1845/1733,
  3576. bottom: 119/1964
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(7, "feet"),
  3581. weight: math.unit(90, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/kurrikage/back.svg",
  3585. extra: 1790/1677,
  3586. bottom: 61/1851
  3587. }
  3588. },
  3589. dressed: {
  3590. height: math.unit(7, "feet"),
  3591. weight: math.unit(90, "kg"),
  3592. name: "Dressed",
  3593. image: {
  3594. source: "./media/characters/kurrikage/dressed.svg",
  3595. extra: 1845/1733,
  3596. bottom: 119/1964
  3597. }
  3598. },
  3599. foot: {
  3600. height: math.unit(1.5, "feet"),
  3601. name: "Foot",
  3602. image: {
  3603. source: "./media/characters/kurrikage/foot.svg"
  3604. }
  3605. },
  3606. staff: {
  3607. height: math.unit(6.7, "feet"),
  3608. name: "Staff",
  3609. image: {
  3610. source: "./media/characters/kurrikage/staff.svg"
  3611. }
  3612. },
  3613. peek: {
  3614. height: math.unit(1.05, "feet"),
  3615. name: "Peeking",
  3616. image: {
  3617. source: "./media/characters/kurrikage/peek.svg",
  3618. bottom: 0.08
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(12, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Big",
  3630. height: math.unit(20, "feet")
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(500, "feet")
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(20, "miles")
  3639. },
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/shingo/front.svg",
  3651. extra: 1900/1825,
  3652. bottom: 82/1982
  3653. }
  3654. },
  3655. side: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Side",
  3659. image: {
  3660. source: "./media/characters/shingo/side.svg",
  3661. extra: 1930/1865,
  3662. bottom: 16/1946
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(6, "feet"),
  3667. weight: math.unit(75, "kg"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/shingo/back.svg",
  3671. extra: 1922/1852,
  3672. bottom: 16/1938
  3673. }
  3674. },
  3675. frontDressed: {
  3676. height: math.unit(6, "feet"),
  3677. weight: math.unit(150, "lb"),
  3678. name: "Front-dressed",
  3679. image: {
  3680. source: "./media/characters/shingo/front-dressed.svg",
  3681. extra: 1900/1825,
  3682. bottom: 82/1982
  3683. }
  3684. },
  3685. paw: {
  3686. height: math.unit(1.29, "feet"),
  3687. name: "Paw",
  3688. image: {
  3689. source: "./media/characters/shingo/paw.svg"
  3690. }
  3691. },
  3692. hand: {
  3693. height: math.unit(1.07, "feet"),
  3694. name: "Hand",
  3695. image: {
  3696. source: "./media/characters/shingo/hand.svg"
  3697. }
  3698. },
  3699. frontAlt: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Front (Alt)",
  3703. image: {
  3704. source: "./media/characters/shingo/front-alt.svg",
  3705. extra: 3511 / 3338,
  3706. bottom: 0.005
  3707. }
  3708. },
  3709. frontAlt2: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front (Alt 2)",
  3713. image: {
  3714. source: "./media/characters/shingo/front-alt-2.svg",
  3715. extra: 706/681,
  3716. bottom: 11/717
  3717. }
  3718. },
  3719. pawAlt: {
  3720. height: math.unit(1, "feet"),
  3721. name: "Paw (Alt)",
  3722. image: {
  3723. source: "./media/characters/shingo/paw-alt.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Micro",
  3730. height: math.unit(4, "inches")
  3731. },
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(6, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(108, "feet")
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(1500, "feet")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3749. {
  3750. side: {
  3751. height: math.unit(6, "feet"),
  3752. weight: math.unit(75, "kg"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/aigey/side.svg"
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(200, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(100, "miles")
  3768. },
  3769. ]
  3770. )
  3771. )
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(5 + 5 / 12, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/natasha/front.svg",
  3781. extra: 859 / 824,
  3782. bottom: 23 / 879.6
  3783. }
  3784. },
  3785. frontNsfw: {
  3786. height: math.unit(5 + 5 / 12, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Front (NSFW)",
  3789. image: {
  3790. source: "./media/characters/natasha/front-nsfw.svg",
  3791. extra: 859 / 824,
  3792. bottom: 23 / 879.6
  3793. }
  3794. },
  3795. frontErect: {
  3796. height: math.unit(5 + 5 / 12, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Front (Erect)",
  3799. image: {
  3800. source: "./media/characters/natasha/front-erect.svg",
  3801. extra: 859 / 824,
  3802. bottom: 23 / 879.6
  3803. }
  3804. },
  3805. back: {
  3806. height: math.unit(5 + 5 / 12, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Back",
  3809. image: {
  3810. source: "./media/characters/natasha/back.svg",
  3811. extra: 887.9 / 852.6,
  3812. bottom: 9.7 / 896.4
  3813. }
  3814. },
  3815. backAlt: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Back (Alt)",
  3819. image: {
  3820. source: "./media/characters/natasha/back-alt.svg",
  3821. extra: 1236.7 / 1192,
  3822. bottom: 22.3 / 1258.2
  3823. }
  3824. },
  3825. dick: {
  3826. height: math.unit(1.772, "feet"),
  3827. name: "Dick",
  3828. image: {
  3829. source: "./media/characters/natasha/dick.svg"
  3830. }
  3831. },
  3832. paw: {
  3833. height: math.unit(0.250, "meters"),
  3834. name: "Paw",
  3835. image: {
  3836. source: "./media/characters/natasha/paw.svg"
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0024, "m^2")
  3844. },
  3845. "padSize": {
  3846. name: "Pad Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.00889, "m^2")
  3850. },
  3851. "pawSize": {
  3852. name: "Paw Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.023667, "m^2")
  3856. },
  3857. }
  3858. },
  3859. },
  3860. [
  3861. {
  3862. name: "Shortstack",
  3863. height: math.unit(3, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(5 + 5 / 12, "feet")
  3869. },
  3870. {
  3871. name: "Large",
  3872. height: math.unit(12, "feet")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(100, "feet")
  3877. },
  3878. {
  3879. name: "Macro+",
  3880. height: math.unit(260, "feet")
  3881. },
  3882. {
  3883. name: "Macro++",
  3884. height: math.unit(1, "mile")
  3885. },
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(75, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/malik/front.svg",
  3897. extra: 1750/1561,
  3898. bottom: 80/1830
  3899. },
  3900. extraAttributes: {
  3901. "toeSize": {
  3902. name: "Toe Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.0159, "m^2")
  3906. },
  3907. "pawSize": {
  3908. name: "Paw Size",
  3909. power: 2,
  3910. type: "area",
  3911. base: math.unit(0.09834, "m^2")
  3912. },
  3913. }
  3914. },
  3915. side: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(75, "kg"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/malik/side.svg",
  3921. extra: 1802/1685,
  3922. bottom: 42/1844
  3923. },
  3924. extraAttributes: {
  3925. "toeSize": {
  3926. name: "Toe Size",
  3927. power: 2,
  3928. type: "area",
  3929. base: math.unit(0.0159, "m^2")
  3930. },
  3931. "pawSize": {
  3932. name: "Paw Size",
  3933. power: 2,
  3934. type: "area",
  3935. base: math.unit(0.09834, "m^2")
  3936. },
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/malik/back.svg",
  3945. extra: 1803/1607,
  3946. bottom: 33/1836
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(156, "feet"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Macro+",
  3972. height: math.unit(1188, "feet")
  3973. },
  3974. ]
  3975. ))
  3976. characterMakers.push(() => makeCharacter(
  3977. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3978. {
  3979. front: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Front",
  3983. image: {
  3984. source: "./media/characters/sefer/front.svg",
  3985. extra: 848 / 659,
  3986. bottom: 28.3 / 876.442
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(75, "kg"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/sefer/back.svg",
  3995. extra: 864 / 695,
  3996. bottom: 10 / 871
  3997. }
  3998. },
  3999. frontDressed: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(75, "kg"),
  4002. name: "Dressed",
  4003. image: {
  4004. source: "./media/characters/sefer/dressed.svg",
  4005. extra: 839 / 653,
  4006. bottom: 37.6 / 878
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(6, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Big",
  4018. height: math.unit(8, "meters")
  4019. },
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4024. {
  4025. body: {
  4026. height: math.unit(2.2428, "meter"),
  4027. weight: math.unit(124.738, "kg"),
  4028. name: "Body",
  4029. image: {
  4030. extra: 1225 / 1050,
  4031. source: "./media/characters/north/front.svg"
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Micro",
  4038. height: math.unit(4, "inches")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(63, "meters")
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(101, "miles"),
  4047. default: true
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4053. {
  4054. angled: {
  4055. height: math.unit(4, "meter"),
  4056. weight: math.unit(150, "kg"),
  4057. name: "Angled",
  4058. image: {
  4059. source: "./media/characters/talan/angled-sfw.svg",
  4060. bottom: 29 / 3734
  4061. }
  4062. },
  4063. angledNsfw: {
  4064. height: math.unit(4, "meter"),
  4065. weight: math.unit(150, "kg"),
  4066. name: "Angled (NSFW)",
  4067. image: {
  4068. source: "./media/characters/talan/angled-nsfw.svg",
  4069. bottom: 29 / 3734
  4070. }
  4071. },
  4072. frontNsfw: {
  4073. height: math.unit(4, "meter"),
  4074. weight: math.unit(150, "kg"),
  4075. name: "Front (NSFW)",
  4076. image: {
  4077. source: "./media/characters/talan/front-nsfw.svg",
  4078. bottom: 29 / 3734
  4079. }
  4080. },
  4081. sideNsfw: {
  4082. height: math.unit(4, "meter"),
  4083. weight: math.unit(150, "kg"),
  4084. name: "Side (NSFW)",
  4085. image: {
  4086. source: "./media/characters/talan/side-nsfw.svg",
  4087. bottom: 29 / 3734
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(4, "meter"),
  4092. weight: math.unit(150, "kg"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/talan/back.svg"
  4096. }
  4097. },
  4098. dickBottom: {
  4099. height: math.unit(0.621, "meter"),
  4100. name: "Dick (Bottom)",
  4101. image: {
  4102. source: "./media/characters/talan/dick-bottom.svg"
  4103. }
  4104. },
  4105. dickTop: {
  4106. height: math.unit(0.621, "meter"),
  4107. name: "Dick (Top)",
  4108. image: {
  4109. source: "./media/characters/talan/dick-top.svg"
  4110. }
  4111. },
  4112. dickSide: {
  4113. height: math.unit(0.305, "meter"),
  4114. name: "Dick (Side)",
  4115. image: {
  4116. source: "./media/characters/talan/dick-side.svg"
  4117. }
  4118. },
  4119. dickFront: {
  4120. height: math.unit(0.305, "meter"),
  4121. name: "Dick (Front)",
  4122. image: {
  4123. source: "./media/characters/talan/dick-front.svg"
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(4, "meters")
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(100, "meters")
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(2, "miles"),
  4139. default: true
  4140. },
  4141. {
  4142. name: "Gigamacro",
  4143. height: math.unit(5000, "miles")
  4144. },
  4145. {
  4146. name: "Teramacro",
  4147. height: math.unit(100, "parsecs")
  4148. }
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4153. {
  4154. front: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front.svg"
  4160. }
  4161. },
  4162. frontAlt: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front (alt)",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front-alt.svg"
  4168. }
  4169. },
  4170. frontAlt2: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(90, "kg"),
  4173. name: "Front (alt 2)",
  4174. image: {
  4175. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4176. }
  4177. }
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(9, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Large",
  4187. height: math.unit(25, "feet")
  4188. },
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(0.25, "miles")
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(10, "miles")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4201. {
  4202. side: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(140, "kg"),
  4205. name: "Side",
  4206. image: {
  4207. source: "./media/characters/sosha/side.svg",
  4208. extra: 1170/1006,
  4209. bottom: 94/1264
  4210. }
  4211. },
  4212. maw: {
  4213. height: math.unit(2.87, "feet"),
  4214. name: "Maw",
  4215. image: {
  4216. source: "./media/characters/sosha/maw.svg",
  4217. extra: 966/865,
  4218. bottom: 0/966
  4219. }
  4220. },
  4221. cooch: {
  4222. height: math.unit(5.6, "feet"),
  4223. name: "Cooch",
  4224. image: {
  4225. source: "./media/characters/sosha/cooch.svg"
  4226. }
  4227. },
  4228. },
  4229. [
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(12, "feet"),
  4233. default: true
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4239. {
  4240. side: {
  4241. height: math.unit(5 + 5 / 12, "feet"),
  4242. weight: math.unit(170, "kg"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/runnola/side.svg",
  4246. extra: 741 / 448,
  4247. bottom: 0.05
  4248. }
  4249. },
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(3, "feet")
  4255. },
  4256. {
  4257. name: "Normal",
  4258. height: math.unit(5 + 5 / 12, "feet"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Big",
  4263. height: math.unit(10, "feet")
  4264. },
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(2, "meter"),
  4272. weight: math.unit(50, "kg"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/kurribird/front.svg",
  4276. bottom: 0.015
  4277. }
  4278. },
  4279. frontAlt: {
  4280. height: math.unit(1.5, "meter"),
  4281. weight: math.unit(50, "kg"),
  4282. name: "Front (Alt)",
  4283. image: {
  4284. source: "./media/characters/kurribird/front-alt.svg",
  4285. extra: 1.45
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(7, "feet")
  4293. },
  4294. {
  4295. name: "Big",
  4296. height: math.unit(12, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(1500, "feet")
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(2, "miles")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/elbial/front.svg",
  4318. extra: 1643 / 1556,
  4319. bottom: 60.2 / 1696
  4320. }
  4321. },
  4322. side: {
  4323. height: math.unit(2, "meter"),
  4324. weight: math.unit(80, "kg"),
  4325. name: "Side",
  4326. image: {
  4327. source: "./media/characters/elbial/side.svg",
  4328. extra: 1601/1528,
  4329. bottom: 97/1698
  4330. }
  4331. },
  4332. back: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(80, "kg"),
  4335. name: "Back",
  4336. image: {
  4337. source: "./media/characters/elbial/back.svg",
  4338. extra: 1653/1569,
  4339. bottom: 20/1673
  4340. }
  4341. },
  4342. frontDressed: {
  4343. height: math.unit(2, "meter"),
  4344. weight: math.unit(80, "kg"),
  4345. name: "Front (Dressed)",
  4346. image: {
  4347. source: "./media/characters/elbial/front-dressed.svg",
  4348. extra: 1638/1569,
  4349. bottom: 70/1708
  4350. }
  4351. },
  4352. genitals: {
  4353. height: math.unit(2 / 3.367, "meter"),
  4354. name: "Genitals",
  4355. image: {
  4356. source: "./media/characters/elbial/genitals.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Large",
  4363. height: math.unit(100, "feet")
  4364. },
  4365. {
  4366. name: "Macro",
  4367. height: math.unit(500, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Megamacro",
  4372. height: math.unit(10, "miles")
  4373. },
  4374. {
  4375. name: "Gigamacro",
  4376. height: math.unit(25000, "miles")
  4377. },
  4378. {
  4379. name: "Full-Size",
  4380. height: math.unit(8000000, "gigaparsecs")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4386. {
  4387. front: {
  4388. height: math.unit(2, "meter"),
  4389. weight: math.unit(60, "kg"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/noah/front.svg",
  4393. extra: 1383/1313,
  4394. bottom: 104/1487
  4395. }
  4396. },
  4397. hand: {
  4398. height: math.unit(0.6, "feet"),
  4399. name: "Hand",
  4400. image: {
  4401. source: "./media/characters/noah/hand.svg"
  4402. }
  4403. },
  4404. talons: {
  4405. height: math.unit(1.385, "feet"),
  4406. name: "Talons",
  4407. image: {
  4408. source: "./media/characters/noah/talons.svg"
  4409. }
  4410. },
  4411. beak: {
  4412. height: math.unit(0.43, "feet"),
  4413. name: "Beak",
  4414. image: {
  4415. source: "./media/characters/noah/beak.svg"
  4416. }
  4417. },
  4418. collar: {
  4419. height: math.unit(0.88, "feet"),
  4420. name: "Collar",
  4421. image: {
  4422. source: "./media/characters/noah/collar.svg"
  4423. }
  4424. },
  4425. eyeNarrow: {
  4426. height: math.unit(0.18, "feet"),
  4427. name: "Eye (Narrow)",
  4428. image: {
  4429. source: "./media/characters/noah/eye-narrow.svg"
  4430. }
  4431. },
  4432. eyeNormal: {
  4433. height: math.unit(0.18, "feet"),
  4434. name: "Eye (Normal)",
  4435. image: {
  4436. source: "./media/characters/noah/eye-normal.svg"
  4437. }
  4438. },
  4439. eyeWide: {
  4440. height: math.unit(0.18, "feet"),
  4441. name: "Eye (Wide)",
  4442. image: {
  4443. source: "./media/characters/noah/eye-wide.svg"
  4444. }
  4445. },
  4446. ear: {
  4447. height: math.unit(0.64, "feet"),
  4448. name: "Ear",
  4449. image: {
  4450. source: "./media/characters/noah/ear.svg"
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(750, "feet"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(50, "miles")
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(100000, "miles")
  4471. },
  4472. {
  4473. name: "Full-Size",
  4474. height: math.unit(3000000000, "miles")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(80, "kg"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/natalya/front.svg"
  4487. }
  4488. },
  4489. back: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Back",
  4493. image: {
  4494. source: "./media/characters/natalya/back.svg"
  4495. }
  4496. }
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(150, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(5, "miles")
  4507. },
  4508. {
  4509. name: "Full-Size",
  4510. height: math.unit(600, "kiloparsecs")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(50, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/erestrebah/front.svg",
  4523. extra: 1262/1162,
  4524. bottom: 96/1358
  4525. }
  4526. },
  4527. back: {
  4528. height: math.unit(2, "meter"),
  4529. weight: math.unit(50, "kg"),
  4530. name: "Back",
  4531. image: {
  4532. source: "./media/characters/erestrebah/back.svg",
  4533. extra: 1257/1139,
  4534. bottom: 13/1270
  4535. }
  4536. },
  4537. wing: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(50, "kg"),
  4540. name: "Wing",
  4541. image: {
  4542. source: "./media/characters/erestrebah/wing.svg",
  4543. extra: 1262/1162,
  4544. bottom: 96/1358
  4545. }
  4546. },
  4547. mouth: {
  4548. height: math.unit(0.39, "feet"),
  4549. name: "Mouth",
  4550. image: {
  4551. source: "./media/characters/erestrebah/mouth.svg"
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(10, "feet")
  4559. },
  4560. {
  4561. name: "Large",
  4562. height: math.unit(50, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(300, "feet")
  4568. },
  4569. {
  4570. name: "Macro+",
  4571. height: math.unit(750, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(3, "miles")
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(2, "meter"),
  4584. weight: math.unit(80, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/jennifer/front.svg",
  4588. bottom: 0.11,
  4589. extra: 1.16
  4590. }
  4591. },
  4592. frontAlt: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(80, "kg"),
  4595. name: "Front (Alt)",
  4596. image: {
  4597. source: "./media/characters/jennifer/front-alt.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Canon Height",
  4604. height: math.unit(120, "feet"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Macro+",
  4609. height: math.unit(300, "feet")
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(20000, "feet")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/kalista/front.svg",
  4626. extra: 1314/1145,
  4627. bottom: 101/1415
  4628. }
  4629. },
  4630. back: {
  4631. height: math.unit(2, "meter"),
  4632. weight: math.unit(50, "kg"),
  4633. name: "Back",
  4634. image: {
  4635. source: "./media/characters/kalista/back.svg",
  4636. extra: 1366 / 1156,
  4637. bottom: 33.9 / 1362.78
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Uncomfortably Small",
  4644. height: math.unit(10, "feet")
  4645. },
  4646. {
  4647. name: "Small",
  4648. height: math.unit(30, "feet")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(100, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(2000, "feet")
  4658. },
  4659. {
  4660. name: "True Form",
  4661. height: math.unit(8924, "miles")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(120, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/ggv/front.svg"
  4674. }
  4675. },
  4676. side: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(120, "kg"),
  4679. name: "Side",
  4680. image: {
  4681. source: "./media/characters/ggv/side.svg"
  4682. }
  4683. }
  4684. },
  4685. [
  4686. {
  4687. name: "Extremely Puny",
  4688. height: math.unit(9 + 5 / 12, "feet")
  4689. },
  4690. {
  4691. name: "Horribly Small",
  4692. height: math.unit(47.7, "miles"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Reasonably Sized",
  4697. height: math.unit(25000, "parsecs")
  4698. },
  4699. {
  4700. name: "Slightly Uncompressed",
  4701. height: math.unit(7.77e31, "parsecs")
  4702. },
  4703. {
  4704. name: "Omniversal",
  4705. height: math.unit(1e300, "meters")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(75, "lb"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/napalm/front.svg"
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(2, "meter"),
  4722. weight: math.unit(75, "lb"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/napalm/back.svg"
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Standard",
  4732. height: math.unit(55, "feet"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(7 + 5 / 6, "feet"),
  4742. weight: math.unit(325, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/asana/front.svg",
  4746. extra: 1133 / 1060,
  4747. bottom: 15.2 / 1148.6
  4748. }
  4749. },
  4750. back: {
  4751. height: math.unit(7 + 5 / 6, "feet"),
  4752. weight: math.unit(325, "lb"),
  4753. name: "Back",
  4754. image: {
  4755. source: "./media/characters/asana/back.svg",
  4756. extra: 1114 / 1043,
  4757. bottom: 5 / 1120
  4758. }
  4759. },
  4760. dressedDark: {
  4761. height: math.unit(7 + 5 / 6, "feet"),
  4762. weight: math.unit(325, "lb"),
  4763. name: "Dressed (Dark)",
  4764. image: {
  4765. source: "./media/characters/asana/dressed-dark.svg",
  4766. extra: 1133 / 1060,
  4767. bottom: 15.2 / 1148.6
  4768. }
  4769. },
  4770. dressedLight: {
  4771. height: math.unit(7 + 5 / 6, "feet"),
  4772. weight: math.unit(325, "lb"),
  4773. name: "Dressed (Light)",
  4774. image: {
  4775. source: "./media/characters/asana/dressed-light.svg",
  4776. extra: 1133 / 1060,
  4777. bottom: 15.2 / 1148.6
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Standard",
  4784. height: math.unit(7 + 5 / 6, "feet"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Large",
  4789. height: math.unit(10, "meters")
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(2500, "meters")
  4794. },
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(5e6, "meters")
  4798. },
  4799. {
  4800. name: "Examacro",
  4801. height: math.unit(5e12, "lightyears")
  4802. },
  4803. {
  4804. name: "Max Size",
  4805. height: math.unit(1e31, "lightyears")
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4811. {
  4812. front: {
  4813. height: math.unit(2, "meter"),
  4814. weight: math.unit(60, "kg"),
  4815. name: "Front",
  4816. image: {
  4817. source: "./media/characters/ebony/front.svg",
  4818. bottom: 0.03,
  4819. extra: 1045 / 810 + 0.03
  4820. }
  4821. },
  4822. side: {
  4823. height: math.unit(2, "meter"),
  4824. weight: math.unit(60, "kg"),
  4825. name: "Side",
  4826. image: {
  4827. source: "./media/characters/ebony/side.svg",
  4828. bottom: 0.03,
  4829. extra: 1045 / 810 + 0.03
  4830. }
  4831. },
  4832. back: {
  4833. height: math.unit(2, "meter"),
  4834. weight: math.unit(60, "kg"),
  4835. name: "Back",
  4836. image: {
  4837. source: "./media/characters/ebony/back.svg",
  4838. bottom: 0.01,
  4839. extra: 1045 / 810 + 0.01
  4840. }
  4841. },
  4842. },
  4843. [
  4844. // TODO check why I did this lol
  4845. {
  4846. name: "Standard",
  4847. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(200, "feet")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(13000, "km")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/mountain/front.svg",
  4869. extra: 972 / 955,
  4870. bottom: 64 / 1036.6
  4871. }
  4872. },
  4873. back: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(175, "lb"),
  4876. name: "Back",
  4877. image: {
  4878. source: "./media/characters/mountain/back.svg",
  4879. extra: 970 / 950,
  4880. bottom: 28.25 / 999
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Large",
  4887. height: math.unit(20, "meters")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(300, "meters")
  4892. },
  4893. {
  4894. name: "Gigamacro",
  4895. height: math.unit(10000, "km"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(10e9, "lightyears")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(8, "feet"),
  4909. weight: math.unit(500, "lb"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rick/front.svg"
  4913. }
  4914. }
  4915. },
  4916. [
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(8, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(5, "km")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/ona/front.svg"
  4937. }
  4938. },
  4939. frontAlt: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Front (Alt)",
  4943. image: {
  4944. source: "./media/characters/ona/front-alt.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(120, "lb"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/ona/back.svg"
  4953. }
  4954. },
  4955. foot: {
  4956. height: math.unit(1.1, "feet"),
  4957. name: "Foot",
  4958. image: {
  4959. source: "./media/characters/ona/foot.svg"
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Megamacro",
  4966. height: math.unit(70, "km"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Gigamacro",
  4971. height: math.unit(681818, "miles")
  4972. },
  4973. {
  4974. name: "Examacro",
  4975. height: math.unit(3800000, "lightyears")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(12, "feet"),
  4984. weight: math.unit(3000, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/mech/front.svg",
  4988. extra: 2900 / 2770,
  4989. bottom: 110 / 3010
  4990. }
  4991. },
  4992. back: {
  4993. height: math.unit(12, "feet"),
  4994. weight: math.unit(3000, "lb"),
  4995. name: "Back",
  4996. image: {
  4997. source: "./media/characters/mech/back.svg",
  4998. extra: 3011 / 2890,
  4999. bottom: 94 / 3105
  5000. }
  5001. },
  5002. maw: {
  5003. height: math.unit(3.07, "feet"),
  5004. name: "Maw",
  5005. image: {
  5006. source: "./media/characters/mech/maw.svg"
  5007. }
  5008. },
  5009. head: {
  5010. height: math.unit(3.07, "feet"),
  5011. name: "Head",
  5012. image: {
  5013. source: "./media/characters/mech/head.svg"
  5014. }
  5015. },
  5016. dick: {
  5017. height: math.unit(1.43, "feet"),
  5018. name: "Dick",
  5019. image: {
  5020. source: "./media/characters/mech/dick.svg"
  5021. }
  5022. },
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(12, "feet")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(300, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Macro+",
  5036. height: math.unit(1500, "feet")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(1.3, "meter"),
  5045. weight: math.unit(30, "kg"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/gregory/front.svg",
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(1.3, "meter"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(20, "meter")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(2.8, "meter"),
  5069. weight: math.unit(200, "kg"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/elory/front.svg",
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(2.8, "meter"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(38, "meter")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(470, "feet"),
  5093. weight: math.unit(924, "tons"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/angelpatamon/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(470, "feet"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Deity Size I",
  5108. height: math.unit(28651.2, "km")
  5109. },
  5110. {
  5111. name: "Deity Size II",
  5112. height: math.unit(171907.2, "km")
  5113. }
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5118. {
  5119. side: {
  5120. height: math.unit(7.2, "meter"),
  5121. weight: math.unit(8.2, "tons"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/cryae/side.svg",
  5125. extra: 3500 / 1500
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7.2, "meter"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(175, "lb"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/xera/front.svg",
  5146. extra: 2377 / 1972,
  5147. bottom: 75.5 / 2452
  5148. }
  5149. },
  5150. side: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(175, "lb"),
  5153. name: "Side",
  5154. image: {
  5155. source: "./media/characters/xera/side.svg",
  5156. extra: 2345 / 2019,
  5157. bottom: 39.7 / 2384
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(175, "lb"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/xera/back.svg",
  5166. extra: 2095 / 1984,
  5167. bottom: 67 / 2166
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Small",
  5174. height: math.unit(10, "feet")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(500, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(10, "km")
  5184. },
  5185. {
  5186. name: "Gigamacro",
  5187. height: math.unit(25000, "km")
  5188. },
  5189. {
  5190. name: "Teramacro",
  5191. height: math.unit(3e6, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(175, "lb"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/nebula/front.svg",
  5204. extra: 2566 / 2362,
  5205. bottom: 81 / 2644
  5206. }
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Small",
  5212. height: math.unit(4.5, "meters")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(1500, "meters"),
  5217. default: true
  5218. },
  5219. {
  5220. name: "Megamacro",
  5221. height: math.unit(150, "km")
  5222. },
  5223. {
  5224. name: "Gigamacro",
  5225. height: math.unit(27000, "km")
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(225, "lb"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/abysgar/front.svg",
  5238. extra: 1739/1614,
  5239. bottom: 71/1810
  5240. }
  5241. },
  5242. frontNsfw: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(225, "lb"),
  5245. name: "Front (NSFW)",
  5246. image: {
  5247. source: "./media/characters/abysgar/front-nsfw.svg",
  5248. extra: 1739/1614,
  5249. bottom: 71/1810
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(4.6, "feet"),
  5254. weight: math.unit(225, "lb"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/abysgar/back.svg",
  5258. extra: 1384/1327,
  5259. bottom: 0/1384
  5260. }
  5261. },
  5262. head: {
  5263. height: math.unit(1.25, "feet"),
  5264. name: "Head",
  5265. image: {
  5266. source: "./media/characters/abysgar/head.svg",
  5267. extra: 669/569,
  5268. bottom: 0/669
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Small",
  5275. height: math.unit(4.5, "meters")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(1250, "meters"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(125, "km")
  5285. },
  5286. {
  5287. name: "Gigamacro",
  5288. height: math.unit(26000, "km")
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(180, "lb"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/yakuz/front.svg"
  5301. }
  5302. }
  5303. },
  5304. [
  5305. {
  5306. name: "Small",
  5307. height: math.unit(5, "meters")
  5308. },
  5309. {
  5310. name: "Macro",
  5311. height: math.unit(1500, "meters"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(200, "km")
  5317. },
  5318. {
  5319. name: "Gigamacro",
  5320. height: math.unit(100000, "km")
  5321. }
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(175, "lb"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/mirova/front.svg",
  5333. extra: 3334 / 3071,
  5334. bottom: 42 / 3375.6
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Small",
  5341. height: math.unit(5, "meters")
  5342. },
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(900, "meters"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Megamacro",
  5350. height: math.unit(135, "km")
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(20000, "km")
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5360. {
  5361. side: {
  5362. height: math.unit(28.35, "feet"),
  5363. weight: math.unit(99.75, "tons"),
  5364. name: "Side",
  5365. image: {
  5366. source: "./media/characters/asana-mech/side.svg",
  5367. extra: 923 / 699,
  5368. bottom: 50 / 975
  5369. }
  5370. },
  5371. chaingun: {
  5372. height: math.unit(7, "feet"),
  5373. weight: math.unit(2400, "lb"),
  5374. name: "Chaingun",
  5375. image: {
  5376. source: "./media/characters/asana-mech/chaingun.svg"
  5377. }
  5378. },
  5379. laser: {
  5380. height: math.unit(7.12, "feet"),
  5381. weight: math.unit(2000, "lb"),
  5382. name: "Laser",
  5383. image: {
  5384. source: "./media/characters/asana-mech/laser.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(28.35, "feet"),
  5392. default: true
  5393. },
  5394. {
  5395. name: "Macro",
  5396. height: math.unit(2500, "feet")
  5397. },
  5398. {
  5399. name: "Megamacro",
  5400. height: math.unit(25, "miles")
  5401. },
  5402. {
  5403. name: "Examacro",
  5404. height: math.unit(6e8, "lightyears")
  5405. },
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5410. {
  5411. front: {
  5412. height: math.unit(5, "meters"),
  5413. weight: math.unit(1000, "kg"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/asche/front.svg",
  5417. extra: 1258 / 1190,
  5418. bottom: 47 / 1305
  5419. }
  5420. },
  5421. frontUnderwear: {
  5422. height: math.unit(5, "meters"),
  5423. weight: math.unit(1000, "kg"),
  5424. name: "Front (Underwear)",
  5425. image: {
  5426. source: "./media/characters/asche/front-underwear.svg",
  5427. extra: 1258 / 1190,
  5428. bottom: 47 / 1305
  5429. }
  5430. },
  5431. frontDressed: {
  5432. height: math.unit(5, "meters"),
  5433. weight: math.unit(1000, "kg"),
  5434. name: "Front (Dressed)",
  5435. image: {
  5436. source: "./media/characters/asche/front-dressed.svg",
  5437. extra: 1258 / 1190,
  5438. bottom: 47 / 1305
  5439. }
  5440. },
  5441. frontArmor: {
  5442. height: math.unit(5, "meters"),
  5443. weight: math.unit(1000, "kg"),
  5444. name: "Front (Armored)",
  5445. image: {
  5446. source: "./media/characters/asche/front-armored.svg",
  5447. extra: 1374 / 1308,
  5448. bottom: 23 / 1397
  5449. }
  5450. },
  5451. mp724: {
  5452. height: math.unit(0.96, "meters"),
  5453. weight: math.unit(38, "kg"),
  5454. name: "H&K MP724",
  5455. image: {
  5456. source: "./media/characters/asche/h&k-mp724.svg"
  5457. }
  5458. },
  5459. side: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/asche/side.svg",
  5465. extra: 1717 / 1609,
  5466. bottom: 0.005
  5467. }
  5468. },
  5469. back: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Back",
  5473. image: {
  5474. source: "./media/characters/asche/back.svg",
  5475. extra: 1570 / 1501
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "DEFCON 5",
  5482. height: math.unit(5, "meters")
  5483. },
  5484. {
  5485. name: "DEFCON 4",
  5486. height: math.unit(500, "meters"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "DEFCON 3",
  5491. height: math.unit(5, "km")
  5492. },
  5493. {
  5494. name: "DEFCON 2",
  5495. height: math.unit(500, "km")
  5496. },
  5497. {
  5498. name: "DEFCON 1",
  5499. height: math.unit(500000, "km")
  5500. },
  5501. {
  5502. name: "DEFCON 0",
  5503. height: math.unit(3, "gigaparsecs")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(7, "feet"),
  5512. weight: math.unit(92.7, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/gale/front.svg",
  5516. extra: 977/919,
  5517. bottom: 105/1082
  5518. }
  5519. },
  5520. side: {
  5521. height: math.unit(6.7, "feet"),
  5522. weight: math.unit(92.7, "kg"),
  5523. name: "Side",
  5524. image: {
  5525. source: "./media/characters/gale/side.svg",
  5526. extra: 978/922,
  5527. bottom: 140/1118
  5528. }
  5529. },
  5530. back: {
  5531. height: math.unit(7, "feet"),
  5532. weight: math.unit(92.7, "kg"),
  5533. name: "Back",
  5534. image: {
  5535. source: "./media/characters/gale/back.svg",
  5536. extra: 966/920,
  5537. bottom: 61/1027
  5538. }
  5539. },
  5540. maw: {
  5541. height: math.unit(2.23, "feet"),
  5542. name: "Maw",
  5543. image: {
  5544. source: "./media/characters/gale/maw.svg"
  5545. }
  5546. },
  5547. foot: {
  5548. height: math.unit(2.1, "feet"),
  5549. name: "Foot",
  5550. image: {
  5551. source: "./media/characters/gale/foot.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(7, "feet")
  5559. },
  5560. {
  5561. name: "Macro",
  5562. height: math.unit(150, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Macro+",
  5567. height: math.unit(300, "feet")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(5 + 10/12, "feet"),
  5576. weight: math.unit(67, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/draylen/front.svg",
  5580. extra: 832/777,
  5581. bottom: 85/917
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 10/12, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(150, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(7 + 9 / 12, "feet"),
  5602. weight: math.unit(379, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/chez/front.svg"
  5606. }
  5607. },
  5608. side: {
  5609. height: math.unit(7 + 9 / 12, "feet"),
  5610. weight: math.unit(379, "lbs"),
  5611. name: "Side",
  5612. image: {
  5613. source: "./media/characters/chez/side.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(7 + 9 / 12, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "God King",
  5625. height: math.unit(9750000, "meters")
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(275, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/kaylum/front.svg",
  5638. bottom: 0.01,
  5639. extra: 1166 / 1031
  5640. }
  5641. },
  5642. frontWingless: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(275, "lbs"),
  5645. name: "Front (Wingless)",
  5646. image: {
  5647. source: "./media/characters/kaylum/front-wingless.svg",
  5648. bottom: 0.01,
  5649. extra: 1117 / 1031
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(3.05, "meters")
  5657. },
  5658. {
  5659. name: "Master",
  5660. height: math.unit(5.5, "meters")
  5661. },
  5662. {
  5663. name: "Rampage",
  5664. height: math.unit(19, "meters")
  5665. },
  5666. {
  5667. name: "Macro Lite",
  5668. height: math.unit(37, "meters")
  5669. },
  5670. {
  5671. name: "Hyper Predator",
  5672. height: math.unit(61, "meters")
  5673. },
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(138, "meters"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(5 + 5 / 12, "feet"),
  5686. weight: math.unit(120, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/geta/front.svg",
  5690. extra: 1003/933,
  5691. bottom: 21/1024
  5692. }
  5693. },
  5694. paw: {
  5695. height: math.unit(0.35, "feet"),
  5696. name: "Paw",
  5697. image: {
  5698. source: "./media/characters/geta/paw.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(3, "inches"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 5 / 12, "feet")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(300, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/tyrnn/front.svg"
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Main Height",
  5729. height: math.unit(355, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Fave. Height",
  5734. height: math.unit(2400, "feet")
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/appledectomy/front.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(2500, "feet")
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(50, "miles"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Gigamacro",
  5762. height: math.unit(5000, "miles")
  5763. },
  5764. {
  5765. name: "Teramacro",
  5766. height: math.unit(250000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(200, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/vulpes/front.svg",
  5779. extra: 573 / 543,
  5780. bottom: 0.033
  5781. }
  5782. },
  5783. side: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(200, "lbs"),
  5786. name: "Side",
  5787. image: {
  5788. source: "./media/characters/vulpes/side.svg",
  5789. extra: 577 / 549,
  5790. bottom: 11 / 588
  5791. }
  5792. },
  5793. back: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(200, "lbs"),
  5796. name: "Back",
  5797. image: {
  5798. source: "./media/characters/vulpes/back.svg",
  5799. extra: 573 / 549,
  5800. bottom: 20 / 593
  5801. }
  5802. },
  5803. feet: {
  5804. height: math.unit(1.276, "feet"),
  5805. name: "Feet",
  5806. image: {
  5807. source: "./media/characters/vulpes/feet.svg"
  5808. }
  5809. },
  5810. maw: {
  5811. height: math.unit(1.18, "feet"),
  5812. name: "Maw",
  5813. image: {
  5814. source: "./media/characters/vulpes/maw.svg"
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(2, "inches")
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6.3, "feet")
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(850, "feet")
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(7500, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Gigamacro",
  5838. height: math.unit(570000, "miles")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/front.svg"
  5851. }
  5852. },
  5853. side: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Side",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/side.svg"
  5859. }
  5860. },
  5861. back: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(210, "lbs"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/back.svg"
  5867. }
  5868. },
  5869. feral: {
  5870. height: math.unit(9, "feet"),
  5871. weight: math.unit(700, "lbs"),
  5872. name: "Feral",
  5873. image: {
  5874. source: "./media/characters/rain-fallen/feral.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Meddling with Mortals",
  5881. height: math.unit(8 + 8/12, "feet")
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(5, "meter")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(150, "meter"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Megamacro",
  5894. height: math.unit(278e6, "meter")
  5895. },
  5896. {
  5897. name: "Gigamacro",
  5898. height: math.unit(2e9, "meter")
  5899. },
  5900. {
  5901. name: "Teramacro",
  5902. height: math.unit(8e12, "meter")
  5903. },
  5904. {
  5905. name: "Devourer",
  5906. height: math.unit(14, "zettameters")
  5907. },
  5908. {
  5909. name: "Scarlet King",
  5910. height: math.unit(18, "yottameters")
  5911. },
  5912. {
  5913. name: "Void",
  5914. height: math.unit(1e88, "yottameters")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5920. {
  5921. standing: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(180, "lbs"),
  5924. name: "Standing",
  5925. image: {
  5926. source: "./media/characters/zaakira/standing.svg",
  5927. extra: 1599/1504,
  5928. bottom: 39/1638
  5929. }
  5930. },
  5931. laying: {
  5932. height: math.unit(3.3, "feet"),
  5933. weight: math.unit(180, "lbs"),
  5934. name: "Laying",
  5935. image: {
  5936. source: "./media/characters/zaakira/laying.svg"
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(12, "feet")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(279, "feet"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5954. {
  5955. femSfw: {
  5956. height: math.unit(8, "feet"),
  5957. weight: math.unit(350, "lb"),
  5958. name: "Fem",
  5959. image: {
  5960. source: "./media/characters/sigvald/fem-sfw.svg",
  5961. extra: 182 / 164,
  5962. bottom: 8.7 / 190.5
  5963. }
  5964. },
  5965. femNsfw: {
  5966. height: math.unit(8, "feet"),
  5967. weight: math.unit(350, "lb"),
  5968. name: "Fem (NSFW)",
  5969. image: {
  5970. source: "./media/characters/sigvald/fem-nsfw.svg",
  5971. extra: 182 / 164,
  5972. bottom: 8.7 / 190.5
  5973. }
  5974. },
  5975. maleNsfw: {
  5976. height: math.unit(8, "feet"),
  5977. weight: math.unit(350, "lb"),
  5978. name: "Male (NSFW)",
  5979. image: {
  5980. source: "./media/characters/sigvald/male-nsfw.svg",
  5981. extra: 182 / 164,
  5982. bottom: 8.7 / 190.5
  5983. }
  5984. },
  5985. hermNsfw: {
  5986. height: math.unit(8, "feet"),
  5987. weight: math.unit(350, "lb"),
  5988. name: "Herm (NSFW)",
  5989. image: {
  5990. source: "./media/characters/sigvald/herm-nsfw.svg",
  5991. extra: 182 / 164,
  5992. bottom: 8.7 / 190.5
  5993. }
  5994. },
  5995. dick: {
  5996. height: math.unit(2.36, "feet"),
  5997. name: "Dick",
  5998. image: {
  5999. source: "./media/characters/sigvald/dick.svg"
  6000. }
  6001. },
  6002. eye: {
  6003. height: math.unit(0.31, "feet"),
  6004. name: "Eye",
  6005. image: {
  6006. source: "./media/characters/sigvald/eye.svg"
  6007. }
  6008. },
  6009. mouth: {
  6010. height: math.unit(0.92, "feet"),
  6011. name: "Mouth",
  6012. image: {
  6013. source: "./media/characters/sigvald/mouth.svg"
  6014. }
  6015. },
  6016. paws: {
  6017. height: math.unit(2.2, "feet"),
  6018. name: "Paws",
  6019. image: {
  6020. source: "./media/characters/sigvald/paws.svg"
  6021. }
  6022. }
  6023. },
  6024. [
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(8, "feet")
  6028. },
  6029. {
  6030. name: "Large",
  6031. height: math.unit(12, "feet")
  6032. },
  6033. {
  6034. name: "Larger",
  6035. height: math.unit(20, "feet")
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(150, "feet")
  6040. },
  6041. {
  6042. name: "Macro+",
  6043. height: math.unit(200, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6050. {
  6051. side: {
  6052. height: math.unit(12, "feet"),
  6053. weight: math.unit(2000, "kg"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/scott/side.svg",
  6057. extra: 754 / 724,
  6058. bottom: 0.069
  6059. }
  6060. },
  6061. upright: {
  6062. height: math.unit(12, "feet"),
  6063. weight: math.unit(2000, "kg"),
  6064. name: "Upright",
  6065. image: {
  6066. source: "./media/characters/scott/upright.svg",
  6067. extra: 3881 / 3722,
  6068. bottom: 0.05
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(12, "feet"),
  6076. default: true
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6082. {
  6083. side: {
  6084. height: math.unit(8, "meters"),
  6085. weight: math.unit(84755, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/tobias/side.svg",
  6089. extra: 1474 / 1096,
  6090. bottom: 38.9 / 1513.1235
  6091. }
  6092. },
  6093. maw: {
  6094. height: math.unit(2.3, "meters"),
  6095. name: "Maw",
  6096. image: {
  6097. source: "./media/characters/tobias/maw.svg"
  6098. }
  6099. },
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(8, "meters"),
  6105. default: true
  6106. },
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6111. {
  6112. front: {
  6113. height: math.unit(5.5, "feet"),
  6114. weight: math.unit(400, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/kieran/front.svg",
  6118. extra: 2694 / 2364,
  6119. bottom: 217 / 2908
  6120. }
  6121. },
  6122. side: {
  6123. height: math.unit(5.5, "feet"),
  6124. weight: math.unit(400, "lbs"),
  6125. name: "Side",
  6126. image: {
  6127. source: "./media/characters/kieran/side.svg",
  6128. extra: 875 / 777,
  6129. bottom: 84.6 / 959
  6130. }
  6131. },
  6132. },
  6133. [
  6134. {
  6135. name: "Normal",
  6136. height: math.unit(5.5, "feet"),
  6137. default: true
  6138. },
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6143. {
  6144. side: {
  6145. height: math.unit(2, "meters"),
  6146. weight: math.unit(70, "kg"),
  6147. name: "Side",
  6148. image: {
  6149. source: "./media/characters/sanya/side.svg",
  6150. bottom: 0.02,
  6151. extra: 1.02
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Small",
  6158. height: math.unit(2, "meters")
  6159. },
  6160. {
  6161. name: "Normal",
  6162. height: math.unit(3, "meters")
  6163. },
  6164. {
  6165. name: "Macro",
  6166. height: math.unit(16, "meters"),
  6167. default: true
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6173. {
  6174. front: {
  6175. height: math.unit(2, "meters"),
  6176. weight: math.unit(120, "kg"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/miranda/front.svg",
  6180. extra: 195 / 185,
  6181. bottom: 10.9 / 206.5
  6182. }
  6183. },
  6184. back: {
  6185. height: math.unit(2, "meters"),
  6186. weight: math.unit(120, "kg"),
  6187. name: "Back",
  6188. image: {
  6189. source: "./media/characters/miranda/back.svg",
  6190. extra: 201 / 193,
  6191. bottom: 2.3 / 203.7
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(10, "feet"),
  6199. default: true
  6200. }
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "James", species: ["deer"], tags: ["anthro"] },
  6205. {
  6206. side: {
  6207. height: math.unit(2, "meters"),
  6208. weight: math.unit(100, "kg"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/james/front.svg",
  6212. extra: 10 / 8.5
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(8.5, "feet"),
  6220. default: true
  6221. }
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6226. {
  6227. side: {
  6228. height: math.unit(9.5, "feet"),
  6229. weight: math.unit(2500, "lbs"),
  6230. name: "Side",
  6231. image: {
  6232. source: "./media/characters/heather/side.svg"
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(9.5, "feet"),
  6240. default: true
  6241. }
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6246. {
  6247. side: {
  6248. height: math.unit(6.5, "feet"),
  6249. weight: math.unit(400, "lbs"),
  6250. name: "Side",
  6251. image: {
  6252. source: "./media/characters/lukas/side.svg",
  6253. extra: 7.25 / 6.5
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(6.5, "feet"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6267. {
  6268. side: {
  6269. height: math.unit(5, "feet"),
  6270. weight: math.unit(3000, "lbs"),
  6271. name: "Side",
  6272. image: {
  6273. source: "./media/characters/louise/side.svg"
  6274. }
  6275. },
  6276. },
  6277. [
  6278. {
  6279. name: "Normal",
  6280. height: math.unit(5, "feet"),
  6281. default: true
  6282. }
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6287. {
  6288. side: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(150, "lbs"),
  6291. name: "Side",
  6292. image: {
  6293. source: "./media/characters/ramona/side.svg",
  6294. extra: 871/854,
  6295. bottom: 41/912
  6296. }
  6297. },
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(6 + 4/12, "feet")
  6303. },
  6304. {
  6305. name: "Minimacro",
  6306. height: math.unit(5.3, "meters"),
  6307. default: true
  6308. },
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(20, "stories")
  6312. },
  6313. {
  6314. name: "Macro+",
  6315. height: math.unit(50, "stories")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6321. {
  6322. standing: {
  6323. height: math.unit(5.75, "feet"),
  6324. weight: math.unit(160, "lbs"),
  6325. name: "Standing",
  6326. image: {
  6327. source: "./media/characters/deerpuff/standing.svg",
  6328. extra: 682 / 624
  6329. }
  6330. },
  6331. sitting: {
  6332. height: math.unit(5.75 / 1.79, "feet"),
  6333. weight: math.unit(160, "lbs"),
  6334. name: "Sitting",
  6335. image: {
  6336. source: "./media/characters/deerpuff/sitting.svg",
  6337. bottom: 44 / 400,
  6338. extra: 1
  6339. }
  6340. },
  6341. taurLaying: {
  6342. height: math.unit(6, "feet"),
  6343. weight: math.unit(400, "lbs"),
  6344. name: "Taur (Laying)",
  6345. image: {
  6346. source: "./media/characters/deerpuff/taur-laying.svg"
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Puffball",
  6353. height: math.unit(6, "inches")
  6354. },
  6355. {
  6356. name: "Normalpuff",
  6357. height: math.unit(5.75, "feet")
  6358. },
  6359. {
  6360. name: "Macropuff",
  6361. height: math.unit(1500, "feet"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megapuff",
  6366. height: math.unit(500, "miles")
  6367. },
  6368. {
  6369. name: "Gigapuff",
  6370. height: math.unit(250000, "miles")
  6371. },
  6372. {
  6373. name: "Omegapuff",
  6374. height: math.unit(1000, "lightyears")
  6375. },
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6380. {
  6381. stomping: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(170, "lbs"),
  6384. name: "Stomping",
  6385. image: {
  6386. source: "./media/characters/vivian/stomping.svg"
  6387. }
  6388. },
  6389. sitting: {
  6390. height: math.unit(6 / 1.75, "feet"),
  6391. weight: math.unit(170, "lbs"),
  6392. name: "Sitting",
  6393. image: {
  6394. source: "./media/characters/vivian/sitting.svg",
  6395. bottom: 1 / 6.4,
  6396. extra: 1,
  6397. }
  6398. },
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(7, "feet"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(10, "stories")
  6409. },
  6410. {
  6411. name: "Macro+",
  6412. height: math.unit(30, "stories")
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(10, "miles")
  6417. },
  6418. {
  6419. name: "Megamacro+",
  6420. height: math.unit(2750000, "meters")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(160, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/prince/front.svg",
  6433. extra: 1938/1682,
  6434. bottom: 45/1983
  6435. }
  6436. },
  6437. back: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(160, "lbs"),
  6440. name: "Back",
  6441. image: {
  6442. source: "./media/characters/prince/back.svg",
  6443. extra: 1955/1726,
  6444. bottom: 6/1961
  6445. }
  6446. },
  6447. },
  6448. [
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(7.75, "feet"),
  6452. default: true
  6453. },
  6454. {
  6455. name: "Not cute",
  6456. height: math.unit(17, "feet")
  6457. },
  6458. {
  6459. name: "I said NOT",
  6460. height: math.unit(91, "feet")
  6461. },
  6462. {
  6463. name: "Please stop",
  6464. height: math.unit(560, "feet")
  6465. },
  6466. {
  6467. name: "What have you done",
  6468. height: math.unit(2200, "feet")
  6469. },
  6470. {
  6471. name: "Deer God",
  6472. height: math.unit(3.6, "miles")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6478. {
  6479. standing: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(300, "lbs"),
  6482. name: "Standing",
  6483. image: {
  6484. source: "./media/characters/psymon/standing.svg",
  6485. extra: 1888 / 1810,
  6486. bottom: 0.05
  6487. }
  6488. },
  6489. slithering: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(300, "lbs"),
  6492. name: "Slithering",
  6493. image: {
  6494. source: "./media/characters/psymon/slithering.svg",
  6495. extra: 1330 / 1224
  6496. }
  6497. },
  6498. slitheringAlt: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(300, "lbs"),
  6501. name: "Slithering (Alt)",
  6502. image: {
  6503. source: "./media/characters/psymon/slithering-alt.svg",
  6504. extra: 1330 / 1224
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Normal",
  6511. height: math.unit(11.25, "feet"),
  6512. default: true
  6513. },
  6514. {
  6515. name: "Large",
  6516. height: math.unit(27, "feet")
  6517. },
  6518. {
  6519. name: "Giant",
  6520. height: math.unit(87, "feet")
  6521. },
  6522. {
  6523. name: "Macro",
  6524. height: math.unit(365, "feet")
  6525. },
  6526. {
  6527. name: "Megamacro",
  6528. height: math.unit(3, "miles")
  6529. },
  6530. {
  6531. name: "World Serpent",
  6532. height: math.unit(8000, "miles")
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(180, "lbs"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/daimos/front.svg",
  6545. extra: 4160 / 3897,
  6546. bottom: 0.021
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(8, "feet"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Big Dog",
  6558. height: math.unit(22, "feet")
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(127, "feet")
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(3600, "feet")
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6572. {
  6573. side: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(180, "lbs"),
  6576. name: "Side",
  6577. image: {
  6578. source: "./media/characters/blake/side.svg",
  6579. extra: 1212 / 1120,
  6580. bottom: 0.05
  6581. }
  6582. },
  6583. crouched: {
  6584. height: math.unit(6 * 0.57, "feet"),
  6585. weight: math.unit(180, "lbs"),
  6586. name: "Crouched",
  6587. image: {
  6588. source: "./media/characters/blake/crouched.svg",
  6589. extra: 840 / 587,
  6590. bottom: 0.04
  6591. }
  6592. },
  6593. bent: {
  6594. height: math.unit(6 * 0.75, "feet"),
  6595. weight: math.unit(180, "lbs"),
  6596. name: "Bent",
  6597. image: {
  6598. source: "./media/characters/blake/bent.svg",
  6599. extra: 592 / 544,
  6600. bottom: 0.035
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(8 + 1 / 6, "feet"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Big Backside",
  6612. height: math.unit(37, "feet")
  6613. },
  6614. {
  6615. name: "Subway Shredder",
  6616. height: math.unit(72, "feet")
  6617. },
  6618. {
  6619. name: "City Carver",
  6620. height: math.unit(1675, "feet")
  6621. },
  6622. {
  6623. name: "Tectonic Tweaker",
  6624. height: math.unit(2300, "miles")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(180, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/guisetto/front.svg",
  6637. extra: 856 / 817,
  6638. bottom: 0.06
  6639. }
  6640. },
  6641. airborne: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(180, "lbs"),
  6644. name: "Airborne",
  6645. image: {
  6646. source: "./media/characters/guisetto/airborne.svg",
  6647. extra: 584 / 525
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(10 + 11 / 12, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Large",
  6659. height: math.unit(35, "feet")
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(475, "feet")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(6, "feet"),
  6672. weight: math.unit(180, "lbs"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/luxor/front.svg",
  6676. extra: 2940 / 2152
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(180, "lbs"),
  6682. name: "Back",
  6683. image: {
  6684. source: "./media/characters/luxor/back.svg",
  6685. extra: 1083 / 960
  6686. }
  6687. },
  6688. },
  6689. [
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(5 + 5 / 6, "feet"),
  6693. default: true
  6694. },
  6695. {
  6696. name: "Lamp",
  6697. height: math.unit(50, "feet")
  6698. },
  6699. {
  6700. name: "Lämp",
  6701. height: math.unit(300, "feet")
  6702. },
  6703. {
  6704. name: "The sun is a lamp",
  6705. height: math.unit(250000, "miles")
  6706. },
  6707. ]
  6708. ))
  6709. characterMakers.push(() => makeCharacter(
  6710. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6711. {
  6712. front: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(50, "lbs"),
  6715. name: "Front",
  6716. image: {
  6717. source: "./media/characters/huoyan/front.svg"
  6718. }
  6719. },
  6720. side: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(180, "lbs"),
  6723. name: "Side",
  6724. image: {
  6725. source: "./media/characters/huoyan/side.svg"
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Chef",
  6732. height: math.unit(9, "feet")
  6733. },
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(65, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Macro",
  6741. height: math.unit(780, "feet")
  6742. },
  6743. {
  6744. name: "Flaming Mountain",
  6745. height: math.unit(4.8, "miles")
  6746. },
  6747. {
  6748. name: "Celestial",
  6749. height: math.unit(765000, "miles")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(5 + 3 / 4, "feet"),
  6758. weight: math.unit(120, "lbs"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/tails/front.svg"
  6762. }
  6763. }
  6764. },
  6765. [
  6766. {
  6767. name: "Normal",
  6768. height: math.unit(5 + 3 / 4, "feet"),
  6769. default: true
  6770. }
  6771. ]
  6772. ))
  6773. characterMakers.push(() => makeCharacter(
  6774. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6775. {
  6776. front: {
  6777. height: math.unit(4, "feet"),
  6778. weight: math.unit(50, "lbs"),
  6779. name: "Front",
  6780. image: {
  6781. source: "./media/characters/rainy/front.svg"
  6782. }
  6783. }
  6784. },
  6785. [
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(800, "feet"),
  6789. default: true
  6790. }
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(150, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/rainier/front.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Micro",
  6808. height: math.unit(2, "mm"),
  6809. default: true
  6810. }
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(8 + 4/12, "feet"),
  6818. weight: math.unit(450, "kilograms"),
  6819. volume: math.unit(5, "cups"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/andy-renard/front.svg",
  6823. extra: 1839/1726,
  6824. bottom: 134/1973
  6825. }
  6826. },
  6827. back: {
  6828. height: math.unit(8 + 4/12, "feet"),
  6829. weight: math.unit(450, "kilograms"),
  6830. volume: math.unit(5, "cups"),
  6831. name: "Back",
  6832. image: {
  6833. source: "./media/characters/andy-renard/back.svg",
  6834. extra: 1838/1710,
  6835. bottom: 105/1943
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Tall",
  6842. height: math.unit(8 + 4/12, "feet")
  6843. },
  6844. {
  6845. name: "Mini Macro",
  6846. height: math.unit(15, "feet"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(100, "feet")
  6852. },
  6853. {
  6854. name: "Mega Macro",
  6855. height: math.unit(1000, "feet")
  6856. },
  6857. {
  6858. name: "Giga Macro",
  6859. height: math.unit(10, "miles")
  6860. },
  6861. {
  6862. name: "God Macro",
  6863. height: math.unit(1, "multiverse")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(210, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/cimmaron/front-sfw.svg",
  6876. extra: 701 / 676,
  6877. bottom: 0.046
  6878. }
  6879. },
  6880. back: {
  6881. height: math.unit(6, "feet"),
  6882. weight: math.unit(210, "lbs"),
  6883. name: "Back",
  6884. image: {
  6885. source: "./media/characters/cimmaron/back-sfw.svg",
  6886. extra: 701 / 676,
  6887. bottom: 0.046
  6888. }
  6889. },
  6890. frontNsfw: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(210, "lbs"),
  6893. name: "Front (NSFW)",
  6894. image: {
  6895. source: "./media/characters/cimmaron/front-nsfw.svg",
  6896. extra: 701 / 676,
  6897. bottom: 0.046
  6898. }
  6899. },
  6900. backNsfw: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(210, "lbs"),
  6903. name: "Back (NSFW)",
  6904. image: {
  6905. source: "./media/characters/cimmaron/back-nsfw.svg",
  6906. extra: 701 / 676,
  6907. bottom: 0.046
  6908. }
  6909. },
  6910. dick: {
  6911. height: math.unit(1.714, "feet"),
  6912. name: "Dick",
  6913. image: {
  6914. source: "./media/characters/cimmaron/dick.svg"
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(6, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Macro Mayor",
  6926. height: math.unit(350, "meters")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(200, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/akari/front.svg",
  6939. extra: 962 / 901,
  6940. bottom: 0.04
  6941. }
  6942. }
  6943. },
  6944. [
  6945. {
  6946. name: "Micro",
  6947. height: math.unit(5, "inches"),
  6948. default: true
  6949. },
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(7, "feet")
  6953. },
  6954. ]
  6955. ))
  6956. characterMakers.push(() => makeCharacter(
  6957. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6958. {
  6959. front: {
  6960. height: math.unit(6, "feet"),
  6961. weight: math.unit(140, "lbs"),
  6962. name: "Front",
  6963. image: {
  6964. source: "./media/characters/cynosura/front.svg",
  6965. extra: 437/410,
  6966. bottom: 9/446
  6967. }
  6968. },
  6969. back: {
  6970. height: math.unit(6, "feet"),
  6971. weight: math.unit(140, "lbs"),
  6972. name: "Back",
  6973. image: {
  6974. source: "./media/characters/cynosura/back.svg",
  6975. extra: 1304/1160,
  6976. bottom: 71/1375
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Micro",
  6983. height: math.unit(4, "inches")
  6984. },
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(5.75, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Tall",
  6992. height: math.unit(10, "feet")
  6993. },
  6994. {
  6995. name: "Big",
  6996. height: math.unit(20, "feet")
  6997. },
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(50, "feet")
  7001. },
  7002. ]
  7003. ))
  7004. characterMakers.push(() => makeCharacter(
  7005. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7006. {
  7007. front: {
  7008. height: math.unit(13 + 2/12, "feet"),
  7009. weight: math.unit(800, "kg"),
  7010. name: "Front",
  7011. image: {
  7012. source: "./media/characters/gin/front.svg",
  7013. extra: 1312/1191,
  7014. bottom: 45/1357
  7015. }
  7016. },
  7017. mouth: {
  7018. height: math.unit(2.39 * 1.8, "feet"),
  7019. name: "Mouth",
  7020. image: {
  7021. source: "./media/characters/gin/mouth.svg"
  7022. }
  7023. },
  7024. hand: {
  7025. height: math.unit(1.57 * 2.19, "feet"),
  7026. name: "Hand",
  7027. image: {
  7028. source: "./media/characters/gin/hand.svg"
  7029. }
  7030. },
  7031. foot: {
  7032. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7033. name: "Foot",
  7034. image: {
  7035. source: "./media/characters/gin/foot.svg"
  7036. }
  7037. },
  7038. sole: {
  7039. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7040. name: "Sole",
  7041. image: {
  7042. source: "./media/characters/gin/sole.svg"
  7043. }
  7044. },
  7045. },
  7046. [
  7047. {
  7048. name: "Very Small",
  7049. height: math.unit(13 + 2 / 12, "feet")
  7050. },
  7051. {
  7052. name: "Micro",
  7053. height: math.unit(600, "miles")
  7054. },
  7055. {
  7056. name: "Regular",
  7057. height: math.unit(20, "earths"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Macro",
  7062. height: math.unit(2.2, "solarradii")
  7063. },
  7064. {
  7065. name: "Teramacro",
  7066. height: math.unit(1.2, "galaxies")
  7067. },
  7068. {
  7069. name: "Omegamacro",
  7070. height: math.unit(200, "universes")
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(6 + 1 / 6, "feet"),
  7079. weight: math.unit(178, "lbs"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/guy/front.svg"
  7083. }
  7084. }
  7085. },
  7086. [
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(6 + 1 / 6, "feet"),
  7090. default: true
  7091. },
  7092. {
  7093. name: "Large",
  7094. height: math.unit(25 + 7 / 12, "feet")
  7095. },
  7096. {
  7097. name: "Macro",
  7098. height: math.unit(60 + 9 / 12, "feet")
  7099. },
  7100. {
  7101. name: "Macro+",
  7102. height: math.unit(246, "feet")
  7103. },
  7104. {
  7105. name: "Macro++",
  7106. height: math.unit(878, "feet")
  7107. }
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(9, "feet"),
  7115. weight: math.unit(800, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/tiberius/front.svg",
  7119. extra: 2295 / 2071
  7120. }
  7121. },
  7122. back: {
  7123. height: math.unit(9, "feet"),
  7124. weight: math.unit(800, "lbs"),
  7125. name: "Back",
  7126. image: {
  7127. source: "./media/characters/tiberius/back.svg",
  7128. extra: 2373 / 2160
  7129. }
  7130. },
  7131. },
  7132. [
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(9, "feet"),
  7136. default: true
  7137. }
  7138. ]
  7139. ))
  7140. characterMakers.push(() => makeCharacter(
  7141. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7142. {
  7143. front: {
  7144. height: math.unit(6, "feet"),
  7145. weight: math.unit(600, "lbs"),
  7146. name: "Front",
  7147. image: {
  7148. source: "./media/characters/surgo/front.svg",
  7149. extra: 3591 / 2227
  7150. }
  7151. },
  7152. back: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(600, "lbs"),
  7155. name: "Back",
  7156. image: {
  7157. source: "./media/characters/surgo/back.svg",
  7158. extra: 3557 / 2228
  7159. }
  7160. },
  7161. laying: {
  7162. height: math.unit(6 * 0.85, "feet"),
  7163. weight: math.unit(600, "lbs"),
  7164. name: "Laying",
  7165. image: {
  7166. source: "./media/characters/surgo/laying.svg"
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(6, "feet"),
  7174. default: true
  7175. }
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7180. {
  7181. side: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(150, "lbs"),
  7184. name: "Side",
  7185. image: {
  7186. source: "./media/characters/cibus/side.svg",
  7187. extra: 800 / 400
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(6, "feet"),
  7195. default: true
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(240, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/nibbles/front.svg"
  7208. }
  7209. },
  7210. side: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(240, "lbs"),
  7213. name: "Side",
  7214. image: {
  7215. source: "./media/characters/nibbles/side.svg"
  7216. }
  7217. },
  7218. },
  7219. [
  7220. {
  7221. name: "Normal",
  7222. height: math.unit(9, "feet"),
  7223. default: true
  7224. }
  7225. ]
  7226. ))
  7227. characterMakers.push(() => makeCharacter(
  7228. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7229. {
  7230. side: {
  7231. height: math.unit(5 + 1 / 6, "feet"),
  7232. weight: math.unit(130, "lbs"),
  7233. name: "Side",
  7234. image: {
  7235. source: "./media/characters/rikky/side.svg",
  7236. extra: 851 / 801
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(5 + 1 / 6, "feet")
  7244. },
  7245. {
  7246. name: "Macro",
  7247. height: math.unit(152, "feet"),
  7248. default: true
  7249. },
  7250. {
  7251. name: "Megamacro",
  7252. height: math.unit(7, "miles")
  7253. }
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7258. {
  7259. side: {
  7260. height: math.unit(370, "cm"),
  7261. weight: math.unit(350, "lbs"),
  7262. name: "Side",
  7263. image: {
  7264. source: "./media/characters/malfressa/side.svg"
  7265. }
  7266. },
  7267. walking: {
  7268. height: math.unit(370, "cm"),
  7269. weight: math.unit(350, "lbs"),
  7270. name: "Walking",
  7271. image: {
  7272. source: "./media/characters/malfressa/walking.svg"
  7273. }
  7274. },
  7275. feral: {
  7276. height: math.unit(2500, "cm"),
  7277. weight: math.unit(100000, "lbs"),
  7278. name: "Feral",
  7279. image: {
  7280. source: "./media/characters/malfressa/feral.svg",
  7281. extra: 2108 / 837,
  7282. bottom: 0.02
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(370, "cm")
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(300, "meters"),
  7294. default: true
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(60, "kg"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/jaro/front.svg",
  7307. extra: 845/817,
  7308. bottom: 45/890
  7309. }
  7310. },
  7311. back: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(60, "kg"),
  7314. name: "Back",
  7315. image: {
  7316. source: "./media/characters/jaro/back.svg",
  7317. extra: 847/817,
  7318. bottom: 34/881
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(7, "inches")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(5.5, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Minimacro",
  7334. height: math.unit(20, "feet")
  7335. },
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(200, "meters")
  7339. }
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(195, "lb"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/rogue/front.svg"
  7351. }
  7352. },
  7353. },
  7354. [
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(90, "feet"),
  7358. default: true
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7364. {
  7365. standing: {
  7366. height: math.unit(5 + 8 / 12, "feet"),
  7367. weight: math.unit(140, "lb"),
  7368. name: "Standing",
  7369. image: {
  7370. source: "./media/characters/piper/standing.svg",
  7371. extra: 1440/1284,
  7372. bottom: 66/1506
  7373. }
  7374. },
  7375. running: {
  7376. height: math.unit(5 + 8 / 12, "feet"),
  7377. weight: math.unit(140, "lb"),
  7378. name: "Running",
  7379. image: {
  7380. source: "./media/characters/piper/running.svg",
  7381. extra: 3948/3655,
  7382. bottom: 0/3948
  7383. }
  7384. },
  7385. sole: {
  7386. height: math.unit(0.81, "feet"),
  7387. weight: math.unit(2, "kg"),
  7388. name: "Sole",
  7389. image: {
  7390. source: "./media/characters/piper/sole.svg"
  7391. }
  7392. },
  7393. nipple: {
  7394. height: math.unit(0.25, "feet"),
  7395. weight: math.unit(1.5, "lb"),
  7396. name: "Nipple",
  7397. image: {
  7398. source: "./media/characters/piper/nipple.svg"
  7399. }
  7400. },
  7401. head: {
  7402. height: math.unit(1.1, "feet"),
  7403. name: "Head",
  7404. image: {
  7405. source: "./media/characters/piper/head.svg"
  7406. }
  7407. },
  7408. },
  7409. [
  7410. {
  7411. name: "Micro",
  7412. height: math.unit(2, "inches")
  7413. },
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(5 + 8 / 12, "feet")
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(250, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Megamacro",
  7425. height: math.unit(7, "miles")
  7426. },
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7431. {
  7432. front: {
  7433. height: math.unit(6, "feet"),
  7434. weight: math.unit(220, "lb"),
  7435. name: "Front",
  7436. image: {
  7437. source: "./media/characters/gemini/front.svg"
  7438. }
  7439. },
  7440. back: {
  7441. height: math.unit(6, "feet"),
  7442. weight: math.unit(220, "lb"),
  7443. name: "Back",
  7444. image: {
  7445. source: "./media/characters/gemini/back.svg"
  7446. }
  7447. },
  7448. kneeling: {
  7449. height: math.unit(6 / 1.5, "feet"),
  7450. weight: math.unit(220, "lb"),
  7451. name: "Kneeling",
  7452. image: {
  7453. source: "./media/characters/gemini/kneeling.svg",
  7454. bottom: 0.02
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(300, "meters"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Megamacro",
  7466. height: math.unit(6900, "meters")
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7472. {
  7473. anthro: {
  7474. height: math.unit(2.35, "meters"),
  7475. weight: math.unit(73, "kg"),
  7476. name: "Anthro",
  7477. image: {
  7478. source: "./media/characters/alicia/anthro.svg",
  7479. extra: 2571 / 2385,
  7480. bottom: 75 / 2648
  7481. }
  7482. },
  7483. paw: {
  7484. height: math.unit(1.32, "feet"),
  7485. name: "Paw",
  7486. image: {
  7487. source: "./media/characters/alicia/paw.svg"
  7488. }
  7489. },
  7490. feral: {
  7491. height: math.unit(1.69, "meters"),
  7492. weight: math.unit(73, "kg"),
  7493. name: "Feral",
  7494. image: {
  7495. source: "./media/characters/alicia/feral.svg",
  7496. extra: 2123 / 1715,
  7497. bottom: 222 / 2349
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Normal",
  7504. height: math.unit(2.35, "meters")
  7505. },
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(60, "meters"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Megamacro",
  7513. height: math.unit(10000, "kilometers")
  7514. },
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(7, "feet"),
  7522. weight: math.unit(250, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/archy/front.svg"
  7526. }
  7527. }
  7528. },
  7529. [
  7530. {
  7531. name: "Micro",
  7532. height: math.unit(1, "inch")
  7533. },
  7534. {
  7535. name: "Shorty",
  7536. height: math.unit(5, "feet")
  7537. },
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(7, "feet")
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(600, "meters"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(1, "mile")
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(1.65, "meters"),
  7558. weight: math.unit(74, "kg"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/berri/front.svg",
  7562. extra: 857 / 837,
  7563. bottom: 18 / 877
  7564. }
  7565. },
  7566. bum: {
  7567. height: math.unit(1.46, "feet"),
  7568. name: "Bum",
  7569. image: {
  7570. source: "./media/characters/berri/bum.svg"
  7571. }
  7572. },
  7573. mouth: {
  7574. height: math.unit(0.44, "feet"),
  7575. name: "Mouth",
  7576. image: {
  7577. source: "./media/characters/berri/mouth.svg"
  7578. }
  7579. },
  7580. paw: {
  7581. height: math.unit(0.826, "feet"),
  7582. name: "Paw",
  7583. image: {
  7584. source: "./media/characters/berri/paw.svg"
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(1.65, "meters")
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(60, "m"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Megamacro",
  7600. height: math.unit(9.213, "km")
  7601. },
  7602. {
  7603. name: "Planet Eater",
  7604. height: math.unit(489, "megameters")
  7605. },
  7606. {
  7607. name: "Teramacro",
  7608. height: math.unit(2471635000000, "meters")
  7609. },
  7610. {
  7611. name: "Examacro",
  7612. height: math.unit(8.0624e+26, "meters")
  7613. }
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(1.72, "meters"),
  7621. weight: math.unit(68, "kg"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/lexi/front.svg"
  7625. }
  7626. }
  7627. },
  7628. [
  7629. {
  7630. name: "Very Smol",
  7631. height: math.unit(10, "mm")
  7632. },
  7633. {
  7634. name: "Micro",
  7635. height: math.unit(6.8, "cm"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(1.72, "m")
  7641. }
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(1.69, "meters"),
  7649. weight: math.unit(68, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/martin/front.svg",
  7653. extra: 596 / 581
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(6.85, "cm"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(1.69, "m")
  7666. }
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(1.69, "meters"),
  7674. weight: math.unit(68, "kg"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/juno/front.svg"
  7678. }
  7679. }
  7680. },
  7681. [
  7682. {
  7683. name: "Micro",
  7684. height: math.unit(7, "cm")
  7685. },
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(1.89, "m")
  7689. },
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(353, "meters"),
  7693. default: true
  7694. }
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(1.93, "meters"),
  7702. weight: math.unit(83, "kg"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/samantha/front.svg"
  7706. }
  7707. },
  7708. frontClothed: {
  7709. height: math.unit(1.93, "meters"),
  7710. weight: math.unit(83, "kg"),
  7711. name: "Front (Clothed)",
  7712. image: {
  7713. source: "./media/characters/samantha/front-clothed.svg"
  7714. }
  7715. },
  7716. back: {
  7717. height: math.unit(1.93, "meters"),
  7718. weight: math.unit(83, "kg"),
  7719. name: "Back",
  7720. image: {
  7721. source: "./media/characters/samantha/back.svg"
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(1.93, "m")
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(74, "meters"),
  7733. default: true
  7734. },
  7735. {
  7736. name: "Macro+",
  7737. height: math.unit(223, "meters"),
  7738. },
  7739. {
  7740. name: "Megamacro",
  7741. height: math.unit(8381, "meters"),
  7742. },
  7743. {
  7744. name: "Megamacro+",
  7745. height: math.unit(12000, "kilometers")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(1.92, "meters"),
  7754. weight: math.unit(80, "kg"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/dr-clay/front.svg"
  7758. }
  7759. },
  7760. frontClothed: {
  7761. height: math.unit(1.92, "meters"),
  7762. weight: math.unit(80, "kg"),
  7763. name: "Front (Clothed)",
  7764. image: {
  7765. source: "./media/characters/dr-clay/front-clothed.svg"
  7766. }
  7767. }
  7768. },
  7769. [
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(1.92, "m")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(214, "meters"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Macro+",
  7781. height: math.unit(12.237, "meters"),
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(557, "megameters"),
  7786. },
  7787. {
  7788. name: "Unimaginable",
  7789. height: math.unit(120e9, "lightyears")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(2, "meters"),
  7798. weight: math.unit(80, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7802. }
  7803. }
  7804. },
  7805. [
  7806. {
  7807. name: "Teramacro",
  7808. height: math.unit(500000, "lightyears"),
  7809. default: true
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7815. {
  7816. crux: {
  7817. height: math.unit(2, "meters"),
  7818. weight: math.unit(150, "kg"),
  7819. name: "Crux",
  7820. image: {
  7821. source: "./media/characters/vemus/crux.svg",
  7822. extra: 1074/936,
  7823. bottom: 23/1097
  7824. }
  7825. },
  7826. skunkTanuki: {
  7827. height: math.unit(2, "meters"),
  7828. weight: math.unit(150, "kg"),
  7829. name: "Skunk-Tanuki",
  7830. image: {
  7831. source: "./media/characters/vemus/skunk-tanuki.svg",
  7832. extra: 926/893,
  7833. bottom: 20/946
  7834. }
  7835. },
  7836. },
  7837. [
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(4, "meters"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Big",
  7845. height: math.unit(8, "meters")
  7846. },
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(100, "meters")
  7850. },
  7851. {
  7852. name: "Macro+",
  7853. height: math.unit(1500, "meters")
  7854. },
  7855. {
  7856. name: "Stellar",
  7857. height: math.unit(14e8, "meters")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(2, "meters"),
  7866. weight: math.unit(70, "kg"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/beherit/front.svg",
  7870. extra: 1234/1109,
  7871. bottom: 55/1289
  7872. }
  7873. }
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(6, "feet")
  7879. },
  7880. {
  7881. name: "Lorg",
  7882. height: math.unit(25, "feet"),
  7883. default: true
  7884. },
  7885. {
  7886. name: "Lorger",
  7887. height: math.unit(75, "feet")
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(200, "meters")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(2, "meters"),
  7900. weight: math.unit(150, "kg"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/everett/front.svg",
  7904. extra: 1017/866,
  7905. bottom: 86/1103
  7906. }
  7907. },
  7908. paw: {
  7909. height: math.unit(2 / 3.6, "meters"),
  7910. name: "Paw",
  7911. image: {
  7912. source: "./media/characters/everett/paw.svg"
  7913. }
  7914. },
  7915. },
  7916. [
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(15, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Lorg",
  7924. height: math.unit(70, "feet"),
  7925. default: true
  7926. },
  7927. {
  7928. name: "Lorger",
  7929. height: math.unit(250, "feet")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(500, "meters")
  7934. },
  7935. ]
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(2, "meters"),
  7942. weight: math.unit(86, "kg"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/rose/front.svg",
  7946. extra: 1785/1636,
  7947. bottom: 30/1815
  7948. },
  7949. form: "liom",
  7950. default: true
  7951. },
  7952. frontSporty: {
  7953. height: math.unit(2, "meters"),
  7954. weight: math.unit(86, "kg"),
  7955. name: "Front (Sporty)",
  7956. image: {
  7957. source: "./media/characters/rose/front-sporty.svg",
  7958. extra: 350/335,
  7959. bottom: 10/360
  7960. },
  7961. form: "liom"
  7962. },
  7963. frontAlt: {
  7964. height: math.unit(1.6, "meters"),
  7965. weight: math.unit(86, "kg"),
  7966. name: "Front (Alt)",
  7967. image: {
  7968. source: "./media/characters/rose/front-alt.svg",
  7969. extra: 299/283,
  7970. bottom: 3/302
  7971. },
  7972. form: "liom"
  7973. },
  7974. plush: {
  7975. height: math.unit(2, "meters"),
  7976. weight: math.unit(86/3, "kg"),
  7977. name: "Plush",
  7978. image: {
  7979. source: "./media/characters/rose/plush.svg",
  7980. extra: 361/337,
  7981. bottom: 11/372
  7982. },
  7983. form: "plush",
  7984. default: true
  7985. },
  7986. faeStanding: {
  7987. height: math.unit(10, "cm"),
  7988. weight: math.unit(10, "grams"),
  7989. name: "Standing",
  7990. image: {
  7991. source: "./media/characters/rose/fae-standing.svg",
  7992. extra: 1189/1060,
  7993. bottom: 27/1216
  7994. },
  7995. form: "fae",
  7996. default: true
  7997. },
  7998. faeSitting: {
  7999. height: math.unit(5, "cm"),
  8000. weight: math.unit(10, "grams"),
  8001. name: "Sitting",
  8002. image: {
  8003. source: "./media/characters/rose/fae-sitting.svg",
  8004. extra: 737/577,
  8005. bottom: 356/1093
  8006. },
  8007. form: "fae"
  8008. },
  8009. faePaw: {
  8010. height: math.unit(1.35, "cm"),
  8011. name: "Paw",
  8012. image: {
  8013. source: "./media/characters/rose/fae-paw.svg"
  8014. },
  8015. form: "fae"
  8016. },
  8017. },
  8018. [
  8019. {
  8020. name: "True Micro",
  8021. height: math.unit(9, "cm"),
  8022. form: "liom"
  8023. },
  8024. {
  8025. name: "Micro",
  8026. height: math.unit(16, "cm"),
  8027. form: "liom"
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(1.85, "meters"),
  8032. default: true,
  8033. form: "liom"
  8034. },
  8035. {
  8036. name: "Mini-Macro",
  8037. height: math.unit(5, "meters"),
  8038. form: "liom"
  8039. },
  8040. {
  8041. name: "Macro",
  8042. height: math.unit(15, "meters"),
  8043. form: "liom"
  8044. },
  8045. {
  8046. name: "True Macro",
  8047. height: math.unit(40, "meters"),
  8048. form: "liom"
  8049. },
  8050. {
  8051. name: "City Scale",
  8052. height: math.unit(1, "km"),
  8053. form: "liom"
  8054. },
  8055. {
  8056. name: "Plushie",
  8057. height: math.unit(9, "cm"),
  8058. form: "plush",
  8059. default: true
  8060. },
  8061. {
  8062. name: "Fae",
  8063. height: math.unit(10, "cm"),
  8064. form: "fae",
  8065. default: true
  8066. },
  8067. ],
  8068. {
  8069. "liom": {
  8070. name: "Liom"
  8071. },
  8072. "plush": {
  8073. name: "Plush"
  8074. },
  8075. "fae": {
  8076. name: "Fae Fox",
  8077. default: true
  8078. }
  8079. }
  8080. ))
  8081. characterMakers.push(() => makeCharacter(
  8082. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8083. {
  8084. front: {
  8085. height: math.unit(2, "meters"),
  8086. weight: math.unit(350, "lbs"),
  8087. name: "Front",
  8088. image: {
  8089. source: "./media/characters/regal/front.svg"
  8090. }
  8091. },
  8092. back: {
  8093. height: math.unit(2, "meters"),
  8094. weight: math.unit(350, "lbs"),
  8095. name: "Back",
  8096. image: {
  8097. source: "./media/characters/regal/back.svg"
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(350, "feet"),
  8105. default: true
  8106. }
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(4 + 11 / 12, "feet"),
  8114. weight: math.unit(100, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/opal/front.svg"
  8118. }
  8119. },
  8120. frontAlt: {
  8121. height: math.unit(4 + 11 / 12, "feet"),
  8122. weight: math.unit(100, "lbs"),
  8123. name: "Front (Alt)",
  8124. image: {
  8125. source: "./media/characters/opal/front-alt.svg"
  8126. }
  8127. },
  8128. },
  8129. [
  8130. {
  8131. name: "Small",
  8132. height: math.unit(4 + 11 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(20, "feet"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Macro",
  8141. height: math.unit(120, "feet")
  8142. },
  8143. {
  8144. name: "Megamacro",
  8145. height: math.unit(80, "miles")
  8146. },
  8147. {
  8148. name: "True Size",
  8149. height: math.unit(100000, "lightyears")
  8150. },
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8155. {
  8156. front: {
  8157. height: math.unit(6, "feet"),
  8158. weight: math.unit(200, "lbs"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/vector-wuff/front.svg"
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(2.8, "meters")
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(450, "meters"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Megamacro",
  8177. height: math.unit(15, "kilometers")
  8178. }
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(256, "lbs"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/dannik/front.svg"
  8190. }
  8191. }
  8192. },
  8193. [
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(69.57, "meters"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(120, "lbs"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/azura-saharah/front.svg"
  8210. }
  8211. },
  8212. back: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(120, "lbs"),
  8215. name: "Back",
  8216. image: {
  8217. source: "./media/characters/azura-saharah/back.svg"
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Macro",
  8224. height: math.unit(100, "feet"),
  8225. default: true
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8231. {
  8232. side: {
  8233. height: math.unit(5 + 4 / 12, "feet"),
  8234. weight: math.unit(163, "lbs"),
  8235. name: "Side",
  8236. image: {
  8237. source: "./media/characters/kennedy/side.svg"
  8238. }
  8239. }
  8240. },
  8241. [
  8242. {
  8243. name: "Standard Doggo",
  8244. height: math.unit(5 + 4 / 12, "feet")
  8245. },
  8246. {
  8247. name: "Big Doggo",
  8248. height: math.unit(25 + 3 / 12, "feet"),
  8249. default: true
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(5 + 5/12, "feet"),
  8258. weight: math.unit(100, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/odios-de-lunar/front.svg",
  8262. extra: 1468/1323,
  8263. bottom: 22/1490
  8264. }
  8265. }
  8266. },
  8267. [
  8268. {
  8269. name: "Micro",
  8270. height: math.unit(3, "inches")
  8271. },
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(5.5, "feet"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(100, "feet")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8285. {
  8286. back: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(220, "lbs"),
  8289. name: "Back",
  8290. image: {
  8291. source: "./media/characters/mandake/back.svg"
  8292. }
  8293. }
  8294. },
  8295. [
  8296. {
  8297. name: "Normal",
  8298. height: math.unit(7, "feet"),
  8299. default: true
  8300. },
  8301. {
  8302. name: "Macro",
  8303. height: math.unit(78, "feet")
  8304. },
  8305. {
  8306. name: "Macro+",
  8307. height: math.unit(300, "meters")
  8308. },
  8309. {
  8310. name: "Macro++",
  8311. height: math.unit(2400, "feet")
  8312. },
  8313. {
  8314. name: "Megamacro",
  8315. height: math.unit(5167, "meters")
  8316. },
  8317. {
  8318. name: "Gigamacro",
  8319. height: math.unit(41769, "miles")
  8320. },
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(6, "feet"),
  8328. weight: math.unit(120, "lbs"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/yozey/front.svg"
  8332. }
  8333. },
  8334. frontAlt: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(120, "lbs"),
  8337. name: "Front (Alt)",
  8338. image: {
  8339. source: "./media/characters/yozey/front-alt.svg"
  8340. }
  8341. },
  8342. side: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(120, "lbs"),
  8345. name: "Side",
  8346. image: {
  8347. source: "./media/characters/yozey/side.svg"
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(3, "inches"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(6, "feet")
  8360. }
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(103, "lbs"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/valeska-voss/front.svg"
  8372. }
  8373. }
  8374. },
  8375. [
  8376. {
  8377. name: "Mini-Sized Sub",
  8378. height: math.unit(3.1, "inches")
  8379. },
  8380. {
  8381. name: "Mid-Sized Sub",
  8382. height: math.unit(6.2, "inches")
  8383. },
  8384. {
  8385. name: "Full-Sized Sub",
  8386. height: math.unit(9.3, "inches")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(5 + 2 / 12, "foot"),
  8391. default: true
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(160, "lbs"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/gene-zeta/front.svg",
  8404. extra: 3006 / 2826,
  8405. bottom: 182 / 3188
  8406. }
  8407. }
  8408. },
  8409. [
  8410. {
  8411. name: "Micro",
  8412. height: math.unit(6, "inches")
  8413. },
  8414. {
  8415. name: "Normal",
  8416. height: math.unit(5 + 11 / 12, "foot"),
  8417. default: true
  8418. },
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(140, "feet")
  8422. },
  8423. {
  8424. name: "Supercharged",
  8425. height: math.unit(2500, "feet")
  8426. },
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8431. {
  8432. front: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(350, "lbs"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/razinox/front.svg",
  8438. extra: 1686 / 1548,
  8439. bottom: 28.2 / 1868
  8440. }
  8441. },
  8442. back: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(350, "lbs"),
  8445. name: "Back",
  8446. image: {
  8447. source: "./media/characters/razinox/back.svg",
  8448. extra: 1660 / 1590,
  8449. bottom: 15 / 1665
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(10 + 8 / 12, "foot")
  8457. },
  8458. {
  8459. name: "Minimacro",
  8460. height: math.unit(15, "foot")
  8461. },
  8462. {
  8463. name: "Macro",
  8464. height: math.unit(60, "foot"),
  8465. default: true
  8466. },
  8467. {
  8468. name: "Megamacro",
  8469. height: math.unit(5, "miles")
  8470. },
  8471. {
  8472. name: "Gigamacro",
  8473. height: math.unit(6000, "miles")
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8479. {
  8480. front: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(150, "lbs"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/cobalt/front.svg"
  8486. }
  8487. }
  8488. },
  8489. [
  8490. {
  8491. name: "Normal",
  8492. height: math.unit(8 + 1 / 12, "foot")
  8493. },
  8494. {
  8495. name: "Macro",
  8496. height: math.unit(111, "foot"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Supracosmic",
  8501. height: math.unit(1e42, "feet")
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(5, "inches"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/amanda/front.svg",
  8513. extra: 926/791,
  8514. bottom: 38/964
  8515. }
  8516. },
  8517. back: {
  8518. height: math.unit(5, "inches"),
  8519. name: "Back",
  8520. image: {
  8521. source: "./media/characters/amanda/back.svg",
  8522. extra: 909/805,
  8523. bottom: 43/952
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Micro",
  8530. height: math.unit(5, "inches"),
  8531. default: true
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(2.75, "meters"),
  8540. weight: math.unit(1200, "lb"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/teal/front.svg",
  8544. extra: 2463 / 2320,
  8545. bottom: 166 / 2629
  8546. }
  8547. },
  8548. back: {
  8549. height: math.unit(2.75, "meters"),
  8550. weight: math.unit(1200, "lb"),
  8551. name: "Back",
  8552. image: {
  8553. source: "./media/characters/teal/back.svg",
  8554. extra: 2580 / 2489,
  8555. bottom: 151 / 2731
  8556. }
  8557. },
  8558. sitting: {
  8559. height: math.unit(1.9, "meters"),
  8560. weight: math.unit(1200, "lb"),
  8561. name: "Sitting",
  8562. image: {
  8563. source: "./media/characters/teal/sitting.svg",
  8564. extra: 623 / 590,
  8565. bottom: 121 / 744
  8566. }
  8567. },
  8568. standing: {
  8569. height: math.unit(2.75, "meters"),
  8570. weight: math.unit(1200, "lb"),
  8571. name: "Standing",
  8572. image: {
  8573. source: "./media/characters/teal/standing.svg",
  8574. extra: 923 / 893,
  8575. bottom: 60 / 983
  8576. }
  8577. },
  8578. stretching: {
  8579. height: math.unit(3.65, "meters"),
  8580. weight: math.unit(1200, "lb"),
  8581. name: "Stretching",
  8582. image: {
  8583. source: "./media/characters/teal/stretching.svg",
  8584. extra: 1276 / 1244,
  8585. bottom: 0 / 1276
  8586. }
  8587. },
  8588. legged: {
  8589. height: math.unit(1.3, "meters"),
  8590. weight: math.unit(100, "lb"),
  8591. name: "Legged",
  8592. image: {
  8593. source: "./media/characters/teal/legged.svg",
  8594. extra: 462 / 437,
  8595. bottom: 24 / 486
  8596. }
  8597. },
  8598. naga: {
  8599. height: math.unit(5.4, "meters"),
  8600. weight: math.unit(4000, "lb"),
  8601. name: "Naga",
  8602. image: {
  8603. source: "./media/characters/teal/naga.svg",
  8604. extra: 1902 / 1858,
  8605. bottom: 0 / 1902
  8606. }
  8607. },
  8608. hand: {
  8609. height: math.unit(0.52, "meters"),
  8610. name: "Hand",
  8611. image: {
  8612. source: "./media/characters/teal/hand.svg"
  8613. }
  8614. },
  8615. maw: {
  8616. height: math.unit(0.43, "meters"),
  8617. name: "Maw",
  8618. image: {
  8619. source: "./media/characters/teal/maw.svg"
  8620. }
  8621. },
  8622. slit: {
  8623. height: math.unit(0.25, "meters"),
  8624. name: "Slit",
  8625. image: {
  8626. source: "./media/characters/teal/slit.svg"
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(2.75, "meters"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(300, "feet")
  8639. },
  8640. {
  8641. name: "Macro+",
  8642. height: math.unit(2000, "feet")
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8648. {
  8649. frontCat: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(180, "lbs"),
  8652. name: "Front (Cat)",
  8653. image: {
  8654. source: "./media/characters/ravin-amulet/front-cat.svg"
  8655. }
  8656. },
  8657. frontCatAlt: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(180, "lbs"),
  8660. name: "Front (Alt, Cat)",
  8661. image: {
  8662. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8663. }
  8664. },
  8665. frontWerewolf: {
  8666. height: math.unit(6 * 1.2, "feet"),
  8667. weight: math.unit(225, "lbs"),
  8668. name: "Front (Werewolf)",
  8669. image: {
  8670. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8671. }
  8672. },
  8673. backWerewolf: {
  8674. height: math.unit(6 * 1.2, "feet"),
  8675. weight: math.unit(225, "lbs"),
  8676. name: "Back (Werewolf)",
  8677. image: {
  8678. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Nano",
  8685. height: math.unit(1, "micrometer")
  8686. },
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(1, "inch")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(6, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(60, "feet")
  8699. }
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(6, "feet"),
  8707. weight: math.unit(165, "lbs"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/fluoresce/front.svg"
  8711. }
  8712. }
  8713. },
  8714. [
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(6, "cm")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(5 + 7 / 12, "feet"),
  8722. default: true
  8723. },
  8724. {
  8725. name: "Macro",
  8726. height: math.unit(56, "feet")
  8727. },
  8728. {
  8729. name: "Megamacro",
  8730. height: math.unit(1.9, "miles")
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(9 + 6 / 12, "feet"),
  8739. weight: math.unit(523, "lbs"),
  8740. name: "Side",
  8741. image: {
  8742. source: "./media/characters/aurora/side.svg",
  8743. extra: 474/393,
  8744. bottom: 5/479
  8745. }
  8746. }
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(9 + 6 / 12, "feet")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(96, "feet"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Macro+",
  8760. height: math.unit(243, "feet")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(194, "cm"),
  8769. weight: math.unit(90, "kg"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/ranek/front.svg",
  8773. extra: 1862/1791,
  8774. bottom: 80/1942
  8775. }
  8776. },
  8777. back: {
  8778. height: math.unit(194, "cm"),
  8779. weight: math.unit(90, "kg"),
  8780. name: "Back",
  8781. image: {
  8782. source: "./media/characters/ranek/back.svg",
  8783. extra: 1853/1787,
  8784. bottom: 74/1927
  8785. }
  8786. },
  8787. feral: {
  8788. height: math.unit(30, "cm"),
  8789. weight: math.unit(1.6, "lbs"),
  8790. name: "Feral",
  8791. image: {
  8792. source: "./media/characters/ranek/feral.svg",
  8793. extra: 990/631,
  8794. bottom: 29/1019
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Normal",
  8801. height: math.unit(194, "cm"),
  8802. default: true
  8803. },
  8804. {
  8805. name: "Macro",
  8806. height: math.unit(100, "meters")
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(5 + 6 / 12, "feet"),
  8815. weight: math.unit(153, "lbs"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/andrew-cooper/front.svg"
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Nano",
  8825. height: math.unit(1, "mm")
  8826. },
  8827. {
  8828. name: "Micro",
  8829. height: math.unit(2, "inches")
  8830. },
  8831. {
  8832. name: "Normal",
  8833. height: math.unit(5 + 6 / 12, "feet"),
  8834. default: true
  8835. }
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8840. {
  8841. front: {
  8842. height: math.unit(6, "feet"),
  8843. weight: math.unit(180, "lbs"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/akane-sato/front.svg",
  8847. extra: 1219 / 1140
  8848. }
  8849. },
  8850. back: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(180, "lbs"),
  8853. name: "Back",
  8854. image: {
  8855. source: "./media/characters/akane-sato/back.svg",
  8856. extra: 1219 / 1170
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(2.5, "meters")
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(250, "meters"),
  8868. default: true
  8869. },
  8870. {
  8871. name: "Megamacro",
  8872. height: math.unit(25, "km")
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(65, "kg"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/rook/front.svg",
  8885. extra: 960 / 950
  8886. }
  8887. }
  8888. },
  8889. [
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(8.8, "feet")
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(88, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Megamacro",
  8901. height: math.unit(8, "miles")
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(12 + 2 / 12, "feet"),
  8910. weight: math.unit(808, "lbs"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/prodigy/front.svg"
  8914. }
  8915. }
  8916. },
  8917. [
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(12 + 2 / 12, "feet"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(143, "feet")
  8926. },
  8927. {
  8928. name: "Macro+",
  8929. height: math.unit(400, "feet")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(6, "feet"),
  8938. weight: math.unit(225, "lbs"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/daniel/front.svg"
  8942. }
  8943. },
  8944. leaning: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(225, "lbs"),
  8947. name: "Leaning",
  8948. image: {
  8949. source: "./media/characters/daniel/leaning.svg"
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(1000, "feet"),
  8957. default: true
  8958. },
  8959. ]
  8960. ))
  8961. characterMakers.push(() => makeCharacter(
  8962. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8963. {
  8964. front: {
  8965. height: math.unit(6, "feet"),
  8966. weight: math.unit(88, "lbs"),
  8967. name: "Front",
  8968. image: {
  8969. source: "./media/characters/chiros/front.svg",
  8970. extra: 306 / 226
  8971. }
  8972. },
  8973. side: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(88, "lbs"),
  8976. name: "Side",
  8977. image: {
  8978. source: "./media/characters/chiros/side.svg",
  8979. extra: 306 / 226
  8980. }
  8981. },
  8982. },
  8983. [
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(6, "cm"),
  8987. default: true
  8988. },
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8993. {
  8994. front: {
  8995. height: math.unit(6, "feet"),
  8996. weight: math.unit(100, "lbs"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/selka/front.svg",
  9000. extra: 947 / 887
  9001. }
  9002. }
  9003. },
  9004. [
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(5, "cm"),
  9008. default: true
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(8 + 3 / 12, "feet"),
  9017. weight: math.unit(424, "lbs"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/verin/front.svg",
  9021. extra: 1845 / 1550
  9022. }
  9023. },
  9024. frontArmored: {
  9025. height: math.unit(8 + 3 / 12, "feet"),
  9026. weight: math.unit(424, "lbs"),
  9027. name: "Front (Armored)",
  9028. image: {
  9029. source: "./media/characters/verin/front-armor.svg",
  9030. extra: 1845 / 1550,
  9031. bottom: 0.01
  9032. }
  9033. },
  9034. back: {
  9035. height: math.unit(8 + 3 / 12, "feet"),
  9036. weight: math.unit(424, "lbs"),
  9037. name: "Back",
  9038. image: {
  9039. source: "./media/characters/verin/back.svg",
  9040. bottom: 0.1,
  9041. extra: 1
  9042. }
  9043. },
  9044. foot: {
  9045. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9046. name: "Foot",
  9047. image: {
  9048. source: "./media/characters/verin/foot.svg"
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(8 + 3 / 12, "feet")
  9056. },
  9057. {
  9058. name: "Minimacro",
  9059. height: math.unit(21, "feet"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(626, "feet")
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(2.718, "meters"),
  9073. weight: math.unit(150, "lbs"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/sovrim-terraquian/front.svg",
  9077. extra: 1752/1689,
  9078. bottom: 36/1788
  9079. }
  9080. },
  9081. back: {
  9082. height: math.unit(2.718, "meters"),
  9083. weight: math.unit(150, "lbs"),
  9084. name: "Back",
  9085. image: {
  9086. source: "./media/characters/sovrim-terraquian/back.svg",
  9087. extra: 1698/1657,
  9088. bottom: 58/1756
  9089. }
  9090. },
  9091. tongue: {
  9092. height: math.unit(2.865, "feet"),
  9093. name: "Tongue",
  9094. image: {
  9095. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9096. }
  9097. },
  9098. hand: {
  9099. height: math.unit(1.61, "feet"),
  9100. name: "Hand",
  9101. image: {
  9102. source: "./media/characters/sovrim-terraquian/hand.svg"
  9103. }
  9104. },
  9105. foot: {
  9106. height: math.unit(1.05, "feet"),
  9107. name: "Foot",
  9108. image: {
  9109. source: "./media/characters/sovrim-terraquian/foot.svg"
  9110. }
  9111. },
  9112. footAlt: {
  9113. height: math.unit(0.88, "feet"),
  9114. name: "Foot (Alt)",
  9115. image: {
  9116. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Micro",
  9123. height: math.unit(2, "inches")
  9124. },
  9125. {
  9126. name: "Small",
  9127. height: math.unit(1, "meter")
  9128. },
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(Math.E, "meters"),
  9132. default: true
  9133. },
  9134. {
  9135. name: "Macro",
  9136. height: math.unit(20, "meters")
  9137. },
  9138. {
  9139. name: "Macro+",
  9140. height: math.unit(400, "meters")
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9146. {
  9147. front: {
  9148. height: math.unit(7, "feet"),
  9149. weight: math.unit(489, "lbs"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/reece-silvermane/front.svg",
  9153. bottom: 0.02,
  9154. extra: 1
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(1.5, "miles"),
  9162. default: true
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(6, "feet"),
  9171. weight: math.unit(78, "kg"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/kane/front.svg",
  9175. extra: 978 / 899
  9176. }
  9177. },
  9178. back: {
  9179. height: math.unit(6, "feet"),
  9180. weight: math.unit(78, "kg"),
  9181. name: "Back",
  9182. image: {
  9183. source: "./media/characters/kane/back.svg",
  9184. extra: 1966/1800,
  9185. bottom: 0/1966
  9186. }
  9187. },
  9188. head: {
  9189. height: math.unit(1.4, "feet"),
  9190. name: "Head",
  9191. image: {
  9192. source: "./media/characters/kane/head.svg"
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(2.1, "m"),
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(1, "km"),
  9204. default: true
  9205. },
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(6, "feet"),
  9213. weight: math.unit(200, "kg"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/tegon/front.svg",
  9217. bottom: 0.01,
  9218. extra: 1
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Micro",
  9225. height: math.unit(1, "inch")
  9226. },
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(6 + 3 / 12, "feet"),
  9230. default: true
  9231. },
  9232. {
  9233. name: "Macro",
  9234. height: math.unit(300, "feet")
  9235. },
  9236. {
  9237. name: "Megamacro",
  9238. height: math.unit(69, "miles")
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9244. {
  9245. side: {
  9246. height: math.unit(6, "feet"),
  9247. weight: math.unit(2304, "lbs"),
  9248. name: "Side",
  9249. image: {
  9250. source: "./media/characters/arcturax/side.svg",
  9251. extra: 790 / 376,
  9252. bottom: 0.01
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Micro",
  9259. height: math.unit(2, "inch")
  9260. },
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(6, "feet")
  9264. },
  9265. {
  9266. name: "Macro",
  9267. height: math.unit(39, "feet"),
  9268. default: true
  9269. },
  9270. {
  9271. name: "Megamacro",
  9272. height: math.unit(7, "miles")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(6, "feet"),
  9281. weight: math.unit(50, "lbs"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/sentri/front.svg",
  9285. extra: 1750 / 1570,
  9286. bottom: 0.025
  9287. }
  9288. },
  9289. frontAlt: {
  9290. height: math.unit(6, "feet"),
  9291. weight: math.unit(50, "lbs"),
  9292. name: "Front (Alt)",
  9293. image: {
  9294. source: "./media/characters/sentri/front-alt.svg",
  9295. extra: 1750 / 1570,
  9296. bottom: 0.025
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(15, "feet"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Macro",
  9308. height: math.unit(2500, "feet")
  9309. }
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(5 + 8 / 12, "feet"),
  9317. weight: math.unit(130, "lbs"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/corvin/front.svg",
  9321. extra: 1803 / 1629
  9322. }
  9323. },
  9324. frontShirt: {
  9325. height: math.unit(5 + 8 / 12, "feet"),
  9326. weight: math.unit(130, "lbs"),
  9327. name: "Front (Shirt)",
  9328. image: {
  9329. source: "./media/characters/corvin/front-shirt.svg",
  9330. extra: 1803 / 1629
  9331. }
  9332. },
  9333. frontPoncho: {
  9334. height: math.unit(5 + 8 / 12, "feet"),
  9335. weight: math.unit(130, "lbs"),
  9336. name: "Front (Poncho)",
  9337. image: {
  9338. source: "./media/characters/corvin/front-poncho.svg",
  9339. extra: 1803 / 1629
  9340. }
  9341. },
  9342. side: {
  9343. height: math.unit(5 + 8 / 12, "feet"),
  9344. weight: math.unit(130, "lbs"),
  9345. name: "Side",
  9346. image: {
  9347. source: "./media/characters/corvin/side.svg",
  9348. extra: 1012 / 945
  9349. }
  9350. },
  9351. back: {
  9352. height: math.unit(5 + 8 / 12, "feet"),
  9353. weight: math.unit(130, "lbs"),
  9354. name: "Back",
  9355. image: {
  9356. source: "./media/characters/corvin/back.svg",
  9357. extra: 1803 / 1629
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(3, "inches")
  9365. },
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(5 + 8 / 12, "feet")
  9369. },
  9370. {
  9371. name: "Macro",
  9372. height: math.unit(300, "feet"),
  9373. default: true
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(500, "miles")
  9378. }
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(135, "lbs"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/q/front.svg",
  9390. extra: 854 / 752,
  9391. bottom: 0.005
  9392. }
  9393. },
  9394. back: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(130, "lbs"),
  9397. name: "Back",
  9398. image: {
  9399. source: "./media/characters/q/back.svg",
  9400. extra: 854 / 752
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(90, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Extra Macro",
  9412. height: math.unit(300, "feet"),
  9413. },
  9414. {
  9415. name: "BIG WALF",
  9416. height: math.unit(750, "feet"),
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(3, "feet"),
  9425. weight: math.unit(28, "lbs"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/citrine/front.svg"
  9429. }
  9430. }
  9431. },
  9432. [
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(3, "feet"),
  9436. default: true
  9437. }
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9442. {
  9443. front: {
  9444. height: math.unit(14, "feet"),
  9445. weight: math.unit(1450, "kg"),
  9446. preyCapacity: math.unit(15, "people"),
  9447. name: "Front",
  9448. image: {
  9449. source: "./media/characters/aura-starwind/front.svg",
  9450. extra: 1440/1327,
  9451. bottom: 11/1451
  9452. }
  9453. },
  9454. side: {
  9455. height: math.unit(14, "feet"),
  9456. weight: math.unit(1450, "kg"),
  9457. preyCapacity: math.unit(15, "people"),
  9458. name: "Side",
  9459. image: {
  9460. source: "./media/characters/aura-starwind/side.svg",
  9461. extra: 1654 / 1497
  9462. }
  9463. },
  9464. taur: {
  9465. height: math.unit(18, "feet"),
  9466. weight: math.unit(5500, "kg"),
  9467. preyCapacity: math.unit(50, "people"),
  9468. name: "Taur",
  9469. image: {
  9470. source: "./media/characters/aura-starwind/taur.svg",
  9471. extra: 1760 / 1650
  9472. }
  9473. },
  9474. feral: {
  9475. height: math.unit(46, "feet"),
  9476. weight: math.unit(25000, "kg"),
  9477. preyCapacity: math.unit(120, "people"),
  9478. name: "Feral",
  9479. image: {
  9480. source: "./media/characters/aura-starwind/feral.svg"
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(14, "feet"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(50, "meters")
  9493. },
  9494. {
  9495. name: "Megamacro",
  9496. height: math.unit(5000, "meters")
  9497. },
  9498. {
  9499. name: "Gigamacro",
  9500. height: math.unit(100000, "kilometers")
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(2 + 7 / 12, "feet"),
  9509. weight: math.unit(32, "lbs"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/rivet/front.svg",
  9513. extra: 1716 / 1658,
  9514. bottom: 0.03
  9515. }
  9516. },
  9517. foot: {
  9518. height: math.unit(0.551, "feet"),
  9519. name: "Rivet's Foot",
  9520. image: {
  9521. source: "./media/characters/rivet/foot.svg"
  9522. },
  9523. rename: true
  9524. }
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(1.5, "inches"),
  9530. },
  9531. {
  9532. name: "Normal",
  9533. height: math.unit(2 + 7 / 12, "feet"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(85, "feet")
  9539. },
  9540. {
  9541. name: "Megamacro",
  9542. height: math.unit(2.2, "km")
  9543. }
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(5 + 9 / 12, "feet"),
  9551. weight: math.unit(150, "lbs"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/coffee/front.svg",
  9555. extra: 946/880,
  9556. bottom: 66/1012
  9557. }
  9558. },
  9559. foot: {
  9560. height: math.unit(1.29, "feet"),
  9561. name: "Foot",
  9562. image: {
  9563. source: "./media/characters/coffee/foot.svg"
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Micro",
  9570. height: math.unit(2, "inches"),
  9571. },
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(5 + 9 / 12, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(800, "feet")
  9580. },
  9581. {
  9582. name: "Megamacro",
  9583. height: math.unit(25, "miles")
  9584. }
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(200, "lbs"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/chari-gal/front.svg",
  9596. extra: 735/649,
  9597. bottom: 55/790
  9598. },
  9599. form: "normal",
  9600. default: true
  9601. },
  9602. back: {
  9603. height: math.unit(6, "feet"),
  9604. weight: math.unit(200, "lb"),
  9605. name: "Back",
  9606. image: {
  9607. source: "./media/characters/chari-gal/back.svg",
  9608. extra: 762/666,
  9609. bottom: 31/793
  9610. },
  9611. form: "normal"
  9612. },
  9613. mouth: {
  9614. height: math.unit(1.35, "feet"),
  9615. name: "Mouth",
  9616. image: {
  9617. source: "./media/characters/chari-gal/mouth.svg"
  9618. },
  9619. form: "normal"
  9620. },
  9621. gigantamax: {
  9622. height: math.unit(6 * 16, "feet"),
  9623. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9624. name: "Gigantamax",
  9625. image: {
  9626. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9627. extra: 1507/1149,
  9628. bottom: 254/1761
  9629. },
  9630. form: "gigantamax",
  9631. default: true
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(5 + 7 / 12, "feet"),
  9638. form: "normal",
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(200, "feet"),
  9643. default: true,
  9644. form: "normal"
  9645. },
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9649. form: "gigantamax",
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(16 * 200, "feet"),
  9654. default: true,
  9655. form: "gigantamax"
  9656. },
  9657. ],
  9658. {
  9659. "normal": {
  9660. name: "Normal",
  9661. default: true
  9662. },
  9663. "gigantamax": {
  9664. name: "Gigantamax",
  9665. },
  9666. }
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(6, "feet"),
  9673. weight: math.unit(150, "lbs"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/nova/front.svg",
  9677. extra: 5000 / 4722,
  9678. bottom: 0.02
  9679. }
  9680. }
  9681. },
  9682. [
  9683. {
  9684. name: "Micro-",
  9685. height: math.unit(0.8, "inches")
  9686. },
  9687. {
  9688. name: "Micro",
  9689. height: math.unit(2, "inches"),
  9690. default: true
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9696. {
  9697. koboldFront: {
  9698. height: math.unit(3 + 1 / 12, "feet"),
  9699. weight: math.unit(21.7, "lbs"),
  9700. name: "Front",
  9701. image: {
  9702. source: "./media/characters/argent/kobold-front.svg",
  9703. extra: 1471 / 1331,
  9704. bottom: 100.8 / 1575.5
  9705. },
  9706. form: "kobold",
  9707. default: true
  9708. },
  9709. dragonFront: {
  9710. height: math.unit(75, "inches"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/argent/dragon-front.svg",
  9714. extra: 1389/1248,
  9715. bottom: 54/1443
  9716. },
  9717. form: "dragon",
  9718. },
  9719. dragonBack: {
  9720. height: math.unit(75, "inches"),
  9721. name: "Back",
  9722. image: {
  9723. source: "./media/characters/argent/dragon-back.svg",
  9724. extra: 1399/1271,
  9725. bottom: 23/1422
  9726. },
  9727. form: "dragon",
  9728. },
  9729. dragonDressed: {
  9730. height: math.unit(75, "inches"),
  9731. name: "Dressed",
  9732. image: {
  9733. source: "./media/characters/argent/dragon-dressed.svg",
  9734. extra: 1350/1215,
  9735. bottom: 26/1376
  9736. },
  9737. form: "dragon"
  9738. },
  9739. dragonHead: {
  9740. height: math.unit(23.5, "inches"),
  9741. name: "Head",
  9742. image: {
  9743. source: "./media/characters/argent/dragon-head.svg"
  9744. },
  9745. form: "dragon",
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Micro",
  9751. height: math.unit(2, "inches"),
  9752. form: "kobold",
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(3 + 1 / 12, "feet"),
  9757. form: "kobold",
  9758. default: true
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(120, "feet"),
  9763. form: "kobold",
  9764. },
  9765. {
  9766. name: "Speck",
  9767. height: math.unit(1, "mm"),
  9768. form: "dragon",
  9769. },
  9770. {
  9771. name: "Tiny",
  9772. height: math.unit(1, "cm"),
  9773. form: "dragon",
  9774. },
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(5, "cm"),
  9778. form: "dragon",
  9779. },
  9780. {
  9781. name: "Normal",
  9782. height: math.unit(75, "inches"),
  9783. form: "dragon",
  9784. default: true
  9785. },
  9786. {
  9787. name: "Extra Tall",
  9788. height: math.unit(9, "feet"),
  9789. form: "dragon",
  9790. },
  9791. {
  9792. name: "Inconvenient",
  9793. height: math.unit(5, "meters"),
  9794. form: "dragon",
  9795. },
  9796. {
  9797. name: "Macro",
  9798. height: math.unit(70, "meters"),
  9799. form: "dragon",
  9800. },
  9801. {
  9802. name: "Macro+",
  9803. height: math.unit(250, "meters"),
  9804. form: "dragon",
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(20, "km"),
  9809. form: "dragon",
  9810. },
  9811. {
  9812. name: "Mountainous",
  9813. height: math.unit(100, "km"),
  9814. form: "dragon",
  9815. },
  9816. {
  9817. name: "Continental",
  9818. height: math.unit(2, "megameters"),
  9819. form: "dragon",
  9820. },
  9821. {
  9822. name: "Too Big",
  9823. height: math.unit(900, "megameters"),
  9824. form: "dragon",
  9825. },
  9826. ],
  9827. {
  9828. "kobold": {
  9829. name: "Kobold",
  9830. default: true
  9831. },
  9832. "dragon": {
  9833. name: "Dragon",
  9834. },
  9835. }
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9839. {
  9840. lamp: {
  9841. height: math.unit(7 * 1559 / 989, "feet"),
  9842. name: "Magic Lamp",
  9843. image: {
  9844. source: "./media/characters/mira-al-cul/lamp.svg",
  9845. extra: 1617 / 1559
  9846. }
  9847. },
  9848. front: {
  9849. height: math.unit(7, "feet"),
  9850. name: "Front",
  9851. image: {
  9852. source: "./media/characters/mira-al-cul/front.svg",
  9853. extra: 1044 / 990
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Heavily Restricted",
  9860. height: math.unit(7 * 1559 / 989, "feet")
  9861. },
  9862. {
  9863. name: "Freshly Freed",
  9864. height: math.unit(50 * 1559 / 989, "feet")
  9865. },
  9866. {
  9867. name: "World Encompassing",
  9868. height: math.unit(10000 * 1559 / 989, "miles")
  9869. },
  9870. {
  9871. name: "Galactic",
  9872. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9873. },
  9874. {
  9875. name: "Palmed Universe",
  9876. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9877. default: true
  9878. },
  9879. {
  9880. name: "Multiversal Matriarch",
  9881. height: math.unit(8.87e10, "yottameters")
  9882. },
  9883. {
  9884. name: "Void Mother",
  9885. height: math.unit(3.14e110, "yottaparsecs")
  9886. },
  9887. {
  9888. name: "Toying with Transcendence",
  9889. height: math.unit(1e307, "meters")
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9895. {
  9896. front: {
  9897. height: math.unit(17 + 1 / 12, "feet"),
  9898. weight: math.unit(476.2 * 5, "lbs"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/kuro-shi-uchū/front.svg",
  9902. extra: 2329 / 1835,
  9903. bottom: 0.02
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(2, "inches")
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(12, "meters")
  9915. },
  9916. {
  9917. name: "Planetary",
  9918. height: math.unit(0.00929, "AU"),
  9919. default: true
  9920. },
  9921. {
  9922. name: "Universal",
  9923. height: math.unit(20, "gigaparsecs")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(5 + 2 / 12, "feet"),
  9932. weight: math.unit(120, "lbs"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/katherine/front.svg",
  9936. extra: 2075 / 1969
  9937. }
  9938. },
  9939. dress: {
  9940. height: math.unit(5 + 2 / 12, "feet"),
  9941. weight: math.unit(120, "lbs"),
  9942. name: "Dress",
  9943. image: {
  9944. source: "./media/characters/katherine/dress.svg",
  9945. extra: 2258 / 2064
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Micro",
  9952. height: math.unit(1, "inches"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Normal",
  9957. height: math.unit(5 + 2 / 12, "feet")
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(100, "meters")
  9962. },
  9963. {
  9964. name: "Megamacro",
  9965. height: math.unit(80, "miles")
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(7 + 8 / 12, "feet"),
  9974. weight: math.unit(250, "lbs"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/yevis/front.svg",
  9978. extra: 1938 / 1755
  9979. }
  9980. }
  9981. },
  9982. [
  9983. {
  9984. name: "Mortal",
  9985. height: math.unit(7 + 8 / 12, "feet")
  9986. },
  9987. {
  9988. name: "Battle",
  9989. height: math.unit(25 + 11 / 12, "feet")
  9990. },
  9991. {
  9992. name: "Wrath",
  9993. height: math.unit(1654 + 11 / 12, "feet")
  9994. },
  9995. {
  9996. name: "Planet Destroyer",
  9997. height: math.unit(12000, "miles")
  9998. },
  9999. {
  10000. name: "Galaxy Conqueror",
  10001. height: math.unit(1.45, "zettameters"),
  10002. default: true
  10003. },
  10004. {
  10005. name: "Universal War",
  10006. height: math.unit(184, "gigaparsecs")
  10007. },
  10008. {
  10009. name: "Eternity War",
  10010. height: math.unit(1.98e55, "yottaparsecs")
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10016. {
  10017. front: {
  10018. height: math.unit(5 + 8 / 12, "feet"),
  10019. weight: math.unit(63, "kg"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/xavier/front.svg",
  10023. extra: 944 / 883
  10024. }
  10025. },
  10026. frontStretch: {
  10027. height: math.unit(5 + 8 / 12, "feet"),
  10028. weight: math.unit(63, "kg"),
  10029. name: "Stretching",
  10030. image: {
  10031. source: "./media/characters/xavier/front-stretch.svg",
  10032. extra: 962 / 820
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(5 + 8 / 12, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(100, "meters"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "McLargeHuge",
  10048. height: math.unit(10, "miles")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(5 + 5 / 12, "feet"),
  10057. weight: math.unit(150, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/joshii/front.svg",
  10061. extra: 765 / 653,
  10062. bottom: 51 / 816
  10063. }
  10064. },
  10065. foot: {
  10066. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10067. name: "Foot",
  10068. image: {
  10069. source: "./media/characters/joshii/foot.svg"
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Micro",
  10076. height: math.unit(2, "inches")
  10077. },
  10078. {
  10079. name: "Normal",
  10080. height: math.unit(5 + 5 / 12, "feet")
  10081. },
  10082. {
  10083. name: "Macro",
  10084. height: math.unit(785, "feet"),
  10085. default: true
  10086. },
  10087. {
  10088. name: "Megamacro",
  10089. height: math.unit(24.5, "miles")
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10095. {
  10096. front: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(150, "lb"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/goddess-elizabeth/front.svg",
  10102. extra: 1800 / 1525,
  10103. bottom: 0.005
  10104. }
  10105. },
  10106. foot: {
  10107. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10108. name: "Foot",
  10109. image: {
  10110. source: "./media/characters/goddess-elizabeth/foot.svg"
  10111. }
  10112. },
  10113. mouth: {
  10114. height: math.unit(6, "feet"),
  10115. name: "Mouth",
  10116. image: {
  10117. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10118. }
  10119. },
  10120. },
  10121. [
  10122. {
  10123. name: "Micro",
  10124. height: math.unit(12, "feet")
  10125. },
  10126. {
  10127. name: "Normal",
  10128. height: math.unit(80, "miles"),
  10129. default: true
  10130. },
  10131. {
  10132. name: "Macro",
  10133. height: math.unit(15000, "parsecs")
  10134. },
  10135. ]
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10139. {
  10140. front: {
  10141. height: math.unit(5 + 9 / 12, "feet"),
  10142. weight: math.unit(144, "lb"),
  10143. name: "Front",
  10144. image: {
  10145. source: "./media/characters/kara/front.svg"
  10146. }
  10147. },
  10148. feet: {
  10149. height: math.unit(6 / 6.765, "feet"),
  10150. name: "Kara's Feet",
  10151. rename: true,
  10152. image: {
  10153. source: "./media/characters/kara/feet.svg"
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(5 + 9 / 12, "feet")
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(174, "feet"),
  10165. default: true
  10166. },
  10167. ]
  10168. ))
  10169. characterMakers.push(() => makeCharacter(
  10170. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10171. {
  10172. front: {
  10173. height: math.unit(18, "feet"),
  10174. weight: math.unit(4050, "lb"),
  10175. name: "Front",
  10176. image: {
  10177. source: "./media/characters/tyrone/front.svg",
  10178. extra: 2405 / 2270,
  10179. bottom: 182 / 2587
  10180. }
  10181. },
  10182. },
  10183. [
  10184. {
  10185. name: "Normal",
  10186. height: math.unit(18, "feet"),
  10187. default: true
  10188. },
  10189. {
  10190. name: "Macro",
  10191. height: math.unit(300, "feet")
  10192. },
  10193. {
  10194. name: "Megamacro",
  10195. height: math.unit(15, "km")
  10196. },
  10197. {
  10198. name: "Gigamacro",
  10199. height: math.unit(500, "km")
  10200. },
  10201. {
  10202. name: "Teramacro",
  10203. height: math.unit(0.5, "gigameters")
  10204. },
  10205. {
  10206. name: "Omnimacro",
  10207. height: math.unit(1e252, "yottauniverse")
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10213. {
  10214. front: {
  10215. height: math.unit(7 + 8 / 12, "feet"),
  10216. weight: math.unit(120, "lb"),
  10217. name: "Front",
  10218. image: {
  10219. source: "./media/characters/danny/front.svg",
  10220. extra: 1490 / 1350
  10221. }
  10222. },
  10223. back: {
  10224. height: math.unit(7 + 8 / 12, "feet"),
  10225. weight: math.unit(120, "lb"),
  10226. name: "Back",
  10227. image: {
  10228. source: "./media/characters/danny/back.svg",
  10229. extra: 1490 / 1350
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(7 + 8 / 12, "feet"),
  10237. default: true
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(3.5, "inches"),
  10246. weight: math.unit(19, "grams"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/mallow/front.svg",
  10250. extra: 471 / 431
  10251. }
  10252. },
  10253. back: {
  10254. height: math.unit(3.5, "inches"),
  10255. weight: math.unit(19, "grams"),
  10256. name: "Back",
  10257. image: {
  10258. source: "./media/characters/mallow/back.svg",
  10259. extra: 471 / 431
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(3.5, "inches"),
  10267. default: true
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(9, "feet"),
  10276. weight: math.unit(230, "kg"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/starry-aqua/front.svg"
  10280. }
  10281. },
  10282. back: {
  10283. height: math.unit(9, "feet"),
  10284. weight: math.unit(230, "kg"),
  10285. name: "Back",
  10286. image: {
  10287. source: "./media/characters/starry-aqua/back.svg"
  10288. }
  10289. },
  10290. hand: {
  10291. height: math.unit(9 * 0.1168, "feet"),
  10292. name: "Hand",
  10293. image: {
  10294. source: "./media/characters/starry-aqua/hand.svg"
  10295. }
  10296. },
  10297. foot: {
  10298. height: math.unit(9 * 0.18, "feet"),
  10299. name: "Foot",
  10300. image: {
  10301. source: "./media/characters/starry-aqua/foot.svg"
  10302. }
  10303. }
  10304. },
  10305. [
  10306. {
  10307. name: "Micro",
  10308. height: math.unit(3, "inches")
  10309. },
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(9, "feet")
  10313. },
  10314. {
  10315. name: "Macro",
  10316. height: math.unit(300, "feet"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(3200, "feet")
  10322. }
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10327. {
  10328. front: {
  10329. height: math.unit(15, "feet"),
  10330. weight: math.unit(5026, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/luka-towers/front.svg",
  10334. extra: 1269/1133,
  10335. bottom: 51/1320
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(15, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Minimacro",
  10347. height: math.unit(25, "feet")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(320, "feet")
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(35000, "feet")
  10356. },
  10357. {
  10358. name: "Gigamacro",
  10359. height: math.unit(4000, "miles")
  10360. },
  10361. {
  10362. name: "Teramacro",
  10363. height: math.unit(15000, "miles")
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(150, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/natalie-nightring/front.svg",
  10376. extra: 1,
  10377. bottom: 0.06
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Uh Oh",
  10384. height: math.unit(0.1, "mm")
  10385. },
  10386. {
  10387. name: "Small",
  10388. height: math.unit(3, "inches")
  10389. },
  10390. {
  10391. name: "Human Scale",
  10392. height: math.unit(6, "feet")
  10393. },
  10394. {
  10395. name: "Librarian",
  10396. height: math.unit(50, "feet"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Immense",
  10401. height: math.unit(200, "miles")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(6, "feet"),
  10410. weight: math.unit(180, "lbs"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/danni-rosie/front.svg",
  10414. extra: 1260 / 1128,
  10415. bottom: 0.022
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Micro",
  10422. height: math.unit(2, "inches"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(5 + 9 / 12, "feet"),
  10432. weight: math.unit(220, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/samantha-kruse/front.svg",
  10436. extra: (985 / 935),
  10437. bottom: 0.03
  10438. }
  10439. },
  10440. frontUndressed: {
  10441. height: math.unit(5 + 9 / 12, "feet"),
  10442. weight: math.unit(220, "lb"),
  10443. name: "Front (Undressed)",
  10444. image: {
  10445. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10446. extra: (973 / 923),
  10447. bottom: 0.025
  10448. }
  10449. },
  10450. fat: {
  10451. height: math.unit(5 + 9 / 12, "feet"),
  10452. weight: math.unit(900, "lb"),
  10453. name: "Front (Fat)",
  10454. image: {
  10455. source: "./media/characters/samantha-kruse/fat.svg",
  10456. extra: 2688 / 2561
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(5 + 9 / 12, "feet"),
  10464. default: true
  10465. }
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10470. {
  10471. back: {
  10472. height: math.unit(5 + 4 / 12, "feet"),
  10473. weight: math.unit(4963, "lb"),
  10474. name: "Back",
  10475. image: {
  10476. source: "./media/characters/amelia-rosie/back.svg",
  10477. extra: 1113 / 963,
  10478. bottom: 0.01
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Level 0",
  10485. height: math.unit(5 + 4 / 12, "feet")
  10486. },
  10487. {
  10488. name: "Level 1",
  10489. height: math.unit(164597, "feet"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Level 2",
  10494. height: math.unit(956243, "miles")
  10495. },
  10496. {
  10497. name: "Level 3",
  10498. height: math.unit(29421709423, "miles")
  10499. },
  10500. {
  10501. name: "Level 4",
  10502. height: math.unit(154, "lightyears")
  10503. },
  10504. {
  10505. name: "Level 5",
  10506. height: math.unit(4738272, "lightyears")
  10507. },
  10508. {
  10509. name: "Level 6",
  10510. height: math.unit(145787152896, "lightyears")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(5 + 11 / 12, "feet"),
  10519. weight: math.unit(65, "kg"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/rook-kitara/front.svg",
  10523. extra: 1347 / 1274,
  10524. bottom: 0.005
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Totally Unfair",
  10531. height: math.unit(1.8, "mm")
  10532. },
  10533. {
  10534. name: "Lap Rookie",
  10535. height: math.unit(1.4, "feet")
  10536. },
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(5 + 11 / 12, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "How Did This Happen",
  10544. height: math.unit(80, "miles")
  10545. }
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(7, "feet"),
  10553. weight: math.unit(300, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/pisces/front.svg",
  10557. extra: 2255 / 2115,
  10558. bottom: 0.03
  10559. }
  10560. },
  10561. back: {
  10562. height: math.unit(7, "feet"),
  10563. weight: math.unit(300, "lb"),
  10564. name: "Back",
  10565. image: {
  10566. source: "./media/characters/pisces/back.svg",
  10567. extra: 2146 / 2055,
  10568. bottom: 0.04
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(7, "feet"),
  10576. default: true
  10577. },
  10578. {
  10579. name: "Swimming Pool",
  10580. height: math.unit(12.2, "meters")
  10581. },
  10582. {
  10583. name: "Olympic Swimming Pool",
  10584. height: math.unit(56.3, "meters")
  10585. },
  10586. {
  10587. name: "Lake Superior",
  10588. height: math.unit(93900, "meters")
  10589. },
  10590. {
  10591. name: "Mediterranean Sea",
  10592. height: math.unit(644457, "meters")
  10593. },
  10594. {
  10595. name: "World's Oceans",
  10596. height: math.unit(4567491, "meters")
  10597. },
  10598. ]
  10599. ))
  10600. characterMakers.push(() => makeCharacter(
  10601. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10602. {
  10603. front: {
  10604. height: math.unit(2.3, "meters"),
  10605. weight: math.unit(120, "kg"),
  10606. name: "Front",
  10607. image: {
  10608. source: "./media/characters/zelas/front.svg"
  10609. }
  10610. },
  10611. side: {
  10612. height: math.unit(2.3, "meters"),
  10613. weight: math.unit(120, "kg"),
  10614. name: "Side",
  10615. image: {
  10616. source: "./media/characters/zelas/side.svg"
  10617. }
  10618. },
  10619. back: {
  10620. height: math.unit(2.3, "meters"),
  10621. weight: math.unit(120, "kg"),
  10622. name: "Back",
  10623. image: {
  10624. source: "./media/characters/zelas/back.svg"
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(1.116, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/zelas/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(2.3, "meters")
  10639. },
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(30, "meters"),
  10643. default: true
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(1, "inch"),
  10652. weight: math.unit(0.21, "grams"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/talbot/front.svg",
  10656. extra: 594 / 544
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Micro",
  10663. height: math.unit(1, "inch"),
  10664. default: true
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10670. {
  10671. front: {
  10672. height: math.unit(3 + 3 / 12, "feet"),
  10673. weight: math.unit(51.8, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/fliss/front.svg",
  10677. extra: 840 / 640
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Teeny Tiny",
  10684. height: math.unit(1, "mm")
  10685. },
  10686. {
  10687. name: "Small",
  10688. height: math.unit(1, "inch"),
  10689. default: true
  10690. },
  10691. {
  10692. name: "Standard Sylveon",
  10693. height: math.unit(3 + 3 / 12, "feet")
  10694. },
  10695. {
  10696. name: "Large Nuisance",
  10697. height: math.unit(33, "feet")
  10698. },
  10699. {
  10700. name: "City Filler",
  10701. height: math.unit(3000, "feet")
  10702. },
  10703. {
  10704. name: "New Horizon",
  10705. height: math.unit(6000, "miles")
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10711. {
  10712. front: {
  10713. height: math.unit(5, "cm"),
  10714. weight: math.unit(1.94, "g"),
  10715. name: "Front",
  10716. image: {
  10717. source: "./media/characters/fleta/front.svg",
  10718. extra: 835 / 803
  10719. }
  10720. },
  10721. back: {
  10722. height: math.unit(5, "cm"),
  10723. weight: math.unit(1.94, "g"),
  10724. name: "Back",
  10725. image: {
  10726. source: "./media/characters/fleta/back.svg",
  10727. extra: 835 / 803
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Micro",
  10734. height: math.unit(5, "cm"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(225, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/dominic/front.svg",
  10748. extra: 1770 / 1620,
  10749. bottom: 0.025
  10750. }
  10751. },
  10752. back: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(225, "lb"),
  10755. name: "Back",
  10756. image: {
  10757. source: "./media/characters/dominic/back.svg",
  10758. extra: 1745 / 1620,
  10759. bottom: 0.065
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Nano",
  10766. height: math.unit(0.1, "mm")
  10767. },
  10768. {
  10769. name: "Micro-",
  10770. height: math.unit(1, "mm")
  10771. },
  10772. {
  10773. name: "Micro",
  10774. height: math.unit(4, "inches")
  10775. },
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(6 + 4 / 12, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Macro",
  10783. height: math.unit(115, "feet")
  10784. },
  10785. {
  10786. name: "Macro+",
  10787. height: math.unit(955, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(8990, "feet")
  10792. },
  10793. {
  10794. name: "Gigmacro",
  10795. height: math.unit(9310, "miles")
  10796. },
  10797. {
  10798. name: "Teramacro",
  10799. height: math.unit(1567005010, "miles")
  10800. },
  10801. {
  10802. name: "Examacro",
  10803. height: math.unit(1425, "parsecs")
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(400, "feet"),
  10812. weight: math.unit(44444444, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/major-colonel/front.svg"
  10816. }
  10817. },
  10818. back: {
  10819. height: math.unit(400, "feet"),
  10820. weight: math.unit(44444444, "lb"),
  10821. name: "Back",
  10822. image: {
  10823. source: "./media/characters/major-colonel/back.svg"
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Macro",
  10830. height: math.unit(400, "feet"),
  10831. default: true
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10837. {
  10838. catFront: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(120, "lb"),
  10841. name: "Front (Cat Side)",
  10842. image: {
  10843. source: "./media/characters/axel-lycan/cat-front.svg",
  10844. extra: 430 / 402,
  10845. bottom: 43 / 472.35
  10846. }
  10847. },
  10848. catBack: {
  10849. height: math.unit(6, "feet"),
  10850. weight: math.unit(120, "lb"),
  10851. name: "Back (Cat Side)",
  10852. image: {
  10853. source: "./media/characters/axel-lycan/cat-back.svg",
  10854. extra: 447 / 419,
  10855. bottom: 23.3 / 469
  10856. }
  10857. },
  10858. wolfFront: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(120, "lb"),
  10861. name: "Front (Wolf Side)",
  10862. image: {
  10863. source: "./media/characters/axel-lycan/wolf-front.svg",
  10864. extra: 485 / 456,
  10865. bottom: 19 / 504
  10866. }
  10867. },
  10868. wolfBack: {
  10869. height: math.unit(6, "feet"),
  10870. weight: math.unit(120, "lb"),
  10871. name: "Back (Wolf Side)",
  10872. image: {
  10873. source: "./media/characters/axel-lycan/wolf-back.svg",
  10874. extra: 475 / 438,
  10875. bottom: 39.2 / 514
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(1, "km"),
  10883. default: true
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(5 + 9 / 12, "feet"),
  10892. weight: math.unit(175, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/vanrel-hyena/front.svg",
  10896. extra: 1086 / 1010,
  10897. bottom: 0.04
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(5 + 9 / 12, "feet"),
  10905. default: true
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10911. {
  10912. front: {
  10913. height: math.unit(6, "feet"),
  10914. weight: math.unit(103, "lb"),
  10915. name: "Front",
  10916. image: {
  10917. source: "./media/characters/abbott-absol/front.svg",
  10918. extra: 765/694,
  10919. bottom: 47/812
  10920. }
  10921. },
  10922. },
  10923. [
  10924. {
  10925. name: "Megamicro",
  10926. height: math.unit(0.1, "mm")
  10927. },
  10928. {
  10929. name: "Micro",
  10930. height: math.unit(1, "inch")
  10931. },
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(6, "feet"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(264, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/hector/front.svg",
  10948. extra: 2280 / 2130,
  10949. bottom: 0.07
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(12.25, "foot"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(160, "feet")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(150, "lb"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/sal/front.svg",
  10974. extra: 1846 / 1699,
  10975. bottom: 0.04
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Megamacro",
  10982. height: math.unit(10, "miles"),
  10983. default: true
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10989. {
  10990. front: {
  10991. height: math.unit(3, "meters"),
  10992. weight: math.unit(450, "kg"),
  10993. name: "front",
  10994. image: {
  10995. source: "./media/characters/ranger/front.svg",
  10996. extra: 2401 / 2243,
  10997. bottom: 0.05
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(3, "meters"),
  11005. default: true
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(14, "feet"),
  11014. weight: math.unit(800, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/theresa/front.svg",
  11018. extra: 3575 / 3346,
  11019. bottom: 0.03
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(14, "feet"),
  11027. default: true
  11028. },
  11029. ]
  11030. ))
  11031. characterMakers.push(() => makeCharacter(
  11032. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11033. {
  11034. front: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(3, "kg"),
  11037. name: "Front",
  11038. image: {
  11039. source: "./media/characters/ine/front.svg",
  11040. extra: 678 / 539,
  11041. bottom: 0.023
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(2.265, "feet"),
  11049. default: true
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(5, "feet"),
  11058. weight: math.unit(30, "kg"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/vial/front.svg",
  11062. extra: 1365 / 1277,
  11063. bottom: 0.04
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Normal",
  11070. height: math.unit(5, "feet"),
  11071. default: true
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11077. {
  11078. side: {
  11079. height: math.unit(3.4, "meters"),
  11080. weight: math.unit(1000, "lb"),
  11081. name: "Side",
  11082. image: {
  11083. source: "./media/characters/rovoska/side.svg",
  11084. extra: 4403 / 1515
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(3.4, "meters"),
  11092. default: true
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(8, "feet"),
  11101. weight: math.unit(315, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/gunner-rotthbauer/front.svg"
  11105. }
  11106. },
  11107. back: {
  11108. height: math.unit(8, "feet"),
  11109. weight: math.unit(315, "lb"),
  11110. name: "Back",
  11111. image: {
  11112. source: "./media/characters/gunner-rotthbauer/back.svg"
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Micro",
  11119. height: math.unit(3.5, "inches")
  11120. },
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(8, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Macro",
  11128. height: math.unit(250, "feet")
  11129. },
  11130. {
  11131. name: "Megamacro",
  11132. height: math.unit(1, "AU")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(5 + 5 / 12, "feet"),
  11141. weight: math.unit(140, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/allatia/front.svg",
  11145. extra: 1227 / 1180,
  11146. bottom: 0.027
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(5 + 5 / 12, "feet")
  11154. },
  11155. {
  11156. name: "Macro",
  11157. height: math.unit(250, "feet"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Megamacro",
  11162. height: math.unit(8, "miles")
  11163. }
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(120, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/tene/front.svg",
  11175. extra: 814/750,
  11176. bottom: 36/850
  11177. }
  11178. },
  11179. stomping: {
  11180. height: math.unit(2.025, "meters"),
  11181. weight: math.unit(120, "lb"),
  11182. name: "Stomping",
  11183. image: {
  11184. source: "./media/characters/tene/stomping.svg",
  11185. extra: 885/821,
  11186. bottom: 15/900
  11187. }
  11188. },
  11189. sitting: {
  11190. height: math.unit(1, "meter"),
  11191. weight: math.unit(120, "lb"),
  11192. name: "Sitting",
  11193. image: {
  11194. source: "./media/characters/tene/sitting.svg",
  11195. extra: 396/366,
  11196. bottom: 79/475
  11197. }
  11198. },
  11199. smiling: {
  11200. height: math.unit(1.2, "feet"),
  11201. name: "Smiling",
  11202. image: {
  11203. source: "./media/characters/tene/smiling.svg",
  11204. extra: 1364/1071,
  11205. bottom: 0/1364
  11206. }
  11207. },
  11208. smug: {
  11209. height: math.unit(1.3, "feet"),
  11210. name: "Smug",
  11211. image: {
  11212. source: "./media/characters/tene/smug.svg",
  11213. extra: 1323/1082,
  11214. bottom: 0/1323
  11215. }
  11216. },
  11217. feral: {
  11218. height: math.unit(3.9, "feet"),
  11219. weight: math.unit(250, "lb"),
  11220. name: "Feral",
  11221. image: {
  11222. source: "./media/characters/tene/feral.svg",
  11223. extra: 717 / 458,
  11224. bottom: 0.179
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(6, "feet")
  11232. },
  11233. {
  11234. name: "Macro",
  11235. height: math.unit(300, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(5, "miles")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11246. {
  11247. side: {
  11248. height: math.unit(6, "feet"),
  11249. name: "Side",
  11250. image: {
  11251. source: "./media/characters/evander/side.svg",
  11252. extra: 877 / 477
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(0.83, "meters"),
  11260. default: true
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(12, "feet"),
  11269. weight: math.unit(1000, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11273. extra: 1762 / 1611
  11274. }
  11275. },
  11276. back: {
  11277. height: math.unit(12, "feet"),
  11278. weight: math.unit(1000, "lb"),
  11279. name: "Back",
  11280. image: {
  11281. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11282. extra: 1762 / 1611
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(12, "feet"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Kaiju",
  11294. height: math.unit(150, "feet")
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/zero-alurus/front.svg"
  11307. }
  11308. },
  11309. back: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Back",
  11313. image: {
  11314. source: "./media/characters/zero-alurus/back.svg"
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(5 + 10 / 12, "feet")
  11322. },
  11323. {
  11324. name: "Macro",
  11325. height: math.unit(60, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Macro+",
  11330. height: math.unit(450, "feet")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(200, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/mega-shi/front.svg",
  11343. extra: 1279 / 1250,
  11344. bottom: 0.02
  11345. }
  11346. },
  11347. back: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(200, "lb"),
  11350. name: "Back",
  11351. image: {
  11352. source: "./media/characters/mega-shi/back.svg",
  11353. extra: 1279 / 1250,
  11354. bottom: 0.02
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(16 + 6 / 12, "feet")
  11362. },
  11363. {
  11364. name: "Third Dimension",
  11365. height: math.unit(40, "meters")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(660, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(10, "miles")
  11375. },
  11376. {
  11377. name: "Planetary Launch",
  11378. height: math.unit(500, "miles")
  11379. },
  11380. {
  11381. name: "Interstellar",
  11382. height: math.unit(1e9, "miles")
  11383. },
  11384. {
  11385. name: "Leaving the Universe",
  11386. height: math.unit(1, "gigaparsec")
  11387. },
  11388. {
  11389. name: "Travelling Universes",
  11390. height: math.unit(30e15, "parsecs")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(5 + 4/12, "feet"),
  11399. weight: math.unit(120, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/odyssey/front.svg",
  11403. extra: 1747/1571,
  11404. bottom: 47/1794
  11405. }
  11406. },
  11407. side: {
  11408. height: math.unit(5.1, "feet"),
  11409. weight: math.unit(120, "lb"),
  11410. name: "Side",
  11411. image: {
  11412. source: "./media/characters/odyssey/side.svg",
  11413. extra: 1847/1619,
  11414. bottom: 47/1894
  11415. }
  11416. },
  11417. lounging: {
  11418. height: math.unit(1.464, "feet"),
  11419. weight: math.unit(120, "lb"),
  11420. name: "Lounging",
  11421. image: {
  11422. source: "./media/characters/odyssey/lounging.svg",
  11423. extra: 1235/837,
  11424. bottom: 551/1786
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(5 + 4 / 12, "feet")
  11432. },
  11433. {
  11434. name: "Macro",
  11435. height: math.unit(1, "km")
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(3000, "km")
  11440. },
  11441. {
  11442. name: "Gigamacro",
  11443. height: math.unit(1, "AU"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Omniversal",
  11448. height: math.unit(100e14, "lightyears")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(5 + 10/12, "feet"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/mekuto/front.svg",
  11460. extra: 875/835,
  11461. bottom: 46/921
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Minimicro",
  11468. height: math.unit(0.2, "inches")
  11469. },
  11470. {
  11471. name: "Micro",
  11472. height: math.unit(1.5, "inches")
  11473. },
  11474. {
  11475. name: "Normal",
  11476. height: math.unit(5 + 10 / 12, "feet"),
  11477. default: true
  11478. },
  11479. {
  11480. name: "Minimacro",
  11481. height: math.unit(17 + 9 / 12, "feet")
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(177.5, "feet")
  11486. },
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(152, "miles")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(6.5, "inches"),
  11498. weight: math.unit(13, "oz"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/dafydd-tomos/front.svg",
  11502. extra: 2990 / 2603,
  11503. bottom: 0.03
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Micro",
  11510. height: math.unit(6.5, "inches"),
  11511. default: true
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(6, "feet"),
  11520. weight: math.unit(150, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/splinter/front.svg",
  11524. extra: 2990 / 2882,
  11525. bottom: 0.04
  11526. }
  11527. },
  11528. back: {
  11529. height: math.unit(6, "feet"),
  11530. weight: math.unit(150, "lb"),
  11531. name: "Back",
  11532. image: {
  11533. source: "./media/characters/splinter/back.svg",
  11534. extra: 2990 / 2882,
  11535. bottom: 0.04
  11536. }
  11537. },
  11538. },
  11539. [
  11540. {
  11541. name: "Normal",
  11542. height: math.unit(6, "feet")
  11543. },
  11544. {
  11545. name: "Macro",
  11546. height: math.unit(230, "meters"),
  11547. default: true
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(4 + 10 / 12, "feet"),
  11556. weight: math.unit(480, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/snow-gabumon/front.svg",
  11560. extra: 1140 / 963,
  11561. bottom: 0.058
  11562. }
  11563. },
  11564. back: {
  11565. height: math.unit(4 + 10 / 12, "feet"),
  11566. weight: math.unit(480, "lb"),
  11567. name: "Back",
  11568. image: {
  11569. source: "./media/characters/snow-gabumon/back.svg",
  11570. extra: 1115 / 962,
  11571. bottom: 0.041
  11572. }
  11573. },
  11574. frontUndresed: {
  11575. height: math.unit(4 + 10 / 12, "feet"),
  11576. weight: math.unit(480, "lb"),
  11577. name: "Front (Undressed)",
  11578. image: {
  11579. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11580. extra: 1061 / 960,
  11581. bottom: 0.045
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Micro",
  11588. height: math.unit(1, "inch")
  11589. },
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(4 + 10 / 12, "feet"),
  11593. default: true
  11594. },
  11595. {
  11596. name: "Macro",
  11597. height: math.unit(200, "feet")
  11598. },
  11599. {
  11600. name: "Megamacro",
  11601. height: math.unit(120, "miles")
  11602. },
  11603. {
  11604. name: "Gigamacro",
  11605. height: math.unit(9800, "miles")
  11606. },
  11607. ]
  11608. ))
  11609. characterMakers.push(() => makeCharacter(
  11610. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11611. {
  11612. front: {
  11613. height: math.unit(1.7, "meters"),
  11614. weight: math.unit(140, "lb"),
  11615. name: "Front",
  11616. image: {
  11617. source: "./media/characters/moody/front.svg",
  11618. extra: 3226 / 3007,
  11619. bottom: 0.087
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Micro",
  11626. height: math.unit(1, "mm")
  11627. },
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(1.7, "meters"),
  11631. default: true
  11632. },
  11633. {
  11634. name: "Macro",
  11635. height: math.unit(80, "meters")
  11636. },
  11637. {
  11638. name: "Macro+",
  11639. height: math.unit(500, "meters")
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(6, "feet"),
  11648. weight: math.unit(150, "lb"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/zyas/front.svg",
  11652. extra: 1180 / 1120,
  11653. bottom: 0.045
  11654. }
  11655. },
  11656. },
  11657. [
  11658. {
  11659. name: "Normal",
  11660. height: math.unit(10, "feet"),
  11661. default: true
  11662. },
  11663. {
  11664. name: "Macro",
  11665. height: math.unit(500, "feet")
  11666. },
  11667. {
  11668. name: "Megamacro",
  11669. height: math.unit(5, "miles")
  11670. },
  11671. {
  11672. name: "Teramacro",
  11673. height: math.unit(150000, "miles")
  11674. },
  11675. ]
  11676. ))
  11677. characterMakers.push(() => makeCharacter(
  11678. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11679. {
  11680. front: {
  11681. height: math.unit(6, "feet"),
  11682. weight: math.unit(150, "lb"),
  11683. name: "Front",
  11684. image: {
  11685. source: "./media/characters/cuon/front.svg",
  11686. extra: 1390 / 1320,
  11687. bottom: 0.008
  11688. }
  11689. },
  11690. },
  11691. [
  11692. {
  11693. name: "Micro",
  11694. height: math.unit(3, "inches")
  11695. },
  11696. {
  11697. name: "Normal",
  11698. height: math.unit(18 + 9 / 12, "feet"),
  11699. default: true
  11700. },
  11701. {
  11702. name: "Macro",
  11703. height: math.unit(360, "feet")
  11704. },
  11705. {
  11706. name: "Megamacro",
  11707. height: math.unit(360, "miles")
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11713. {
  11714. front: {
  11715. height: math.unit(2.4, "meters"),
  11716. weight: math.unit(70, "kg"),
  11717. name: "Front",
  11718. image: {
  11719. source: "./media/characters/nyanuxk/front.svg",
  11720. extra: 1172 / 1084,
  11721. bottom: 0.065
  11722. }
  11723. },
  11724. side: {
  11725. height: math.unit(2.4, "meters"),
  11726. weight: math.unit(70, "kg"),
  11727. name: "Side",
  11728. image: {
  11729. source: "./media/characters/nyanuxk/side.svg",
  11730. extra: 1190 / 1132,
  11731. bottom: 0.007
  11732. }
  11733. },
  11734. back: {
  11735. height: math.unit(2.4, "meters"),
  11736. weight: math.unit(70, "kg"),
  11737. name: "Back",
  11738. image: {
  11739. source: "./media/characters/nyanuxk/back.svg",
  11740. extra: 1200 / 1141,
  11741. bottom: 0.015
  11742. }
  11743. },
  11744. foot: {
  11745. height: math.unit(0.52, "meters"),
  11746. name: "Foot",
  11747. image: {
  11748. source: "./media/characters/nyanuxk/foot.svg"
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(2, "cm")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(2.4, "meters"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Smaller Macro",
  11764. height: math.unit(120, "meters")
  11765. },
  11766. {
  11767. name: "Bigger Macro",
  11768. height: math.unit(1.2, "km")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(15, "kilometers")
  11773. },
  11774. {
  11775. name: "Gigamacro",
  11776. height: math.unit(2000, "km")
  11777. },
  11778. {
  11779. name: "Teramacro",
  11780. height: math.unit(500000, "km")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11786. {
  11787. side: {
  11788. height: math.unit(6, "feet"),
  11789. name: "Side",
  11790. image: {
  11791. source: "./media/characters/ailbhe/side.svg",
  11792. extra: 757 / 464,
  11793. bottom: 0.041
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(1.07, "meters"),
  11801. default: true
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(120, "kg"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/zevulfius/front.svg",
  11814. extra: 965 / 903
  11815. }
  11816. },
  11817. side: {
  11818. height: math.unit(6, "feet"),
  11819. weight: math.unit(120, "kg"),
  11820. name: "Side",
  11821. image: {
  11822. source: "./media/characters/zevulfius/side.svg",
  11823. extra: 939 / 900
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(120, "kg"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/zevulfius/back.svg",
  11832. extra: 918 / 854,
  11833. bottom: 0.005
  11834. }
  11835. },
  11836. foot: {
  11837. height: math.unit(6 / 3.72, "feet"),
  11838. name: "Foot",
  11839. image: {
  11840. source: "./media/characters/zevulfius/foot.svg"
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Macro",
  11847. height: math.unit(750, "meters")
  11848. },
  11849. {
  11850. name: "Megamacro",
  11851. height: math.unit(20, "km"),
  11852. default: true
  11853. },
  11854. {
  11855. name: "Gigamacro",
  11856. height: math.unit(2000, "km")
  11857. },
  11858. {
  11859. name: "Teramacro",
  11860. height: math.unit(250000, "km")
  11861. },
  11862. ]
  11863. ))
  11864. characterMakers.push(() => makeCharacter(
  11865. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11866. {
  11867. front: {
  11868. height: math.unit(100, "feet"),
  11869. weight: math.unit(350, "kg"),
  11870. name: "Front",
  11871. image: {
  11872. source: "./media/characters/rikes/front.svg",
  11873. extra: 1565 / 1483,
  11874. bottom: 0.017
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(100, "feet"),
  11882. default: true
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(8, "feet"),
  11891. weight: math.unit(356, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/adam-silver-mane/front.svg",
  11895. extra: 1036/937,
  11896. bottom: 63/1099
  11897. }
  11898. },
  11899. side: {
  11900. height: math.unit(8, "feet"),
  11901. weight: math.unit(356, "lb"),
  11902. name: "Side",
  11903. image: {
  11904. source: "./media/characters/adam-silver-mane/side.svg",
  11905. extra: 997/901,
  11906. bottom: 59/1056
  11907. }
  11908. },
  11909. frontNsfw: {
  11910. height: math.unit(8, "feet"),
  11911. weight: math.unit(356, "lb"),
  11912. name: "Front (NSFW)",
  11913. image: {
  11914. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11915. extra: 1036/937,
  11916. bottom: 63/1099
  11917. }
  11918. },
  11919. sideNsfw: {
  11920. height: math.unit(8, "feet"),
  11921. weight: math.unit(356, "lb"),
  11922. name: "Side (NSFW)",
  11923. image: {
  11924. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11925. extra: 997/901,
  11926. bottom: 59/1056
  11927. }
  11928. },
  11929. dick: {
  11930. height: math.unit(2.1, "feet"),
  11931. name: "Dick",
  11932. image: {
  11933. source: "./media/characters/adam-silver-mane/dick.svg"
  11934. }
  11935. },
  11936. taur: {
  11937. height: math.unit(16, "feet"),
  11938. weight: math.unit(1500, "kg"),
  11939. name: "Taur",
  11940. image: {
  11941. source: "./media/characters/adam-silver-mane/taur.svg",
  11942. extra: 1713 / 1571,
  11943. bottom: 0.01
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(8, "feet")
  11951. },
  11952. {
  11953. name: "Minimacro",
  11954. height: math.unit(80, "feet")
  11955. },
  11956. {
  11957. name: "MDA",
  11958. height: math.unit(80, "meters")
  11959. },
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(800, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(8000, "feet")
  11968. },
  11969. {
  11970. name: "Gigamacro",
  11971. height: math.unit(800, "miles")
  11972. },
  11973. {
  11974. name: "Teramacro",
  11975. height: math.unit(80000, "miles")
  11976. },
  11977. {
  11978. name: "Celestial",
  11979. height: math.unit(8e6, "miles")
  11980. },
  11981. {
  11982. name: "Star Dragon",
  11983. height: math.unit(800000, "parsecs")
  11984. },
  11985. {
  11986. name: "Godly",
  11987. height: math.unit(800, "teraparsecs")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(150, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/ky'owin/front.svg",
  12000. extra: 3862/3053,
  12001. bottom: 74/3936
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(6 + 8 / 12, "feet")
  12009. },
  12010. {
  12011. name: "Large",
  12012. height: math.unit(68, "feet")
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(132, "feet")
  12017. },
  12018. {
  12019. name: "Macro+",
  12020. height: math.unit(340, "feet")
  12021. },
  12022. {
  12023. name: "Macro++",
  12024. height: math.unit(680, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(1, "mile")
  12030. },
  12031. {
  12032. name: "Megamacro+",
  12033. height: math.unit(10, "miles")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(4, "feet"),
  12042. weight: math.unit(50, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/mal/front.svg",
  12046. extra: 785 / 724,
  12047. bottom: 0.07
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Micro",
  12054. height: math.unit(4, "inches")
  12055. },
  12056. {
  12057. name: "Normal",
  12058. height: math.unit(4, "feet"),
  12059. default: true
  12060. },
  12061. {
  12062. name: "Macro",
  12063. height: math.unit(200, "feet")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/jordan-deware/front.svg",
  12076. extra: 1191 / 1012
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Nano",
  12083. height: math.unit(0.01, "mm")
  12084. },
  12085. {
  12086. name: "Minimicro",
  12087. height: math.unit(1, "mm")
  12088. },
  12089. {
  12090. name: "Micro",
  12091. height: math.unit(0.5, "inches")
  12092. },
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(4, "feet"),
  12096. default: true
  12097. },
  12098. {
  12099. name: "Minimacro",
  12100. height: math.unit(40, "meters")
  12101. },
  12102. {
  12103. name: "Small Macro",
  12104. height: math.unit(400, "meters")
  12105. },
  12106. {
  12107. name: "Macro",
  12108. height: math.unit(4, "miles")
  12109. },
  12110. {
  12111. name: "Megamacro",
  12112. height: math.unit(40, "miles")
  12113. },
  12114. {
  12115. name: "Megamacro+",
  12116. height: math.unit(400, "miles")
  12117. },
  12118. {
  12119. name: "Gigamacro",
  12120. height: math.unit(400000, "miles")
  12121. },
  12122. ]
  12123. ))
  12124. characterMakers.push(() => makeCharacter(
  12125. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12126. {
  12127. side: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(150, "lb"),
  12130. name: "Side",
  12131. image: {
  12132. source: "./media/characters/kimiko/side.svg",
  12133. extra: 600 / 358
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(15, "feet"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(220, "feet")
  12146. },
  12147. {
  12148. name: "Macro+",
  12149. height: math.unit(1450, "feet")
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(11500, "feet")
  12154. },
  12155. {
  12156. name: "Gigamacro",
  12157. height: math.unit(9500, "miles")
  12158. },
  12159. {
  12160. name: "Teramacro",
  12161. height: math.unit(2208005005, "miles")
  12162. },
  12163. {
  12164. name: "Examacro",
  12165. height: math.unit(2750, "parsecs")
  12166. },
  12167. {
  12168. name: "Zettamacro",
  12169. height: math.unit(101500, "parsecs")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(70, "kg"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/andrew-sleepy/front.svg"
  12182. }
  12183. },
  12184. side: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(70, "kg"),
  12187. name: "Side",
  12188. image: {
  12189. source: "./media/characters/andrew-sleepy/side.svg"
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Micro",
  12196. height: math.unit(1, "mm"),
  12197. default: true
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/judio/front.svg",
  12210. extra: 1258 / 1110
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(5 + 6 / 12, "feet")
  12218. },
  12219. {
  12220. name: "Macro",
  12221. height: math.unit(1000, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Megamacro",
  12226. height: math.unit(10, "miles")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12232. {
  12233. frontDressed: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(68, "kg"),
  12236. name: "Front (Dressed)",
  12237. image: {
  12238. source: "./media/characters/nomaxice/front-dressed.svg",
  12239. extra: 1137/824,
  12240. bottom: 74/1211
  12241. }
  12242. },
  12243. frontShorts: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(68, "kg"),
  12246. name: "Front (Shorts)",
  12247. image: {
  12248. source: "./media/characters/nomaxice/front-shorts.svg",
  12249. extra: 1137/824,
  12250. bottom: 74/1211
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(68, "kg"),
  12256. name: "Back",
  12257. image: {
  12258. source: "./media/characters/nomaxice/back.svg",
  12259. extra: 822/786,
  12260. bottom: 39/861
  12261. }
  12262. },
  12263. hand: {
  12264. height: math.unit(0.565, "feet"),
  12265. name: "Hand",
  12266. image: {
  12267. source: "./media/characters/nomaxice/hand.svg"
  12268. }
  12269. },
  12270. foot: {
  12271. height: math.unit(1, "feet"),
  12272. name: "Foot",
  12273. image: {
  12274. source: "./media/characters/nomaxice/foot.svg"
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Micro",
  12281. height: math.unit(8, "cm")
  12282. },
  12283. {
  12284. name: "Norm",
  12285. height: math.unit(1.82, "m")
  12286. },
  12287. {
  12288. name: "Norm+",
  12289. height: math.unit(8.8, "feet"),
  12290. default: true
  12291. },
  12292. {
  12293. name: "Big",
  12294. height: math.unit(8, "meters")
  12295. },
  12296. {
  12297. name: "Macro",
  12298. height: math.unit(18, "meters")
  12299. },
  12300. {
  12301. name: "Macro+",
  12302. height: math.unit(88, "meters")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(12, "feet"),
  12311. weight: math.unit(1.5, "tons"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/dydros/front.svg",
  12315. extra: 863 / 800,
  12316. bottom: 0.015
  12317. }
  12318. },
  12319. back: {
  12320. height: math.unit(12, "feet"),
  12321. weight: math.unit(1.5, "tons"),
  12322. name: "Back",
  12323. image: {
  12324. source: "./media/characters/dydros/back.svg",
  12325. extra: 900 / 843,
  12326. bottom: 0.005
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Normal",
  12333. height: math.unit(12, "feet"),
  12334. default: true
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(100, "kg"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/riggi/front.svg",
  12347. extra: 5787 / 5303
  12348. }
  12349. },
  12350. hyper: {
  12351. height: math.unit(6 * 5 / 3, "feet"),
  12352. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12353. name: "Hyper",
  12354. image: {
  12355. source: "./media/characters/riggi/hyper.svg",
  12356. extra: 3595 / 3485
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Small Macro",
  12363. height: math.unit(50, "feet")
  12364. },
  12365. {
  12366. name: "Default",
  12367. height: math.unit(200, "feet"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Loom",
  12372. height: math.unit(10000, "feet")
  12373. },
  12374. {
  12375. name: "Cruising Altitude",
  12376. height: math.unit(30000, "feet")
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(100, "miles")
  12381. },
  12382. {
  12383. name: "Continent Sized",
  12384. height: math.unit(2800, "miles")
  12385. },
  12386. {
  12387. name: "Earth Sized",
  12388. height: math.unit(8000, "miles")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(250, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/alexi/front.svg",
  12401. extra: 3483 / 3291,
  12402. bottom: 0.04
  12403. }
  12404. },
  12405. back: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(250, "lb"),
  12408. name: "Back",
  12409. image: {
  12410. source: "./media/characters/alexi/back.svg",
  12411. extra: 3533 / 3356,
  12412. bottom: 0.021
  12413. }
  12414. },
  12415. frontTransforming: {
  12416. height: math.unit(8.58, "feet"),
  12417. weight: math.unit(1300, "lb"),
  12418. name: "Transforming",
  12419. image: {
  12420. source: "./media/characters/alexi/front-transforming.svg",
  12421. extra: 437 / 409,
  12422. bottom: 19 / 458.66
  12423. }
  12424. },
  12425. frontTransformed: {
  12426. height: math.unit(12.5, "feet"),
  12427. weight: math.unit(4000, "lb"),
  12428. name: "Transformed",
  12429. image: {
  12430. source: "./media/characters/alexi/front-transformed.svg",
  12431. extra: 639 / 614,
  12432. bottom: 30.55 / 671
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(14, "feet"),
  12440. default: true
  12441. },
  12442. {
  12443. name: "Minimacro",
  12444. height: math.unit(30, "meters")
  12445. },
  12446. {
  12447. name: "Macro",
  12448. height: math.unit(500, "meters")
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(9000, "km")
  12453. },
  12454. {
  12455. name: "Teramacro",
  12456. height: math.unit(384000, "km")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/kayroo/front.svg",
  12469. extra: 1153 / 1038,
  12470. bottom: 0.06
  12471. }
  12472. },
  12473. foot: {
  12474. height: math.unit(6, "feet"),
  12475. weight: math.unit(150, "lb"),
  12476. name: "Foot",
  12477. image: {
  12478. source: "./media/characters/kayroo/foot.svg"
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(8, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Minimacro",
  12490. height: math.unit(250, "feet")
  12491. },
  12492. {
  12493. name: "Macro",
  12494. height: math.unit(2800, "feet")
  12495. },
  12496. {
  12497. name: "Megamacro",
  12498. height: math.unit(5200, "feet")
  12499. },
  12500. {
  12501. name: "Gigamacro",
  12502. height: math.unit(27000, "feet")
  12503. },
  12504. {
  12505. name: "Omega",
  12506. height: math.unit(45000, "feet")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(18, "feet"),
  12515. weight: math.unit(5800, "lb"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/rhys/front.svg",
  12519. extra: 3386 / 3090,
  12520. bottom: 0.07
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(18, "feet"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Working Size",
  12532. height: math.unit(200, "feet")
  12533. },
  12534. {
  12535. name: "Demolition Size",
  12536. height: math.unit(2000, "feet")
  12537. },
  12538. {
  12539. name: "Maximum Licensed Size",
  12540. height: math.unit(5, "miles")
  12541. },
  12542. {
  12543. name: "Maximum Observed Size",
  12544. height: math.unit(10, "yottameters")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(250, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/toto/front.svg",
  12557. extra: 527 / 479,
  12558. bottom: 0.05
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Micro",
  12565. height: math.unit(3, "feet")
  12566. },
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(10, "feet")
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(150, "feet"),
  12574. default: true
  12575. },
  12576. {
  12577. name: "Megamacro",
  12578. height: math.unit(1200, "feet")
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "King", species: ["lion"], tags: ["anthro"] },
  12584. {
  12585. back: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Back",
  12589. image: {
  12590. source: "./media/characters/king/back.svg"
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Micro",
  12597. height: math.unit(2, "inches")
  12598. },
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(8, "feet")
  12602. },
  12603. {
  12604. name: "Macro",
  12605. height: math.unit(200, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Megamacro",
  12610. height: math.unit(50, "miles")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(11, "feet"),
  12619. weight: math.unit(1400, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/cordite/front.svg",
  12623. extra: 1919/1827,
  12624. bottom: 40/1959
  12625. }
  12626. },
  12627. side: {
  12628. height: math.unit(11, "feet"),
  12629. weight: math.unit(1400, "lb"),
  12630. name: "Side",
  12631. image: {
  12632. source: "./media/characters/cordite/side.svg",
  12633. extra: 1908/1793,
  12634. bottom: 38/1946
  12635. }
  12636. },
  12637. back: {
  12638. height: math.unit(11, "feet"),
  12639. weight: math.unit(1400, "lb"),
  12640. name: "Back",
  12641. image: {
  12642. source: "./media/characters/cordite/back.svg",
  12643. extra: 1938/1837,
  12644. bottom: 10/1948
  12645. }
  12646. },
  12647. feral: {
  12648. height: math.unit(2, "feet"),
  12649. weight: math.unit(90, "lb"),
  12650. name: "Feral",
  12651. image: {
  12652. source: "./media/characters/cordite/feral.svg",
  12653. extra: 1260 / 755,
  12654. bottom: 0.05
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(11, "feet"),
  12662. default: true
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12668. {
  12669. front: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(150, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/pianostrong/front.svg",
  12675. extra: 6577 / 6254,
  12676. bottom: 0.02
  12677. }
  12678. },
  12679. side: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Side",
  12683. image: {
  12684. source: "./media/characters/pianostrong/side.svg",
  12685. extra: 6106 / 5730
  12686. }
  12687. },
  12688. back: {
  12689. height: math.unit(6, "feet"),
  12690. weight: math.unit(150, "lb"),
  12691. name: "Back",
  12692. image: {
  12693. source: "./media/characters/pianostrong/back.svg",
  12694. extra: 6085 / 5733,
  12695. bottom: 0.01
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Macro",
  12702. height: math.unit(100, "feet")
  12703. },
  12704. {
  12705. name: "Macro+",
  12706. height: math.unit(300, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Macro++",
  12711. height: math.unit(1000, "feet")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/kona/front.svg",
  12724. extra: 2960 / 2629,
  12725. bottom: 0.005
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(11 + 8 / 12, "feet")
  12733. },
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(850, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Macro+",
  12741. height: math.unit(1.5, "km"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Megamacro",
  12746. height: math.unit(80, "miles")
  12747. },
  12748. {
  12749. name: "Gigamacro",
  12750. height: math.unit(3500, "miles")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12756. {
  12757. side: {
  12758. height: math.unit(1.9, "meters"),
  12759. weight: math.unit(326, "kg"),
  12760. name: "Side",
  12761. image: {
  12762. source: "./media/characters/levi/side.svg",
  12763. extra: 1704 / 1334,
  12764. bottom: 0.02
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(1.9, "meters"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Macro",
  12776. height: math.unit(20, "meters")
  12777. },
  12778. {
  12779. name: "Macro+",
  12780. height: math.unit(200, "meters")
  12781. },
  12782. {
  12783. name: "Megamacro",
  12784. height: math.unit(2, "km")
  12785. },
  12786. {
  12787. name: "Megamacro+",
  12788. height: math.unit(20, "km")
  12789. },
  12790. {
  12791. name: "Gigamacro",
  12792. height: math.unit(2500, "km")
  12793. },
  12794. {
  12795. name: "Gigamacro+",
  12796. height: math.unit(120000, "km")
  12797. },
  12798. {
  12799. name: "Teramacro",
  12800. height: math.unit(7.77e6, "km")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(6 + 4/12, "feet"),
  12809. weight: math.unit(190, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/bmc/front.svg",
  12813. extra: 1626/1472,
  12814. bottom: 79/1705
  12815. }
  12816. },
  12817. back: {
  12818. height: math.unit(6 + 4/12, "feet"),
  12819. weight: math.unit(190, "lb"),
  12820. name: "Back",
  12821. image: {
  12822. source: "./media/characters/bmc/back.svg",
  12823. extra: 1640/1479,
  12824. bottom: 45/1685
  12825. }
  12826. },
  12827. frontArmor: {
  12828. height: math.unit(6 + 4/12, "feet"),
  12829. weight: math.unit(190, "lb"),
  12830. name: "Front-armor",
  12831. image: {
  12832. source: "./media/characters/bmc/front-armor.svg",
  12833. extra: 1538/1468,
  12834. bottom: 79/1617
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Human-sized",
  12841. height: math.unit(6 + 4 / 12, "feet")
  12842. },
  12843. {
  12844. name: "Interactive Size",
  12845. height: math.unit(25, "feet")
  12846. },
  12847. {
  12848. name: "Small",
  12849. height: math.unit(250, "feet")
  12850. },
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(1250, "feet"),
  12854. default: true
  12855. },
  12856. {
  12857. name: "Good Day",
  12858. height: math.unit(88, "miles")
  12859. },
  12860. {
  12861. name: "Largest Measured Size",
  12862. height: math.unit(105.960, "galaxies")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(20, "feet"),
  12871. weight: math.unit(2016, "kg"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/sven-the-kaiju/front.svg",
  12875. extra: 1277/1250,
  12876. bottom: 35/1312
  12877. }
  12878. },
  12879. mouth: {
  12880. height: math.unit(1.85, "feet"),
  12881. name: "Mouth",
  12882. image: {
  12883. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Fairy",
  12890. height: math.unit(6, "inches")
  12891. },
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(20, "feet"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Rampage",
  12899. height: math.unit(200, "feet")
  12900. },
  12901. {
  12902. name: "Archfey Forest Guardian",
  12903. height: math.unit(1, "mile")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(4, "meters"),
  12912. weight: math.unit(2, "tons"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/marik/front.svg",
  12916. extra: 1057 / 1003,
  12917. bottom: 0.08
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(4, "meters"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(20, "meters")
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(50, "km")
  12934. },
  12935. {
  12936. name: "Gigamacro",
  12937. height: math.unit(100, "km")
  12938. },
  12939. {
  12940. name: "Alpha Macro",
  12941. height: math.unit(7.88e7, "yottameters")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12947. {
  12948. front: {
  12949. height: math.unit(6, "feet"),
  12950. weight: math.unit(110, "lb"),
  12951. name: "Front",
  12952. image: {
  12953. source: "./media/characters/mel/front.svg",
  12954. extra: 736 / 617,
  12955. bottom: 0.017
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Pico",
  12962. height: math.unit(3, "pm")
  12963. },
  12964. {
  12965. name: "Nano",
  12966. height: math.unit(3, "nm")
  12967. },
  12968. {
  12969. name: "Micro",
  12970. height: math.unit(0.3, "mm"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Micro+",
  12975. height: math.unit(3, "mm")
  12976. },
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(5 + 10.5 / 12, "feet")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12985. {
  12986. kaiju: {
  12987. height: math.unit(1.75, "meters"),
  12988. weight: math.unit(55, "kg"),
  12989. name: "Kaiju",
  12990. image: {
  12991. source: "./media/characters/lykonous/kaiju.svg",
  12992. extra: 1055 / 946,
  12993. bottom: 0.135
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Normal",
  13000. height: math.unit(2.5, "meters"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Kaiju Dragon",
  13005. height: math.unit(60, "meters")
  13006. },
  13007. {
  13008. name: "Mega Kaiju",
  13009. height: math.unit(120, "km")
  13010. },
  13011. {
  13012. name: "Giga Kaiju",
  13013. height: math.unit(200, "megameters")
  13014. },
  13015. {
  13016. name: "Terra Kaiju",
  13017. height: math.unit(400, "gigameters")
  13018. },
  13019. {
  13020. name: "Kaiju Dragon God",
  13021. height: math.unit(13000, "exaparsecs")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/blü/front.svg",
  13034. extra: 1883 / 1564,
  13035. bottom: 0.031
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(13, "feet"),
  13043. default: true
  13044. },
  13045. {
  13046. name: "Big Boi",
  13047. height: math.unit(150, "meters")
  13048. },
  13049. {
  13050. name: "Mini Stomper",
  13051. height: math.unit(300, "meters")
  13052. },
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(1000, "meters")
  13056. },
  13057. {
  13058. name: "Megamacro",
  13059. height: math.unit(11000, "meters")
  13060. },
  13061. {
  13062. name: "Gigamacro",
  13063. height: math.unit(11000, "km")
  13064. },
  13065. {
  13066. name: "Teramacro",
  13067. height: math.unit(420000, "km")
  13068. },
  13069. {
  13070. name: "Examacro",
  13071. height: math.unit(120, "parsecs")
  13072. },
  13073. {
  13074. name: "God Tho",
  13075. height: math.unit(98000000000, "parsecs")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13081. {
  13082. taurFront: {
  13083. height: math.unit(6, "feet"),
  13084. weight: math.unit(200, "lb"),
  13085. name: "Taur (Front)",
  13086. image: {
  13087. source: "./media/characters/scales/taur-front.svg",
  13088. extra: 1,
  13089. bottom: 0.05
  13090. }
  13091. },
  13092. taurBack: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(200, "lb"),
  13095. name: "Taur (Back)",
  13096. image: {
  13097. source: "./media/characters/scales/taur-back.svg",
  13098. extra: 1,
  13099. bottom: 0.08
  13100. }
  13101. },
  13102. anthro: {
  13103. height: math.unit(6 * 7 / 12, "feet"),
  13104. weight: math.unit(100, "lb"),
  13105. name: "Anthro",
  13106. image: {
  13107. source: "./media/characters/scales/anthro.svg",
  13108. extra: 1,
  13109. bottom: 0.06
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(12, "feet"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/koragos/front.svg",
  13130. extra: 841 / 794,
  13131. bottom: 0.035
  13132. }
  13133. },
  13134. back: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Back",
  13138. image: {
  13139. source: "./media/characters/koragos/back.svg",
  13140. extra: 841 / 810,
  13141. bottom: 0.022
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(6 + 11 / 12, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Macro",
  13153. height: math.unit(490, "feet")
  13154. },
  13155. {
  13156. name: "Megamacro",
  13157. height: math.unit(10, "miles")
  13158. },
  13159. {
  13160. name: "Gigamacro",
  13161. height: math.unit(50, "miles")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(6, "feet"),
  13170. weight: math.unit(250, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/xylrem/front.svg",
  13174. extra: 3323 / 3050,
  13175. bottom: 0.065
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Micro",
  13182. height: math.unit(4, "feet")
  13183. },
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(16, "feet"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Macro",
  13191. height: math.unit(2720, "feet")
  13192. },
  13193. {
  13194. name: "Megamacro",
  13195. height: math.unit(25000, "miles")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(8, "feet"),
  13204. weight: math.unit(250, "kg"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/ikideru/front.svg",
  13208. extra: 930 / 870,
  13209. bottom: 0.087
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(8, "feet"),
  13214. weight: math.unit(250, "kg"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/ikideru/back.svg",
  13218. extra: 919 / 852,
  13219. bottom: 0.055
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Rare",
  13226. height: math.unit(8, "feet"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Playful Loom",
  13231. height: math.unit(80, "feet")
  13232. },
  13233. {
  13234. name: "City Leaner",
  13235. height: math.unit(230, "feet")
  13236. },
  13237. {
  13238. name: "Megamacro",
  13239. height: math.unit(2500, "feet")
  13240. },
  13241. {
  13242. name: "Gigamacro",
  13243. height: math.unit(26400, "feet")
  13244. },
  13245. {
  13246. name: "Tectonic Shifter",
  13247. height: math.unit(1.7, "megameters")
  13248. },
  13249. {
  13250. name: "Planet Carer",
  13251. height: math.unit(21, "megameters")
  13252. },
  13253. {
  13254. name: "God",
  13255. height: math.unit(11157.22, "parsecs")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(6, "feet"),
  13264. weight: math.unit(120, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/neo/front.svg"
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Micro",
  13274. height: math.unit(2, "inches"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Human Size",
  13279. height: math.unit(5 + 8 / 12, "feet")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(13 + 10 / 12, "feet"),
  13288. weight: math.unit(5320, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/chauncey-chantz/front.svg",
  13292. extra: 1587 / 1435,
  13293. bottom: 0.02
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(13 + 10 / 12, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(45, "feet")
  13306. },
  13307. {
  13308. name: "Megamacro",
  13309. height: math.unit(250, "miles")
  13310. },
  13311. {
  13312. name: "Planetary",
  13313. height: math.unit(10000, "miles")
  13314. },
  13315. {
  13316. name: "Galactic",
  13317. height: math.unit(40000, "parsecs")
  13318. },
  13319. {
  13320. name: "Universal",
  13321. height: math.unit(1, "yottameter")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13327. {
  13328. front: {
  13329. height: math.unit(6, "feet"),
  13330. weight: math.unit(150, "lb"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/epifox/front.svg",
  13334. extra: 1,
  13335. bottom: 0.075
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Micro",
  13342. height: math.unit(6, "inches")
  13343. },
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(12, "feet"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(3810, "feet")
  13352. },
  13353. {
  13354. name: "Megamacro",
  13355. height: math.unit(500, "miles")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(1.8796, "m"),
  13364. weight: math.unit(230, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/colin-t/front.svg",
  13368. extra: 1272 / 1193,
  13369. bottom: 0.07
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Micro",
  13376. height: math.unit(0.571, "meters")
  13377. },
  13378. {
  13379. name: "Normal",
  13380. height: math.unit(1.8796, "meters"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Tall",
  13385. height: math.unit(4, "meters")
  13386. },
  13387. {
  13388. name: "Macro",
  13389. height: math.unit(67.241, "meters")
  13390. },
  13391. {
  13392. name: "Megamacro",
  13393. height: math.unit(371.856, "meters")
  13394. },
  13395. {
  13396. name: "Planetary",
  13397. height: math.unit(12631.5689, "km")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(1.85, "meters"),
  13406. weight: math.unit(80, "kg"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/matvei/front.svg",
  13410. extra: 456/447,
  13411. bottom: 8/464
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(1.85, "meters"),
  13416. weight: math.unit(80, "kg"),
  13417. name: "Back",
  13418. image: {
  13419. source: "./media/characters/matvei/back.svg",
  13420. extra: 434/427,
  13421. bottom: 11/445
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(1.85, "meters"),
  13429. default: true
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(5 + 9 / 12, "feet"),
  13438. weight: math.unit(70, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/quincy/front.svg",
  13442. extra: 3041 / 2751
  13443. }
  13444. },
  13445. back: {
  13446. height: math.unit(5 + 9 / 12, "feet"),
  13447. weight: math.unit(70, "lb"),
  13448. name: "Back",
  13449. image: {
  13450. source: "./media/characters/quincy/back.svg",
  13451. extra: 3041 / 2751
  13452. }
  13453. },
  13454. flying: {
  13455. height: math.unit(5 + 4 / 12, "feet"),
  13456. weight: math.unit(70, "lb"),
  13457. name: "Flying",
  13458. image: {
  13459. source: "./media/characters/quincy/flying.svg",
  13460. extra: 1044 / 930
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Micro",
  13467. height: math.unit(3, "cm")
  13468. },
  13469. {
  13470. name: "Normal",
  13471. height: math.unit(5 + 9 / 12, "feet")
  13472. },
  13473. {
  13474. name: "Macro",
  13475. height: math.unit(200, "meters"),
  13476. default: true
  13477. },
  13478. {
  13479. name: "Megamacro",
  13480. height: math.unit(1000, "meters")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(3 + 11/12, "feet"),
  13489. weight: math.unit(50, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/vanrel/front.svg",
  13493. extra: 1104/949,
  13494. bottom: 52/1156
  13495. }
  13496. },
  13497. back: {
  13498. height: math.unit(3 + 11/12, "feet"),
  13499. weight: math.unit(50, "lb"),
  13500. name: "Back",
  13501. image: {
  13502. source: "./media/characters/vanrel/back.svg",
  13503. extra: 1119/976,
  13504. bottom: 37/1156
  13505. }
  13506. },
  13507. tome: {
  13508. height: math.unit(1.35, "feet"),
  13509. weight: math.unit(10, "lb"),
  13510. name: "Vanrel's Tome",
  13511. rename: true,
  13512. image: {
  13513. source: "./media/characters/vanrel/tome.svg"
  13514. }
  13515. },
  13516. beans: {
  13517. height: math.unit(0.89, "feet"),
  13518. name: "Beans",
  13519. image: {
  13520. source: "./media/characters/vanrel/beans.svg"
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(3 + 11/12, "feet"),
  13528. default: true
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(7 + 5 / 12, "feet"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/kuiper-vanrel/front.svg",
  13540. extra: 1219/1169,
  13541. bottom: 69/1288
  13542. }
  13543. },
  13544. back: {
  13545. height: math.unit(7 + 5 / 12, "feet"),
  13546. name: "Back",
  13547. image: {
  13548. source: "./media/characters/kuiper-vanrel/back.svg",
  13549. extra: 1236/1193,
  13550. bottom: 27/1263
  13551. }
  13552. },
  13553. foot: {
  13554. height: math.unit(0.55, "meters"),
  13555. name: "Foot",
  13556. image: {
  13557. source: "./media/characters/kuiper-vanrel/foot.svg",
  13558. }
  13559. },
  13560. battle: {
  13561. height: math.unit(6.824, "feet"),
  13562. name: "Battle",
  13563. image: {
  13564. source: "./media/characters/kuiper-vanrel/battle.svg",
  13565. extra: 1466 / 1327,
  13566. bottom: 29 / 1492.5
  13567. }
  13568. },
  13569. meerkui: {
  13570. height: math.unit(18, "inches"),
  13571. name: "Meerkui",
  13572. image: {
  13573. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13574. extra: 1354/1289,
  13575. bottom: 69/1423
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Normal",
  13582. height: math.unit(7 + 5 / 12, "feet"),
  13583. default: true
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(8 + 5 / 12, "feet"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/keset-vanrel/front.svg",
  13595. extra: 1231/1148,
  13596. bottom: 82/1313
  13597. }
  13598. },
  13599. back: {
  13600. height: math.unit(8 + 5 / 12, "feet"),
  13601. name: "Back",
  13602. image: {
  13603. source: "./media/characters/keset-vanrel/back.svg",
  13604. extra: 1240/1174,
  13605. bottom: 33/1273
  13606. }
  13607. },
  13608. hand: {
  13609. height: math.unit(0.6, "meters"),
  13610. name: "Hand",
  13611. image: {
  13612. source: "./media/characters/keset-vanrel/hand.svg"
  13613. }
  13614. },
  13615. foot: {
  13616. height: math.unit(0.94978, "meters"),
  13617. name: "Foot",
  13618. image: {
  13619. source: "./media/characters/keset-vanrel/foot.svg"
  13620. }
  13621. },
  13622. battle: {
  13623. height: math.unit(7.408, "feet"),
  13624. name: "Battle",
  13625. image: {
  13626. source: "./media/characters/keset-vanrel/battle.svg",
  13627. extra: 1890 / 1386,
  13628. bottom: 73.28 / 1970
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Normal",
  13635. height: math.unit(8 + 5 / 12, "feet"),
  13636. default: true
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/neos/front.svg",
  13649. extra: 1696 / 992,
  13650. bottom: 0.14
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(54, "cm"),
  13658. default: true
  13659. },
  13660. {
  13661. name: "Macro",
  13662. height: math.unit(100, "m")
  13663. },
  13664. {
  13665. name: "Megamacro",
  13666. height: math.unit(10, "km")
  13667. },
  13668. {
  13669. name: "Megamacro+",
  13670. height: math.unit(100, "km")
  13671. },
  13672. {
  13673. name: "Gigamacro",
  13674. height: math.unit(100, "Mm")
  13675. },
  13676. {
  13677. name: "Teramacro",
  13678. height: math.unit(100, "Gm")
  13679. },
  13680. {
  13681. name: "Examacro",
  13682. height: math.unit(100, "Em")
  13683. },
  13684. {
  13685. name: "Godly",
  13686. height: math.unit(10000, "Ym")
  13687. },
  13688. {
  13689. name: "Beyond Godly",
  13690. height: math.unit(25, "multiverses")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13696. {
  13697. feminine: {
  13698. height: math.unit(5, "feet"),
  13699. weight: math.unit(100, "lb"),
  13700. name: "Feminine",
  13701. image: {
  13702. source: "./media/characters/sammy-mouse/feminine.svg",
  13703. extra: 2526 / 2425,
  13704. bottom: 0.123
  13705. }
  13706. },
  13707. masculine: {
  13708. height: math.unit(5, "feet"),
  13709. weight: math.unit(100, "lb"),
  13710. name: "Masculine",
  13711. image: {
  13712. source: "./media/characters/sammy-mouse/masculine.svg",
  13713. extra: 2526 / 2425,
  13714. bottom: 0.123
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Micro",
  13721. height: math.unit(5, "inches")
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(5, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(60, "feet")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(4, "feet"),
  13739. weight: math.unit(50, "lb"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/kole/front.svg",
  13743. extra: 1423 / 1303,
  13744. bottom: 0.025
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(4, "feet"),
  13749. weight: math.unit(50, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/kole/back.svg",
  13753. extra: 1426 / 1280,
  13754. bottom: 0.02
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Normal",
  13761. height: math.unit(4, "feet"),
  13762. default: true
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13768. {
  13769. front: {
  13770. height: math.unit(2.5, "feet"),
  13771. weight: math.unit(32, "lb"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/rufran/front.svg",
  13775. extra: 1313/885,
  13776. bottom: 94/1407
  13777. }
  13778. },
  13779. side: {
  13780. height: math.unit(2.5, "feet"),
  13781. weight: math.unit(32, "lb"),
  13782. name: "Side",
  13783. image: {
  13784. source: "./media/characters/rufran/side.svg",
  13785. extra: 1109/852,
  13786. bottom: 118/1227
  13787. }
  13788. },
  13789. back: {
  13790. height: math.unit(2.5, "feet"),
  13791. weight: math.unit(32, "lb"),
  13792. name: "Back",
  13793. image: {
  13794. source: "./media/characters/rufran/back.svg",
  13795. extra: 1280/878,
  13796. bottom: 131/1411
  13797. }
  13798. },
  13799. mouth: {
  13800. height: math.unit(1.13, "feet"),
  13801. name: "Mouth",
  13802. image: {
  13803. source: "./media/characters/rufran/mouth.svg"
  13804. }
  13805. },
  13806. foot: {
  13807. height: math.unit(1.33, "feet"),
  13808. name: "Foot",
  13809. image: {
  13810. source: "./media/characters/rufran/foot.svg"
  13811. }
  13812. },
  13813. koboldFront: {
  13814. height: math.unit(2 + 6 / 12, "feet"),
  13815. weight: math.unit(20, "lb"),
  13816. name: "Front (Kobold)",
  13817. image: {
  13818. source: "./media/characters/rufran/kobold-front.svg",
  13819. extra: 2041 / 1839,
  13820. bottom: 0.055
  13821. }
  13822. },
  13823. koboldBack: {
  13824. height: math.unit(2 + 6 / 12, "feet"),
  13825. weight: math.unit(20, "lb"),
  13826. name: "Back (Kobold)",
  13827. image: {
  13828. source: "./media/characters/rufran/kobold-back.svg",
  13829. extra: 2054 / 1839,
  13830. bottom: 0.01
  13831. }
  13832. },
  13833. koboldHand: {
  13834. height: math.unit(0.2166, "meters"),
  13835. name: "Hand (Kobold)",
  13836. image: {
  13837. source: "./media/characters/rufran/kobold-hand.svg"
  13838. }
  13839. },
  13840. koboldFoot: {
  13841. height: math.unit(0.185, "meters"),
  13842. name: "Foot (Kobold)",
  13843. image: {
  13844. source: "./media/characters/rufran/kobold-foot.svg"
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(1, "inch")
  13852. },
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(2 + 6 / 12, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Big",
  13860. height: math.unit(60, "feet")
  13861. },
  13862. {
  13863. name: "Macro",
  13864. height: math.unit(325, "feet")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(0.3, "meters"),
  13873. weight: math.unit(3.5, "kg"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/chip/front.svg",
  13877. extra: 748 / 674
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Micro",
  13884. height: math.unit(1, "inch"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13891. {
  13892. side: {
  13893. height: math.unit(2.3, "meters"),
  13894. weight: math.unit(3500, "lb"),
  13895. name: "Side",
  13896. image: {
  13897. source: "./media/characters/torvid/side.svg",
  13898. extra: 1972 / 722,
  13899. bottom: 0.035
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(2.3, "meters"),
  13907. default: true
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13913. {
  13914. front: {
  13915. height: math.unit(2, "meters"),
  13916. weight: math.unit(150.5, "kg"),
  13917. name: "Front",
  13918. image: {
  13919. source: "./media/characters/susan/front.svg",
  13920. extra: 693 / 635,
  13921. bottom: 0.05
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Megamacro",
  13928. height: math.unit(505, "miles"),
  13929. default: true
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(6, "feet"),
  13938. weight: math.unit(150, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/raindrops/front.svg",
  13942. extra: 2655 / 2461,
  13943. bottom: 49 / 2705
  13944. }
  13945. },
  13946. back: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(150, "lb"),
  13949. name: "Back",
  13950. image: {
  13951. source: "./media/characters/raindrops/back.svg",
  13952. extra: 2574 / 2400,
  13953. bottom: 65 / 2634
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Micro",
  13960. height: math.unit(6, "inches")
  13961. },
  13962. {
  13963. name: "Normal",
  13964. height: math.unit(6 + 2 / 12, "feet")
  13965. },
  13966. {
  13967. name: "Macro",
  13968. height: math.unit(131, "feet"),
  13969. default: true
  13970. },
  13971. {
  13972. name: "Megamacro",
  13973. height: math.unit(15, "miles")
  13974. },
  13975. {
  13976. name: "Gigamacro",
  13977. height: math.unit(4000, "miles")
  13978. },
  13979. {
  13980. name: "Teramacro",
  13981. height: math.unit(315000, "miles")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(2.794, "meters"),
  13990. weight: math.unit(325, "kg"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/tezwa/front.svg",
  13994. extra: 2083 / 1906,
  13995. bottom: 0.031
  13996. }
  13997. },
  13998. foot: {
  13999. height: math.unit(0.687, "meters"),
  14000. name: "Foot",
  14001. image: {
  14002. source: "./media/characters/tezwa/foot.svg"
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(9 + 2 / 12, "feet"),
  14010. default: true
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14016. {
  14017. front: {
  14018. height: math.unit(58, "feet"),
  14019. weight: math.unit(89000, "lb"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/typhus/front.svg",
  14023. extra: 816 / 800,
  14024. bottom: 0.065
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(58, "feet"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14038. {
  14039. front: {
  14040. height: math.unit(12, "feet"),
  14041. weight: math.unit(6, "tonnes"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/lyra-von-wulf/front.svg",
  14045. extra: 1,
  14046. bottom: 0.10
  14047. }
  14048. },
  14049. frontMecha: {
  14050. height: math.unit(12, "feet"),
  14051. weight: math.unit(12, "tonnes"),
  14052. name: "Front (Mecha)",
  14053. image: {
  14054. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14055. extra: 1,
  14056. bottom: 0.042
  14057. }
  14058. },
  14059. maw: {
  14060. height: math.unit(2.2, "feet"),
  14061. name: "Maw",
  14062. image: {
  14063. source: "./media/characters/lyra-von-wulf/maw.svg"
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(12, "feet"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Classic",
  14075. height: math.unit(50, "feet")
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(500, "feet")
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(1, "mile")
  14084. },
  14085. {
  14086. name: "Gigamacro",
  14087. height: math.unit(400, "miles")
  14088. },
  14089. {
  14090. name: "Teramacro",
  14091. height: math.unit(22000, "miles")
  14092. },
  14093. {
  14094. name: "Solarmacro",
  14095. height: math.unit(8600000, "miles")
  14096. },
  14097. {
  14098. name: "Galactic",
  14099. height: math.unit(1057000, "lightyears")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6 + 10 / 12, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/dixon/front.svg",
  14112. extra: 3361 / 3209,
  14113. bottom: 0.01
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(6 + 10 / 12, "feet"),
  14121. default: true
  14122. },
  14123. {
  14124. name: "Big",
  14125. height: math.unit(12, "meters")
  14126. },
  14127. {
  14128. name: "Macro",
  14129. height: math.unit(500, "meters")
  14130. },
  14131. {
  14132. name: "Megamacro",
  14133. height: math.unit(2, "km")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(185, "cm"),
  14142. weight: math.unit(68, "kg"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/kauko/front.svg",
  14146. extra: 1455 / 1421,
  14147. bottom: 0.03
  14148. }
  14149. },
  14150. back: {
  14151. height: math.unit(185, "cm"),
  14152. weight: math.unit(68, "kg"),
  14153. name: "Back",
  14154. image: {
  14155. source: "./media/characters/kauko/back.svg",
  14156. extra: 1455 / 1421,
  14157. bottom: 0.004
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Normal",
  14164. height: math.unit(185, "cm"),
  14165. default: true
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14171. {
  14172. frontSfw: {
  14173. height: math.unit(5, "meters"),
  14174. weight: math.unit(4250, "lb"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/varg/front-sfw.svg",
  14178. extra: 1103/1010,
  14179. bottom: 50/1153
  14180. },
  14181. form: "anthro",
  14182. default: true
  14183. },
  14184. backSfw: {
  14185. height: math.unit(5, "meters"),
  14186. weight: math.unit(4250, "lb"),
  14187. name: "Back",
  14188. image: {
  14189. source: "./media/characters/varg/back-sfw.svg",
  14190. extra: 1038/1022,
  14191. bottom: 36/1074
  14192. },
  14193. form: "anthro"
  14194. },
  14195. frontNsfw: {
  14196. height: math.unit(5, "meters"),
  14197. weight: math.unit(4250, "lb"),
  14198. name: "Front (NSFW)",
  14199. image: {
  14200. source: "./media/characters/varg/front-nsfw.svg",
  14201. extra: 1103/1010,
  14202. bottom: 50/1153
  14203. },
  14204. form: "anthro"
  14205. },
  14206. sheath: {
  14207. height: math.unit(3.8, "feet"),
  14208. weight: math.unit(90, "kilograms"),
  14209. name: "Sheath",
  14210. image: {
  14211. source: "./media/characters/varg/sheath.svg"
  14212. },
  14213. form: "anthro"
  14214. },
  14215. dick: {
  14216. height: math.unit(4.6, "feet"),
  14217. weight: math.unit(451, "kilograms"),
  14218. name: "Dick",
  14219. image: {
  14220. source: "./media/characters/varg/dick.svg"
  14221. },
  14222. form: "anthro"
  14223. },
  14224. feralSfw: {
  14225. height: math.unit(5, "meters"),
  14226. weight: math.unit(100000, "lb"),
  14227. name: "Side",
  14228. image: {
  14229. source: "./media/characters/varg/feral-sfw.svg",
  14230. extra: 1065/511,
  14231. bottom: 211/1276
  14232. },
  14233. form: "feral",
  14234. default: true
  14235. },
  14236. feralNsfw: {
  14237. height: math.unit(5, "meters"),
  14238. weight: math.unit(100000, "lb"),
  14239. name: "Side (NSFW)",
  14240. image: {
  14241. source: "./media/characters/varg/feral-nsfw.svg",
  14242. extra: 1065/511,
  14243. bottom: 211/1276
  14244. },
  14245. form: "feral",
  14246. },
  14247. feralSheath: {
  14248. height: math.unit(9.8, "feet"),
  14249. weight: math.unit(2000, "kilograms"),
  14250. name: "Sheath",
  14251. image: {
  14252. source: "./media/characters/varg/sheath.svg"
  14253. },
  14254. form: "feral"
  14255. },
  14256. feralDick: {
  14257. height: math.unit(13.11, "feet"),
  14258. weight: math.unit(10440, "kilograms"),
  14259. name: "Dick",
  14260. image: {
  14261. source: "./media/characters/varg/dick.svg"
  14262. },
  14263. form: "feral"
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(5, "meters"),
  14270. form: "anthro"
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(200, "meters"),
  14275. form: "anthro"
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(20, "kilometers"),
  14280. form: "anthro"
  14281. },
  14282. {
  14283. name: "True Size",
  14284. height: math.unit(211, "km"),
  14285. form: "anthro",
  14286. default: true
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(1000, "km"),
  14291. form: "anthro"
  14292. },
  14293. {
  14294. name: "Gigamacro+",
  14295. height: math.unit(8000, "km"),
  14296. form: "anthro"
  14297. },
  14298. {
  14299. name: "Teramacro",
  14300. height: math.unit(1000000, "km"),
  14301. form: "anthro"
  14302. },
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(5, "meters"),
  14306. form: "feral"
  14307. },
  14308. {
  14309. name: "Macro",
  14310. height: math.unit(200, "meters"),
  14311. form: "feral"
  14312. },
  14313. {
  14314. name: "Megamacro",
  14315. height: math.unit(20, "kilometers"),
  14316. form: "feral"
  14317. },
  14318. {
  14319. name: "True Size",
  14320. height: math.unit(211, "km"),
  14321. form: "feral",
  14322. default: true
  14323. },
  14324. {
  14325. name: "Gigamacro",
  14326. height: math.unit(1000, "km"),
  14327. form: "feral"
  14328. },
  14329. {
  14330. name: "Gigamacro+",
  14331. height: math.unit(8000, "km"),
  14332. form: "feral"
  14333. },
  14334. {
  14335. name: "Teramacro",
  14336. height: math.unit(1000000, "km"),
  14337. form: "feral"
  14338. },
  14339. ],
  14340. {
  14341. "anthro": {
  14342. name: "Anthro",
  14343. default: true
  14344. },
  14345. "feral": {
  14346. name: "Feral",
  14347. },
  14348. }
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14352. {
  14353. front: {
  14354. height: math.unit(7 + 7 / 12, "feet"),
  14355. weight: math.unit(267, "lb"),
  14356. name: "Front",
  14357. image: {
  14358. source: "./media/characters/dayza/front.svg",
  14359. extra: 1262 / 1200,
  14360. bottom: 0.035
  14361. }
  14362. },
  14363. side: {
  14364. height: math.unit(7 + 7 / 12, "feet"),
  14365. weight: math.unit(267, "lb"),
  14366. name: "Side",
  14367. image: {
  14368. source: "./media/characters/dayza/side.svg",
  14369. extra: 1295 / 1245,
  14370. bottom: 0.05
  14371. }
  14372. },
  14373. back: {
  14374. height: math.unit(7 + 7 / 12, "feet"),
  14375. weight: math.unit(267, "lb"),
  14376. name: "Back",
  14377. image: {
  14378. source: "./media/characters/dayza/back.svg",
  14379. extra: 1241 / 1170
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(7 + 7 / 12, "feet"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(155, "feet")
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14397. {
  14398. front: {
  14399. height: math.unit(6 + 5 / 12, "feet"),
  14400. weight: math.unit(160, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/xanthos/front.svg",
  14404. extra: 1,
  14405. bottom: 0.04
  14406. }
  14407. },
  14408. back: {
  14409. height: math.unit(6 + 5 / 12, "feet"),
  14410. weight: math.unit(160, "lb"),
  14411. name: "Back",
  14412. image: {
  14413. source: "./media/characters/xanthos/back.svg",
  14414. extra: 1,
  14415. bottom: 0.03
  14416. }
  14417. },
  14418. hand: {
  14419. height: math.unit(0.928, "feet"),
  14420. name: "Hand",
  14421. image: {
  14422. source: "./media/characters/xanthos/hand.svg"
  14423. }
  14424. },
  14425. foot: {
  14426. height: math.unit(1.286, "feet"),
  14427. name: "Foot",
  14428. image: {
  14429. source: "./media/characters/xanthos/foot.svg"
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(6 + 5 / 12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Normal+",
  14441. height: math.unit(6, "meters")
  14442. },
  14443. {
  14444. name: "Macro",
  14445. height: math.unit(40, "feet")
  14446. },
  14447. {
  14448. name: "Macro+",
  14449. height: math.unit(200, "meters")
  14450. },
  14451. {
  14452. name: "Megamacro",
  14453. height: math.unit(20, "km")
  14454. },
  14455. {
  14456. name: "Megamacro+",
  14457. height: math.unit(100, "km")
  14458. },
  14459. {
  14460. name: "Gigamacro",
  14461. height: math.unit(200, "megameters")
  14462. },
  14463. {
  14464. name: "Gigamacro+",
  14465. height: math.unit(1.5, "gigameters")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6 + 3 / 12, "feet"),
  14474. weight: math.unit(215, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/grynn/front.svg",
  14478. extra: 4627 / 4209,
  14479. bottom: 0.047
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Micro",
  14486. height: math.unit(6, "inches")
  14487. },
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(6 + 3 / 12, "feet"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Big",
  14495. height: math.unit(104, "feet")
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(944, "feet")
  14500. },
  14501. {
  14502. name: "Macro+",
  14503. height: math.unit(9480, "feet")
  14504. },
  14505. {
  14506. name: "Megamacro",
  14507. height: math.unit(78752, "feet")
  14508. },
  14509. {
  14510. name: "Megamacro+",
  14511. height: math.unit(630128, "feet")
  14512. },
  14513. {
  14514. name: "Megamacro++",
  14515. height: math.unit(3150695, "feet")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(7 + 5 / 12, "feet"),
  14524. weight: math.unit(450, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/mocha-aura/front.svg",
  14528. extra: 1907 / 1817,
  14529. bottom: 0.04
  14530. }
  14531. },
  14532. back: {
  14533. height: math.unit(7 + 5 / 12, "feet"),
  14534. weight: math.unit(450, "lb"),
  14535. name: "Back",
  14536. image: {
  14537. source: "./media/characters/mocha-aura/back.svg",
  14538. extra: 1900 / 1825,
  14539. bottom: 0.045
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Nano",
  14546. height: math.unit(1, "nm")
  14547. },
  14548. {
  14549. name: "Megamicro",
  14550. height: math.unit(1, "mm")
  14551. },
  14552. {
  14553. name: "Micro",
  14554. height: math.unit(3, "inches")
  14555. },
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(7 + 5 / 12, "feet"),
  14559. default: true
  14560. },
  14561. {
  14562. name: "Macro",
  14563. height: math.unit(30, "feet")
  14564. },
  14565. {
  14566. name: "Megamacro",
  14567. height: math.unit(3500, "feet")
  14568. },
  14569. {
  14570. name: "Teramacro",
  14571. height: math.unit(500000, "miles")
  14572. },
  14573. {
  14574. name: "Petamacro",
  14575. height: math.unit(50000000000000000, "parsecs")
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(6, "feet"),
  14584. weight: math.unit(150, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/ilisha-devya/front.svg",
  14588. extra: 1053/1049,
  14589. bottom: 270/1323
  14590. }
  14591. },
  14592. back: {
  14593. height: math.unit(6, "feet"),
  14594. weight: math.unit(150, "lb"),
  14595. name: "Back",
  14596. image: {
  14597. source: "./media/characters/ilisha-devya/back.svg",
  14598. extra: 1131/1128,
  14599. bottom: 39/1170
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Macro",
  14606. height: math.unit(500, "feet"),
  14607. default: true
  14608. },
  14609. {
  14610. name: "Megamacro",
  14611. height: math.unit(10, "miles")
  14612. },
  14613. {
  14614. name: "Gigamacro",
  14615. height: math.unit(100000, "miles")
  14616. },
  14617. {
  14618. name: "Examacro",
  14619. height: math.unit(1e9, "lightyears")
  14620. },
  14621. {
  14622. name: "Omniversal",
  14623. height: math.unit(1e33, "lightyears")
  14624. },
  14625. {
  14626. name: "Beyond Infinite",
  14627. height: math.unit(1e100, "lightyears")
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14633. {
  14634. Side: {
  14635. height: math.unit(6, "feet"),
  14636. weight: math.unit(150, "lb"),
  14637. name: "Side",
  14638. image: {
  14639. source: "./media/characters/mira/side.svg",
  14640. extra: 900 / 799,
  14641. bottom: 0.02
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Human Size",
  14648. height: math.unit(6, "feet")
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(100, "feet"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Megamacro",
  14657. height: math.unit(10, "miles")
  14658. },
  14659. {
  14660. name: "Gigamacro",
  14661. height: math.unit(25000, "miles")
  14662. },
  14663. {
  14664. name: "Teramacro",
  14665. height: math.unit(300, "AU")
  14666. },
  14667. {
  14668. name: "Full Size",
  14669. height: math.unit(4.5e10, "lightyears")
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/holly/front.svg",
  14682. extra: 639 / 606
  14683. }
  14684. },
  14685. back: {
  14686. height: math.unit(6, "feet"),
  14687. weight: math.unit(150, "lb"),
  14688. name: "Back",
  14689. image: {
  14690. source: "./media/characters/holly/back.svg",
  14691. extra: 623 / 598
  14692. }
  14693. },
  14694. frontWorking: {
  14695. height: math.unit(6, "feet"),
  14696. weight: math.unit(150, "lb"),
  14697. name: "Front (Working)",
  14698. image: {
  14699. source: "./media/characters/holly/front-working.svg",
  14700. extra: 607 / 577,
  14701. bottom: 0.048
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(12 + 3 / 12, "feet"),
  14709. default: true
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(6, "feet"),
  14718. weight: math.unit(150, "lb"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/porter/front.svg",
  14722. extra: 1,
  14723. bottom: 0.01
  14724. }
  14725. },
  14726. frontRobes: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(150, "lb"),
  14729. name: "Front (Robes)",
  14730. image: {
  14731. source: "./media/characters/porter/front-robes.svg",
  14732. extra: 1.01,
  14733. bottom: 0.01
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Normal",
  14740. height: math.unit(11 + 9 / 12, "feet"),
  14741. default: true
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14747. {
  14748. legendary: {
  14749. height: math.unit(6, "feet"),
  14750. weight: math.unit(150, "lb"),
  14751. name: "Legendary",
  14752. image: {
  14753. source: "./media/characters/lucy/legendary.svg",
  14754. extra: 1355 / 1100,
  14755. bottom: 0.045
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Legendary",
  14762. height: math.unit(86882 * 2, "miles"),
  14763. default: true
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(150, "lb"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/drusilla/front.svg",
  14776. extra: 678 / 635,
  14777. bottom: 0.03
  14778. }
  14779. },
  14780. back: {
  14781. height: math.unit(6, "feet"),
  14782. weight: math.unit(150, "lb"),
  14783. name: "Back",
  14784. image: {
  14785. source: "./media/characters/drusilla/back.svg",
  14786. extra: 678 / 635,
  14787. bottom: 0.005
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Macro",
  14794. height: math.unit(100, "feet")
  14795. },
  14796. {
  14797. name: "Canon Height",
  14798. height: math.unit(2000, "feet"),
  14799. default: true
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(6, "feet"),
  14808. weight: math.unit(180, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/renard-thatch/front.svg",
  14812. extra: 2411 / 2275,
  14813. bottom: 0.01
  14814. }
  14815. },
  14816. frontPosing: {
  14817. height: math.unit(6, "feet"),
  14818. weight: math.unit(180, "lb"),
  14819. name: "Front (Posing)",
  14820. image: {
  14821. source: "./media/characters/renard-thatch/front-posing.svg",
  14822. extra: 2381 / 2261,
  14823. bottom: 0.01
  14824. }
  14825. },
  14826. back: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(180, "lb"),
  14829. name: "Back",
  14830. image: {
  14831. source: "./media/characters/renard-thatch/back.svg",
  14832. extra: 2428 / 2288
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Micro",
  14839. height: math.unit(3, "inches")
  14840. },
  14841. {
  14842. name: "Default",
  14843. height: math.unit(6, "feet"),
  14844. default: true
  14845. },
  14846. {
  14847. name: "Macro",
  14848. height: math.unit(75, "feet")
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(1450, "feet"),
  14857. weight: math.unit(1.21e6, "tons"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/sekvra/front.svg",
  14861. extra: 1193/1190,
  14862. bottom: 78/1271
  14863. }
  14864. },
  14865. side: {
  14866. height: math.unit(1450, "feet"),
  14867. weight: math.unit(1.21e6, "tons"),
  14868. name: "Side",
  14869. image: {
  14870. source: "./media/characters/sekvra/side.svg",
  14871. extra: 1193/1190,
  14872. bottom: 52/1245
  14873. }
  14874. },
  14875. back: {
  14876. height: math.unit(1450, "feet"),
  14877. weight: math.unit(1.21e6, "tons"),
  14878. name: "Back",
  14879. image: {
  14880. source: "./media/characters/sekvra/back.svg",
  14881. extra: 1219/1216,
  14882. bottom: 21/1240
  14883. }
  14884. },
  14885. frontClothed: {
  14886. height: math.unit(1450, "feet"),
  14887. weight: math.unit(1.21e6, "tons"),
  14888. name: "Front (Clothed)",
  14889. image: {
  14890. source: "./media/characters/sekvra/front-clothed.svg",
  14891. extra: 1192/1189,
  14892. bottom: 79/1271
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(1450, "feet"),
  14900. default: true
  14901. },
  14902. {
  14903. name: "Megamacro",
  14904. height: math.unit(15000, "feet")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(150, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/carmine/front.svg",
  14917. extra: 1557/1538,
  14918. bottom: 68/1625
  14919. }
  14920. },
  14921. frontArmor: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(150, "lb"),
  14924. name: "Front (Armor)",
  14925. image: {
  14926. source: "./media/characters/carmine/front-armor.svg",
  14927. extra: 1549/1530,
  14928. bottom: 82/1631
  14929. }
  14930. },
  14931. mouth: {
  14932. height: math.unit(0.55, "feet"),
  14933. name: "Mouth",
  14934. image: {
  14935. source: "./media/characters/carmine/mouth.svg"
  14936. }
  14937. },
  14938. hand: {
  14939. height: math.unit(1.05, "feet"),
  14940. name: "Hand",
  14941. image: {
  14942. source: "./media/characters/carmine/hand.svg"
  14943. }
  14944. },
  14945. foot: {
  14946. height: math.unit(0.6, "feet"),
  14947. name: "Foot",
  14948. image: {
  14949. source: "./media/characters/carmine/foot.svg"
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Large",
  14956. height: math.unit(1, "mile")
  14957. },
  14958. {
  14959. name: "Huge",
  14960. height: math.unit(40, "miles"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Colossal",
  14965. height: math.unit(2500, "miles")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(150, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/elyssia/front.svg",
  14978. extra: 2201 / 2035,
  14979. bottom: 0.05
  14980. }
  14981. },
  14982. frontClothed: {
  14983. height: math.unit(6, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Front (Clothed)",
  14986. image: {
  14987. source: "./media/characters/elyssia/front-clothed.svg",
  14988. extra: 2201 / 2035,
  14989. bottom: 0.05
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(6, "feet"),
  14994. weight: math.unit(150, "lb"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/elyssia/back.svg",
  14998. extra: 2201 / 2035,
  14999. bottom: 0.013
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Smaller",
  15006. height: math.unit(150, "feet")
  15007. },
  15008. {
  15009. name: "Standard",
  15010. height: math.unit(1400, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Distracted",
  15015. height: math.unit(15000, "feet")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(7 + 4/12, "feet"),
  15024. weight: math.unit(690, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/geno-maxwell/front.svg",
  15028. extra: 984/856,
  15029. bottom: 87/1071
  15030. }
  15031. },
  15032. back: {
  15033. height: math.unit(7 + 4/12, "feet"),
  15034. weight: math.unit(690, "lb"),
  15035. name: "Back",
  15036. image: {
  15037. source: "./media/characters/geno-maxwell/back.svg",
  15038. extra: 981/854,
  15039. bottom: 57/1038
  15040. }
  15041. },
  15042. frontCostume: {
  15043. height: math.unit(7 + 4/12, "feet"),
  15044. weight: math.unit(690, "lb"),
  15045. name: "Front (Costume)",
  15046. image: {
  15047. source: "./media/characters/geno-maxwell/front-costume.svg",
  15048. extra: 984/856,
  15049. bottom: 87/1071
  15050. }
  15051. },
  15052. backcostume: {
  15053. height: math.unit(7 + 4/12, "feet"),
  15054. weight: math.unit(690, "lb"),
  15055. name: "Back (Costume)",
  15056. image: {
  15057. source: "./media/characters/geno-maxwell/back-costume.svg",
  15058. extra: 981/854,
  15059. bottom: 57/1038
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Micro",
  15066. height: math.unit(3, "inches")
  15067. },
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(7 + 4 / 12, "feet"),
  15071. default: true
  15072. },
  15073. {
  15074. name: "Macro",
  15075. height: math.unit(220, "feet")
  15076. },
  15077. {
  15078. name: "Megamacro",
  15079. height: math.unit(11, "miles")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(7 + 4/12, "feet"),
  15088. weight: math.unit(750, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/regena-maxwell/front.svg",
  15092. extra: 984/856,
  15093. bottom: 87/1071
  15094. }
  15095. },
  15096. back: {
  15097. height: math.unit(7 + 4/12, "feet"),
  15098. weight: math.unit(750, "lb"),
  15099. name: "Back",
  15100. image: {
  15101. source: "./media/characters/regena-maxwell/back.svg",
  15102. extra: 981/854,
  15103. bottom: 57/1038
  15104. }
  15105. },
  15106. frontCostume: {
  15107. height: math.unit(7 + 4/12, "feet"),
  15108. weight: math.unit(750, "lb"),
  15109. name: "Front (Costume)",
  15110. image: {
  15111. source: "./media/characters/regena-maxwell/front-costume.svg",
  15112. extra: 984/856,
  15113. bottom: 87/1071
  15114. }
  15115. },
  15116. backcostume: {
  15117. height: math.unit(7 + 4/12, "feet"),
  15118. weight: math.unit(750, "lb"),
  15119. name: "Back (Costume)",
  15120. image: {
  15121. source: "./media/characters/regena-maxwell/back-costume.svg",
  15122. extra: 981/854,
  15123. bottom: 57/1038
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(7 + 4 / 12, "feet"),
  15131. default: true
  15132. },
  15133. {
  15134. name: "Macro",
  15135. height: math.unit(220, "feet")
  15136. },
  15137. {
  15138. name: "Megamacro",
  15139. height: math.unit(11, "miles")
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15152. extra: 860 / 690,
  15153. bottom: 0.03
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(1.7, "meters"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/quilly/front.svg",
  15174. extra: 890 / 776
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Gigamacro",
  15181. height: math.unit(404090, "miles"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(7 + 8 / 12, "feet"),
  15191. weight: math.unit(350, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/tempest/front.svg",
  15195. extra: 1175 / 1086,
  15196. bottom: 0.02
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(7 + 8 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15210. {
  15211. side: {
  15212. height: math.unit(4 + 5 / 12, "feet"),
  15213. weight: math.unit(80, "lb"),
  15214. name: "Side",
  15215. image: {
  15216. source: "./media/characters/rodger/side.svg",
  15217. extra: 1235 / 1118
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Micro",
  15224. height: math.unit(1, "inch")
  15225. },
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(4 + 5 / 12, "feet"),
  15229. default: true
  15230. },
  15231. {
  15232. name: "Macro",
  15233. height: math.unit(120, "feet")
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(6, "feet"),
  15242. weight: math.unit(150, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/danyel/front.svg",
  15246. extra: 1185 / 1123,
  15247. bottom: 0.05
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Shrunken",
  15254. height: math.unit(0.5, "mm")
  15255. },
  15256. {
  15257. name: "Micro",
  15258. height: math.unit(1, "mm"),
  15259. default: true
  15260. },
  15261. {
  15262. name: "Upsized",
  15263. height: math.unit(5 + 5 / 12, "feet")
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(5 + 6 / 12, "feet"),
  15272. weight: math.unit(200, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/vivian-bijoux/front.svg",
  15276. extra: 1217/1209,
  15277. bottom: 76/1293
  15278. }
  15279. },
  15280. back: {
  15281. height: math.unit(5 + 6 / 12, "feet"),
  15282. weight: math.unit(200, "lb"),
  15283. name: "Back",
  15284. image: {
  15285. source: "./media/characters/vivian-bijoux/back.svg",
  15286. extra: 1214/1208,
  15287. bottom: 51/1265
  15288. }
  15289. },
  15290. dressed: {
  15291. height: math.unit(5 + 6 / 12, "feet"),
  15292. weight: math.unit(200, "lb"),
  15293. name: "Dressed",
  15294. image: {
  15295. source: "./media/characters/vivian-bijoux/dressed.svg",
  15296. extra: 1217/1209,
  15297. bottom: 76/1293
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(5 + 6 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Bad Dream",
  15309. height: math.unit(500, "feet")
  15310. },
  15311. {
  15312. name: "Nightmare",
  15313. height: math.unit(500, "miles")
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(6 + 1 / 12, "feet"),
  15322. weight: math.unit(260, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/zeta/front.svg",
  15326. extra: 1968 / 1889,
  15327. bottom: 0.06
  15328. }
  15329. },
  15330. back: {
  15331. height: math.unit(6 + 1 / 12, "feet"),
  15332. weight: math.unit(260, "lb"),
  15333. name: "Back",
  15334. image: {
  15335. source: "./media/characters/zeta/back.svg",
  15336. extra: 1944 / 1858,
  15337. bottom: 0.03
  15338. }
  15339. },
  15340. hand: {
  15341. height: math.unit(1.112, "feet"),
  15342. name: "Hand",
  15343. image: {
  15344. source: "./media/characters/zeta/hand.svg"
  15345. }
  15346. },
  15347. foot: {
  15348. height: math.unit(1.48, "feet"),
  15349. name: "Foot",
  15350. image: {
  15351. source: "./media/characters/zeta/foot.svg"
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Micro",
  15358. height: math.unit(6, "inches")
  15359. },
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(6 + 1 / 12, "feet"),
  15363. default: true
  15364. },
  15365. {
  15366. name: "Macro",
  15367. height: math.unit(20, "feet")
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(150, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/jamie-larsen/front.svg",
  15380. extra: 962 / 933,
  15381. bottom: 0.02
  15382. }
  15383. },
  15384. back: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(150, "lb"),
  15387. name: "Back",
  15388. image: {
  15389. source: "./media/characters/jamie-larsen/back.svg",
  15390. extra: 997 / 946
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Macro",
  15397. height: math.unit(28 + 7 / 12, "feet"),
  15398. default: true
  15399. },
  15400. {
  15401. name: "Macro+",
  15402. height: math.unit(180, "feet")
  15403. },
  15404. {
  15405. name: "Megamacro",
  15406. height: math.unit(10, "miles")
  15407. },
  15408. {
  15409. name: "Gigamacro",
  15410. height: math.unit(200000, "miles")
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(120, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/vance/front.svg",
  15423. extra: 1980 / 1890,
  15424. bottom: 0.09
  15425. }
  15426. },
  15427. back: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(120, "lb"),
  15430. name: "Back",
  15431. image: {
  15432. source: "./media/characters/vance/back.svg",
  15433. extra: 2081 / 1994,
  15434. bottom: 0.014
  15435. }
  15436. },
  15437. hand: {
  15438. height: math.unit(0.88, "feet"),
  15439. name: "Hand",
  15440. image: {
  15441. source: "./media/characters/vance/hand.svg"
  15442. }
  15443. },
  15444. foot: {
  15445. height: math.unit(0.64, "feet"),
  15446. name: "Foot",
  15447. image: {
  15448. source: "./media/characters/vance/foot.svg"
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Small",
  15455. height: math.unit(90, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Macro",
  15460. height: math.unit(100, "meters")
  15461. },
  15462. {
  15463. name: "Megamacro",
  15464. height: math.unit(15, "miles")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(180, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/xochitl/front.svg",
  15477. extra: 2297 / 2261,
  15478. bottom: 0.065
  15479. }
  15480. },
  15481. back: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(180, "lb"),
  15484. name: "Back",
  15485. image: {
  15486. source: "./media/characters/xochitl/back.svg",
  15487. extra: 2386 / 2354,
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. foot: {
  15492. height: math.unit(6 / 5 * 1.15, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Foot",
  15495. image: {
  15496. source: "./media/characters/xochitl/foot.svg"
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Macro",
  15503. height: math.unit(80, "feet")
  15504. },
  15505. {
  15506. name: "Macro+",
  15507. height: math.unit(400, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Gigamacro",
  15512. height: math.unit(80000, "miles")
  15513. },
  15514. {
  15515. name: "Gigamacro+",
  15516. height: math.unit(400000, "miles")
  15517. },
  15518. {
  15519. name: "Teramacro",
  15520. height: math.unit(300, "AU")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/vincent/front.svg",
  15533. extra: 1130 / 1080,
  15534. bottom: 0.055
  15535. }
  15536. },
  15537. beak: {
  15538. height: math.unit(6 * 0.1, "feet"),
  15539. name: "Beak",
  15540. image: {
  15541. source: "./media/characters/vincent/beak.svg"
  15542. }
  15543. },
  15544. hand: {
  15545. height: math.unit(6 * 0.85, "feet"),
  15546. weight: math.unit(150, "lb"),
  15547. name: "Hand",
  15548. image: {
  15549. source: "./media/characters/vincent/hand.svg"
  15550. }
  15551. },
  15552. foot: {
  15553. height: math.unit(6 * 0.19, "feet"),
  15554. weight: math.unit(150, "lb"),
  15555. name: "Foot",
  15556. image: {
  15557. source: "./media/characters/vincent/foot.svg"
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Base",
  15564. height: math.unit(6 + 5 / 12, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro",
  15569. height: math.unit(300, "feet")
  15570. },
  15571. {
  15572. name: "Megamacro",
  15573. height: math.unit(2, "miles")
  15574. },
  15575. {
  15576. name: "Gigamacro",
  15577. height: math.unit(1000, "miles")
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(2, "meters"),
  15586. weight: math.unit(500, "kg"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/coatl/front.svg",
  15590. extra: 3948 / 3500,
  15591. bottom: 0.082
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(4, "meters")
  15599. },
  15600. {
  15601. name: "Macro",
  15602. height: math.unit(100, "meters"),
  15603. default: true
  15604. },
  15605. {
  15606. name: "Macro+",
  15607. height: math.unit(300, "meters")
  15608. },
  15609. {
  15610. name: "Megamacro",
  15611. height: math.unit(3, "gigameters")
  15612. },
  15613. {
  15614. name: "Megamacro+",
  15615. height: math.unit(300, "terameters")
  15616. },
  15617. {
  15618. name: "Megamacro++",
  15619. height: math.unit(3, "lightyears")
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15625. {
  15626. front: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(50, "kg"),
  15629. name: "front",
  15630. image: {
  15631. source: "./media/characters/shiroryu/front.svg",
  15632. extra: 1990 / 1935
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Mortal Mingling",
  15639. height: math.unit(3, "meters")
  15640. },
  15641. {
  15642. name: "Kaiju-ish",
  15643. height: math.unit(250, "meters")
  15644. },
  15645. {
  15646. name: "Somewhat Godly",
  15647. height: math.unit(400, "km"),
  15648. default: true
  15649. },
  15650. {
  15651. name: "Planetary",
  15652. height: math.unit(300, "megameters")
  15653. },
  15654. {
  15655. name: "Galaxy-dwarfing",
  15656. height: math.unit(450, "kiloparsecs")
  15657. },
  15658. {
  15659. name: "Universe Eater",
  15660. height: math.unit(150, "gigaparsecs")
  15661. },
  15662. {
  15663. name: "Almost Immeasurable",
  15664. height: math.unit(1.3e266, "yottaparsecs")
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(150, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/umeko/front.svg",
  15677. extra: 1,
  15678. bottom: 0.019
  15679. }
  15680. },
  15681. frontArmored: {
  15682. height: math.unit(6, "feet"),
  15683. weight: math.unit(150, "lb"),
  15684. name: "Front (Armored)",
  15685. image: {
  15686. source: "./media/characters/umeko/front-armored.svg",
  15687. extra: 1,
  15688. bottom: 0.021
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Macro",
  15695. height: math.unit(220, "feet"),
  15696. default: true
  15697. },
  15698. {
  15699. name: "Guardian Dragon",
  15700. height: math.unit(50, "miles")
  15701. },
  15702. {
  15703. name: "Cosmic",
  15704. height: math.unit(800000, "miles")
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/cassidy/front.svg",
  15717. extra: 810/808,
  15718. bottom: 41/851
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Canon Height",
  15725. height: math.unit(120, "feet"),
  15726. default: true
  15727. },
  15728. {
  15729. name: "Macro+",
  15730. height: math.unit(400, "feet")
  15731. },
  15732. {
  15733. name: "Macro++",
  15734. height: math.unit(4000, "feet")
  15735. },
  15736. {
  15737. name: "Megamacro",
  15738. height: math.unit(3, "miles")
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(6, "feet"),
  15747. weight: math.unit(150, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/isaac/front.svg",
  15751. extra: 896 / 815,
  15752. bottom: 0.11
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Human Size",
  15759. height: math.unit(8, "feet"),
  15760. default: true
  15761. },
  15762. {
  15763. name: "Macro",
  15764. height: math.unit(400, "feet")
  15765. },
  15766. {
  15767. name: "Megamacro",
  15768. height: math.unit(50, "miles")
  15769. },
  15770. {
  15771. name: "Canon Height",
  15772. height: math.unit(200, "AU")
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(72, "kg"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/sleekit/front.svg",
  15785. extra: 4693 / 4487,
  15786. bottom: 0.012
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Minimum Height",
  15793. height: math.unit(10, "meters")
  15794. },
  15795. {
  15796. name: "Smaller",
  15797. height: math.unit(25, "meters")
  15798. },
  15799. {
  15800. name: "Larger",
  15801. height: math.unit(38, "meters"),
  15802. default: true
  15803. },
  15804. {
  15805. name: "Maximum height",
  15806. height: math.unit(100, "meters")
  15807. },
  15808. ]
  15809. ))
  15810. characterMakers.push(() => makeCharacter(
  15811. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15812. {
  15813. front: {
  15814. height: math.unit(6, "feet"),
  15815. weight: math.unit(150, "lb"),
  15816. name: "Front",
  15817. image: {
  15818. source: "./media/characters/nillia/front.svg",
  15819. extra: 719/665,
  15820. bottom: 6/725
  15821. }
  15822. },
  15823. back: {
  15824. height: math.unit(6, "feet"),
  15825. weight: math.unit(150, "lb"),
  15826. name: "Back",
  15827. image: {
  15828. source: "./media/characters/nillia/back.svg",
  15829. extra: 705/651,
  15830. bottom: 5/710
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Canon Height",
  15837. height: math.unit(489, "feet"),
  15838. default: true
  15839. }
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/mesmyriza/front.svg",
  15851. extra: 1541/1291,
  15852. bottom: 87/1628
  15853. }
  15854. },
  15855. foot: {
  15856. height: math.unit(6 / (250 / 35), "feet"),
  15857. name: "Foot",
  15858. image: {
  15859. source: "./media/characters/mesmyriza/foot.svg"
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Macro",
  15866. height: math.unit(457, "meters"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Megamacro",
  15871. height: math.unit(8, "megameters")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(250, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/saudade/front.svg",
  15884. extra: 1172 / 1139,
  15885. bottom: 0.035
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Micro",
  15892. height: math.unit(3, "inches")
  15893. },
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(6, "feet"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Macro",
  15901. height: math.unit(50, "feet")
  15902. },
  15903. {
  15904. name: "Megamacro",
  15905. height: math.unit(2800, "feet")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(5 + 4 / 12, "feet"),
  15914. weight: math.unit(100, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/keireer/front.svg",
  15918. extra: 716 / 666,
  15919. bottom: 0.05
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(5 + 4 / 12, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(5.5, "feet"),
  15936. weight: math.unit(90, "kg"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/mirja/front.svg",
  15940. extra: 1452/1262,
  15941. bottom: 67/1519
  15942. }
  15943. },
  15944. frontDressed: {
  15945. height: math.unit(5.5, "feet"),
  15946. weight: math.unit(90, "lb"),
  15947. name: "Front (Dressed)",
  15948. image: {
  15949. source: "./media/characters/mirja/dressed.svg",
  15950. extra: 1452/1262,
  15951. bottom: 67/1519
  15952. }
  15953. },
  15954. back: {
  15955. height: math.unit(6, "feet"),
  15956. weight: math.unit(90, "lb"),
  15957. name: "Back",
  15958. image: {
  15959. source: "./media/characters/mirja/back.svg",
  15960. extra: 1892/1795,
  15961. bottom: 48/1940
  15962. }
  15963. },
  15964. maw: {
  15965. height: math.unit(1.312, "feet"),
  15966. name: "Maw",
  15967. image: {
  15968. source: "./media/characters/mirja/maw.svg"
  15969. }
  15970. },
  15971. paw: {
  15972. height: math.unit(1.15, "feet"),
  15973. name: "Paw",
  15974. image: {
  15975. source: "./media/characters/mirja/paw.svg"
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "\"Incognito\"",
  15982. height: math.unit(3, "meters")
  15983. },
  15984. {
  15985. name: "Strolling Size",
  15986. height: math.unit(15, "km")
  15987. },
  15988. {
  15989. name: "Larger Strolling Size",
  15990. height: math.unit(400, "km")
  15991. },
  15992. {
  15993. name: "Preferred Size",
  15994. height: math.unit(5000, "km"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "True Size",
  15999. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(15, "feet"),
  16008. weight: math.unit(880, "kg"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/nightraver/front.svg",
  16012. extra: 2444 / 2160,
  16013. bottom: 0.027
  16014. }
  16015. },
  16016. back: {
  16017. height: math.unit(15, "feet"),
  16018. weight: math.unit(880, "kg"),
  16019. name: "Back",
  16020. image: {
  16021. source: "./media/characters/nightraver/back.svg",
  16022. extra: 2309 / 2180,
  16023. bottom: 0.005
  16024. }
  16025. },
  16026. sole: {
  16027. height: math.unit(2.878, "feet"),
  16028. name: "Sole",
  16029. image: {
  16030. source: "./media/characters/nightraver/sole.svg"
  16031. }
  16032. },
  16033. foot: {
  16034. height: math.unit(2.285, "feet"),
  16035. name: "Foot",
  16036. image: {
  16037. source: "./media/characters/nightraver/foot.svg"
  16038. }
  16039. },
  16040. maw: {
  16041. height: math.unit(2.67, "feet"),
  16042. name: "Maw",
  16043. image: {
  16044. source: "./media/characters/nightraver/maw.svg"
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(1, "cm")
  16052. },
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(15, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(300, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(300, "miles")
  16065. },
  16066. {
  16067. name: "Gigamacro",
  16068. height: math.unit(10000, "miles")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16074. {
  16075. side: {
  16076. height: math.unit(2, "inches"),
  16077. weight: math.unit(5, "grams"),
  16078. name: "Side",
  16079. image: {
  16080. source: "./media/characters/arc/side.svg"
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Micro",
  16087. height: math.unit(2, "inches"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(1.1938, "meters"),
  16097. weight: math.unit(54, "kg"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/nebula-shahar/front.svg",
  16101. extra: 1642 / 1436,
  16102. bottom: 0.06
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Megamicro",
  16109. height: math.unit(0.3, "mm")
  16110. },
  16111. {
  16112. name: "Micro",
  16113. height: math.unit(3, "cm")
  16114. },
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(138, "cm"),
  16118. default: true
  16119. },
  16120. {
  16121. name: "Macro",
  16122. height: math.unit(30, "m")
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(5.24, "feet"),
  16131. weight: math.unit(150, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/shayla/front.svg",
  16135. extra: 1512 / 1414,
  16136. bottom: 0.01
  16137. }
  16138. },
  16139. back: {
  16140. height: math.unit(5.24, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Back",
  16143. image: {
  16144. source: "./media/characters/shayla/back.svg",
  16145. extra: 1512 / 1414
  16146. }
  16147. },
  16148. hand: {
  16149. height: math.unit(0.7781496062992126, "feet"),
  16150. name: "Hand",
  16151. image: {
  16152. source: "./media/characters/shayla/hand.svg"
  16153. }
  16154. },
  16155. foot: {
  16156. height: math.unit(1.4206036745406823, "feet"),
  16157. name: "Foot",
  16158. image: {
  16159. source: "./media/characters/shayla/foot.svg"
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Micro",
  16166. height: math.unit(0.32, "feet")
  16167. },
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(5.24, "feet"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(492.12, "feet")
  16176. },
  16177. {
  16178. name: "Megamacro",
  16179. height: math.unit(186.41, "miles")
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16185. {
  16186. front: {
  16187. height: math.unit(2.2, "m"),
  16188. weight: math.unit(120, "kg"),
  16189. name: "Front",
  16190. image: {
  16191. source: "./media/characters/pia-jr/front.svg",
  16192. extra: 1000 / 970,
  16193. bottom: 0.035
  16194. }
  16195. },
  16196. hand: {
  16197. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16198. name: "Hand",
  16199. image: {
  16200. source: "./media/characters/pia-jr/hand.svg"
  16201. }
  16202. },
  16203. paw: {
  16204. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16205. name: "Paw",
  16206. image: {
  16207. source: "./media/characters/pia-jr/paw.svg"
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(1.2, "cm")
  16215. },
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(2.2, "m"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(180, "m")
  16224. },
  16225. {
  16226. name: "Megamacro",
  16227. height: math.unit(420, "km")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(2, "m"),
  16236. weight: math.unit(115, "kg"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/pia-sr/front.svg",
  16240. extra: 760 / 730,
  16241. bottom: 0.015
  16242. }
  16243. },
  16244. back: {
  16245. height: math.unit(2, "m"),
  16246. weight: math.unit(115, "kg"),
  16247. name: "Back",
  16248. image: {
  16249. source: "./media/characters/pia-sr/back.svg",
  16250. extra: 760 / 730,
  16251. bottom: 0.01
  16252. }
  16253. },
  16254. hand: {
  16255. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16256. name: "Hand",
  16257. image: {
  16258. source: "./media/characters/pia-sr/hand.svg"
  16259. }
  16260. },
  16261. foot: {
  16262. height: math.unit(1.83, "feet"),
  16263. name: "Foot",
  16264. image: {
  16265. source: "./media/characters/pia-sr/foot.svg"
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Micro",
  16272. height: math.unit(88, "mm")
  16273. },
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(2, "m"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro",
  16281. height: math.unit(200, "m")
  16282. },
  16283. {
  16284. name: "Megamacro",
  16285. height: math.unit(420, "km")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(8 + 2 / 12, "feet"),
  16294. weight: math.unit(300, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/kibibyte/front.svg",
  16298. extra: 2221 / 2098,
  16299. bottom: 0.04
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(8 + 2 / 12, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Socialable Macro",
  16311. height: math.unit(50, "feet")
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(300, "feet")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(500, "miles")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6, "feet"),
  16328. weight: math.unit(150, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/felix/front.svg",
  16332. extra: 762 / 722,
  16333. bottom: 0.02
  16334. }
  16335. },
  16336. frontClothed: {
  16337. height: math.unit(6, "feet"),
  16338. weight: math.unit(150, "lb"),
  16339. name: "Front (Clothed)",
  16340. image: {
  16341. source: "./media/characters/felix/front-clothed.svg",
  16342. extra: 762 / 722,
  16343. bottom: 0.02
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(6 + 8 / 12, "feet"),
  16351. default: true
  16352. },
  16353. {
  16354. name: "Macro",
  16355. height: math.unit(2600, "feet")
  16356. },
  16357. {
  16358. name: "Megamacro",
  16359. height: math.unit(450, "miles")
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(6 + 1 / 12, "feet"),
  16368. weight: math.unit(250, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/tobo/front.svg",
  16372. extra: 608 / 586,
  16373. bottom: 0.023
  16374. }
  16375. },
  16376. back: {
  16377. height: math.unit(6 + 1 / 12, "feet"),
  16378. weight: math.unit(250, "lb"),
  16379. name: "Back",
  16380. image: {
  16381. source: "./media/characters/tobo/back.svg",
  16382. extra: 608 / 586
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Nano",
  16389. height: math.unit(2, "nm")
  16390. },
  16391. {
  16392. name: "Megamicro",
  16393. height: math.unit(0.1, "mm")
  16394. },
  16395. {
  16396. name: "Micro",
  16397. height: math.unit(1, "inch"),
  16398. default: true
  16399. },
  16400. {
  16401. name: "Human-sized",
  16402. height: math.unit(6 + 1 / 12, "feet")
  16403. },
  16404. {
  16405. name: "Macro",
  16406. height: math.unit(250, "feet")
  16407. },
  16408. {
  16409. name: "Megamacro",
  16410. height: math.unit(75, "miles")
  16411. },
  16412. {
  16413. name: "Texas-sized",
  16414. height: math.unit(750, "miles")
  16415. },
  16416. {
  16417. name: "Teramacro",
  16418. height: math.unit(50000, "miles")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(269, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/danny-kapowsky/front.svg",
  16431. extra: 766 / 736,
  16432. bottom: 0.044
  16433. }
  16434. },
  16435. back: {
  16436. height: math.unit(6, "feet"),
  16437. weight: math.unit(269, "lb"),
  16438. name: "Back",
  16439. image: {
  16440. source: "./media/characters/danny-kapowsky/back.svg",
  16441. extra: 797 / 760,
  16442. bottom: 0.025
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(150, "feet"),
  16450. default: true
  16451. },
  16452. {
  16453. name: "Macro+",
  16454. height: math.unit(200, "feet")
  16455. },
  16456. {
  16457. name: "Macro++",
  16458. height: math.unit(300, "feet")
  16459. },
  16460. {
  16461. name: "Macro+++",
  16462. height: math.unit(400, "feet")
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16468. {
  16469. side: {
  16470. height: math.unit(6, "feet"),
  16471. weight: math.unit(170, "lb"),
  16472. name: "Side",
  16473. image: {
  16474. source: "./media/characters/finn/side.svg",
  16475. extra: 1953 / 1807,
  16476. bottom: 0.057
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Megamacro",
  16483. height: math.unit(14445, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(5 + 6 / 12, "feet"),
  16493. weight: math.unit(125, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/roy/front.svg",
  16497. extra: 1,
  16498. bottom: 0.11
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Micro",
  16505. height: math.unit(3, "inches"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(5 + 6 / 12, "feet")
  16511. },
  16512. {
  16513. name: "Lesser Macro",
  16514. height: math.unit(60, "feet")
  16515. },
  16516. {
  16517. name: "Greater Macro",
  16518. height: math.unit(120, "feet")
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(6, "feet"),
  16527. weight: math.unit(100, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/aevsivs/front.svg",
  16531. extra: 1,
  16532. bottom: 0.03
  16533. }
  16534. },
  16535. back: {
  16536. height: math.unit(6, "feet"),
  16537. weight: math.unit(100, "lb"),
  16538. name: "Back",
  16539. image: {
  16540. source: "./media/characters/aevsivs/back.svg"
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Micro",
  16547. height: math.unit(2, "inches"),
  16548. default: true
  16549. },
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(5, "feet")
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(5 + 7 / 12, "feet"),
  16561. weight: math.unit(159, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/hildegard/front.svg",
  16565. extra: 289 / 269,
  16566. bottom: 7.63 / 297.8
  16567. }
  16568. },
  16569. back: {
  16570. height: math.unit(5 + 7 / 12, "feet"),
  16571. weight: math.unit(159, "lb"),
  16572. name: "Back",
  16573. image: {
  16574. source: "./media/characters/hildegard/back.svg",
  16575. extra: 280 / 260,
  16576. bottom: 2.3 / 282
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(5 + 7 / 12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16590. {
  16591. bernard: {
  16592. height: math.unit(2 + 7 / 12, "feet"),
  16593. weight: math.unit(66, "lb"),
  16594. name: "Bernard",
  16595. rename: true,
  16596. image: {
  16597. source: "./media/characters/bernard-wilder/bernard.svg",
  16598. extra: 192 / 128,
  16599. bottom: 0.05
  16600. }
  16601. },
  16602. wilder: {
  16603. height: math.unit(5 + 8 / 12, "feet"),
  16604. weight: math.unit(143, "lb"),
  16605. name: "Wilder",
  16606. rename: true,
  16607. image: {
  16608. source: "./media/characters/bernard-wilder/wilder.svg",
  16609. extra: 361 / 312,
  16610. bottom: 0.02
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(2 + 7 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16624. {
  16625. anthro: {
  16626. height: math.unit(6 + 1 / 12, "feet"),
  16627. weight: math.unit(155, "lb"),
  16628. name: "Anthro",
  16629. image: {
  16630. source: "./media/characters/hearth/anthro.svg",
  16631. extra: 1178/1136,
  16632. bottom: 28/1206
  16633. }
  16634. },
  16635. feral: {
  16636. height: math.unit(3.78, "feet"),
  16637. weight: math.unit(35, "kg"),
  16638. name: "Feral",
  16639. image: {
  16640. source: "./media/characters/hearth/feral.svg",
  16641. extra: 153 / 135,
  16642. bottom: 0.03
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(6 + 1 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(6, "feet"),
  16659. weight: math.unit(182, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/ingrid/front.svg",
  16663. extra: 294 / 268,
  16664. bottom: 0.027
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(6, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16678. {
  16679. eevee: {
  16680. height: math.unit(2 + 10 / 12, "feet"),
  16681. weight: math.unit(86, "lb"),
  16682. name: "Malgam",
  16683. image: {
  16684. source: "./media/characters/malgam/eevee.svg",
  16685. extra: 952/784,
  16686. bottom: 38/990
  16687. }
  16688. },
  16689. sylveon: {
  16690. height: math.unit(4, "feet"),
  16691. weight: math.unit(101, "lb"),
  16692. name: "Future Malgam",
  16693. rename: true,
  16694. image: {
  16695. source: "./media/characters/malgam/sylveon.svg",
  16696. extra: 371 / 325,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. gigantamax: {
  16701. height: math.unit(50, "feet"),
  16702. name: "Gigantamax Malgam",
  16703. rename: true,
  16704. image: {
  16705. source: "./media/characters/malgam/gigantamax.svg"
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(2 + 10 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 11 / 12, "feet"),
  16722. weight: math.unit(188, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/fleur/front.svg",
  16726. extra: 309 / 283,
  16727. bottom: 0.007
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 11 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 4 / 12, "feet"),
  16744. weight: math.unit(122, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/jude/front.svg",
  16748. extra: 288 / 273,
  16749. bottom: 0.03
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(5 + 4 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 11 / 12, "feet"),
  16766. weight: math.unit(190, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/seara/front.svg",
  16770. extra: 1,
  16771. bottom: 0.05
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5 + 11 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(16 + 5 / 12, "feet"),
  16788. weight: math.unit(524, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/caspian-lugia/front.svg",
  16792. extra: 1,
  16793. bottom: 0.04
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(16 + 5 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(5 + 7 / 12, "feet"),
  16810. weight: math.unit(170, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/mika/front.svg",
  16814. extra: 1,
  16815. bottom: 0.016
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(5 + 7 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(6 + 2 / 12, "feet"),
  16832. weight: math.unit(268, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/sol/front.svg",
  16836. extra: 247 / 231,
  16837. bottom: 0.05
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(6 + 2 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16851. {
  16852. buizel: {
  16853. height: math.unit(2 + 5 / 12, "feet"),
  16854. weight: math.unit(87, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/umiko/buizel.svg",
  16858. extra: 172 / 157,
  16859. bottom: 0.01
  16860. },
  16861. form: "buizel",
  16862. default: true
  16863. },
  16864. floatzel: {
  16865. height: math.unit(5 + 9 / 12, "feet"),
  16866. weight: math.unit(250, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/umiko/floatzel.svg",
  16870. extra: 1076/1006,
  16871. bottom: 15/1091
  16872. },
  16873. form: "floatzel",
  16874. default: true
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(2 + 5 / 12, "feet"),
  16881. form: "buizel",
  16882. default: true
  16883. },
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(5 + 9 / 12, "feet"),
  16887. form: "floatzel",
  16888. default: true
  16889. },
  16890. ],
  16891. {
  16892. "buizel": {
  16893. name: "Buizel"
  16894. },
  16895. "floatzel": {
  16896. name: "Floatzel",
  16897. default: true
  16898. }
  16899. }
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6 + 2 / 12, "feet"),
  16906. weight: math.unit(146, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/iliac/front.svg",
  16910. extra: 389 / 365,
  16911. bottom: 0.035
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(6 + 2 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(6, "feet"),
  16928. weight: math.unit(170, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/topaz/front.svg",
  16932. extra: 317 / 303,
  16933. bottom: 0.055
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(6, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(5 + 11 / 12, "feet"),
  16950. weight: math.unit(144, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/gabriel/front.svg",
  16954. extra: 285 / 262,
  16955. bottom: 0.004
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 11 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16969. {
  16970. side: {
  16971. height: math.unit(6 + 5 / 12, "feet"),
  16972. weight: math.unit(300, "lb"),
  16973. name: "Side",
  16974. image: {
  16975. source: "./media/characters/tempest-suicune/side.svg",
  16976. extra: 195 / 154,
  16977. bottom: 0.04
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(6 + 5 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(7 + 2 / 12, "feet"),
  16994. weight: math.unit(322, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/vulcan/front.svg",
  16998. extra: 154 / 147,
  16999. bottom: 0.04
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(7 + 2 / 12, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(5 + 10 / 12, "feet"),
  17016. weight: math.unit(264, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/gault/front.svg",
  17020. extra: 161 / 140,
  17021. bottom: 0.028
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(5 + 10 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(6, "feet"),
  17038. weight: math.unit(150, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/shard/front.svg",
  17042. extra: 273 / 238,
  17043. bottom: 0.02
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(3 + 6 / 12, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(5 + 11 / 12, "feet"),
  17060. weight: math.unit(146, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/ashe/front.svg",
  17064. extra: 400 / 373,
  17065. bottom: 0.01
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(5 + 11 / 12, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17079. {
  17080. front: {
  17081. height: math.unit(5 + 5 / 12, "feet"),
  17082. weight: math.unit(135, "lb"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/beatrix/front.svg",
  17086. extra: 392 / 379,
  17087. bottom: 0.01
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(6, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(6 + 2/12, "feet"),
  17104. weight: math.unit(135, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/ignatius/front.svg",
  17108. extra: 1380/1259,
  17109. bottom: 27/1407
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(6 + 2/12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(6 + 2 / 12, "feet"),
  17126. weight: math.unit(138, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/mei-li/front.svg",
  17130. extra: 237 / 229,
  17131. bottom: 0.03
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(6 + 2 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(2 + 4 / 12, "feet"),
  17148. weight: math.unit(62, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/puru/front.svg",
  17152. extra: 206 / 149,
  17153. bottom: 0.06
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(2 + 4 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17167. {
  17168. anthro: {
  17169. height: math.unit(5 + 8/12, "feet"),
  17170. weight: math.unit(200, "lb"),
  17171. energyNeed: math.unit(2000, "kcal"),
  17172. name: "Anthro",
  17173. image: {
  17174. source: "./media/characters/kee/anthro.svg",
  17175. extra: 3251/3184,
  17176. bottom: 250/3501
  17177. }
  17178. },
  17179. taur: {
  17180. height: math.unit(11, "feet"),
  17181. weight: math.unit(500, "lb"),
  17182. energyNeed: math.unit(5000, "kcal"),
  17183. name: "Taur",
  17184. image: {
  17185. source: "./media/characters/kee/taur.svg",
  17186. extra: 1362/1320,
  17187. bottom: 83/1445
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(5 + 8/12, "feet"),
  17195. default: true
  17196. },
  17197. {
  17198. name: "Macro",
  17199. height: math.unit(35, "feet")
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17205. {
  17206. anthro: {
  17207. height: math.unit(7, "feet"),
  17208. weight: math.unit(190, "lb"),
  17209. name: "Anthro",
  17210. image: {
  17211. source: "./media/characters/cobalt-dracha/anthro.svg",
  17212. extra: 231 / 225,
  17213. bottom: 0.04
  17214. }
  17215. },
  17216. feral: {
  17217. height: math.unit(9 + 7 / 12, "feet"),
  17218. weight: math.unit(294, "lb"),
  17219. name: "Feral",
  17220. image: {
  17221. source: "./media/characters/cobalt-dracha/feral.svg",
  17222. extra: 692 / 633,
  17223. bottom: 0.05
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(7, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17237. {
  17238. fallen: {
  17239. height: math.unit(11 + 8 / 12, "feet"),
  17240. weight: math.unit(485, "lb"),
  17241. name: "Java (Fallen)",
  17242. rename: true,
  17243. image: {
  17244. source: "./media/characters/java/fallen.svg",
  17245. extra: 226 / 208,
  17246. bottom: 0.005
  17247. }
  17248. },
  17249. godkin: {
  17250. height: math.unit(10 + 6 / 12, "feet"),
  17251. weight: math.unit(328, "lb"),
  17252. name: "Java (Godkin)",
  17253. rename: true,
  17254. image: {
  17255. source: "./media/characters/java/godkin.svg",
  17256. extra: 1104/1068,
  17257. bottom: 36/1140
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(11 + 8 / 12, "feet"),
  17265. default: true
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17271. {
  17272. front: {
  17273. height: math.unit(5 + 9 / 12, "feet"),
  17274. weight: math.unit(170, "lb"),
  17275. name: "Front",
  17276. image: {
  17277. source: "./media/characters/purna/front.svg",
  17278. extra: 239 / 229,
  17279. bottom: 0.01
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(5 + 9 / 12, "feet"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(5 + 9 / 12, "feet"),
  17296. weight: math.unit(142, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/kuva/front.svg",
  17300. extra: 281 / 271,
  17301. bottom: 0.006
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(5 + 9 / 12, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17315. {
  17316. anthro: {
  17317. height: math.unit(9 + 2 / 12, "feet"),
  17318. weight: math.unit(270, "lb"),
  17319. name: "Anthro",
  17320. image: {
  17321. source: "./media/characters/embra/anthro.svg",
  17322. extra: 200 / 187,
  17323. bottom: 0.02
  17324. }
  17325. },
  17326. feral: {
  17327. height: math.unit(18 + 8 / 12, "feet"),
  17328. weight: math.unit(576, "lb"),
  17329. name: "Feral",
  17330. image: {
  17331. source: "./media/characters/embra/feral.svg",
  17332. extra: 152 / 137,
  17333. bottom: 0.037
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(9 + 2 / 12, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17347. {
  17348. anthro: {
  17349. height: math.unit(10 + 9 / 12, "feet"),
  17350. weight: math.unit(224, "lb"),
  17351. name: "Anthro",
  17352. image: {
  17353. source: "./media/characters/grottos/anthro.svg",
  17354. extra: 350 / 332,
  17355. bottom: 0.045
  17356. }
  17357. },
  17358. feral: {
  17359. height: math.unit(20 + 7 / 12, "feet"),
  17360. weight: math.unit(629, "lb"),
  17361. name: "Feral",
  17362. image: {
  17363. source: "./media/characters/grottos/feral.svg",
  17364. extra: 207 / 190,
  17365. bottom: 0.05
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(10 + 9 / 12, "feet"),
  17373. default: true
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17379. {
  17380. anthro: {
  17381. height: math.unit(9 + 6 / 12, "feet"),
  17382. weight: math.unit(298, "lb"),
  17383. name: "Anthro",
  17384. image: {
  17385. source: "./media/characters/frifna/anthro.svg",
  17386. extra: 282 / 269,
  17387. bottom: 0.015
  17388. }
  17389. },
  17390. feral: {
  17391. height: math.unit(16 + 2 / 12, "feet"),
  17392. weight: math.unit(624, "lb"),
  17393. name: "Feral",
  17394. image: {
  17395. source: "./media/characters/frifna/feral.svg"
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(9 + 6 / 12, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(6 + 2 / 12, "feet"),
  17412. weight: math.unit(168, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/elise/front.svg",
  17416. extra: 276 / 271
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(6 + 2 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(5 + 10 / 12, "feet"),
  17433. weight: math.unit(210, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/glade/front.svg",
  17437. extra: 258 / 247,
  17438. bottom: 0.008
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 10 / 12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(5 + 10 / 12, "feet"),
  17455. weight: math.unit(129, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/rina/front.svg",
  17459. extra: 266 / 255,
  17460. bottom: 0.005
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(5 + 10 / 12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(6 + 1 / 12, "feet"),
  17477. weight: math.unit(192, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/veronica/front.svg",
  17481. extra: 319 / 309,
  17482. bottom: 0.005
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(6 + 1 / 12, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(9 + 3 / 12, "feet"),
  17499. weight: math.unit(1100, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/braxton/front.svg",
  17503. extra: 1057 / 984,
  17504. bottom: 0.05
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(9 + 3 / 12, "feet")
  17512. },
  17513. {
  17514. name: "Giant",
  17515. height: math.unit(300, "feet"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Macro",
  17520. height: math.unit(700, "feet")
  17521. },
  17522. {
  17523. name: "Megamacro",
  17524. height: math.unit(6000, "feet")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(6 + 7 / 12, "feet"),
  17533. weight: math.unit(150, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/blue-feyonics/front.svg",
  17537. extra: 1403 / 1306,
  17538. bottom: 0.047
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(6 + 7 / 12, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(1.8, "meters"),
  17555. weight: math.unit(60, "kg"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/maxwell/front.svg",
  17559. extra: 2060 / 1873
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Micro",
  17566. height: math.unit(1, "mm")
  17567. },
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(1.8, "meter"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "Macro",
  17575. height: math.unit(30, "meters")
  17576. },
  17577. {
  17578. name: "Megamacro",
  17579. height: math.unit(10, "km")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(150, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/jack/front.svg",
  17592. extra: 1754 / 1640,
  17593. bottom: 0.01
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(80000, "feet"),
  17601. default: true
  17602. },
  17603. {
  17604. name: "Max size",
  17605. height: math.unit(10, "lightyears")
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17611. {
  17612. urban: {
  17613. height: math.unit(5, "feet"),
  17614. weight: math.unit(240, "lb"),
  17615. name: "Urban",
  17616. image: {
  17617. source: "./media/characters/cafat/urban.svg",
  17618. extra: 1223/1126,
  17619. bottom: 205/1428
  17620. }
  17621. },
  17622. summer: {
  17623. height: math.unit(5, "feet"),
  17624. weight: math.unit(240, "lb"),
  17625. name: "Summer",
  17626. image: {
  17627. source: "./media/characters/cafat/summer.svg",
  17628. extra: 1223/1126,
  17629. bottom: 205/1428
  17630. }
  17631. },
  17632. winter: {
  17633. height: math.unit(5, "feet"),
  17634. weight: math.unit(240, "lb"),
  17635. name: "Winter",
  17636. image: {
  17637. source: "./media/characters/cafat/winter.svg",
  17638. extra: 1223/1126,
  17639. bottom: 205/1428
  17640. }
  17641. },
  17642. lingerie: {
  17643. height: math.unit(5, "feet"),
  17644. weight: math.unit(240, "lb"),
  17645. name: "Lingerie",
  17646. image: {
  17647. source: "./media/characters/cafat/lingerie.svg",
  17648. extra: 1223/1126,
  17649. bottom: 205/1428
  17650. }
  17651. },
  17652. upright: {
  17653. height: math.unit(6.3, "feet"),
  17654. weight: math.unit(240, "lb"),
  17655. name: "Upright",
  17656. image: {
  17657. source: "./media/characters/cafat/upright.svg",
  17658. bottom: 0.01
  17659. }
  17660. },
  17661. uprightFull: {
  17662. height: math.unit(6.3, "feet"),
  17663. weight: math.unit(240, "lb"),
  17664. name: "Upright (Full)",
  17665. image: {
  17666. source: "./media/characters/cafat/upright-full.svg",
  17667. bottom: 0.01
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Small",
  17674. height: math.unit(5, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Large",
  17679. height: math.unit(13, "feet")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6, "feet"),
  17688. weight: math.unit(150, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/verin-raharra/front.svg",
  17692. extra: 5019 / 4835,
  17693. bottom: 0.023
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(7 + 5 / 12, "feet"),
  17701. default: true
  17702. },
  17703. {
  17704. name: "Upsized",
  17705. height: math.unit(20, "feet")
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(7, "feet"),
  17714. weight: math.unit(230, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/nakata/front.svg",
  17718. extra: 1.005,
  17719. bottom: 0.01
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(7, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Big",
  17731. height: math.unit(14, "feet")
  17732. },
  17733. {
  17734. name: "Macro",
  17735. height: math.unit(400, "feet")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(4.91, "feet"),
  17744. weight: math.unit(100, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/lily/front.svg",
  17748. extra: 1585 / 1415,
  17749. bottom: 0.02
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(4.91, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17763. {
  17764. laying: {
  17765. height: math.unit(4 + 4 / 12, "feet"),
  17766. weight: math.unit(600, "lb"),
  17767. name: "Laying",
  17768. image: {
  17769. source: "./media/characters/sheila/laying.svg",
  17770. extra: 1333 / 1265,
  17771. bottom: 0.16
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(4 + 4 / 12, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(6, "feet"),
  17788. weight: math.unit(190, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/sax/front.svg",
  17792. extra: 1187 / 973,
  17793. bottom: 0.042
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Micro",
  17800. height: math.unit(4, "inches"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(6, "feet"),
  17810. weight: math.unit(150, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/pandora/front.svg",
  17814. extra: 2720 / 2556,
  17815. bottom: 0.015
  17816. }
  17817. },
  17818. back: {
  17819. height: math.unit(6, "feet"),
  17820. weight: math.unit(150, "lb"),
  17821. name: "Back",
  17822. image: {
  17823. source: "./media/characters/pandora/back.svg",
  17824. extra: 2720 / 2556,
  17825. bottom: 0.01
  17826. }
  17827. },
  17828. beans: {
  17829. height: math.unit(6 / 8, "feet"),
  17830. name: "Beans",
  17831. image: {
  17832. source: "./media/characters/pandora/beans.svg"
  17833. }
  17834. },
  17835. collar: {
  17836. height: math.unit(0.31, "feet"),
  17837. name: "Collar",
  17838. image: {
  17839. source: "./media/characters/pandora/collar.svg"
  17840. }
  17841. },
  17842. skirt: {
  17843. height: math.unit(6, "feet"),
  17844. weight: math.unit(150, "lb"),
  17845. name: "Skirt",
  17846. image: {
  17847. source: "./media/characters/pandora/skirt.svg",
  17848. extra: 1622 / 1525,
  17849. bottom: 0.015
  17850. }
  17851. },
  17852. hoodie: {
  17853. height: math.unit(6, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Hoodie",
  17856. image: {
  17857. source: "./media/characters/pandora/hoodie.svg",
  17858. extra: 1622 / 1525,
  17859. bottom: 0.015
  17860. }
  17861. },
  17862. casual: {
  17863. height: math.unit(6, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Casual",
  17866. image: {
  17867. source: "./media/characters/pandora/casual.svg",
  17868. extra: 1622 / 1525,
  17869. bottom: 0.015
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(6, "feet")
  17877. },
  17878. {
  17879. name: "Big Steppy",
  17880. height: math.unit(1, "km"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Galactic Steppy",
  17885. height: math.unit(2, "gigameters")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17891. {
  17892. side: {
  17893. height: math.unit(10, "feet"),
  17894. weight: math.unit(800, "kg"),
  17895. name: "Side",
  17896. image: {
  17897. source: "./media/characters/venio-darcony/side.svg",
  17898. extra: 1373 / 1003,
  17899. bottom: 0.037
  17900. }
  17901. },
  17902. front: {
  17903. height: math.unit(19, "feet"),
  17904. weight: math.unit(800, "kg"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/venio-darcony/front.svg"
  17908. }
  17909. },
  17910. back: {
  17911. height: math.unit(19, "feet"),
  17912. weight: math.unit(800, "kg"),
  17913. name: "Back",
  17914. image: {
  17915. source: "./media/characters/venio-darcony/back.svg"
  17916. }
  17917. },
  17918. sideNsfw: {
  17919. height: math.unit(10, "feet"),
  17920. weight: math.unit(800, "kg"),
  17921. name: "Side (NSFW)",
  17922. image: {
  17923. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17924. extra: 1373 / 1003,
  17925. bottom: 0.037
  17926. }
  17927. },
  17928. frontNsfw: {
  17929. height: math.unit(19, "feet"),
  17930. weight: math.unit(800, "kg"),
  17931. name: "Front (NSFW)",
  17932. image: {
  17933. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17934. }
  17935. },
  17936. backNsfw: {
  17937. height: math.unit(19, "feet"),
  17938. weight: math.unit(800, "kg"),
  17939. name: "Back (NSFW)",
  17940. image: {
  17941. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17942. }
  17943. },
  17944. sideArmored: {
  17945. height: math.unit(10, "feet"),
  17946. weight: math.unit(800, "kg"),
  17947. name: "Side (Armored)",
  17948. image: {
  17949. source: "./media/characters/venio-darcony/side-armored.svg",
  17950. extra: 1373 / 1003,
  17951. bottom: 0.037
  17952. }
  17953. },
  17954. frontArmored: {
  17955. height: math.unit(19, "feet"),
  17956. weight: math.unit(900, "kg"),
  17957. name: "Front (Armored)",
  17958. image: {
  17959. source: "./media/characters/venio-darcony/front-armored.svg"
  17960. }
  17961. },
  17962. backArmored: {
  17963. height: math.unit(19, "feet"),
  17964. weight: math.unit(900, "kg"),
  17965. name: "Back (Armored)",
  17966. image: {
  17967. source: "./media/characters/venio-darcony/back-armored.svg"
  17968. }
  17969. },
  17970. sword: {
  17971. height: math.unit(10, "feet"),
  17972. weight: math.unit(50, "lb"),
  17973. name: "Sword",
  17974. image: {
  17975. source: "./media/characters/venio-darcony/sword.svg"
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(10, "feet")
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(130, "feet"),
  17987. default: true
  17988. },
  17989. {
  17990. name: "Macro+",
  17991. height: math.unit(240, "feet")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(6, "feet"),
  18000. weight: math.unit(150, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/veski/front.svg",
  18004. extra: 1299 / 1225,
  18005. bottom: 0.04
  18006. }
  18007. },
  18008. back: {
  18009. height: math.unit(6, "feet"),
  18010. weight: math.unit(150, "lb"),
  18011. name: "Back",
  18012. image: {
  18013. source: "./media/characters/veski/back.svg",
  18014. extra: 1299 / 1225,
  18015. bottom: 0.008
  18016. }
  18017. },
  18018. maw: {
  18019. height: math.unit(1.5 * 1.21, "feet"),
  18020. name: "Maw",
  18021. image: {
  18022. source: "./media/characters/veski/maw.svg"
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(2, "km"),
  18030. default: true
  18031. },
  18032. ]
  18033. ))
  18034. characterMakers.push(() => makeCharacter(
  18035. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18036. {
  18037. front: {
  18038. height: math.unit(5 + 7 / 12, "feet"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/isabelle/front.svg",
  18042. extra: 2130 / 1976,
  18043. bottom: 0.05
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Supermicro",
  18050. height: math.unit(10, "micrometers")
  18051. },
  18052. {
  18053. name: "Micro",
  18054. height: math.unit(1, "inch")
  18055. },
  18056. {
  18057. name: "Tiny",
  18058. height: math.unit(5, "inches")
  18059. },
  18060. {
  18061. name: "Standard",
  18062. height: math.unit(5 + 7 / 12, "inches")
  18063. },
  18064. {
  18065. name: "Macro",
  18066. height: math.unit(80, "meters"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Megamacro",
  18071. height: math.unit(250, "meters")
  18072. },
  18073. {
  18074. name: "Gigamacro",
  18075. height: math.unit(5, "km")
  18076. },
  18077. {
  18078. name: "Cosmic",
  18079. height: math.unit(2.5e6, "miles")
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(6, "feet"),
  18088. weight: math.unit(150, "lb"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/hanzo/front.svg",
  18092. extra: 374 / 344,
  18093. bottom: 0.02
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Normal",
  18100. height: math.unit(8, "feet"),
  18101. default: true
  18102. },
  18103. ]
  18104. ))
  18105. characterMakers.push(() => makeCharacter(
  18106. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18107. {
  18108. front: {
  18109. height: math.unit(7, "feet"),
  18110. weight: math.unit(130, "lb"),
  18111. name: "Front",
  18112. image: {
  18113. source: "./media/characters/anna/front.svg",
  18114. extra: 169 / 145,
  18115. bottom: 0.06
  18116. }
  18117. },
  18118. full: {
  18119. height: math.unit(4.96, "feet"),
  18120. weight: math.unit(220, "lb"),
  18121. name: "Full",
  18122. image: {
  18123. source: "./media/characters/anna/full.svg",
  18124. extra: 138 / 114,
  18125. bottom: 0.15
  18126. }
  18127. },
  18128. tongue: {
  18129. height: math.unit(2.53, "feet"),
  18130. name: "Tongue",
  18131. image: {
  18132. source: "./media/characters/anna/tongue.svg"
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(7, "feet"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(7, "feet"),
  18149. weight: math.unit(150, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/ian-corvid/front.svg",
  18153. extra: 150 / 142,
  18154. bottom: 0.02
  18155. }
  18156. },
  18157. back: {
  18158. height: math.unit(7, "feet"),
  18159. weight: math.unit(150, "lb"),
  18160. name: "Back",
  18161. image: {
  18162. source: "./media/characters/ian-corvid/back.svg",
  18163. extra: 150 / 143,
  18164. bottom: 0.01
  18165. }
  18166. },
  18167. stomping: {
  18168. height: math.unit(7, "feet"),
  18169. weight: math.unit(150, "lb"),
  18170. name: "Stomping",
  18171. image: {
  18172. source: "./media/characters/ian-corvid/stomping.svg",
  18173. extra: 76 / 72
  18174. }
  18175. },
  18176. sitting: {
  18177. height: math.unit(7 / 1.8, "feet"),
  18178. weight: math.unit(150, "lb"),
  18179. name: "Sitting",
  18180. image: {
  18181. source: "./media/characters/ian-corvid/sitting.svg",
  18182. extra: 1400 / 1269,
  18183. bottom: 0.15
  18184. }
  18185. },
  18186. },
  18187. [
  18188. {
  18189. name: "Tiny Microw",
  18190. height: math.unit(1, "inch")
  18191. },
  18192. {
  18193. name: "Microw",
  18194. height: math.unit(6, "inches")
  18195. },
  18196. {
  18197. name: "Crow",
  18198. height: math.unit(7 + 1 / 12, "feet"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Macrow",
  18203. height: math.unit(176, "feet")
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(5 + 7 / 12, "feet"),
  18212. weight: math.unit(147, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/natalie-kellon/front.svg",
  18216. extra: 1214 / 1141,
  18217. bottom: 0.02
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Micro",
  18224. height: math.unit(1 / 16, "inch")
  18225. },
  18226. {
  18227. name: "Tiny",
  18228. height: math.unit(4, "inches")
  18229. },
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(5 + 7 / 12, "feet"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "Amazon",
  18237. height: math.unit(12, "feet")
  18238. },
  18239. {
  18240. name: "Giantess",
  18241. height: math.unit(160, "meters")
  18242. },
  18243. {
  18244. name: "Titaness",
  18245. height: math.unit(800, "meters")
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18251. {
  18252. front: {
  18253. height: math.unit(6, "feet"),
  18254. weight: math.unit(150, "lb"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/alluria/front.svg",
  18258. extra: 806 / 738,
  18259. bottom: 0.01
  18260. }
  18261. },
  18262. side: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Side",
  18266. image: {
  18267. source: "./media/characters/alluria/side.svg",
  18268. extra: 800 / 750,
  18269. }
  18270. },
  18271. back: {
  18272. height: math.unit(6, "feet"),
  18273. weight: math.unit(150, "lb"),
  18274. name: "Back",
  18275. image: {
  18276. source: "./media/characters/alluria/back.svg",
  18277. extra: 806 / 738,
  18278. }
  18279. },
  18280. frontMaid: {
  18281. height: math.unit(6, "feet"),
  18282. weight: math.unit(150, "lb"),
  18283. name: "Front (Maid)",
  18284. image: {
  18285. source: "./media/characters/alluria/front-maid.svg",
  18286. extra: 806 / 738,
  18287. bottom: 0.01
  18288. }
  18289. },
  18290. sideMaid: {
  18291. height: math.unit(6, "feet"),
  18292. weight: math.unit(150, "lb"),
  18293. name: "Side (Maid)",
  18294. image: {
  18295. source: "./media/characters/alluria/side-maid.svg",
  18296. extra: 800 / 750,
  18297. bottom: 0.005
  18298. }
  18299. },
  18300. backMaid: {
  18301. height: math.unit(6, "feet"),
  18302. weight: math.unit(150, "lb"),
  18303. name: "Back (Maid)",
  18304. image: {
  18305. source: "./media/characters/alluria/back-maid.svg",
  18306. extra: 806 / 738,
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Micro",
  18313. height: math.unit(6, "inches"),
  18314. default: true
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(6, "feet"),
  18323. weight: math.unit(150, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/kyle/front.svg",
  18327. extra: 1069 / 962,
  18328. bottom: 77.228 / 1727.45
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Macro",
  18335. height: math.unit(150, "feet"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6, "feet"),
  18345. weight: math.unit(300, "lb"),
  18346. name: "Front",
  18347. image: {
  18348. source: "./media/characters/duncan/front.svg",
  18349. extra: 1650 / 1482,
  18350. bottom: 0.05
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Macro",
  18357. height: math.unit(100, "feet"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18364. {
  18365. front: {
  18366. height: math.unit(5 + 4 / 12, "feet"),
  18367. weight: math.unit(220, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/memory/front.svg",
  18371. extra: 3641 / 3545,
  18372. bottom: 0.03
  18373. }
  18374. },
  18375. back: {
  18376. height: math.unit(5 + 4 / 12, "feet"),
  18377. weight: math.unit(220, "lb"),
  18378. name: "Back",
  18379. image: {
  18380. source: "./media/characters/memory/back.svg",
  18381. extra: 3641 / 3545,
  18382. bottom: 0.025
  18383. }
  18384. },
  18385. frontSkirt: {
  18386. height: math.unit(5 + 4 / 12, "feet"),
  18387. weight: math.unit(220, "lb"),
  18388. name: "Front (Skirt)",
  18389. image: {
  18390. source: "./media/characters/memory/front-skirt.svg",
  18391. extra: 3641 / 3545,
  18392. bottom: 0.03
  18393. }
  18394. },
  18395. frontDress: {
  18396. height: math.unit(5 + 4 / 12, "feet"),
  18397. weight: math.unit(220, "lb"),
  18398. name: "Front (Dress)",
  18399. image: {
  18400. source: "./media/characters/memory/front-dress.svg",
  18401. extra: 3641 / 3545,
  18402. bottom: 0.03
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Micro",
  18409. height: math.unit(6, "inches"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(5 + 4 / 12, "feet")
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(4 + 11 / 12, "feet"),
  18423. weight: math.unit(100, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/luno/front.svg",
  18427. extra: 1535 / 1487,
  18428. bottom: 0.03
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Micro",
  18435. height: math.unit(3, "inches")
  18436. },
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(4 + 11 / 12, "feet"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(300, "feet")
  18445. },
  18446. {
  18447. name: "Megamacro",
  18448. height: math.unit(700, "miles")
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18454. {
  18455. front: {
  18456. height: math.unit(6 + 2 / 12, "feet"),
  18457. weight: math.unit(170, "lb"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/jamesy/front.svg",
  18461. extra: 440 / 382,
  18462. bottom: 0.005
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Micro",
  18469. height: math.unit(3, "inches")
  18470. },
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(6 + 2 / 12, "feet"),
  18474. default: true
  18475. },
  18476. {
  18477. name: "Macro",
  18478. height: math.unit(300, "feet")
  18479. },
  18480. {
  18481. name: "Megamacro",
  18482. height: math.unit(700, "miles")
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(6, "feet"),
  18491. weight: math.unit(160, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/mark/front.svg",
  18495. extra: 3300 / 3100,
  18496. bottom: 136.42 / 3440.47
  18497. }
  18498. },
  18499. },
  18500. [
  18501. {
  18502. name: "Macro",
  18503. height: math.unit(120, "meters")
  18504. },
  18505. {
  18506. name: "Bigger Macro",
  18507. height: math.unit(350, "meters")
  18508. },
  18509. {
  18510. name: "Megamacro",
  18511. height: math.unit(8, "km"),
  18512. default: true
  18513. },
  18514. {
  18515. name: "Continental",
  18516. height: math.unit(4550, "km")
  18517. },
  18518. {
  18519. name: "Planetary",
  18520. height: math.unit(65000, "km")
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18526. {
  18527. front: {
  18528. height: math.unit(6, "feet"),
  18529. weight: math.unit(400, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/mac/front.svg",
  18533. extra: 1048 / 987.7,
  18534. bottom: 60 / 1107.6,
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(500, "feet"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(5 + 2 / 12, "feet"),
  18551. weight: math.unit(190, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/bari/front.svg",
  18555. extra: 3156 / 2880,
  18556. bottom: 0.03
  18557. }
  18558. },
  18559. back: {
  18560. height: math.unit(5 + 2 / 12, "feet"),
  18561. weight: math.unit(190, "lb"),
  18562. name: "Back",
  18563. image: {
  18564. source: "./media/characters/bari/back.svg",
  18565. extra: 3260 / 2834,
  18566. bottom: 0.025
  18567. }
  18568. },
  18569. frontPlush: {
  18570. height: math.unit(5 + 2 / 12, "feet"),
  18571. weight: math.unit(190, "lb"),
  18572. name: "Front (Plush)",
  18573. image: {
  18574. source: "./media/characters/bari/front-plush.svg",
  18575. extra: 1112 / 1061,
  18576. bottom: 0.002
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Micro",
  18583. height: math.unit(3, "inches")
  18584. },
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(5 + 2 / 12, "feet"),
  18588. default: true
  18589. },
  18590. {
  18591. name: "Macro",
  18592. height: math.unit(20, "feet")
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(6 + 1 / 12, "feet"),
  18601. weight: math.unit(275, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/hunter-misha-raven/front.svg"
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Mortal",
  18611. height: math.unit(6 + 1 / 12, "feet")
  18612. },
  18613. {
  18614. name: "Divine",
  18615. height: math.unit(1.12134e34, "parsecs"),
  18616. default: true
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(6 + 3 / 12, "feet"),
  18625. weight: math.unit(220, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/max-calore/front.svg",
  18629. extra: 1700 / 1648,
  18630. bottom: 0.01
  18631. }
  18632. },
  18633. back: {
  18634. height: math.unit(6 + 3 / 12, "feet"),
  18635. weight: math.unit(220, "lb"),
  18636. name: "Back",
  18637. image: {
  18638. source: "./media/characters/max-calore/back.svg",
  18639. extra: 1700 / 1648,
  18640. bottom: 0.01
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(6 + 3 / 12, "feet"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18654. {
  18655. side: {
  18656. height: math.unit(2 + 8 / 12, "feet"),
  18657. weight: math.unit(99, "lb"),
  18658. name: "Side",
  18659. image: {
  18660. source: "./media/characters/aspen/side.svg",
  18661. extra: 152 / 138,
  18662. bottom: 0.032
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(2 + 8 / 12, "feet"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18676. {
  18677. side: {
  18678. height: math.unit(3 + 2 / 12, "feet"),
  18679. weight: math.unit(224, "lb"),
  18680. name: "Side",
  18681. image: {
  18682. source: "./media/characters/sheila-feral-wolf/side.svg",
  18683. extra: 179 / 166,
  18684. bottom: 0.03
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(3 + 2 / 12, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18698. {
  18699. side: {
  18700. height: math.unit(1 + 9 / 12, "feet"),
  18701. weight: math.unit(38, "lb"),
  18702. name: "Side",
  18703. image: {
  18704. source: "./media/characters/michelle/side.svg",
  18705. extra: 147 / 136.7,
  18706. bottom: 0.03
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(1 + 9 / 12, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(1.54, "feet"),
  18723. weight: math.unit(50, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/nino/front.svg"
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(1.54, "feet"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(1.49, "feet"),
  18743. weight: math.unit(45, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/viola/front.svg"
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(1.49, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(6 + 5 / 12, "feet"),
  18763. weight: math.unit(580, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/atlas/front.svg",
  18767. extra: 298.5 / 290,
  18768. bottom: 0.015
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(6 + 5 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18782. {
  18783. side: {
  18784. height: math.unit(15.6, "inches"),
  18785. weight: math.unit(10, "lb"),
  18786. name: "Side",
  18787. image: {
  18788. source: "./media/characters/davy/side.svg",
  18789. extra: 200 / 170,
  18790. bottom: 0.01
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(15.6, "inches"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18804. {
  18805. side: {
  18806. height: math.unit(4 + 8 / 12, "feet"),
  18807. weight: math.unit(166, "lb"),
  18808. name: "Side",
  18809. image: {
  18810. source: "./media/characters/fiona/side.svg",
  18811. extra: 232 / 220,
  18812. bottom: 0.03
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(4 + 8 / 12, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18826. {
  18827. front: {
  18828. height: math.unit(26, "inches"),
  18829. weight: math.unit(35, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/lyla/front.svg",
  18833. bottom: 0.1
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(3, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18847. {
  18848. side: {
  18849. height: math.unit(1.8, "feet"),
  18850. weight: math.unit(44, "lb"),
  18851. name: "Side",
  18852. image: {
  18853. source: "./media/characters/perseus/side.svg",
  18854. bottom: 0.21
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(1.8, "feet"),
  18862. default: true
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18868. {
  18869. side: {
  18870. height: math.unit(4 + 2 / 12, "feet"),
  18871. weight: math.unit(20, "lb"),
  18872. name: "Side",
  18873. image: {
  18874. source: "./media/characters/remus/side.svg"
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(4 + 2 / 12, "feet"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(4 + 11 / 12, "feet"),
  18891. weight: math.unit(114, "lb"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/raf/front.svg",
  18895. extra: 1504/1339,
  18896. bottom: 26/1530
  18897. }
  18898. },
  18899. side: {
  18900. height: math.unit(4 + 11 / 12, "feet"),
  18901. weight: math.unit(114, "lb"),
  18902. name: "Side",
  18903. image: {
  18904. source: "./media/characters/raf/side.svg",
  18905. extra: 1466/1316,
  18906. bottom: 29/1495
  18907. }
  18908. },
  18909. paw: {
  18910. height: math.unit(1.45, "feet"),
  18911. name: "Paw",
  18912. image: {
  18913. source: "./media/characters/raf/paw.svg"
  18914. },
  18915. extraAttributes: {
  18916. "toeSize": {
  18917. name: "Toe Size",
  18918. power: 2,
  18919. type: "area",
  18920. base: math.unit(0.004, "m^2")
  18921. },
  18922. "padSize": {
  18923. name: "Pad Size",
  18924. power: 2,
  18925. type: "area",
  18926. base: math.unit(0.04, "m^2")
  18927. },
  18928. "footSize": {
  18929. name: "Foot Size",
  18930. power: 2,
  18931. type: "area",
  18932. base: math.unit(0.08, "m^2")
  18933. },
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(2, "inches")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(4 + 11 / 12, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(70, "feet")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(1.5, "meters"),
  18958. weight: math.unit(68, "kg"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/liam-einarr/front.svg",
  18962. extra: 2822 / 2666
  18963. }
  18964. },
  18965. back: {
  18966. height: math.unit(1.5, "meters"),
  18967. weight: math.unit(68, "kg"),
  18968. name: "Back",
  18969. image: {
  18970. source: "./media/characters/liam-einarr/back.svg",
  18971. extra: 2822 / 2666,
  18972. bottom: 0.015
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(1.5, "meters"),
  18980. default: true
  18981. },
  18982. {
  18983. name: "Macro",
  18984. height: math.unit(150, "meters")
  18985. },
  18986. {
  18987. name: "Megamacro",
  18988. height: math.unit(35, "km")
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(6, "feet"),
  18997. weight: math.unit(75, "kg"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/linda/front.svg",
  19001. extra: 930 / 874,
  19002. bottom: 0.004
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(6 + 8 / 12, "feet"),
  19019. weight: math.unit(220, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/caylex/front.svg",
  19023. extra: 821 / 772,
  19024. bottom: 0.07
  19025. }
  19026. },
  19027. back: {
  19028. height: math.unit(6 + 8 / 12, "feet"),
  19029. weight: math.unit(220, "lb"),
  19030. name: "Back",
  19031. image: {
  19032. source: "./media/characters/caylex/back.svg",
  19033. extra: 821 / 772,
  19034. bottom: 0.022
  19035. }
  19036. },
  19037. hand: {
  19038. height: math.unit(1.25, "feet"),
  19039. name: "Hand",
  19040. image: {
  19041. source: "./media/characters/caylex/hand.svg"
  19042. }
  19043. },
  19044. foot: {
  19045. height: math.unit(1.6, "feet"),
  19046. name: "Foot",
  19047. image: {
  19048. source: "./media/characters/caylex/foot.svg"
  19049. }
  19050. },
  19051. armored: {
  19052. height: math.unit(6 + 8 / 12, "feet"),
  19053. weight: math.unit(250, "lb"),
  19054. name: "Armored",
  19055. image: {
  19056. source: "./media/characters/caylex/armored.svg",
  19057. extra: 1420 / 1310,
  19058. bottom: 0.045
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(6 + 8 / 12, "feet"),
  19066. default: true
  19067. },
  19068. {
  19069. name: "Normal+",
  19070. height: math.unit(12, "feet")
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(7 + 6 / 12, "feet"),
  19079. weight: math.unit(288, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/alana/front.svg",
  19083. extra: 679 / 653,
  19084. bottom: 22.5 / 701
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(7 + 6 / 12, "feet")
  19092. },
  19093. {
  19094. name: "Large",
  19095. height: math.unit(50, "feet")
  19096. },
  19097. {
  19098. name: "Macro",
  19099. height: math.unit(100, "feet"),
  19100. default: true
  19101. },
  19102. {
  19103. name: "Macro+",
  19104. height: math.unit(200, "feet")
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(6 + 1 / 12, "feet"),
  19113. weight: math.unit(210, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/hasani/front.svg",
  19117. extra: 244 / 232,
  19118. bottom: 0.01
  19119. }
  19120. },
  19121. back: {
  19122. height: math.unit(6 + 1 / 12, "feet"),
  19123. weight: math.unit(210, "lb"),
  19124. name: "Back",
  19125. image: {
  19126. source: "./media/characters/hasani/back.svg",
  19127. extra: 244 / 232,
  19128. bottom: 0.01
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(6 + 1 / 12, "feet")
  19136. },
  19137. {
  19138. name: "Macro",
  19139. height: math.unit(175, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(1.82, "meters"),
  19149. weight: math.unit(140, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/nita/front.svg",
  19153. extra: 2473 / 2363,
  19154. bottom: 0.01
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(1.82, "m")
  19162. },
  19163. {
  19164. name: "Macro",
  19165. height: math.unit(300, "m")
  19166. },
  19167. {
  19168. name: "Mistake Canon",
  19169. height: math.unit(0.5, "miles"),
  19170. default: true
  19171. },
  19172. {
  19173. name: "Big Mistake",
  19174. height: math.unit(13, "miles")
  19175. },
  19176. {
  19177. name: "Playing God",
  19178. height: math.unit(2450, "miles")
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(4, "feet"),
  19187. weight: math.unit(120, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/shiriko/front.svg",
  19191. extra: 970/934,
  19192. bottom: 5/975
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(4, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(6, "feet"),
  19209. name: "front",
  19210. image: {
  19211. source: "./media/characters/deja/front.svg",
  19212. extra: 926 / 840,
  19213. bottom: 0.07
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Planck Length",
  19220. height: math.unit(1.6e-35, "meters")
  19221. },
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(30.48, "meters"),
  19225. default: true
  19226. },
  19227. {
  19228. name: "Universal",
  19229. height: math.unit(8.8e26, "meters")
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19235. {
  19236. side: {
  19237. height: math.unit(8, "feet"),
  19238. weight: math.unit(6300, "lb"),
  19239. name: "Side",
  19240. image: {
  19241. source: "./media/characters/anima/side.svg",
  19242. bottom: 0.035
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(8, "feet"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(8, "feet"),
  19259. weight: math.unit(350, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/bianca/front.svg",
  19263. extra: 234 / 225,
  19264. bottom: 0.03
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(8, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(11 + 5/12, "feet"),
  19281. weight: math.unit(1200, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/adinia/front.svg",
  19285. extra: 1767/1641,
  19286. bottom: 44/1811
  19287. },
  19288. extraAttributes: {
  19289. "energyIntake": {
  19290. name: "Energy Intake",
  19291. power: 3,
  19292. type: "energy",
  19293. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19294. },
  19295. }
  19296. },
  19297. back: {
  19298. height: math.unit(11 + 5/12, "feet"),
  19299. weight: math.unit(1200, "lb"),
  19300. name: "Back",
  19301. image: {
  19302. source: "./media/characters/adinia/back.svg",
  19303. extra: 1834/1684,
  19304. bottom: 14/1848
  19305. },
  19306. extraAttributes: {
  19307. "energyIntake": {
  19308. name: "Energy Intake",
  19309. power: 3,
  19310. type: "energy",
  19311. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19312. },
  19313. }
  19314. },
  19315. maw: {
  19316. height: math.unit(3.79, "feet"),
  19317. name: "Maw",
  19318. image: {
  19319. source: "./media/characters/adinia/maw.svg"
  19320. }
  19321. },
  19322. rump: {
  19323. height: math.unit(4.6, "feet"),
  19324. name: "Rump",
  19325. image: {
  19326. source: "./media/characters/adinia/rump.svg"
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(11 + 5 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(3, "meters"),
  19343. weight: math.unit(200, "kg"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/lykasa/front.svg",
  19347. extra: 1076 / 976,
  19348. bottom: 0.06
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(3, "meters")
  19356. },
  19357. {
  19358. name: "Kaiju",
  19359. height: math.unit(120, "meters"),
  19360. default: true
  19361. },
  19362. {
  19363. name: "Mega Kaiju",
  19364. height: math.unit(240, "km")
  19365. },
  19366. {
  19367. name: "Giga Kaiju",
  19368. height: math.unit(400, "megameters")
  19369. },
  19370. {
  19371. name: "Tera Kaiju",
  19372. height: math.unit(800, "gigameters")
  19373. },
  19374. {
  19375. name: "Kaiju Dragon Goddess",
  19376. height: math.unit(26, "zettaparsecs")
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19382. {
  19383. side: {
  19384. height: math.unit(283 / 124 * 6, "feet"),
  19385. weight: math.unit(35000, "lb"),
  19386. name: "Side",
  19387. image: {
  19388. source: "./media/characters/malfaren/side.svg",
  19389. extra: 1310/529,
  19390. bottom: 24/1334
  19391. }
  19392. },
  19393. front: {
  19394. height: math.unit(22.36, "feet"),
  19395. weight: math.unit(35000, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/malfaren/front.svg",
  19399. extra: 1237/1115,
  19400. bottom: 32/1269
  19401. }
  19402. },
  19403. maw: {
  19404. height: math.unit(6.9, "feet"),
  19405. name: "Maw",
  19406. image: {
  19407. source: "./media/characters/malfaren/maw.svg"
  19408. }
  19409. },
  19410. dick: {
  19411. height: math.unit(6.19, "feet"),
  19412. name: "Dick",
  19413. image: {
  19414. source: "./media/characters/malfaren/dick.svg"
  19415. }
  19416. },
  19417. eye: {
  19418. height: math.unit(0.69, "feet"),
  19419. name: "Eye",
  19420. image: {
  19421. source: "./media/characters/malfaren/eye.svg"
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Big",
  19428. height: math.unit(283 / 162 * 6, "feet"),
  19429. },
  19430. {
  19431. name: "Bigger",
  19432. height: math.unit(283 / 124 * 6, "feet")
  19433. },
  19434. {
  19435. name: "Massive",
  19436. height: math.unit(283 / 92 * 6, "feet"),
  19437. default: true
  19438. },
  19439. {
  19440. name: "👀💦",
  19441. height: math.unit(283 / 73 * 6, "feet"),
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(1.7, "m"),
  19450. weight: math.unit(70, "kg"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/kernel/front.svg",
  19454. extra: 222 / 210,
  19455. bottom: 0.007
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Nano",
  19462. height: math.unit(17, "micrometers")
  19463. },
  19464. {
  19465. name: "Micro",
  19466. height: math.unit(1.7, "mm")
  19467. },
  19468. {
  19469. name: "Small",
  19470. height: math.unit(1.7, "cm")
  19471. },
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(1.7, "m"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(1.75, "meters"),
  19484. weight: math.unit(65, "kg"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/jayne-folest/front.svg",
  19488. extra: 2115 / 2007,
  19489. bottom: 0.02
  19490. }
  19491. },
  19492. back: {
  19493. height: math.unit(1.75, "meters"),
  19494. weight: math.unit(65, "kg"),
  19495. name: "Back",
  19496. image: {
  19497. source: "./media/characters/jayne-folest/back.svg",
  19498. extra: 2115 / 2007,
  19499. bottom: 0.005
  19500. }
  19501. },
  19502. frontClothed: {
  19503. height: math.unit(1.75, "meters"),
  19504. weight: math.unit(65, "kg"),
  19505. name: "Front (Clothed)",
  19506. image: {
  19507. source: "./media/characters/jayne-folest/front-clothed.svg",
  19508. extra: 2115 / 2007,
  19509. bottom: 0.035
  19510. }
  19511. },
  19512. hand: {
  19513. height: math.unit(1 / 1.260, "feet"),
  19514. name: "Hand",
  19515. image: {
  19516. source: "./media/characters/jayne-folest/hand.svg"
  19517. }
  19518. },
  19519. foot: {
  19520. height: math.unit(1 / 0.918, "feet"),
  19521. name: "Foot",
  19522. image: {
  19523. source: "./media/characters/jayne-folest/foot.svg"
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Micro",
  19530. height: math.unit(4, "cm")
  19531. },
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(1.75, "meters")
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(47.5, "meters"),
  19539. default: true
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19545. {
  19546. front: {
  19547. height: math.unit(180, "cm"),
  19548. weight: math.unit(70, "kg"),
  19549. name: "Front",
  19550. image: {
  19551. source: "./media/characters/algier/front.svg",
  19552. extra: 596 / 572,
  19553. bottom: 0.04
  19554. }
  19555. },
  19556. back: {
  19557. height: math.unit(180, "cm"),
  19558. weight: math.unit(70, "kg"),
  19559. name: "Back",
  19560. image: {
  19561. source: "./media/characters/algier/back.svg",
  19562. extra: 596 / 572,
  19563. bottom: 0.025
  19564. }
  19565. },
  19566. frontdressed: {
  19567. height: math.unit(180, "cm"),
  19568. weight: math.unit(150, "kg"),
  19569. name: "Front-dressed",
  19570. image: {
  19571. source: "./media/characters/algier/front-dressed.svg",
  19572. extra: 596 / 572,
  19573. bottom: 0.038
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Micro",
  19580. height: math.unit(5, "cm")
  19581. },
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(180, "cm"),
  19585. default: true
  19586. },
  19587. {
  19588. name: "Macro",
  19589. height: math.unit(64, "m")
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19595. {
  19596. upright: {
  19597. height: math.unit(7, "feet"),
  19598. weight: math.unit(300, "lb"),
  19599. name: "Upright",
  19600. image: {
  19601. source: "./media/characters/pretzel/upright.svg",
  19602. extra: 534 / 522,
  19603. bottom: 0.065
  19604. }
  19605. },
  19606. sprawling: {
  19607. height: math.unit(3.75, "feet"),
  19608. weight: math.unit(300, "lb"),
  19609. name: "Sprawling",
  19610. image: {
  19611. source: "./media/characters/pretzel/sprawling.svg",
  19612. extra: 314 / 281,
  19613. bottom: 0.1
  19614. }
  19615. },
  19616. tongue: {
  19617. height: math.unit(2, "feet"),
  19618. name: "Tongue",
  19619. image: {
  19620. source: "./media/characters/pretzel/tongue.svg"
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(7, "feet"),
  19628. default: true
  19629. },
  19630. {
  19631. name: "Oversized",
  19632. height: math.unit(15, "feet")
  19633. },
  19634. {
  19635. name: "Huge",
  19636. height: math.unit(30, "feet")
  19637. },
  19638. {
  19639. name: "Macro",
  19640. height: math.unit(250, "feet")
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19646. {
  19647. sideFront: {
  19648. height: math.unit(5 + 2 / 12, "feet"),
  19649. weight: math.unit(120, "lb"),
  19650. name: "Front Side",
  19651. image: {
  19652. source: "./media/characters/roxi/side-front.svg",
  19653. extra: 2924 / 2717,
  19654. bottom: 0.08
  19655. }
  19656. },
  19657. sideBack: {
  19658. height: math.unit(5 + 2 / 12, "feet"),
  19659. weight: math.unit(120, "lb"),
  19660. name: "Back Side",
  19661. image: {
  19662. source: "./media/characters/roxi/side-back.svg",
  19663. extra: 2904 / 2693,
  19664. bottom: 0.06
  19665. }
  19666. },
  19667. front: {
  19668. height: math.unit(5 + 2 / 12, "feet"),
  19669. weight: math.unit(120, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/roxi/front.svg",
  19673. extra: 2028 / 1907,
  19674. bottom: 0.01
  19675. }
  19676. },
  19677. frontAlt: {
  19678. height: math.unit(5 + 2 / 12, "feet"),
  19679. weight: math.unit(120, "lb"),
  19680. name: "Front (Alt)",
  19681. image: {
  19682. source: "./media/characters/roxi/front-alt.svg",
  19683. extra: 1828 / 1798,
  19684. bottom: 0.01
  19685. }
  19686. },
  19687. sitting: {
  19688. height: math.unit(2.8, "feet"),
  19689. weight: math.unit(120, "lb"),
  19690. name: "Sitting",
  19691. image: {
  19692. source: "./media/characters/roxi/sitting.svg",
  19693. extra: 2660 / 2462,
  19694. bottom: 0.1
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 2 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19708. {
  19709. side: {
  19710. height: math.unit(55, "feet"),
  19711. weight: math.unit(153, "tons"),
  19712. name: "Side",
  19713. image: {
  19714. source: "./media/characters/shadow/side.svg",
  19715. extra: 701 / 628,
  19716. bottom: 0.02
  19717. }
  19718. },
  19719. flying: {
  19720. height: math.unit(145, "feet"),
  19721. weight: math.unit(153, "tons"),
  19722. name: "Flying",
  19723. image: {
  19724. source: "./media/characters/shadow/flying.svg"
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(55, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(6, "feet"),
  19741. weight: math.unit(200, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/marcie/front.svg",
  19745. extra: 960 / 876,
  19746. bottom: 58 / 1017.87
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Macro",
  19753. height: math.unit(1, "mile"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(7, "feet"),
  19763. weight: math.unit(200, "lb"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/kachina/front.svg",
  19767. extra: 1290.68 / 1119,
  19768. bottom: 36.5 / 1327.18
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(7, "feet"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19782. {
  19783. looking: {
  19784. height: math.unit(2, "meters"),
  19785. weight: math.unit(300, "kg"),
  19786. name: "Looking",
  19787. image: {
  19788. source: "./media/characters/kash/looking.svg",
  19789. extra: 474 / 344,
  19790. bottom: 0.03
  19791. }
  19792. },
  19793. side: {
  19794. height: math.unit(2, "meters"),
  19795. weight: math.unit(300, "kg"),
  19796. name: "Side",
  19797. image: {
  19798. source: "./media/characters/kash/side.svg",
  19799. extra: 302 / 251,
  19800. bottom: 0.03
  19801. }
  19802. },
  19803. front: {
  19804. height: math.unit(2, "meters"),
  19805. weight: math.unit(300, "kg"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/kash/front.svg",
  19809. extra: 495 / 360,
  19810. bottom: 0.015
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(2, "meters"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Big",
  19822. height: math.unit(3, "meters")
  19823. },
  19824. {
  19825. name: "Large",
  19826. height: math.unit(5, "meters")
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19832. {
  19833. feeding: {
  19834. height: math.unit(6.7, "feet"),
  19835. weight: math.unit(350, "lb"),
  19836. name: "Feeding",
  19837. image: {
  19838. source: "./media/characters/lalim/feeding.svg",
  19839. }
  19840. },
  19841. },
  19842. [
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(6.7, "feet"),
  19846. default: true
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19852. {
  19853. front: {
  19854. height: math.unit(9.5, "feet"),
  19855. weight: math.unit(600, "lb"),
  19856. name: "Front",
  19857. image: {
  19858. source: "./media/characters/de'vout/front.svg",
  19859. extra: 1443 / 1328,
  19860. bottom: 0.025
  19861. }
  19862. },
  19863. back: {
  19864. height: math.unit(9.5, "feet"),
  19865. weight: math.unit(600, "lb"),
  19866. name: "Back",
  19867. image: {
  19868. source: "./media/characters/de'vout/back.svg",
  19869. extra: 1443 / 1328
  19870. }
  19871. },
  19872. frontDressed: {
  19873. height: math.unit(9.5, "feet"),
  19874. weight: math.unit(600, "lb"),
  19875. name: "Front (Dressed",
  19876. image: {
  19877. source: "./media/characters/de'vout/front-dressed.svg",
  19878. extra: 1443 / 1328,
  19879. bottom: 0.025
  19880. }
  19881. },
  19882. backDressed: {
  19883. height: math.unit(9.5, "feet"),
  19884. weight: math.unit(600, "lb"),
  19885. name: "Back (Dressed",
  19886. image: {
  19887. source: "./media/characters/de'vout/back-dressed.svg",
  19888. extra: 1443 / 1328
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(9.5, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(8, "feet"),
  19905. weight: math.unit(225, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/talana/front.svg",
  19909. extra: 1410 / 1300,
  19910. bottom: 0.015
  19911. }
  19912. },
  19913. frontDressed: {
  19914. height: math.unit(8, "feet"),
  19915. weight: math.unit(225, "lb"),
  19916. name: "Front (Dressed",
  19917. image: {
  19918. source: "./media/characters/talana/front-dressed.svg",
  19919. extra: 1410 / 1300,
  19920. bottom: 0.015
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(8, "feet"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19934. {
  19935. side: {
  19936. height: math.unit(7.2, "feet"),
  19937. weight: math.unit(150, "lb"),
  19938. name: "Side",
  19939. image: {
  19940. source: "./media/characters/xeauvok/side.svg",
  19941. extra: 1975 / 1523,
  19942. bottom: 0.07
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(7.2, "feet"),
  19950. default: true
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19956. {
  19957. side: {
  19958. height: math.unit(4, "meters"),
  19959. weight: math.unit(2200, "kg"),
  19960. name: "Side",
  19961. image: {
  19962. source: "./media/characters/zara/side.svg",
  19963. extra: 765/744,
  19964. bottom: 156/921
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(4, "meters"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19978. {
  19979. side: {
  19980. height: math.unit(6, "feet"),
  19981. weight: math.unit(150, "lb"),
  19982. name: "Side",
  19983. image: {
  19984. source: "./media/characters/richard-dragon/side.svg",
  19985. extra: 845 / 340,
  19986. bottom: 0.017
  19987. }
  19988. },
  19989. maw: {
  19990. height: math.unit(2.97, "feet"),
  19991. name: "Maw",
  19992. image: {
  19993. source: "./media/characters/richard-dragon/maw.svg"
  19994. }
  19995. },
  19996. },
  19997. [
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(4, "feet"),
  20005. weight: math.unit(100, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/richard-smeargle/front.svg",
  20009. extra: 2952 / 2820,
  20010. bottom: 0.028
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(4, "feet"),
  20018. default: true
  20019. },
  20020. {
  20021. name: "Dynamax",
  20022. height: math.unit(20, "meters")
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(6, "feet"),
  20031. weight: math.unit(110, "lb"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/klay/front.svg",
  20035. extra: 962 / 883,
  20036. bottom: 0.04
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(6, "feet"),
  20041. weight: math.unit(110, "lb"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/klay/back.svg",
  20045. extra: 962 / 883
  20046. }
  20047. },
  20048. beans: {
  20049. height: math.unit(1.15, "feet"),
  20050. name: "Beans",
  20051. image: {
  20052. source: "./media/characters/klay/beans.svg"
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Micro",
  20059. height: math.unit(6, "inches")
  20060. },
  20061. {
  20062. name: "Mini",
  20063. height: math.unit(3, "feet")
  20064. },
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(6, "feet"),
  20068. default: true
  20069. },
  20070. {
  20071. name: "Big",
  20072. height: math.unit(25, "feet")
  20073. },
  20074. {
  20075. name: "Macro",
  20076. height: math.unit(100, "feet")
  20077. },
  20078. {
  20079. name: "Megamacro",
  20080. height: math.unit(400, "feet")
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(6, "feet"),
  20089. weight: math.unit(160, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/marcus/front.svg",
  20093. extra: 734 / 676,
  20094. bottom: 0.03
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Little",
  20101. height: math.unit(6, "feet")
  20102. },
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(110, "feet"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(250, "feet")
  20111. },
  20112. {
  20113. name: "Megamacro",
  20114. height: math.unit(1000, "feet")
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(7, "feet"),
  20123. weight: math.unit(275, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/claude-delroute/front.svg",
  20127. extra: 902/827,
  20128. bottom: 26/928
  20129. }
  20130. },
  20131. side: {
  20132. height: math.unit(7, "feet"),
  20133. weight: math.unit(275, "lb"),
  20134. name: "Side",
  20135. image: {
  20136. source: "./media/characters/claude-delroute/side.svg",
  20137. extra: 908/853,
  20138. bottom: 16/924
  20139. }
  20140. },
  20141. back: {
  20142. height: math.unit(7, "feet"),
  20143. weight: math.unit(275, "lb"),
  20144. name: "Back",
  20145. image: {
  20146. source: "./media/characters/claude-delroute/back.svg",
  20147. extra: 911/829,
  20148. bottom: 18/929
  20149. }
  20150. },
  20151. maw: {
  20152. height: math.unit(0.6407, "meters"),
  20153. name: "Maw",
  20154. image: {
  20155. source: "./media/characters/claude-delroute/maw.svg"
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(7, "feet"),
  20163. default: true
  20164. },
  20165. {
  20166. name: "Lorge",
  20167. height: math.unit(20, "feet")
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(8 + 4 / 12, "feet"),
  20176. weight: math.unit(600, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/dragonien/front.svg",
  20180. extra: 100 / 94,
  20181. bottom: 3.3 / 103.3445
  20182. }
  20183. },
  20184. back: {
  20185. height: math.unit(8 + 4 / 12, "feet"),
  20186. weight: math.unit(600, "lb"),
  20187. name: "Back",
  20188. image: {
  20189. source: "./media/characters/dragonien/back.svg",
  20190. extra: 776 / 746,
  20191. bottom: 6.4 / 782.0616
  20192. }
  20193. },
  20194. foot: {
  20195. height: math.unit(1.54, "feet"),
  20196. name: "Foot",
  20197. image: {
  20198. source: "./media/characters/dragonien/foot.svg",
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Normal",
  20205. height: math.unit(8 + 4 / 12, "feet"),
  20206. default: true
  20207. },
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(200, "feet")
  20211. },
  20212. {
  20213. name: "Megamacro",
  20214. height: math.unit(1, "mile")
  20215. },
  20216. {
  20217. name: "Gigamacro",
  20218. height: math.unit(1000, "miles")
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(5 + 2 / 12, "feet"),
  20227. weight: math.unit(110, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/desta/front.svg",
  20231. extra: 767 / 726,
  20232. bottom: 11.7 / 779
  20233. }
  20234. },
  20235. back: {
  20236. height: math.unit(5 + 2 / 12, "feet"),
  20237. weight: math.unit(110, "lb"),
  20238. name: "Back",
  20239. image: {
  20240. source: "./media/characters/desta/back.svg",
  20241. extra: 777 / 728,
  20242. bottom: 6 / 784
  20243. }
  20244. },
  20245. frontAlt: {
  20246. height: math.unit(5 + 2 / 12, "feet"),
  20247. weight: math.unit(110, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/desta/front-alt.svg",
  20251. extra: 1482 / 1417
  20252. }
  20253. },
  20254. side: {
  20255. height: math.unit(5 + 2 / 12, "feet"),
  20256. weight: math.unit(110, "lb"),
  20257. name: "Side",
  20258. image: {
  20259. source: "./media/characters/desta/side.svg",
  20260. extra: 2579 / 2491,
  20261. bottom: 0.053
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Micro",
  20268. height: math.unit(6, "inches")
  20269. },
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(5 + 2 / 12, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(62, "feet")
  20278. },
  20279. {
  20280. name: "Megamacro",
  20281. height: math.unit(1800, "feet")
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(10, "feet"),
  20290. weight: math.unit(700, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/storm-alystar/front.svg",
  20294. extra: 2112 / 1898,
  20295. bottom: 0.034
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Micro",
  20302. height: math.unit(3.5, "inches")
  20303. },
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(10, "feet"),
  20307. default: true
  20308. },
  20309. {
  20310. name: "Macro",
  20311. height: math.unit(400, "feet")
  20312. },
  20313. {
  20314. name: "Deific",
  20315. height: math.unit(60, "miles")
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20321. {
  20322. front: {
  20323. height: math.unit(2.35, "meters"),
  20324. weight: math.unit(119, "kg"),
  20325. name: "Front",
  20326. image: {
  20327. source: "./media/characters/ilia/front.svg",
  20328. extra: 1285 / 1255,
  20329. bottom: 0.06
  20330. }
  20331. },
  20332. },
  20333. [
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(2.35, "meters")
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(140, "meters"),
  20341. default: true
  20342. },
  20343. {
  20344. name: "Megamacro",
  20345. height: math.unit(100, "miles")
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20351. {
  20352. front: {
  20353. height: math.unit(6 + 5 / 12, "feet"),
  20354. weight: math.unit(190, "lb"),
  20355. name: "Front",
  20356. image: {
  20357. source: "./media/characters/kingdead/front.svg",
  20358. extra: 1228 / 1177
  20359. }
  20360. },
  20361. },
  20362. [
  20363. {
  20364. name: "Micro",
  20365. height: math.unit(7, "inches")
  20366. },
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(6 + 5 / 12, "feet")
  20370. },
  20371. {
  20372. name: "Macro",
  20373. height: math.unit(150, "feet"),
  20374. default: true
  20375. },
  20376. {
  20377. name: "Megamacro",
  20378. height: math.unit(200, "miles")
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20384. {
  20385. front: {
  20386. height: math.unit(8, "feet"),
  20387. weight: math.unit(600, "lb"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/kyrehx/front.svg",
  20391. extra: 1195 / 1095,
  20392. bottom: 0.034
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Micro",
  20399. height: math.unit(2, "inches")
  20400. },
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(8, "feet"),
  20404. default: true
  20405. },
  20406. {
  20407. name: "Macro",
  20408. height: math.unit(255, "feet")
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20417. weight: math.unit(184, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/xang/front.svg",
  20421. extra: 845 / 755
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20429. default: true
  20430. },
  20431. {
  20432. name: "Macro",
  20433. height: math.unit(0.935 * 146, "feet")
  20434. },
  20435. {
  20436. name: "Megamacro",
  20437. height: math.unit(0.935 * 3, "miles")
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20443. {
  20444. frontDressed: {
  20445. height: math.unit(5 + 7 / 12, "feet"),
  20446. weight: math.unit(140, "lb"),
  20447. name: "Front (Dressed)",
  20448. image: {
  20449. source: "./media/characters/doc-weardno/front-dressed.svg",
  20450. extra: 263 / 234
  20451. }
  20452. },
  20453. backDressed: {
  20454. height: math.unit(5 + 7 / 12, "feet"),
  20455. weight: math.unit(140, "lb"),
  20456. name: "Back (Dressed)",
  20457. image: {
  20458. source: "./media/characters/doc-weardno/back-dressed.svg",
  20459. extra: 266 / 238
  20460. }
  20461. },
  20462. front: {
  20463. height: math.unit(5 + 7 / 12, "feet"),
  20464. weight: math.unit(140, "lb"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/doc-weardno/front.svg",
  20468. extra: 254 / 233
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Micro",
  20475. height: math.unit(3, "inches")
  20476. },
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(5 + 7 / 12, "feet"),
  20480. default: true
  20481. },
  20482. {
  20483. name: "Macro",
  20484. height: math.unit(25, "feet")
  20485. },
  20486. {
  20487. name: "Megamacro",
  20488. height: math.unit(2, "miles")
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(6 + 2 / 12, "feet"),
  20497. weight: math.unit(153, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/seth-whilst/front.svg",
  20501. bottom: 0.07
  20502. }
  20503. },
  20504. },
  20505. [
  20506. {
  20507. name: "Micro",
  20508. height: math.unit(5, "inches")
  20509. },
  20510. {
  20511. name: "Normal",
  20512. height: math.unit(6 + 2 / 12, "feet"),
  20513. default: true
  20514. },
  20515. ]
  20516. ))
  20517. characterMakers.push(() => makeCharacter(
  20518. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20519. {
  20520. front: {
  20521. height: math.unit(3, "inches"),
  20522. weight: math.unit(8, "grams"),
  20523. name: "Front",
  20524. image: {
  20525. source: "./media/characters/pocket-jabari/front.svg",
  20526. extra: 1024 / 974,
  20527. bottom: 0.039
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Minimicro",
  20534. height: math.unit(8, "mm")
  20535. },
  20536. {
  20537. name: "Micro",
  20538. height: math.unit(3, "inches"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Normal",
  20543. height: math.unit(3, "feet")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20549. {
  20550. frontDressed: {
  20551. height: math.unit(15, "feet"),
  20552. weight: math.unit(3280, "lb"),
  20553. name: "Front (Dressed)",
  20554. image: {
  20555. source: "./media/characters/sapphy/front-dressed.svg",
  20556. extra: 1951/1654,
  20557. bottom: 194/2145
  20558. },
  20559. form: "anthro",
  20560. default: true
  20561. },
  20562. backDressed: {
  20563. height: math.unit(15, "feet"),
  20564. weight: math.unit(3280, "lb"),
  20565. name: "Back (Dressed)",
  20566. image: {
  20567. source: "./media/characters/sapphy/back-dressed.svg",
  20568. extra: 2058/1918,
  20569. bottom: 125/2183
  20570. },
  20571. form: "anthro"
  20572. },
  20573. frontNude: {
  20574. height: math.unit(15, "feet"),
  20575. weight: math.unit(3280, "lb"),
  20576. name: "Front (Nude)",
  20577. image: {
  20578. source: "./media/characters/sapphy/front-nude.svg",
  20579. extra: 1951/1654,
  20580. bottom: 194/2145
  20581. },
  20582. form: "anthro"
  20583. },
  20584. backNude: {
  20585. height: math.unit(15, "feet"),
  20586. weight: math.unit(3280, "lb"),
  20587. name: "Back (Nude)",
  20588. image: {
  20589. source: "./media/characters/sapphy/back-nude.svg",
  20590. extra: 2058/1918,
  20591. bottom: 125/2183
  20592. },
  20593. form: "anthro"
  20594. },
  20595. full: {
  20596. height: math.unit(15, "feet"),
  20597. weight: math.unit(3280, "lb"),
  20598. name: "Full",
  20599. image: {
  20600. source: "./media/characters/sapphy/full.svg",
  20601. extra: 1396/1317,
  20602. bottom: 44/1440
  20603. },
  20604. form: "anthro"
  20605. },
  20606. dick: {
  20607. height: math.unit(3.8, "feet"),
  20608. name: "Dick",
  20609. image: {
  20610. source: "./media/characters/sapphy/dick.svg"
  20611. },
  20612. form: "anthro"
  20613. },
  20614. feral: {
  20615. height: math.unit(35, "feet"),
  20616. weight: math.unit(160, "tons"),
  20617. name: "Feral",
  20618. image: {
  20619. source: "./media/characters/sapphy/feral.svg",
  20620. extra: 1050/573,
  20621. bottom: 60/1110
  20622. },
  20623. form: "feral",
  20624. default: true
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(15, "feet"),
  20631. form: "anthro"
  20632. },
  20633. {
  20634. name: "Casual Macro",
  20635. height: math.unit(120, "feet"),
  20636. form: "anthro"
  20637. },
  20638. {
  20639. name: "Macro",
  20640. height: math.unit(2150, "feet"),
  20641. default: true,
  20642. form: "anthro"
  20643. },
  20644. {
  20645. name: "Megamacro",
  20646. height: math.unit(8, "miles"),
  20647. form: "anthro"
  20648. },
  20649. {
  20650. name: "Galaxy Mom",
  20651. height: math.unit(6, "megalightyears"),
  20652. form: "anthro"
  20653. },
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(35, "feet"),
  20657. form: "feral",
  20658. default: true
  20659. },
  20660. {
  20661. name: "Macro",
  20662. height: math.unit(300, "feet"),
  20663. form: "feral"
  20664. },
  20665. {
  20666. name: "Galaxy Mom",
  20667. height: math.unit(10, "megalightyears"),
  20668. form: "feral"
  20669. },
  20670. ],
  20671. {
  20672. "anthro": {
  20673. name: "Anthro",
  20674. default: true
  20675. },
  20676. "feral": {
  20677. name: "Feral"
  20678. }
  20679. }
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20683. {
  20684. hyenaFront: {
  20685. height: math.unit(6, "feet"),
  20686. weight: math.unit(190, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/kiro/hyena-front.svg",
  20690. extra: 927/839,
  20691. bottom: 91/1018
  20692. },
  20693. form: "hyena",
  20694. default: true
  20695. },
  20696. front: {
  20697. height: math.unit(6, "feet"),
  20698. weight: math.unit(170, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/kiro/front.svg",
  20702. extra: 1064 / 1012,
  20703. bottom: 0.052
  20704. },
  20705. form: "folf",
  20706. default: true
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Micro",
  20712. height: math.unit(6, "inches"),
  20713. form: "folf"
  20714. },
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(6, "feet"),
  20718. form: "folf",
  20719. default: true
  20720. },
  20721. {
  20722. name: "Macro",
  20723. height: math.unit(72, "feet"),
  20724. form: "folf"
  20725. },
  20726. {
  20727. name: "Micro",
  20728. height: math.unit(6, "inches"),
  20729. form: "hyena"
  20730. },
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(6, "feet"),
  20734. form: "hyena",
  20735. default: true
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(72, "feet"),
  20740. form: "hyena"
  20741. },
  20742. ],
  20743. {
  20744. "hyena": {
  20745. name: "Hyena",
  20746. default: true
  20747. },
  20748. "folf": {
  20749. name: "Folf",
  20750. },
  20751. }
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(5 + 9 / 12, "feet"),
  20758. weight: math.unit(175, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/irishfox/front.svg",
  20762. extra: 1912 / 1680,
  20763. bottom: 0.02
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Nano",
  20770. height: math.unit(1, "mm")
  20771. },
  20772. {
  20773. name: "Micro",
  20774. height: math.unit(2, "inches")
  20775. },
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(5 + 9 / 12, "feet"),
  20779. default: true
  20780. },
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(45, "feet")
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(6 + 1 / 12, "feet"),
  20792. weight: math.unit(75, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/aronai-sieyes/front.svg",
  20796. extra: 1532/1450,
  20797. bottom: 42/1574
  20798. }
  20799. },
  20800. side: {
  20801. height: math.unit(6 + 1 / 12, "feet"),
  20802. weight: math.unit(75, "lb"),
  20803. name: "Side",
  20804. image: {
  20805. source: "./media/characters/aronai-sieyes/side.svg",
  20806. extra: 1422/1365,
  20807. bottom: 148/1570
  20808. }
  20809. },
  20810. back: {
  20811. height: math.unit(6 + 1 / 12, "feet"),
  20812. weight: math.unit(75, "lb"),
  20813. name: "Back",
  20814. image: {
  20815. source: "./media/characters/aronai-sieyes/back.svg",
  20816. extra: 1526/1464,
  20817. bottom: 51/1577
  20818. }
  20819. },
  20820. dressed: {
  20821. height: math.unit(6 + 1 / 12, "feet"),
  20822. weight: math.unit(75, "lb"),
  20823. name: "Dressed",
  20824. image: {
  20825. source: "./media/characters/aronai-sieyes/dressed.svg",
  20826. extra: 1559/1483,
  20827. bottom: 39/1598
  20828. }
  20829. },
  20830. slit: {
  20831. height: math.unit(1.3, "feet"),
  20832. name: "Slit",
  20833. image: {
  20834. source: "./media/characters/aronai-sieyes/slit.svg"
  20835. }
  20836. },
  20837. slitSpread: {
  20838. height: math.unit(0.9, "feet"),
  20839. name: "Slit (Spread)",
  20840. image: {
  20841. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20842. }
  20843. },
  20844. rump: {
  20845. height: math.unit(1.3, "feet"),
  20846. name: "Rump",
  20847. image: {
  20848. source: "./media/characters/aronai-sieyes/rump.svg"
  20849. }
  20850. },
  20851. maw: {
  20852. height: math.unit(1.25, "feet"),
  20853. name: "Maw",
  20854. image: {
  20855. source: "./media/characters/aronai-sieyes/maw.svg"
  20856. }
  20857. },
  20858. feral: {
  20859. height: math.unit(18, "feet"),
  20860. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20861. name: "Feral",
  20862. image: {
  20863. source: "./media/characters/aronai-sieyes/feral.svg",
  20864. extra: 1530 / 1240,
  20865. bottom: 0.035
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Micro",
  20872. height: math.unit(2, "inches")
  20873. },
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(6 + 1 / 12, "feet"),
  20877. default: true
  20878. }
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(12, "feet"),
  20886. weight: math.unit(410, "kg"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/xuna/front.svg",
  20890. extra: 2184 / 1980
  20891. }
  20892. },
  20893. side: {
  20894. height: math.unit(12, "feet"),
  20895. weight: math.unit(410, "kg"),
  20896. name: "Side",
  20897. image: {
  20898. source: "./media/characters/xuna/side.svg",
  20899. extra: 2184 / 1980
  20900. }
  20901. },
  20902. back: {
  20903. height: math.unit(12, "feet"),
  20904. weight: math.unit(410, "kg"),
  20905. name: "Back",
  20906. image: {
  20907. source: "./media/characters/xuna/back.svg",
  20908. extra: 2184 / 1980
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Nano glow",
  20915. height: math.unit(10, "nm")
  20916. },
  20917. {
  20918. name: "Micro floof",
  20919. height: math.unit(0.3, "m")
  20920. },
  20921. {
  20922. name: "Huggable softy boi",
  20923. height: math.unit(3.6576, "m"),
  20924. default: true
  20925. },
  20926. {
  20927. name: "Admirable floof",
  20928. height: math.unit(80, "meters")
  20929. },
  20930. {
  20931. name: "Gentle macro",
  20932. height: math.unit(300, "meters")
  20933. },
  20934. {
  20935. name: "Very careful floof",
  20936. height: math.unit(3200, "meters")
  20937. },
  20938. {
  20939. name: "The mega floof",
  20940. height: math.unit(36000, "meters")
  20941. },
  20942. {
  20943. name: "Giga-fur-Wicker",
  20944. height: math.unit(4800000, "meters")
  20945. },
  20946. {
  20947. name: "Licky world",
  20948. height: math.unit(20000000, "meters")
  20949. },
  20950. {
  20951. name: "Floofy cyan sun",
  20952. height: math.unit(1500000000, "meters")
  20953. },
  20954. {
  20955. name: "Milky Wicker",
  20956. height: math.unit(1000000000000000000000, "meters")
  20957. },
  20958. {
  20959. name: "The observing Wicker",
  20960. height: math.unit(999999999999999999999999999, "meters")
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(5 + 9 / 12, "feet"),
  20969. weight: math.unit(150, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/arokha-sieyes/front.svg",
  20973. extra: 1425 / 1284,
  20974. bottom: 0.05
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(5 + 9 / 12, "feet")
  20982. },
  20983. {
  20984. name: "Macro",
  20985. height: math.unit(30, "meters"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(6, "feet"),
  20995. weight: math.unit(180, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/arokh-sieyes/front.svg",
  20999. extra: 1830 / 1769,
  21000. bottom: 0.01
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(6, "feet")
  21008. },
  21009. {
  21010. name: "Macro",
  21011. height: math.unit(30, "meters"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21018. {
  21019. side: {
  21020. height: math.unit(13 + 1 / 12, "feet"),
  21021. weight: math.unit(8.5, "tonnes"),
  21022. preyCapacity: math.unit(36, "people"),
  21023. name: "Side",
  21024. image: {
  21025. source: "./media/characters/goldeneye/side.svg",
  21026. extra: 1139/741,
  21027. bottom: 98/1237
  21028. }
  21029. },
  21030. front: {
  21031. height: math.unit(5.1, "feet"),
  21032. weight: math.unit(8.5, "tonnes"),
  21033. preyCapacity: math.unit(36, "people"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/goldeneye/front.svg",
  21037. extra: 635/365,
  21038. bottom: 598/1233
  21039. }
  21040. },
  21041. maw: {
  21042. height: math.unit(6.6, "feet"),
  21043. name: "Maw",
  21044. image: {
  21045. source: "./media/characters/goldeneye/maw.svg"
  21046. }
  21047. },
  21048. headFront: {
  21049. height: math.unit(8, "feet"),
  21050. name: "Head (Front)",
  21051. image: {
  21052. source: "./media/characters/goldeneye/head-front.svg"
  21053. }
  21054. },
  21055. headSide: {
  21056. height: math.unit(6, "feet"),
  21057. name: "Head (Side)",
  21058. image: {
  21059. source: "./media/characters/goldeneye/head-side.svg"
  21060. }
  21061. },
  21062. headBack: {
  21063. height: math.unit(8, "feet"),
  21064. name: "Head (Back)",
  21065. image: {
  21066. source: "./media/characters/goldeneye/head-back.svg"
  21067. }
  21068. },
  21069. paw: {
  21070. height: math.unit(3.4, "feet"),
  21071. name: "Paw",
  21072. image: {
  21073. source: "./media/characters/goldeneye/paw.svg"
  21074. }
  21075. },
  21076. toering: {
  21077. height: math.unit(0.45, "feet"),
  21078. name: "Toering",
  21079. image: {
  21080. source: "./media/characters/goldeneye/toering.svg"
  21081. }
  21082. },
  21083. eyes: {
  21084. height: math.unit(0.5, "feet"),
  21085. name: "Eyes",
  21086. image: {
  21087. source: "./media/characters/goldeneye/eyes.svg"
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(13 + 1 / 12, "feet"),
  21095. default: true
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21101. {
  21102. front: {
  21103. height: math.unit(6 + 1 / 12, "feet"),
  21104. weight: math.unit(210, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/leonardo-lycheborne/front.svg",
  21108. extra: 776/723,
  21109. bottom: 34/810
  21110. }
  21111. },
  21112. side: {
  21113. height: math.unit(6 + 1 / 12, "feet"),
  21114. weight: math.unit(210, "lb"),
  21115. name: "Side",
  21116. image: {
  21117. source: "./media/characters/leonardo-lycheborne/side.svg",
  21118. extra: 780/728,
  21119. bottom: 12/792
  21120. }
  21121. },
  21122. back: {
  21123. height: math.unit(6 + 1 / 12, "feet"),
  21124. weight: math.unit(210, "lb"),
  21125. name: "Back",
  21126. image: {
  21127. source: "./media/characters/leonardo-lycheborne/back.svg",
  21128. extra: 775/721,
  21129. bottom: 17/792
  21130. }
  21131. },
  21132. hand: {
  21133. height: math.unit(1.08, "feet"),
  21134. name: "Hand",
  21135. image: {
  21136. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21137. }
  21138. },
  21139. foot: {
  21140. height: math.unit(1.32, "feet"),
  21141. name: "Foot",
  21142. image: {
  21143. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21144. }
  21145. },
  21146. maw: {
  21147. height: math.unit(1, "feet"),
  21148. name: "Maw",
  21149. image: {
  21150. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21151. }
  21152. },
  21153. were: {
  21154. height: math.unit(20, "feet"),
  21155. weight: math.unit(7800, "lb"),
  21156. name: "Were",
  21157. image: {
  21158. source: "./media/characters/leonardo-lycheborne/were.svg",
  21159. extra: 1224/1165,
  21160. bottom: 72/1296
  21161. }
  21162. },
  21163. feral: {
  21164. height: math.unit(7.5, "feet"),
  21165. weight: math.unit(600, "lb"),
  21166. name: "Feral",
  21167. image: {
  21168. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21169. extra: 797/702,
  21170. bottom: 139/936
  21171. }
  21172. },
  21173. taur: {
  21174. height: math.unit(11, "feet"),
  21175. weight: math.unit(3300, "lb"),
  21176. name: "Taur",
  21177. image: {
  21178. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21179. extra: 1271/1197,
  21180. bottom: 47/1318
  21181. }
  21182. },
  21183. barghest: {
  21184. height: math.unit(11, "feet"),
  21185. weight: math.unit(1300, "lb"),
  21186. name: "Barghest",
  21187. image: {
  21188. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21189. extra: 1291/1204,
  21190. bottom: 37/1328
  21191. }
  21192. },
  21193. dick: {
  21194. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21195. name: "Dick",
  21196. image: {
  21197. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21198. }
  21199. },
  21200. dickWere: {
  21201. height: math.unit((20) / 3.8, "feet"),
  21202. name: "Dick (Were)",
  21203. image: {
  21204. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(6 + 1 / 12, "feet"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(10, "feet"),
  21221. weight: math.unit(350, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/jet/front.svg",
  21225. extra: 2050 / 1980,
  21226. bottom: 0.013
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(10, "feet"),
  21231. weight: math.unit(350, "lb"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/jet/back.svg",
  21235. extra: 2050 / 1980,
  21236. bottom: 0.013
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Micro",
  21243. height: math.unit(6, "inches")
  21244. },
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(10, "feet"),
  21248. default: true
  21249. },
  21250. {
  21251. name: "Macro",
  21252. height: math.unit(100, "feet")
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(15, "feet"),
  21261. weight: math.unit(2800, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/tanarath/front.svg",
  21265. extra: 2392 / 2220,
  21266. bottom: 0.03
  21267. }
  21268. },
  21269. back: {
  21270. height: math.unit(15, "feet"),
  21271. weight: math.unit(2800, "lb"),
  21272. name: "Back",
  21273. image: {
  21274. source: "./media/characters/tanarath/back.svg",
  21275. extra: 2392 / 2220,
  21276. bottom: 0.03
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(15, "feet"),
  21284. default: true
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21290. {
  21291. front: {
  21292. height: math.unit(7 + 1 / 12, "feet"),
  21293. weight: math.unit(175, "lb"),
  21294. name: "Front",
  21295. image: {
  21296. source: "./media/characters/patty-cattybatty/front.svg",
  21297. extra: 908 / 874,
  21298. bottom: 0.025
  21299. }
  21300. },
  21301. },
  21302. [
  21303. {
  21304. name: "Micro",
  21305. height: math.unit(1, "inch")
  21306. },
  21307. {
  21308. name: "Normal",
  21309. height: math.unit(7 + 1 / 12, "feet")
  21310. },
  21311. {
  21312. name: "Mini Macro",
  21313. height: math.unit(155, "feet")
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(1077, "feet")
  21318. },
  21319. {
  21320. name: "Mega Macro",
  21321. height: math.unit(47650, "feet"),
  21322. default: true
  21323. },
  21324. {
  21325. name: "Giga Macro",
  21326. height: math.unit(440, "miles")
  21327. },
  21328. {
  21329. name: "Tera Macro",
  21330. height: math.unit(8700, "miles")
  21331. },
  21332. {
  21333. name: "Planetary Macro",
  21334. height: math.unit(32700, "miles")
  21335. },
  21336. {
  21337. name: "Solar Macro",
  21338. height: math.unit(550000, "miles")
  21339. },
  21340. {
  21341. name: "Celestial Macro",
  21342. height: math.unit(2.5, "AU")
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(4 + 5 / 12, "feet"),
  21351. weight: math.unit(90, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/cappu/front.svg",
  21355. extra: 1247 / 1152,
  21356. bottom: 0.012
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(4 + 5 / 12, "feet"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21370. {
  21371. frontDressed: {
  21372. height: math.unit(70, "cm"),
  21373. weight: math.unit(6, "kg"),
  21374. name: "Front (Dressed)",
  21375. image: {
  21376. source: "./media/characters/sebi/front-dressed.svg",
  21377. extra: 713.5 / 686.5,
  21378. bottom: 0.003
  21379. }
  21380. },
  21381. front: {
  21382. height: math.unit(70, "cm"),
  21383. weight: math.unit(5, "kg"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/sebi/front.svg",
  21387. extra: 713.5 / 686.5,
  21388. bottom: 0.003
  21389. }
  21390. }
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(70, "cm"),
  21396. default: true
  21397. },
  21398. {
  21399. name: "Macro",
  21400. height: math.unit(8, "meters")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(6, "feet"),
  21409. weight: math.unit(150, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/typhek/front.svg",
  21413. extra: 1948 / 1929,
  21414. bottom: 0.025
  21415. }
  21416. },
  21417. side: {
  21418. height: math.unit(6, "feet"),
  21419. weight: math.unit(150, "lb"),
  21420. name: "Side",
  21421. image: {
  21422. source: "./media/characters/typhek/side.svg",
  21423. extra: 2034 / 2010,
  21424. bottom: 0.003
  21425. }
  21426. },
  21427. back: {
  21428. height: math.unit(6, "feet"),
  21429. weight: math.unit(150, "lb"),
  21430. name: "Back",
  21431. image: {
  21432. source: "./media/characters/typhek/back.svg",
  21433. extra: 2005 / 1978,
  21434. bottom: 0.004
  21435. }
  21436. },
  21437. palm: {
  21438. height: math.unit(1.2, "feet"),
  21439. name: "Palm",
  21440. image: {
  21441. source: "./media/characters/typhek/palm.svg"
  21442. }
  21443. },
  21444. fist: {
  21445. height: math.unit(1.1, "feet"),
  21446. name: "Fist",
  21447. image: {
  21448. source: "./media/characters/typhek/fist.svg"
  21449. }
  21450. },
  21451. foot: {
  21452. height: math.unit(1.57, "feet"),
  21453. name: "Foot",
  21454. image: {
  21455. source: "./media/characters/typhek/foot.svg"
  21456. }
  21457. },
  21458. sole: {
  21459. height: math.unit(2.05, "feet"),
  21460. name: "Sole",
  21461. image: {
  21462. source: "./media/characters/typhek/sole.svg"
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Macro",
  21469. height: math.unit(40, "stories"),
  21470. default: true
  21471. },
  21472. {
  21473. name: "Megamacro",
  21474. height: math.unit(1, "mile")
  21475. },
  21476. {
  21477. name: "Gigamacro",
  21478. height: math.unit(4000, "solarradii")
  21479. },
  21480. {
  21481. name: "Universal",
  21482. height: math.unit(1.1, "universes")
  21483. }
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21488. {
  21489. side: {
  21490. height: math.unit(5 + 7 / 12, "feet"),
  21491. weight: math.unit(150, "lb"),
  21492. name: "Side",
  21493. image: {
  21494. source: "./media/characters/kassy/side.svg",
  21495. extra: 1280 / 1225,
  21496. bottom: 0.002
  21497. }
  21498. },
  21499. front: {
  21500. height: math.unit(5 + 7 / 12, "feet"),
  21501. weight: math.unit(150, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/kassy/front.svg",
  21505. extra: 1280 / 1225,
  21506. bottom: 0.025
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(5 + 7 / 12, "feet"),
  21511. weight: math.unit(150, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/kassy/back.svg",
  21515. extra: 1280 / 1225,
  21516. bottom: 0.002
  21517. }
  21518. },
  21519. foot: {
  21520. height: math.unit(1.266, "feet"),
  21521. name: "Foot",
  21522. image: {
  21523. source: "./media/characters/kassy/foot.svg"
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(5 + 7 / 12, "feet")
  21531. },
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(137, "feet"),
  21535. default: true
  21536. },
  21537. {
  21538. name: "Megamacro",
  21539. height: math.unit(1, "mile")
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(6 + 1 / 12, "feet"),
  21548. weight: math.unit(200, "lb"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/neil/front.svg",
  21552. extra: 1326 / 1250,
  21553. bottom: 0.023
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(6 + 1 / 12, "feet"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Macro",
  21565. height: math.unit(200, "feet")
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5 + 9 / 12, "feet"),
  21574. weight: math.unit(190, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/atticus/front.svg",
  21578. extra: 2934 / 2785,
  21579. bottom: 0.025
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(5 + 9 / 12, "feet"),
  21587. default: true
  21588. },
  21589. {
  21590. name: "Macro",
  21591. height: math.unit(180, "feet")
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21597. {
  21598. side: {
  21599. height: math.unit(9, "feet"),
  21600. weight: math.unit(650, "lb"),
  21601. name: "Side",
  21602. image: {
  21603. source: "./media/characters/milo/side.svg",
  21604. extra: 2644 / 2310,
  21605. bottom: 0.032
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(9, "feet"),
  21613. default: true
  21614. },
  21615. {
  21616. name: "Macro",
  21617. height: math.unit(300, "feet")
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21623. {
  21624. side: {
  21625. height: math.unit(8, "meters"),
  21626. weight: math.unit(90000, "kg"),
  21627. name: "Side",
  21628. image: {
  21629. source: "./media/characters/ijzer/side.svg",
  21630. extra: 2756 / 1600,
  21631. bottom: 0.01
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Small",
  21638. height: math.unit(3, "meters")
  21639. },
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(8, "meters"),
  21643. default: true
  21644. },
  21645. {
  21646. name: "Normal+",
  21647. height: math.unit(10, "meters")
  21648. },
  21649. {
  21650. name: "Bigger",
  21651. height: math.unit(24, "meters")
  21652. },
  21653. {
  21654. name: "Huge",
  21655. height: math.unit(80, "meters")
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(6 + 2 / 12, "feet"),
  21664. weight: math.unit(153, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/luca-cervicum/front.svg",
  21668. extra: 370 / 327,
  21669. bottom: 0.015
  21670. }
  21671. },
  21672. back: {
  21673. height: math.unit(6 + 2 / 12, "feet"),
  21674. weight: math.unit(153, "lb"),
  21675. name: "Back",
  21676. image: {
  21677. source: "./media/characters/luca-cervicum/back.svg",
  21678. extra: 367 / 333,
  21679. bottom: 0.005
  21680. }
  21681. },
  21682. frontGear: {
  21683. height: math.unit(6 + 2 / 12, "feet"),
  21684. weight: math.unit(173, "lb"),
  21685. name: "Front (Gear)",
  21686. image: {
  21687. source: "./media/characters/luca-cervicum/front-gear.svg",
  21688. extra: 377 / 333,
  21689. bottom: 0.006
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(6 + 2 / 12, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(6 + 1 / 12, "feet"),
  21706. weight: math.unit(304, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/oliver/front.svg",
  21710. extra: 157 / 143,
  21711. bottom: 0.08
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(6 + 1 / 12, "feet"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 7 / 12, "feet"),
  21728. weight: math.unit(140, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/shane/front.svg",
  21732. extra: 304 / 289,
  21733. bottom: 0.005
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 7 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(5 + 9 / 12, "feet"),
  21750. weight: math.unit(178, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/shin/front.svg",
  21754. extra: 159 / 151,
  21755. bottom: 0.015
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(5 + 9 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5 + 10 / 12, "feet"),
  21772. weight: math.unit(168, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/xerxes/front.svg",
  21776. extra: 282 / 260,
  21777. bottom: 0.045
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5 + 10 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(6 + 7 / 12, "feet"),
  21794. weight: math.unit(208, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/chaska/front.svg",
  21798. extra: 332 / 319,
  21799. bottom: 0.015
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(6 + 7 / 12, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(5 + 8 / 12, "feet"),
  21816. weight: math.unit(208, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/enuk/front.svg",
  21820. extra: 437 / 406,
  21821. bottom: 0.02
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(5 + 8 / 12, "feet"),
  21829. default: true
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21835. {
  21836. front: {
  21837. height: math.unit(5 + 10 / 12, "feet"),
  21838. weight: math.unit(252, "lb"),
  21839. name: "Front",
  21840. image: {
  21841. source: "./media/characters/bruun/front.svg",
  21842. extra: 197 / 187,
  21843. bottom: 0.012
  21844. }
  21845. },
  21846. },
  21847. [
  21848. {
  21849. name: "Normal",
  21850. height: math.unit(5 + 10 / 12, "feet"),
  21851. default: true
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(6 + 10 / 12, "feet"),
  21860. weight: math.unit(255, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/alexeev/front.svg",
  21864. extra: 213 / 200,
  21865. bottom: 0.05
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(6 + 10 / 12, "feet"),
  21873. default: true
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(2 + 8 / 12, "feet"),
  21882. weight: math.unit(22, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/evelyn/front.svg",
  21886. extra: 208 / 180
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(2 + 8 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(5 + 9 / 12, "feet"),
  21903. weight: math.unit(139, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/inca/front.svg",
  21907. extra: 294 / 291,
  21908. bottom: 0.03
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(5 + 9 / 12, "feet"),
  21916. default: true
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21922. {
  21923. front: {
  21924. height: math.unit(6 + 3 / 12, "feet"),
  21925. weight: math.unit(185, "lb"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/mera/front.svg",
  21929. extra: 291 / 277,
  21930. bottom: 0.03
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(6 + 3 / 12, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(6 + 7 / 12, "feet"),
  21947. weight: math.unit(160, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/ceres/front.svg",
  21951. extra: 1023 / 950,
  21952. bottom: 0.027
  21953. }
  21954. },
  21955. back: {
  21956. height: math.unit(6 + 7 / 12, "feet"),
  21957. weight: math.unit(160, "lb"),
  21958. name: "Back",
  21959. image: {
  21960. source: "./media/characters/ceres/back.svg",
  21961. extra: 1023 / 950
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(6 + 7 / 12, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(5 + 10 / 12, "feet"),
  21978. weight: math.unit(150, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/kris/front.svg",
  21982. extra: 885 / 803,
  21983. bottom: 0.03
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(5 + 10 / 12, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21997. {
  21998. dragon_front: {
  21999. height: math.unit(5, "feet"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/taluthus/dragon-front.svg",
  22003. extra: 1203/1098,
  22004. bottom: 46/1249
  22005. },
  22006. form: "dragon",
  22007. default: true
  22008. },
  22009. dragon_maw: {
  22010. height: math.unit(2.35, "feet"),
  22011. name: "Maw",
  22012. image: {
  22013. source: "./media/characters/taluthus/dragon-maw.svg"
  22014. },
  22015. form: "dragon",
  22016. },
  22017. kitsune_front: {
  22018. height: math.unit(7, "feet"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/taluthus/kitsune-front.svg",
  22022. extra: 900/841,
  22023. bottom: 65/965
  22024. },
  22025. form: "kitsune",
  22026. default: true
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(5, "feet"),
  22033. form: "dragon",
  22034. default: true,
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(7, "feet"),
  22039. form: "kitsune",
  22040. default: true
  22041. },
  22042. {
  22043. name: "Macro",
  22044. height: math.unit(300, "feet"),
  22045. allForms: true
  22046. },
  22047. ],
  22048. {
  22049. "dragon": {
  22050. name: "Dragon",
  22051. default: true
  22052. },
  22053. "kitsune": {
  22054. name: "Kitsune",
  22055. },
  22056. }
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(5 + 9 / 12, "feet"),
  22063. weight: math.unit(145, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/dawn/front.svg",
  22067. extra: 2094 / 2016,
  22068. bottom: 0.025
  22069. }
  22070. },
  22071. back: {
  22072. height: math.unit(5 + 9 / 12, "feet"),
  22073. weight: math.unit(160, "lb"),
  22074. name: "Back",
  22075. image: {
  22076. source: "./media/characters/dawn/back.svg",
  22077. extra: 2112 / 2080,
  22078. bottom: 0.005
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(6 + 7 / 12, "feet"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22092. {
  22093. anthro: {
  22094. height: math.unit(8 + 3 / 12, "feet"),
  22095. weight: math.unit(450, "lb"),
  22096. name: "Anthro",
  22097. image: {
  22098. source: "./media/characters/arador/anthro.svg",
  22099. extra: 1835 / 1718,
  22100. bottom: 0.025
  22101. }
  22102. },
  22103. feral: {
  22104. height: math.unit(4, "feet"),
  22105. weight: math.unit(200, "lb"),
  22106. name: "Feral",
  22107. image: {
  22108. source: "./media/characters/arador/feral.svg",
  22109. extra: 1683 / 1514,
  22110. bottom: 0.07
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(8 + 3 / 12, "feet")
  22118. },
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(82.5, "feet"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(5 + 10 / 12, "feet"),
  22131. weight: math.unit(125, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/dharsi/front.svg",
  22135. extra: 716 / 630,
  22136. bottom: 0.035
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Nano",
  22143. height: math.unit(100, "nm")
  22144. },
  22145. {
  22146. name: "Micro",
  22147. height: math.unit(2, "inches")
  22148. },
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(5 + 10 / 12, "feet"),
  22152. default: true
  22153. },
  22154. {
  22155. name: "Macro",
  22156. height: math.unit(1000, "feet")
  22157. },
  22158. {
  22159. name: "Megamacro",
  22160. height: math.unit(10, "miles")
  22161. },
  22162. {
  22163. name: "Gigamacro",
  22164. height: math.unit(3000, "miles")
  22165. },
  22166. {
  22167. name: "Teramacro",
  22168. height: math.unit(500000, "miles")
  22169. },
  22170. {
  22171. name: "Teramacro+",
  22172. height: math.unit(30, "galaxies")
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(6, "feet"),
  22181. weight: math.unit(150, "lb"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/deathy/front.svg",
  22185. extra: 1552 / 1463,
  22186. bottom: 0.025
  22187. }
  22188. },
  22189. side: {
  22190. height: math.unit(6, "feet"),
  22191. weight: math.unit(150, "lb"),
  22192. name: "Side",
  22193. image: {
  22194. source: "./media/characters/deathy/side.svg",
  22195. extra: 1604 / 1455,
  22196. bottom: 0.025
  22197. }
  22198. },
  22199. back: {
  22200. height: math.unit(6, "feet"),
  22201. weight: math.unit(150, "lb"),
  22202. name: "Back",
  22203. image: {
  22204. source: "./media/characters/deathy/back.svg",
  22205. extra: 1580 / 1463,
  22206. bottom: 0.005
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Micro",
  22213. height: math.unit(5, "millimeters")
  22214. },
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(6 + 5 / 12, "feet"),
  22218. default: true
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22224. {
  22225. front: {
  22226. height: math.unit(16, "feet"),
  22227. weight: math.unit(4000, "lb"),
  22228. name: "Front",
  22229. image: {
  22230. source: "./media/characters/juniper/front.svg",
  22231. bottom: 0.04
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(16, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(6, "feet"),
  22248. weight: math.unit(150, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/hipster/front.svg",
  22252. extra: 1312 / 1209,
  22253. bottom: 0.025
  22254. }
  22255. },
  22256. back: {
  22257. height: math.unit(6, "feet"),
  22258. weight: math.unit(150, "lb"),
  22259. name: "Back",
  22260. image: {
  22261. source: "./media/characters/hipster/back.svg",
  22262. extra: 1281 / 1196,
  22263. bottom: 0.01
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Micro",
  22270. height: math.unit(1, "mm")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(4, "inches"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(500, "feet")
  22280. },
  22281. {
  22282. name: "Megamacro",
  22283. height: math.unit(1000, "miles")
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(6, "feet"),
  22292. weight: math.unit(150, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/tendirmuldr/front.svg",
  22296. extra: 1878 / 1772,
  22297. bottom: 0.015
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Megamacro",
  22304. height: math.unit(1500, "miles"),
  22305. default: true
  22306. },
  22307. ]
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22311. {
  22312. front: {
  22313. height: math.unit(14, "feet"),
  22314. weight: math.unit(12000, "lb"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/mort/front.svg",
  22318. extra: 365 / 318,
  22319. bottom: 0.01
  22320. }
  22321. },
  22322. side: {
  22323. height: math.unit(14, "feet"),
  22324. weight: math.unit(12000, "lb"),
  22325. name: "Side",
  22326. image: {
  22327. source: "./media/characters/mort/side.svg",
  22328. extra: 365 / 318,
  22329. bottom: 0.052
  22330. },
  22331. default: true
  22332. },
  22333. back: {
  22334. height: math.unit(14, "feet"),
  22335. weight: math.unit(12000, "lb"),
  22336. name: "Back",
  22337. image: {
  22338. source: "./media/characters/mort/back.svg",
  22339. extra: 371 / 332,
  22340. bottom: 0.18
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(14, "feet"),
  22348. default: true
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22354. {
  22355. front: {
  22356. height: math.unit(8, "feet"),
  22357. weight: math.unit(1, "ton"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/lycoa/front.svg",
  22361. extra: 1836/1728,
  22362. bottom: 81/1917
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(8, "feet"),
  22367. weight: math.unit(1, "ton"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/lycoa/back.svg",
  22371. extra: 1785/1720,
  22372. bottom: 91/1876
  22373. }
  22374. },
  22375. head: {
  22376. height: math.unit(1.6243, "feet"),
  22377. name: "Head",
  22378. image: {
  22379. source: "./media/characters/lycoa/head.svg",
  22380. extra: 1011/782,
  22381. bottom: 0/1011
  22382. }
  22383. },
  22384. tailmaw: {
  22385. height: math.unit(1.9, "feet"),
  22386. name: "Tailmaw",
  22387. image: {
  22388. source: "./media/characters/lycoa/tailmaw.svg"
  22389. }
  22390. },
  22391. tentacles: {
  22392. height: math.unit(2.1, "feet"),
  22393. name: "Tentacles",
  22394. image: {
  22395. source: "./media/characters/lycoa/tentacles.svg"
  22396. }
  22397. },
  22398. dick: {
  22399. height: math.unit(1.73, "feet"),
  22400. name: "Dick",
  22401. image: {
  22402. source: "./media/characters/lycoa/dick.svg"
  22403. }
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Normal",
  22409. height: math.unit(8, "feet"),
  22410. default: true
  22411. },
  22412. {
  22413. name: "Macro",
  22414. height: math.unit(30, "feet")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22420. {
  22421. front: {
  22422. height: math.unit(4 + 2 / 12, "feet"),
  22423. weight: math.unit(70, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/naldara/front.svg",
  22427. extra: 1664/1387,
  22428. bottom: 81/1745
  22429. },
  22430. form: "anthro",
  22431. default: true
  22432. },
  22433. naga: {
  22434. height: math.unit(20, "feet"),
  22435. weight: math.unit(15000, "kg"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/naldara/naga.svg",
  22439. extra: 1590/1396,
  22440. bottom: 285/1875
  22441. },
  22442. form: "naga",
  22443. default: true
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(4 + 2 / 12, "feet"),
  22450. form: "anthro",
  22451. default: true
  22452. },
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(20, "feet"),
  22456. form: "naga",
  22457. default: true
  22458. },
  22459. ],
  22460. {
  22461. "anthro": {
  22462. name: "Anthro",
  22463. default: true
  22464. },
  22465. "naga": {
  22466. name: "Naga"
  22467. }
  22468. }
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22472. {
  22473. front: {
  22474. height: math.unit(13 + 7 / 12, "feet"),
  22475. weight: math.unit(1500, "lb"),
  22476. name: "Front",
  22477. image: {
  22478. source: "./media/characters/briar/front.svg",
  22479. extra: 1223/1157,
  22480. bottom: 123/1346
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Normal",
  22487. height: math.unit(13 + 7 / 12, "feet"),
  22488. default: true
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22494. {
  22495. side: {
  22496. height: math.unit(16, "feet"),
  22497. weight: math.unit(500, "lb"),
  22498. name: "Side",
  22499. image: {
  22500. source: "./media/characters/vanguard/side.svg",
  22501. extra: 1022/914,
  22502. bottom: 30/1052
  22503. }
  22504. },
  22505. sideAlt: {
  22506. height: math.unit(10, "feet"),
  22507. weight: math.unit(500, "lb"),
  22508. name: "Side (Alt)",
  22509. image: {
  22510. source: "./media/characters/vanguard/side-alt.svg",
  22511. extra: 502 / 425,
  22512. bottom: 0.087
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(17.71, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(7.5, "feet"),
  22529. weight: math.unit(2, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/artemis/work-safe-front.svg",
  22533. extra: 1192 / 1075,
  22534. bottom: 0.07
  22535. },
  22536. form: "work-safe",
  22537. default: true
  22538. },
  22539. frontNsfw: {
  22540. height: math.unit(7.5, "feet"),
  22541. weight: math.unit(2, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/artemis/calibrating-front.svg",
  22545. extra: 1192 / 1075,
  22546. bottom: 0.07
  22547. },
  22548. form: "calibrating",
  22549. default: true
  22550. },
  22551. frontNsfwer: {
  22552. height: math.unit(7.5, "feet"),
  22553. weight: math.unit(2, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/artemis/oversize-load-front.svg",
  22557. extra: 1192 / 1075,
  22558. bottom: 0.07
  22559. },
  22560. form: "oversize-load",
  22561. default: true
  22562. },
  22563. side: {
  22564. height: math.unit(7.5, "feet"),
  22565. weight: math.unit(2, "lb"),
  22566. name: "Side",
  22567. image: {
  22568. source: "./media/characters/artemis/work-safe-side.svg",
  22569. extra: 1192 / 1075,
  22570. bottom: 0.07
  22571. },
  22572. form: "work-safe"
  22573. },
  22574. sideNsfw: {
  22575. height: math.unit(7.5, "feet"),
  22576. weight: math.unit(2, "lb"),
  22577. name: "Side",
  22578. image: {
  22579. source: "./media/characters/artemis/calibrating-side.svg",
  22580. extra: 1192 / 1075,
  22581. bottom: 0.07
  22582. },
  22583. form: "calibrating"
  22584. },
  22585. sideNsfwer: {
  22586. height: math.unit(7.5, "feet"),
  22587. weight: math.unit(2, "lb"),
  22588. name: "Side",
  22589. image: {
  22590. source: "./media/characters/artemis/oversize-load-side.svg",
  22591. extra: 1192 / 1075,
  22592. bottom: 0.07
  22593. },
  22594. form: "oversize-load"
  22595. },
  22596. maw: {
  22597. height: math.unit(1.1, "feet"),
  22598. name: "Maw",
  22599. image: {
  22600. source: "./media/characters/artemis/maw.svg"
  22601. },
  22602. form: "work-safe"
  22603. },
  22604. stomach: {
  22605. height: math.unit(0.95, "feet"),
  22606. name: "Stomach",
  22607. image: {
  22608. source: "./media/characters/artemis/stomach.svg"
  22609. },
  22610. form: "work-safe"
  22611. },
  22612. dickCanine: {
  22613. height: math.unit(1, "feet"),
  22614. name: "Dick (Canine)",
  22615. image: {
  22616. source: "./media/characters/artemis/dick-canine.svg"
  22617. },
  22618. form: "calibrating"
  22619. },
  22620. dickEquine: {
  22621. height: math.unit(0.85, "feet"),
  22622. name: "Dick (Equine)",
  22623. image: {
  22624. source: "./media/characters/artemis/dick-equine.svg"
  22625. },
  22626. form: "calibrating"
  22627. },
  22628. dickExotic: {
  22629. height: math.unit(0.85, "feet"),
  22630. name: "Dick (Exotic)",
  22631. image: {
  22632. source: "./media/characters/artemis/dick-exotic.svg"
  22633. },
  22634. form: "calibrating"
  22635. },
  22636. dickCanineBigger: {
  22637. height: math.unit(1 * 1.33, "feet"),
  22638. name: "Dick (Canine)",
  22639. image: {
  22640. source: "./media/characters/artemis/dick-canine.svg"
  22641. },
  22642. form: "oversize-load"
  22643. },
  22644. dickEquineBigger: {
  22645. height: math.unit(0.85 * 1.33, "feet"),
  22646. name: "Dick (Equine)",
  22647. image: {
  22648. source: "./media/characters/artemis/dick-equine.svg"
  22649. },
  22650. form: "oversize-load"
  22651. },
  22652. dickExoticBigger: {
  22653. height: math.unit(0.85 * 1.33, "feet"),
  22654. name: "Dick (Exotic)",
  22655. image: {
  22656. source: "./media/characters/artemis/dick-exotic.svg"
  22657. },
  22658. form: "oversize-load"
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Normal",
  22664. height: math.unit(7.5, "feet"),
  22665. form: "work-safe",
  22666. default: true
  22667. },
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(7.5, "feet"),
  22671. form: "calibrating",
  22672. default: true
  22673. },
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(7.5, "feet"),
  22677. form: "oversize-load",
  22678. default: true
  22679. },
  22680. {
  22681. name: "Enlarged",
  22682. height: math.unit(12, "feet"),
  22683. form: "work-safe",
  22684. },
  22685. {
  22686. name: "Enlarged",
  22687. height: math.unit(12, "feet"),
  22688. form: "calibrating",
  22689. },
  22690. {
  22691. name: "Enlarged",
  22692. height: math.unit(12, "feet"),
  22693. form: "oversize-load",
  22694. },
  22695. ],
  22696. {
  22697. "work-safe": {
  22698. name: "Work-Safe",
  22699. default: true
  22700. },
  22701. "calibrating": {
  22702. name: "Calibrating"
  22703. },
  22704. "oversize-load": {
  22705. name: "Oversize Load"
  22706. }
  22707. }
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(5 + 3 / 12, "feet"),
  22714. weight: math.unit(160, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/kira/front.svg",
  22718. extra: 906 / 786,
  22719. bottom: 0.01
  22720. }
  22721. },
  22722. back: {
  22723. height: math.unit(5 + 3 / 12, "feet"),
  22724. weight: math.unit(160, "lb"),
  22725. name: "Back",
  22726. image: {
  22727. source: "./media/characters/kira/back.svg",
  22728. extra: 882 / 757,
  22729. bottom: 0.005
  22730. }
  22731. },
  22732. frontDressed: {
  22733. height: math.unit(5 + 3 / 12, "feet"),
  22734. weight: math.unit(160, "lb"),
  22735. name: "Front (Dressed)",
  22736. image: {
  22737. source: "./media/characters/kira/front-dressed.svg",
  22738. extra: 906 / 786,
  22739. bottom: 0.01
  22740. }
  22741. },
  22742. beans: {
  22743. height: math.unit(0.92, "feet"),
  22744. name: "Beans",
  22745. image: {
  22746. source: "./media/characters/kira/beans.svg"
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(5 + 3 / 12, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(5 + 4 / 12, "feet"),
  22763. weight: math.unit(145, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/scramble/front.svg",
  22767. extra: 763 / 727,
  22768. bottom: 0.05
  22769. }
  22770. },
  22771. back: {
  22772. height: math.unit(5 + 4 / 12, "feet"),
  22773. weight: math.unit(145, "lb"),
  22774. name: "Back",
  22775. image: {
  22776. source: "./media/characters/scramble/back.svg",
  22777. extra: 826 / 737,
  22778. bottom: 0.002
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(5 + 4 / 12, "feet"),
  22786. default: true
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22792. {
  22793. side: {
  22794. height: math.unit(6 + 2 / 12, "feet"),
  22795. weight: math.unit(190, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/biscuit/side.svg",
  22799. extra: 858 / 791,
  22800. bottom: 0.044
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(6 + 2 / 12, "feet"),
  22808. default: true
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(5 + 2 / 12, "feet"),
  22817. weight: math.unit(120, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/poffin/front.svg",
  22821. extra: 786 / 680,
  22822. bottom: 0.005
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(5 + 2 / 12, "feet"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(6 + 3 / 12, "feet"),
  22839. weight: math.unit(519, "lb"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/dhari/front.svg",
  22843. extra: 1048 / 946,
  22844. bottom: 0.015
  22845. }
  22846. },
  22847. back: {
  22848. height: math.unit(6 + 3 / 12, "feet"),
  22849. weight: math.unit(519, "lb"),
  22850. name: "Back",
  22851. image: {
  22852. source: "./media/characters/dhari/back.svg",
  22853. extra: 1048 / 931,
  22854. bottom: 0.005
  22855. }
  22856. },
  22857. frontDressed: {
  22858. height: math.unit(6 + 3 / 12, "feet"),
  22859. weight: math.unit(519, "lb"),
  22860. name: "Front (Dressed)",
  22861. image: {
  22862. source: "./media/characters/dhari/front-dressed.svg",
  22863. extra: 1713 / 1546,
  22864. bottom: 0.02
  22865. }
  22866. },
  22867. backDressed: {
  22868. height: math.unit(6 + 3 / 12, "feet"),
  22869. weight: math.unit(519, "lb"),
  22870. name: "Back (Dressed)",
  22871. image: {
  22872. source: "./media/characters/dhari/back-dressed.svg",
  22873. extra: 1699 / 1537,
  22874. bottom: 0.01
  22875. }
  22876. },
  22877. maw: {
  22878. height: math.unit(0.95, "feet"),
  22879. name: "Maw",
  22880. image: {
  22881. source: "./media/characters/dhari/maw.svg"
  22882. }
  22883. },
  22884. wereFront: {
  22885. height: math.unit(12 + 8 / 12, "feet"),
  22886. weight: math.unit(4000, "lb"),
  22887. name: "Front (Were)",
  22888. image: {
  22889. source: "./media/characters/dhari/were-front.svg",
  22890. extra: 1065 / 969,
  22891. bottom: 0.015
  22892. }
  22893. },
  22894. wereBack: {
  22895. height: math.unit(12 + 8 / 12, "feet"),
  22896. weight: math.unit(4000, "lb"),
  22897. name: "Back (Were)",
  22898. image: {
  22899. source: "./media/characters/dhari/were-back.svg",
  22900. extra: 1065 / 969,
  22901. bottom: 0.012
  22902. }
  22903. },
  22904. wereMaw: {
  22905. height: math.unit(0.625, "meters"),
  22906. name: "Maw (Were)",
  22907. image: {
  22908. source: "./media/characters/dhari/were-maw.svg"
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(6 + 3 / 12, "feet"),
  22916. default: true
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22922. {
  22923. anthro: {
  22924. height: math.unit(5 + 7 / 12, "feet"),
  22925. weight: math.unit(175, "lb"),
  22926. name: "Anthro",
  22927. image: {
  22928. source: "./media/characters/rena-dyne/anthro.svg",
  22929. extra: 1849 / 1785,
  22930. bottom: 0.005
  22931. }
  22932. },
  22933. taur: {
  22934. height: math.unit(15 + 6 / 12, "feet"),
  22935. weight: math.unit(8000, "lb"),
  22936. name: "Taur",
  22937. image: {
  22938. source: "./media/characters/rena-dyne/taur.svg",
  22939. extra: 2315 / 2234,
  22940. bottom: 0.033
  22941. }
  22942. },
  22943. },
  22944. [
  22945. {
  22946. name: "Normal",
  22947. height: math.unit(5 + 7 / 12, "feet"),
  22948. default: true
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22954. {
  22955. front: {
  22956. height: math.unit(8, "feet"),
  22957. weight: math.unit(600, "lb"),
  22958. name: "Front",
  22959. image: {
  22960. source: "./media/characters/weremeep/front.svg",
  22961. extra: 970/849,
  22962. bottom: 7/977
  22963. }
  22964. },
  22965. },
  22966. [
  22967. {
  22968. name: "Normal",
  22969. height: math.unit(8, "feet"),
  22970. default: true
  22971. },
  22972. {
  22973. name: "Lorg",
  22974. height: math.unit(12, "feet")
  22975. },
  22976. {
  22977. name: "Oh Lawd She Comin'",
  22978. height: math.unit(20, "feet")
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22984. {
  22985. front: {
  22986. height: math.unit(4, "feet"),
  22987. weight: math.unit(90, "lb"),
  22988. name: "Front",
  22989. image: {
  22990. source: "./media/characters/reza/front.svg",
  22991. extra: 1183 / 1111,
  22992. bottom: 0.017
  22993. }
  22994. },
  22995. back: {
  22996. height: math.unit(4, "feet"),
  22997. weight: math.unit(90, "lb"),
  22998. name: "Back",
  22999. image: {
  23000. source: "./media/characters/reza/back.svg",
  23001. extra: 1183 / 1111,
  23002. bottom: 0.01
  23003. }
  23004. },
  23005. drake: {
  23006. height: math.unit(30, "feet"),
  23007. weight: math.unit(246960, "lb"),
  23008. name: "Drake",
  23009. image: {
  23010. source: "./media/characters/reza/drake.svg",
  23011. extra: 2350 / 2024,
  23012. bottom: 60.7 / 2403
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(4, "feet"),
  23020. default: true
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23026. {
  23027. side: {
  23028. height: math.unit(15, "feet"),
  23029. weight: math.unit(14, "tons"),
  23030. name: "Side",
  23031. image: {
  23032. source: "./media/characters/athea/side.svg",
  23033. extra: 960 / 540,
  23034. bottom: 0.003
  23035. }
  23036. },
  23037. sitting: {
  23038. height: math.unit(6 * 2.85, "feet"),
  23039. weight: math.unit(14, "tons"),
  23040. name: "Sitting",
  23041. image: {
  23042. source: "./media/characters/athea/sitting.svg",
  23043. extra: 621 / 581,
  23044. bottom: 0.075
  23045. }
  23046. },
  23047. maw: {
  23048. height: math.unit(7.59498031496063, "feet"),
  23049. name: "Maw",
  23050. image: {
  23051. source: "./media/characters/athea/maw.svg"
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Lap Cat",
  23058. height: math.unit(2.5, "feet")
  23059. },
  23060. {
  23061. name: "Minimacro",
  23062. height: math.unit(15, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Macro",
  23067. height: math.unit(120, "feet")
  23068. },
  23069. {
  23070. name: "Macro+",
  23071. height: math.unit(640, "feet")
  23072. },
  23073. {
  23074. name: "Colossus",
  23075. height: math.unit(2.2, "miles")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(8 + 8 / 12, "feet"),
  23084. weight: math.unit(130, "kg"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/seroko/front.svg",
  23088. extra: 1385 / 1280,
  23089. bottom: 0.025
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(8 + 8 / 12, "feet"),
  23094. weight: math.unit(130, "kg"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/seroko/back.svg",
  23098. extra: 1369 / 1238,
  23099. bottom: 0.018
  23100. }
  23101. },
  23102. frontDressed: {
  23103. height: math.unit(8 + 8 / 12, "feet"),
  23104. weight: math.unit(130, "kg"),
  23105. name: "Front (Dressed)",
  23106. image: {
  23107. source: "./media/characters/seroko/front-dressed.svg",
  23108. extra: 1366 / 1275,
  23109. bottom: 0.03
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(8 + 8 / 12, "feet"),
  23117. default: true
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(5.5, "feet"),
  23126. weight: math.unit(160, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/quatzi/front.svg",
  23130. extra: 2346 / 2242,
  23131. bottom: 0.015
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(5.5, "feet"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Big",
  23143. height: math.unit(7.7, "feet")
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(5 + 11 / 12, "feet"),
  23152. weight: math.unit(180, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/sen/front.svg",
  23156. extra: 1321 / 1254,
  23157. bottom: 0.015
  23158. }
  23159. },
  23160. side: {
  23161. height: math.unit(5 + 11 / 12, "feet"),
  23162. weight: math.unit(180, "lb"),
  23163. name: "Side",
  23164. image: {
  23165. source: "./media/characters/sen/side.svg",
  23166. extra: 1321 / 1254,
  23167. bottom: 0.007
  23168. }
  23169. },
  23170. back: {
  23171. height: math.unit(5 + 11 / 12, "feet"),
  23172. weight: math.unit(180, "lb"),
  23173. name: "Back",
  23174. image: {
  23175. source: "./media/characters/sen/back.svg",
  23176. extra: 1321 / 1254
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Normal",
  23183. height: math.unit(5 + 11 / 12, "feet"),
  23184. default: true
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23190. {
  23191. front: {
  23192. height: math.unit(166.6, "cm"),
  23193. weight: math.unit(66.6, "kg"),
  23194. name: "Front",
  23195. image: {
  23196. source: "./media/characters/fruity/front.svg",
  23197. extra: 1510 / 1386,
  23198. bottom: 0.04
  23199. }
  23200. },
  23201. back: {
  23202. height: math.unit(166.6, "cm"),
  23203. weight: math.unit(66.6, "lb"),
  23204. name: "Back",
  23205. image: {
  23206. source: "./media/characters/fruity/back.svg",
  23207. extra: 1563 / 1435,
  23208. bottom: 0.005
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Normal",
  23215. height: math.unit(166.6, "cm"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Demonic",
  23220. height: math.unit(166.6, "feet")
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23226. {
  23227. side: {
  23228. height: math.unit(10, "feet"),
  23229. weight: math.unit(500, "lb"),
  23230. name: "Side",
  23231. image: {
  23232. source: "./media/characters/zost/side.svg",
  23233. extra: 2870/2533,
  23234. bottom: 252/3122
  23235. }
  23236. },
  23237. mawFront: {
  23238. height: math.unit(1.08, "meters"),
  23239. name: "Maw (Front)",
  23240. image: {
  23241. source: "./media/characters/zost/maw-front.svg"
  23242. }
  23243. },
  23244. mawSide: {
  23245. height: math.unit(2.66, "feet"),
  23246. name: "Maw (Side)",
  23247. image: {
  23248. source: "./media/characters/zost/maw-side.svg"
  23249. }
  23250. },
  23251. wingspan: {
  23252. height: math.unit(7.4, "feet"),
  23253. name: "Wingspan",
  23254. image: {
  23255. source: "./media/characters/zost/wingspan.svg"
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(10, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(5 + 4 / 12, "feet"),
  23272. weight: math.unit(120, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/luci/front.svg",
  23276. extra: 1985 / 1884,
  23277. bottom: 0.04
  23278. }
  23279. },
  23280. back: {
  23281. height: math.unit(5 + 4 / 12, "feet"),
  23282. weight: math.unit(120, "lb"),
  23283. name: "Back",
  23284. image: {
  23285. source: "./media/characters/luci/back.svg",
  23286. extra: 1892 / 1791,
  23287. bottom: 0.002
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(5 + 4 / 12, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(1500, "feet"),
  23304. weight: math.unit(3.8e6, "tons"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/2th/front.svg",
  23308. extra: 3489 / 3350,
  23309. bottom: 0.1
  23310. }
  23311. },
  23312. foot: {
  23313. height: math.unit(461, "feet"),
  23314. name: "Foot",
  23315. image: {
  23316. source: "./media/characters/2th/foot.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "\"Micro\"",
  23323. height: math.unit(15 + 7 / 12, "feet")
  23324. },
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(1500, "feet"),
  23328. default: true
  23329. },
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(5000, "feet")
  23333. },
  23334. {
  23335. name: "Megamacro",
  23336. height: math.unit(15, "miles")
  23337. },
  23338. {
  23339. name: "Gigamacro",
  23340. height: math.unit(4000, "miles")
  23341. },
  23342. {
  23343. name: "Galactic",
  23344. height: math.unit(50, "AU")
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23350. {
  23351. front: {
  23352. height: math.unit(5 + 6 / 12, "feet"),
  23353. weight: math.unit(220, "lb"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/amethyst/front.svg",
  23357. extra: 2078 / 2040,
  23358. bottom: 0.045
  23359. }
  23360. },
  23361. back: {
  23362. height: math.unit(5 + 6 / 12, "feet"),
  23363. weight: math.unit(220, "lb"),
  23364. name: "Back",
  23365. image: {
  23366. source: "./media/characters/amethyst/back.svg",
  23367. extra: 2021 / 1989,
  23368. bottom: 0.02
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(5 + 6 / 12, "feet"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(4 + 11 / 12, "feet"),
  23385. weight: math.unit(120, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/yumi-akiyama/front.svg",
  23389. extra: 1327 / 1235,
  23390. bottom: 0.02
  23391. }
  23392. },
  23393. back: {
  23394. height: math.unit(4 + 11 / 12, "feet"),
  23395. weight: math.unit(120, "lb"),
  23396. name: "Back",
  23397. image: {
  23398. source: "./media/characters/yumi-akiyama/back.svg",
  23399. extra: 1287 / 1245,
  23400. bottom: 0.002
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Galactic",
  23407. height: math.unit(50, "galaxies"),
  23408. default: true
  23409. },
  23410. {
  23411. name: "Universal",
  23412. height: math.unit(100, "universes")
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(8, "feet"),
  23421. weight: math.unit(500, "lb"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/rifter-yrmori/front.svg",
  23425. extra: 1180 / 1125,
  23426. bottom: 0.02
  23427. }
  23428. },
  23429. back: {
  23430. height: math.unit(8, "feet"),
  23431. weight: math.unit(500, "lb"),
  23432. name: "Back",
  23433. image: {
  23434. source: "./media/characters/rifter-yrmori/back.svg",
  23435. extra: 1190 / 1145,
  23436. bottom: 0.001
  23437. }
  23438. },
  23439. wings: {
  23440. height: math.unit(7.75, "feet"),
  23441. weight: math.unit(500, "lb"),
  23442. name: "Wings",
  23443. image: {
  23444. source: "./media/characters/rifter-yrmori/wings.svg",
  23445. extra: 1357 / 1285
  23446. }
  23447. },
  23448. maw: {
  23449. height: math.unit(0.8, "feet"),
  23450. name: "Maw",
  23451. image: {
  23452. source: "./media/characters/rifter-yrmori/maw.svg"
  23453. }
  23454. },
  23455. mawfront: {
  23456. height: math.unit(1.45, "feet"),
  23457. name: "Maw (Front)",
  23458. image: {
  23459. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(8, "feet"),
  23467. default: true
  23468. },
  23469. {
  23470. name: "Macro",
  23471. height: math.unit(42, "meters")
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23477. {
  23478. were: {
  23479. height: math.unit(25 + 6 / 12, "feet"),
  23480. weight: math.unit(10000, "lb"),
  23481. name: "Were",
  23482. image: {
  23483. source: "./media/characters/tahajin/were.svg",
  23484. extra: 801 / 770,
  23485. bottom: 0.042
  23486. }
  23487. },
  23488. aquatic: {
  23489. height: math.unit(6 + 4 / 12, "feet"),
  23490. weight: math.unit(160, "lb"),
  23491. name: "Aquatic",
  23492. image: {
  23493. source: "./media/characters/tahajin/aquatic.svg",
  23494. extra: 572 / 542,
  23495. bottom: 0.04
  23496. }
  23497. },
  23498. chow: {
  23499. height: math.unit(8 + 11 / 12, "feet"),
  23500. weight: math.unit(450, "lb"),
  23501. name: "Chow",
  23502. image: {
  23503. source: "./media/characters/tahajin/chow.svg",
  23504. extra: 660 / 640,
  23505. bottom: 0.015
  23506. }
  23507. },
  23508. demiNaga: {
  23509. height: math.unit(6 + 8 / 12, "feet"),
  23510. weight: math.unit(300, "lb"),
  23511. name: "Demi Naga",
  23512. image: {
  23513. source: "./media/characters/tahajin/demi-naga.svg",
  23514. extra: 643 / 615,
  23515. bottom: 0.1
  23516. }
  23517. },
  23518. data: {
  23519. height: math.unit(5, "inches"),
  23520. weight: math.unit(0.1, "lb"),
  23521. name: "Data",
  23522. image: {
  23523. source: "./media/characters/tahajin/data.svg"
  23524. }
  23525. },
  23526. fluu: {
  23527. height: math.unit(5 + 7 / 12, "feet"),
  23528. weight: math.unit(140, "lb"),
  23529. name: "Fluu",
  23530. image: {
  23531. source: "./media/characters/tahajin/fluu.svg",
  23532. extra: 628 / 592,
  23533. bottom: 0.02
  23534. }
  23535. },
  23536. starWarrior: {
  23537. height: math.unit(4 + 5 / 12, "feet"),
  23538. weight: math.unit(50, "lb"),
  23539. name: "Star Warrior",
  23540. image: {
  23541. source: "./media/characters/tahajin/star-warrior.svg"
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Normal",
  23548. height: math.unit(25 + 6 / 12, "feet"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(8, "feet"),
  23558. weight: math.unit(350, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/gabira/front.svg",
  23562. extra: 1261/1154,
  23563. bottom: 51/1312
  23564. }
  23565. },
  23566. back: {
  23567. height: math.unit(8, "feet"),
  23568. weight: math.unit(350, "lb"),
  23569. name: "Back",
  23570. image: {
  23571. source: "./media/characters/gabira/back.svg",
  23572. extra: 1265/1163,
  23573. bottom: 46/1311
  23574. }
  23575. },
  23576. head: {
  23577. height: math.unit(2.85, "feet"),
  23578. name: "Head",
  23579. image: {
  23580. source: "./media/characters/gabira/head.svg"
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(8, "feet"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23594. {
  23595. front: {
  23596. height: math.unit(5 + 3 / 12, "feet"),
  23597. weight: math.unit(137, "lb"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/sasha-katraine/front.svg",
  23601. extra: 1745/1694,
  23602. bottom: 37/1782
  23603. }
  23604. },
  23605. back: {
  23606. height: math.unit(5 + 3 / 12, "feet"),
  23607. weight: math.unit(137, "lb"),
  23608. name: "Back",
  23609. image: {
  23610. source: "./media/characters/sasha-katraine/back.svg",
  23611. extra: 1776/1699,
  23612. bottom: 26/1802
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Micro",
  23619. height: math.unit(5, "inches")
  23620. },
  23621. {
  23622. name: "Normal",
  23623. height: math.unit(5 + 3 / 12, "feet"),
  23624. default: true
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23630. {
  23631. side: {
  23632. height: math.unit(4, "inches"),
  23633. weight: math.unit(200, "grams"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/der/side.svg",
  23637. extra: 719 / 400,
  23638. bottom: 30.6 / 749.9187
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Micro",
  23645. height: math.unit(4, "inches"),
  23646. default: true
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23652. {
  23653. side: {
  23654. height: math.unit(30, "meters"),
  23655. weight: math.unit(700, "tonnes"),
  23656. name: "Side",
  23657. image: {
  23658. source: "./media/characters/fixerdragon/side.svg",
  23659. extra: (1293.0514 - 116.03) / 1106.86,
  23660. bottom: 116.03 / 1293.0514
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Planck",
  23667. height: math.unit(1.6e-35, "meters")
  23668. },
  23669. {
  23670. name: "Micro",
  23671. height: math.unit(0.4, "meters")
  23672. },
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(30, "meters"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Megamacro",
  23680. height: math.unit(1.2, "megameters")
  23681. },
  23682. {
  23683. name: "Teramacro",
  23684. height: math.unit(130, "terameters")
  23685. },
  23686. {
  23687. name: "Yottamacro",
  23688. height: math.unit(6200, "yottameters")
  23689. },
  23690. ]
  23691. ));
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23694. {
  23695. front: {
  23696. height: math.unit(8, "feet"),
  23697. weight: math.unit(250, "lb"),
  23698. name: "Front",
  23699. image: {
  23700. source: "./media/characters/kite/front.svg",
  23701. extra: 2796 / 2659,
  23702. bottom: 0.002
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(8, "feet"),
  23710. default: true
  23711. },
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(360, "feet")
  23715. },
  23716. {
  23717. name: "Megamacro",
  23718. height: math.unit(1500, "feet")
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23724. {
  23725. anthro_front: {
  23726. height: math.unit(5 + 11/12, "feet"),
  23727. weight: math.unit(170, "lb"),
  23728. name: "Front",
  23729. image: {
  23730. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23731. extra: 1735/1585,
  23732. bottom: 96/1831
  23733. },
  23734. form: "anthro",
  23735. default: true
  23736. },
  23737. anthro_back: {
  23738. height: math.unit(5 + 11/12, "feet"),
  23739. weight: math.unit(170, "lb"),
  23740. name: "Back",
  23741. image: {
  23742. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23743. extra: 1749/1607,
  23744. bottom: 28/1777
  23745. },
  23746. form: "anthro"
  23747. },
  23748. anthro_male: {
  23749. height: math.unit(5 + 11/12, "feet"),
  23750. weight: math.unit(170, "lb"),
  23751. name: "Male",
  23752. image: {
  23753. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23754. extra: 1855/1713,
  23755. bottom: 63/1918
  23756. },
  23757. form: "anthro"
  23758. },
  23759. taur_front: {
  23760. height: math.unit(5 + 7/12, "feet"),
  23761. weight: math.unit(170, "lb"),
  23762. name: "Front",
  23763. image: {
  23764. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23765. extra: 1151/1059,
  23766. bottom: 356/1507
  23767. },
  23768. form: "taur",
  23769. default: true
  23770. },
  23771. anthro_frontDressed: {
  23772. height: math.unit(5 + 11/12, "feet"),
  23773. weight: math.unit(170, "lb"),
  23774. name: "Front (Dressed)",
  23775. image: {
  23776. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23777. extra: 1735/1585,
  23778. bottom: 96/1831
  23779. },
  23780. form: "anthro"
  23781. },
  23782. anthro_backDressed: {
  23783. height: math.unit(5 + 11/12, "feet"),
  23784. weight: math.unit(170, "lb"),
  23785. name: "Back (Dressed)",
  23786. image: {
  23787. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23788. extra: 1749/1607,
  23789. bottom: 28/1777
  23790. },
  23791. form: "anthro"
  23792. },
  23793. anthro_maleDressed: {
  23794. height: math.unit(5 + 11/12, "feet"),
  23795. weight: math.unit(170, "lb"),
  23796. name: "Male (Dressed)",
  23797. image: {
  23798. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23799. extra: 1855/1713,
  23800. bottom: 63/1918
  23801. },
  23802. form: "anthro"
  23803. },
  23804. taur_frontDressed: {
  23805. height: math.unit(5 + 7/12, "feet"),
  23806. weight: math.unit(170, "lb"),
  23807. name: "Front (Dressed)",
  23808. image: {
  23809. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23810. extra: 1151/1059,
  23811. bottom: 356/1507
  23812. },
  23813. form: "taur"
  23814. },
  23815. maw: {
  23816. height: math.unit(1.46, "feet"),
  23817. name: "Maw",
  23818. image: {
  23819. source: "./media/characters/poojawa-vynar/maw.svg"
  23820. },
  23821. allForms: true
  23822. },
  23823. head: {
  23824. height: math.unit(2.34, "feet"),
  23825. name: "Head",
  23826. image: {
  23827. source: "./media/characters/poojawa-vynar/head.svg"
  23828. },
  23829. allForms: true
  23830. },
  23831. leftPaw: {
  23832. height: math.unit(1.72, "feet"),
  23833. name: "Left Paw",
  23834. image: {
  23835. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23836. },
  23837. allForms: true
  23838. },
  23839. rightPaw: {
  23840. height: math.unit(1.61, "feet"),
  23841. name: "Right Paw",
  23842. image: {
  23843. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23844. },
  23845. allForms: true
  23846. },
  23847. toering: {
  23848. height: math.unit(2.9, "inches"),
  23849. name: "Toering",
  23850. image: {
  23851. source: "./media/characters/poojawa-vynar/toering.svg"
  23852. },
  23853. allForms: true
  23854. },
  23855. shaft: {
  23856. height: math.unit(0.625, "feet"),
  23857. name: "Shaft",
  23858. image: {
  23859. source: "./media/characters/poojawa-vynar/shaft.svg"
  23860. },
  23861. allForms: true
  23862. },
  23863. spade: {
  23864. height: math.unit(0.42, "feet"),
  23865. name: "Spade",
  23866. image: {
  23867. source: "./media/characters/poojawa-vynar/spade.svg"
  23868. },
  23869. allForms: true
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Shortstack",
  23875. height: math.unit(4, "feet"),
  23876. form: "anthro"
  23877. },
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(5 + 11 / 12, "feet"),
  23881. form: "anthro",
  23882. default: true
  23883. },
  23884. {
  23885. name: "Tauric",
  23886. height: math.unit(4, "meters"),
  23887. form: "taur",
  23888. default: true
  23889. },
  23890. ],
  23891. {
  23892. "anthro": {
  23893. name: "Anthro",
  23894. default: true
  23895. },
  23896. "taur": {
  23897. name: "Taur",
  23898. },
  23899. }
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(293, "meters"),
  23906. weight: math.unit(70400, "tons"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/violette/front.svg",
  23910. extra: 1227 / 1180,
  23911. bottom: 0.005
  23912. }
  23913. },
  23914. back: {
  23915. height: math.unit(293, "meters"),
  23916. weight: math.unit(70400, "tons"),
  23917. name: "Back",
  23918. image: {
  23919. source: "./media/characters/violette/back.svg",
  23920. extra: 1227 / 1180,
  23921. bottom: 0.005
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(293, "meters"),
  23929. default: true
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23935. {
  23936. front: {
  23937. height: math.unit(1050, "feet"),
  23938. weight: math.unit(200000, "tons"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/alessandra/front.svg",
  23942. extra: 960 / 912,
  23943. bottom: 0.06
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Macro",
  23950. height: math.unit(1050, "feet")
  23951. },
  23952. {
  23953. name: "Macro+",
  23954. height: math.unit(900, "meters"),
  23955. default: true
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23961. {
  23962. front: {
  23963. height: math.unit(5, "feet"),
  23964. weight: math.unit(187, "lb"),
  23965. name: "Front",
  23966. image: {
  23967. source: "./media/characters/person/front.svg",
  23968. extra: 3087 / 2945,
  23969. bottom: 91 / 3181
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Micro",
  23976. height: math.unit(3, "inches")
  23977. },
  23978. {
  23979. name: "Normal",
  23980. height: math.unit(5, "feet"),
  23981. default: true
  23982. },
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(90, "feet")
  23986. },
  23987. {
  23988. name: "Max Size",
  23989. height: math.unit(280, "feet")
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23995. {
  23996. front: {
  23997. height: math.unit(4.5, "meters"),
  23998. weight: math.unit(3200, "lb"),
  23999. name: "Front",
  24000. image: {
  24001. source: "./media/characters/ty/front.svg",
  24002. extra: 1038 / 960,
  24003. bottom: 31.156 / 1068
  24004. }
  24005. },
  24006. back: {
  24007. height: math.unit(4.5, "meters"),
  24008. weight: math.unit(3200, "lb"),
  24009. name: "Back",
  24010. image: {
  24011. source: "./media/characters/ty/back.svg",
  24012. extra: 1044 / 966,
  24013. bottom: 7.48 / 1049
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(4.5, "meters"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(5 + 4 / 12, "feet"),
  24030. weight: math.unit(115, "lb"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/rocky/front.svg",
  24034. extra: 1012 / 975,
  24035. bottom: 54 / 1066
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Normal",
  24042. height: math.unit(5 + 4 / 12, "feet"),
  24043. default: true
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24049. {
  24050. upright: {
  24051. height: math.unit(6, "meters"),
  24052. weight: math.unit(4000, "kg"),
  24053. name: "Upright",
  24054. image: {
  24055. source: "./media/characters/ruin/upright.svg",
  24056. extra: 668 / 661,
  24057. bottom: 42 / 799.8396
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Normal",
  24064. height: math.unit(6, "meters"),
  24065. default: true
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24071. {
  24072. front: {
  24073. height: math.unit(5, "feet"),
  24074. weight: math.unit(106, "lb"),
  24075. name: "Front",
  24076. image: {
  24077. source: "./media/characters/robin/front.svg",
  24078. extra: 862 / 799,
  24079. bottom: 42.4 / 914.8856
  24080. }
  24081. },
  24082. },
  24083. [
  24084. {
  24085. name: "Normal",
  24086. height: math.unit(5, "feet"),
  24087. default: true
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24093. {
  24094. side: {
  24095. height: math.unit(3, "feet"),
  24096. weight: math.unit(225, "lb"),
  24097. name: "Side",
  24098. image: {
  24099. source: "./media/characters/saian/side.svg",
  24100. extra: 566 / 356,
  24101. bottom: 79.7 / 643
  24102. }
  24103. },
  24104. maw: {
  24105. height: math.unit(2.85, "feet"),
  24106. name: "Maw",
  24107. image: {
  24108. source: "./media/characters/saian/maw.svg"
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(3, "feet"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24122. {
  24123. side: {
  24124. height: math.unit(8, "feet"),
  24125. weight: math.unit(300, "lb"),
  24126. name: "Side",
  24127. image: {
  24128. source: "./media/characters/equus-silvermane/side.svg",
  24129. extra: 2176 / 2050,
  24130. bottom: 65.7 / 2245
  24131. }
  24132. },
  24133. front: {
  24134. height: math.unit(8, "feet"),
  24135. weight: math.unit(300, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/equus-silvermane/front.svg",
  24139. extra: 4633 / 4400,
  24140. bottom: 71.3 / 4706.915
  24141. }
  24142. },
  24143. sideStepping: {
  24144. height: math.unit(8, "feet"),
  24145. weight: math.unit(300, "lb"),
  24146. name: "Side (Stepping)",
  24147. image: {
  24148. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24149. extra: 1968 / 1860,
  24150. bottom: 16.4 / 1989
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(8, "feet")
  24158. },
  24159. {
  24160. name: "Minimacro",
  24161. height: math.unit(75, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(150, "feet")
  24167. },
  24168. {
  24169. name: "Macro+",
  24170. height: math.unit(1000, "feet")
  24171. },
  24172. {
  24173. name: "Megamacro",
  24174. height: math.unit(1, "mile")
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24180. {
  24181. side: {
  24182. height: math.unit(20, "feet"),
  24183. weight: math.unit(30000, "kg"),
  24184. name: "Side",
  24185. image: {
  24186. source: "./media/characters/windar/side.svg",
  24187. extra: 1491 / 1248,
  24188. bottom: 82.56 / 1568
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(20, "feet"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24202. {
  24203. side: {
  24204. height: math.unit(15.66, "feet"),
  24205. weight: math.unit(150, "lb"),
  24206. name: "Side",
  24207. image: {
  24208. source: "./media/characters/melody/side.svg",
  24209. extra: 1097 / 944,
  24210. bottom: 11.8 / 1109
  24211. }
  24212. },
  24213. sideOutfit: {
  24214. height: math.unit(15.66, "feet"),
  24215. weight: math.unit(150, "lb"),
  24216. name: "Side (Outfit)",
  24217. image: {
  24218. source: "./media/characters/melody/side-outfit.svg",
  24219. extra: 1097 / 944,
  24220. bottom: 11.8 / 1109
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(15.66, "feet"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24234. {
  24235. armoredFront: {
  24236. height: math.unit(8, "feet"),
  24237. weight: math.unit(325, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/windera/armored-front.svg",
  24241. extra: 1830/1598,
  24242. bottom: 151/1981
  24243. },
  24244. form: "armored",
  24245. default: true
  24246. },
  24247. macroFront: {
  24248. height: math.unit(70, "feet"),
  24249. weight: math.unit(315453, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/windera/macro-front.svg",
  24253. extra: 963/883,
  24254. bottom: 23/986
  24255. },
  24256. form: "macro",
  24257. default: true
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(8, "feet"),
  24264. default: true,
  24265. form: "armored"
  24266. },
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(70, "feet"),
  24270. default: true,
  24271. form: "macro"
  24272. },
  24273. ],
  24274. {
  24275. "armored": {
  24276. name: "Armored",
  24277. default: true
  24278. },
  24279. "macro": {
  24280. name: "Macro",
  24281. },
  24282. }
  24283. ))
  24284. characterMakers.push(() => makeCharacter(
  24285. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24286. {
  24287. front: {
  24288. height: math.unit(28.75, "feet"),
  24289. weight: math.unit(2000, "kg"),
  24290. name: "Front",
  24291. image: {
  24292. source: "./media/characters/sonear/front.svg",
  24293. extra: 1041.1 / 964.9,
  24294. bottom: 53.7 / 1096.6
  24295. }
  24296. },
  24297. },
  24298. [
  24299. {
  24300. name: "Normal",
  24301. height: math.unit(28.75, "feet"),
  24302. default: true
  24303. },
  24304. ]
  24305. ))
  24306. characterMakers.push(() => makeCharacter(
  24307. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24308. {
  24309. side: {
  24310. height: math.unit(25.5, "feet"),
  24311. weight: math.unit(23000, "kg"),
  24312. name: "Side",
  24313. image: {
  24314. source: "./media/characters/kanara/side.svg"
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Normal",
  24321. height: math.unit(25.5, "feet"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24328. {
  24329. side: {
  24330. height: math.unit(10, "feet"),
  24331. weight: math.unit(1000, "kg"),
  24332. name: "Side",
  24333. image: {
  24334. source: "./media/characters/ereus/side.svg",
  24335. extra: 1157 / 959,
  24336. bottom: 153 / 1312.5
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Normal",
  24343. height: math.unit(10, "feet"),
  24344. default: true
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24350. {
  24351. side: {
  24352. height: math.unit(4.5, "feet"),
  24353. weight: math.unit(500, "lb"),
  24354. name: "Side",
  24355. image: {
  24356. source: "./media/characters/e-ter/side.svg",
  24357. extra: 1550 / 1248,
  24358. bottom: 146 / 1694
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(4.5, "feet"),
  24366. default: true
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24372. {
  24373. side: {
  24374. height: math.unit(9.7, "feet"),
  24375. weight: math.unit(4000, "kg"),
  24376. name: "Side",
  24377. image: {
  24378. source: "./media/characters/yamie/side.svg"
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Normal",
  24385. height: math.unit(9.7, "feet"),
  24386. default: true
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(50, "feet"),
  24395. weight: math.unit(50000, "kg"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/anders/front.svg",
  24399. extra: 570 / 539,
  24400. bottom: 14.7 / 586.7
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Large",
  24407. height: math.unit(50, "feet")
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(2000, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Megamacro",
  24416. height: math.unit(12, "miles")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(7 + 2 / 12, "feet"),
  24425. weight: math.unit(300, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/reban/front.svg",
  24429. extra: 1287/1212,
  24430. bottom: 148/1435
  24431. }
  24432. },
  24433. head: {
  24434. height: math.unit(1.95, "feet"),
  24435. name: "Head",
  24436. image: {
  24437. source: "./media/characters/reban/head.svg"
  24438. }
  24439. },
  24440. maw: {
  24441. height: math.unit(0.95, "feet"),
  24442. name: "Maw",
  24443. image: {
  24444. source: "./media/characters/reban/maw.svg"
  24445. }
  24446. },
  24447. foot: {
  24448. height: math.unit(1.65, "feet"),
  24449. name: "Foot",
  24450. image: {
  24451. source: "./media/characters/reban/foot.svg"
  24452. }
  24453. },
  24454. dick: {
  24455. height: math.unit(7 / 5, "feet"),
  24456. name: "Dick",
  24457. image: {
  24458. source: "./media/characters/reban/dick.svg"
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Natural Height",
  24465. height: math.unit(7 + 2 / 12, "feet")
  24466. },
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(500, "feet"),
  24470. default: true
  24471. },
  24472. {
  24473. name: "Canon Height",
  24474. height: math.unit(50, "AU")
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(6, "feet"),
  24483. weight: math.unit(150, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/terrance-keayes/front.svg",
  24487. extra: 1.005,
  24488. bottom: 151 / 1615
  24489. }
  24490. },
  24491. side: {
  24492. height: math.unit(6, "feet"),
  24493. weight: math.unit(150, "lb"),
  24494. name: "Side",
  24495. image: {
  24496. source: "./media/characters/terrance-keayes/side.svg",
  24497. extra: 1.005,
  24498. bottom: 129.4 / 1544
  24499. }
  24500. },
  24501. back: {
  24502. height: math.unit(6, "feet"),
  24503. weight: math.unit(150, "lb"),
  24504. name: "Back",
  24505. image: {
  24506. source: "./media/characters/terrance-keayes/back.svg",
  24507. extra: 1.005,
  24508. bottom: 58.4 / 1557.3
  24509. }
  24510. },
  24511. dick: {
  24512. height: math.unit(6 * 0.208, "feet"),
  24513. name: "Dick",
  24514. image: {
  24515. source: "./media/characters/terrance-keayes/dick.svg"
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Canon Height",
  24522. height: math.unit(35, "miles"),
  24523. default: true
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(6, "feet"),
  24532. weight: math.unit(150, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/ofelia/front.svg",
  24536. extra: 1130/1117,
  24537. bottom: 91/1221
  24538. }
  24539. },
  24540. back: {
  24541. height: math.unit(6, "feet"),
  24542. weight: math.unit(150, "lb"),
  24543. name: "Back",
  24544. image: {
  24545. source: "./media/characters/ofelia/back.svg",
  24546. extra: 1172/1159,
  24547. bottom: 28/1200
  24548. }
  24549. },
  24550. maw: {
  24551. height: math.unit(1, "feet"),
  24552. name: "Maw",
  24553. image: {
  24554. source: "./media/characters/ofelia/maw.svg"
  24555. }
  24556. },
  24557. foot: {
  24558. height: math.unit(1.949, "feet"),
  24559. name: "Foot",
  24560. image: {
  24561. source: "./media/characters/ofelia/foot.svg"
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Canon Height",
  24568. height: math.unit(2000, "miles"),
  24569. default: true
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24575. {
  24576. front: {
  24577. height: math.unit(6, "feet"),
  24578. weight: math.unit(150, "lb"),
  24579. name: "Front",
  24580. image: {
  24581. source: "./media/characters/samuel/front.svg",
  24582. extra: 265 / 258,
  24583. bottom: 2 / 266.1566
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Macro",
  24590. height: math.unit(100, "feet"),
  24591. default: true
  24592. },
  24593. {
  24594. name: "Full Size",
  24595. height: math.unit(1000, "miles")
  24596. },
  24597. ]
  24598. ))
  24599. characterMakers.push(() => makeCharacter(
  24600. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24601. {
  24602. front: {
  24603. height: math.unit(6, "feet"),
  24604. weight: math.unit(300, "lb"),
  24605. name: "Front",
  24606. image: {
  24607. source: "./media/characters/beishir-kiel/front.svg",
  24608. extra: 569 / 547,
  24609. bottom: 41.9 / 609
  24610. }
  24611. },
  24612. maw: {
  24613. height: math.unit(6 * 0.202, "feet"),
  24614. name: "Maw",
  24615. image: {
  24616. source: "./media/characters/beishir-kiel/maw.svg"
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(300, "feet"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(5 + 7/12, "feet"),
  24633. weight: math.unit(120, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/logan-grey/front.svg",
  24637. extra: 1836/1738,
  24638. bottom: 108/1944
  24639. }
  24640. },
  24641. back: {
  24642. height: math.unit(5 + 7/12, "feet"),
  24643. weight: math.unit(120, "lb"),
  24644. name: "Back",
  24645. image: {
  24646. source: "./media/characters/logan-grey/back.svg",
  24647. extra: 1880/1794,
  24648. bottom: 24/1904
  24649. }
  24650. },
  24651. frontSfw: {
  24652. height: math.unit(5 + 7/12, "feet"),
  24653. weight: math.unit(120, "lb"),
  24654. name: "Front (SFW)",
  24655. image: {
  24656. source: "./media/characters/logan-grey/front-sfw.svg",
  24657. extra: 1836/1738,
  24658. bottom: 108/1944
  24659. }
  24660. },
  24661. backSfw: {
  24662. height: math.unit(5 + 7/12, "feet"),
  24663. weight: math.unit(120, "lb"),
  24664. name: "Back (SFW)",
  24665. image: {
  24666. source: "./media/characters/logan-grey/back-sfw.svg",
  24667. extra: 1880/1794,
  24668. bottom: 24/1904
  24669. }
  24670. },
  24671. hands: {
  24672. height: math.unit(0.84, "feet"),
  24673. name: "Hands",
  24674. image: {
  24675. source: "./media/characters/logan-grey/hands.svg"
  24676. }
  24677. },
  24678. paws: {
  24679. height: math.unit(0.72, "feet"),
  24680. name: "Paws",
  24681. image: {
  24682. source: "./media/characters/logan-grey/paws.svg"
  24683. }
  24684. },
  24685. cock: {
  24686. height: math.unit(1.45, "feet"),
  24687. name: "Cock",
  24688. image: {
  24689. source: "./media/characters/logan-grey/cock.svg"
  24690. }
  24691. },
  24692. cockAlt: {
  24693. height: math.unit(1.437, "feet"),
  24694. name: "Cock (alt)",
  24695. image: {
  24696. source: "./media/characters/logan-grey/cock-alt.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Normal",
  24703. height: math.unit(5 + 8 / 12, "feet")
  24704. },
  24705. {
  24706. name: "The 500 Foot Femboy",
  24707. height: math.unit(500, "feet"),
  24708. default: true
  24709. },
  24710. {
  24711. name: "Megmacro",
  24712. height: math.unit(20, "miles")
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(8 + 2 / 12, "feet"),
  24721. weight: math.unit(275, "lb"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/draganta/front.svg",
  24725. extra: 1177 / 1135,
  24726. bottom: 33.46 / 1212.1
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(8 + 6 / 12, "feet"),
  24734. default: true
  24735. },
  24736. {
  24737. name: "Macro",
  24738. height: math.unit(150, "feet")
  24739. },
  24740. {
  24741. name: "Megamacro",
  24742. height: math.unit(1000, "miles")
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24748. {
  24749. front: {
  24750. height: math.unit(1.72, "m"),
  24751. weight: math.unit(80, "lb"),
  24752. name: "Front",
  24753. image: {
  24754. source: "./media/characters/voski/front.svg",
  24755. extra: 2076.22 / 2022.4,
  24756. bottom: 102.7 / 2177.3866
  24757. }
  24758. },
  24759. frontFlaccid: {
  24760. height: math.unit(1.72, "m"),
  24761. weight: math.unit(80, "lb"),
  24762. name: "Front (Flaccid)",
  24763. image: {
  24764. source: "./media/characters/voski/front-flaccid.svg",
  24765. extra: 2076.22 / 2022.4,
  24766. bottom: 102.7 / 2177.3866
  24767. }
  24768. },
  24769. frontErect: {
  24770. height: math.unit(1.72, "m"),
  24771. weight: math.unit(80, "lb"),
  24772. name: "Front (Erect)",
  24773. image: {
  24774. source: "./media/characters/voski/front-erect.svg",
  24775. extra: 2076.22 / 2022.4,
  24776. bottom: 102.7 / 2177.3866
  24777. }
  24778. },
  24779. back: {
  24780. height: math.unit(1.72, "m"),
  24781. weight: math.unit(80, "lb"),
  24782. name: "Back",
  24783. image: {
  24784. source: "./media/characters/voski/back.svg",
  24785. extra: 2104 / 2051,
  24786. bottom: 10.45 / 2113.63
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(1.72, "m")
  24794. },
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(55, "m"),
  24798. default: true
  24799. },
  24800. {
  24801. name: "Macro+",
  24802. height: math.unit(300, "m")
  24803. },
  24804. {
  24805. name: "Macro++",
  24806. height: math.unit(700, "m")
  24807. },
  24808. {
  24809. name: "Macro+++",
  24810. height: math.unit(4500, "m")
  24811. },
  24812. {
  24813. name: "Macro++++",
  24814. height: math.unit(45, "km")
  24815. },
  24816. {
  24817. name: "Macro+++++",
  24818. height: math.unit(1220, "km")
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(2.3, "m"),
  24827. weight: math.unit(304, "kg"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/icowom-lee/front.svg",
  24831. extra: 985 / 955,
  24832. bottom: 25.4 / 1012
  24833. }
  24834. },
  24835. fronttentacles: {
  24836. height: math.unit(2.3, "m"),
  24837. weight: math.unit(304, "kg"),
  24838. name: "Front-tentacles",
  24839. image: {
  24840. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24841. extra: 985 / 955,
  24842. bottom: 25.4 / 1012
  24843. }
  24844. },
  24845. back: {
  24846. height: math.unit(2.3, "m"),
  24847. weight: math.unit(304, "kg"),
  24848. name: "Back",
  24849. image: {
  24850. source: "./media/characters/icowom-lee/back.svg",
  24851. extra: 975 / 954,
  24852. bottom: 9.5 / 985
  24853. }
  24854. },
  24855. backtentacles: {
  24856. height: math.unit(2.3, "m"),
  24857. weight: math.unit(304, "kg"),
  24858. name: "Back-tentacles",
  24859. image: {
  24860. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24861. extra: 975 / 954,
  24862. bottom: 9.5 / 985
  24863. }
  24864. },
  24865. frontDressed: {
  24866. height: math.unit(2.3, "m"),
  24867. weight: math.unit(304, "kg"),
  24868. name: "Front (Dressed)",
  24869. image: {
  24870. source: "./media/characters/icowom-lee/front-dressed.svg",
  24871. extra: 3076 / 2933,
  24872. bottom: 51.4 / 3125.1889
  24873. }
  24874. },
  24875. rump: {
  24876. height: math.unit(0.776, "meters"),
  24877. name: "Rump",
  24878. image: {
  24879. source: "./media/characters/icowom-lee/rump.svg"
  24880. }
  24881. },
  24882. genitals: {
  24883. height: math.unit(0.78, "meters"),
  24884. name: "Genitals",
  24885. image: {
  24886. source: "./media/characters/icowom-lee/genitals.svg"
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(2.3, "meters"),
  24894. default: true
  24895. },
  24896. {
  24897. name: "Macro",
  24898. height: math.unit(94, "meters"),
  24899. default: true
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(22, "meters"),
  24908. weight: math.unit(21000, "kg"),
  24909. name: "Front",
  24910. image: {
  24911. source: "./media/characters/shock-diamond/front.svg",
  24912. extra: 2204 / 2053,
  24913. bottom: 65 / 2239.47
  24914. }
  24915. },
  24916. frontNude: {
  24917. height: math.unit(22, "meters"),
  24918. weight: math.unit(21000, "kg"),
  24919. name: "Front (Nude)",
  24920. image: {
  24921. source: "./media/characters/shock-diamond/front-nude.svg",
  24922. extra: 2514 / 2285,
  24923. bottom: 13 / 2527.56
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(3, "meters")
  24931. },
  24932. {
  24933. name: "Macro",
  24934. height: math.unit(22, "meters"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(5 + 4/12, "feet"),
  24944. weight: math.unit(125, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/rory/front.svg",
  24948. extra: 1790/1681,
  24949. bottom: 66/1856
  24950. },
  24951. form: "normal",
  24952. default: true
  24953. },
  24954. back: {
  24955. height: math.unit(5 + 4/12, "feet"),
  24956. weight: math.unit(125, "lb"),
  24957. name: "Back",
  24958. image: {
  24959. source: "./media/characters/rory/back.svg",
  24960. extra: 1805/1690,
  24961. bottom: 56/1861
  24962. },
  24963. form: "normal"
  24964. },
  24965. frontDressed: {
  24966. height: math.unit(5 + 4/12, "feet"),
  24967. weight: math.unit(125, "lb"),
  24968. name: "Front (Dressed)",
  24969. image: {
  24970. source: "./media/characters/rory/front-dressed.svg",
  24971. extra: 1790/1681,
  24972. bottom: 66/1856
  24973. },
  24974. form: "normal"
  24975. },
  24976. backDressed: {
  24977. height: math.unit(5 + 4/12, "feet"),
  24978. weight: math.unit(125, "lb"),
  24979. name: "Back (Dressed)",
  24980. image: {
  24981. source: "./media/characters/rory/back-dressed.svg",
  24982. extra: 1805/1690,
  24983. bottom: 56/1861
  24984. },
  24985. form: "normal"
  24986. },
  24987. frontNsfw: {
  24988. height: math.unit(5 + 4/12, "feet"),
  24989. weight: math.unit(125, "lb"),
  24990. name: "Front (NSFW)",
  24991. image: {
  24992. source: "./media/characters/rory/front-nsfw.svg",
  24993. extra: 1790/1681,
  24994. bottom: 66/1856
  24995. },
  24996. form: "normal"
  24997. },
  24998. backNsfw: {
  24999. height: math.unit(5 + 4/12, "feet"),
  25000. weight: math.unit(125, "lb"),
  25001. name: "Back (NSFW)",
  25002. image: {
  25003. source: "./media/characters/rory/back-nsfw.svg",
  25004. extra: 1805/1690,
  25005. bottom: 56/1861
  25006. },
  25007. form: "normal"
  25008. },
  25009. dick: {
  25010. height: math.unit(0.8, "feet"),
  25011. name: "Dick",
  25012. image: {
  25013. source: "./media/characters/rory/dick.svg"
  25014. },
  25015. form: "normal"
  25016. },
  25017. thicc_front: {
  25018. height: math.unit(5 + 4/12, "feet"),
  25019. weight: math.unit(195, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/rory/thicc-front.svg",
  25023. extra: 1220/1100,
  25024. bottom: 103/1323
  25025. },
  25026. form: "thicc",
  25027. default: true
  25028. },
  25029. thicc_back: {
  25030. height: math.unit(5 + 4/12, "feet"),
  25031. weight: math.unit(195, "lb"),
  25032. name: "Back",
  25033. image: {
  25034. source: "./media/characters/rory/thicc-back.svg",
  25035. extra: 1166/1086,
  25036. bottom: 35/1201
  25037. },
  25038. form: "thicc"
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Micro",
  25044. height: math.unit(3, "inches"),
  25045. allForms: true
  25046. },
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(5 + 4/12, "feet"),
  25050. allForms: true,
  25051. default: true
  25052. },
  25053. {
  25054. name: "Macro",
  25055. height: math.unit(90, "feet"),
  25056. allForms: true
  25057. },
  25058. {
  25059. name: "Supercharged",
  25060. height: math.unit(270, "feet"),
  25061. allForms: true
  25062. },
  25063. ],
  25064. {
  25065. "normal": {
  25066. name: "Normal",
  25067. default: true
  25068. },
  25069. "thicc": {
  25070. name: "Thicc",
  25071. },
  25072. }
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(5 + 9 / 12, "feet"),
  25079. weight: math.unit(190, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/sprisk/front.svg",
  25083. extra: 1225 / 1180,
  25084. bottom: 42.7 / 1266.4
  25085. }
  25086. },
  25087. frontNsfw: {
  25088. height: math.unit(5 + 9 / 12, "feet"),
  25089. weight: math.unit(190, "lb"),
  25090. name: "Front (NSFW)",
  25091. image: {
  25092. source: "./media/characters/sprisk/front-nsfw.svg",
  25093. extra: 1225 / 1180,
  25094. bottom: 42.7 / 1266.4
  25095. }
  25096. },
  25097. back: {
  25098. height: math.unit(5 + 9 / 12, "feet"),
  25099. weight: math.unit(190, "lb"),
  25100. name: "Back",
  25101. image: {
  25102. source: "./media/characters/sprisk/back.svg",
  25103. extra: 1247 / 1200,
  25104. bottom: 5.6 / 1253.04
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Tiny",
  25111. height: math.unit(2, "inches")
  25112. },
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(5 + 9 / 12, "feet"),
  25116. default: true
  25117. },
  25118. {
  25119. name: "Mini Macro",
  25120. height: math.unit(18, "feet")
  25121. },
  25122. {
  25123. name: "Macro",
  25124. height: math.unit(100, "feet")
  25125. },
  25126. {
  25127. name: "MACRO",
  25128. height: math.unit(50, "miles")
  25129. },
  25130. {
  25131. name: "M A C R O",
  25132. height: math.unit(300, "miles")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25138. {
  25139. side: {
  25140. height: math.unit(15.6, "meters"),
  25141. weight: math.unit(700000, "kg"),
  25142. name: "Side",
  25143. image: {
  25144. source: "./media/characters/bunsen/side.svg",
  25145. extra: 1644 / 358
  25146. }
  25147. },
  25148. foot: {
  25149. height: math.unit(1.611 * 1644 / 358, "meter"),
  25150. name: "Foot",
  25151. image: {
  25152. source: "./media/characters/bunsen/foot.svg"
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Small",
  25159. height: math.unit(10, "feet")
  25160. },
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(15.6, "meters"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(4 + 11 / 12, "feet"),
  25173. weight: math.unit(140, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/sesh/front.svg",
  25177. extra: 3420 / 3231,
  25178. bottom: 72 / 3949.5
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(4 + 11 / 12, "feet")
  25186. },
  25187. {
  25188. name: "Grown",
  25189. height: math.unit(15, "feet"),
  25190. default: true
  25191. },
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(1500, "feet")
  25195. },
  25196. {
  25197. name: "Megamacro",
  25198. height: math.unit(30, "miles")
  25199. },
  25200. {
  25201. name: "Continental",
  25202. height: math.unit(3000, "miles")
  25203. },
  25204. {
  25205. name: "Gravity Mass",
  25206. height: math.unit(300000, "miles")
  25207. },
  25208. {
  25209. name: "Planet Buster",
  25210. height: math.unit(30000000, "miles")
  25211. },
  25212. {
  25213. name: "Big",
  25214. height: math.unit(3000000000, "miles")
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(9, "feet"),
  25223. weight: math.unit(350, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/pepper/front.svg",
  25227. extra: 1448 / 1312,
  25228. bottom: 9.4 / 1457.88
  25229. }
  25230. },
  25231. back: {
  25232. height: math.unit(9, "feet"),
  25233. weight: math.unit(350, "lb"),
  25234. name: "Back",
  25235. image: {
  25236. source: "./media/characters/pepper/back.svg",
  25237. extra: 1423 / 1300,
  25238. bottom: 4.6 / 1429
  25239. }
  25240. },
  25241. maw: {
  25242. height: math.unit(0.932, "feet"),
  25243. name: "Maw",
  25244. image: {
  25245. source: "./media/characters/pepper/maw.svg"
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(9, "feet"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(6, "feet"),
  25262. weight: math.unit(150, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/maelstrom/front.svg",
  25266. extra: 2100 / 1883,
  25267. bottom: 94 / 2196.7
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Less Kaiju",
  25274. height: math.unit(200, "feet")
  25275. },
  25276. {
  25277. name: "Kaiju",
  25278. height: math.unit(400, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Kaiju-er",
  25283. height: math.unit(600, "feet")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(6 + 5 / 12, "feet"),
  25292. weight: math.unit(180, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/lexir/front.svg",
  25296. extra: 180 / 172,
  25297. bottom: 12 / 192
  25298. }
  25299. },
  25300. back: {
  25301. height: math.unit(6 + 5 / 12, "feet"),
  25302. weight: math.unit(180, "lb"),
  25303. name: "Back",
  25304. image: {
  25305. source: "./media/characters/lexir/back.svg",
  25306. extra: 1273/1201,
  25307. bottom: 39/1312
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Very Smal",
  25314. height: math.unit(1, "nm")
  25315. },
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(6 + 5 / 12, "feet"),
  25319. default: true
  25320. },
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(1, "mile")
  25324. },
  25325. {
  25326. name: "Megamacro",
  25327. height: math.unit(50, "miles")
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(1.5, "meters"),
  25336. weight: math.unit(100, "lb"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/maksio/front.svg",
  25340. extra: 1549 / 1531,
  25341. bottom: 123.7 / 1674.5429
  25342. }
  25343. },
  25344. back: {
  25345. height: math.unit(1.5, "meters"),
  25346. weight: math.unit(100, "lb"),
  25347. name: "Back",
  25348. image: {
  25349. source: "./media/characters/maksio/back.svg",
  25350. extra: 1541 / 1509,
  25351. bottom: 97 / 1639
  25352. }
  25353. },
  25354. hand: {
  25355. height: math.unit(0.621, "feet"),
  25356. name: "Hand",
  25357. image: {
  25358. source: "./media/characters/maksio/hand.svg"
  25359. }
  25360. },
  25361. foot: {
  25362. height: math.unit(1.611, "feet"),
  25363. name: "Foot",
  25364. image: {
  25365. source: "./media/characters/maksio/foot.svg"
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Shrunken",
  25372. height: math.unit(10, "cm")
  25373. },
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(150, "cm"),
  25377. default: true
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(100, "feet"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/erza-bear/front.svg",
  25389. extra: 2449 / 2390,
  25390. bottom: 46 / 2494
  25391. }
  25392. },
  25393. back: {
  25394. height: math.unit(100, "feet"),
  25395. name: "Back",
  25396. image: {
  25397. source: "./media/characters/erza-bear/back.svg",
  25398. extra: 2489 / 2430,
  25399. bottom: 85.4 / 2480
  25400. }
  25401. },
  25402. tail: {
  25403. height: math.unit(42, "feet"),
  25404. name: "Tail",
  25405. image: {
  25406. source: "./media/characters/erza-bear/tail.svg"
  25407. }
  25408. },
  25409. tongue: {
  25410. height: math.unit(8, "feet"),
  25411. name: "Tongue",
  25412. image: {
  25413. source: "./media/characters/erza-bear/tongue.svg"
  25414. }
  25415. },
  25416. dick: {
  25417. height: math.unit(10.5, "feet"),
  25418. name: "Dick",
  25419. image: {
  25420. source: "./media/characters/erza-bear/dick.svg"
  25421. }
  25422. },
  25423. dickVertical: {
  25424. height: math.unit(16.9, "feet"),
  25425. name: "Dick (Vertical)",
  25426. image: {
  25427. source: "./media/characters/erza-bear/dick-vertical.svg"
  25428. }
  25429. },
  25430. },
  25431. [
  25432. {
  25433. name: "Macro",
  25434. height: math.unit(100, "feet"),
  25435. default: true
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25441. {
  25442. front: {
  25443. height: math.unit(172, "cm"),
  25444. weight: math.unit(73, "kg"),
  25445. name: "Front",
  25446. image: {
  25447. source: "./media/characters/violet-flor/front.svg",
  25448. extra: 1530 / 1442,
  25449. bottom: 61.9 / 1588.8
  25450. }
  25451. },
  25452. back: {
  25453. height: math.unit(180, "cm"),
  25454. weight: math.unit(73, "kg"),
  25455. name: "Back",
  25456. image: {
  25457. source: "./media/characters/violet-flor/back.svg",
  25458. extra: 1692 / 1630,
  25459. bottom: 20 / 1712
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(172, "cm"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(6, "feet"),
  25476. weight: math.unit(220, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/lynn-rhea/front.svg",
  25480. extra: 310 / 273
  25481. }
  25482. },
  25483. back: {
  25484. height: math.unit(6, "feet"),
  25485. weight: math.unit(220, "lb"),
  25486. name: "Back",
  25487. image: {
  25488. source: "./media/characters/lynn-rhea/back.svg",
  25489. extra: 310 / 273
  25490. }
  25491. },
  25492. dicks: {
  25493. height: math.unit(0.9, "feet"),
  25494. name: "Dicks",
  25495. image: {
  25496. source: "./media/characters/lynn-rhea/dicks.svg"
  25497. }
  25498. },
  25499. slit: {
  25500. height: math.unit(0.4, "feet"),
  25501. name: "Slit",
  25502. image: {
  25503. source: "./media/characters/lynn-rhea/slit.svg"
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Micro",
  25510. height: math.unit(1, "inch")
  25511. },
  25512. {
  25513. name: "Macro",
  25514. height: math.unit(60, "feet"),
  25515. default: true
  25516. },
  25517. {
  25518. name: "Megamacro",
  25519. height: math.unit(2, "miles")
  25520. },
  25521. {
  25522. name: "Gigamacro",
  25523. height: math.unit(3, "earths")
  25524. },
  25525. {
  25526. name: "Galactic",
  25527. height: math.unit(0.8, "galaxies")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25533. {
  25534. front: {
  25535. height: math.unit(1600, "feet"),
  25536. weight: math.unit(85758785169, "kg"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/valathos/front.svg",
  25540. extra: 1451 / 1339
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Macro",
  25547. height: math.unit(1600, "feet"),
  25548. default: true
  25549. },
  25550. ]
  25551. ))
  25552. characterMakers.push(() => makeCharacter(
  25553. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25554. {
  25555. front: {
  25556. height: math.unit(7 + 5 / 12, "feet"),
  25557. weight: math.unit(300, "lb"),
  25558. name: "Front",
  25559. image: {
  25560. source: "./media/characters/azula/front.svg",
  25561. extra: 3208 / 2880,
  25562. bottom: 80.2 / 3277
  25563. }
  25564. },
  25565. back: {
  25566. height: math.unit(7 + 5 / 12, "feet"),
  25567. weight: math.unit(300, "lb"),
  25568. name: "Back",
  25569. image: {
  25570. source: "./media/characters/azula/back.svg",
  25571. extra: 3169 / 2822,
  25572. bottom: 150.6 / 3321
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Normal",
  25579. height: math.unit(7 + 5 / 12, "feet"),
  25580. default: true
  25581. },
  25582. {
  25583. name: "Big",
  25584. height: math.unit(20, "feet")
  25585. },
  25586. ]
  25587. ))
  25588. characterMakers.push(() => makeCharacter(
  25589. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25590. {
  25591. front: {
  25592. height: math.unit(5 + 1 / 12, "feet"),
  25593. weight: math.unit(110, "lb"),
  25594. name: "Front",
  25595. image: {
  25596. source: "./media/characters/rupert/front.svg",
  25597. extra: 1549 / 1495,
  25598. bottom: 54.2 / 1604.4
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(5 + 1 / 12, "feet"),
  25606. default: true
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25612. {
  25613. front: {
  25614. height: math.unit(8 + 4 / 12, "feet"),
  25615. weight: math.unit(350, "lb"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/sheera-castellar/front.svg",
  25619. extra: 1957 / 1894,
  25620. bottom: 26.97 / 1975.017
  25621. }
  25622. },
  25623. side: {
  25624. height: math.unit(8 + 4 / 12, "feet"),
  25625. weight: math.unit(350, "lb"),
  25626. name: "Side",
  25627. image: {
  25628. source: "./media/characters/sheera-castellar/side.svg",
  25629. extra: 1957 / 1894
  25630. }
  25631. },
  25632. back: {
  25633. height: math.unit(8 + 4 / 12, "feet"),
  25634. weight: math.unit(350, "lb"),
  25635. name: "Back",
  25636. image: {
  25637. source: "./media/characters/sheera-castellar/back.svg",
  25638. extra: 1957 / 1894
  25639. }
  25640. },
  25641. angled: {
  25642. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25643. weight: math.unit(350, "lb"),
  25644. name: "Angled",
  25645. image: {
  25646. source: "./media/characters/sheera-castellar/angled.svg",
  25647. extra: 1807 / 1707,
  25648. bottom: 68 / 1875
  25649. }
  25650. },
  25651. genitals: {
  25652. height: math.unit(2.2, "feet"),
  25653. name: "Genitals",
  25654. image: {
  25655. source: "./media/characters/sheera-castellar/genitals.svg"
  25656. }
  25657. },
  25658. taur: {
  25659. height: math.unit(10 + 6/12, "feet"),
  25660. name: "Taur",
  25661. image: {
  25662. source: "./media/characters/sheera-castellar/taur.svg",
  25663. extra: 2017/1909,
  25664. bottom: 185/2202
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(8 + 4 / 12, "feet")
  25672. },
  25673. {
  25674. name: "Macro",
  25675. height: math.unit(150, "feet"),
  25676. default: true
  25677. },
  25678. {
  25679. name: "Macro+",
  25680. height: math.unit(800, "feet")
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25686. {
  25687. front: {
  25688. height: math.unit(6, "feet"),
  25689. weight: math.unit(150, "lb"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/jaipur/front.svg",
  25693. extra: 3860 / 3731,
  25694. bottom: 287 / 4140
  25695. }
  25696. },
  25697. back: {
  25698. height: math.unit(6, "feet"),
  25699. weight: math.unit(150, "lb"),
  25700. name: "Back",
  25701. image: {
  25702. source: "./media/characters/jaipur/back.svg",
  25703. extra: 1637/1561,
  25704. bottom: 154/1791
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(1.85, "meters"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(150, "meters")
  25717. },
  25718. {
  25719. name: "Macro+",
  25720. height: math.unit(0.5, "miles")
  25721. },
  25722. {
  25723. name: "Macro++",
  25724. height: math.unit(2.5, "miles")
  25725. },
  25726. {
  25727. name: "Macro+++",
  25728. height: math.unit(12, "miles")
  25729. },
  25730. {
  25731. name: "Macro++++",
  25732. height: math.unit(120, "miles")
  25733. },
  25734. {
  25735. name: "Macro+++++",
  25736. height: math.unit(1200, "miles")
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(6, "feet"),
  25745. weight: math.unit(150, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/sheila-wolf/front.svg",
  25749. extra: 1931 / 1808,
  25750. bottom: 29.5 / 1960
  25751. }
  25752. },
  25753. dick: {
  25754. height: math.unit(1.464, "feet"),
  25755. name: "Dick",
  25756. image: {
  25757. source: "./media/characters/sheila-wolf/dick.svg"
  25758. }
  25759. },
  25760. muzzle: {
  25761. height: math.unit(0.513, "feet"),
  25762. name: "Muzzle",
  25763. image: {
  25764. source: "./media/characters/sheila-wolf/muzzle.svg"
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Macro",
  25771. height: math.unit(70, "feet"),
  25772. default: true
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(32, "meters"),
  25781. weight: math.unit(300000, "kg"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/almor/front.svg",
  25785. extra: 1408 / 1322,
  25786. bottom: 94.6 / 1506.5
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Macro",
  25793. height: math.unit(32, "meters"),
  25794. default: true
  25795. },
  25796. ]
  25797. ))
  25798. characterMakers.push(() => makeCharacter(
  25799. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25800. {
  25801. front: {
  25802. height: math.unit(7, "feet"),
  25803. weight: math.unit(200, "lb"),
  25804. name: "Front",
  25805. image: {
  25806. source: "./media/characters/silver/front.svg",
  25807. extra: 472.1 / 450.5,
  25808. bottom: 26.5 / 499.424
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Normal",
  25815. height: math.unit(7, "feet"),
  25816. default: true
  25817. },
  25818. {
  25819. name: "Macro",
  25820. height: math.unit(800, "feet")
  25821. },
  25822. {
  25823. name: "Megamacro",
  25824. height: math.unit(250, "miles")
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(6, "feet"),
  25833. weight: math.unit(150, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/pliskin/front.svg",
  25837. extra: 1469 / 1359,
  25838. bottom: 70 / 1540
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Micro",
  25845. height: math.unit(3, "inches")
  25846. },
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(5 + 11 / 12, "feet"),
  25850. default: true
  25851. },
  25852. {
  25853. name: "Macro",
  25854. height: math.unit(120, "feet")
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(6, "feet"),
  25863. weight: math.unit(150, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/sammy/front.svg",
  25867. extra: 1193 / 1089,
  25868. bottom: 30.5 / 1226
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Macro",
  25875. height: math.unit(1700, "feet"),
  25876. default: true
  25877. },
  25878. {
  25879. name: "Examacro",
  25880. height: math.unit(2.5e9, "lightyears")
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(21, "meters"),
  25889. weight: math.unit(12, "tonnes"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/kuru/front.svg",
  25893. extra: 4301 / 3785,
  25894. bottom: 371.3 / 4691
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Macro",
  25901. height: math.unit(21, "meters"),
  25902. default: true
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(23, "meters"),
  25911. weight: math.unit(12.2, "tonnes"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/rakka/front.svg",
  25915. extra: 4670 / 4169,
  25916. bottom: 301 / 4968.7
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Macro",
  25923. height: math.unit(23, "meters"),
  25924. default: true
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(6, "feet"),
  25933. weight: math.unit(150, "lb"),
  25934. name: "Front",
  25935. image: {
  25936. source: "./media/characters/rhys-feline/front.svg",
  25937. extra: 2488 / 2308,
  25938. bottom: 35.67 / 2519.19
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Really Small",
  25945. height: math.unit(1, "nm")
  25946. },
  25947. {
  25948. name: "Micro",
  25949. height: math.unit(4, "inches")
  25950. },
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(4 + 10 / 12, "feet"),
  25954. default: true
  25955. },
  25956. {
  25957. name: "Macro",
  25958. height: math.unit(100, "feet")
  25959. },
  25960. {
  25961. name: "Megamacto",
  25962. height: math.unit(50, "miles")
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25968. {
  25969. side: {
  25970. height: math.unit(30, "feet"),
  25971. weight: math.unit(35000, "kg"),
  25972. name: "Side",
  25973. image: {
  25974. source: "./media/characters/alydar/side.svg",
  25975. extra: 234 / 222,
  25976. bottom: 6.5 / 241
  25977. }
  25978. },
  25979. front: {
  25980. height: math.unit(30, "feet"),
  25981. weight: math.unit(35000, "kg"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/alydar/front.svg",
  25985. extra: 223.37 / 210.2,
  25986. bottom: 22.3 / 246.76
  25987. }
  25988. },
  25989. top: {
  25990. height: math.unit(64.54, "feet"),
  25991. weight: math.unit(35000, "kg"),
  25992. name: "Top",
  25993. image: {
  25994. source: "./media/characters/alydar/top.svg"
  25995. }
  25996. },
  25997. anthro: {
  25998. height: math.unit(30, "feet"),
  25999. weight: math.unit(9000, "kg"),
  26000. name: "Anthro",
  26001. image: {
  26002. source: "./media/characters/alydar/anthro.svg",
  26003. extra: 432 / 421,
  26004. bottom: 7.18 / 440
  26005. }
  26006. },
  26007. maw: {
  26008. height: math.unit(11.693, "feet"),
  26009. name: "Maw",
  26010. image: {
  26011. source: "./media/characters/alydar/maw.svg"
  26012. }
  26013. },
  26014. head: {
  26015. height: math.unit(11.693, "feet"),
  26016. name: "Head",
  26017. image: {
  26018. source: "./media/characters/alydar/head.svg"
  26019. }
  26020. },
  26021. headAlt: {
  26022. height: math.unit(12.861, "feet"),
  26023. name: "Head (Alt)",
  26024. image: {
  26025. source: "./media/characters/alydar/head-alt.svg"
  26026. }
  26027. },
  26028. wing: {
  26029. height: math.unit(20.712, "feet"),
  26030. name: "Wing",
  26031. image: {
  26032. source: "./media/characters/alydar/wing.svg"
  26033. }
  26034. },
  26035. wingFeather: {
  26036. height: math.unit(9.662, "feet"),
  26037. name: "Wing Feather",
  26038. image: {
  26039. source: "./media/characters/alydar/wing-feather.svg"
  26040. }
  26041. },
  26042. countourFeather: {
  26043. height: math.unit(4.154, "feet"),
  26044. name: "Contour Feather",
  26045. image: {
  26046. source: "./media/characters/alydar/contour-feather.svg"
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Diplomatic",
  26053. height: math.unit(13, "feet"),
  26054. default: true
  26055. },
  26056. {
  26057. name: "Small",
  26058. height: math.unit(30, "feet")
  26059. },
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(95, "feet"),
  26063. default: true
  26064. },
  26065. {
  26066. name: "Large",
  26067. height: math.unit(285, "feet")
  26068. },
  26069. {
  26070. name: "Incomprehensible",
  26071. height: math.unit(450, "megameters")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26077. {
  26078. side: {
  26079. height: math.unit(11, "feet"),
  26080. weight: math.unit(1750, "kg"),
  26081. name: "Side",
  26082. image: {
  26083. source: "./media/characters/selicia/side.svg",
  26084. extra: 440 / 396,
  26085. bottom: 24.8 / 465.979
  26086. }
  26087. },
  26088. maw: {
  26089. height: math.unit(4.665, "feet"),
  26090. name: "Maw",
  26091. image: {
  26092. source: "./media/characters/selicia/maw.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(11, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26106. {
  26107. side: {
  26108. height: math.unit(2 + 6 / 12, "feet"),
  26109. weight: math.unit(30, "lb"),
  26110. name: "Side",
  26111. image: {
  26112. source: "./media/characters/layla/side.svg",
  26113. extra: 244 / 188,
  26114. bottom: 18.2 / 262.1
  26115. }
  26116. },
  26117. back: {
  26118. height: math.unit(2 + 6 / 12, "feet"),
  26119. weight: math.unit(30, "lb"),
  26120. name: "Back",
  26121. image: {
  26122. source: "./media/characters/layla/back.svg",
  26123. extra: 308 / 241.5,
  26124. bottom: 8.9 / 316.8
  26125. }
  26126. },
  26127. cumming: {
  26128. height: math.unit(2 + 6 / 12, "feet"),
  26129. weight: math.unit(30, "lb"),
  26130. name: "Cumming",
  26131. image: {
  26132. source: "./media/characters/layla/cumming.svg",
  26133. extra: 342 / 279,
  26134. bottom: 595 / 938
  26135. }
  26136. },
  26137. dickFlaccid: {
  26138. height: math.unit(2.595, "feet"),
  26139. name: "Flaccid Genitals",
  26140. image: {
  26141. source: "./media/characters/layla/dick-flaccid.svg"
  26142. }
  26143. },
  26144. dickErect: {
  26145. height: math.unit(2.359, "feet"),
  26146. name: "Erect Genitals",
  26147. image: {
  26148. source: "./media/characters/layla/dick-erect.svg"
  26149. }
  26150. },
  26151. dragon: {
  26152. height: math.unit(40, "feet"),
  26153. name: "Dragon",
  26154. image: {
  26155. source: "./media/characters/layla/dragon.svg",
  26156. extra: 610/535,
  26157. bottom: 367/977
  26158. }
  26159. },
  26160. taur: {
  26161. height: math.unit(30, "feet"),
  26162. name: "Taur",
  26163. image: {
  26164. source: "./media/characters/layla/taur.svg",
  26165. extra: 1268/1199,
  26166. bottom: 112/1380
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Micro",
  26173. height: math.unit(1, "inch")
  26174. },
  26175. {
  26176. name: "Small",
  26177. height: math.unit(1, "foot")
  26178. },
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(2 + 6 / 12, "feet"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(200, "feet")
  26187. },
  26188. {
  26189. name: "Megamacro",
  26190. height: math.unit(1000, "miles")
  26191. },
  26192. {
  26193. name: "Planetary",
  26194. height: math.unit(8000, "miles")
  26195. },
  26196. {
  26197. name: "True Layla",
  26198. height: math.unit(200000 * 7, "multiverses")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26204. {
  26205. back: {
  26206. height: math.unit(10.5, "feet"),
  26207. weight: math.unit(800, "lb"),
  26208. name: "Back",
  26209. image: {
  26210. source: "./media/characters/knox/back.svg",
  26211. extra: 1486 / 1089,
  26212. bottom: 107 / 1601.4
  26213. }
  26214. },
  26215. side: {
  26216. height: math.unit(10.5, "feet"),
  26217. weight: math.unit(800, "lb"),
  26218. name: "Side",
  26219. image: {
  26220. source: "./media/characters/knox/side.svg",
  26221. extra: 244 / 218,
  26222. bottom: 14 / 260
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Compact",
  26229. height: math.unit(10.5, "feet"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Dynamax",
  26234. height: math.unit(210, "feet")
  26235. },
  26236. {
  26237. name: "Full Macro",
  26238. height: math.unit(850, "feet")
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26244. {
  26245. front: {
  26246. height: math.unit(28, "feet"),
  26247. weight: math.unit(10500, "lb"),
  26248. name: "Front",
  26249. image: {
  26250. source: "./media/characters/kayda/front.svg",
  26251. extra: 1536 / 1428,
  26252. bottom: 68.7 / 1603
  26253. }
  26254. },
  26255. back: {
  26256. height: math.unit(28, "feet"),
  26257. weight: math.unit(10500, "lb"),
  26258. name: "Back",
  26259. image: {
  26260. source: "./media/characters/kayda/back.svg",
  26261. extra: 1557 / 1464,
  26262. bottom: 39.5 / 1597.49
  26263. }
  26264. },
  26265. dick: {
  26266. height: math.unit(3.858, "feet"),
  26267. name: "Dick",
  26268. image: {
  26269. source: "./media/characters/kayda/dick.svg"
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Macro",
  26276. height: math.unit(28, "feet"),
  26277. default: true
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26283. {
  26284. front: {
  26285. height: math.unit(10 + 11 / 12, "feet"),
  26286. weight: math.unit(1400, "lb"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/brian/front.svg",
  26290. extra: 737 / 692,
  26291. bottom: 55.4 / 785
  26292. }
  26293. },
  26294. },
  26295. [
  26296. {
  26297. name: "Normal",
  26298. height: math.unit(10 + 11 / 12, "feet"),
  26299. default: true
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26305. {
  26306. front: {
  26307. height: math.unit(5 + 8 / 12, "feet"),
  26308. weight: math.unit(140, "lb"),
  26309. name: "Front",
  26310. image: {
  26311. source: "./media/characters/khemri/front.svg",
  26312. extra: 4780 / 4059,
  26313. bottom: 80.1 / 4859.25
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Micro",
  26320. height: math.unit(6, "inches")
  26321. },
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(5 + 8 / 12, "feet"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26331. {
  26332. front: {
  26333. height: math.unit(13, "feet"),
  26334. weight: math.unit(1700, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/felix-braveheart/front.svg",
  26338. extra: 1222 / 1157,
  26339. bottom: 53.2 / 1280
  26340. }
  26341. },
  26342. back: {
  26343. height: math.unit(13, "feet"),
  26344. weight: math.unit(1700, "lb"),
  26345. name: "Back",
  26346. image: {
  26347. source: "./media/characters/felix-braveheart/back.svg",
  26348. extra: 1277 / 1203,
  26349. bottom: 50.2 / 1327
  26350. }
  26351. },
  26352. feral: {
  26353. height: math.unit(6, "feet"),
  26354. weight: math.unit(400, "lb"),
  26355. name: "Feral",
  26356. image: {
  26357. source: "./media/characters/felix-braveheart/feral.svg",
  26358. extra: 682 / 625,
  26359. bottom: 6.9 / 688
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(13, "feet"),
  26367. default: true
  26368. },
  26369. ]
  26370. ))
  26371. characterMakers.push(() => makeCharacter(
  26372. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26373. {
  26374. side: {
  26375. height: math.unit(5 + 11 / 12, "feet"),
  26376. weight: math.unit(1400, "lb"),
  26377. name: "Side",
  26378. image: {
  26379. source: "./media/characters/shadow-blade/side.svg",
  26380. extra: 1726 / 1267,
  26381. bottom: 58.4 / 1785
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(5 + 11 / 12, "feet"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(1 + 6 / 12, "feet"),
  26398. weight: math.unit(25, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/karla-halldor/front.svg",
  26402. extra: 1459 / 1383,
  26403. bottom: 12 / 1472
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(1 + 6 / 12, "feet"),
  26411. default: true
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(6 + 2 / 12, "feet"),
  26420. weight: math.unit(160, "lb"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/ariam/front.svg",
  26424. extra: 1073/976,
  26425. bottom: 52/1125
  26426. }
  26427. },
  26428. back: {
  26429. height: math.unit(6 + 2/12, "feet"),
  26430. weight: math.unit(160, "lb"),
  26431. name: "Back",
  26432. image: {
  26433. source: "./media/characters/ariam/back.svg",
  26434. extra: 1103/1023,
  26435. bottom: 9/1112
  26436. }
  26437. },
  26438. dressed: {
  26439. height: math.unit(6 + 2/12, "feet"),
  26440. weight: math.unit(160, "lb"),
  26441. name: "Dressed",
  26442. image: {
  26443. source: "./media/characters/ariam/dressed.svg",
  26444. extra: 1099/1009,
  26445. bottom: 25/1124
  26446. }
  26447. },
  26448. squatting: {
  26449. height: math.unit(4.1, "feet"),
  26450. weight: math.unit(160, "lb"),
  26451. name: "Squatting",
  26452. image: {
  26453. source: "./media/characters/ariam/squatting.svg",
  26454. extra: 2617 / 2112,
  26455. bottom: 61.2 / 2681,
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Normal",
  26462. height: math.unit(6 + 2 / 12, "feet"),
  26463. default: true
  26464. },
  26465. {
  26466. name: "Normal+",
  26467. height: math.unit(4, "meters")
  26468. },
  26469. {
  26470. name: "Macro",
  26471. height: math.unit(50, "meters")
  26472. },
  26473. {
  26474. name: "Macro+",
  26475. height: math.unit(100, "meters")
  26476. },
  26477. {
  26478. name: "Megamacro",
  26479. height: math.unit(20, "km")
  26480. },
  26481. {
  26482. name: "Caretaker",
  26483. height: math.unit(444, "megameters")
  26484. },
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26489. {
  26490. front: {
  26491. height: math.unit(1.67, "meters"),
  26492. weight: math.unit(140, "lb"),
  26493. name: "Front",
  26494. image: {
  26495. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26496. extra: 438 / 410,
  26497. bottom: 0.75 / 439
  26498. }
  26499. },
  26500. },
  26501. [
  26502. {
  26503. name: "Shrunken",
  26504. height: math.unit(7.6, "cm")
  26505. },
  26506. {
  26507. name: "Human Scale",
  26508. height: math.unit(1.67, "meters")
  26509. },
  26510. {
  26511. name: "Wolxi Scale",
  26512. height: math.unit(36.7, "meters"),
  26513. default: true
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(1.73, "meters"),
  26522. weight: math.unit(240, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/izue-two-mothers/front.svg",
  26526. extra: 469 / 437,
  26527. bottom: 1.24 / 470.6
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Shrunken",
  26534. height: math.unit(7.86, "cm")
  26535. },
  26536. {
  26537. name: "Human Scale",
  26538. height: math.unit(1.73, "meters")
  26539. },
  26540. {
  26541. name: "Wolxi Scale",
  26542. height: math.unit(38, "meters"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(1.55, "meters"),
  26552. weight: math.unit(120, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/teeku-love-shack/front.svg",
  26556. extra: 387 / 362,
  26557. bottom: 1.51 / 388
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Shrunken",
  26564. height: math.unit(7, "cm")
  26565. },
  26566. {
  26567. name: "Human Scale",
  26568. height: math.unit(1.55, "meters")
  26569. },
  26570. {
  26571. name: "Wolxi Scale",
  26572. height: math.unit(34.1, "meters"),
  26573. default: true
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(1.83, "meters"),
  26582. weight: math.unit(135, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/dejma-the-red/front.svg",
  26586. extra: 480 / 458,
  26587. bottom: 1.8 / 482
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Shrunken",
  26594. height: math.unit(8.3, "cm")
  26595. },
  26596. {
  26597. name: "Human Scale",
  26598. height: math.unit(1.83, "meters")
  26599. },
  26600. {
  26601. name: "Wolxi Scale",
  26602. height: math.unit(40, "meters"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26609. {
  26610. front: {
  26611. height: math.unit(1.78, "meters"),
  26612. weight: math.unit(65, "kg"),
  26613. name: "Front",
  26614. image: {
  26615. source: "./media/characters/aki/front.svg",
  26616. extra: 452 / 415
  26617. }
  26618. },
  26619. frontNsfw: {
  26620. height: math.unit(1.78, "meters"),
  26621. weight: math.unit(65, "kg"),
  26622. name: "Front (NSFW)",
  26623. image: {
  26624. source: "./media/characters/aki/front-nsfw.svg",
  26625. extra: 452 / 415
  26626. }
  26627. },
  26628. back: {
  26629. height: math.unit(1.78, "meters"),
  26630. weight: math.unit(65, "kg"),
  26631. name: "Back",
  26632. image: {
  26633. source: "./media/characters/aki/back.svg",
  26634. extra: 452 / 415
  26635. }
  26636. },
  26637. rump: {
  26638. height: math.unit(2.05, "feet"),
  26639. name: "Rump",
  26640. image: {
  26641. source: "./media/characters/aki/rump.svg"
  26642. }
  26643. },
  26644. dick: {
  26645. height: math.unit(0.95, "feet"),
  26646. name: "Dick",
  26647. image: {
  26648. source: "./media/characters/aki/dick.svg"
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Micro",
  26655. height: math.unit(15, "cm")
  26656. },
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(178, "cm"),
  26660. default: true
  26661. },
  26662. {
  26663. name: "Macro",
  26664. height: math.unit(214, "m")
  26665. },
  26666. {
  26667. name: "Macro+",
  26668. height: math.unit(534, "m")
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(5 + 5 / 12, "feet"),
  26677. weight: math.unit(120, "lb"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/ari/front.svg",
  26681. extra: 1550/1471,
  26682. bottom: 39/1589
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(5 + 5 / 12, "feet")
  26690. },
  26691. {
  26692. name: "Macro",
  26693. height: math.unit(100, "feet"),
  26694. default: true
  26695. },
  26696. {
  26697. name: "Megamacro",
  26698. height: math.unit(100, "miles")
  26699. },
  26700. {
  26701. name: "Gigamacro",
  26702. height: math.unit(80000, "miles")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26708. {
  26709. side: {
  26710. height: math.unit(9, "feet"),
  26711. weight: math.unit(400, "kg"),
  26712. name: "Side",
  26713. image: {
  26714. source: "./media/characters/bolt/side.svg",
  26715. extra: 1126 / 896,
  26716. bottom: 60 / 1187.3,
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Micro",
  26723. height: math.unit(5, "inches")
  26724. },
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(9, "feet"),
  26728. default: true
  26729. },
  26730. {
  26731. name: "Macro",
  26732. height: math.unit(700, "feet")
  26733. },
  26734. {
  26735. name: "Max Size",
  26736. height: math.unit(1.52e22, "yottameters")
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26742. {
  26743. front: {
  26744. height: math.unit(4.3, "meters"),
  26745. weight: math.unit(3, "tons"),
  26746. name: "Front",
  26747. image: {
  26748. source: "./media/characters/draekon-sylviar/front.svg",
  26749. extra: 2072/1512,
  26750. bottom: 74/2146
  26751. }
  26752. },
  26753. back: {
  26754. height: math.unit(4.3, "meters"),
  26755. weight: math.unit(3, "tons"),
  26756. name: "Back",
  26757. image: {
  26758. source: "./media/characters/draekon-sylviar/back.svg",
  26759. extra: 1639/1483,
  26760. bottom: 41/1680
  26761. }
  26762. },
  26763. feral: {
  26764. height: math.unit(1.15, "meters"),
  26765. weight: math.unit(3, "tons"),
  26766. name: "Feral",
  26767. image: {
  26768. source: "./media/characters/draekon-sylviar/feral.svg",
  26769. extra: 1033/395,
  26770. bottom: 130/1163
  26771. }
  26772. },
  26773. maw: {
  26774. height: math.unit(1.3, "meters"),
  26775. name: "Maw",
  26776. image: {
  26777. source: "./media/characters/draekon-sylviar/maw.svg"
  26778. }
  26779. },
  26780. mawSeparated: {
  26781. height: math.unit(1.53, "meters"),
  26782. name: "Separated Maw",
  26783. image: {
  26784. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26785. }
  26786. },
  26787. tail: {
  26788. height: math.unit(1.15, "meters"),
  26789. name: "Tail",
  26790. image: {
  26791. source: "./media/characters/draekon-sylviar/tail.svg"
  26792. }
  26793. },
  26794. tailDick: {
  26795. height: math.unit(1.15, "meters"),
  26796. name: "Tail (Dick)",
  26797. image: {
  26798. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26799. }
  26800. },
  26801. tailDickSeparated: {
  26802. height: math.unit(1.19, "meters"),
  26803. name: "Tail (Separated Dick)",
  26804. image: {
  26805. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26806. }
  26807. },
  26808. slit: {
  26809. height: math.unit(1, "meters"),
  26810. name: "Slit",
  26811. image: {
  26812. source: "./media/characters/draekon-sylviar/slit.svg"
  26813. }
  26814. },
  26815. dick: {
  26816. height: math.unit(1.15, "meters"),
  26817. name: "Dick",
  26818. image: {
  26819. source: "./media/characters/draekon-sylviar/dick.svg"
  26820. }
  26821. },
  26822. dickSeparated: {
  26823. height: math.unit(1.1, "meters"),
  26824. name: "Separated Dick",
  26825. image: {
  26826. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26827. }
  26828. },
  26829. sheath: {
  26830. height: math.unit(1.15, "meters"),
  26831. name: "Sheath",
  26832. image: {
  26833. source: "./media/characters/draekon-sylviar/sheath.svg"
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Small",
  26840. height: math.unit(4.53 / 2, "meters"),
  26841. default: true
  26842. },
  26843. {
  26844. name: "Normal",
  26845. height: math.unit(4.53, "meters"),
  26846. default: true
  26847. },
  26848. {
  26849. name: "Large",
  26850. height: math.unit(4.53 * 2, "meters"),
  26851. },
  26852. ]
  26853. ))
  26854. characterMakers.push(() => makeCharacter(
  26855. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26856. {
  26857. front: {
  26858. height: math.unit(6 + 2 / 12, "feet"),
  26859. weight: math.unit(180, "lb"),
  26860. name: "Front",
  26861. image: {
  26862. source: "./media/characters/brawler/front.svg",
  26863. extra: 3301 / 3027,
  26864. bottom: 138 / 3439
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Normal",
  26871. height: math.unit(6 + 2 / 12, "feet"),
  26872. default: true
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26878. {
  26879. front: {
  26880. height: math.unit(11, "feet"),
  26881. weight: math.unit(1000, "lb"),
  26882. name: "Front",
  26883. image: {
  26884. source: "./media/characters/alex/front.svg",
  26885. bottom: 44.5 / 620
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Micro",
  26892. height: math.unit(5, "inches")
  26893. },
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(11, "feet"),
  26897. default: true
  26898. },
  26899. {
  26900. name: "Macro",
  26901. height: math.unit(9.5e9, "feet")
  26902. },
  26903. {
  26904. name: "Max Size",
  26905. height: math.unit(1.4e283, "yottameters")
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26911. {
  26912. female: {
  26913. height: math.unit(29.9, "m"),
  26914. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26915. name: "Female",
  26916. image: {
  26917. source: "./media/characters/zenari/female.svg",
  26918. extra: 3281.6 / 3217,
  26919. bottom: 72.2 / 3353
  26920. }
  26921. },
  26922. male: {
  26923. height: math.unit(27.7, "m"),
  26924. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26925. name: "Male",
  26926. image: {
  26927. source: "./media/characters/zenari/male.svg",
  26928. extra: 3008 / 2991,
  26929. bottom: 54.6 / 3069
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Macro",
  26936. height: math.unit(29.7, "meters"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26943. {
  26944. female: {
  26945. height: math.unit(23.8, "m"),
  26946. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26947. name: "Female",
  26948. image: {
  26949. source: "./media/characters/mactarian/female.svg",
  26950. extra: 2662 / 2569,
  26951. bottom: 73 / 2736
  26952. }
  26953. },
  26954. male: {
  26955. height: math.unit(23.8, "m"),
  26956. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26957. name: "Male",
  26958. image: {
  26959. source: "./media/characters/mactarian/male.svg",
  26960. extra: 2673 / 2600,
  26961. bottom: 76 / 2750
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(23.8, "meters"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26975. {
  26976. female: {
  26977. height: math.unit(19.3, "m"),
  26978. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26979. name: "Female",
  26980. image: {
  26981. source: "./media/characters/umok/female.svg",
  26982. extra: 2186 / 2078,
  26983. bottom: 87 / 2277
  26984. }
  26985. },
  26986. male: {
  26987. height: math.unit(19.5, "m"),
  26988. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26989. name: "Male",
  26990. image: {
  26991. source: "./media/characters/umok/male.svg",
  26992. extra: 2233 / 2140,
  26993. bottom: 24.4 / 2258
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Macro",
  27000. height: math.unit(19.3, "meters"),
  27001. default: true
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27007. {
  27008. female: {
  27009. height: math.unit(26.15, "m"),
  27010. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27011. name: "Female",
  27012. image: {
  27013. source: "./media/characters/joraxian/female.svg",
  27014. extra: 2912 / 2824,
  27015. bottom: 36 / 2956
  27016. }
  27017. },
  27018. male: {
  27019. height: math.unit(25.4, "m"),
  27020. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27021. name: "Male",
  27022. image: {
  27023. source: "./media/characters/joraxian/male.svg",
  27024. extra: 2877 / 2721,
  27025. bottom: 82 / 2967
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Macro",
  27032. height: math.unit(26.15, "meters"),
  27033. default: true
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27039. {
  27040. female: {
  27041. height: math.unit(21.6, "m"),
  27042. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27043. name: "Female",
  27044. image: {
  27045. source: "./media/characters/sthara/female.svg",
  27046. extra: 2516 / 2347,
  27047. bottom: 21.5 / 2537
  27048. }
  27049. },
  27050. male: {
  27051. height: math.unit(24, "m"),
  27052. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27053. name: "Male",
  27054. image: {
  27055. source: "./media/characters/sthara/male.svg",
  27056. extra: 2732 / 2607,
  27057. bottom: 23 / 2732
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Macro",
  27064. height: math.unit(21.6, "meters"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(6 + 4 / 12, "feet"),
  27074. weight: math.unit(175, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/luka-bryzant/front.svg",
  27078. extra: 311 / 289,
  27079. bottom: 4 / 315
  27080. }
  27081. },
  27082. back: {
  27083. height: math.unit(6 + 4 / 12, "feet"),
  27084. weight: math.unit(175, "lb"),
  27085. name: "Back",
  27086. image: {
  27087. source: "./media/characters/luka-bryzant/back.svg",
  27088. extra: 311 / 289,
  27089. bottom: 3.8 / 313.7
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Micro",
  27096. height: math.unit(10, "inches")
  27097. },
  27098. {
  27099. name: "Normal",
  27100. height: math.unit(6 + 4 / 12, "feet"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Large",
  27105. height: math.unit(12, "feet")
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(5 + 7 / 12, "feet"),
  27114. weight: math.unit(185, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/aman-aquila/front.svg",
  27118. extra: 1013 / 976,
  27119. bottom: 45.6 / 1057
  27120. }
  27121. },
  27122. side: {
  27123. height: math.unit(5 + 7 / 12, "feet"),
  27124. weight: math.unit(185, "lb"),
  27125. name: "Side",
  27126. image: {
  27127. source: "./media/characters/aman-aquila/side.svg",
  27128. extra: 1054 / 1011,
  27129. bottom: 15 / 1070
  27130. }
  27131. },
  27132. back: {
  27133. height: math.unit(5 + 7 / 12, "feet"),
  27134. weight: math.unit(185, "lb"),
  27135. name: "Back",
  27136. image: {
  27137. source: "./media/characters/aman-aquila/back.svg",
  27138. extra: 1026 / 970,
  27139. bottom: 12 / 1039
  27140. }
  27141. },
  27142. head: {
  27143. height: math.unit(1.211, "feet"),
  27144. name: "Head",
  27145. image: {
  27146. source: "./media/characters/aman-aquila/head.svg",
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Minimicro",
  27153. height: math.unit(0.057, "inches")
  27154. },
  27155. {
  27156. name: "Micro",
  27157. height: math.unit(7, "inches")
  27158. },
  27159. {
  27160. name: "Mini",
  27161. height: math.unit(3 + 7 / 12, "feet")
  27162. },
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(5 + 7 / 12, "feet"),
  27166. default: true
  27167. },
  27168. {
  27169. name: "Macro",
  27170. height: math.unit(157 + 7 / 12, "feet")
  27171. },
  27172. {
  27173. name: "Megamacro",
  27174. height: math.unit(1557 + 7 / 12, "feet")
  27175. },
  27176. {
  27177. name: "Gigamacro",
  27178. height: math.unit(15557 + 7 / 12, "feet")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(3 + 2 / 12, "inches"),
  27187. weight: math.unit(0.3, "ounces"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/hiphae/front.svg",
  27191. extra: 1931 / 1683,
  27192. bottom: 24 / 1955
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(3 + 1 / 2, "inches"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(5 + 10 / 12, "feet"),
  27209. weight: math.unit(165, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/nicky/front.svg",
  27213. extra: 3144 / 2886,
  27214. bottom: 45.6 / 3192
  27215. }
  27216. },
  27217. back: {
  27218. height: math.unit(5 + 10 / 12, "feet"),
  27219. weight: math.unit(165, "lb"),
  27220. name: "Back",
  27221. image: {
  27222. source: "./media/characters/nicky/back.svg",
  27223. extra: 3055 / 2804,
  27224. bottom: 28.4 / 3087
  27225. }
  27226. },
  27227. frontclothed: {
  27228. height: math.unit(5 + 10 / 12, "feet"),
  27229. weight: math.unit(165, "lb"),
  27230. name: "Front-clothed",
  27231. image: {
  27232. source: "./media/characters/nicky/front-clothed.svg",
  27233. extra: 3184.9 / 2926.9,
  27234. bottom: 86.5 / 3239.9
  27235. }
  27236. },
  27237. foot: {
  27238. height: math.unit(1.16, "feet"),
  27239. name: "Foot",
  27240. image: {
  27241. source: "./media/characters/nicky/foot.svg"
  27242. }
  27243. },
  27244. feet: {
  27245. height: math.unit(1.34, "feet"),
  27246. name: "Feet",
  27247. image: {
  27248. source: "./media/characters/nicky/feet.svg"
  27249. }
  27250. },
  27251. maw: {
  27252. height: math.unit(0.9, "feet"),
  27253. name: "Maw",
  27254. image: {
  27255. source: "./media/characters/nicky/maw.svg"
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Normal",
  27262. height: math.unit(5 + 10 / 12, "feet"),
  27263. default: true
  27264. },
  27265. {
  27266. name: "Macro",
  27267. height: math.unit(60, "feet")
  27268. },
  27269. {
  27270. name: "Megamacro",
  27271. height: math.unit(1, "mile")
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27277. {
  27278. side: {
  27279. height: math.unit(10, "feet"),
  27280. weight: math.unit(600, "lb"),
  27281. name: "Side",
  27282. image: {
  27283. source: "./media/characters/blair/side.svg",
  27284. bottom: 16.6 / 475,
  27285. extra: 458 / 431
  27286. }
  27287. },
  27288. },
  27289. [
  27290. {
  27291. name: "Micro",
  27292. height: math.unit(8, "inches")
  27293. },
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(10, "feet"),
  27297. default: true
  27298. },
  27299. {
  27300. name: "Macro",
  27301. height: math.unit(180, "feet")
  27302. },
  27303. ]
  27304. ))
  27305. characterMakers.push(() => makeCharacter(
  27306. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27307. {
  27308. front: {
  27309. height: math.unit(5 + 4 / 12, "feet"),
  27310. weight: math.unit(125, "lb"),
  27311. name: "Front",
  27312. image: {
  27313. source: "./media/characters/fisher/front.svg",
  27314. extra: 444 / 390,
  27315. bottom: 2 / 444.8
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Micro",
  27322. height: math.unit(4, "inches")
  27323. },
  27324. {
  27325. name: "Normal",
  27326. height: math.unit(5 + 4 / 12, "feet"),
  27327. default: true
  27328. },
  27329. {
  27330. name: "Macro",
  27331. height: math.unit(100, "feet")
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(6.71, "feet"),
  27340. weight: math.unit(200, "lb"),
  27341. preyCapacity: math.unit(1000000, "people"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/gliss/front.svg",
  27345. extra: 2347 / 2231,
  27346. bottom: 113 / 2462
  27347. }
  27348. },
  27349. hammerspaceSize: {
  27350. height: math.unit(6.71 * 717, "feet"),
  27351. weight: math.unit(200, "lb"),
  27352. preyCapacity: math.unit(1000000, "people"),
  27353. name: "Hammerspace Size",
  27354. image: {
  27355. source: "./media/characters/gliss/front.svg",
  27356. extra: 2347 / 2231,
  27357. bottom: 113 / 2462
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Normal",
  27364. height: math.unit(6.71, "feet"),
  27365. default: true
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27371. {
  27372. side: {
  27373. height: math.unit(1.44, "m"),
  27374. weight: math.unit(80, "kg"),
  27375. name: "Side",
  27376. image: {
  27377. source: "./media/characters/dune-anderson/side.svg",
  27378. bottom: 49 / 1426
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Wolf-sized",
  27385. height: math.unit(1.44, "meters")
  27386. },
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(5.05, "meters"),
  27390. default: true
  27391. },
  27392. {
  27393. name: "Big",
  27394. height: math.unit(14.4, "meters")
  27395. },
  27396. {
  27397. name: "Huge",
  27398. height: math.unit(144, "meters")
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(7, "feet"),
  27407. weight: math.unit(425, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/hind/front.svg",
  27411. extra: 2091 / 1860,
  27412. bottom: 129 / 2220
  27413. }
  27414. },
  27415. back: {
  27416. height: math.unit(7, "feet"),
  27417. weight: math.unit(425, "lb"),
  27418. name: "Back",
  27419. image: {
  27420. source: "./media/characters/hind/back.svg",
  27421. extra: 2091 / 1860,
  27422. bottom: 24.6 / 2309
  27423. }
  27424. },
  27425. tail: {
  27426. height: math.unit(2.8, "feet"),
  27427. name: "Tail",
  27428. image: {
  27429. source: "./media/characters/hind/tail.svg"
  27430. }
  27431. },
  27432. head: {
  27433. height: math.unit(2.55, "feet"),
  27434. name: "Head",
  27435. image: {
  27436. source: "./media/characters/hind/head.svg"
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "XS",
  27443. height: math.unit(0.7, "feet")
  27444. },
  27445. {
  27446. name: "Normal",
  27447. height: math.unit(7, "feet"),
  27448. default: true
  27449. },
  27450. {
  27451. name: "XL",
  27452. height: math.unit(70, "feet")
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(2.1, "meters"),
  27461. weight: math.unit(150, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/tharquench-sizestealer/front.svg",
  27465. extra: 1605/1470,
  27466. bottom: 36/1641
  27467. }
  27468. },
  27469. frontAlt: {
  27470. height: math.unit(2.1, "meters"),
  27471. weight: math.unit(150, "lb"),
  27472. name: "Front (Alt)",
  27473. image: {
  27474. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27475. extra: 2318 / 2063,
  27476. bottom: 93.4 / 2410
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Nano",
  27483. height: math.unit(1, "mm")
  27484. },
  27485. {
  27486. name: "Micro",
  27487. height: math.unit(1, "cm")
  27488. },
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(2.1, "meters"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(7 + 5 / 12, "feet"),
  27501. weight: math.unit(357, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/solex-draconov/front.svg",
  27505. extra: 1993 / 1865,
  27506. bottom: 117 / 2111
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Natural Height",
  27513. height: math.unit(7 + 5 / 12, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(350, "feet")
  27519. },
  27520. {
  27521. name: "Macro+",
  27522. height: math.unit(1000, "feet")
  27523. },
  27524. {
  27525. name: "Megamacro",
  27526. height: math.unit(20, "km")
  27527. },
  27528. {
  27529. name: "Megamacro+",
  27530. height: math.unit(1000, "km")
  27531. },
  27532. {
  27533. name: "Gigamacro",
  27534. height: math.unit(2.5, "Gm")
  27535. },
  27536. {
  27537. name: "Teramacro",
  27538. height: math.unit(15, "Tm")
  27539. },
  27540. {
  27541. name: "Galactic",
  27542. height: math.unit(30, "Zm")
  27543. },
  27544. {
  27545. name: "Universal",
  27546. height: math.unit(21000, "Ym")
  27547. },
  27548. {
  27549. name: "Omniversal",
  27550. height: math.unit(9.861e50, "Ym")
  27551. },
  27552. {
  27553. name: "Existential",
  27554. height: math.unit(1e300, "meters")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27560. {
  27561. side: {
  27562. height: math.unit(25, "feet"),
  27563. weight: math.unit(90000, "lb"),
  27564. name: "Side",
  27565. image: {
  27566. source: "./media/characters/mandarax/side.svg",
  27567. extra: 614 / 332,
  27568. bottom: 55 / 630
  27569. }
  27570. },
  27571. lounging: {
  27572. height: math.unit(15.4, "feet"),
  27573. weight: math.unit(90000, "lb"),
  27574. name: "Lounging",
  27575. image: {
  27576. source: "./media/characters/mandarax/lounging.svg",
  27577. extra: 817/609,
  27578. bottom: 685/1502
  27579. }
  27580. },
  27581. head: {
  27582. height: math.unit(11.4, "feet"),
  27583. name: "Head",
  27584. image: {
  27585. source: "./media/characters/mandarax/head.svg"
  27586. }
  27587. },
  27588. belly: {
  27589. height: math.unit(33, "feet"),
  27590. name: "Belly",
  27591. preyCapacity: math.unit(500, "people"),
  27592. image: {
  27593. source: "./media/characters/mandarax/belly.svg"
  27594. }
  27595. },
  27596. dick: {
  27597. height: math.unit(8.46, "feet"),
  27598. name: "Dick",
  27599. image: {
  27600. source: "./media/characters/mandarax/dick.svg"
  27601. }
  27602. },
  27603. top: {
  27604. height: math.unit(28, "meters"),
  27605. name: "Top",
  27606. image: {
  27607. source: "./media/characters/mandarax/top.svg"
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(25, "feet"),
  27615. default: true
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(5, "feet"),
  27624. weight: math.unit(90, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/pixil/front.svg",
  27628. extra: 2000 / 1618,
  27629. bottom: 12.3 / 2011
  27630. }
  27631. },
  27632. },
  27633. [
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(5, "feet"),
  27637. default: true
  27638. },
  27639. {
  27640. name: "Megamacro",
  27641. height: math.unit(10, "miles"),
  27642. },
  27643. ]
  27644. ))
  27645. characterMakers.push(() => makeCharacter(
  27646. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27647. {
  27648. front: {
  27649. height: math.unit(7 + 2 / 12, "feet"),
  27650. weight: math.unit(200, "lb"),
  27651. name: "Front",
  27652. image: {
  27653. source: "./media/characters/angel/front.svg",
  27654. extra: 1946/1840,
  27655. bottom: 30/1976
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(7 + 2 / 12, "feet"),
  27663. default: true
  27664. },
  27665. {
  27666. name: "Macro",
  27667. height: math.unit(1000, "feet")
  27668. },
  27669. {
  27670. name: "Megamacro",
  27671. height: math.unit(2, "miles")
  27672. },
  27673. {
  27674. name: "Gigamacro",
  27675. height: math.unit(20, "earths")
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27681. {
  27682. front: {
  27683. height: math.unit(5, "feet"),
  27684. weight: math.unit(180, "lb"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/mekana/front.svg",
  27688. extra: 1671 / 1605,
  27689. bottom: 3.5 / 1691
  27690. }
  27691. },
  27692. side: {
  27693. height: math.unit(5, "feet"),
  27694. weight: math.unit(180, "lb"),
  27695. name: "Side",
  27696. image: {
  27697. source: "./media/characters/mekana/side.svg",
  27698. extra: 1671 / 1605,
  27699. bottom: 3.5 / 1691
  27700. }
  27701. },
  27702. back: {
  27703. height: math.unit(5, "feet"),
  27704. weight: math.unit(180, "lb"),
  27705. name: "Back",
  27706. image: {
  27707. source: "./media/characters/mekana/back.svg",
  27708. extra: 1671 / 1605,
  27709. bottom: 3.5 / 1691
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(5, "feet"),
  27717. default: true
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27723. {
  27724. front: {
  27725. height: math.unit(4 + 6 / 12, "feet"),
  27726. weight: math.unit(80, "lb"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/pixie/front.svg",
  27730. extra: 1924 / 1825,
  27731. bottom: 22.4 / 1946
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(4 + 6 / 12, "feet"),
  27739. default: true
  27740. },
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(40, "feet")
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(2.1, "meters"),
  27752. weight: math.unit(200, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/the-lascivious/front.svg",
  27756. extra: 1 / 0.893,
  27757. bottom: 3.5 / 573.7
  27758. }
  27759. },
  27760. },
  27761. [
  27762. {
  27763. name: "Human Scale",
  27764. height: math.unit(2.1, "meters")
  27765. },
  27766. {
  27767. name: "Wolxi Scale",
  27768. height: math.unit(46.2, "m"),
  27769. default: true
  27770. },
  27771. {
  27772. name: "Boinker of Buildings",
  27773. height: math.unit(10, "km")
  27774. },
  27775. {
  27776. name: "Shagger of Skyscrapers",
  27777. height: math.unit(40, "km")
  27778. },
  27779. {
  27780. name: "Banger of Boroughs",
  27781. height: math.unit(4000, "km")
  27782. },
  27783. {
  27784. name: "Screwer of States",
  27785. height: math.unit(100000, "km")
  27786. },
  27787. {
  27788. name: "Pounder of Planets",
  27789. height: math.unit(2000000, "km")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(6, "feet"),
  27798. weight: math.unit(150, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/aj/front.svg",
  27802. extra: 2039 / 1562,
  27803. bottom: 40 / 2079
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Normal",
  27810. height: math.unit(11 + 6 / 12, "feet"),
  27811. default: true
  27812. },
  27813. {
  27814. name: "Megamacro",
  27815. height: math.unit(60, "megameters")
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27821. {
  27822. side: {
  27823. height: math.unit(31 + 8 / 12, "feet"),
  27824. weight: math.unit(75000, "kg"),
  27825. name: "Side",
  27826. image: {
  27827. source: "./media/characters/koros/side.svg",
  27828. extra: 1442 / 1297,
  27829. bottom: 122.7 / 1562
  27830. }
  27831. },
  27832. dicksKingsCrown: {
  27833. height: math.unit(6, "feet"),
  27834. name: "Dicks (King's Crown)",
  27835. image: {
  27836. source: "./media/characters/koros/dicks-kings-crown.svg"
  27837. }
  27838. },
  27839. dicksTailSet: {
  27840. height: math.unit(3, "feet"),
  27841. name: "Dicks (Tail Set)",
  27842. image: {
  27843. source: "./media/characters/koros/dicks-tail-set.svg"
  27844. }
  27845. },
  27846. dickCumming: {
  27847. height: math.unit(7.98, "feet"),
  27848. name: "Dick (Cumming)",
  27849. image: {
  27850. source: "./media/characters/koros/dick-cumming.svg"
  27851. }
  27852. },
  27853. dicksBack: {
  27854. height: math.unit(5.9, "feet"),
  27855. name: "Dicks (Back)",
  27856. image: {
  27857. source: "./media/characters/koros/dicks-back.svg"
  27858. }
  27859. },
  27860. dicksFront: {
  27861. height: math.unit(3.72, "feet"),
  27862. name: "Dicks (Front)",
  27863. image: {
  27864. source: "./media/characters/koros/dicks-front.svg"
  27865. }
  27866. },
  27867. dicksPeeking: {
  27868. height: math.unit(3.0, "feet"),
  27869. name: "Dicks (Peeking)",
  27870. image: {
  27871. source: "./media/characters/koros/dicks-peeking.svg"
  27872. }
  27873. },
  27874. eye: {
  27875. height: math.unit(1.7, "feet"),
  27876. name: "Eye",
  27877. image: {
  27878. source: "./media/characters/koros/eye.svg"
  27879. }
  27880. },
  27881. headFront: {
  27882. height: math.unit(11.69, "feet"),
  27883. name: "Head (Front)",
  27884. image: {
  27885. source: "./media/characters/koros/head-front.svg"
  27886. }
  27887. },
  27888. headSide: {
  27889. height: math.unit(14, "feet"),
  27890. name: "Head (Side)",
  27891. image: {
  27892. source: "./media/characters/koros/head-side.svg"
  27893. }
  27894. },
  27895. leg: {
  27896. height: math.unit(17, "feet"),
  27897. name: "Leg",
  27898. image: {
  27899. source: "./media/characters/koros/leg.svg"
  27900. }
  27901. },
  27902. mawSide: {
  27903. height: math.unit(12.8, "feet"),
  27904. name: "Maw (Side)",
  27905. image: {
  27906. source: "./media/characters/koros/maw-side.svg"
  27907. }
  27908. },
  27909. mawSpitting: {
  27910. height: math.unit(17, "feet"),
  27911. name: "Maw (Spitting)",
  27912. image: {
  27913. source: "./media/characters/koros/maw-spitting.svg"
  27914. }
  27915. },
  27916. slit: {
  27917. height: math.unit(2.8, "feet"),
  27918. name: "Slit",
  27919. image: {
  27920. source: "./media/characters/koros/slit.svg"
  27921. }
  27922. },
  27923. stomach: {
  27924. height: math.unit(6.8, "feet"),
  27925. preyCapacity: math.unit(20, "people"),
  27926. name: "Stomach",
  27927. image: {
  27928. source: "./media/characters/koros/stomach.svg"
  27929. }
  27930. },
  27931. wingspanBottom: {
  27932. height: math.unit(114, "feet"),
  27933. name: "Wingspan (Bottom)",
  27934. image: {
  27935. source: "./media/characters/koros/wingspan-bottom.svg"
  27936. }
  27937. },
  27938. wingspanTop: {
  27939. height: math.unit(104, "feet"),
  27940. name: "Wingspan (Top)",
  27941. image: {
  27942. source: "./media/characters/koros/wingspan-top.svg"
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Normal",
  27949. height: math.unit(31 + 8 / 12, "feet"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(18 + 5 / 12, "feet"),
  27959. weight: math.unit(3750, "kg"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/vexx/front.svg",
  27963. extra: 426 / 396,
  27964. bottom: 31.5 / 458
  27965. }
  27966. },
  27967. maw: {
  27968. height: math.unit(6, "feet"),
  27969. name: "Maw",
  27970. image: {
  27971. source: "./media/characters/vexx/maw.svg"
  27972. }
  27973. },
  27974. },
  27975. [
  27976. {
  27977. name: "Normal",
  27978. height: math.unit(18 + 5 / 12, "feet"),
  27979. default: true
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(17 + 6 / 12, "feet"),
  27988. weight: math.unit(150, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/baadra/front.svg",
  27992. extra: 1694/1553,
  27993. bottom: 179/1873
  27994. }
  27995. },
  27996. frontAlt: {
  27997. height: math.unit(17 + 6 / 12, "feet"),
  27998. weight: math.unit(150, "lb"),
  27999. name: "Front (Alt)",
  28000. image: {
  28001. source: "./media/characters/baadra/front-alt.svg",
  28002. extra: 3137 / 2890,
  28003. bottom: 168.4 / 3305
  28004. }
  28005. },
  28006. back: {
  28007. height: math.unit(17 + 6 / 12, "feet"),
  28008. weight: math.unit(150, "lb"),
  28009. name: "Back",
  28010. image: {
  28011. source: "./media/characters/baadra/back.svg",
  28012. extra: 3142 / 2890,
  28013. bottom: 220 / 3371
  28014. }
  28015. },
  28016. head: {
  28017. height: math.unit(5.45, "feet"),
  28018. name: "Head",
  28019. image: {
  28020. source: "./media/characters/baadra/head.svg"
  28021. }
  28022. },
  28023. headAngry: {
  28024. height: math.unit(4.95, "feet"),
  28025. name: "Head (Angry)",
  28026. image: {
  28027. source: "./media/characters/baadra/head-angry.svg"
  28028. }
  28029. },
  28030. headOpen: {
  28031. height: math.unit(6, "feet"),
  28032. name: "Head (Open)",
  28033. image: {
  28034. source: "./media/characters/baadra/head-open.svg"
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(17 + 6 / 12, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(7 + 3 / 12, "feet"),
  28051. weight: math.unit(180, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/juri/front.svg",
  28055. extra: 1401 / 1237,
  28056. bottom: 18.5 / 1418
  28057. }
  28058. },
  28059. side: {
  28060. height: math.unit(7 + 3 / 12, "feet"),
  28061. weight: math.unit(180, "lb"),
  28062. name: "Side",
  28063. image: {
  28064. source: "./media/characters/juri/side.svg",
  28065. extra: 1424 / 1242,
  28066. bottom: 18.5 / 1447
  28067. }
  28068. },
  28069. sitting: {
  28070. height: math.unit(6, "feet"),
  28071. weight: math.unit(180, "lb"),
  28072. name: "Sitting",
  28073. image: {
  28074. source: "./media/characters/juri/sitting.svg",
  28075. extra: 1270 / 1143,
  28076. bottom: 100 / 1343
  28077. }
  28078. },
  28079. back: {
  28080. height: math.unit(7 + 3 / 12, "feet"),
  28081. weight: math.unit(180, "lb"),
  28082. name: "Back",
  28083. image: {
  28084. source: "./media/characters/juri/back.svg",
  28085. extra: 1377 / 1240,
  28086. bottom: 23.7 / 1405
  28087. }
  28088. },
  28089. maw: {
  28090. height: math.unit(2.8, "feet"),
  28091. name: "Maw",
  28092. image: {
  28093. source: "./media/characters/juri/maw.svg"
  28094. }
  28095. },
  28096. stomach: {
  28097. height: math.unit(0.89, "feet"),
  28098. preyCapacity: math.unit(4, "liters"),
  28099. name: "Stomach",
  28100. image: {
  28101. source: "./media/characters/juri/stomach.svg"
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(7 + 3 / 12, "feet"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28115. {
  28116. fox: {
  28117. height: math.unit(5 + 6 / 12, "feet"),
  28118. weight: math.unit(140, "lb"),
  28119. name: "Fox",
  28120. image: {
  28121. source: "./media/characters/maxene-sita/fox.svg",
  28122. extra: 146 / 138,
  28123. bottom: 2.1 / 148.19
  28124. }
  28125. },
  28126. foxLaying: {
  28127. height: math.unit(1.70, "feet"),
  28128. weight: math.unit(140, "lb"),
  28129. name: "Fox (Laying)",
  28130. image: {
  28131. source: "./media/characters/maxene-sita/fox-laying.svg",
  28132. extra: 910 / 572,
  28133. bottom: 71 / 981
  28134. }
  28135. },
  28136. kitsune: {
  28137. height: math.unit(10, "feet"),
  28138. weight: math.unit(800, "lb"),
  28139. name: "Kitsune",
  28140. image: {
  28141. source: "./media/characters/maxene-sita/kitsune.svg",
  28142. extra: 185 / 176,
  28143. bottom: 4.7 / 189.9
  28144. }
  28145. },
  28146. hellhound: {
  28147. height: math.unit(10, "feet"),
  28148. weight: math.unit(700, "lb"),
  28149. name: "Hellhound",
  28150. image: {
  28151. source: "./media/characters/maxene-sita/hellhound.svg",
  28152. extra: 1600 / 1545,
  28153. bottom: 81 / 1681
  28154. }
  28155. },
  28156. },
  28157. [
  28158. {
  28159. name: "Normal",
  28160. height: math.unit(5 + 6 / 12, "feet"),
  28161. default: true
  28162. },
  28163. ]
  28164. ))
  28165. characterMakers.push(() => makeCharacter(
  28166. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28167. {
  28168. front: {
  28169. height: math.unit(3 + 4 / 12, "feet"),
  28170. weight: math.unit(70, "lb"),
  28171. name: "Front",
  28172. image: {
  28173. source: "./media/characters/maia/front.svg",
  28174. extra: 227 / 219.5,
  28175. bottom: 40 / 267
  28176. }
  28177. },
  28178. back: {
  28179. height: math.unit(3 + 4 / 12, "feet"),
  28180. weight: math.unit(70, "lb"),
  28181. name: "Back",
  28182. image: {
  28183. source: "./media/characters/maia/back.svg",
  28184. extra: 237 / 225
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(3 + 4 / 12, "feet"),
  28192. default: true
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28198. {
  28199. front: {
  28200. height: math.unit(5 + 10 / 12, "feet"),
  28201. weight: math.unit(197, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/jabaro/front.svg",
  28205. extra: 225 / 216,
  28206. bottom: 5.06 / 230
  28207. }
  28208. },
  28209. back: {
  28210. height: math.unit(5 + 10 / 12, "feet"),
  28211. weight: math.unit(197, "lb"),
  28212. name: "Back",
  28213. image: {
  28214. source: "./media/characters/jabaro/back.svg",
  28215. extra: 225 / 219,
  28216. bottom: 1.9 / 227
  28217. }
  28218. },
  28219. },
  28220. [
  28221. {
  28222. name: "Normal",
  28223. height: math.unit(5 + 10 / 12, "feet"),
  28224. default: true
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(5 + 8 / 12, "feet"),
  28233. weight: math.unit(139, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/risa/front.svg",
  28237. extra: 270 / 260,
  28238. bottom: 11.2 / 282
  28239. }
  28240. },
  28241. back: {
  28242. height: math.unit(5 + 8 / 12, "feet"),
  28243. weight: math.unit(139, "lb"),
  28244. name: "Back",
  28245. image: {
  28246. source: "./media/characters/risa/back.svg",
  28247. extra: 264 / 255,
  28248. bottom: 4 / 268
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(5 + 8 / 12, "feet"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(2 + 11 / 12, "feet"),
  28265. weight: math.unit(30, "lb"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/weatley/front.svg",
  28269. bottom: 10.7 / 414,
  28270. extra: 403.5 / 362
  28271. }
  28272. },
  28273. back: {
  28274. height: math.unit(2 + 11 / 12, "feet"),
  28275. weight: math.unit(30, "lb"),
  28276. name: "Back",
  28277. image: {
  28278. source: "./media/characters/weatley/back.svg",
  28279. bottom: 10.7 / 414,
  28280. extra: 403.5 / 362
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(2 + 11 / 12, "feet"),
  28288. default: true
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(5 + 2 / 12, "feet"),
  28297. weight: math.unit(50, "kg"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/mercury-crescent/front.svg",
  28301. extra: 1088 / 1033,
  28302. bottom: 18.9 / 1109
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(5 + 2 / 12, "feet"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(2, "feet"),
  28319. weight: math.unit(15, "kg"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/diamond-jones/front.svg",
  28323. extra: 727/723,
  28324. bottom: 46/773
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(2, "feet"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(3, "feet"),
  28341. weight: math.unit(30, "kg"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/sweet-bit/front.svg",
  28345. extra: 675 / 567,
  28346. bottom: 27.7 / 703
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Normal",
  28353. height: math.unit(3, "feet"),
  28354. default: true
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28360. {
  28361. side: {
  28362. height: math.unit(9.178, "feet"),
  28363. weight: math.unit(500, "lb"),
  28364. name: "Side",
  28365. image: {
  28366. source: "./media/characters/umbrazen/side.svg",
  28367. extra: 1730 / 1473,
  28368. bottom: 34.6 / 1765
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(9.178, "feet"),
  28376. default: true
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(10, "feet"),
  28385. weight: math.unit(750, "lb"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/arlist/front.svg",
  28389. extra: 961 / 778,
  28390. bottom: 6.2 / 986
  28391. }
  28392. },
  28393. },
  28394. [
  28395. {
  28396. name: "Normal",
  28397. height: math.unit(10, "feet"),
  28398. default: true
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28404. {
  28405. front: {
  28406. height: math.unit(5 + 1 / 12, "feet"),
  28407. weight: math.unit(110, "lb"),
  28408. name: "Front",
  28409. image: {
  28410. source: "./media/characters/aradel/front.svg",
  28411. extra: 324 / 303,
  28412. bottom: 3.6 / 329.4
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(5 + 1 / 12, "feet"),
  28420. default: true
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28426. {
  28427. dressed: {
  28428. height: math.unit(3 + 8 / 12, "feet"),
  28429. weight: math.unit(50, "lb"),
  28430. name: "Dressed",
  28431. image: {
  28432. source: "./media/characters/serryn/dressed.svg",
  28433. extra: 1792 / 1656,
  28434. bottom: 43.5 / 1840
  28435. }
  28436. },
  28437. nude: {
  28438. height: math.unit(3 + 8 / 12, "feet"),
  28439. weight: math.unit(50, "lb"),
  28440. name: "Nude",
  28441. image: {
  28442. source: "./media/characters/serryn/nude.svg",
  28443. extra: 1792 / 1656,
  28444. bottom: 43.5 / 1840
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(3 + 8 / 12, "feet"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(7 + 10 / 12, "feet"),
  28461. weight: math.unit(255, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/xavier-thyme/front.svg",
  28465. extra: 3733 / 3642,
  28466. bottom: 131 / 3869
  28467. }
  28468. },
  28469. frontRaven: {
  28470. height: math.unit(7 + 10 / 12, "feet"),
  28471. weight: math.unit(255, "lb"),
  28472. name: "Front (Raven)",
  28473. image: {
  28474. source: "./media/characters/xavier-thyme/front-raven.svg",
  28475. extra: 4385 / 3642,
  28476. bottom: 131 / 4517
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(7 + 10 / 12, "feet"),
  28484. default: true
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(1.6, "m"),
  28493. weight: math.unit(50, "kg"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/kiki/front.svg",
  28497. extra: 4682 / 3610,
  28498. bottom: 115 / 4777
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Normal",
  28505. height: math.unit(1.6, "meters"),
  28506. default: true
  28507. },
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28512. {
  28513. front: {
  28514. height: math.unit(50, "m"),
  28515. weight: math.unit(500, "tonnes"),
  28516. name: "Front",
  28517. image: {
  28518. source: "./media/characters/ryoko/front.svg",
  28519. extra: 4632 / 3926,
  28520. bottom: 193 / 4823
  28521. }
  28522. },
  28523. },
  28524. [
  28525. {
  28526. name: "Normal",
  28527. height: math.unit(50, "meters"),
  28528. default: true
  28529. },
  28530. ]
  28531. ))
  28532. characterMakers.push(() => makeCharacter(
  28533. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28534. {
  28535. front: {
  28536. height: math.unit(30, "m"),
  28537. weight: math.unit(22, "tonnes"),
  28538. name: "Front",
  28539. image: {
  28540. source: "./media/characters/elio/front.svg",
  28541. extra: 4582 / 3720,
  28542. bottom: 236 / 4828
  28543. }
  28544. },
  28545. },
  28546. [
  28547. {
  28548. name: "Normal",
  28549. height: math.unit(30, "meters"),
  28550. default: true
  28551. },
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28556. {
  28557. front: {
  28558. height: math.unit(6 + 3 / 12, "feet"),
  28559. weight: math.unit(120, "lb"),
  28560. name: "Front",
  28561. image: {
  28562. source: "./media/characters/azura/front.svg",
  28563. extra: 1149 / 1135,
  28564. bottom: 45 / 1194
  28565. }
  28566. },
  28567. frontClothed: {
  28568. height: math.unit(6 + 3 / 12, "feet"),
  28569. weight: math.unit(120, "lb"),
  28570. name: "Front (Clothed)",
  28571. image: {
  28572. source: "./media/characters/azura/front-clothed.svg",
  28573. extra: 1149 / 1135,
  28574. bottom: 45 / 1194
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(6 + 3 / 12, "feet"),
  28582. default: true
  28583. },
  28584. {
  28585. name: "Macro",
  28586. height: math.unit(20 + 6 / 12, "feet")
  28587. },
  28588. {
  28589. name: "Megamacro",
  28590. height: math.unit(12, "miles")
  28591. },
  28592. {
  28593. name: "Gigamacro",
  28594. height: math.unit(10000, "miles")
  28595. },
  28596. {
  28597. name: "Teramacro",
  28598. height: math.unit(900000, "miles")
  28599. },
  28600. ]
  28601. ))
  28602. characterMakers.push(() => makeCharacter(
  28603. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28604. {
  28605. front: {
  28606. height: math.unit(12, "feet"),
  28607. weight: math.unit(1, "ton"),
  28608. capacity: math.unit(660000, "gallons"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/zeus/front.svg",
  28612. extra: 5005 / 4717,
  28613. bottom: 363 / 5388
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(12, "feet")
  28621. },
  28622. {
  28623. name: "Preferred Size",
  28624. height: math.unit(0.5, "miles"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Giga Horse",
  28629. height: math.unit(300, "miles")
  28630. },
  28631. {
  28632. name: "Riding Planets",
  28633. height: math.unit(30, "megameters")
  28634. },
  28635. {
  28636. name: "Cosmic Giant",
  28637. height: math.unit(3, "zettameters")
  28638. },
  28639. {
  28640. name: "Breeding God",
  28641. height: math.unit(9.92e22, "yottameters")
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28647. {
  28648. side: {
  28649. height: math.unit(9, "feet"),
  28650. weight: math.unit(1500, "kg"),
  28651. name: "Side",
  28652. image: {
  28653. source: "./media/characters/fang/side.svg",
  28654. extra: 924 / 866,
  28655. bottom: 47.5 / 972.3
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(9, "feet"),
  28663. default: true
  28664. },
  28665. {
  28666. name: "Macro",
  28667. height: math.unit(75 + 6 / 12, "feet")
  28668. },
  28669. {
  28670. name: "Teramacro",
  28671. height: math.unit(50000, "miles")
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(10, "feet"),
  28680. weight: math.unit(2, "tons"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/rekhit/front.svg",
  28684. extra: 2796 / 2590,
  28685. bottom: 225 / 3022
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Normal",
  28692. height: math.unit(10, "feet"),
  28693. default: true
  28694. },
  28695. {
  28696. name: "Macro",
  28697. height: math.unit(500, "feet")
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(7 + 6.451 / 12, "feet"),
  28706. weight: math.unit(310, "lb"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/dahlia-verrick/front.svg",
  28710. extra: 1488 / 1365,
  28711. bottom: 6.2 / 1495
  28712. }
  28713. },
  28714. back: {
  28715. height: math.unit(7 + 6.451 / 12, "feet"),
  28716. weight: math.unit(310, "lb"),
  28717. name: "Back",
  28718. image: {
  28719. source: "./media/characters/dahlia-verrick/back.svg",
  28720. extra: 1472 / 1351,
  28721. bottom: 5.28 / 1477
  28722. }
  28723. },
  28724. frontBusiness: {
  28725. height: math.unit(7 + 6.451 / 12, "feet"),
  28726. weight: math.unit(200, "lb"),
  28727. name: "Front (Business)",
  28728. image: {
  28729. source: "./media/characters/dahlia-verrick/front-business.svg",
  28730. extra: 1478 / 1381,
  28731. bottom: 5.5 / 1484
  28732. }
  28733. },
  28734. frontCasual: {
  28735. height: math.unit(7 + 6.451 / 12, "feet"),
  28736. weight: math.unit(200, "lb"),
  28737. name: "Front (Casual)",
  28738. image: {
  28739. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28740. extra: 1478 / 1381,
  28741. bottom: 5.5 / 1484
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Travel-Sized",
  28748. height: math.unit(7.45, "inches")
  28749. },
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(7 + 6.451 / 12, "feet"),
  28753. default: true
  28754. },
  28755. {
  28756. name: "Hitting the Town",
  28757. height: math.unit(37 + 8 / 12, "feet")
  28758. },
  28759. {
  28760. name: "Stomp in the Suburbs",
  28761. height: math.unit(964 + 9.728 / 12, "feet")
  28762. },
  28763. {
  28764. name: "Sit on the City",
  28765. height: math.unit(61747 + 10.592 / 12, "feet")
  28766. },
  28767. {
  28768. name: "Glomp the Globe",
  28769. height: math.unit(252919327 + 4.832 / 12, "feet")
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(6 + 4 / 12, "feet"),
  28778. weight: math.unit(320, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/balina-mahigan/front.svg",
  28782. extra: 447 / 428,
  28783. bottom: 18 / 466
  28784. }
  28785. },
  28786. back: {
  28787. height: math.unit(6 + 4 / 12, "feet"),
  28788. weight: math.unit(320, "lb"),
  28789. name: "Back",
  28790. image: {
  28791. source: "./media/characters/balina-mahigan/back.svg",
  28792. extra: 445 / 428,
  28793. bottom: 4.07 / 448
  28794. }
  28795. },
  28796. arm: {
  28797. height: math.unit(1.88, "feet"),
  28798. name: "Arm",
  28799. image: {
  28800. source: "./media/characters/balina-mahigan/arm.svg"
  28801. }
  28802. },
  28803. backPort: {
  28804. height: math.unit(0.685, "feet"),
  28805. name: "Back Port",
  28806. image: {
  28807. source: "./media/characters/balina-mahigan/back-port.svg"
  28808. }
  28809. },
  28810. hoofpaw: {
  28811. height: math.unit(1.41, "feet"),
  28812. name: "Hoofpaw",
  28813. image: {
  28814. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28815. }
  28816. },
  28817. leftHandBack: {
  28818. height: math.unit(0.938, "feet"),
  28819. name: "Left Hand (Back)",
  28820. image: {
  28821. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28822. }
  28823. },
  28824. leftHandFront: {
  28825. height: math.unit(0.938, "feet"),
  28826. name: "Left Hand (Front)",
  28827. image: {
  28828. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28829. }
  28830. },
  28831. rightHandBack: {
  28832. height: math.unit(0.95, "feet"),
  28833. name: "Right Hand (Back)",
  28834. image: {
  28835. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28836. }
  28837. },
  28838. rightHandFront: {
  28839. height: math.unit(0.95, "feet"),
  28840. name: "Right Hand (Front)",
  28841. image: {
  28842. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(6 + 4 / 12, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(6, "feet"),
  28859. weight: math.unit(320, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/balina-mejeri/front.svg",
  28863. extra: 517 / 488,
  28864. bottom: 44.2 / 561
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(6 + 4 / 12, "feet")
  28872. },
  28873. {
  28874. name: "Business",
  28875. height: math.unit(155, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28882. {
  28883. kneeling: {
  28884. height: math.unit(6 + 4 / 12, "feet"),
  28885. weight: math.unit(300 * 20, "lb"),
  28886. name: "Kneeling",
  28887. image: {
  28888. source: "./media/characters/balbarian/kneeling.svg",
  28889. extra: 922 / 862,
  28890. bottom: 42.4 / 965
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(6 + 4 / 12, "feet")
  28898. },
  28899. {
  28900. name: "Treasured",
  28901. height: math.unit(18 + 9 / 12, "feet"),
  28902. default: true
  28903. },
  28904. {
  28905. name: "Macro",
  28906. height: math.unit(900, "feet")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(6 + 4 / 12, "feet"),
  28915. weight: math.unit(325, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/balina-amarini/front.svg",
  28919. extra: 415 / 403,
  28920. bottom: 19 / 433.4
  28921. }
  28922. },
  28923. back: {
  28924. height: math.unit(6 + 4 / 12, "feet"),
  28925. weight: math.unit(325, "lb"),
  28926. name: "Back",
  28927. image: {
  28928. source: "./media/characters/balina-amarini/back.svg",
  28929. extra: 415 / 403,
  28930. bottom: 13.5 / 432
  28931. }
  28932. },
  28933. overdrive: {
  28934. height: math.unit(6 + 4 / 12, "feet"),
  28935. weight: math.unit(400, "lb"),
  28936. name: "Overdrive",
  28937. image: {
  28938. source: "./media/characters/balina-amarini/overdrive.svg",
  28939. extra: 269 / 259,
  28940. bottom: 12 / 282
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Boom",
  28947. height: math.unit(9 + 10 / 12, "feet"),
  28948. default: true
  28949. },
  28950. {
  28951. name: "Macro",
  28952. height: math.unit(280, "feet")
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28958. {
  28959. goddess: {
  28960. height: math.unit(600, "feet"),
  28961. weight: math.unit(2000000, "tons"),
  28962. name: "Goddess",
  28963. image: {
  28964. source: "./media/characters/lady-kubwa/goddess.svg",
  28965. extra: 1240.5 / 1223,
  28966. bottom: 22 / 1263
  28967. }
  28968. },
  28969. goddesser: {
  28970. height: math.unit(900, "feet"),
  28971. weight: math.unit(20000000, "lb"),
  28972. name: "Goddess-er",
  28973. image: {
  28974. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28975. extra: 899 / 888,
  28976. bottom: 12.6 / 912
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Macro",
  28983. height: math.unit(600, "feet"),
  28984. default: true
  28985. },
  28986. {
  28987. name: "Megamacro",
  28988. height: math.unit(250, "miles")
  28989. },
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(7 + 7 / 12, "feet"),
  28997. weight: math.unit(250, "lb"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/tala-grovehorn/front.svg",
  29001. extra: 2636 / 2525,
  29002. bottom: 147 / 2781
  29003. }
  29004. },
  29005. back: {
  29006. height: math.unit(7 + 7 / 12, "feet"),
  29007. weight: math.unit(250, "lb"),
  29008. name: "Back",
  29009. image: {
  29010. source: "./media/characters/tala-grovehorn/back.svg",
  29011. extra: 2635 / 2539,
  29012. bottom: 100 / 2732.8
  29013. }
  29014. },
  29015. mouth: {
  29016. height: math.unit(1.15, "feet"),
  29017. name: "Mouth",
  29018. image: {
  29019. source: "./media/characters/tala-grovehorn/mouth.svg"
  29020. }
  29021. },
  29022. dick: {
  29023. height: math.unit(2.36, "feet"),
  29024. name: "Dick",
  29025. image: {
  29026. source: "./media/characters/tala-grovehorn/dick.svg"
  29027. }
  29028. },
  29029. slit: {
  29030. height: math.unit(0.61, "feet"),
  29031. name: "Slit",
  29032. image: {
  29033. source: "./media/characters/tala-grovehorn/slit.svg"
  29034. }
  29035. },
  29036. },
  29037. [
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29042. {
  29043. front: {
  29044. height: math.unit(7 + 7 / 12, "feet"),
  29045. weight: math.unit(225, "lb"),
  29046. name: "Front",
  29047. image: {
  29048. source: "./media/characters/epona/front.svg",
  29049. extra: 2445 / 2290,
  29050. bottom: 251 / 2696
  29051. }
  29052. },
  29053. back: {
  29054. height: math.unit(7 + 7 / 12, "feet"),
  29055. weight: math.unit(225, "lb"),
  29056. name: "Back",
  29057. image: {
  29058. source: "./media/characters/epona/back.svg",
  29059. extra: 2546 / 2408,
  29060. bottom: 44 / 2589
  29061. }
  29062. },
  29063. genitals: {
  29064. height: math.unit(1.5, "feet"),
  29065. name: "Genitals",
  29066. image: {
  29067. source: "./media/characters/epona/genitals.svg"
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Normal",
  29074. height: math.unit(7 + 7 / 12, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(7, "feet"),
  29084. weight: math.unit(518, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/avia-bloodbourn/front.svg",
  29088. extra: 1466 / 1350,
  29089. bottom: 65 / 1527
  29090. }
  29091. },
  29092. },
  29093. [
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(9.35, "feet"),
  29101. weight: math.unit(600, "lb"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/amera/front.svg",
  29105. extra: 891 / 818,
  29106. bottom: 30 / 922.7
  29107. }
  29108. },
  29109. back: {
  29110. height: math.unit(9.35, "feet"),
  29111. weight: math.unit(600, "lb"),
  29112. name: "Back",
  29113. image: {
  29114. source: "./media/characters/amera/back.svg",
  29115. extra: 876 / 824,
  29116. bottom: 6.8 / 884
  29117. }
  29118. },
  29119. dick: {
  29120. height: math.unit(2.14, "feet"),
  29121. name: "Dick",
  29122. image: {
  29123. source: "./media/characters/amera/dick.svg"
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Normal",
  29130. height: math.unit(9.35, "feet"),
  29131. default: true
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29137. {
  29138. kneeling: {
  29139. height: math.unit(3 + 4 / 12, "feet"),
  29140. weight: math.unit(90, "lb"),
  29141. name: "Kneeling",
  29142. image: {
  29143. source: "./media/characters/rosewen/kneeling.svg",
  29144. extra: 1835 / 1571,
  29145. bottom: 27.7 / 1862
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(3 + 4 / 12, "feet"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(5 + 10 / 12, "feet"),
  29162. weight: math.unit(200, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/sabah/front.svg",
  29166. extra: 849 / 763,
  29167. bottom: 33.9 / 881
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Normal",
  29174. height: math.unit(5 + 10 / 12, "feet"),
  29175. default: true
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29181. {
  29182. front: {
  29183. height: math.unit(3 + 5 / 12, "feet"),
  29184. weight: math.unit(40, "kg"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/purple-flame/front.svg",
  29188. extra: 1577 / 1412,
  29189. bottom: 97 / 1694
  29190. }
  29191. },
  29192. frontDressed: {
  29193. height: math.unit(3 + 5 / 12, "feet"),
  29194. weight: math.unit(40, "kg"),
  29195. name: "Front (Dressed)",
  29196. image: {
  29197. source: "./media/characters/purple-flame/front-dressed.svg",
  29198. extra: 1577 / 1412,
  29199. bottom: 97 / 1694
  29200. }
  29201. },
  29202. headphones: {
  29203. height: math.unit(0.85, "feet"),
  29204. name: "Headphones",
  29205. image: {
  29206. source: "./media/characters/purple-flame/headphones.svg"
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Really Small",
  29213. height: math.unit(5, "cm")
  29214. },
  29215. {
  29216. name: "Micro",
  29217. height: math.unit(1 + 5 / 12, "feet")
  29218. },
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(3 + 5 / 12, "feet"),
  29222. default: true
  29223. },
  29224. {
  29225. name: "Minimacro",
  29226. height: math.unit(125, "feet")
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(0.5, "miles")
  29231. },
  29232. {
  29233. name: "Megamacro",
  29234. height: math.unit(50, "miles")
  29235. },
  29236. {
  29237. name: "Gigantic",
  29238. height: math.unit(750, "miles")
  29239. },
  29240. {
  29241. name: "Planetary",
  29242. height: math.unit(15000, "miles")
  29243. },
  29244. ]
  29245. ))
  29246. characterMakers.push(() => makeCharacter(
  29247. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29248. {
  29249. front: {
  29250. height: math.unit(14, "feet"),
  29251. weight: math.unit(959, "lb"),
  29252. name: "Front",
  29253. image: {
  29254. source: "./media/characters/arsenal/front.svg",
  29255. extra: 2357 / 2157,
  29256. bottom: 93 / 2458
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(14, "feet"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(6, "feet"),
  29273. weight: math.unit(150, "lb"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/adira/front.svg",
  29277. extra: 1078 / 1029,
  29278. bottom: 87 / 1166
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Micro",
  29285. height: math.unit(4, "inches"),
  29286. default: true
  29287. },
  29288. {
  29289. name: "Macro",
  29290. height: math.unit(50, "feet")
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(16, "feet"),
  29299. weight: math.unit(1000, "lb"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/grim/front.svg",
  29303. extra: 622 / 614,
  29304. bottom: 18.1 / 642
  29305. }
  29306. },
  29307. back: {
  29308. height: math.unit(16, "feet"),
  29309. weight: math.unit(1000, "lb"),
  29310. name: "Back",
  29311. image: {
  29312. source: "./media/characters/grim/back.svg",
  29313. extra: 610.6 / 602,
  29314. bottom: 40.8 / 652
  29315. }
  29316. },
  29317. hunched: {
  29318. height: math.unit(9.75, "feet"),
  29319. weight: math.unit(1000, "lb"),
  29320. name: "Hunched",
  29321. image: {
  29322. source: "./media/characters/grim/hunched.svg",
  29323. extra: 304 / 297,
  29324. bottom: 35.4 / 394
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(16, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(2.3, "meters"),
  29341. weight: math.unit(300, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/sinja/front-sfw.svg",
  29345. extra: 1393 / 1294,
  29346. bottom: 70 / 1463
  29347. }
  29348. },
  29349. frontNsfw: {
  29350. height: math.unit(2.3, "meters"),
  29351. weight: math.unit(300, "lb"),
  29352. name: "Front (NSFW)",
  29353. image: {
  29354. source: "./media/characters/sinja/front-nsfw.svg",
  29355. extra: 1393 / 1294,
  29356. bottom: 70 / 1463
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(2.3, "meters"),
  29361. weight: math.unit(300, "lb"),
  29362. name: "Back",
  29363. image: {
  29364. source: "./media/characters/sinja/back.svg",
  29365. extra: 1393 / 1294,
  29366. bottom: 70 / 1463
  29367. }
  29368. },
  29369. head: {
  29370. height: math.unit(1.771, "feet"),
  29371. name: "Head",
  29372. image: {
  29373. source: "./media/characters/sinja/head.svg"
  29374. }
  29375. },
  29376. slit: {
  29377. height: math.unit(0.8, "feet"),
  29378. name: "Slit",
  29379. image: {
  29380. source: "./media/characters/sinja/slit.svg"
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(2.3, "meters")
  29388. },
  29389. {
  29390. name: "Macro",
  29391. height: math.unit(91, "meters"),
  29392. default: true
  29393. },
  29394. {
  29395. name: "Megamacro",
  29396. height: math.unit(91440, "meters")
  29397. },
  29398. {
  29399. name: "Gigamacro",
  29400. height: math.unit(60960000, "meters")
  29401. },
  29402. {
  29403. name: "Teramacro",
  29404. height: math.unit(9144000000, "meters")
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(1.7, "meters"),
  29413. weight: math.unit(130, "lb"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/kyu/front.svg",
  29417. extra: 415 / 395,
  29418. bottom: 5 / 420
  29419. }
  29420. },
  29421. head: {
  29422. height: math.unit(1.75, "feet"),
  29423. name: "Head",
  29424. image: {
  29425. source: "./media/characters/kyu/head.svg"
  29426. }
  29427. },
  29428. foot: {
  29429. height: math.unit(0.81, "feet"),
  29430. name: "Foot",
  29431. image: {
  29432. source: "./media/characters/kyu/foot.svg"
  29433. }
  29434. },
  29435. },
  29436. [
  29437. {
  29438. name: "Normal",
  29439. height: math.unit(1.7, "meters")
  29440. },
  29441. {
  29442. name: "Macro",
  29443. height: math.unit(131, "feet"),
  29444. default: true
  29445. },
  29446. {
  29447. name: "Megamacro",
  29448. height: math.unit(91440, "meters")
  29449. },
  29450. {
  29451. name: "Gigamacro",
  29452. height: math.unit(60960000, "meters")
  29453. },
  29454. {
  29455. name: "Teramacro",
  29456. height: math.unit(9144000000, "meters")
  29457. },
  29458. ]
  29459. ))
  29460. characterMakers.push(() => makeCharacter(
  29461. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29462. {
  29463. front: {
  29464. height: math.unit(7 + 1 / 12, "feet"),
  29465. weight: math.unit(250, "lb"),
  29466. name: "Front",
  29467. image: {
  29468. source: "./media/characters/joey/front.svg",
  29469. extra: 1791 / 1537,
  29470. bottom: 28 / 1816
  29471. }
  29472. },
  29473. },
  29474. [
  29475. {
  29476. name: "Micro",
  29477. height: math.unit(3, "inches")
  29478. },
  29479. {
  29480. name: "Normal",
  29481. height: math.unit(7 + 1 / 12, "feet"),
  29482. default: true
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(165, "cm"),
  29491. weight: math.unit(140, "lb"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/sam-evans/front.svg",
  29495. extra: 3417 / 3230,
  29496. bottom: 41.3 / 3417
  29497. }
  29498. },
  29499. frontSixTails: {
  29500. height: math.unit(165, "cm"),
  29501. weight: math.unit(140, "lb"),
  29502. name: "Front-six-tails",
  29503. image: {
  29504. source: "./media/characters/sam-evans/front-six-tails.svg",
  29505. extra: 3417 / 3230,
  29506. bottom: 41.3 / 3417
  29507. }
  29508. },
  29509. back: {
  29510. height: math.unit(165, "cm"),
  29511. weight: math.unit(140, "lb"),
  29512. name: "Back",
  29513. image: {
  29514. source: "./media/characters/sam-evans/back.svg",
  29515. extra: 3227 / 3032,
  29516. bottom: 6.8 / 3234
  29517. }
  29518. },
  29519. face: {
  29520. height: math.unit(0.68, "feet"),
  29521. name: "Face",
  29522. image: {
  29523. source: "./media/characters/sam-evans/face.svg"
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Normal",
  29530. height: math.unit(165, "cm"),
  29531. default: true
  29532. },
  29533. {
  29534. name: "Macro",
  29535. height: math.unit(100, "meters")
  29536. },
  29537. {
  29538. name: "Macro+",
  29539. height: math.unit(800, "meters")
  29540. },
  29541. {
  29542. name: "Macro++",
  29543. height: math.unit(3, "km")
  29544. },
  29545. {
  29546. name: "Macro+++",
  29547. height: math.unit(30, "km")
  29548. },
  29549. ]
  29550. ))
  29551. characterMakers.push(() => makeCharacter(
  29552. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29553. {
  29554. front: {
  29555. height: math.unit(10, "feet"),
  29556. weight: math.unit(750, "lb"),
  29557. name: "Front",
  29558. image: {
  29559. source: "./media/characters/juliet-a/front.svg",
  29560. extra: 1766 / 1720,
  29561. bottom: 43 / 1809
  29562. }
  29563. },
  29564. back: {
  29565. height: math.unit(10, "feet"),
  29566. weight: math.unit(750, "lb"),
  29567. name: "Back",
  29568. image: {
  29569. source: "./media/characters/juliet-a/back.svg",
  29570. extra: 1781 / 1734,
  29571. bottom: 35 / 1810,
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(10, "feet"),
  29579. default: true
  29580. },
  29581. {
  29582. name: "Dragon Form",
  29583. height: math.unit(250, "feet")
  29584. },
  29585. {
  29586. name: "Macro",
  29587. height: math.unit(1000, "feet")
  29588. },
  29589. {
  29590. name: "Megamacro",
  29591. height: math.unit(10000, "feet")
  29592. }
  29593. ]
  29594. ))
  29595. characterMakers.push(() => makeCharacter(
  29596. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29597. {
  29598. regular: {
  29599. height: math.unit(7 + 3 / 12, "feet"),
  29600. weight: math.unit(260, "lb"),
  29601. name: "Regular",
  29602. image: {
  29603. source: "./media/characters/wild/regular.svg",
  29604. extra: 97.45 / 92,
  29605. bottom: 6.8 / 104.3
  29606. }
  29607. },
  29608. biggums: {
  29609. height: math.unit(8 + 6 / 12, "feet"),
  29610. weight: math.unit(425, "lb"),
  29611. name: "Biggums",
  29612. image: {
  29613. source: "./media/characters/wild/biggums.svg",
  29614. extra: 97.45 / 92,
  29615. bottom: 7.5 / 132.34
  29616. }
  29617. },
  29618. mawRegular: {
  29619. height: math.unit(1.24, "feet"),
  29620. name: "Maw (Regular)",
  29621. image: {
  29622. source: "./media/characters/wild/maw.svg"
  29623. }
  29624. },
  29625. mawBiggums: {
  29626. height: math.unit(1.47, "feet"),
  29627. name: "Maw (Biggums)",
  29628. image: {
  29629. source: "./media/characters/wild/maw.svg"
  29630. }
  29631. },
  29632. },
  29633. [
  29634. {
  29635. name: "Normal",
  29636. height: math.unit(7 + 3 / 12, "feet"),
  29637. default: true
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29643. {
  29644. front: {
  29645. height: math.unit(2.5, "meters"),
  29646. weight: math.unit(200, "kg"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/vidar/front.svg",
  29650. extra: 2994 / 2795,
  29651. bottom: 56 / 3061
  29652. }
  29653. },
  29654. back: {
  29655. height: math.unit(2.5, "meters"),
  29656. weight: math.unit(200, "kg"),
  29657. name: "Back",
  29658. image: {
  29659. source: "./media/characters/vidar/back.svg",
  29660. extra: 3131 / 2928,
  29661. bottom: 13.5 / 3141.5
  29662. }
  29663. },
  29664. feral: {
  29665. height: math.unit(2.5, "meters"),
  29666. weight: math.unit(2000, "kg"),
  29667. name: "Feral",
  29668. image: {
  29669. source: "./media/characters/vidar/feral.svg",
  29670. extra: 2790 / 1765,
  29671. bottom: 6 / 2796
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(2.5, "meters"),
  29679. default: true
  29680. },
  29681. {
  29682. name: "Macro",
  29683. height: math.unit(100, "meters")
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29689. {
  29690. front: {
  29691. height: math.unit(5 + 9 / 12, "feet"),
  29692. weight: math.unit(120, "lb"),
  29693. name: "Front",
  29694. image: {
  29695. source: "./media/characters/ash/front.svg",
  29696. extra: 2189 / 1961,
  29697. bottom: 5.2 / 2194
  29698. }
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Normal",
  29704. height: math.unit(5 + 9 / 12, "feet"),
  29705. default: true
  29706. },
  29707. ]
  29708. ))
  29709. characterMakers.push(() => makeCharacter(
  29710. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29711. {
  29712. front: {
  29713. height: math.unit(9, "feet"),
  29714. weight: math.unit(10000, "lb"),
  29715. name: "Front",
  29716. image: {
  29717. source: "./media/characters/gygabite/front.svg",
  29718. bottom: 31.7 / 537.8,
  29719. extra: 505 / 370
  29720. }
  29721. },
  29722. },
  29723. [
  29724. {
  29725. name: "Normal",
  29726. height: math.unit(9, "feet"),
  29727. default: true
  29728. },
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29733. {
  29734. front: {
  29735. height: math.unit(12, "feet"),
  29736. weight: math.unit(4000, "lb"),
  29737. name: "Front",
  29738. image: {
  29739. source: "./media/characters/p0tat0/front.svg",
  29740. extra: 1065 / 921,
  29741. bottom: 55.7 / 1121.25
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Normal",
  29748. height: math.unit(12, "feet"),
  29749. default: true
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29755. {
  29756. side: {
  29757. height: math.unit(6.5, "feet"),
  29758. weight: math.unit(800, "lb"),
  29759. name: "Side",
  29760. image: {
  29761. source: "./media/characters/dusk/side.svg",
  29762. extra: 615 / 373,
  29763. bottom: 53 / 664
  29764. }
  29765. },
  29766. sitting: {
  29767. height: math.unit(7, "feet"),
  29768. weight: math.unit(800, "lb"),
  29769. name: "Sitting",
  29770. image: {
  29771. source: "./media/characters/dusk/sitting.svg",
  29772. extra: 753 / 425,
  29773. bottom: 33 / 774
  29774. }
  29775. },
  29776. head: {
  29777. height: math.unit(6.1, "feet"),
  29778. name: "Head",
  29779. image: {
  29780. source: "./media/characters/dusk/head.svg"
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Normal",
  29787. height: math.unit(7, "feet"),
  29788. default: true
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29794. {
  29795. front: {
  29796. height: math.unit(15, "feet"),
  29797. weight: math.unit(7000, "lb"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/jay-direwolf/front.svg",
  29801. extra: 1810 / 1732,
  29802. bottom: 66 / 1892
  29803. }
  29804. },
  29805. },
  29806. [
  29807. {
  29808. name: "Normal",
  29809. height: math.unit(15, "feet"),
  29810. default: true
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29816. {
  29817. front: {
  29818. height: math.unit(4 + 9 / 12, "feet"),
  29819. weight: math.unit(130, "lb"),
  29820. name: "Front",
  29821. image: {
  29822. source: "./media/characters/anchovie/front.svg",
  29823. extra: 382 / 350,
  29824. bottom: 25 / 409
  29825. }
  29826. },
  29827. back: {
  29828. height: math.unit(4 + 9 / 12, "feet"),
  29829. weight: math.unit(130, "lb"),
  29830. name: "Back",
  29831. image: {
  29832. source: "./media/characters/anchovie/back.svg",
  29833. extra: 385 / 352,
  29834. bottom: 16.6 / 402
  29835. }
  29836. },
  29837. frontDressed: {
  29838. height: math.unit(4 + 9 / 12, "feet"),
  29839. weight: math.unit(130, "lb"),
  29840. name: "Front (Dressed)",
  29841. image: {
  29842. source: "./media/characters/anchovie/front-dressed.svg",
  29843. extra: 382 / 350,
  29844. bottom: 25 / 409
  29845. }
  29846. },
  29847. backDressed: {
  29848. height: math.unit(4 + 9 / 12, "feet"),
  29849. weight: math.unit(130, "lb"),
  29850. name: "Back (Dressed)",
  29851. image: {
  29852. source: "./media/characters/anchovie/back-dressed.svg",
  29853. extra: 385 / 352,
  29854. bottom: 16.6 / 402
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Micro",
  29861. height: math.unit(6.4, "inches")
  29862. },
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(4 + 9 / 12, "feet"),
  29866. default: true
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(2, "meters"),
  29875. weight: math.unit(180, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/acidrenamon/front.svg",
  29879. extra: 987 / 890,
  29880. bottom: 22.8 / 1009
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(2, "meters"),
  29885. weight: math.unit(180, "lb"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/acidrenamon/back.svg",
  29889. extra: 983 / 891,
  29890. bottom: 8.4 / 992
  29891. }
  29892. },
  29893. head: {
  29894. height: math.unit(1.92, "feet"),
  29895. name: "Head",
  29896. image: {
  29897. source: "./media/characters/acidrenamon/head.svg"
  29898. }
  29899. },
  29900. rump: {
  29901. height: math.unit(1.72, "feet"),
  29902. name: "Rump",
  29903. image: {
  29904. source: "./media/characters/acidrenamon/rump.svg"
  29905. }
  29906. },
  29907. tail: {
  29908. height: math.unit(4.2, "feet"),
  29909. name: "Tail",
  29910. image: {
  29911. source: "./media/characters/acidrenamon/tail.svg"
  29912. }
  29913. },
  29914. },
  29915. [
  29916. {
  29917. name: "Normal",
  29918. height: math.unit(2, "meters"),
  29919. default: true
  29920. },
  29921. {
  29922. name: "Minimacro",
  29923. height: math.unit(7, "meters")
  29924. },
  29925. {
  29926. name: "Macro",
  29927. height: math.unit(200, "meters")
  29928. },
  29929. {
  29930. name: "Gigamacro",
  29931. height: math.unit(0.2, "earths")
  29932. },
  29933. ]
  29934. ))
  29935. characterMakers.push(() => makeCharacter(
  29936. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29937. {
  29938. front: {
  29939. height: math.unit(152, "feet"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/kenzie-lee/front.svg",
  29943. extra: 1869/1774,
  29944. bottom: 128/1997
  29945. }
  29946. },
  29947. side: {
  29948. height: math.unit(86, "feet"),
  29949. name: "Side",
  29950. image: {
  29951. source: "./media/characters/kenzie-lee/side.svg",
  29952. extra: 930/815,
  29953. bottom: 177/1107
  29954. }
  29955. },
  29956. paw: {
  29957. height: math.unit(15, "feet"),
  29958. name: "Paw",
  29959. image: {
  29960. source: "./media/characters/kenzie-lee/paw.svg"
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Kenzie Flea",
  29967. height: math.unit(2, "mm"),
  29968. default: true
  29969. },
  29970. {
  29971. name: "Micro",
  29972. height: math.unit(2, "inches")
  29973. },
  29974. {
  29975. name: "Normal",
  29976. height: math.unit(152, "feet")
  29977. },
  29978. {
  29979. name: "Megamacro",
  29980. height: math.unit(7, "miles")
  29981. },
  29982. {
  29983. name: "Gigamacro",
  29984. height: math.unit(8000, "miles")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(6, "feet"),
  29993. name: "Front",
  29994. image: {
  29995. source: "./media/characters/withers/front.svg",
  29996. extra: 1935/1760,
  29997. bottom: 72/2007
  29998. }
  29999. },
  30000. back: {
  30001. height: math.unit(6, "feet"),
  30002. name: "Back",
  30003. image: {
  30004. source: "./media/characters/withers/back.svg",
  30005. extra: 1944/1792,
  30006. bottom: 12/1956
  30007. }
  30008. },
  30009. dressed: {
  30010. height: math.unit(6, "feet"),
  30011. name: "Dressed",
  30012. image: {
  30013. source: "./media/characters/withers/dressed.svg",
  30014. extra: 1937/1765,
  30015. bottom: 73/2010
  30016. }
  30017. },
  30018. phase1: {
  30019. height: math.unit(1.1, "feet"),
  30020. name: "Phase 1",
  30021. image: {
  30022. source: "./media/characters/withers/phase-1.svg",
  30023. extra: 1885/1232,
  30024. bottom: 0/1885
  30025. }
  30026. },
  30027. phase2: {
  30028. height: math.unit(1.05, "feet"),
  30029. name: "Phase 2",
  30030. image: {
  30031. source: "./media/characters/withers/phase-2.svg",
  30032. extra: 1792/1090,
  30033. bottom: 0/1792
  30034. }
  30035. },
  30036. partyWipe: {
  30037. height: math.unit(1.1, "feet"),
  30038. name: "Party Wipe",
  30039. image: {
  30040. source: "./media/characters/withers/party-wipe.svg",
  30041. extra: 1864/1207,
  30042. bottom: 0/1864
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Macro",
  30049. height: math.unit(167, "feet"),
  30050. default: true
  30051. },
  30052. {
  30053. name: "Megamacro",
  30054. height: math.unit(15, "miles")
  30055. }
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30060. {
  30061. front: {
  30062. height: math.unit(6 + 7 / 12, "feet"),
  30063. weight: math.unit(250, "lb"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/nemoskii/front.svg",
  30067. extra: 2270 / 1734,
  30068. bottom: 86 / 2354
  30069. }
  30070. },
  30071. back: {
  30072. height: math.unit(6 + 7 / 12, "feet"),
  30073. weight: math.unit(250, "lb"),
  30074. name: "Back",
  30075. image: {
  30076. source: "./media/characters/nemoskii/back.svg",
  30077. extra: 1845 / 1788,
  30078. bottom: 10.5 / 1852
  30079. }
  30080. },
  30081. head: {
  30082. height: math.unit(1.31, "feet"),
  30083. name: "Head",
  30084. image: {
  30085. source: "./media/characters/nemoskii/head.svg"
  30086. }
  30087. },
  30088. },
  30089. [
  30090. {
  30091. name: "Micro",
  30092. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30093. },
  30094. {
  30095. name: "Normal",
  30096. height: math.unit(6 + 7 / 12, "feet"),
  30097. default: true
  30098. },
  30099. {
  30100. name: "Macro",
  30101. height: math.unit((6 + 7 / 12) * 150, "feet")
  30102. },
  30103. {
  30104. name: "Macro+",
  30105. height: math.unit((6 + 7 / 12) * 500, "feet")
  30106. },
  30107. {
  30108. name: "Megamacro",
  30109. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(1, "mile"),
  30118. weight: math.unit(265261.9, "lb"),
  30119. name: "Front",
  30120. image: {
  30121. source: "./media/characters/shui/front.svg",
  30122. extra: 1633 / 1564,
  30123. bottom: 91.5 / 1726
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Macro",
  30130. height: math.unit(1, "mile"),
  30131. default: true
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(12 + 6 / 12, "feet"),
  30140. weight: math.unit(1342, "lb"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/arokh-takakura/front.svg",
  30144. extra: 1089 / 1043,
  30145. bottom: 77.4 / 1176.7
  30146. }
  30147. },
  30148. back: {
  30149. height: math.unit(12 + 6 / 12, "feet"),
  30150. weight: math.unit(1342, "lb"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/arokh-takakura/back.svg",
  30154. extra: 1046 / 1019,
  30155. bottom: 102 / 1150
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Big",
  30162. height: math.unit(12 + 6 / 12, "feet"),
  30163. default: true
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(5 + 6 / 12, "feet"),
  30172. weight: math.unit(150, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/theo/front.svg",
  30176. extra: 1184 / 1131,
  30177. bottom: 7.4 / 1191
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Micro",
  30184. height: math.unit(5, "inches")
  30185. },
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(5 + 6 / 12, "feet"),
  30189. default: true
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(5 + 9 / 12, "feet"),
  30198. weight: math.unit(130, "lb"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/cecelia-swift/front.svg",
  30202. extra: 502 / 484,
  30203. bottom: 23 / 523
  30204. }
  30205. },
  30206. back: {
  30207. height: math.unit(5 + 9 / 12, "feet"),
  30208. weight: math.unit(130, "lb"),
  30209. name: "Back",
  30210. image: {
  30211. source: "./media/characters/cecelia-swift/back.svg",
  30212. extra: 499 / 485,
  30213. bottom: 12 / 511
  30214. }
  30215. },
  30216. head: {
  30217. height: math.unit(0.90, "feet"),
  30218. name: "Head",
  30219. image: {
  30220. source: "./media/characters/cecelia-swift/head.svg"
  30221. }
  30222. },
  30223. rump: {
  30224. height: math.unit(1.75, "feet"),
  30225. name: "Rump",
  30226. image: {
  30227. source: "./media/characters/cecelia-swift/rump.svg"
  30228. }
  30229. },
  30230. },
  30231. [
  30232. {
  30233. name: "Normal",
  30234. height: math.unit(5 + 9 / 12, "feet"),
  30235. default: true
  30236. },
  30237. {
  30238. name: "Big",
  30239. height: math.unit(50, "feet")
  30240. },
  30241. {
  30242. name: "Macro",
  30243. height: math.unit(100, "feet")
  30244. },
  30245. {
  30246. name: "Macro+",
  30247. height: math.unit(500, "feet")
  30248. },
  30249. {
  30250. name: "Macro++",
  30251. height: math.unit(1000, "feet")
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30257. {
  30258. front: {
  30259. height: math.unit(6, "feet"),
  30260. weight: math.unit(150, "lb"),
  30261. name: "Front",
  30262. image: {
  30263. source: "./media/characters/kaunan/front.svg",
  30264. extra: 2890 / 2523,
  30265. bottom: 49 / 2939
  30266. }
  30267. },
  30268. },
  30269. [
  30270. {
  30271. name: "Macro",
  30272. height: math.unit(150, "feet"),
  30273. default: true
  30274. },
  30275. ]
  30276. ))
  30277. characterMakers.push(() => makeCharacter(
  30278. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30279. {
  30280. dressed: {
  30281. height: math.unit(175, "cm"),
  30282. weight: math.unit(60, "kg"),
  30283. name: "Dressed",
  30284. image: {
  30285. source: "./media/characters/fei/dressed.svg",
  30286. extra: 1402/1278,
  30287. bottom: 27/1429
  30288. }
  30289. },
  30290. nude: {
  30291. height: math.unit(175, "cm"),
  30292. weight: math.unit(60, "kg"),
  30293. name: "Nude",
  30294. image: {
  30295. source: "./media/characters/fei/nude.svg",
  30296. extra: 1402/1278,
  30297. bottom: 27/1429
  30298. }
  30299. },
  30300. heels: {
  30301. height: math.unit(0.466, "feet"),
  30302. name: "Heels",
  30303. image: {
  30304. source: "./media/characters/fei/heels.svg",
  30305. extra: 156/152,
  30306. bottom: 28/184
  30307. }
  30308. },
  30309. },
  30310. [
  30311. {
  30312. name: "Mortal",
  30313. height: math.unit(175, "cm")
  30314. },
  30315. {
  30316. name: "Normal",
  30317. height: math.unit(3500, "m")
  30318. },
  30319. {
  30320. name: "Stroll",
  30321. height: math.unit(18.4, "km"),
  30322. default: true
  30323. },
  30324. {
  30325. name: "Showoff",
  30326. height: math.unit(175, "km")
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(7, "feet"),
  30335. weight: math.unit(1000, "kg"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/edrax/front.svg",
  30339. extra: 2838 / 2550,
  30340. bottom: 130 / 2968
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Small",
  30347. height: math.unit(7, "feet")
  30348. },
  30349. {
  30350. name: "Normal",
  30351. height: math.unit(1500, "meters")
  30352. },
  30353. {
  30354. name: "Mega",
  30355. height: math.unit(12000000, "km"),
  30356. default: true
  30357. },
  30358. {
  30359. name: "Megamacro",
  30360. height: math.unit(10600000, "lightyears")
  30361. },
  30362. {
  30363. name: "Hypermacro",
  30364. height: math.unit(256, "yottameters")
  30365. },
  30366. ]
  30367. ))
  30368. characterMakers.push(() => makeCharacter(
  30369. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30370. {
  30371. front: {
  30372. height: math.unit(10, "feet"),
  30373. weight: math.unit(750, "lb"),
  30374. name: "Front",
  30375. image: {
  30376. source: "./media/characters/clove/front.svg",
  30377. extra: 1918/1751,
  30378. bottom: 52/1970
  30379. }
  30380. },
  30381. back: {
  30382. height: math.unit(10, "feet"),
  30383. weight: math.unit(750, "lb"),
  30384. name: "Back",
  30385. image: {
  30386. source: "./media/characters/clove/back.svg",
  30387. extra: 1912/1747,
  30388. bottom: 50/1962
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Normal",
  30395. height: math.unit(10, "feet"),
  30396. default: true
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(4, "feet"),
  30405. weight: math.unit(50, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/alex-rabbit/front.svg",
  30409. extra: 507 / 458,
  30410. bottom: 18.5 / 527
  30411. }
  30412. },
  30413. back: {
  30414. height: math.unit(4, "feet"),
  30415. weight: math.unit(50, "lb"),
  30416. name: "Back",
  30417. image: {
  30418. source: "./media/characters/alex-rabbit/back.svg",
  30419. extra: 502 / 460,
  30420. bottom: 18.9 / 521
  30421. }
  30422. },
  30423. },
  30424. [
  30425. {
  30426. name: "Normal",
  30427. height: math.unit(4, "feet"),
  30428. default: true
  30429. },
  30430. ]
  30431. ))
  30432. characterMakers.push(() => makeCharacter(
  30433. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30434. {
  30435. front: {
  30436. height: math.unit(1 + 3 / 12, "feet"),
  30437. weight: math.unit(80, "lb"),
  30438. name: "Front",
  30439. image: {
  30440. source: "./media/characters/zander-rose/front.svg",
  30441. extra: 916 / 797,
  30442. bottom: 17 / 933
  30443. }
  30444. },
  30445. back: {
  30446. height: math.unit(1 + 3 / 12, "feet"),
  30447. weight: math.unit(80, "lb"),
  30448. name: "Back",
  30449. image: {
  30450. source: "./media/characters/zander-rose/back.svg",
  30451. extra: 903 / 779,
  30452. bottom: 31 / 934
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(1 + 3 / 12, "feet"),
  30460. default: true
  30461. },
  30462. ]
  30463. ))
  30464. characterMakers.push(() => makeCharacter(
  30465. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30466. {
  30467. anthro: {
  30468. height: math.unit(6, "feet"),
  30469. weight: math.unit(150, "lb"),
  30470. name: "Anthro",
  30471. image: {
  30472. source: "./media/characters/razz/anthro.svg",
  30473. extra: 1437 / 1343,
  30474. bottom: 48 / 1485
  30475. }
  30476. },
  30477. feral: {
  30478. height: math.unit(6, "feet"),
  30479. weight: math.unit(150, "lb"),
  30480. name: "Feral",
  30481. image: {
  30482. source: "./media/characters/razz/feral.svg",
  30483. extra: 2569 / 1385,
  30484. bottom: 95 / 2664
  30485. }
  30486. },
  30487. },
  30488. [
  30489. {
  30490. name: "Normal",
  30491. height: math.unit(6, "feet"),
  30492. default: true
  30493. },
  30494. ]
  30495. ))
  30496. characterMakers.push(() => makeCharacter(
  30497. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30498. {
  30499. front: {
  30500. height: math.unit(9 + 4 / 12, "feet"),
  30501. weight: math.unit(500, "lb"),
  30502. name: "Front",
  30503. image: {
  30504. source: "./media/characters/morrigan/front.svg",
  30505. extra: 2707 / 2579,
  30506. bottom: 156 / 2863
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Normal",
  30513. height: math.unit(9 + 4 / 12, "feet"),
  30514. default: true
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30520. {
  30521. front: {
  30522. height: math.unit(5, "stories"),
  30523. weight: math.unit(4000, "lb"),
  30524. name: "Front",
  30525. image: {
  30526. source: "./media/characters/jenene/front.svg",
  30527. extra: 1780 / 1710,
  30528. bottom: 57 / 1837
  30529. }
  30530. },
  30531. },
  30532. [
  30533. {
  30534. name: "Normal",
  30535. height: math.unit(5, "stories"),
  30536. default: true
  30537. },
  30538. ]
  30539. ))
  30540. characterMakers.push(() => makeCharacter(
  30541. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30542. {
  30543. taurSfw: {
  30544. height: math.unit(10, "meters"),
  30545. weight: math.unit(17500, "kg"),
  30546. name: "Taur",
  30547. image: {
  30548. source: "./media/characters/faey/taur-sfw.svg",
  30549. extra: 1200 / 968,
  30550. bottom: 41 / 1241
  30551. }
  30552. },
  30553. chestmaw: {
  30554. height: math.unit(2.01, "meters"),
  30555. name: "Chestmaw",
  30556. image: {
  30557. source: "./media/characters/faey/chestmaw.svg"
  30558. }
  30559. },
  30560. foot: {
  30561. height: math.unit(2.43, "meters"),
  30562. name: "Foot",
  30563. image: {
  30564. source: "./media/characters/faey/foot.svg"
  30565. }
  30566. },
  30567. jaws: {
  30568. height: math.unit(1.66, "meters"),
  30569. name: "Jaws",
  30570. image: {
  30571. source: "./media/characters/faey/jaws.svg"
  30572. }
  30573. },
  30574. tongues: {
  30575. height: math.unit(2.01, "meters"),
  30576. name: "Tongues",
  30577. image: {
  30578. source: "./media/characters/faey/tongues.svg"
  30579. }
  30580. },
  30581. },
  30582. [
  30583. {
  30584. name: "Small",
  30585. height: math.unit(10, "meters"),
  30586. default: true
  30587. },
  30588. {
  30589. name: "Big",
  30590. height: math.unit(500000, "km")
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30596. {
  30597. front: {
  30598. height: math.unit(7, "feet"),
  30599. weight: math.unit(275, "lb"),
  30600. name: "Front",
  30601. image: {
  30602. source: "./media/characters/roku/front.svg",
  30603. extra: 903 / 878,
  30604. bottom: 37 / 940
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(7, "feet"),
  30612. default: true
  30613. },
  30614. {
  30615. name: "Macro",
  30616. height: math.unit(500, "feet")
  30617. },
  30618. {
  30619. name: "Megamacro",
  30620. height: math.unit(200, "miles")
  30621. },
  30622. ]
  30623. ))
  30624. characterMakers.push(() => makeCharacter(
  30625. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30626. {
  30627. front: {
  30628. height: math.unit(6 + 2 / 12, "feet"),
  30629. weight: math.unit(150, "lb"),
  30630. name: "Front",
  30631. image: {
  30632. source: "./media/characters/lira/front.svg",
  30633. extra: 1727 / 1605,
  30634. bottom: 26 / 1753
  30635. }
  30636. },
  30637. back: {
  30638. height: math.unit(6 + 2 / 12, "feet"),
  30639. weight: math.unit(150, "lb"),
  30640. name: "Back",
  30641. image: {
  30642. source: "./media/characters/lira/back.svg",
  30643. extra: 1713/1621,
  30644. bottom: 20/1733
  30645. }
  30646. },
  30647. hand: {
  30648. height: math.unit(0.75, "feet"),
  30649. name: "Hand",
  30650. image: {
  30651. source: "./media/characters/lira/hand.svg"
  30652. }
  30653. },
  30654. maw: {
  30655. height: math.unit(0.65, "feet"),
  30656. name: "Maw",
  30657. image: {
  30658. source: "./media/characters/lira/maw.svg"
  30659. }
  30660. },
  30661. pawDigi: {
  30662. height: math.unit(1.6, "feet"),
  30663. name: "Paw Digi",
  30664. image: {
  30665. source: "./media/characters/lira/paw-digi.svg"
  30666. }
  30667. },
  30668. pawPlanti: {
  30669. height: math.unit(1.4, "feet"),
  30670. name: "Paw Planti",
  30671. image: {
  30672. source: "./media/characters/lira/paw-planti.svg"
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(6 + 2 / 12, "feet"),
  30680. default: true
  30681. },
  30682. {
  30683. name: "Macro",
  30684. height: math.unit(100, "feet")
  30685. },
  30686. {
  30687. name: "Macro²",
  30688. height: math.unit(1600, "feet")
  30689. },
  30690. {
  30691. name: "Planetary",
  30692. height: math.unit(20, "earths")
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30698. {
  30699. front: {
  30700. height: math.unit(6, "feet"),
  30701. weight: math.unit(150, "lb"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/hadjet/front.svg",
  30705. extra: 1480 / 1346,
  30706. bottom: 26 / 1506
  30707. }
  30708. },
  30709. frontNsfw: {
  30710. height: math.unit(6, "feet"),
  30711. weight: math.unit(150, "lb"),
  30712. name: "Front (NSFW)",
  30713. image: {
  30714. source: "./media/characters/hadjet/front-nsfw.svg",
  30715. extra: 1440 / 1358,
  30716. bottom: 52 / 1492
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Macro",
  30723. height: math.unit(10, "stories"),
  30724. default: true
  30725. },
  30726. {
  30727. name: "Megamacro",
  30728. height: math.unit(1.5, "miles")
  30729. },
  30730. {
  30731. name: "Megamacro+",
  30732. height: math.unit(5, "miles")
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30738. {
  30739. side: {
  30740. height: math.unit(106, "feet"),
  30741. weight: math.unit(500, "tonnes"),
  30742. name: "Side",
  30743. image: {
  30744. source: "./media/characters/kodran/side.svg",
  30745. extra: 553 / 480,
  30746. bottom: 33 / 586
  30747. }
  30748. },
  30749. front: {
  30750. height: math.unit(132, "feet"),
  30751. weight: math.unit(500, "tonnes"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/kodran/front.svg",
  30755. extra: 667 / 643,
  30756. bottom: 42 / 709
  30757. }
  30758. },
  30759. flying: {
  30760. height: math.unit(350, "feet"),
  30761. weight: math.unit(500, "tonnes"),
  30762. name: "Flying",
  30763. image: {
  30764. source: "./media/characters/kodran/flying.svg"
  30765. }
  30766. },
  30767. foot: {
  30768. height: math.unit(33, "feet"),
  30769. name: "Foot",
  30770. image: {
  30771. source: "./media/characters/kodran/foot.svg"
  30772. }
  30773. },
  30774. footFront: {
  30775. height: math.unit(19, "feet"),
  30776. name: "Foot (Front)",
  30777. image: {
  30778. source: "./media/characters/kodran/foot-front.svg",
  30779. extra: 261 / 261,
  30780. bottom: 91 / 352
  30781. }
  30782. },
  30783. headFront: {
  30784. height: math.unit(53, "feet"),
  30785. name: "Head (Front)",
  30786. image: {
  30787. source: "./media/characters/kodran/head-front.svg"
  30788. }
  30789. },
  30790. headSide: {
  30791. height: math.unit(65, "feet"),
  30792. name: "Head (Side)",
  30793. image: {
  30794. source: "./media/characters/kodran/head-side.svg"
  30795. }
  30796. },
  30797. throat: {
  30798. height: math.unit(79, "feet"),
  30799. name: "Throat",
  30800. image: {
  30801. source: "./media/characters/kodran/throat.svg"
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Large",
  30808. height: math.unit(106, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30815. {
  30816. side: {
  30817. height: math.unit(11, "feet"),
  30818. weight: math.unit(150, "lb"),
  30819. name: "Side",
  30820. image: {
  30821. source: "./media/characters/pyxaron/side.svg",
  30822. extra: 305 / 195,
  30823. bottom: 17 / 322
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(11, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(6, "feet"),
  30840. weight: math.unit(150, "lb"),
  30841. name: "Front",
  30842. image: {
  30843. source: "./media/characters/meep/front.svg",
  30844. extra: 88 / 80,
  30845. bottom: 6 / 94
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Fun Sized",
  30852. height: math.unit(2, "inches"),
  30853. default: true
  30854. },
  30855. {
  30856. name: "Friend Sized",
  30857. height: math.unit(8, "inches")
  30858. },
  30859. ]
  30860. ))
  30861. characterMakers.push(() => makeCharacter(
  30862. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30863. {
  30864. front: {
  30865. height: math.unit(15, "feet"),
  30866. weight: math.unit(2500, "lb"),
  30867. name: "Front",
  30868. image: {
  30869. source: "./media/characters/holly-rabbit/front.svg",
  30870. extra: 1433 / 1233,
  30871. bottom: 125 / 1558
  30872. }
  30873. },
  30874. dick: {
  30875. height: math.unit(4.6, "feet"),
  30876. name: "Dick",
  30877. image: {
  30878. source: "./media/characters/holly-rabbit/dick.svg"
  30879. }
  30880. },
  30881. },
  30882. [
  30883. {
  30884. name: "Normal",
  30885. height: math.unit(15, "feet"),
  30886. default: true
  30887. },
  30888. {
  30889. name: "Macro",
  30890. height: math.unit(250, "feet")
  30891. },
  30892. {
  30893. name: "Macro+",
  30894. height: math.unit(2500, "feet")
  30895. },
  30896. ]
  30897. ))
  30898. characterMakers.push(() => makeCharacter(
  30899. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30900. {
  30901. front: {
  30902. height: math.unit(3.02, "meters"),
  30903. weight: math.unit(500, "kg"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/drena/front.svg",
  30907. extra: 282 / 243,
  30908. bottom: 8 / 290
  30909. }
  30910. },
  30911. side: {
  30912. height: math.unit(3.02, "meters"),
  30913. weight: math.unit(500, "kg"),
  30914. name: "Side",
  30915. image: {
  30916. source: "./media/characters/drena/side.svg",
  30917. extra: 280 / 245,
  30918. bottom: 10 / 290
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(3.02, "meters"),
  30923. weight: math.unit(500, "kg"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/drena/back.svg",
  30927. extra: 278 / 243,
  30928. bottom: 2 / 280
  30929. }
  30930. },
  30931. foot: {
  30932. height: math.unit(0.75, "meters"),
  30933. name: "Foot",
  30934. image: {
  30935. source: "./media/characters/drena/foot.svg"
  30936. }
  30937. },
  30938. maw: {
  30939. height: math.unit(0.82, "meters"),
  30940. name: "Maw",
  30941. image: {
  30942. source: "./media/characters/drena/maw.svg"
  30943. }
  30944. },
  30945. eating: {
  30946. height: math.unit(0.75, "meters"),
  30947. name: "Eating",
  30948. image: {
  30949. source: "./media/characters/drena/eating.svg"
  30950. }
  30951. },
  30952. rump: {
  30953. height: math.unit(0.93, "meters"),
  30954. name: "Rump",
  30955. image: {
  30956. source: "./media/characters/drena/rump.svg"
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(3.02, "meters"),
  30964. default: true
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(6 + 4 / 12, "feet"),
  30973. weight: math.unit(250, "lb"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/remmyzilla/front.svg",
  30977. extra: 4033 / 3588,
  30978. bottom: 123 / 4156
  30979. }
  30980. },
  30981. back: {
  30982. height: math.unit(6 + 4 / 12, "feet"),
  30983. weight: math.unit(250, "lb"),
  30984. name: "Back",
  30985. image: {
  30986. source: "./media/characters/remmyzilla/back.svg",
  30987. extra: 2687 / 2555,
  30988. bottom: 48 / 2735
  30989. }
  30990. },
  30991. paw: {
  30992. height: math.unit(1.73, "feet"),
  30993. name: "Paw",
  30994. image: {
  30995. source: "./media/characters/remmyzilla/paw.svg"
  30996. },
  30997. extraAttributes: {
  30998. "toeSize": {
  30999. name: "Toe Size",
  31000. power: 2,
  31001. type: "area",
  31002. base: math.unit(0.0035, "m^2")
  31003. },
  31004. "padSize": {
  31005. name: "Pad Size",
  31006. power: 2,
  31007. type: "area",
  31008. base: math.unit(0.015, "m^2")
  31009. },
  31010. "pawsize": {
  31011. name: "Paw Size",
  31012. power: 2,
  31013. type: "area",
  31014. base: math.unit(0.072, "m^2")
  31015. },
  31016. }
  31017. },
  31018. maw: {
  31019. height: math.unit(1.73, "feet"),
  31020. name: "Maw",
  31021. image: {
  31022. source: "./media/characters/remmyzilla/maw.svg"
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(6 + 4 / 12, "feet")
  31030. },
  31031. {
  31032. name: "Minimacro",
  31033. height: math.unit(12 + 8 / 12, "feet")
  31034. },
  31035. {
  31036. name: "Normal",
  31037. height: math.unit(640, "feet"),
  31038. default: true
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(6400, "feet")
  31043. },
  31044. {
  31045. name: "Gigamacro",
  31046. height: math.unit(64000, "miles")
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(2.5, "meters"),
  31055. weight: math.unit(300, "lb"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/lawrence/front.svg",
  31059. extra: 357 / 335,
  31060. bottom: 30 / 387
  31061. }
  31062. },
  31063. back: {
  31064. height: math.unit(2.5, "meters"),
  31065. weight: math.unit(300, "lb"),
  31066. name: "Back",
  31067. image: {
  31068. source: "./media/characters/lawrence/back.svg",
  31069. extra: 357 / 338,
  31070. bottom: 16 / 373
  31071. }
  31072. },
  31073. head: {
  31074. height: math.unit(0.9, "meter"),
  31075. name: "Head",
  31076. image: {
  31077. source: "./media/characters/lawrence/head.svg"
  31078. }
  31079. },
  31080. maw: {
  31081. height: math.unit(0.7, "meter"),
  31082. name: "Maw",
  31083. image: {
  31084. source: "./media/characters/lawrence/maw.svg"
  31085. }
  31086. },
  31087. footBottom: {
  31088. height: math.unit(0.5, "meter"),
  31089. name: "Foot (Bottom)",
  31090. image: {
  31091. source: "./media/characters/lawrence/foot-bottom.svg"
  31092. }
  31093. },
  31094. footTop: {
  31095. height: math.unit(0.5, "meter"),
  31096. name: "Foot (Top)",
  31097. image: {
  31098. source: "./media/characters/lawrence/foot-top.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(2.5, "meters"),
  31106. default: true
  31107. },
  31108. {
  31109. name: "Macro",
  31110. height: math.unit(95, "meters")
  31111. },
  31112. {
  31113. name: "Megamacro",
  31114. height: math.unit(150, "km")
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31120. {
  31121. front: {
  31122. height: math.unit(4.2, "meters"),
  31123. preyCapacity: math.unit(50, "m^3"),
  31124. weight: math.unit(30, "tonnes"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/sydney/front.svg",
  31128. extra: 1177/1129,
  31129. bottom: 197/1374
  31130. },
  31131. extraAttributes: {
  31132. "length": {
  31133. name: "Length",
  31134. power: 1,
  31135. type: "length",
  31136. base: math.unit(21, "meters")
  31137. },
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Normal",
  31144. height: math.unit(4.2, "meters"),
  31145. default: true
  31146. },
  31147. ]
  31148. ))
  31149. characterMakers.push(() => makeCharacter(
  31150. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31151. {
  31152. back: {
  31153. height: math.unit(201, "feet"),
  31154. name: "Back",
  31155. image: {
  31156. source: "./media/characters/jessica/back.svg",
  31157. extra: 273 / 259,
  31158. bottom: 7 / 280
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(201, "feet"),
  31166. default: true
  31167. },
  31168. {
  31169. name: "Megamacro",
  31170. height: math.unit(8, "miles")
  31171. },
  31172. ]
  31173. ))
  31174. characterMakers.push(() => makeCharacter(
  31175. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31176. {
  31177. side: {
  31178. height: math.unit(5.6, "m"),
  31179. weight: math.unit(8000, "kg"),
  31180. name: "Side",
  31181. image: {
  31182. source: "./media/characters/victoria/side.svg",
  31183. extra: 1542/1229,
  31184. bottom: 124/1666
  31185. }
  31186. },
  31187. maw: {
  31188. height: math.unit(7.14, "feet"),
  31189. name: "Maw",
  31190. image: {
  31191. source: "./media/characters/victoria/maw.svg"
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Normal",
  31198. height: math.unit(5.6, "m"),
  31199. default: true
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31205. {
  31206. front: {
  31207. height: math.unit(5 + 6 / 12, "feet"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/cat/front.svg",
  31211. extra: 1449/1295,
  31212. bottom: 34/1483
  31213. },
  31214. form: "cat",
  31215. default: true
  31216. },
  31217. back: {
  31218. height: math.unit(5 + 6 / 12, "feet"),
  31219. name: "Back",
  31220. image: {
  31221. source: "./media/characters/cat/back.svg",
  31222. extra: 1466/1301,
  31223. bottom: 19/1485
  31224. },
  31225. form: "cat"
  31226. },
  31227. taur: {
  31228. height: math.unit(7, "feet"),
  31229. name: "Taur",
  31230. image: {
  31231. source: "./media/characters/cat/taur.svg",
  31232. extra: 1389/1233,
  31233. bottom: 83/1472
  31234. },
  31235. form: "taur",
  31236. default: true
  31237. },
  31238. lucarioFront: {
  31239. height: math.unit(4, "feet"),
  31240. name: "Lucario (Front)",
  31241. image: {
  31242. source: "./media/characters/cat/lucario-front.svg",
  31243. extra: 1149/1019,
  31244. bottom: 84/1233
  31245. },
  31246. form: "lucario",
  31247. default: true
  31248. },
  31249. lucarioBack: {
  31250. height: math.unit(4, "feet"),
  31251. name: "Lucario (Back)",
  31252. image: {
  31253. source: "./media/characters/cat/lucario-back.svg",
  31254. extra: 1190/1059,
  31255. bottom: 33/1223
  31256. },
  31257. form: "lucario"
  31258. },
  31259. megaLucario: {
  31260. height: math.unit(4, "feet"),
  31261. name: "Mega Lucario",
  31262. image: {
  31263. source: "./media/characters/cat/mega-lucario.svg",
  31264. extra: 1515 / 1319,
  31265. bottom: 63 / 1578
  31266. },
  31267. form: "lucario"
  31268. },
  31269. nickit: {
  31270. height: math.unit(2, "feet"),
  31271. name: "Nickit",
  31272. image: {
  31273. source: "./media/characters/cat/nickit.svg",
  31274. extra: 1980 / 1585,
  31275. bottom: 102 / 2082
  31276. },
  31277. form: "nickit",
  31278. default: true
  31279. },
  31280. lopunnyFront: {
  31281. height: math.unit(5, "feet"),
  31282. name: "Lopunny (Front)",
  31283. image: {
  31284. source: "./media/characters/cat/lopunny-front.svg",
  31285. extra: 1782 / 1469,
  31286. bottom: 38 / 1820
  31287. },
  31288. form: "lopunny",
  31289. default: true
  31290. },
  31291. lopunnyBack: {
  31292. height: math.unit(5, "feet"),
  31293. name: "Lopunny (Back)",
  31294. image: {
  31295. source: "./media/characters/cat/lopunny-back.svg",
  31296. extra: 1660 / 1490,
  31297. bottom: 25 / 1685
  31298. },
  31299. form: "lopunny"
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Really small",
  31305. height: math.unit(1, "nm")
  31306. },
  31307. {
  31308. name: "Micro",
  31309. height: math.unit(5, "inches")
  31310. },
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(5 + 6 / 12, "feet"),
  31314. default: true
  31315. },
  31316. {
  31317. name: "Macro",
  31318. height: math.unit(50, "feet")
  31319. },
  31320. {
  31321. name: "Macro+",
  31322. height: math.unit(150, "feet")
  31323. },
  31324. {
  31325. name: "Megamacro",
  31326. height: math.unit(100, "miles")
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(63.4, "meters"),
  31335. weight: math.unit(3.28349e+6, "kilograms"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/kirina-violet/front.svg",
  31339. extra: 2812 / 2725,
  31340. bottom: 0 / 2812
  31341. }
  31342. },
  31343. back: {
  31344. height: math.unit(63.4, "meters"),
  31345. weight: math.unit(3.28349e+6, "kilograms"),
  31346. name: "Back",
  31347. image: {
  31348. source: "./media/characters/kirina-violet/back.svg",
  31349. extra: 2812 / 2725,
  31350. bottom: 0 / 2812
  31351. }
  31352. },
  31353. mouth: {
  31354. height: math.unit(4.35, "meters"),
  31355. name: "Mouth",
  31356. image: {
  31357. source: "./media/characters/kirina-violet/mouth.svg"
  31358. }
  31359. },
  31360. paw: {
  31361. height: math.unit(5.6, "meters"),
  31362. name: "Paw",
  31363. image: {
  31364. source: "./media/characters/kirina-violet/paw.svg"
  31365. }
  31366. },
  31367. tail: {
  31368. height: math.unit(18, "meters"),
  31369. name: "Tail",
  31370. image: {
  31371. source: "./media/characters/kirina-violet/tail.svg"
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(63.4, "meters"),
  31379. default: true
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31385. {
  31386. front: {
  31387. height: math.unit(75, "feet"),
  31388. name: "Front",
  31389. image: {
  31390. source: "./media/characters/cat-gigachu/front.svg",
  31391. extra: 1239/1027,
  31392. bottom: 32/1271
  31393. }
  31394. },
  31395. back: {
  31396. height: math.unit(75, "feet"),
  31397. name: "Back",
  31398. image: {
  31399. source: "./media/characters/cat-gigachu/back.svg",
  31400. extra: 1229/1030,
  31401. bottom: 9/1238
  31402. }
  31403. },
  31404. },
  31405. [
  31406. {
  31407. name: "Dynamax",
  31408. height: math.unit(75, "feet"),
  31409. default: true
  31410. },
  31411. ]
  31412. ))
  31413. characterMakers.push(() => makeCharacter(
  31414. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31415. {
  31416. front: {
  31417. height: math.unit(6, "feet"),
  31418. weight: math.unit(150, "lb"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/sfaiyan/front.svg",
  31422. extra: 999 / 978,
  31423. bottom: 5 / 1004
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Normal",
  31430. height: math.unit(1.82, "meters")
  31431. },
  31432. {
  31433. name: "Giant",
  31434. height: math.unit(2.27, "km"),
  31435. default: true
  31436. },
  31437. ]
  31438. ))
  31439. characterMakers.push(() => makeCharacter(
  31440. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31441. {
  31442. front: {
  31443. height: math.unit(179, "cm"),
  31444. weight: math.unit(100, "kg"),
  31445. name: "Front",
  31446. image: {
  31447. source: "./media/characters/raunehkeli/front.svg",
  31448. extra: 1934 / 1926,
  31449. bottom: 0 / 1934
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(179, "cm")
  31457. },
  31458. {
  31459. name: "Maximum",
  31460. height: math.unit(575, "meters"),
  31461. default: true
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6, "feet"),
  31470. weight: math.unit(150, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31474. extra: 2625 / 2518,
  31475. bottom: 60 / 2685
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(6 + 2 / 12, "feet")
  31483. },
  31484. {
  31485. name: "Macro",
  31486. height: math.unit(1180, "feet"),
  31487. default: true
  31488. },
  31489. ]
  31490. ))
  31491. characterMakers.push(() => makeCharacter(
  31492. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31493. {
  31494. front: {
  31495. height: math.unit(5 + 6 / 12, "feet"),
  31496. weight: math.unit(108, "lb"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/lilith-zott/front.svg",
  31500. extra: 2510 / 2238,
  31501. bottom: 100 / 2610
  31502. }
  31503. },
  31504. frontDressed: {
  31505. height: math.unit(5 + 6 / 12, "feet"),
  31506. weight: math.unit(108, "lb"),
  31507. name: "Front (Dressed)",
  31508. image: {
  31509. source: "./media/characters/lilith-zott/front-dressed.svg",
  31510. extra: 2510 / 2238,
  31511. bottom: 100 / 2610
  31512. }
  31513. },
  31514. },
  31515. [
  31516. {
  31517. name: "Normal",
  31518. height: math.unit(5 + 6 / 12, "feet")
  31519. },
  31520. {
  31521. name: "Macro",
  31522. height: math.unit(1030, "feet"),
  31523. default: true
  31524. },
  31525. ]
  31526. ))
  31527. characterMakers.push(() => makeCharacter(
  31528. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31529. {
  31530. front: {
  31531. height: math.unit(6, "feet"),
  31532. weight: math.unit(150, "lb"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31536. extra: 2567 / 2435,
  31537. bottom: 39 / 2606
  31538. }
  31539. },
  31540. frontSuper: {
  31541. height: math.unit(6, "feet"),
  31542. name: "Front (Super)",
  31543. image: {
  31544. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31545. extra: 2567 / 2435,
  31546. bottom: 39 / 2606
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Normal",
  31553. height: math.unit(5 + 10 / 12, "feet")
  31554. },
  31555. {
  31556. name: "Macro",
  31557. height: math.unit(1100, "feet"),
  31558. default: true
  31559. },
  31560. ]
  31561. ))
  31562. characterMakers.push(() => makeCharacter(
  31563. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31564. {
  31565. front: {
  31566. height: math.unit(100, "miles"),
  31567. name: "Front",
  31568. image: {
  31569. source: "./media/characters/sona/front.svg",
  31570. extra: 2433 / 2201,
  31571. bottom: 53 / 2486
  31572. }
  31573. },
  31574. foot: {
  31575. height: math.unit(16.1, "miles"),
  31576. name: "Foot",
  31577. image: {
  31578. source: "./media/characters/sona/foot.svg"
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Macro",
  31585. height: math.unit(100, "miles"),
  31586. default: true
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31592. {
  31593. front: {
  31594. height: math.unit(6, "feet"),
  31595. weight: math.unit(150, "lb"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/bailey/front.svg",
  31599. extra: 1778 / 1724,
  31600. bottom: 30 / 1808
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Micro",
  31607. height: math.unit(4, "inches")
  31608. },
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(5 + 5 / 12, "feet"),
  31612. default: true
  31613. },
  31614. {
  31615. name: "Macro",
  31616. height: math.unit(250, "feet")
  31617. },
  31618. {
  31619. name: "Megamacro",
  31620. height: math.unit(100, "miles")
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(5 + 2 / 12, "feet"),
  31629. weight: math.unit(120, "lb"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/snaps/front.svg",
  31633. extra: 2370 / 2177,
  31634. bottom: 48 / 2418
  31635. }
  31636. },
  31637. back: {
  31638. height: math.unit(5 + 2 / 12, "feet"),
  31639. weight: math.unit(120, "lb"),
  31640. name: "Back",
  31641. image: {
  31642. source: "./media/characters/snaps/back.svg",
  31643. extra: 2408 / 2258,
  31644. bottom: 15 / 2423
  31645. }
  31646. },
  31647. },
  31648. [
  31649. {
  31650. name: "Micro",
  31651. height: math.unit(9, "inches")
  31652. },
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(5 + 2 / 12, "feet"),
  31656. default: true
  31657. },
  31658. {
  31659. name: "Mini Macro",
  31660. height: math.unit(10, "feet")
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(1.8, "meters"),
  31669. weight: math.unit(85, "kg"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/azteck/front.svg",
  31673. extra: 2815 / 2625,
  31674. bottom: 89 / 2904
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(1.8, "meters"),
  31679. weight: math.unit(85, "kg"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/azteck/back.svg",
  31683. extra: 2856 / 2648,
  31684. bottom: 85 / 2941
  31685. }
  31686. },
  31687. frontDressed: {
  31688. height: math.unit(1.8, "meters"),
  31689. weight: math.unit(85, "kg"),
  31690. name: "Front (Dressed)",
  31691. image: {
  31692. source: "./media/characters/azteck/front-dressed.svg",
  31693. extra: 2147 / 2003,
  31694. bottom: 68 / 2215
  31695. }
  31696. },
  31697. head: {
  31698. height: math.unit(0.47, "meters"),
  31699. weight: math.unit(85, "kg"),
  31700. name: "Head",
  31701. image: {
  31702. source: "./media/characters/azteck/head.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Bite sized",
  31709. height: math.unit(16, "cm")
  31710. },
  31711. {
  31712. name: "Normal",
  31713. height: math.unit(1.8, "meters"),
  31714. default: true
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(6, "feet"),
  31723. weight: math.unit(150, "lb"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/pidge/front.svg",
  31727. extra: 1936/1820,
  31728. bottom: 0/1936
  31729. }
  31730. },
  31731. back: {
  31732. height: math.unit(6, "feet"),
  31733. weight: math.unit(150, "lb"),
  31734. name: "Back",
  31735. image: {
  31736. source: "./media/characters/pidge/back.svg",
  31737. extra: 1938/1843,
  31738. bottom: 0/1938
  31739. }
  31740. },
  31741. casual: {
  31742. height: math.unit(6, "feet"),
  31743. weight: math.unit(150, "lb"),
  31744. name: "Casual",
  31745. image: {
  31746. source: "./media/characters/pidge/casual.svg",
  31747. extra: 1936/1820,
  31748. bottom: 0/1936
  31749. }
  31750. },
  31751. tech: {
  31752. height: math.unit(6, "feet"),
  31753. weight: math.unit(150, "lb"),
  31754. name: "Tech",
  31755. image: {
  31756. source: "./media/characters/pidge/tech.svg",
  31757. extra: 1802/1682,
  31758. bottom: 0/1802
  31759. }
  31760. },
  31761. head: {
  31762. height: math.unit(1.61, "feet"),
  31763. name: "Head",
  31764. image: {
  31765. source: "./media/characters/pidge/head.svg"
  31766. }
  31767. },
  31768. collar: {
  31769. height: math.unit(0.82, "feet"),
  31770. name: "Collar",
  31771. image: {
  31772. source: "./media/characters/pidge/collar.svg"
  31773. }
  31774. },
  31775. },
  31776. [
  31777. {
  31778. name: "Macro",
  31779. height: math.unit(2, "mile"),
  31780. default: true
  31781. },
  31782. {
  31783. name: "PUPPY",
  31784. height: math.unit(20, "miles")
  31785. },
  31786. ]
  31787. ))
  31788. characterMakers.push(() => makeCharacter(
  31789. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31790. {
  31791. front: {
  31792. height: math.unit(6, "feet"),
  31793. weight: math.unit(150, "lb"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/en/front.svg",
  31797. extra: 1697 / 1563,
  31798. bottom: 103 / 1800
  31799. }
  31800. },
  31801. back: {
  31802. height: math.unit(6, "feet"),
  31803. weight: math.unit(150, "lb"),
  31804. name: "Back",
  31805. image: {
  31806. source: "./media/characters/en/back.svg",
  31807. extra: 1700 / 1570,
  31808. bottom: 51 / 1751
  31809. }
  31810. },
  31811. frontDressed: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(150, "lb"),
  31814. name: "Front (Dressed)",
  31815. image: {
  31816. source: "./media/characters/en/front-dressed.svg",
  31817. extra: 1697 / 1563,
  31818. bottom: 103 / 1800
  31819. }
  31820. },
  31821. backDressed: {
  31822. height: math.unit(6, "feet"),
  31823. weight: math.unit(150, "lb"),
  31824. name: "Back (Dressed)",
  31825. image: {
  31826. source: "./media/characters/en/back-dressed.svg",
  31827. extra: 1700 / 1570,
  31828. bottom: 51 / 1751
  31829. }
  31830. },
  31831. },
  31832. [
  31833. {
  31834. name: "Macro",
  31835. height: math.unit(210, "feet"),
  31836. default: true
  31837. },
  31838. ]
  31839. ))
  31840. characterMakers.push(() => makeCharacter(
  31841. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31842. {
  31843. front: {
  31844. height: math.unit(6, "feet"),
  31845. weight: math.unit(150, "lb"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/haze-orris/front.svg",
  31849. extra: 3975 / 3525,
  31850. bottom: 137 / 4112
  31851. }
  31852. },
  31853. },
  31854. [
  31855. {
  31856. name: "Micro",
  31857. height: math.unit(150, "mm"),
  31858. default: true
  31859. },
  31860. ]
  31861. ))
  31862. characterMakers.push(() => makeCharacter(
  31863. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31864. {
  31865. front: {
  31866. height: math.unit(6, "feet"),
  31867. weight: math.unit(150, "lb"),
  31868. name: "Front",
  31869. image: {
  31870. source: "./media/characters/casselene-yaro/front.svg",
  31871. extra: 4721 / 4541,
  31872. bottom: 82 / 4803
  31873. }
  31874. },
  31875. back: {
  31876. height: math.unit(6, "feet"),
  31877. weight: math.unit(150, "lb"),
  31878. name: "Back",
  31879. image: {
  31880. source: "./media/characters/casselene-yaro/back.svg",
  31881. extra: 4569 / 4377,
  31882. bottom: 69 / 4638
  31883. }
  31884. },
  31885. dressed: {
  31886. height: math.unit(6, "feet"),
  31887. weight: math.unit(150, "lb"),
  31888. name: "Dressed",
  31889. image: {
  31890. source: "./media/characters/casselene-yaro/dressed.svg",
  31891. extra: 4721 / 4541,
  31892. bottom: 82 / 4803
  31893. }
  31894. },
  31895. maw: {
  31896. height: math.unit(1, "feet"),
  31897. name: "Maw",
  31898. image: {
  31899. source: "./media/characters/casselene-yaro/maw.svg"
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Macro",
  31906. height: math.unit(190, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(10, "feet"),
  31916. weight: math.unit(15015, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/platine/front.svg",
  31920. extra: 1741/1650,
  31921. bottom: 84/1825
  31922. }
  31923. },
  31924. side: {
  31925. height: math.unit(10, "feet"),
  31926. weight: math.unit(15015, "lb"),
  31927. name: "Side",
  31928. image: {
  31929. source: "./media/characters/platine/side.svg",
  31930. extra: 1790/1705,
  31931. bottom: 29/1819
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(10, "feet"),
  31939. default: true
  31940. },
  31941. {
  31942. name: "Macro",
  31943. height: math.unit(100, "feet")
  31944. },
  31945. {
  31946. name: "Megamacro",
  31947. height: math.unit(1000, "feet")
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(15 + 5 / 12, "feet"),
  31956. weight: math.unit(4600, "lb"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/neapolitan-ananassa/front.svg",
  31960. extra: 2903 / 2736,
  31961. bottom: 0 / 2903
  31962. }
  31963. },
  31964. side: {
  31965. height: math.unit(15 + 5 / 12, "feet"),
  31966. weight: math.unit(4600, "lb"),
  31967. name: "Side",
  31968. image: {
  31969. source: "./media/characters/neapolitan-ananassa/side.svg",
  31970. extra: 2925 / 2719,
  31971. bottom: 0 / 2925
  31972. }
  31973. },
  31974. back: {
  31975. height: math.unit(15 + 5 / 12, "feet"),
  31976. weight: math.unit(4600, "lb"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/neapolitan-ananassa/back.svg",
  31980. extra: 2903 / 2736,
  31981. bottom: 0 / 2903
  31982. }
  31983. },
  31984. },
  31985. [
  31986. {
  31987. name: "Normal",
  31988. height: math.unit(15 + 5 / 12, "feet"),
  31989. default: true
  31990. },
  31991. {
  31992. name: "Post-Millenium",
  31993. height: math.unit(35 + 5 / 12, "feet")
  31994. },
  31995. {
  31996. name: "Post-Era",
  31997. height: math.unit(450 + 5 / 12, "feet")
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32003. {
  32004. front: {
  32005. height: math.unit(300, "meters"),
  32006. weight: math.unit(125000, "tonnes"),
  32007. name: "Front",
  32008. image: {
  32009. source: "./media/characters/pazuzu/front.svg",
  32010. extra: 877 / 794,
  32011. bottom: 47 / 924
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Macro",
  32018. height: math.unit(300, "meters"),
  32019. default: true
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32025. {
  32026. side: {
  32027. height: math.unit(10 + 7 / 12, "feet"),
  32028. weight: math.unit(2.5, "tons"),
  32029. name: "Side",
  32030. image: {
  32031. source: "./media/characters/aasha/side.svg",
  32032. extra: 1345 / 1245,
  32033. bottom: 111 / 1456
  32034. }
  32035. },
  32036. back: {
  32037. height: math.unit(10 + 7 / 12, "feet"),
  32038. weight: math.unit(2.5, "tons"),
  32039. name: "Back",
  32040. image: {
  32041. source: "./media/characters/aasha/back.svg",
  32042. extra: 1133 / 1057,
  32043. bottom: 257 / 1390
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Normal",
  32050. height: math.unit(10 + 7 / 12, "feet"),
  32051. default: true
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(6 + 3 / 12, "feet"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/nevan/front.svg",
  32063. extra: 704 / 704,
  32064. bottom: 28 / 732
  32065. }
  32066. },
  32067. back: {
  32068. height: math.unit(6 + 3 / 12, "feet"),
  32069. name: "Back",
  32070. image: {
  32071. source: "./media/characters/nevan/back.svg",
  32072. extra: 714 / 714,
  32073. bottom: 21 / 735
  32074. }
  32075. },
  32076. frontFlaccid: {
  32077. height: math.unit(6 + 3 / 12, "feet"),
  32078. name: "Front (Flaccid)",
  32079. image: {
  32080. source: "./media/characters/nevan/front-flaccid.svg",
  32081. extra: 704 / 704,
  32082. bottom: 28 / 732
  32083. }
  32084. },
  32085. frontErect: {
  32086. height: math.unit(6 + 3 / 12, "feet"),
  32087. name: "Front (Erect)",
  32088. image: {
  32089. source: "./media/characters/nevan/front-erect.svg",
  32090. extra: 704 / 704,
  32091. bottom: 28 / 732
  32092. }
  32093. },
  32094. backFlaccid: {
  32095. height: math.unit(6 + 3 / 12, "feet"),
  32096. name: "Back (Flaccid)",
  32097. image: {
  32098. source: "./media/characters/nevan/back-flaccid.svg",
  32099. extra: 714 / 714,
  32100. bottom: 21 / 735
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(6 + 3 / 12, "feet"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(4, "feet"),
  32117. name: "Front",
  32118. image: {
  32119. source: "./media/characters/arhan/front.svg",
  32120. extra: 3368 / 3133,
  32121. bottom: 0 / 3368
  32122. }
  32123. },
  32124. side: {
  32125. height: math.unit(4, "feet"),
  32126. name: "Side",
  32127. image: {
  32128. source: "./media/characters/arhan/side.svg",
  32129. extra: 3347 / 3105,
  32130. bottom: 0 / 3347
  32131. }
  32132. },
  32133. tongue: {
  32134. height: math.unit(1.42, "feet"),
  32135. name: "Tongue",
  32136. image: {
  32137. source: "./media/characters/arhan/tongue.svg"
  32138. }
  32139. },
  32140. head: {
  32141. height: math.unit(0.85, "feet"),
  32142. name: "Head",
  32143. image: {
  32144. source: "./media/characters/arhan/head.svg"
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Normal",
  32151. height: math.unit(4, "feet"),
  32152. default: true
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32158. {
  32159. front: {
  32160. height: math.unit(5 + 7.5 / 12, "feet"),
  32161. weight: math.unit(120, "lb"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/digi-duncan/front.svg",
  32165. extra: 330 / 326,
  32166. bottom: 16 / 346
  32167. }
  32168. },
  32169. side: {
  32170. height: math.unit(5 + 7.5 / 12, "feet"),
  32171. weight: math.unit(120, "lb"),
  32172. name: "Side",
  32173. image: {
  32174. source: "./media/characters/digi-duncan/side.svg",
  32175. extra: 341 / 337,
  32176. bottom: 1 / 342
  32177. }
  32178. },
  32179. back: {
  32180. height: math.unit(5 + 7.5 / 12, "feet"),
  32181. weight: math.unit(120, "lb"),
  32182. name: "Back",
  32183. image: {
  32184. source: "./media/characters/digi-duncan/back.svg",
  32185. extra: 330 / 326,
  32186. bottom: 12 / 342
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Speck",
  32193. height: math.unit(0.25, "mm")
  32194. },
  32195. {
  32196. name: "Micro",
  32197. height: math.unit(5, "mm")
  32198. },
  32199. {
  32200. name: "Tiny",
  32201. height: math.unit(0.5, "inches"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Human",
  32206. height: math.unit(5 + 7.5 / 12, "feet")
  32207. },
  32208. {
  32209. name: "Minigiant",
  32210. height: math.unit(8 + 5.25, "feet")
  32211. },
  32212. {
  32213. name: "Giant",
  32214. height: math.unit(2000, "feet")
  32215. },
  32216. {
  32217. name: "Mega",
  32218. height: math.unit(371.1, "miles")
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(2, "meters"),
  32227. weight: math.unit(350, "kg"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32231. extra: 898 / 838,
  32232. bottom: 9 / 907
  32233. }
  32234. },
  32235. },
  32236. [
  32237. {
  32238. name: "Micro",
  32239. height: math.unit(8, "meters")
  32240. },
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(50, "meters"),
  32244. default: true
  32245. },
  32246. {
  32247. name: "Macro",
  32248. height: math.unit(500, "meters")
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32254. {
  32255. front: {
  32256. height: math.unit(6 + 6 / 12, "feet"),
  32257. name: "Front",
  32258. image: {
  32259. source: "./media/characters/khardesh/front.svg",
  32260. extra: 1788/1596,
  32261. bottom: 66/1854
  32262. }
  32263. },
  32264. back: {
  32265. height: math.unit(6 + 6 / 12, "feet"),
  32266. name: "Back",
  32267. image: {
  32268. source: "./media/characters/khardesh/back.svg",
  32269. extra: 1781/1584,
  32270. bottom: 68/1849
  32271. }
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(6 + 6 / 12, "feet"),
  32278. default: true
  32279. },
  32280. {
  32281. name: "Normal+",
  32282. height: math.unit(4, "meters")
  32283. },
  32284. {
  32285. name: "Macro",
  32286. height: math.unit(50, "meters")
  32287. },
  32288. {
  32289. name: "Macro+",
  32290. height: math.unit(100, "meters")
  32291. },
  32292. {
  32293. name: "Megamacro",
  32294. height: math.unit(20, "km")
  32295. },
  32296. ]
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32300. {
  32301. front: {
  32302. height: math.unit(6, "feet"),
  32303. weight: math.unit(150, "lb"),
  32304. name: "Front",
  32305. image: {
  32306. source: "./media/characters/kosho/front.svg",
  32307. extra: 1847 / 1847,
  32308. bottom: 86 / 1933
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Second-stage micro",
  32315. height: math.unit(0.5, "inches")
  32316. },
  32317. {
  32318. name: "First-stage micro",
  32319. height: math.unit(6, "inches")
  32320. },
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(6, "feet"),
  32324. default: true
  32325. },
  32326. {
  32327. name: "First-stage macro",
  32328. height: math.unit(72, "feet")
  32329. },
  32330. {
  32331. name: "Second-stage macro",
  32332. height: math.unit(864, "feet")
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32338. {
  32339. normal: {
  32340. height: math.unit(4 + 6 / 12, "feet"),
  32341. name: "Normal",
  32342. image: {
  32343. source: "./media/characters/hydra/normal.svg",
  32344. extra: 2833 / 2634,
  32345. bottom: 68 / 2901
  32346. }
  32347. },
  32348. smol: {
  32349. height: math.unit(0.705, "inches"),
  32350. name: "Smol",
  32351. image: {
  32352. source: "./media/characters/hydra/smol.svg",
  32353. extra: 2715 / 2540,
  32354. bottom: 0 / 2715
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(4 + 6 / 12, "feet"),
  32362. default: true
  32363. }
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(0.6, "cm"),
  32371. name: "Front",
  32372. image: {
  32373. source: "./media/characters/daz/front.svg",
  32374. extra: 1682 / 1164,
  32375. bottom: 42 / 1724
  32376. }
  32377. },
  32378. },
  32379. [
  32380. {
  32381. name: "Normal",
  32382. height: math.unit(0.6, "cm"),
  32383. default: true
  32384. },
  32385. ]
  32386. ))
  32387. characterMakers.push(() => makeCharacter(
  32388. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32389. {
  32390. front: {
  32391. height: math.unit(6, "feet"),
  32392. weight: math.unit(235, "lb"),
  32393. name: "Front",
  32394. image: {
  32395. source: "./media/characters/theo-pangolin/front.svg",
  32396. extra: 1996 / 1969,
  32397. bottom: 115 / 2111
  32398. }
  32399. },
  32400. back: {
  32401. height: math.unit(6, "feet"),
  32402. weight: math.unit(235, "lb"),
  32403. name: "Back",
  32404. image: {
  32405. source: "./media/characters/theo-pangolin/back.svg",
  32406. extra: 1979 / 1979,
  32407. bottom: 40 / 2019
  32408. }
  32409. },
  32410. feral: {
  32411. height: math.unit(2, "feet"),
  32412. weight: math.unit(30, "lb"),
  32413. name: "Feral",
  32414. image: {
  32415. source: "./media/characters/theo-pangolin/feral.svg",
  32416. extra: 803 / 791,
  32417. bottom: 181 / 984
  32418. }
  32419. },
  32420. footFive: {
  32421. height: math.unit(1.43, "feet"),
  32422. name: "Foot (Five Toes)",
  32423. image: {
  32424. source: "./media/characters/theo-pangolin/foot-five.svg"
  32425. }
  32426. },
  32427. footFour: {
  32428. height: math.unit(1.43, "feet"),
  32429. name: "Foot (Four Toes)",
  32430. image: {
  32431. source: "./media/characters/theo-pangolin/foot-four.svg"
  32432. }
  32433. },
  32434. handFour: {
  32435. height: math.unit(0.81, "feet"),
  32436. name: "Hand (Four Fingers)",
  32437. image: {
  32438. source: "./media/characters/theo-pangolin/hand-four.svg"
  32439. }
  32440. },
  32441. handThree: {
  32442. height: math.unit(0.81, "feet"),
  32443. name: "Hand (Three Fingers)",
  32444. image: {
  32445. source: "./media/characters/theo-pangolin/hand-three.svg"
  32446. }
  32447. },
  32448. headFront: {
  32449. height: math.unit(1.37, "feet"),
  32450. name: "Head (Front)",
  32451. image: {
  32452. source: "./media/characters/theo-pangolin/head-front.svg"
  32453. }
  32454. },
  32455. headSide: {
  32456. height: math.unit(1.43, "feet"),
  32457. name: "Head (Side)",
  32458. image: {
  32459. source: "./media/characters/theo-pangolin/head-side.svg"
  32460. }
  32461. },
  32462. tongue: {
  32463. height: math.unit(2.29, "feet"),
  32464. name: "Tongue",
  32465. image: {
  32466. source: "./media/characters/theo-pangolin/tongue.svg"
  32467. }
  32468. },
  32469. },
  32470. [
  32471. {
  32472. name: "Normal",
  32473. height: math.unit(6, "feet")
  32474. },
  32475. {
  32476. name: "Macro",
  32477. height: math.unit(400, "feet"),
  32478. default: true
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(6, "inches"),
  32487. weight: math.unit(0.036, "kg"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/renée/front.svg",
  32491. extra: 900 / 886,
  32492. bottom: 8 / 908
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Nano",
  32499. height: math.unit(1, "nm")
  32500. },
  32501. {
  32502. name: "Micro",
  32503. height: math.unit(1, "mm")
  32504. },
  32505. {
  32506. name: "Normal",
  32507. height: math.unit(6, "inches")
  32508. },
  32509. {
  32510. name: "Macro",
  32511. height: math.unit(2000, "feet"),
  32512. default: true
  32513. },
  32514. {
  32515. name: "Megamacro",
  32516. height: math.unit(2, "km")
  32517. },
  32518. {
  32519. name: "Gigamacro",
  32520. height: math.unit(2000, "km")
  32521. },
  32522. {
  32523. name: "Teramacro",
  32524. height: math.unit(250000, "km")
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32530. {
  32531. front: {
  32532. height: math.unit(4, "meters"),
  32533. weight: math.unit(150, "kg"),
  32534. name: "Front",
  32535. image: {
  32536. source: "./media/characters/caledvwlch/front.svg",
  32537. extra: 1757/1537,
  32538. bottom: 31/1788
  32539. }
  32540. },
  32541. side: {
  32542. height: math.unit(4, "meters"),
  32543. weight: math.unit(150, "kg"),
  32544. name: "Side",
  32545. image: {
  32546. source: "./media/characters/caledvwlch/side.svg",
  32547. extra: 1605 / 1536,
  32548. bottom: 31 / 1636
  32549. }
  32550. },
  32551. back: {
  32552. height: math.unit(4, "meters"),
  32553. weight: math.unit(150, "kg"),
  32554. name: "Back",
  32555. image: {
  32556. source: "./media/characters/caledvwlch/back.svg",
  32557. extra: 1635 / 1565,
  32558. bottom: 27 / 1662
  32559. }
  32560. },
  32561. },
  32562. [
  32563. {
  32564. name: "\"Incognito\"",
  32565. height: math.unit(4, "meters")
  32566. },
  32567. {
  32568. name: "Small rampage",
  32569. height: math.unit(600, "meters")
  32570. },
  32571. {
  32572. name: "Mega",
  32573. height: math.unit(30, "km")
  32574. },
  32575. {
  32576. name: "Home-size",
  32577. height: math.unit(50, "km"),
  32578. default: true
  32579. },
  32580. {
  32581. name: "Giga",
  32582. height: math.unit(300, "km")
  32583. },
  32584. {
  32585. name: "Lounging",
  32586. height: math.unit(11000, "km")
  32587. },
  32588. {
  32589. name: "Planet snacking",
  32590. height: math.unit(2000000, "km")
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(6, "feet"),
  32599. weight: math.unit(215, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/sapphire-svell/front.svg",
  32603. extra: 495 / 455,
  32604. bottom: 20 / 515
  32605. }
  32606. },
  32607. back: {
  32608. height: math.unit(6, "feet"),
  32609. weight: math.unit(216, "lb"),
  32610. name: "Back",
  32611. image: {
  32612. source: "./media/characters/sapphire-svell/back.svg",
  32613. extra: 497 / 477,
  32614. bottom: 7 / 504
  32615. }
  32616. },
  32617. maw: {
  32618. height: math.unit(1.57, "feet"),
  32619. name: "Maw",
  32620. image: {
  32621. source: "./media/characters/sapphire-svell/maw.svg"
  32622. }
  32623. },
  32624. foot: {
  32625. height: math.unit(1.07, "feet"),
  32626. name: "Foot",
  32627. image: {
  32628. source: "./media/characters/sapphire-svell/foot.svg"
  32629. }
  32630. },
  32631. toering: {
  32632. height: math.unit(1.7, "inch"),
  32633. name: "Toering",
  32634. image: {
  32635. source: "./media/characters/sapphire-svell/toering.svg"
  32636. }
  32637. },
  32638. },
  32639. [
  32640. {
  32641. name: "Normal",
  32642. height: math.unit(300, "feet"),
  32643. default: true
  32644. },
  32645. {
  32646. name: "Augmented",
  32647. height: math.unit(1250, "feet")
  32648. },
  32649. {
  32650. name: "Unleashed",
  32651. height: math.unit(3000, "feet")
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32657. {
  32658. side: {
  32659. height: math.unit(2 + 3 / 12, "feet"),
  32660. weight: math.unit(110, "lb"),
  32661. name: "Side",
  32662. image: {
  32663. source: "./media/characters/glitch-flux/side.svg",
  32664. extra: 997 / 805,
  32665. bottom: 20 / 1017
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Normal",
  32672. height: math.unit(2 + 3 / 12, "feet"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32679. {
  32680. front: {
  32681. height: math.unit(4, "meters"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/mid/front.svg",
  32685. extra: 507 / 476,
  32686. bottom: 17 / 524
  32687. }
  32688. },
  32689. back: {
  32690. height: math.unit(4, "meters"),
  32691. name: "Back",
  32692. image: {
  32693. source: "./media/characters/mid/back.svg",
  32694. extra: 519 / 487,
  32695. bottom: 7 / 526
  32696. }
  32697. },
  32698. stuck: {
  32699. height: math.unit(2.2, "meters"),
  32700. name: "Stuck",
  32701. image: {
  32702. source: "./media/characters/mid/stuck.svg",
  32703. extra: 1951 / 1869,
  32704. bottom: 88 / 2039
  32705. }
  32706. }
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(4, "meters"),
  32712. default: true
  32713. },
  32714. {
  32715. name: "Big",
  32716. height: math.unit(10, "meters")
  32717. },
  32718. {
  32719. name: "Macro",
  32720. height: math.unit(800, "meters")
  32721. },
  32722. {
  32723. name: "Megamacro",
  32724. height: math.unit(100, "km")
  32725. },
  32726. {
  32727. name: "Overgrown",
  32728. height: math.unit(1, "parsec")
  32729. },
  32730. ]
  32731. ))
  32732. characterMakers.push(() => makeCharacter(
  32733. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32734. {
  32735. front: {
  32736. height: math.unit(2.5, "meters"),
  32737. weight: math.unit(225, "kg"),
  32738. name: "Front",
  32739. image: {
  32740. source: "./media/characters/iris/front.svg",
  32741. extra: 3348 / 3251,
  32742. bottom: 205 / 3553
  32743. }
  32744. },
  32745. maw: {
  32746. height: math.unit(0.56, "meter"),
  32747. name: "Maw",
  32748. image: {
  32749. source: "./media/characters/iris/maw.svg"
  32750. }
  32751. },
  32752. },
  32753. [
  32754. {
  32755. name: "Mewter cat",
  32756. height: math.unit(1.2, "meters")
  32757. },
  32758. {
  32759. name: "Normal",
  32760. height: math.unit(2.5, "meters"),
  32761. default: true
  32762. },
  32763. {
  32764. name: "Minimacro",
  32765. height: math.unit(18, "feet")
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(140, "feet")
  32770. },
  32771. {
  32772. name: "Macro+",
  32773. height: math.unit(180, "meters")
  32774. },
  32775. {
  32776. name: "Megamacro",
  32777. height: math.unit(2746, "meters")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(6, "feet"),
  32786. weight: math.unit(135, "lb"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/axel/front.svg",
  32790. extra: 908 / 908,
  32791. bottom: 58 / 966
  32792. }
  32793. },
  32794. side: {
  32795. height: math.unit(6, "feet"),
  32796. weight: math.unit(135, "lb"),
  32797. name: "Side",
  32798. image: {
  32799. source: "./media/characters/axel/side.svg",
  32800. extra: 958 / 958,
  32801. bottom: 11 / 969
  32802. }
  32803. },
  32804. back: {
  32805. height: math.unit(6, "feet"),
  32806. weight: math.unit(135, "lb"),
  32807. name: "Back",
  32808. image: {
  32809. source: "./media/characters/axel/back.svg",
  32810. extra: 887 / 887,
  32811. bottom: 34 / 921
  32812. }
  32813. },
  32814. head: {
  32815. height: math.unit(1.07, "feet"),
  32816. name: "Head",
  32817. image: {
  32818. source: "./media/characters/axel/head.svg"
  32819. }
  32820. },
  32821. beak: {
  32822. height: math.unit(1.4, "feet"),
  32823. name: "Beak",
  32824. image: {
  32825. source: "./media/characters/axel/beak.svg"
  32826. }
  32827. },
  32828. beakSide: {
  32829. height: math.unit(1.4, "feet"),
  32830. name: "Beak Side",
  32831. image: {
  32832. source: "./media/characters/axel/beak-side.svg"
  32833. }
  32834. },
  32835. sheath: {
  32836. height: math.unit(0.5, "feet"),
  32837. name: "Sheath",
  32838. image: {
  32839. source: "./media/characters/axel/sheath.svg"
  32840. }
  32841. },
  32842. dick: {
  32843. height: math.unit(0.98, "feet"),
  32844. name: "Dick",
  32845. image: {
  32846. source: "./media/characters/axel/dick.svg"
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Macro",
  32853. height: math.unit(68, "meters"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(3.5, "meters"),
  32863. weight: math.unit(1200, "kg"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/joanna/front.svg",
  32867. extra: 1596 / 1488,
  32868. bottom: 29 / 1625
  32869. }
  32870. },
  32871. back: {
  32872. height: math.unit(3.5, "meters"),
  32873. weight: math.unit(1200, "kg"),
  32874. name: "Back",
  32875. image: {
  32876. source: "./media/characters/joanna/back.svg",
  32877. extra: 1594 / 1495,
  32878. bottom: 26 / 1620
  32879. }
  32880. },
  32881. frontShorts: {
  32882. height: math.unit(3.5, "meters"),
  32883. weight: math.unit(1200, "kg"),
  32884. name: "Front (Shorts)",
  32885. image: {
  32886. source: "./media/characters/joanna/front-shorts.svg",
  32887. extra: 1596 / 1488,
  32888. bottom: 29 / 1625
  32889. }
  32890. },
  32891. frontBiker: {
  32892. height: math.unit(3.5, "meters"),
  32893. weight: math.unit(1200, "kg"),
  32894. name: "Front (Biker)",
  32895. image: {
  32896. source: "./media/characters/joanna/front-biker.svg",
  32897. extra: 1596 / 1488,
  32898. bottom: 29 / 1625
  32899. }
  32900. },
  32901. backBiker: {
  32902. height: math.unit(3.5, "meters"),
  32903. weight: math.unit(1200, "kg"),
  32904. name: "Back (Biker)",
  32905. image: {
  32906. source: "./media/characters/joanna/back-biker.svg",
  32907. extra: 1594 / 1495,
  32908. bottom: 88 / 1682
  32909. }
  32910. },
  32911. bikeLeft: {
  32912. height: math.unit(2.4, "meters"),
  32913. weight: math.unit(1600, "kg"),
  32914. name: "Bike (Left)",
  32915. image: {
  32916. source: "./media/characters/joanna/bike-left.svg",
  32917. extra: 720 / 720,
  32918. bottom: 8 / 728
  32919. }
  32920. },
  32921. bikeRight: {
  32922. height: math.unit(2.4, "meters"),
  32923. weight: math.unit(1600, "kg"),
  32924. name: "Bike (Right)",
  32925. image: {
  32926. source: "./media/characters/joanna/bike-right.svg",
  32927. extra: 720 / 720,
  32928. bottom: 8 / 728
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Incognito",
  32935. height: math.unit(3.5, "meters")
  32936. },
  32937. {
  32938. name: "Casual Big",
  32939. height: math.unit(200, "meters")
  32940. },
  32941. {
  32942. name: "Macro",
  32943. height: math.unit(600, "meters")
  32944. },
  32945. {
  32946. name: "Original",
  32947. height: math.unit(20, "km"),
  32948. default: true
  32949. },
  32950. {
  32951. name: "Giga",
  32952. height: math.unit(400, "km")
  32953. },
  32954. {
  32955. name: "Lounging",
  32956. height: math.unit(1500, "km")
  32957. },
  32958. {
  32959. name: "Planetary",
  32960. height: math.unit(200000, "km")
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32966. {
  32967. front: {
  32968. height: math.unit(6, "feet"),
  32969. weight: math.unit(150, "lb"),
  32970. name: "Front",
  32971. image: {
  32972. source: "./media/characters/hugo-sigil/front.svg",
  32973. extra: 522 / 500,
  32974. bottom: 2 / 524
  32975. }
  32976. },
  32977. back: {
  32978. height: math.unit(6, "feet"),
  32979. weight: math.unit(150, "lb"),
  32980. name: "Back",
  32981. image: {
  32982. source: "./media/characters/hugo-sigil/back.svg",
  32983. extra: 519 / 495,
  32984. bottom: 5 / 524
  32985. }
  32986. },
  32987. maw: {
  32988. height: math.unit(1.4, "feet"),
  32989. weight: math.unit(150, "lb"),
  32990. name: "Maw",
  32991. image: {
  32992. source: "./media/characters/hugo-sigil/maw.svg"
  32993. }
  32994. },
  32995. feet: {
  32996. height: math.unit(1.56, "feet"),
  32997. weight: math.unit(150, "lb"),
  32998. name: "Feet",
  32999. image: {
  33000. source: "./media/characters/hugo-sigil/feet.svg",
  33001. extra: 177 / 177,
  33002. bottom: 12 / 189
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(6, "feet")
  33010. },
  33011. {
  33012. name: "Macro",
  33013. height: math.unit(200, "feet"),
  33014. default: true
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33020. {
  33021. front: {
  33022. height: math.unit(6, "feet"),
  33023. weight: math.unit(150, "lb"),
  33024. name: "Front",
  33025. image: {
  33026. source: "./media/characters/peri/front.svg",
  33027. extra: 2354 / 2233,
  33028. bottom: 49 / 2403
  33029. }
  33030. },
  33031. },
  33032. [
  33033. {
  33034. name: "Really Small",
  33035. height: math.unit(1, "nm")
  33036. },
  33037. {
  33038. name: "Micro",
  33039. height: math.unit(4, "inches")
  33040. },
  33041. {
  33042. name: "Normal",
  33043. height: math.unit(7, "inches"),
  33044. default: true
  33045. },
  33046. {
  33047. name: "Macro",
  33048. height: math.unit(400, "feet")
  33049. },
  33050. {
  33051. name: "Megamacro",
  33052. height: math.unit(100, "miles")
  33053. },
  33054. ]
  33055. ))
  33056. characterMakers.push(() => makeCharacter(
  33057. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33058. {
  33059. frontSlim: {
  33060. height: math.unit(7, "feet"),
  33061. name: "Front (Slim)",
  33062. image: {
  33063. source: "./media/characters/issilora/front-slim.svg",
  33064. extra: 529 / 449,
  33065. bottom: 53 / 582
  33066. }
  33067. },
  33068. sideSlim: {
  33069. height: math.unit(7, "feet"),
  33070. name: "Side (Slim)",
  33071. image: {
  33072. source: "./media/characters/issilora/side-slim.svg",
  33073. extra: 570 / 480,
  33074. bottom: 30 / 600
  33075. }
  33076. },
  33077. backSlim: {
  33078. height: math.unit(7, "feet"),
  33079. name: "Back (Slim)",
  33080. image: {
  33081. source: "./media/characters/issilora/back-slim.svg",
  33082. extra: 537 / 455,
  33083. bottom: 46 / 583
  33084. }
  33085. },
  33086. frontBuff: {
  33087. height: math.unit(7, "feet"),
  33088. name: "Front (Buff)",
  33089. image: {
  33090. source: "./media/characters/issilora/front-buff.svg",
  33091. extra: 2310 / 2035,
  33092. bottom: 335 / 2645
  33093. }
  33094. },
  33095. head: {
  33096. height: math.unit(1.94, "feet"),
  33097. name: "Head",
  33098. image: {
  33099. source: "./media/characters/issilora/head.svg"
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Minimum",
  33106. height: math.unit(7, "feet")
  33107. },
  33108. {
  33109. name: "Comfortable",
  33110. height: math.unit(17, "feet")
  33111. },
  33112. {
  33113. name: "Fun Size",
  33114. height: math.unit(47, "feet")
  33115. },
  33116. {
  33117. name: "Natural Macro",
  33118. height: math.unit(137, "feet"),
  33119. default: true
  33120. },
  33121. {
  33122. name: "Maximum Kaiju",
  33123. height: math.unit(397, "feet")
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33129. {
  33130. front: {
  33131. height: math.unit(50 + 9/12, "feet"),
  33132. weight: math.unit(32.8, "tons"),
  33133. name: "Front",
  33134. image: {
  33135. source: "./media/characters/irb'iiritaahn/front.svg",
  33136. extra: 1878/1826,
  33137. bottom: 326/2204
  33138. }
  33139. },
  33140. back: {
  33141. height: math.unit(50 + 9/12, "feet"),
  33142. weight: math.unit(32.8, "tons"),
  33143. name: "Back",
  33144. image: {
  33145. source: "./media/characters/irb'iiritaahn/back.svg",
  33146. extra: 2052/2018,
  33147. bottom: 152/2204
  33148. }
  33149. },
  33150. head: {
  33151. height: math.unit(12.86, "feet"),
  33152. name: "Head",
  33153. image: {
  33154. source: "./media/characters/irb'iiritaahn/head.svg"
  33155. }
  33156. },
  33157. maw: {
  33158. height: math.unit(9.66, "feet"),
  33159. name: "Maw",
  33160. image: {
  33161. source: "./media/characters/irb'iiritaahn/maw.svg"
  33162. }
  33163. },
  33164. frontDick: {
  33165. height: math.unit(8.78461, "feet"),
  33166. name: "Front Dick",
  33167. image: {
  33168. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33169. }
  33170. },
  33171. rearDick: {
  33172. height: math.unit(8.78461, "feet"),
  33173. name: "Rear Dick",
  33174. image: {
  33175. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33176. }
  33177. },
  33178. rearDickUnfolded: {
  33179. height: math.unit(8.78, "feet"),
  33180. name: "Rear Dick (Unfolded)",
  33181. image: {
  33182. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33183. }
  33184. },
  33185. wings: {
  33186. height: math.unit(43, "feet"),
  33187. name: "Wings",
  33188. image: {
  33189. source: "./media/characters/irb'iiritaahn/wings.svg"
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Macro",
  33196. height: math.unit(50 + 9/12, "feet"),
  33197. default: true
  33198. },
  33199. ]
  33200. ))
  33201. characterMakers.push(() => makeCharacter(
  33202. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33203. {
  33204. front: {
  33205. height: math.unit(205, "cm"),
  33206. weight: math.unit(102, "kg"),
  33207. name: "Front",
  33208. image: {
  33209. source: "./media/characters/irbisgreif/front.svg",
  33210. extra: 785/706,
  33211. bottom: 13/798
  33212. }
  33213. },
  33214. back: {
  33215. height: math.unit(205, "cm"),
  33216. weight: math.unit(102, "kg"),
  33217. name: "Back",
  33218. image: {
  33219. source: "./media/characters/irbisgreif/back.svg",
  33220. extra: 713/701,
  33221. bottom: 26/739
  33222. }
  33223. },
  33224. frontDressed: {
  33225. height: math.unit(216, "cm"),
  33226. weight: math.unit(102, "kg"),
  33227. name: "Front-dressed",
  33228. image: {
  33229. source: "./media/characters/irbisgreif/front-dressed.svg",
  33230. extra: 902/776,
  33231. bottom: 14/916
  33232. }
  33233. },
  33234. sideDressed: {
  33235. height: math.unit(195, "cm"),
  33236. weight: math.unit(102, "kg"),
  33237. name: "Side-dressed",
  33238. image: {
  33239. source: "./media/characters/irbisgreif/side-dressed.svg",
  33240. extra: 788/688,
  33241. bottom: 21/809
  33242. }
  33243. },
  33244. backDressed: {
  33245. height: math.unit(216, "cm"),
  33246. weight: math.unit(102, "kg"),
  33247. name: "Back-dressed",
  33248. image: {
  33249. source: "./media/characters/irbisgreif/back-dressed.svg",
  33250. extra: 901/783,
  33251. bottom: 10/911
  33252. }
  33253. },
  33254. dick: {
  33255. height: math.unit(0.49, "feet"),
  33256. name: "Dick",
  33257. image: {
  33258. source: "./media/characters/irbisgreif/dick.svg"
  33259. }
  33260. },
  33261. wingTop: {
  33262. height: math.unit(1.93 , "feet"),
  33263. name: "Wing-top",
  33264. image: {
  33265. source: "./media/characters/irbisgreif/wing-top.svg"
  33266. }
  33267. },
  33268. wingBottom: {
  33269. height: math.unit(1.93 , "feet"),
  33270. name: "Wing-bottom",
  33271. image: {
  33272. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(216, "cm"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33286. {
  33287. front: {
  33288. height: math.unit(6, "feet"),
  33289. weight: math.unit(150, "lb"),
  33290. name: "Front",
  33291. image: {
  33292. source: "./media/characters/pride/front.svg",
  33293. extra: 1299/1230,
  33294. bottom: 18/1317
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Normal",
  33301. height: math.unit(7, "feet")
  33302. },
  33303. {
  33304. name: "Mini-macro",
  33305. height: math.unit(11, "feet")
  33306. },
  33307. {
  33308. name: "Macro",
  33309. height: math.unit(15, "meters"),
  33310. default: true
  33311. },
  33312. {
  33313. name: "Macro+",
  33314. height: math.unit(40, "meters")
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33320. {
  33321. front: {
  33322. height: math.unit(4 + 2 / 12, "feet"),
  33323. weight: math.unit(95, "lb"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/vaelophis-nyx/front.svg",
  33327. extra: 2532/2330,
  33328. bottom: 0/2532
  33329. }
  33330. },
  33331. back: {
  33332. height: math.unit(4 + 2 / 12, "feet"),
  33333. weight: math.unit(95, "lb"),
  33334. name: "Back",
  33335. image: {
  33336. source: "./media/characters/vaelophis-nyx/back.svg",
  33337. extra: 2484/2361,
  33338. bottom: 0/2484
  33339. }
  33340. },
  33341. feralSide: {
  33342. height: math.unit(2 + 1/12, "feet"),
  33343. weight: math.unit(20, "lb"),
  33344. name: "Feral (Side)",
  33345. image: {
  33346. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33347. extra: 1721/1581,
  33348. bottom: 70/1791
  33349. }
  33350. },
  33351. feralLazing: {
  33352. height: math.unit(1.08, "feet"),
  33353. weight: math.unit(20, "lb"),
  33354. name: "Feral (Lazing)",
  33355. image: {
  33356. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33357. extra: 822/822,
  33358. bottom: 248/1070
  33359. }
  33360. },
  33361. ear: {
  33362. height: math.unit(0.416, "feet"),
  33363. name: "Ear",
  33364. image: {
  33365. source: "./media/characters/vaelophis-nyx/ear.svg"
  33366. }
  33367. },
  33368. eye: {
  33369. height: math.unit(0.0748, "feet"),
  33370. name: "Eye",
  33371. image: {
  33372. source: "./media/characters/vaelophis-nyx/eye.svg"
  33373. }
  33374. },
  33375. mouth: {
  33376. height: math.unit(0.378, "feet"),
  33377. name: "Mouth",
  33378. image: {
  33379. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33380. }
  33381. },
  33382. spade: {
  33383. height: math.unit(0.55, "feet"),
  33384. name: "Spade",
  33385. image: {
  33386. source: "./media/characters/vaelophis-nyx/spade.svg"
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(4 + 2/12, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33400. {
  33401. front: {
  33402. height: math.unit(7, "feet"),
  33403. weight: math.unit(231, "lb"),
  33404. name: "Front",
  33405. image: {
  33406. source: "./media/characters/flux/front.svg",
  33407. extra: 919/871,
  33408. bottom: 0/919
  33409. }
  33410. },
  33411. back: {
  33412. height: math.unit(7, "feet"),
  33413. weight: math.unit(231, "lb"),
  33414. name: "Back",
  33415. image: {
  33416. source: "./media/characters/flux/back.svg",
  33417. extra: 1040/992,
  33418. bottom: 0/1040
  33419. }
  33420. },
  33421. frontDressed: {
  33422. height: math.unit(7, "feet"),
  33423. weight: math.unit(231, "lb"),
  33424. name: "Front (Dressed)",
  33425. image: {
  33426. source: "./media/characters/flux/front-dressed.svg",
  33427. extra: 919/871,
  33428. bottom: 0/919
  33429. }
  33430. },
  33431. feralSide: {
  33432. height: math.unit(5, "feet"),
  33433. weight: math.unit(150, "lb"),
  33434. name: "Feral (Side)",
  33435. image: {
  33436. source: "./media/characters/flux/feral-side.svg",
  33437. extra: 598/528,
  33438. bottom: 28/626
  33439. }
  33440. },
  33441. head: {
  33442. height: math.unit(1.585, "feet"),
  33443. name: "Head",
  33444. image: {
  33445. source: "./media/characters/flux/head.svg"
  33446. }
  33447. },
  33448. headSide: {
  33449. height: math.unit(1.74, "feet"),
  33450. name: "Head (Side)",
  33451. image: {
  33452. source: "./media/characters/flux/head-side.svg"
  33453. }
  33454. },
  33455. headSideFire: {
  33456. height: math.unit(1.76, "feet"),
  33457. name: "Head (Side, Fire)",
  33458. image: {
  33459. source: "./media/characters/flux/head-side-fire.svg"
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(7, "feet"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(9, "feet"),
  33476. weight: math.unit(1012, "lb"),
  33477. name: "Front",
  33478. image: {
  33479. source: "./media/characters/ulfra-lupae/front.svg",
  33480. extra: 1083/1011,
  33481. bottom: 67/1150
  33482. }
  33483. },
  33484. },
  33485. [
  33486. {
  33487. name: "Micro",
  33488. height: math.unit(6, "inches")
  33489. },
  33490. {
  33491. name: "Socializing",
  33492. height: math.unit(6 + 5/12, "feet")
  33493. },
  33494. {
  33495. name: "Normal",
  33496. height: math.unit(9, "feet"),
  33497. default: true
  33498. },
  33499. {
  33500. name: "Macro",
  33501. height: math.unit(150, "feet")
  33502. },
  33503. ]
  33504. ))
  33505. characterMakers.push(() => makeCharacter(
  33506. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33507. {
  33508. front: {
  33509. height: math.unit(5 + 2/12, "feet"),
  33510. weight: math.unit(120, "lb"),
  33511. name: "Front",
  33512. image: {
  33513. source: "./media/characters/timber/front.svg",
  33514. extra: 2814/2705,
  33515. bottom: 181/2995
  33516. }
  33517. },
  33518. },
  33519. [
  33520. {
  33521. name: "Normal",
  33522. height: math.unit(5 + 2/12, "feet"),
  33523. default: true
  33524. },
  33525. ]
  33526. ))
  33527. characterMakers.push(() => makeCharacter(
  33528. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33529. {
  33530. front: {
  33531. height: math.unit(9, "feet"),
  33532. name: "Front",
  33533. image: {
  33534. source: "./media/characters/nicki/front.svg",
  33535. extra: 1240/990,
  33536. bottom: 45/1285
  33537. },
  33538. form: "anthro",
  33539. default: true
  33540. },
  33541. side: {
  33542. height: math.unit(9, "feet"),
  33543. name: "Side",
  33544. image: {
  33545. source: "./media/characters/nicki/side.svg",
  33546. extra: 1047/973,
  33547. bottom: 61/1108
  33548. },
  33549. form: "anthro"
  33550. },
  33551. back: {
  33552. height: math.unit(9, "feet"),
  33553. name: "Back",
  33554. image: {
  33555. source: "./media/characters/nicki/back.svg",
  33556. extra: 1006/965,
  33557. bottom: 39/1045
  33558. },
  33559. form: "anthro"
  33560. },
  33561. taur: {
  33562. height: math.unit(15, "feet"),
  33563. name: "Taur",
  33564. image: {
  33565. source: "./media/characters/nicki/taur.svg",
  33566. extra: 1592/1347,
  33567. bottom: 0/1592
  33568. },
  33569. form: "taur",
  33570. default: true
  33571. },
  33572. },
  33573. [
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(9, "feet"),
  33577. form: "anthro",
  33578. default: true
  33579. },
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(15, "feet"),
  33583. form: "taur",
  33584. default: true
  33585. }
  33586. ],
  33587. {
  33588. "anthro": {
  33589. name: "Anthro",
  33590. default: true
  33591. },
  33592. "taur": {
  33593. name: "Taur"
  33594. }
  33595. }
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(7 + 10/12, "feet"),
  33602. weight: math.unit(3.5, "tons"),
  33603. name: "Front",
  33604. image: {
  33605. source: "./media/characters/lee/front.svg",
  33606. extra: 1773/1615,
  33607. bottom: 86/1859
  33608. }
  33609. },
  33610. hand: {
  33611. height: math.unit(1.78, "feet"),
  33612. name: "Hand",
  33613. image: {
  33614. source: "./media/characters/lee/hand.svg"
  33615. }
  33616. },
  33617. maw: {
  33618. height: math.unit(1.18, "feet"),
  33619. name: "Maw",
  33620. image: {
  33621. source: "./media/characters/lee/maw.svg"
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(7 + 10/12, "feet"),
  33629. default: true
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33635. {
  33636. front: {
  33637. height: math.unit(9, "feet"),
  33638. name: "Front",
  33639. image: {
  33640. source: "./media/characters/guti/front.svg",
  33641. extra: 4551/4355,
  33642. bottom: 123/4674
  33643. }
  33644. },
  33645. tongue: {
  33646. height: math.unit(1, "feet"),
  33647. name: "Tongue",
  33648. image: {
  33649. source: "./media/characters/guti/tongue.svg"
  33650. }
  33651. },
  33652. paw: {
  33653. height: math.unit(1.18, "feet"),
  33654. name: "Paw",
  33655. image: {
  33656. source: "./media/characters/guti/paw.svg"
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(9, "feet"),
  33664. default: true
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33670. {
  33671. side: {
  33672. height: math.unit(5, "meters"),
  33673. name: "Side",
  33674. image: {
  33675. source: "./media/characters/vesper/side.svg",
  33676. extra: 1605/1518,
  33677. bottom: 0/1605
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Small",
  33684. height: math.unit(5, "meters")
  33685. },
  33686. {
  33687. name: "Sage",
  33688. height: math.unit(100, "meters"),
  33689. default: true
  33690. },
  33691. {
  33692. name: "Fun Size",
  33693. height: math.unit(600, "meters")
  33694. },
  33695. {
  33696. name: "Goddess",
  33697. height: math.unit(20000, "km")
  33698. },
  33699. {
  33700. name: "Maximum",
  33701. height: math.unit(5, "galaxies")
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(6 + 3/12, "feet"),
  33710. weight: math.unit(190, "lb"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/gawain/front.svg",
  33714. extra: 2222/2139,
  33715. bottom: 90/2312
  33716. }
  33717. },
  33718. back: {
  33719. height: math.unit(6 + 3/12, "feet"),
  33720. weight: math.unit(190, "lb"),
  33721. name: "Back",
  33722. image: {
  33723. source: "./media/characters/gawain/back.svg",
  33724. extra: 2199/2111,
  33725. bottom: 73/2272
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(6 + 3/12, "feet"),
  33733. default: true
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33739. {
  33740. side: {
  33741. height: math.unit(3.5, "meters"),
  33742. weight: math.unit(16000, "lb"),
  33743. name: "Side",
  33744. image: {
  33745. source: "./media/characters/dascalti/side.svg",
  33746. extra: 392/273,
  33747. bottom: 47/439
  33748. }
  33749. },
  33750. breath: {
  33751. height: math.unit(7.4, "feet"),
  33752. name: "Breath",
  33753. image: {
  33754. source: "./media/characters/dascalti/breath.svg"
  33755. }
  33756. },
  33757. fed: {
  33758. height: math.unit(3.6, "meters"),
  33759. weight: math.unit(16000, "lb"),
  33760. name: "Fed",
  33761. image: {
  33762. source: "./media/characters/dascalti/fed.svg",
  33763. extra: 1419/820,
  33764. bottom: 95/1514
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(3.5, "meters"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(3 + 5/12, "feet"),
  33781. name: "Front",
  33782. image: {
  33783. source: "./media/characters/mauve/front.svg",
  33784. extra: 1126/1033,
  33785. bottom: 65/1191
  33786. }
  33787. },
  33788. side: {
  33789. height: math.unit(3 + 5/12, "feet"),
  33790. name: "Side",
  33791. image: {
  33792. source: "./media/characters/mauve/side.svg",
  33793. extra: 1089/1001,
  33794. bottom: 29/1118
  33795. }
  33796. },
  33797. back: {
  33798. height: math.unit(3 + 5/12, "feet"),
  33799. name: "Back",
  33800. image: {
  33801. source: "./media/characters/mauve/back.svg",
  33802. extra: 1173/1053,
  33803. bottom: 109/1282
  33804. }
  33805. },
  33806. },
  33807. [
  33808. {
  33809. name: "Normal",
  33810. height: math.unit(3 + 5/12, "feet"),
  33811. default: true
  33812. },
  33813. ]
  33814. ))
  33815. characterMakers.push(() => makeCharacter(
  33816. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33817. {
  33818. front: {
  33819. height: math.unit(6 + 3/12, "feet"),
  33820. weight: math.unit(430, "lb"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/carlos/front.svg",
  33824. extra: 1964/1913,
  33825. bottom: 70/2034
  33826. }
  33827. },
  33828. },
  33829. [
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(6 + 3/12, "feet"),
  33833. default: true
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33839. {
  33840. back: {
  33841. height: math.unit(5 + 10/12, "feet"),
  33842. weight: math.unit(200, "lb"),
  33843. name: "Back",
  33844. image: {
  33845. source: "./media/characters/jax/back.svg",
  33846. extra: 764/739,
  33847. bottom: 25/789
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(5 + 10/12, "feet"),
  33855. default: true
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33861. {
  33862. front: {
  33863. height: math.unit(8, "feet"),
  33864. weight: math.unit(250, "lb"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/eikthynir/front.svg",
  33868. extra: 1332/1166,
  33869. bottom: 82/1414
  33870. }
  33871. },
  33872. back: {
  33873. height: math.unit(8, "feet"),
  33874. weight: math.unit(250, "lb"),
  33875. name: "Back",
  33876. image: {
  33877. source: "./media/characters/eikthynir/back.svg",
  33878. extra: 1342/1190,
  33879. bottom: 19/1361
  33880. }
  33881. },
  33882. dick: {
  33883. height: math.unit(2.35, "feet"),
  33884. name: "Dick",
  33885. image: {
  33886. source: "./media/characters/eikthynir/dick.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(8, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(99, "meters"),
  33903. weight: math.unit(13000, "tons"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/zlmos/front.svg",
  33907. extra: 2202/1992,
  33908. bottom: 315/2517
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Macro",
  33915. height: math.unit(99, "meters"),
  33916. default: true
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(6 + 5/12, "feet"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/purri/front.svg",
  33928. extra: 1698/1610,
  33929. bottom: 32/1730
  33930. }
  33931. },
  33932. frontAlt: {
  33933. height: math.unit(6 + 5/12, "feet"),
  33934. name: "Front (Alt)",
  33935. image: {
  33936. source: "./media/characters/purri/front-alt.svg",
  33937. extra: 450/420,
  33938. bottom: 26/476
  33939. }
  33940. },
  33941. boots: {
  33942. height: math.unit(5.5, "feet"),
  33943. name: "Boots",
  33944. image: {
  33945. source: "./media/characters/purri/boots.svg",
  33946. extra: 905/853,
  33947. bottom: 18/923
  33948. },
  33949. extraAttributes: {
  33950. "shoeSize": {
  33951. name: "Shoe Size",
  33952. power: 1,
  33953. type: "length",
  33954. base: math.unit(12, "ShoeSizeMensUS")
  33955. },
  33956. "platformHeight": {
  33957. name: "Platform Height",
  33958. power: 1,
  33959. type: "length",
  33960. base: math.unit(2, "inches")
  33961. },
  33962. }
  33963. },
  33964. lying: {
  33965. height: math.unit(2, "feet"),
  33966. name: "Lying",
  33967. image: {
  33968. source: "./media/characters/purri/lying.svg",
  33969. extra: 940/843,
  33970. bottom: 146/1086
  33971. }
  33972. },
  33973. devious: {
  33974. height: math.unit(1.77, "feet"),
  33975. name: "Devious",
  33976. image: {
  33977. source: "./media/characters/purri/devious.svg",
  33978. extra: 1440/1155,
  33979. bottom: 147/1587
  33980. }
  33981. },
  33982. bean: {
  33983. height: math.unit(1.94, "feet"),
  33984. name: "Bean",
  33985. image: {
  33986. source: "./media/characters/purri/bean.svg"
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Micro",
  33993. height: math.unit(1, "mm")
  33994. },
  33995. {
  33996. name: "Normal",
  33997. height: math.unit(6 + 5/12, "feet"),
  33998. default: true
  33999. },
  34000. {
  34001. name: "Macro :3c",
  34002. height: math.unit(2, "miles")
  34003. },
  34004. ]
  34005. ))
  34006. characterMakers.push(() => makeCharacter(
  34007. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34008. {
  34009. front: {
  34010. height: math.unit(6 + 2/12, "feet"),
  34011. weight: math.unit(250, "lb"),
  34012. name: "Front",
  34013. image: {
  34014. source: "./media/characters/moonlight/front.svg",
  34015. extra: 1044/908,
  34016. bottom: 56/1100
  34017. }
  34018. },
  34019. feral: {
  34020. height: math.unit(3 + 1/12, "feet"),
  34021. weight: math.unit(50, "kg"),
  34022. name: "Feral",
  34023. image: {
  34024. source: "./media/characters/moonlight/feral.svg",
  34025. extra: 3705/2791,
  34026. bottom: 145/3850
  34027. }
  34028. },
  34029. paw: {
  34030. height: math.unit(1, "feet"),
  34031. name: "Paw",
  34032. image: {
  34033. source: "./media/characters/moonlight/paw.svg"
  34034. }
  34035. },
  34036. paws: {
  34037. height: math.unit(0.98, "feet"),
  34038. name: "Paws",
  34039. image: {
  34040. source: "./media/characters/moonlight/paws.svg",
  34041. extra: 939/939,
  34042. bottom: 50/989
  34043. }
  34044. },
  34045. mouth: {
  34046. height: math.unit(0.48, "feet"),
  34047. name: "Mouth",
  34048. image: {
  34049. source: "./media/characters/moonlight/mouth.svg"
  34050. }
  34051. },
  34052. dick: {
  34053. height: math.unit(1.46, "feet"),
  34054. name: "Dick",
  34055. image: {
  34056. source: "./media/characters/moonlight/dick.svg"
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(6 + 2/12, "feet"),
  34064. default: true
  34065. },
  34066. {
  34067. name: "Macro",
  34068. height: math.unit(300, "feet")
  34069. },
  34070. {
  34071. name: "Macro+",
  34072. height: math.unit(1, "mile")
  34073. },
  34074. {
  34075. name: "Mt. Moon",
  34076. height: math.unit(5, "miles")
  34077. },
  34078. {
  34079. name: "Megamacro",
  34080. height: math.unit(15, "miles")
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34086. {
  34087. back: {
  34088. height: math.unit(6, "feet"),
  34089. weight: math.unit(150, "lb"),
  34090. name: "Back",
  34091. image: {
  34092. source: "./media/characters/sylen/back.svg",
  34093. extra: 1335/1273,
  34094. bottom: 107/1442
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(5 + 5/12, "feet")
  34102. },
  34103. {
  34104. name: "Megamacro",
  34105. height: math.unit(3, "miles"),
  34106. default: true
  34107. },
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34112. {
  34113. front: {
  34114. height: math.unit(6, "feet"),
  34115. weight: math.unit(190, "lb"),
  34116. name: "Front",
  34117. image: {
  34118. source: "./media/characters/huttser/front.svg",
  34119. extra: 1152/1058,
  34120. bottom: 23/1175
  34121. }
  34122. },
  34123. side: {
  34124. height: math.unit(6, "feet"),
  34125. weight: math.unit(190, "lb"),
  34126. name: "Side",
  34127. image: {
  34128. source: "./media/characters/huttser/side.svg",
  34129. extra: 1174/1065,
  34130. bottom: 18/1192
  34131. }
  34132. },
  34133. back: {
  34134. height: math.unit(6, "feet"),
  34135. weight: math.unit(190, "lb"),
  34136. name: "Back",
  34137. image: {
  34138. source: "./media/characters/huttser/back.svg",
  34139. extra: 1158/1056,
  34140. bottom: 12/1170
  34141. }
  34142. },
  34143. },
  34144. [
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34149. {
  34150. side: {
  34151. height: math.unit(12 + 9/12, "feet"),
  34152. weight: math.unit(15000, "lb"),
  34153. name: "Side",
  34154. image: {
  34155. source: "./media/characters/faan/side.svg",
  34156. extra: 2747/2697,
  34157. bottom: 0/2747
  34158. }
  34159. },
  34160. front: {
  34161. height: math.unit(12 + 9/12, "feet"),
  34162. weight: math.unit(15000, "lb"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/faan/front.svg",
  34166. extra: 607/571,
  34167. bottom: 24/631
  34168. }
  34169. },
  34170. head: {
  34171. height: math.unit(2.85, "feet"),
  34172. name: "Head",
  34173. image: {
  34174. source: "./media/characters/faan/head.svg"
  34175. }
  34176. },
  34177. headAlt: {
  34178. height: math.unit(3.13, "feet"),
  34179. name: "Head-alt",
  34180. image: {
  34181. source: "./media/characters/faan/head-alt.svg"
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Normal",
  34188. height: math.unit(12 + 9/12, "feet"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(6, "feet"),
  34198. weight: math.unit(300, "lb"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/tanio/front.svg",
  34202. extra: 711/673,
  34203. bottom: 25/736
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(6, "feet"),
  34211. default: true
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34217. {
  34218. front: {
  34219. height: math.unit(3, "inches"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/noboru/front.svg",
  34223. extra: 1039/932,
  34224. bottom: 18/1057
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Micro",
  34231. height: math.unit(3, "inches"),
  34232. default: true
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(1.85, "meters"),
  34241. weight: math.unit(80, "kg"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/daniel-barrett/front.svg",
  34245. extra: 355/337,
  34246. bottom: 9/364
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Pico",
  34253. height: math.unit(0.0433, "mm")
  34254. },
  34255. {
  34256. name: "Nano",
  34257. height: math.unit(1.5, "mm")
  34258. },
  34259. {
  34260. name: "Micro",
  34261. height: math.unit(5.3, "cm"),
  34262. default: true
  34263. },
  34264. {
  34265. name: "Normal",
  34266. height: math.unit(1.85, "meters")
  34267. },
  34268. {
  34269. name: "Macro",
  34270. height: math.unit(64.7, "meters")
  34271. },
  34272. {
  34273. name: "Megamacro",
  34274. height: math.unit(2.26, "km")
  34275. },
  34276. {
  34277. name: "Gigamacro",
  34278. height: math.unit(79, "km")
  34279. },
  34280. {
  34281. name: "Teramacro",
  34282. height: math.unit(2765, "km")
  34283. },
  34284. {
  34285. name: "Petamacro",
  34286. height: math.unit(96678, "km")
  34287. },
  34288. ]
  34289. ))
  34290. characterMakers.push(() => makeCharacter(
  34291. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34292. {
  34293. front: {
  34294. height: math.unit(30, "meters"),
  34295. weight: math.unit(400, "tons"),
  34296. name: "Front",
  34297. image: {
  34298. source: "./media/characters/zeel/front.svg",
  34299. extra: 2599/2599,
  34300. bottom: 226/2825
  34301. }
  34302. },
  34303. },
  34304. [
  34305. {
  34306. name: "Macro",
  34307. height: math.unit(30, "meters"),
  34308. default: true
  34309. },
  34310. ]
  34311. ))
  34312. characterMakers.push(() => makeCharacter(
  34313. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34314. {
  34315. front: {
  34316. height: math.unit(6 + 7/12, "feet"),
  34317. weight: math.unit(210, "lb"),
  34318. name: "Front",
  34319. image: {
  34320. source: "./media/characters/tarn/front.svg",
  34321. extra: 3517/3220,
  34322. bottom: 91/3608
  34323. }
  34324. },
  34325. back: {
  34326. height: math.unit(6 + 7/12, "feet"),
  34327. weight: math.unit(210, "lb"),
  34328. name: "Back",
  34329. image: {
  34330. source: "./media/characters/tarn/back.svg",
  34331. extra: 3566/3241,
  34332. bottom: 34/3600
  34333. }
  34334. },
  34335. dick: {
  34336. height: math.unit(1.65, "feet"),
  34337. name: "Dick",
  34338. image: {
  34339. source: "./media/characters/tarn/dick.svg"
  34340. }
  34341. },
  34342. paw: {
  34343. height: math.unit(1.80, "feet"),
  34344. name: "Paw",
  34345. image: {
  34346. source: "./media/characters/tarn/paw.svg"
  34347. }
  34348. },
  34349. tongue: {
  34350. height: math.unit(0.97, "feet"),
  34351. name: "Tongue",
  34352. image: {
  34353. source: "./media/characters/tarn/tongue.svg"
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Micro",
  34360. height: math.unit(4, "inches")
  34361. },
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(6 + 7/12, "feet"),
  34365. default: true
  34366. },
  34367. {
  34368. name: "Macro",
  34369. height: math.unit(300, "feet")
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(5 + 7/12, "feet"),
  34378. weight: math.unit(80, "kg"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34382. extra: 3023/2865,
  34383. bottom: 33/3056
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(5 + 7/12, "feet"),
  34388. weight: math.unit(80, "kg"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34392. extra: 3020/2886,
  34393. bottom: 30/3050
  34394. }
  34395. },
  34396. dick: {
  34397. height: math.unit(0.98, "feet"),
  34398. name: "Dick",
  34399. image: {
  34400. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34401. }
  34402. },
  34403. anatomy: {
  34404. height: math.unit(2.86, "feet"),
  34405. name: "Anatomy",
  34406. image: {
  34407. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34408. }
  34409. },
  34410. },
  34411. [
  34412. {
  34413. name: "Really Small",
  34414. height: math.unit(2, "inches")
  34415. },
  34416. {
  34417. name: "Micro",
  34418. height: math.unit(5.583, "inches")
  34419. },
  34420. {
  34421. name: "Normal",
  34422. height: math.unit(5 + 7/12, "feet"),
  34423. default: true
  34424. },
  34425. {
  34426. name: "Macro",
  34427. height: math.unit(67, "feet")
  34428. },
  34429. {
  34430. name: "Megamacro",
  34431. height: math.unit(134, "feet")
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34437. {
  34438. front: {
  34439. height: math.unit(9, "feet"),
  34440. weight: math.unit(120, "lb"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/sally/front.svg",
  34444. extra: 1506/1349,
  34445. bottom: 66/1572
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(9, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(8, "feet"),
  34462. weight: math.unit(900, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/owen/front.svg",
  34466. extra: 1761/1657,
  34467. bottom: 74/1835
  34468. }
  34469. },
  34470. side: {
  34471. height: math.unit(8, "feet"),
  34472. weight: math.unit(900, "lb"),
  34473. name: "Side",
  34474. image: {
  34475. source: "./media/characters/owen/side.svg",
  34476. extra: 1797/1734,
  34477. bottom: 30/1827
  34478. }
  34479. },
  34480. back: {
  34481. height: math.unit(8, "feet"),
  34482. weight: math.unit(900, "lb"),
  34483. name: "Back",
  34484. image: {
  34485. source: "./media/characters/owen/back.svg",
  34486. extra: 1796/1706,
  34487. bottom: 59/1855
  34488. }
  34489. },
  34490. maw: {
  34491. height: math.unit(1.76, "feet"),
  34492. name: "Maw",
  34493. image: {
  34494. source: "./media/characters/owen/maw.svg"
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(8, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34508. {
  34509. front: {
  34510. height: math.unit(4, "feet"),
  34511. weight: math.unit(400, "lb"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/ryth/front.svg",
  34515. extra: 1920/1748,
  34516. bottom: 42/1962
  34517. }
  34518. },
  34519. back: {
  34520. height: math.unit(4, "feet"),
  34521. weight: math.unit(400, "lb"),
  34522. name: "Back",
  34523. image: {
  34524. source: "./media/characters/ryth/back.svg",
  34525. extra: 1897/1690,
  34526. bottom: 89/1986
  34527. }
  34528. },
  34529. mouth: {
  34530. height: math.unit(1.39, "feet"),
  34531. name: "Mouth",
  34532. image: {
  34533. source: "./media/characters/ryth/mouth.svg"
  34534. }
  34535. },
  34536. tailmaw: {
  34537. height: math.unit(1.23, "feet"),
  34538. name: "Tailmaw",
  34539. image: {
  34540. source: "./media/characters/ryth/tailmaw.svg"
  34541. }
  34542. },
  34543. goia: {
  34544. height: math.unit(4, "meters"),
  34545. weight: math.unit(10800, "lb"),
  34546. name: "Goia",
  34547. image: {
  34548. source: "./media/characters/ryth/goia.svg",
  34549. extra: 745/640,
  34550. bottom: 107/852
  34551. }
  34552. },
  34553. goiaFront: {
  34554. height: math.unit(4, "meters"),
  34555. weight: math.unit(10800, "lb"),
  34556. name: "Goia (Front)",
  34557. image: {
  34558. source: "./media/characters/ryth/goia-front.svg",
  34559. extra: 750/586,
  34560. bottom: 114/864
  34561. }
  34562. },
  34563. goiaMaw: {
  34564. height: math.unit(5.55, "feet"),
  34565. name: "Goia Maw",
  34566. image: {
  34567. source: "./media/characters/ryth/goia-maw.svg"
  34568. }
  34569. },
  34570. goiaForepaw: {
  34571. height: math.unit(3.5, "feet"),
  34572. name: "Goia Forepaw",
  34573. image: {
  34574. source: "./media/characters/ryth/goia-forepaw.svg"
  34575. }
  34576. },
  34577. goiaHindpaw: {
  34578. height: math.unit(5.55, "feet"),
  34579. name: "Goia Hindpaw",
  34580. image: {
  34581. source: "./media/characters/ryth/goia-hindpaw.svg"
  34582. }
  34583. },
  34584. },
  34585. [
  34586. {
  34587. name: "Normal",
  34588. height: math.unit(4, "feet"),
  34589. default: true
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34595. {
  34596. front: {
  34597. height: math.unit(7, "feet"),
  34598. weight: math.unit(180, "lb"),
  34599. name: "Front",
  34600. image: {
  34601. source: "./media/characters/necrolance/front.svg",
  34602. extra: 1062/947,
  34603. bottom: 41/1103
  34604. }
  34605. },
  34606. back: {
  34607. height: math.unit(7, "feet"),
  34608. weight: math.unit(180, "lb"),
  34609. name: "Back",
  34610. image: {
  34611. source: "./media/characters/necrolance/back.svg",
  34612. extra: 1045/984,
  34613. bottom: 14/1059
  34614. }
  34615. },
  34616. wing: {
  34617. height: math.unit(2.67, "feet"),
  34618. name: "Wing",
  34619. image: {
  34620. source: "./media/characters/necrolance/wing.svg"
  34621. }
  34622. },
  34623. },
  34624. [
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(7, "feet"),
  34628. default: true
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34634. {
  34635. front: {
  34636. height: math.unit(76, "meters"),
  34637. weight: math.unit(30000, "tons"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/tyler/front.svg",
  34641. extra: 1640/1640,
  34642. bottom: 114/1754
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Macro",
  34649. height: math.unit(76, "meters"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(4 + 11/12, "feet"),
  34659. weight: math.unit(132, "lb"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/icey/front.svg",
  34663. extra: 2750/2550,
  34664. bottom: 33/2783
  34665. }
  34666. },
  34667. back: {
  34668. height: math.unit(4 + 11/12, "feet"),
  34669. weight: math.unit(132, "lb"),
  34670. name: "Back",
  34671. image: {
  34672. source: "./media/characters/icey/back.svg",
  34673. extra: 2624/2481,
  34674. bottom: 35/2659
  34675. }
  34676. },
  34677. },
  34678. [
  34679. {
  34680. name: "Normal",
  34681. height: math.unit(4 + 11/12, "feet"),
  34682. default: true
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34688. {
  34689. front: {
  34690. height: math.unit(100, "feet"),
  34691. weight: math.unit(0, "lb"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/smile/front.svg",
  34695. extra: 2983/2912,
  34696. bottom: 162/3145
  34697. }
  34698. },
  34699. back: {
  34700. height: math.unit(100, "feet"),
  34701. weight: math.unit(0, "lb"),
  34702. name: "Back",
  34703. image: {
  34704. source: "./media/characters/smile/back.svg",
  34705. extra: 3143/3031,
  34706. bottom: 91/3234
  34707. }
  34708. },
  34709. head: {
  34710. height: math.unit(26.3, "feet"),
  34711. weight: math.unit(0, "lb"),
  34712. name: "Head",
  34713. image: {
  34714. source: "./media/characters/smile/head.svg"
  34715. }
  34716. },
  34717. collar: {
  34718. height: math.unit(5.3, "feet"),
  34719. weight: math.unit(0, "lb"),
  34720. name: "Collar",
  34721. image: {
  34722. source: "./media/characters/smile/collar.svg"
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Macro",
  34729. height: math.unit(100, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34736. {
  34737. dragon: {
  34738. height: math.unit(26, "feet"),
  34739. weight: math.unit(36, "tons"),
  34740. name: "Dragon",
  34741. image: {
  34742. source: "./media/characters/arimphae/dragon.svg",
  34743. extra: 1574/983,
  34744. bottom: 357/1931
  34745. }
  34746. },
  34747. drake: {
  34748. height: math.unit(9, "feet"),
  34749. weight: math.unit(1.5, "tons"),
  34750. name: "Drake",
  34751. image: {
  34752. source: "./media/characters/arimphae/drake.svg",
  34753. extra: 1120/925,
  34754. bottom: 435/1555
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Small",
  34761. height: math.unit(26*5/9, "feet")
  34762. },
  34763. {
  34764. name: "Normal",
  34765. height: math.unit(26, "feet"),
  34766. default: true
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34772. {
  34773. front: {
  34774. height: math.unit(8 + 9/12, "feet"),
  34775. name: "Front",
  34776. image: {
  34777. source: "./media/characters/xander/front.svg",
  34778. extra: 1237/974,
  34779. bottom: 94/1331
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(8 + 9/12, "feet"),
  34787. default: true
  34788. },
  34789. {
  34790. name: "Gaze Grabber",
  34791. height: math.unit(13 + 8/12, "feet")
  34792. },
  34793. {
  34794. name: "Jaw Dropper",
  34795. height: math.unit(27, "feet")
  34796. },
  34797. {
  34798. name: "Show Stopper",
  34799. height: math.unit(136, "feet")
  34800. },
  34801. {
  34802. name: "Superstar",
  34803. height: math.unit(1.9e6, "miles")
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34809. {
  34810. side: {
  34811. height: math.unit(2100, "feet"),
  34812. name: "Side",
  34813. image: {
  34814. source: "./media/characters/osiris/side.svg",
  34815. extra: 1105/939,
  34816. bottom: 167/1272
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Macro",
  34823. height: math.unit(2100, "feet"),
  34824. default: true
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34830. {
  34831. front: {
  34832. height: math.unit(6 + 8/12, "feet"),
  34833. weight: math.unit(225, "lb"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/rhys-londe/front.svg",
  34837. extra: 2258/2141,
  34838. bottom: 188/2446
  34839. }
  34840. },
  34841. back: {
  34842. height: math.unit(6 + 8/12, "feet"),
  34843. weight: math.unit(225, "lb"),
  34844. name: "Back",
  34845. image: {
  34846. source: "./media/characters/rhys-londe/back.svg",
  34847. extra: 2237/2137,
  34848. bottom: 63/2300
  34849. }
  34850. },
  34851. frontNsfw: {
  34852. height: math.unit(6 + 8/12, "feet"),
  34853. weight: math.unit(225, "lb"),
  34854. name: "Front (NSFW)",
  34855. image: {
  34856. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34857. extra: 2258/2141,
  34858. bottom: 188/2446
  34859. }
  34860. },
  34861. backNsfw: {
  34862. height: math.unit(6 + 8/12, "feet"),
  34863. weight: math.unit(225, "lb"),
  34864. name: "Back (NSFW)",
  34865. image: {
  34866. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34867. extra: 2237/2137,
  34868. bottom: 63/2300
  34869. }
  34870. },
  34871. dick: {
  34872. height: math.unit(30, "inches"),
  34873. name: "Dick",
  34874. image: {
  34875. source: "./media/characters/rhys-londe/dick.svg"
  34876. }
  34877. },
  34878. maw: {
  34879. height: math.unit(1.6, "feet"),
  34880. name: "Maw",
  34881. image: {
  34882. source: "./media/characters/rhys-londe/maw.svg"
  34883. }
  34884. },
  34885. },
  34886. [
  34887. {
  34888. name: "Normal",
  34889. height: math.unit(6 + 8/12, "feet"),
  34890. default: true
  34891. },
  34892. ]
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34896. {
  34897. front: {
  34898. height: math.unit(3 + 10/12, "feet"),
  34899. weight: math.unit(90, "lb"),
  34900. name: "Front",
  34901. image: {
  34902. source: "./media/characters/taivas-ensim/front.svg",
  34903. extra: 1327/1216,
  34904. bottom: 96/1423
  34905. }
  34906. },
  34907. back: {
  34908. height: math.unit(3 + 10/12, "feet"),
  34909. weight: math.unit(90, "lb"),
  34910. name: "Back",
  34911. image: {
  34912. source: "./media/characters/taivas-ensim/back.svg",
  34913. extra: 1355/1247,
  34914. bottom: 11/1366
  34915. }
  34916. },
  34917. frontNsfw: {
  34918. height: math.unit(3 + 10/12, "feet"),
  34919. weight: math.unit(90, "lb"),
  34920. name: "Front (NSFW)",
  34921. image: {
  34922. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34923. extra: 1327/1216,
  34924. bottom: 96/1423
  34925. }
  34926. },
  34927. backNsfw: {
  34928. height: math.unit(3 + 10/12, "feet"),
  34929. weight: math.unit(90, "lb"),
  34930. name: "Back (NSFW)",
  34931. image: {
  34932. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34933. extra: 1355/1247,
  34934. bottom: 11/1366
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(3 + 10/12, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(9 + 6/12, "feet"),
  34951. weight: math.unit(940, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/byliss/front.svg",
  34955. extra: 1327/1290,
  34956. bottom: 82/1409
  34957. }
  34958. },
  34959. back: {
  34960. height: math.unit(9 + 6/12, "feet"),
  34961. weight: math.unit(940, "lb"),
  34962. name: "Back",
  34963. image: {
  34964. source: "./media/characters/byliss/back.svg",
  34965. extra: 1376/1349,
  34966. bottom: 9/1385
  34967. }
  34968. },
  34969. frontNsfw: {
  34970. height: math.unit(9 + 6/12, "feet"),
  34971. weight: math.unit(940, "lb"),
  34972. name: "Front (NSFW)",
  34973. image: {
  34974. source: "./media/characters/byliss/front-nsfw.svg",
  34975. extra: 1327/1290,
  34976. bottom: 82/1409
  34977. }
  34978. },
  34979. backNsfw: {
  34980. height: math.unit(9 + 6/12, "feet"),
  34981. weight: math.unit(940, "lb"),
  34982. name: "Back (NSFW)",
  34983. image: {
  34984. source: "./media/characters/byliss/back-nsfw.svg",
  34985. extra: 1376/1349,
  34986. bottom: 9/1385
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(9 + 6/12, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(5 + 2/12, "feet"),
  35003. weight: math.unit(200, "lb"),
  35004. name: "Front",
  35005. image: {
  35006. source: "./media/characters/noraly/front.svg",
  35007. extra: 4985/4773,
  35008. bottom: 150/5135
  35009. }
  35010. },
  35011. full: {
  35012. height: math.unit(5 + 2/12, "feet"),
  35013. weight: math.unit(164, "lb"),
  35014. name: "Full",
  35015. image: {
  35016. source: "./media/characters/noraly/full.svg",
  35017. extra: 1114/1059,
  35018. bottom: 35/1149
  35019. }
  35020. },
  35021. fuller: {
  35022. height: math.unit(5 + 2/12, "feet"),
  35023. weight: math.unit(230, "lb"),
  35024. name: "Fuller",
  35025. image: {
  35026. source: "./media/characters/noraly/fuller.svg",
  35027. extra: 1114/1059,
  35028. bottom: 35/1149
  35029. }
  35030. },
  35031. fullest: {
  35032. height: math.unit(5 + 2/12, "feet"),
  35033. weight: math.unit(300, "lb"),
  35034. name: "Fullest",
  35035. image: {
  35036. source: "./media/characters/noraly/fullest.svg",
  35037. extra: 1114/1059,
  35038. bottom: 35/1149
  35039. }
  35040. },
  35041. },
  35042. [
  35043. {
  35044. name: "Normal",
  35045. height: math.unit(5 + 2/12, "feet"),
  35046. default: true
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35052. {
  35053. front: {
  35054. height: math.unit(5 + 2/12, "feet"),
  35055. weight: math.unit(210, "lb"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/pera/front.svg",
  35059. extra: 1560/1531,
  35060. bottom: 165/1725
  35061. }
  35062. },
  35063. back: {
  35064. height: math.unit(5 + 2/12, "feet"),
  35065. weight: math.unit(210, "lb"),
  35066. name: "Back",
  35067. image: {
  35068. source: "./media/characters/pera/back.svg",
  35069. extra: 1523/1493,
  35070. bottom: 152/1675
  35071. }
  35072. },
  35073. dick: {
  35074. height: math.unit(2.4, "feet"),
  35075. name: "Dick",
  35076. image: {
  35077. source: "./media/characters/pera/dick.svg"
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(5 + 2/12, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(12, "feet"),
  35094. weight: math.unit(3200, "lb"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/julian/front.svg",
  35098. extra: 2962/2701,
  35099. bottom: 184/3146
  35100. }
  35101. },
  35102. maw: {
  35103. height: math.unit(5.35, "feet"),
  35104. name: "Maw",
  35105. image: {
  35106. source: "./media/characters/julian/maw.svg"
  35107. }
  35108. },
  35109. paw: {
  35110. height: math.unit(3.07, "feet"),
  35111. name: "Paw",
  35112. image: {
  35113. source: "./media/characters/julian/paw.svg"
  35114. }
  35115. },
  35116. },
  35117. [
  35118. {
  35119. name: "Default",
  35120. height: math.unit(12, "feet"),
  35121. default: true
  35122. },
  35123. {
  35124. name: "Big",
  35125. height: math.unit(50, "feet")
  35126. },
  35127. {
  35128. name: "Really Big",
  35129. height: math.unit(1, "mile")
  35130. },
  35131. {
  35132. name: "Extremely Big",
  35133. height: math.unit(100, "miles")
  35134. },
  35135. {
  35136. name: "Planet Hugger",
  35137. height: math.unit(200, "megameters")
  35138. },
  35139. {
  35140. name: "Unreasonably Big",
  35141. height: math.unit(1e300, "meters")
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35147. {
  35148. solgooleo: {
  35149. height: math.unit(4, "meters"),
  35150. weight: math.unit(6000*1.5, "kg"),
  35151. volume: math.unit(6000, "liters"),
  35152. name: "Solgooleo",
  35153. image: {
  35154. source: "./media/characters/pi/solgooleo.svg",
  35155. extra: 388/331,
  35156. bottom: 29/417
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(4, "meters"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35170. {
  35171. front: {
  35172. height: math.unit(8, "feet"),
  35173. weight: math.unit(4, "tons"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/shaun/front.svg",
  35177. extra: 503/495,
  35178. bottom: 20/523
  35179. }
  35180. },
  35181. back: {
  35182. height: math.unit(8, "feet"),
  35183. weight: math.unit(4, "tons"),
  35184. name: "Back",
  35185. image: {
  35186. source: "./media/characters/shaun/back.svg",
  35187. extra: 487/480,
  35188. bottom: 20/507
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Lorg",
  35195. height: math.unit(8, "feet"),
  35196. default: true
  35197. },
  35198. ]
  35199. ))
  35200. characterMakers.push(() => makeCharacter(
  35201. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35202. {
  35203. frontAnthro: {
  35204. height: math.unit(7, "feet"),
  35205. name: "Front",
  35206. image: {
  35207. source: "./media/characters/sini/front-anthro.svg",
  35208. extra: 726/678,
  35209. bottom: 35/761
  35210. },
  35211. form: "anthro",
  35212. default: true
  35213. },
  35214. backAnthro: {
  35215. height: math.unit(7, "feet"),
  35216. name: "Back",
  35217. image: {
  35218. source: "./media/characters/sini/back-anthro.svg",
  35219. extra: 743/701,
  35220. bottom: 12/755
  35221. },
  35222. form: "anthro",
  35223. },
  35224. frontAnthroNsfw: {
  35225. height: math.unit(7, "feet"),
  35226. name: "Front (NSFW)",
  35227. image: {
  35228. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35229. extra: 726/678,
  35230. bottom: 35/761
  35231. },
  35232. form: "anthro"
  35233. },
  35234. backAnthroNsfw: {
  35235. height: math.unit(7, "feet"),
  35236. name: "Back (NSFW)",
  35237. image: {
  35238. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35239. extra: 743/701,
  35240. bottom: 12/755
  35241. },
  35242. form: "anthro",
  35243. },
  35244. mawAnthro: {
  35245. height: math.unit(2.14, "feet"),
  35246. name: "Maw",
  35247. image: {
  35248. source: "./media/characters/sini/maw-anthro.svg"
  35249. },
  35250. form: "anthro"
  35251. },
  35252. dick: {
  35253. height: math.unit(1.45, "feet"),
  35254. name: "Dick",
  35255. image: {
  35256. source: "./media/characters/sini/dick-anthro.svg"
  35257. },
  35258. form: "anthro"
  35259. },
  35260. feral: {
  35261. height: math.unit(16, "feet"),
  35262. name: "Feral",
  35263. image: {
  35264. source: "./media/characters/sini/feral.svg",
  35265. extra: 814/605,
  35266. bottom: 11/825
  35267. },
  35268. form: "feral",
  35269. default: true
  35270. },
  35271. feralNsfw: {
  35272. height: math.unit(16, "feet"),
  35273. name: "Feral (NSFW)",
  35274. image: {
  35275. source: "./media/characters/sini/feral-nsfw.svg",
  35276. extra: 814/605,
  35277. bottom: 11/825
  35278. },
  35279. form: "feral"
  35280. },
  35281. mawFeral: {
  35282. height: math.unit(5.66, "feet"),
  35283. name: "Maw",
  35284. image: {
  35285. source: "./media/characters/sini/maw-feral.svg"
  35286. },
  35287. form: "feral",
  35288. },
  35289. pawFeral: {
  35290. height: math.unit(5.17, "feet"),
  35291. name: "Paw",
  35292. image: {
  35293. source: "./media/characters/sini/paw-feral.svg"
  35294. },
  35295. form: "feral",
  35296. },
  35297. rumpFeral: {
  35298. height: math.unit(13.11, "feet"),
  35299. name: "Rump",
  35300. image: {
  35301. source: "./media/characters/sini/rump-feral.svg"
  35302. },
  35303. form: "feral",
  35304. },
  35305. dickFeral: {
  35306. height: math.unit(1, "feet"),
  35307. name: "Dick",
  35308. image: {
  35309. source: "./media/characters/sini/dick-feral.svg"
  35310. },
  35311. form: "feral",
  35312. },
  35313. eyeFeral: {
  35314. height: math.unit(1.23, "feet"),
  35315. name: "Eye",
  35316. image: {
  35317. source: "./media/characters/sini/eye-feral.svg"
  35318. },
  35319. form: "feral",
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(7, "feet"),
  35326. default: true,
  35327. form: "anthro"
  35328. },
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(16, "feet"),
  35332. default: true,
  35333. form: "feral"
  35334. },
  35335. ],
  35336. {
  35337. "anthro": {
  35338. name: "Anthro",
  35339. default: true
  35340. },
  35341. "feral": {
  35342. name: "Feral",
  35343. }
  35344. }
  35345. ))
  35346. characterMakers.push(() => makeCharacter(
  35347. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35348. {
  35349. side: {
  35350. height: math.unit(47.2, "meters"),
  35351. weight: math.unit(10000, "tons"),
  35352. name: "Side",
  35353. image: {
  35354. source: "./media/characters/raylldo/side.svg",
  35355. extra: 2363/642,
  35356. bottom: 221/2584
  35357. }
  35358. },
  35359. top: {
  35360. height: math.unit(240, "meters"),
  35361. weight: math.unit(10000, "tons"),
  35362. name: "Top",
  35363. image: {
  35364. source: "./media/characters/raylldo/top.svg"
  35365. }
  35366. },
  35367. bottom: {
  35368. height: math.unit(240, "meters"),
  35369. weight: math.unit(10000, "tons"),
  35370. name: "Bottom",
  35371. image: {
  35372. source: "./media/characters/raylldo/bottom.svg"
  35373. }
  35374. },
  35375. head: {
  35376. height: math.unit(38.6, "meters"),
  35377. name: "Head",
  35378. image: {
  35379. source: "./media/characters/raylldo/head.svg",
  35380. extra: 1335/1112,
  35381. bottom: 0/1335
  35382. }
  35383. },
  35384. maw: {
  35385. height: math.unit(16.37, "meters"),
  35386. name: "Maw",
  35387. image: {
  35388. source: "./media/characters/raylldo/maw.svg",
  35389. extra: 883/660,
  35390. bottom: 0/883
  35391. },
  35392. extraAttributes: {
  35393. preyCapacity: {
  35394. name: "Capacity",
  35395. power: 3,
  35396. type: "volume",
  35397. base: math.unit(1000, "people")
  35398. },
  35399. tongueSize: {
  35400. name: "Tongue Size",
  35401. power: 2,
  35402. type: "area",
  35403. base: math.unit(21, "m^2")
  35404. }
  35405. }
  35406. },
  35407. forepaw: {
  35408. height: math.unit(18, "meters"),
  35409. name: "Forepaw",
  35410. image: {
  35411. source: "./media/characters/raylldo/forepaw.svg"
  35412. }
  35413. },
  35414. hindpaw: {
  35415. height: math.unit(23, "meters"),
  35416. name: "Hindpaw",
  35417. image: {
  35418. source: "./media/characters/raylldo/hindpaw.svg"
  35419. }
  35420. },
  35421. genitals: {
  35422. height: math.unit(42, "meters"),
  35423. name: "Genitals",
  35424. image: {
  35425. source: "./media/characters/raylldo/genitals.svg"
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(47.2, "meters"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35439. {
  35440. anthroFront: {
  35441. height: math.unit(9, "feet"),
  35442. weight: math.unit(600, "lb"),
  35443. name: "Anthro (Front)",
  35444. image: {
  35445. source: "./media/characters/glint/anthro-front.svg",
  35446. extra: 1097/1018,
  35447. bottom: 28/1125
  35448. }
  35449. },
  35450. anthroBack: {
  35451. height: math.unit(9, "feet"),
  35452. weight: math.unit(600, "lb"),
  35453. name: "Anthro (Back)",
  35454. image: {
  35455. source: "./media/characters/glint/anthro-back.svg",
  35456. extra: 1154/997,
  35457. bottom: 36/1190
  35458. }
  35459. },
  35460. feral: {
  35461. height: math.unit(11, "feet"),
  35462. weight: math.unit(50000, "lb"),
  35463. name: "Feral",
  35464. image: {
  35465. source: "./media/characters/glint/feral.svg",
  35466. extra: 3035/1585,
  35467. bottom: 1169/4204
  35468. }
  35469. },
  35470. dickAnthro: {
  35471. height: math.unit(0.7, "meters"),
  35472. name: "Dick (Anthro)",
  35473. image: {
  35474. source: "./media/characters/glint/dick-anthro.svg"
  35475. }
  35476. },
  35477. dickFeral: {
  35478. height: math.unit(2.65, "meters"),
  35479. name: "Dick (Feral)",
  35480. image: {
  35481. source: "./media/characters/glint/dick-feral.svg"
  35482. }
  35483. },
  35484. slitHidden: {
  35485. height: math.unit(5.85, "meters"),
  35486. name: "Slit (Hidden)",
  35487. image: {
  35488. source: "./media/characters/glint/slit-hidden.svg"
  35489. }
  35490. },
  35491. slitErect: {
  35492. height: math.unit(5.85, "meters"),
  35493. name: "Slit (Erect)",
  35494. image: {
  35495. source: "./media/characters/glint/slit-erect.svg"
  35496. }
  35497. },
  35498. mawAnthro: {
  35499. height: math.unit(0.63, "meters"),
  35500. name: "Maw (Anthro)",
  35501. image: {
  35502. source: "./media/characters/glint/maw.svg"
  35503. }
  35504. },
  35505. mawFeral: {
  35506. height: math.unit(2.89, "meters"),
  35507. name: "Maw (Feral)",
  35508. image: {
  35509. source: "./media/characters/glint/maw.svg"
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(9, "feet"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35523. {
  35524. side: {
  35525. height: math.unit(15, "feet"),
  35526. weight: math.unit(5000, "kg"),
  35527. name: "Side",
  35528. image: {
  35529. source: "./media/characters/kairne/side.svg",
  35530. extra: 979/811,
  35531. bottom: 13/992
  35532. }
  35533. },
  35534. front: {
  35535. height: math.unit(15, "feet"),
  35536. weight: math.unit(5000, "kg"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/kairne/front.svg",
  35540. extra: 908/814,
  35541. bottom: 26/934
  35542. }
  35543. },
  35544. sideNsfw: {
  35545. height: math.unit(15, "feet"),
  35546. weight: math.unit(5000, "kg"),
  35547. name: "Side (NSFW)",
  35548. image: {
  35549. source: "./media/characters/kairne/side-nsfw.svg",
  35550. extra: 979/811,
  35551. bottom: 13/992
  35552. }
  35553. },
  35554. frontNsfw: {
  35555. height: math.unit(15, "feet"),
  35556. weight: math.unit(5000, "kg"),
  35557. name: "Front (NSFW)",
  35558. image: {
  35559. source: "./media/characters/kairne/front-nsfw.svg",
  35560. extra: 908/814,
  35561. bottom: 26/934
  35562. }
  35563. },
  35564. dickCaged: {
  35565. height: math.unit(0.65, "meters"),
  35566. name: "Dick-caged",
  35567. image: {
  35568. source: "./media/characters/kairne/dick-caged.svg"
  35569. }
  35570. },
  35571. dick: {
  35572. height: math.unit(0.79, "meters"),
  35573. name: "Dick",
  35574. image: {
  35575. source: "./media/characters/kairne/dick.svg"
  35576. }
  35577. },
  35578. genitals: {
  35579. height: math.unit(1.29, "meters"),
  35580. name: "Genitals",
  35581. image: {
  35582. source: "./media/characters/kairne/genitals.svg"
  35583. }
  35584. },
  35585. maw: {
  35586. height: math.unit(1.73, "meters"),
  35587. name: "Maw",
  35588. image: {
  35589. source: "./media/characters/kairne/maw.svg"
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(15, "feet"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(5 + 8/12, "feet"),
  35606. weight: math.unit(139, "lb"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/biscuit-jackal/front.svg",
  35610. extra: 2106/1961,
  35611. bottom: 58/2164
  35612. }
  35613. },
  35614. back: {
  35615. height: math.unit(5 + 8/12, "feet"),
  35616. weight: math.unit(139, "lb"),
  35617. name: "Back",
  35618. image: {
  35619. source: "./media/characters/biscuit-jackal/back.svg",
  35620. extra: 2132/1976,
  35621. bottom: 57/2189
  35622. }
  35623. },
  35624. werejackal: {
  35625. height: math.unit(6 + 3/12, "feet"),
  35626. weight: math.unit(188, "lb"),
  35627. name: "Werejackal",
  35628. image: {
  35629. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35630. extra: 2373/2178,
  35631. bottom: 53/2426
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Normal",
  35638. height: math.unit(5 + 8/12, "feet"),
  35639. default: true
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35645. {
  35646. front: {
  35647. height: math.unit(140, "cm"),
  35648. weight: math.unit(45, "kg"),
  35649. name: "Front",
  35650. image: {
  35651. source: "./media/characters/tayra-white/front.svg",
  35652. extra: 2229/2192,
  35653. bottom: 75/2304
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(140, "cm"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35667. {
  35668. front: {
  35669. height: math.unit(4 + 5/12, "feet"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/scoop/front.svg",
  35673. extra: 1257/1136,
  35674. bottom: 69/1326
  35675. }
  35676. },
  35677. back: {
  35678. height: math.unit(4 + 5/12, "feet"),
  35679. name: "Back",
  35680. image: {
  35681. source: "./media/characters/scoop/back.svg",
  35682. extra: 1321/1152,
  35683. bottom: 32/1353
  35684. }
  35685. },
  35686. maw: {
  35687. height: math.unit(0.68, "feet"),
  35688. name: "Maw",
  35689. image: {
  35690. source: "./media/characters/scoop/maw.svg"
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Really Small",
  35697. height: math.unit(1, "mm")
  35698. },
  35699. {
  35700. name: "Micro",
  35701. height: math.unit(1, "inch")
  35702. },
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(4 + 5/12, "feet"),
  35706. default: true
  35707. },
  35708. {
  35709. name: "Macro",
  35710. height: math.unit(200, "feet")
  35711. },
  35712. {
  35713. name: "Megamacro",
  35714. height: math.unit(3240, "feet")
  35715. },
  35716. {
  35717. name: "Teramacro",
  35718. height: math.unit(2500, "miles")
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(15 + 7/12, "feet"),
  35727. weight: math.unit(1150, "tons"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/saphinara/front.svg",
  35731. extra: 1837/1643,
  35732. bottom: 84/1921
  35733. },
  35734. form: "normal",
  35735. default: true
  35736. },
  35737. side: {
  35738. height: math.unit(15 + 7/12, "feet"),
  35739. weight: math.unit(1150, "tons"),
  35740. name: "Side",
  35741. image: {
  35742. source: "./media/characters/saphinara/side.svg",
  35743. extra: 605/547,
  35744. bottom: 6/611
  35745. },
  35746. form: "normal"
  35747. },
  35748. back: {
  35749. height: math.unit(15 + 7/12, "feet"),
  35750. weight: math.unit(1150, "tons"),
  35751. name: "Back",
  35752. image: {
  35753. source: "./media/characters/saphinara/back.svg",
  35754. extra: 591/531,
  35755. bottom: 13/604
  35756. },
  35757. form: "normal"
  35758. },
  35759. frontTail: {
  35760. height: math.unit(15 + 7/12, "feet"),
  35761. weight: math.unit(1150, "tons"),
  35762. name: "Front (Full Tail)",
  35763. image: {
  35764. source: "./media/characters/saphinara/front-tail.svg",
  35765. extra: 2256/1630,
  35766. bottom: 261/2517
  35767. },
  35768. form: "normal"
  35769. },
  35770. insides: {
  35771. height: math.unit(11.92, "feet"),
  35772. name: "Insides",
  35773. image: {
  35774. source: "./media/characters/saphinara/insides.svg"
  35775. },
  35776. form: "normal"
  35777. },
  35778. head: {
  35779. height: math.unit(4.17, "feet"),
  35780. name: "Head",
  35781. image: {
  35782. source: "./media/characters/saphinara/head.svg"
  35783. },
  35784. form: "normal"
  35785. },
  35786. tongue: {
  35787. height: math.unit(4.60, "feet"),
  35788. name: "Tongue",
  35789. image: {
  35790. source: "./media/characters/saphinara/tongue.svg"
  35791. },
  35792. form: "normal"
  35793. },
  35794. headEnraged: {
  35795. height: math.unit(5.55, "feet"),
  35796. name: "Head (Enraged)",
  35797. image: {
  35798. source: "./media/characters/saphinara/head-enraged.svg"
  35799. },
  35800. form: "normal"
  35801. },
  35802. wings: {
  35803. height: math.unit(11.95, "feet"),
  35804. name: "Wings",
  35805. image: {
  35806. source: "./media/characters/saphinara/wings.svg"
  35807. },
  35808. form: "normal"
  35809. },
  35810. feathers: {
  35811. height: math.unit(8.92, "feet"),
  35812. name: "Feathers",
  35813. image: {
  35814. source: "./media/characters/saphinara/feathers.svg"
  35815. },
  35816. form: "normal"
  35817. },
  35818. shackles: {
  35819. height: math.unit(2, "feet"),
  35820. name: "Shackles",
  35821. image: {
  35822. source: "./media/characters/saphinara/shackles.svg"
  35823. },
  35824. form: "normal"
  35825. },
  35826. eyes: {
  35827. height: math.unit(1.331, "feet"),
  35828. name: "Eyes",
  35829. image: {
  35830. source: "./media/characters/saphinara/eyes.svg"
  35831. },
  35832. form: "normal"
  35833. },
  35834. eyesEnraged: {
  35835. height: math.unit(1.331, "feet"),
  35836. name: "Eyes (Enraged)",
  35837. image: {
  35838. source: "./media/characters/saphinara/eyes-enraged.svg"
  35839. },
  35840. form: "normal"
  35841. },
  35842. trueFormSide: {
  35843. height: math.unit(200, "feet"),
  35844. weight: math.unit(1e7, "tons"),
  35845. name: "Side",
  35846. image: {
  35847. source: "./media/characters/saphinara/true-form-side.svg",
  35848. extra: 1399/770,
  35849. bottom: 97/1496
  35850. },
  35851. form: "true-form",
  35852. default: true
  35853. },
  35854. trueFormMaw: {
  35855. height: math.unit(71.5, "feet"),
  35856. name: "Maw",
  35857. image: {
  35858. source: "./media/characters/saphinara/true-form-maw.svg",
  35859. extra: 2302/1453,
  35860. bottom: 0/2302
  35861. },
  35862. form: "true-form"
  35863. },
  35864. meowberusSide: {
  35865. height: math.unit(75, "feet"),
  35866. weight: math.unit(180000, "kg"),
  35867. preyCapacity: math.unit(50000, "people"),
  35868. name: "Side",
  35869. image: {
  35870. source: "./media/characters/saphinara/meowberus-side.svg",
  35871. extra: 1400/711,
  35872. bottom: 126/1526
  35873. },
  35874. form: "meowberus",
  35875. extraAttributes: {
  35876. "pawArea": {
  35877. name: "Paw Size",
  35878. power: 2,
  35879. type: "area",
  35880. base: math.unit(35, "m^2")
  35881. }
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(15 + 7/12, "feet"),
  35889. default: true,
  35890. form: "normal"
  35891. },
  35892. {
  35893. name: "Angry",
  35894. height: math.unit(30 + 6/12, "feet"),
  35895. form: "normal"
  35896. },
  35897. {
  35898. name: "Enraged",
  35899. height: math.unit(102 + 1/12, "feet"),
  35900. form: "normal"
  35901. },
  35902. {
  35903. name: "True",
  35904. height: math.unit(200, "feet"),
  35905. default: true,
  35906. form: "true-form"
  35907. },
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(75, "feet"),
  35911. default: true,
  35912. form: "meowberus"
  35913. },
  35914. ],
  35915. {
  35916. "normal": {
  35917. name: "Normal",
  35918. default: true
  35919. },
  35920. "true-form": {
  35921. name: "True Form"
  35922. },
  35923. "meowberus": {
  35924. name: "Meowberus",
  35925. },
  35926. }
  35927. ))
  35928. characterMakers.push(() => makeCharacter(
  35929. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35930. {
  35931. front: {
  35932. height: math.unit(6 + 8/12, "feet"),
  35933. weight: math.unit(300, "lb"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/jrain/front.svg",
  35937. extra: 3039/2865,
  35938. bottom: 399/3438
  35939. }
  35940. },
  35941. back: {
  35942. height: math.unit(6 + 8/12, "feet"),
  35943. weight: math.unit(300, "lb"),
  35944. name: "Back",
  35945. image: {
  35946. source: "./media/characters/jrain/back.svg",
  35947. extra: 3089/2938,
  35948. bottom: 172/3261
  35949. }
  35950. },
  35951. head: {
  35952. height: math.unit(2.14, "feet"),
  35953. name: "Head",
  35954. image: {
  35955. source: "./media/characters/jrain/head.svg"
  35956. }
  35957. },
  35958. maw: {
  35959. height: math.unit(1.77, "feet"),
  35960. name: "Maw",
  35961. image: {
  35962. source: "./media/characters/jrain/maw.svg"
  35963. }
  35964. },
  35965. leftHand: {
  35966. height: math.unit(1.1, "feet"),
  35967. name: "Left Hand",
  35968. image: {
  35969. source: "./media/characters/jrain/left-hand.svg"
  35970. }
  35971. },
  35972. rightHand: {
  35973. height: math.unit(1.1, "feet"),
  35974. name: "Right Hand",
  35975. image: {
  35976. source: "./media/characters/jrain/right-hand.svg"
  35977. }
  35978. },
  35979. eye: {
  35980. height: math.unit(0.35, "feet"),
  35981. name: "Eye",
  35982. image: {
  35983. source: "./media/characters/jrain/eye.svg"
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Normal",
  35990. height: math.unit(6 + 8/12, "feet"),
  35991. default: true
  35992. },
  35993. {
  35994. name: "Casually Large",
  35995. height: math.unit(25, "feet")
  35996. },
  35997. {
  35998. name: "Giant",
  35999. height: math.unit(100, "feet")
  36000. },
  36001. {
  36002. name: "Kaiju",
  36003. height: math.unit(300, "feet")
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36009. {
  36010. dragon: {
  36011. height: math.unit(5, "meters"),
  36012. name: "Dragon",
  36013. image: {
  36014. source: "./media/characters/sabrina/dragon.svg",
  36015. extra: 3670 / 2365,
  36016. bottom: 333 / 4003
  36017. }
  36018. },
  36019. gryphon: {
  36020. height: math.unit(3, "meters"),
  36021. name: "Gryphon",
  36022. image: {
  36023. source: "./media/characters/sabrina/gryphon.svg",
  36024. extra: 1576 / 945,
  36025. bottom: 71 / 1647
  36026. }
  36027. },
  36028. snake: {
  36029. height: math.unit(12, "meters"),
  36030. name: "Snake",
  36031. image: {
  36032. source: "./media/characters/sabrina/snake.svg",
  36033. extra: 1758 / 1320,
  36034. bottom: 186 / 1944
  36035. }
  36036. },
  36037. collar: {
  36038. height: math.unit(1.86, "meters"),
  36039. name: "Collar",
  36040. image: {
  36041. source: "./media/characters/sabrina/collar.svg"
  36042. }
  36043. },
  36044. eye: {
  36045. height: math.unit(0.53, "meters"),
  36046. name: "Eye",
  36047. image: {
  36048. source: "./media/characters/sabrina/eye.svg"
  36049. }
  36050. },
  36051. foot: {
  36052. height: math.unit(1.86, "meters"),
  36053. name: "Foot",
  36054. image: {
  36055. source: "./media/characters/sabrina/foot.svg"
  36056. }
  36057. },
  36058. hand: {
  36059. height: math.unit(1.32, "meters"),
  36060. name: "Hand",
  36061. image: {
  36062. source: "./media/characters/sabrina/hand.svg"
  36063. }
  36064. },
  36065. head: {
  36066. height: math.unit(2.44, "meters"),
  36067. name: "Head",
  36068. image: {
  36069. source: "./media/characters/sabrina/head.svg"
  36070. }
  36071. },
  36072. headAngry: {
  36073. height: math.unit(2.44, "meters"),
  36074. name: "Head (Angry))",
  36075. image: {
  36076. source: "./media/characters/sabrina/head-angry.svg"
  36077. }
  36078. },
  36079. maw: {
  36080. height: math.unit(1.65, "meters"),
  36081. name: "Maw",
  36082. image: {
  36083. source: "./media/characters/sabrina/maw.svg"
  36084. }
  36085. },
  36086. spikes: {
  36087. height: math.unit(1.69, "meters"),
  36088. name: "Spikes",
  36089. image: {
  36090. source: "./media/characters/sabrina/spikes.svg"
  36091. }
  36092. },
  36093. stomach: {
  36094. height: math.unit(1.15, "meters"),
  36095. name: "Stomach",
  36096. image: {
  36097. source: "./media/characters/sabrina/stomach.svg"
  36098. }
  36099. },
  36100. tongue: {
  36101. height: math.unit(1.27, "meters"),
  36102. name: "Tongue",
  36103. image: {
  36104. source: "./media/characters/sabrina/tongue.svg"
  36105. }
  36106. },
  36107. wingDorsal: {
  36108. height: math.unit(4.85, "meters"),
  36109. name: "Wing (Dorsal)",
  36110. image: {
  36111. source: "./media/characters/sabrina/wing-dorsal.svg"
  36112. }
  36113. },
  36114. wingVentral: {
  36115. height: math.unit(4.85, "meters"),
  36116. name: "Wing (Ventral)",
  36117. image: {
  36118. source: "./media/characters/sabrina/wing-ventral.svg"
  36119. }
  36120. },
  36121. },
  36122. [
  36123. {
  36124. name: "Normal",
  36125. height: math.unit(5, "meters"),
  36126. default: true
  36127. },
  36128. ]
  36129. ))
  36130. characterMakers.push(() => makeCharacter(
  36131. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36132. {
  36133. frontMaid: {
  36134. height: math.unit(5 + 5/12, "feet"),
  36135. weight: math.unit(130, "lb"),
  36136. name: "Front (Maid)",
  36137. image: {
  36138. source: "./media/characters/midnight-tales/front-maid.svg",
  36139. extra: 489/454,
  36140. bottom: 61/550
  36141. }
  36142. },
  36143. frontFormal: {
  36144. height: math.unit(5 + 5/12, "feet"),
  36145. weight: math.unit(130, "lb"),
  36146. name: "Front (Formal)",
  36147. image: {
  36148. source: "./media/characters/midnight-tales/front-formal.svg",
  36149. extra: 489/454,
  36150. bottom: 61/550
  36151. }
  36152. },
  36153. back: {
  36154. height: math.unit(5 + 5/12, "feet"),
  36155. weight: math.unit(130, "lb"),
  36156. name: "Back",
  36157. image: {
  36158. source: "./media/characters/midnight-tales/back.svg",
  36159. extra: 498/456,
  36160. bottom: 33/531
  36161. }
  36162. },
  36163. frontBeast: {
  36164. height: math.unit(40, "feet"),
  36165. weight: math.unit(64000, "lb"),
  36166. name: "Front (Beast)",
  36167. image: {
  36168. source: "./media/characters/midnight-tales/front-beast.svg",
  36169. extra: 927/860,
  36170. bottom: 53/980
  36171. }
  36172. },
  36173. backBeast: {
  36174. height: math.unit(40, "feet"),
  36175. weight: math.unit(64000, "lb"),
  36176. name: "Back (Beast)",
  36177. image: {
  36178. source: "./media/characters/midnight-tales/back-beast.svg",
  36179. extra: 929/855,
  36180. bottom: 16/945
  36181. }
  36182. },
  36183. footBeast: {
  36184. height: math.unit(6.7, "feet"),
  36185. name: "Foot (Beast)",
  36186. image: {
  36187. source: "./media/characters/midnight-tales/foot-beast.svg"
  36188. }
  36189. },
  36190. headBeast: {
  36191. height: math.unit(8, "feet"),
  36192. name: "Head (Beast)",
  36193. image: {
  36194. source: "./media/characters/midnight-tales/head-beast.svg"
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Normal",
  36201. height: math.unit(5 + 5 / 12, "feet"),
  36202. default: true
  36203. },
  36204. {
  36205. name: "Macro",
  36206. height: math.unit(25, "feet")
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36212. {
  36213. front: {
  36214. height: math.unit(5 + 10/12, "feet"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/argon/front.svg",
  36218. extra: 2009/1935,
  36219. bottom: 118/2127
  36220. }
  36221. },
  36222. back: {
  36223. height: math.unit(5 + 10/12, "feet"),
  36224. name: "Back",
  36225. image: {
  36226. source: "./media/characters/argon/back.svg",
  36227. extra: 2047/1992,
  36228. bottom: 20/2067
  36229. }
  36230. },
  36231. frontDressed: {
  36232. height: math.unit(5 + 10/12, "feet"),
  36233. name: "Front (Dressed)",
  36234. image: {
  36235. source: "./media/characters/argon/front-dressed.svg",
  36236. extra: 2009/1935,
  36237. bottom: 118/2127
  36238. }
  36239. },
  36240. },
  36241. [
  36242. {
  36243. name: "Normal",
  36244. height: math.unit(5 + 10/12, "feet"),
  36245. default: true
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(8 + 6/12, "feet"),
  36254. weight: math.unit(1150, "lb"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/kichi/front.svg",
  36258. extra: 1267/1164,
  36259. bottom: 61/1328
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(8 + 6/12, "feet"),
  36264. weight: math.unit(1150, "lb"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/kichi/back.svg",
  36268. extra: 1273/1166,
  36269. bottom: 33/1306
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(8 + 6/12, "feet"),
  36277. default: true
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36283. {
  36284. front: {
  36285. height: math.unit(6, "feet"),
  36286. weight: math.unit(210, "lb"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/manetel-greyscale/front.svg",
  36290. extra: 350/312,
  36291. bottom: 8/358
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Micro",
  36298. height: math.unit(2, "inches")
  36299. },
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(6, "feet"),
  36303. default: true
  36304. },
  36305. {
  36306. name: "Minimacro",
  36307. height: math.unit(17, "feet")
  36308. },
  36309. {
  36310. name: "Macro",
  36311. height: math.unit(117, "feet")
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36317. {
  36318. side: {
  36319. height: math.unit(5 + 1/12, "feet"),
  36320. weight: math.unit(418, "lb"),
  36321. name: "Side",
  36322. image: {
  36323. source: "./media/characters/softpurr/side.svg",
  36324. extra: 1993/1945,
  36325. bottom: 134/2127
  36326. }
  36327. },
  36328. front: {
  36329. height: math.unit(5 + 1/12, "feet"),
  36330. weight: math.unit(418, "lb"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/softpurr/front.svg",
  36334. extra: 1950/1856,
  36335. bottom: 174/2124
  36336. }
  36337. },
  36338. paw: {
  36339. height: math.unit(1, "feet"),
  36340. name: "Paw",
  36341. image: {
  36342. source: "./media/characters/softpurr/paw.svg"
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(5 + 1/12, "feet"),
  36350. default: true
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36356. {
  36357. front: {
  36358. height: math.unit(260, "meters"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/anahita/front.svg",
  36362. extra: 665/635,
  36363. bottom: 89/754
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Macro",
  36370. height: math.unit(260, "meters"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(4 + 10/12, "feet"),
  36380. weight: math.unit(160, "lb"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/chip-mouse/front.svg",
  36384. extra: 3528/3408,
  36385. bottom: 0/3528
  36386. }
  36387. },
  36388. frontNsfw: {
  36389. height: math.unit(4 + 10/12, "feet"),
  36390. weight: math.unit(160, "lb"),
  36391. name: "Front (NSFW)",
  36392. image: {
  36393. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36394. extra: 3528/3408,
  36395. bottom: 0/3528
  36396. }
  36397. },
  36398. },
  36399. [
  36400. {
  36401. name: "Normal",
  36402. height: math.unit(4 + 10/12, "feet"),
  36403. default: true
  36404. },
  36405. ]
  36406. ))
  36407. characterMakers.push(() => makeCharacter(
  36408. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36409. {
  36410. side: {
  36411. height: math.unit(10, "feet"),
  36412. weight: math.unit(14000, "lb"),
  36413. name: "Side",
  36414. image: {
  36415. source: "./media/characters/kremm/side.svg",
  36416. extra: 1390/1053,
  36417. bottom: 90/1480
  36418. }
  36419. },
  36420. gut: {
  36421. height: math.unit(5.8, "feet"),
  36422. name: "Gut",
  36423. image: {
  36424. source: "./media/characters/kremm/gut.svg"
  36425. }
  36426. },
  36427. ass: {
  36428. height: math.unit(6.1, "feet"),
  36429. name: "Ass",
  36430. image: {
  36431. source: "./media/characters/kremm/ass.svg"
  36432. }
  36433. },
  36434. jaws: {
  36435. height: math.unit(2.2, "feet"),
  36436. name: "Jaws",
  36437. image: {
  36438. source: "./media/characters/kremm/jaws.svg"
  36439. }
  36440. },
  36441. dick: {
  36442. height: math.unit(4.26, "feet"),
  36443. name: "Dick",
  36444. image: {
  36445. source: "./media/characters/kremm/dick.svg"
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Normal",
  36452. height: math.unit(10, "feet"),
  36453. default: true
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(30, "stories"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/kai/front.svg",
  36465. extra: 1892/1718,
  36466. bottom: 162/2054
  36467. }
  36468. },
  36469. },
  36470. [
  36471. {
  36472. name: "Macro",
  36473. height: math.unit(30, "stories"),
  36474. default: true
  36475. },
  36476. ]
  36477. ))
  36478. characterMakers.push(() => makeCharacter(
  36479. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36480. {
  36481. front: {
  36482. height: math.unit(6 + 4/12, "feet"),
  36483. weight: math.unit(145, "lb"),
  36484. name: "Front",
  36485. image: {
  36486. source: "./media/characters/sykes/front.svg",
  36487. extra: 1321 / 1187,
  36488. bottom: 66 / 1387
  36489. }
  36490. },
  36491. back: {
  36492. height: math.unit(6 + 4/12, "feet"),
  36493. weight: math.unit(145, "lb"),
  36494. name: "Back",
  36495. image: {
  36496. source: "./media/characters/sykes/back.svg",
  36497. extra: 1326/1181,
  36498. bottom: 31/1357
  36499. }
  36500. },
  36501. traditionalOutfit: {
  36502. height: math.unit(6 + 4/12, "feet"),
  36503. weight: math.unit(145, "lb"),
  36504. name: "Traditional Outfit",
  36505. image: {
  36506. source: "./media/characters/sykes/traditional-outfit.svg",
  36507. extra: 1321 / 1187,
  36508. bottom: 66 / 1387
  36509. }
  36510. },
  36511. adventureOutfit: {
  36512. height: math.unit(6 + 4/12, "feet"),
  36513. weight: math.unit(145, "lb"),
  36514. name: "Adventure Outfit",
  36515. image: {
  36516. source: "./media/characters/sykes/adventure-outfit.svg",
  36517. extra: 1321 / 1187,
  36518. bottom: 66 / 1387
  36519. }
  36520. },
  36521. handLeft: {
  36522. height: math.unit(0.9, "feet"),
  36523. name: "Hand (Left)",
  36524. image: {
  36525. source: "./media/characters/sykes/hand-left.svg"
  36526. }
  36527. },
  36528. handRight: {
  36529. height: math.unit(0.839, "feet"),
  36530. name: "Hand (Right)",
  36531. image: {
  36532. source: "./media/characters/sykes/hand-right.svg"
  36533. }
  36534. },
  36535. leftFoot: {
  36536. height: math.unit(1.2, "feet"),
  36537. name: "Foot (Left)",
  36538. image: {
  36539. source: "./media/characters/sykes/foot-left.svg"
  36540. }
  36541. },
  36542. rightFoot: {
  36543. height: math.unit(1.2, "feet"),
  36544. name: "Foot (Right)",
  36545. image: {
  36546. source: "./media/characters/sykes/foot-right.svg"
  36547. }
  36548. },
  36549. maw: {
  36550. height: math.unit(1.93, "feet"),
  36551. name: "Maw",
  36552. image: {
  36553. source: "./media/characters/sykes/maw.svg"
  36554. }
  36555. },
  36556. teeth: {
  36557. height: math.unit(0.51, "feet"),
  36558. name: "Teeth",
  36559. image: {
  36560. source: "./media/characters/sykes/teeth.svg"
  36561. }
  36562. },
  36563. tongue: {
  36564. height: math.unit(2.13, "feet"),
  36565. name: "Tongue",
  36566. image: {
  36567. source: "./media/characters/sykes/tongue.svg"
  36568. }
  36569. },
  36570. uvula: {
  36571. height: math.unit(0.16, "feet"),
  36572. name: "Uvula",
  36573. image: {
  36574. source: "./media/characters/sykes/uvula.svg"
  36575. }
  36576. },
  36577. collar: {
  36578. height: math.unit(0.287, "feet"),
  36579. name: "Collar",
  36580. image: {
  36581. source: "./media/characters/sykes/collar.svg"
  36582. }
  36583. },
  36584. tail: {
  36585. height: math.unit(3.8, "feet"),
  36586. name: "Tail",
  36587. image: {
  36588. source: "./media/characters/sykes/tail.svg"
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Shrunken",
  36595. height: math.unit(5, "inches")
  36596. },
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(6 + 4 / 12, "feet"),
  36600. default: true
  36601. },
  36602. {
  36603. name: "Big",
  36604. height: math.unit(15, "feet")
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(5 + 8/12, "feet"),
  36613. weight: math.unit(190, "lb"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/oven-otter/front.svg",
  36617. extra: 1809/1740,
  36618. bottom: 181/1990
  36619. }
  36620. },
  36621. back: {
  36622. height: math.unit(5 + 8/12, "feet"),
  36623. weight: math.unit(190, "lb"),
  36624. name: "Back",
  36625. image: {
  36626. source: "./media/characters/oven-otter/back.svg",
  36627. extra: 1709/1635,
  36628. bottom: 118/1827
  36629. }
  36630. },
  36631. hand: {
  36632. height: math.unit(1.07, "feet"),
  36633. name: "Hand",
  36634. image: {
  36635. source: "./media/characters/oven-otter/hand.svg"
  36636. }
  36637. },
  36638. beans: {
  36639. height: math.unit(1.74, "feet"),
  36640. name: "Beans",
  36641. image: {
  36642. source: "./media/characters/oven-otter/beans.svg"
  36643. }
  36644. },
  36645. },
  36646. [
  36647. {
  36648. name: "Micro",
  36649. height: math.unit(0.5, "inches")
  36650. },
  36651. {
  36652. name: "Normal",
  36653. height: math.unit(5 + 8/12, "feet"),
  36654. default: true
  36655. },
  36656. {
  36657. name: "Macro",
  36658. height: math.unit(250, "feet")
  36659. },
  36660. {
  36661. name: "Really High",
  36662. height: math.unit(420, "feet")
  36663. },
  36664. ]
  36665. ))
  36666. characterMakers.push(() => makeCharacter(
  36667. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36668. {
  36669. front: {
  36670. height: math.unit(5, "meters"),
  36671. weight: math.unit(292000000000000, "kg"),
  36672. name: "Front",
  36673. image: {
  36674. source: "./media/characters/devourer/front.svg",
  36675. extra: 1800/1733,
  36676. bottom: 211/2011
  36677. }
  36678. },
  36679. maw: {
  36680. height: math.unit(1.1, "meter"),
  36681. name: "Maw",
  36682. image: {
  36683. source: "./media/characters/devourer/maw.svg"
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Small",
  36690. height: math.unit(3, "meters")
  36691. },
  36692. {
  36693. name: "Large",
  36694. height: math.unit(5, "meters"),
  36695. default: true
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36701. {
  36702. front: {
  36703. height: math.unit(6, "feet"),
  36704. weight: math.unit(400, "lb"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/ellarby/front.svg",
  36708. extra: 1909/1763,
  36709. bottom: 80/1989
  36710. }
  36711. },
  36712. back: {
  36713. height: math.unit(6, "feet"),
  36714. weight: math.unit(400, "lb"),
  36715. name: "Back",
  36716. image: {
  36717. source: "./media/characters/ellarby/back.svg",
  36718. extra: 1914/1784,
  36719. bottom: 172/2086
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Mischief",
  36726. height: math.unit(18, "inches")
  36727. },
  36728. {
  36729. name: "Trouble",
  36730. height: math.unit(12, "feet")
  36731. },
  36732. {
  36733. name: "Havoc",
  36734. height: math.unit(200, "feet"),
  36735. default: true
  36736. },
  36737. {
  36738. name: "Pandemonium",
  36739. height: math.unit(1, "mile")
  36740. },
  36741. {
  36742. name: "Catastrophe",
  36743. height: math.unit(100, "miles")
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36749. {
  36750. front: {
  36751. height: math.unit(4.7, "meters"),
  36752. weight: math.unit(6500, "kg"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/vex/front.svg",
  36756. extra: 1288/1140,
  36757. bottom: 100/1388
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(4.7, "meters"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36771. {
  36772. normal: {
  36773. height: math.unit(6, "feet"),
  36774. weight: math.unit(350, "lb"),
  36775. name: "Normal",
  36776. image: {
  36777. source: "./media/characters/teshy/normal.svg",
  36778. extra: 1795/1735,
  36779. bottom: 16/1811
  36780. }
  36781. },
  36782. monsterFront: {
  36783. height: math.unit(12, "feet"),
  36784. weight: math.unit(4700, "lb"),
  36785. name: "Monster (Front)",
  36786. image: {
  36787. source: "./media/characters/teshy/monster-front.svg",
  36788. extra: 2042/2034,
  36789. bottom: 128/2170
  36790. }
  36791. },
  36792. monsterSide: {
  36793. height: math.unit(12, "feet"),
  36794. weight: math.unit(4700, "lb"),
  36795. name: "Monster (Side)",
  36796. image: {
  36797. source: "./media/characters/teshy/monster-side.svg",
  36798. extra: 2067/2056,
  36799. bottom: 70/2137
  36800. }
  36801. },
  36802. monsterBack: {
  36803. height: math.unit(12, "feet"),
  36804. weight: math.unit(4700, "lb"),
  36805. name: "Monster (Back)",
  36806. image: {
  36807. source: "./media/characters/teshy/monster-back.svg",
  36808. extra: 1921/1914,
  36809. bottom: 171/2092
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(6, "feet"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(6, "feet"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/ramey/front.svg",
  36829. extra: 790/787,
  36830. bottom: 27/817
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(6, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(5 + 5/12, "feet"),
  36847. weight: math.unit(120, "lb"),
  36848. name: "Front",
  36849. image: {
  36850. source: "./media/characters/phirae/front.svg",
  36851. extra: 2491/2436,
  36852. bottom: 38/2529
  36853. }
  36854. },
  36855. },
  36856. [
  36857. {
  36858. name: "Normal",
  36859. height: math.unit(5 + 5/12, "feet"),
  36860. default: true
  36861. },
  36862. ]
  36863. ))
  36864. characterMakers.push(() => makeCharacter(
  36865. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36866. {
  36867. front: {
  36868. height: math.unit(5 + 3/12, "feet"),
  36869. name: "Front",
  36870. image: {
  36871. source: "./media/characters/stagglas/front.svg",
  36872. extra: 962/882,
  36873. bottom: 53/1015
  36874. }
  36875. },
  36876. feral: {
  36877. height: math.unit(335, "cm"),
  36878. name: "Feral",
  36879. image: {
  36880. source: "./media/characters/stagglas/feral.svg",
  36881. extra: 1732/1090,
  36882. bottom: 48/1780
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Normal",
  36889. height: math.unit(5 + 3/12, "feet"),
  36890. default: true
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36896. {
  36897. front: {
  36898. height: math.unit(5 + 4/12, "feet"),
  36899. weight: math.unit(145, "lb"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/starra/front.svg",
  36903. extra: 1790/1691,
  36904. bottom: 91/1881
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(5 + 4/12, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(3.5, "meters"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36924. extra: 1248/972,
  36925. bottom: 38/1286
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(3.5, "meters"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36939. {
  36940. side: {
  36941. height: math.unit(8 + 2/12, "feet"),
  36942. weight: math.unit(1240, "lb"),
  36943. name: "Side",
  36944. image: {
  36945. source: "./media/characters/mika-valentine/side.svg",
  36946. extra: 2670/2501,
  36947. bottom: 250/2920
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(8 + 2/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(7 + 2/12, "feet"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/xoltol/front.svg",
  36967. extra: 2212/2124,
  36968. bottom: 84/2296
  36969. }
  36970. },
  36971. side: {
  36972. height: math.unit(7 + 2/12, "feet"),
  36973. name: "Side",
  36974. image: {
  36975. source: "./media/characters/xoltol/side.svg",
  36976. extra: 2273/2197,
  36977. bottom: 26/2299
  36978. }
  36979. },
  36980. hand: {
  36981. height: math.unit(2.5, "feet"),
  36982. name: "Hand",
  36983. image: {
  36984. source: "./media/characters/xoltol/hand.svg"
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Small-ish",
  36991. height: math.unit(5 + 11/12, "feet")
  36992. },
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(7 + 2/12, "feet")
  36996. },
  36997. {
  36998. name: "\"Macro\"",
  36999. height: math.unit(14 + 9/12, "feet"),
  37000. default: true
  37001. },
  37002. {
  37003. name: "Alternate Height",
  37004. height: math.unit(20, "feet")
  37005. },
  37006. {
  37007. name: "Actually Macro",
  37008. height: math.unit(100, "feet")
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(5 + 2/12, "feet"),
  37017. weight: math.unit(75, "kg"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/kotetsu-redwood/front.svg",
  37021. extra: 1053/942,
  37022. bottom: 60/1113
  37023. }
  37024. },
  37025. },
  37026. [
  37027. {
  37028. name: "Normal",
  37029. height: math.unit(5 + 2/12, "feet"),
  37030. default: true
  37031. },
  37032. ]
  37033. ))
  37034. characterMakers.push(() => makeCharacter(
  37035. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37036. {
  37037. front: {
  37038. height: math.unit(2.4, "meters"),
  37039. weight: math.unit(125, "kg"),
  37040. name: "Front",
  37041. image: {
  37042. source: "./media/characters/lilith/front.svg",
  37043. extra: 1590/1513,
  37044. bottom: 203/1793
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Humanoid",
  37051. height: math.unit(2.4, "meters")
  37052. },
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(6, "meters"),
  37056. default: true
  37057. },
  37058. {
  37059. name: "Largest",
  37060. height: math.unit(55, "meters")
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37066. {
  37067. front: {
  37068. height: math.unit(8 + 4/12, "feet"),
  37069. weight: math.unit(535, "lb"),
  37070. name: "Front",
  37071. image: {
  37072. source: "./media/characters/beh'kah-bolger/front.svg",
  37073. extra: 1660/1603,
  37074. bottom: 37/1697
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(8 + 4/12, "feet"),
  37082. default: true
  37083. },
  37084. {
  37085. name: "Kaiju",
  37086. height: math.unit(250, "feet")
  37087. },
  37088. {
  37089. name: "Still Growing",
  37090. height: math.unit(10, "miles")
  37091. },
  37092. {
  37093. name: "Continental",
  37094. height: math.unit(5000, "miles")
  37095. },
  37096. {
  37097. name: "Final Form",
  37098. height: math.unit(2500000, "miles")
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(7 + 2/12, "feet"),
  37107. weight: math.unit(230, "kg"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/tatyana-milewska/front.svg",
  37111. extra: 1199/1150,
  37112. bottom: 86/1285
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(7 + 2/12, "feet"),
  37120. default: true
  37121. },
  37122. {
  37123. name: "Big",
  37124. height: math.unit(12, "feet")
  37125. },
  37126. {
  37127. name: "Minimacro",
  37128. height: math.unit(20, "feet")
  37129. },
  37130. {
  37131. name: "Macro",
  37132. height: math.unit(120, "feet")
  37133. },
  37134. ]
  37135. ))
  37136. characterMakers.push(() => makeCharacter(
  37137. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37138. {
  37139. front: {
  37140. height: math.unit(7 + 8/12, "feet"),
  37141. weight: math.unit(152, "kg"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/helen-arri/front.svg",
  37145. extra: 440/423,
  37146. bottom: 14/454
  37147. }
  37148. },
  37149. back: {
  37150. height: math.unit(7 + 8/12, "feet"),
  37151. weight: math.unit(152, "kg"),
  37152. name: "Back",
  37153. image: {
  37154. source: "./media/characters/helen-arri/back.svg",
  37155. extra: 443/426,
  37156. bottom: 8/451
  37157. }
  37158. },
  37159. },
  37160. [
  37161. {
  37162. name: "Normal",
  37163. height: math.unit(7 + 8/12, "feet"),
  37164. default: true
  37165. },
  37166. {
  37167. name: "Big",
  37168. height: math.unit(14, "feet")
  37169. },
  37170. {
  37171. name: "Minimacro",
  37172. height: math.unit(24, "feet")
  37173. },
  37174. {
  37175. name: "Macro",
  37176. height: math.unit(140, "feet")
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(6, "meters"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/ehanu-rehu/front.svg",
  37188. extra: 1800/1800,
  37189. bottom: 59/1859
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(6, "meters"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(7 + 3/12, "feet"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/renholder/front.svg",
  37209. extra: 3096/2960,
  37210. bottom: 250/3346
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Normal Bat",
  37217. height: math.unit(7 + 3/12, "feet"),
  37218. default: true
  37219. },
  37220. {
  37221. name: "Slightly Tall Bat",
  37222. height: math.unit(100, "feet")
  37223. },
  37224. {
  37225. name: "Big Bat",
  37226. height: math.unit(1000, "feet")
  37227. },
  37228. {
  37229. name: "City-Sized Bat",
  37230. height: math.unit(200000, "feet")
  37231. },
  37232. {
  37233. name: "Bigger Bat",
  37234. height: math.unit(10000, "miles")
  37235. },
  37236. {
  37237. name: "Solar Sized Bat",
  37238. height: math.unit(100, "AU")
  37239. },
  37240. {
  37241. name: "Galactic Bat",
  37242. height: math.unit(200000, "lightyears")
  37243. },
  37244. {
  37245. name: "Universally Known Bat",
  37246. height: math.unit(1, "universe")
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(6 + 11/12, "feet"),
  37255. weight: math.unit(250, "lb"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/cookiecat/front.svg",
  37259. extra: 893/827,
  37260. bottom: 14/907
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Micro",
  37267. height: math.unit(3, "inches")
  37268. },
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(6 + 11/12, "feet"),
  37272. default: true
  37273. },
  37274. {
  37275. name: "Macro",
  37276. height: math.unit(100, "feet")
  37277. },
  37278. {
  37279. name: "Macro+",
  37280. height: math.unit(404, "feet")
  37281. },
  37282. {
  37283. name: "Megamacro",
  37284. height: math.unit(165, "miles")
  37285. },
  37286. {
  37287. name: "Planetary",
  37288. height: math.unit(4600, "miles")
  37289. },
  37290. ]
  37291. ))
  37292. characterMakers.push(() => makeCharacter(
  37293. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37294. {
  37295. front: {
  37296. height: math.unit(10 + 3/12, "feet"),
  37297. weight: math.unit(1500, "lb"),
  37298. name: "Front",
  37299. image: {
  37300. source: "./media/characters/tux-kusanagi/front.svg",
  37301. extra: 944/840,
  37302. bottom: 39/983
  37303. }
  37304. },
  37305. back: {
  37306. height: math.unit(10 + 3/12, "feet"),
  37307. weight: math.unit(1500, "lb"),
  37308. name: "Back",
  37309. image: {
  37310. source: "./media/characters/tux-kusanagi/back.svg",
  37311. extra: 941/842,
  37312. bottom: 28/969
  37313. }
  37314. },
  37315. rump: {
  37316. height: math.unit(5.25, "feet"),
  37317. name: "Rump",
  37318. image: {
  37319. source: "./media/characters/tux-kusanagi/rump.svg"
  37320. }
  37321. },
  37322. beak: {
  37323. height: math.unit(1.54, "feet"),
  37324. name: "Beak",
  37325. image: {
  37326. source: "./media/characters/tux-kusanagi/beak.svg"
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(10 + 3/12, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(58, "feet"),
  37343. weight: math.unit(200, "tons"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/uzarmazari/front.svg",
  37347. extra: 1575/1455,
  37348. bottom: 152/1727
  37349. }
  37350. },
  37351. back: {
  37352. height: math.unit(58, "feet"),
  37353. weight: math.unit(200, "tons"),
  37354. name: "Back",
  37355. image: {
  37356. source: "./media/characters/uzarmazari/back.svg",
  37357. extra: 1585/1510,
  37358. bottom: 157/1742
  37359. }
  37360. },
  37361. head: {
  37362. height: math.unit(26, "feet"),
  37363. name: "Head",
  37364. image: {
  37365. source: "./media/characters/uzarmazari/head.svg"
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(58, "feet"),
  37373. default: true
  37374. },
  37375. ]
  37376. ))
  37377. characterMakers.push(() => makeCharacter(
  37378. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37379. {
  37380. side: {
  37381. height: math.unit(15, "feet"),
  37382. name: "Side",
  37383. image: {
  37384. source: "./media/characters/akitu/side.svg",
  37385. extra: 1421/1321,
  37386. bottom: 157/1578
  37387. }
  37388. },
  37389. front: {
  37390. height: math.unit(15, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/akitu/front.svg",
  37394. extra: 1435/1326,
  37395. bottom: 232/1667
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(15, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(10 + 8/12, "feet"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/azalie-croixland/front.svg",
  37415. extra: 1972/1856,
  37416. bottom: 31/2003
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Original Height",
  37423. height: math.unit(5 + 4/12, "feet")
  37424. },
  37425. {
  37426. name: "Normal Height",
  37427. height: math.unit(10 + 8/12, "feet"),
  37428. default: true
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37434. {
  37435. side: {
  37436. height: math.unit(7 + 1/12, "feet"),
  37437. weight: math.unit(245, "lb"),
  37438. name: "Side",
  37439. image: {
  37440. source: "./media/characters/kavus-kazian/side.svg",
  37441. extra: 349/342,
  37442. bottom: 15/364
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Normal",
  37449. height: math.unit(7 + 1/12, "feet"),
  37450. default: true
  37451. },
  37452. ]
  37453. ))
  37454. characterMakers.push(() => makeCharacter(
  37455. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37456. {
  37457. normalFront: {
  37458. height: math.unit(5 + 11/12, "feet"),
  37459. name: "Front",
  37460. image: {
  37461. source: "./media/characters/moonlight-rose/normal-front.svg",
  37462. extra: 1980/1825,
  37463. bottom: 18/1998
  37464. },
  37465. form: "normal",
  37466. default: true
  37467. },
  37468. normalBack: {
  37469. height: math.unit(5 + 11/12, "feet"),
  37470. name: "Back",
  37471. image: {
  37472. source: "./media/characters/moonlight-rose/normal-back.svg",
  37473. extra: 2010/1839,
  37474. bottom: 10/2020
  37475. },
  37476. form: "normal"
  37477. },
  37478. demonFront: {
  37479. height: math.unit(1.5, "earths"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/moonlight-rose/demon.svg",
  37483. extra: 1400/1294,
  37484. bottom: 45/1445
  37485. },
  37486. form: "demon",
  37487. default: true
  37488. },
  37489. terraFront: {
  37490. height: math.unit(1.5, "earths"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/moonlight-rose/terra.svg"
  37494. },
  37495. form: "terra",
  37496. default: true
  37497. },
  37498. jupiterFront: {
  37499. height: math.unit(69911*2, "km"),
  37500. name: "Front",
  37501. image: {
  37502. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37503. extra: 1367/1286,
  37504. bottom: 55/1422
  37505. },
  37506. form: "jupiter",
  37507. default: true
  37508. },
  37509. neptuneFront: {
  37510. height: math.unit(24622*2, "feet"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37514. extra: 1851/1712,
  37515. bottom: 0/1851
  37516. },
  37517. form: "neptune",
  37518. default: true
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "\"Natural\" Height",
  37524. height: math.unit(5 + 11/12, "feet"),
  37525. form: "normal"
  37526. },
  37527. {
  37528. name: "Smallest comfortable size",
  37529. height: math.unit(40, "meters"),
  37530. form: "normal"
  37531. },
  37532. {
  37533. name: "Common size",
  37534. height: math.unit(50, "km"),
  37535. form: "normal",
  37536. default: true
  37537. },
  37538. {
  37539. name: "Normal",
  37540. height: math.unit(1.5, "earths"),
  37541. form: "demon",
  37542. default: true
  37543. },
  37544. {
  37545. name: "Universal",
  37546. height: math.unit(15, "universes"),
  37547. form: "demon"
  37548. },
  37549. {
  37550. name: "Earth",
  37551. height: math.unit(1.5, "earths"),
  37552. form: "terra",
  37553. default: true
  37554. },
  37555. {
  37556. name: "Super Earth",
  37557. height: math.unit(67.5, "earths"),
  37558. form: "terra"
  37559. },
  37560. {
  37561. name: "Doesn't fit in a solar system...",
  37562. height: math.unit(1, "galaxy"),
  37563. form: "terra"
  37564. },
  37565. {
  37566. name: "Saturn",
  37567. height: math.unit(58232*2, "km"),
  37568. form: "jupiter"
  37569. },
  37570. {
  37571. name: "Jupiter",
  37572. height: math.unit(69911*2, "km"),
  37573. form: "jupiter",
  37574. default: true
  37575. },
  37576. {
  37577. name: "HD 100546 b",
  37578. height: math.unit(482938, "km"),
  37579. form: "jupiter"
  37580. },
  37581. {
  37582. name: "Enceladus",
  37583. height: math.unit(513*2, "km"),
  37584. form: "neptune"
  37585. },
  37586. {
  37587. name: "Europe",
  37588. height: math.unit(1560*2, "km"),
  37589. form: "neptune"
  37590. },
  37591. {
  37592. name: "Neptune",
  37593. height: math.unit(24622*2, "km"),
  37594. form: "neptune",
  37595. default: true
  37596. },
  37597. {
  37598. name: "CoRoT-9b",
  37599. height: math.unit(75067*2, "km"),
  37600. form: "neptune"
  37601. },
  37602. ],
  37603. {
  37604. "normal": {
  37605. name: "Normal",
  37606. default: true
  37607. },
  37608. "demon": {
  37609. name: "Demon"
  37610. },
  37611. "terra": {
  37612. name: "Terra"
  37613. },
  37614. "jupiter": {
  37615. name: "Jupiter"
  37616. },
  37617. "neptune": {
  37618. name: "Neptune"
  37619. }
  37620. }
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37624. {
  37625. front: {
  37626. height: math.unit(16, "feet"),
  37627. weight: math.unit(610, "kg"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/huckle/front.svg",
  37631. extra: 1731/1625,
  37632. bottom: 33/1764
  37633. }
  37634. },
  37635. back: {
  37636. height: math.unit(16, "feet"),
  37637. weight: math.unit(610, "kg"),
  37638. name: "Back",
  37639. image: {
  37640. source: "./media/characters/huckle/back.svg",
  37641. extra: 1738/1651,
  37642. bottom: 37/1775
  37643. }
  37644. },
  37645. laughing: {
  37646. height: math.unit(3.75, "feet"),
  37647. name: "Laughing",
  37648. image: {
  37649. source: "./media/characters/huckle/laughing.svg"
  37650. }
  37651. },
  37652. angry: {
  37653. height: math.unit(4.15, "feet"),
  37654. name: "Angry",
  37655. image: {
  37656. source: "./media/characters/huckle/angry.svg"
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(16, "feet"),
  37664. default: true
  37665. },
  37666. {
  37667. name: "Mini Macro",
  37668. height: math.unit(463, "feet")
  37669. },
  37670. {
  37671. name: "Macro",
  37672. height: math.unit(1680, "meters")
  37673. },
  37674. {
  37675. name: "Mega Macro",
  37676. height: math.unit(175, "km")
  37677. },
  37678. {
  37679. name: "Terra Macro",
  37680. height: math.unit(32, "gigameters")
  37681. },
  37682. {
  37683. name: "Multiverse+",
  37684. height: math.unit(2.56e23, "yottameters")
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(6 + 9/12, "feet"),
  37693. weight: math.unit(280, "lb"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/candy/front.svg",
  37697. extra: 234/217,
  37698. bottom: 11/245
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Really Small",
  37705. height: math.unit(0.1, "nm")
  37706. },
  37707. {
  37708. name: "Micro",
  37709. height: math.unit(2, "inches")
  37710. },
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(6 + 9/12, "feet"),
  37714. default: true
  37715. },
  37716. {
  37717. name: "Small Macro",
  37718. height: math.unit(69, "feet")
  37719. },
  37720. {
  37721. name: "Macro",
  37722. height: math.unit(160, "feet")
  37723. },
  37724. {
  37725. name: "Megamacro",
  37726. height: math.unit(22000, "miles")
  37727. },
  37728. {
  37729. name: "Gigamacro",
  37730. height: math.unit(50000, "miles")
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37736. {
  37737. front: {
  37738. height: math.unit(4, "feet"),
  37739. weight: math.unit(90, "lb"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/joey-mcdonald/front.svg",
  37743. extra: 1059/852,
  37744. bottom: 33/1092
  37745. }
  37746. },
  37747. back: {
  37748. height: math.unit(4, "feet"),
  37749. weight: math.unit(90, "lb"),
  37750. name: "Back",
  37751. image: {
  37752. source: "./media/characters/joey-mcdonald/back.svg",
  37753. extra: 1077/879,
  37754. bottom: 5/1082
  37755. }
  37756. },
  37757. frontKobold: {
  37758. height: math.unit(4, "feet"),
  37759. weight: math.unit(100, "lb"),
  37760. name: "Front-kobold",
  37761. image: {
  37762. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37763. extra: 1480/1367,
  37764. bottom: 0/1480
  37765. }
  37766. },
  37767. backKobold: {
  37768. height: math.unit(4, "feet"),
  37769. weight: math.unit(100, "lb"),
  37770. name: "Back-kobold",
  37771. image: {
  37772. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37773. extra: 1449/1361,
  37774. bottom: 0/1449
  37775. }
  37776. },
  37777. },
  37778. [
  37779. {
  37780. name: "Normal",
  37781. height: math.unit(4, "feet"),
  37782. default: true
  37783. },
  37784. ]
  37785. ))
  37786. characterMakers.push(() => makeCharacter(
  37787. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37788. {
  37789. front: {
  37790. height: math.unit(12 + 6/12, "feet"),
  37791. name: "Front",
  37792. image: {
  37793. source: "./media/characters/kass-lockheed/front.svg",
  37794. extra: 354/343,
  37795. bottom: 9/363
  37796. }
  37797. },
  37798. back: {
  37799. height: math.unit(12 + 6/12, "feet"),
  37800. name: "Back",
  37801. image: {
  37802. source: "./media/characters/kass-lockheed/back.svg",
  37803. extra: 364/352,
  37804. bottom: 3/367
  37805. }
  37806. },
  37807. dick: {
  37808. height: math.unit(3.12, "feet"),
  37809. name: "Dick",
  37810. image: {
  37811. source: "./media/characters/kass-lockheed/dick.svg"
  37812. }
  37813. },
  37814. head: {
  37815. height: math.unit(2.6, "feet"),
  37816. name: "Head",
  37817. image: {
  37818. source: "./media/characters/kass-lockheed/head.svg"
  37819. }
  37820. },
  37821. bleh: {
  37822. height: math.unit(2.85, "feet"),
  37823. name: "Bleh",
  37824. image: {
  37825. source: "./media/characters/kass-lockheed/bleh.svg"
  37826. }
  37827. },
  37828. smug: {
  37829. height: math.unit(2.85, "feet"),
  37830. name: "Smug",
  37831. image: {
  37832. source: "./media/characters/kass-lockheed/smug.svg"
  37833. }
  37834. },
  37835. },
  37836. [
  37837. {
  37838. name: "Normal",
  37839. height: math.unit(12 + 6/12, "feet"),
  37840. default: true
  37841. },
  37842. ]
  37843. ))
  37844. characterMakers.push(() => makeCharacter(
  37845. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37846. {
  37847. front: {
  37848. height: math.unit(6 + 2/12, "feet"),
  37849. name: "Front",
  37850. image: {
  37851. source: "./media/characters/taylor/front.svg",
  37852. extra: 639/495,
  37853. bottom: 12/651
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Normal",
  37860. height: math.unit(6 + 2/12, "feet"),
  37861. default: true
  37862. },
  37863. {
  37864. name: "Big",
  37865. height: math.unit(15, "feet")
  37866. },
  37867. {
  37868. name: "Lorg",
  37869. height: math.unit(80, "feet")
  37870. },
  37871. {
  37872. name: "Too Lorg",
  37873. height: math.unit(120, "feet")
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(15, "feet"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/kaizer/front.svg",
  37885. extra: 1612/1436,
  37886. bottom: 43/1655
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(15, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(2, "feet"),
  37903. weight: math.unit(30, "lb"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/sandy/front.svg",
  37907. extra: 1439/1307,
  37908. bottom: 194/1633
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(2, "feet"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37922. {
  37923. front: {
  37924. height: math.unit(3, "feet"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/mellvi/front.svg",
  37928. extra: 1831/1630,
  37929. bottom: 58/1889
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(3, "feet"),
  37937. default: true
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37943. {
  37944. front: {
  37945. height: math.unit(5 + 11/12, "feet"),
  37946. weight: math.unit(200, "lb"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/shirou/front.svg",
  37950. extra: 2491/2383,
  37951. bottom: 189/2680
  37952. }
  37953. },
  37954. back: {
  37955. height: math.unit(5 + 11/12, "feet"),
  37956. weight: math.unit(200, "lb"),
  37957. name: "Back",
  37958. image: {
  37959. source: "./media/characters/shirou/back.svg",
  37960. extra: 2554/2450,
  37961. bottom: 76/2630
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(5 + 11/12, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(6 + 3/12, "feet"),
  37978. weight: math.unit(177, "lb"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/noryu/front.svg",
  37982. extra: 973/885,
  37983. bottom: 10/983
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(6 + 3/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(5 + 6/12, "feet"),
  38000. weight: math.unit(170, "lb"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/mevolas-rubenido/front.svg",
  38004. extra: 2109/1901,
  38005. bottom: 96/2205
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(5 + 6/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(100, "feet"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/dee/front.svg",
  38025. extra: 2153/2036,
  38026. bottom: 59/2212
  38027. }
  38028. },
  38029. back: {
  38030. height: math.unit(100, "feet"),
  38031. name: "Back",
  38032. image: {
  38033. source: "./media/characters/dee/back.svg",
  38034. extra: 2183/2058,
  38035. bottom: 75/2258
  38036. }
  38037. },
  38038. foot: {
  38039. height: math.unit(19.43, "feet"),
  38040. name: "Foot",
  38041. image: {
  38042. source: "./media/characters/dee/foot.svg"
  38043. }
  38044. },
  38045. hoof: {
  38046. height: math.unit(20.6, "feet"),
  38047. name: "Hoof",
  38048. image: {
  38049. source: "./media/characters/dee/hoof.svg"
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Macro",
  38056. height: math.unit(100, "feet"),
  38057. default: true
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38063. {
  38064. front: {
  38065. height: math.unit(5 + 6/12, "feet"),
  38066. name: "Front",
  38067. image: {
  38068. source: "./media/characters/teh/front.svg",
  38069. extra: 1002/847,
  38070. bottom: 62/1064
  38071. }
  38072. },
  38073. },
  38074. [
  38075. {
  38076. name: "Normal",
  38077. height: math.unit(5 + 6/12, "feet"),
  38078. default: true
  38079. },
  38080. ]
  38081. ))
  38082. characterMakers.push(() => makeCharacter(
  38083. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38084. {
  38085. side: {
  38086. height: math.unit(6 + 1/12, "feet"),
  38087. weight: math.unit(204, "lb"),
  38088. name: "Side",
  38089. image: {
  38090. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38091. extra: 974/775,
  38092. bottom: 169/1143
  38093. }
  38094. },
  38095. sitting: {
  38096. height: math.unit(6 + 2/12, "feet"),
  38097. weight: math.unit(204, "lb"),
  38098. name: "Sitting",
  38099. image: {
  38100. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38101. extra: 1175/964,
  38102. bottom: 378/1553
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(6 + 1/12, "feet"),
  38110. default: true
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38116. {
  38117. front: {
  38118. height: math.unit(6, "inches"),
  38119. name: "Front",
  38120. image: {
  38121. source: "./media/characters/tululi/front.svg",
  38122. extra: 1997/1876,
  38123. bottom: 20/2017
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(6, "inches"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(4 + 1/12, "feet"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/star/front.svg",
  38143. extra: 1493/1189,
  38144. bottom: 48/1541
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(4 + 1/12, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38158. {
  38159. front: {
  38160. height: math.unit(6 + 3/12, "feet"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/comet/front.svg",
  38164. extra: 1681/1462,
  38165. bottom: 26/1707
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(6 + 3/12, "feet"),
  38173. default: true
  38174. },
  38175. ]
  38176. ))
  38177. characterMakers.push(() => makeCharacter(
  38178. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38179. {
  38180. front: {
  38181. height: math.unit(950, "feet"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/vortex/front.svg",
  38185. extra: 1497/1434,
  38186. bottom: 56/1553
  38187. }
  38188. },
  38189. maw: {
  38190. height: math.unit(285, "feet"),
  38191. name: "Maw",
  38192. image: {
  38193. source: "./media/characters/vortex/maw.svg"
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Macro",
  38200. height: math.unit(950, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(600, "feet"),
  38210. weight: math.unit(0.02, "grams"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/doodle/front.svg",
  38214. extra: 1578/1413,
  38215. bottom: 37/1615
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Macro",
  38222. height: math.unit(600, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(6 + 6/12, "feet"),
  38232. name: "Front",
  38233. image: {
  38234. source: "./media/characters/jai/front.svg",
  38235. extra: 1645/1534,
  38236. bottom: 115/1760
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(6 + 6/12, "feet"),
  38244. default: true
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(6 + 8/12, "feet"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/pixel/front.svg",
  38256. extra: 1900/1735,
  38257. bottom: 63/1963
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(6 + 8/12, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38271. {
  38272. back: {
  38273. height: math.unit(4 + 1/12, "feet"),
  38274. weight: math.unit(75, "lb"),
  38275. name: "Back",
  38276. image: {
  38277. source: "./media/characters/rhett/back.svg",
  38278. extra: 930/878,
  38279. bottom: 25/955
  38280. }
  38281. },
  38282. front: {
  38283. height: math.unit(4 + 1/12, "feet"),
  38284. weight: math.unit(75, "lb"),
  38285. name: "Front",
  38286. image: {
  38287. source: "./media/characters/rhett/front.svg",
  38288. extra: 1682/1586,
  38289. bottom: 92/1774
  38290. }
  38291. },
  38292. },
  38293. [
  38294. {
  38295. name: "Micro",
  38296. height: math.unit(8, "inches")
  38297. },
  38298. {
  38299. name: "Tiny",
  38300. height: math.unit(2, "feet")
  38301. },
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(4 + 1/12, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(3 + 3/12, "feet"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/penny/front.svg",
  38317. extra: 1406/1311,
  38318. bottom: 26/1432
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(3 + 3/12, "feet"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(4 + 11/12, "feet"),
  38335. name: "Front",
  38336. image: {
  38337. source: "./media/characters/monty/front.svg",
  38338. extra: 1479/1209,
  38339. bottom: 0/1479
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(4 + 11/12, "feet"),
  38347. default: true
  38348. },
  38349. ]
  38350. ))
  38351. characterMakers.push(() => makeCharacter(
  38352. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38353. {
  38354. front: {
  38355. height: math.unit(8 + 4/12, "feet"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/sterling/front.svg",
  38359. extra: 1420/1236,
  38360. bottom: 27/1447
  38361. }
  38362. },
  38363. },
  38364. [
  38365. {
  38366. name: "Normal",
  38367. height: math.unit(8 + 4/12, "feet"),
  38368. default: true
  38369. },
  38370. ]
  38371. ))
  38372. characterMakers.push(() => makeCharacter(
  38373. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38374. {
  38375. front: {
  38376. height: math.unit(15, "feet"),
  38377. name: "Front",
  38378. image: {
  38379. source: "./media/characters/marble/front.svg",
  38380. extra: 973/937,
  38381. bottom: 32/1005
  38382. }
  38383. },
  38384. },
  38385. [
  38386. {
  38387. name: "Normal",
  38388. height: math.unit(15, "feet"),
  38389. default: true
  38390. },
  38391. ]
  38392. ))
  38393. characterMakers.push(() => makeCharacter(
  38394. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38395. {
  38396. front: {
  38397. height: math.unit(3, "inches"),
  38398. name: "Front",
  38399. image: {
  38400. source: "./media/characters/powder/front.svg",
  38401. extra: 1504/1334,
  38402. bottom: 518/2022
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(3, "inches"),
  38410. default: true
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(4 + 5/12, "feet"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/joey-raccoon/front.svg",
  38422. extra: 1273/1197,
  38423. bottom: 0/1273
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(4 + 5/12, "feet"),
  38431. default: true
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(8 + 4/12, "feet"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/vick/front.svg",
  38443. extra: 2187/2118,
  38444. bottom: 47/2234
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "Normal",
  38451. height: math.unit(8 + 4/12, "feet"),
  38452. default: true
  38453. },
  38454. ]
  38455. ))
  38456. characterMakers.push(() => makeCharacter(
  38457. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38458. {
  38459. front: {
  38460. height: math.unit(5 + 5/12, "feet"),
  38461. name: "Front",
  38462. image: {
  38463. source: "./media/characters/mitsy/front.svg",
  38464. extra: 1842/1695,
  38465. bottom: 0/1842
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(5 + 5/12, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(6 + 3/12, "feet"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/silvy/front.svg",
  38485. extra: 1995/1836,
  38486. bottom: 225/2220
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(6 + 3/12, "feet"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(3 + 8/12, "feet"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/rodney/front.svg",
  38506. extra: 1956/1747,
  38507. bottom: 31/1987
  38508. }
  38509. },
  38510. frontDressed: {
  38511. height: math.unit(2.9, "feet"),
  38512. name: "Front (Dressed)",
  38513. image: {
  38514. source: "./media/characters/rodney/front-dressed.svg",
  38515. extra: 1382/1241,
  38516. bottom: 385/1767
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(3 + 8/12, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38530. {
  38531. front: {
  38532. height: math.unit(5 + 9/12, "feet"),
  38533. weight: math.unit(194, "lbs"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/zakail-sudekai/front.svg",
  38537. extra: 2696/2533,
  38538. bottom: 248/2944
  38539. }
  38540. },
  38541. maw: {
  38542. height: math.unit(1.35, "feet"),
  38543. name: "Maw",
  38544. image: {
  38545. source: "./media/characters/zakail-sudekai/maw.svg"
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(5 + 9/12, "feet"),
  38553. default: true
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(8 + 4/12, "feet"),
  38562. weight: math.unit(1200, "lb"),
  38563. name: "Front",
  38564. image: {
  38565. source: "./media/characters/eleanor/front.svg",
  38566. extra: 1226/1192,
  38567. bottom: 52/1278
  38568. }
  38569. },
  38570. back: {
  38571. height: math.unit(8 + 4/12, "feet"),
  38572. weight: math.unit(1200, "lb"),
  38573. name: "Back",
  38574. image: {
  38575. source: "./media/characters/eleanor/back.svg",
  38576. extra: 1242/1184,
  38577. bottom: 60/1302
  38578. }
  38579. },
  38580. head: {
  38581. height: math.unit(2.62, "feet"),
  38582. name: "Head",
  38583. image: {
  38584. source: "./media/characters/eleanor/head.svg"
  38585. }
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(8 + 4/12, "feet"),
  38592. default: true
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(8 + 4/12, "feet"),
  38601. weight: math.unit(750, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/tanya/front.svg",
  38605. extra: 1749/1615,
  38606. bottom: 33/1782
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(8 + 4/12, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(5, "feet"),
  38623. weight: math.unit(225, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/cindy/front.svg",
  38627. extra: 1320/1250,
  38628. bottom: 42/1362
  38629. }
  38630. },
  38631. frontDressed: {
  38632. height: math.unit(5, "feet"),
  38633. weight: math.unit(225, "lb"),
  38634. name: "Front (Dressed)",
  38635. image: {
  38636. source: "./media/characters/cindy/front-dressed.svg",
  38637. extra: 1320/1250,
  38638. bottom: 42/1362
  38639. }
  38640. },
  38641. back: {
  38642. height: math.unit(5, "feet"),
  38643. weight: math.unit(225, "lb"),
  38644. name: "Back",
  38645. image: {
  38646. source: "./media/characters/cindy/back.svg",
  38647. extra: 1384/1346,
  38648. bottom: 14/1398
  38649. }
  38650. },
  38651. },
  38652. [
  38653. {
  38654. name: "Normal",
  38655. height: math.unit(5, "feet"),
  38656. default: true
  38657. },
  38658. ]
  38659. ))
  38660. characterMakers.push(() => makeCharacter(
  38661. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38662. {
  38663. front: {
  38664. height: math.unit(6 + 9/12, "feet"),
  38665. weight: math.unit(440, "lb"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/wilbur-owen/front.svg",
  38669. extra: 1575/1448,
  38670. bottom: 72/1647
  38671. }
  38672. },
  38673. back: {
  38674. height: math.unit(6 + 9/12, "feet"),
  38675. weight: math.unit(440, "lb"),
  38676. name: "Back",
  38677. image: {
  38678. source: "./media/characters/wilbur-owen/back.svg",
  38679. extra: 1578/1445,
  38680. bottom: 36/1614
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(6 + 9/12, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(6 + 5/12, "feet"),
  38697. weight: math.unit(650, "lb"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/keegan/front.svg",
  38701. extra: 2387/2198,
  38702. bottom: 33/2420
  38703. }
  38704. },
  38705. side: {
  38706. height: math.unit(6 + 5/12, "feet"),
  38707. weight: math.unit(650, "lb"),
  38708. name: "Side",
  38709. image: {
  38710. source: "./media/characters/keegan/side.svg",
  38711. extra: 2390/2202,
  38712. bottom: 47/2437
  38713. }
  38714. },
  38715. back: {
  38716. height: math.unit(6 + 5/12, "feet"),
  38717. weight: math.unit(650, "lb"),
  38718. name: "Back",
  38719. image: {
  38720. source: "./media/characters/keegan/back.svg",
  38721. extra: 2418/2268,
  38722. bottom: 15/2433
  38723. }
  38724. },
  38725. frontSfw: {
  38726. height: math.unit(6 + 5/12, "feet"),
  38727. weight: math.unit(650, "lb"),
  38728. name: "Front (SFW)",
  38729. image: {
  38730. source: "./media/characters/keegan/front-sfw.svg",
  38731. extra: 2387/2198,
  38732. bottom: 33/2420
  38733. }
  38734. },
  38735. beans: {
  38736. height: math.unit(1.85, "feet"),
  38737. name: "Beans",
  38738. image: {
  38739. source: "./media/characters/keegan/beans.svg"
  38740. }
  38741. },
  38742. },
  38743. [
  38744. {
  38745. name: "Normal",
  38746. height: math.unit(6 + 5/12, "feet"),
  38747. default: true
  38748. },
  38749. ]
  38750. ))
  38751. characterMakers.push(() => makeCharacter(
  38752. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38753. {
  38754. front: {
  38755. height: math.unit(9, "feet"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/colton/front.svg",
  38759. extra: 1589/1326,
  38760. bottom: 139/1728
  38761. }
  38762. },
  38763. },
  38764. [
  38765. {
  38766. name: "Normal",
  38767. height: math.unit(9, "feet"),
  38768. default: true
  38769. },
  38770. ]
  38771. ))
  38772. characterMakers.push(() => makeCharacter(
  38773. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38774. {
  38775. front: {
  38776. height: math.unit(2 + 9/12, "feet"),
  38777. name: "Front",
  38778. image: {
  38779. source: "./media/characters/bora/front.svg",
  38780. extra: 1265/1250,
  38781. bottom: 24/1289
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(2 + 9/12, "feet"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(8, "feet"),
  38798. name: "Front",
  38799. image: {
  38800. source: "./media/characters/myu-myu/front.svg",
  38801. extra: 1949/1857,
  38802. bottom: 90/2039
  38803. }
  38804. },
  38805. },
  38806. [
  38807. {
  38808. name: "Normal",
  38809. height: math.unit(8, "feet"),
  38810. default: true
  38811. },
  38812. {
  38813. name: "Big",
  38814. height: math.unit(15, "feet")
  38815. },
  38816. {
  38817. name: "BIG",
  38818. height: math.unit(25, "feet")
  38819. },
  38820. ]
  38821. ))
  38822. characterMakers.push(() => makeCharacter(
  38823. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38824. {
  38825. side: {
  38826. height: math.unit(7 + 5/12, "feet"),
  38827. weight: math.unit(2800, "lb"),
  38828. name: "Side",
  38829. image: {
  38830. source: "./media/characters/haloren/side.svg",
  38831. extra: 1793/409,
  38832. bottom: 59/1852
  38833. }
  38834. },
  38835. frontPaw: {
  38836. height: math.unit(2.36, "feet"),
  38837. name: "Front paw",
  38838. image: {
  38839. source: "./media/characters/haloren/front-paw.svg"
  38840. }
  38841. },
  38842. hindPaw: {
  38843. height: math.unit(3.18, "feet"),
  38844. name: "Hind paw",
  38845. image: {
  38846. source: "./media/characters/haloren/hind-paw.svg"
  38847. }
  38848. },
  38849. maw: {
  38850. height: math.unit(5.05, "feet"),
  38851. name: "Maw",
  38852. image: {
  38853. source: "./media/characters/haloren/maw.svg"
  38854. }
  38855. },
  38856. dick: {
  38857. height: math.unit(2.90, "feet"),
  38858. name: "Dick",
  38859. image: {
  38860. source: "./media/characters/haloren/dick.svg"
  38861. }
  38862. },
  38863. },
  38864. [
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(7 + 5/12, "feet"),
  38868. default: true
  38869. },
  38870. {
  38871. name: "Enhanced",
  38872. height: math.unit(14 + 3/12, "feet")
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(171, "cm"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/kimmy/front.svg",
  38884. extra: 1491/1435,
  38885. bottom: 53/1544
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Small",
  38892. height: math.unit(9, "cm")
  38893. },
  38894. {
  38895. name: "Normal",
  38896. height: math.unit(171, "cm"),
  38897. default: true
  38898. },
  38899. ]
  38900. ))
  38901. characterMakers.push(() => makeCharacter(
  38902. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38903. {
  38904. front: {
  38905. height: math.unit(8, "feet"),
  38906. weight: math.unit(300, "lb"),
  38907. name: "Front",
  38908. image: {
  38909. source: "./media/characters/galeboomer/front.svg",
  38910. extra: 4651/4415,
  38911. bottom: 162/4813
  38912. }
  38913. },
  38914. back: {
  38915. height: math.unit(8, "feet"),
  38916. weight: math.unit(300, "lb"),
  38917. name: "Back",
  38918. image: {
  38919. source: "./media/characters/galeboomer/back.svg",
  38920. extra: 4544/4314,
  38921. bottom: 16/4560
  38922. }
  38923. },
  38924. frontAlt: {
  38925. height: math.unit(8, "feet"),
  38926. weight: math.unit(300, "lb"),
  38927. name: "Front (Alt)",
  38928. image: {
  38929. source: "./media/characters/galeboomer/front-alt.svg",
  38930. extra: 4458/4228,
  38931. bottom: 68/4526
  38932. }
  38933. },
  38934. maw: {
  38935. height: math.unit(1.2, "feet"),
  38936. name: "Maw",
  38937. image: {
  38938. source: "./media/characters/galeboomer/maw.svg"
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Normal",
  38945. height: math.unit(8, "feet"),
  38946. default: true
  38947. },
  38948. ]
  38949. ))
  38950. characterMakers.push(() => makeCharacter(
  38951. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38952. {
  38953. front: {
  38954. height: math.unit(5 + 9/12, "feet"),
  38955. weight: math.unit(120, "lb"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/chyr/front.svg",
  38959. extra: 1323/1254,
  38960. bottom: 63/1386
  38961. }
  38962. },
  38963. back: {
  38964. height: math.unit(5 + 9/12, "feet"),
  38965. weight: math.unit(120, "lb"),
  38966. name: "Back",
  38967. image: {
  38968. source: "./media/characters/chyr/back.svg",
  38969. extra: 1323/1252,
  38970. bottom: 48/1371
  38971. }
  38972. },
  38973. },
  38974. [
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(5 + 9/12, "feet"),
  38978. default: true
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38984. {
  38985. front: {
  38986. height: math.unit(7, "feet"),
  38987. weight: math.unit(310, "lb"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/solarus/front.svg",
  38991. extra: 2415/2021,
  38992. bottom: 103/2518
  38993. }
  38994. },
  38995. back: {
  38996. height: math.unit(7, "feet"),
  38997. weight: math.unit(310, "lb"),
  38998. name: "Back",
  38999. image: {
  39000. source: "./media/characters/solarus/back.svg",
  39001. extra: 2463/2089,
  39002. bottom: 79/2542
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(7, "feet"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(16, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39022. extra: 1844/1780,
  39023. bottom: 58/1902
  39024. }
  39025. },
  39026. winterCoat: {
  39027. height: math.unit(16, "feet"),
  39028. name: "Winter Coat",
  39029. image: {
  39030. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39031. extra: 1807/1775,
  39032. bottom: 69/1876
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(16, "feet"),
  39040. default: true
  39041. },
  39042. {
  39043. name: "Chicago Size",
  39044. height: math.unit(560, "feet")
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(11 + 6/12, "feet"),
  39053. weight: math.unit(1366, "lb"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/lexor/front.svg",
  39057. extra: 1560/1481,
  39058. bottom: 211/1771
  39059. }
  39060. },
  39061. back: {
  39062. height: math.unit(11 + 6/12, "feet"),
  39063. weight: math.unit(1366, "lb"),
  39064. name: "Back",
  39065. image: {
  39066. source: "./media/characters/lexor/back.svg",
  39067. extra: 1614/1533,
  39068. bottom: 76/1690
  39069. }
  39070. },
  39071. maw: {
  39072. height: math.unit(3, "feet"),
  39073. name: "Maw",
  39074. image: {
  39075. source: "./media/characters/lexor/maw.svg"
  39076. }
  39077. },
  39078. dick: {
  39079. height: math.unit(2.59, "feet"),
  39080. name: "Dick",
  39081. image: {
  39082. source: "./media/characters/lexor/dick.svg"
  39083. }
  39084. },
  39085. },
  39086. [
  39087. {
  39088. name: "Normal",
  39089. height: math.unit(11 + 6/12, "feet"),
  39090. default: true
  39091. },
  39092. ]
  39093. ))
  39094. characterMakers.push(() => makeCharacter(
  39095. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39096. {
  39097. front: {
  39098. height: math.unit(5 + 8/12, "feet"),
  39099. name: "Front",
  39100. image: {
  39101. source: "./media/characters/magnum/front.svg",
  39102. extra: 942/855,
  39103. bottom: 26/968
  39104. }
  39105. },
  39106. },
  39107. [
  39108. {
  39109. name: "Normal",
  39110. height: math.unit(5 + 8/12, "feet"),
  39111. default: true
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(18 + 4/12, "feet"),
  39120. weight: math.unit(1500, "kg"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/solas-sharpsman/front.svg",
  39124. extra: 1698/1589,
  39125. bottom: 0/1698
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(18 + 4/12, "feet"),
  39133. default: true
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(5 + 5/12, "feet"),
  39142. weight: math.unit(180, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/october/front.svg",
  39146. extra: 1800/1650,
  39147. bottom: 0/1800
  39148. }
  39149. },
  39150. frontNsfw: {
  39151. height: math.unit(5 + 5/12, "feet"),
  39152. weight: math.unit(180, "lb"),
  39153. name: "Front (NSFW)",
  39154. image: {
  39155. source: "./media/characters/october/front-nsfw.svg",
  39156. extra: 1392/1307,
  39157. bottom: 42/1434
  39158. }
  39159. },
  39160. },
  39161. [
  39162. {
  39163. name: "Normal",
  39164. height: math.unit(5 + 5/12, "feet"),
  39165. default: true
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(8 + 6/12, "feet"),
  39174. name: "Front",
  39175. image: {
  39176. source: "./media/characters/essynkardi/front.svg",
  39177. extra: 1541/1457,
  39178. bottom: 47/1588
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(8 + 6/12, "feet"),
  39186. default: true
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(6 + 6/12, "feet"),
  39195. weight: math.unit(7, "lb"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/icky/front.svg",
  39199. extra: 813/782,
  39200. bottom: 66/879
  39201. }
  39202. },
  39203. back: {
  39204. height: math.unit(6 + 6/12, "feet"),
  39205. weight: math.unit(7, "lb"),
  39206. name: "Back",
  39207. image: {
  39208. source: "./media/characters/icky/back.svg",
  39209. extra: 754/735,
  39210. bottom: 56/810
  39211. }
  39212. },
  39213. },
  39214. [
  39215. {
  39216. name: "Normal",
  39217. height: math.unit(6 + 6/12, "feet"),
  39218. default: true
  39219. },
  39220. ]
  39221. ))
  39222. characterMakers.push(() => makeCharacter(
  39223. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39224. {
  39225. front: {
  39226. height: math.unit(15, "feet"),
  39227. name: "Front",
  39228. image: {
  39229. source: "./media/characters/rojas/front.svg",
  39230. extra: 1462/1408,
  39231. bottom: 95/1557
  39232. }
  39233. },
  39234. back: {
  39235. height: math.unit(15, "feet"),
  39236. name: "Back",
  39237. image: {
  39238. source: "./media/characters/rojas/back.svg",
  39239. extra: 1023/954,
  39240. bottom: 28/1051
  39241. }
  39242. },
  39243. },
  39244. [
  39245. {
  39246. name: "Normal",
  39247. height: math.unit(15, "feet"),
  39248. default: true
  39249. },
  39250. ]
  39251. ))
  39252. characterMakers.push(() => makeCharacter(
  39253. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39254. {
  39255. frontHuman: {
  39256. height: math.unit(5 + 7/12, "feet"),
  39257. name: "Front (Human)",
  39258. image: {
  39259. source: "./media/characters/alek-dryagan/front-human.svg",
  39260. extra: 1687/1667,
  39261. bottom: 69/1756
  39262. }
  39263. },
  39264. backHuman: {
  39265. height: math.unit(5 + 7/12, "feet"),
  39266. name: "Back (Human)",
  39267. image: {
  39268. source: "./media/characters/alek-dryagan/back-human.svg",
  39269. extra: 1670/1649,
  39270. bottom: 65/1735
  39271. }
  39272. },
  39273. frontDemi: {
  39274. height: math.unit(65, "feet"),
  39275. name: "Front (Demi)",
  39276. image: {
  39277. source: "./media/characters/alek-dryagan/front-demi.svg",
  39278. extra: 1669/1642,
  39279. bottom: 49/1718
  39280. }
  39281. },
  39282. backDemi: {
  39283. height: math.unit(65, "feet"),
  39284. name: "Back (Demi)",
  39285. image: {
  39286. source: "./media/characters/alek-dryagan/back-demi.svg",
  39287. extra: 1658/1637,
  39288. bottom: 40/1698
  39289. }
  39290. },
  39291. mawHuman: {
  39292. height: math.unit(0.3, "feet"),
  39293. name: "Maw (Human)",
  39294. image: {
  39295. source: "./media/characters/alek-dryagan/maw-human.svg"
  39296. }
  39297. },
  39298. mawDemi: {
  39299. height: math.unit(3.8, "feet"),
  39300. name: "Maw (Demi)",
  39301. image: {
  39302. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(5 + 7/12, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39316. {
  39317. frontHuman: {
  39318. height: math.unit(5 + 2/12, "feet"),
  39319. name: "Front (Human)",
  39320. image: {
  39321. source: "./media/characters/gen/front-human.svg",
  39322. extra: 1627/1538,
  39323. bottom: 71/1698
  39324. }
  39325. },
  39326. backHuman: {
  39327. height: math.unit(5 + 2/12, "feet"),
  39328. name: "Back (Human)",
  39329. image: {
  39330. source: "./media/characters/gen/back-human.svg",
  39331. extra: 1638/1548,
  39332. bottom: 69/1707
  39333. }
  39334. },
  39335. frontDemi: {
  39336. height: math.unit(5 + 2/12, "feet"),
  39337. name: "Front (Demi)",
  39338. image: {
  39339. source: "./media/characters/gen/front-demi.svg",
  39340. extra: 1627/1538,
  39341. bottom: 71/1698
  39342. }
  39343. },
  39344. backDemi: {
  39345. height: math.unit(5 + 2/12, "feet"),
  39346. name: "Back (Demi)",
  39347. image: {
  39348. source: "./media/characters/gen/back-demi.svg",
  39349. extra: 1638/1548,
  39350. bottom: 69/1707
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(5 + 2/12, "feet"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39364. {
  39365. frontImp: {
  39366. height: math.unit(1 + 11/12, "feet"),
  39367. name: "Front (Imp)",
  39368. image: {
  39369. source: "./media/characters/max-kobold/front-imp.svg",
  39370. extra: 1238/1134,
  39371. bottom: 81/1319
  39372. }
  39373. },
  39374. backImp: {
  39375. height: math.unit(1 + 11/12, "feet"),
  39376. name: "Back (Imp)",
  39377. image: {
  39378. source: "./media/characters/max-kobold/back-imp.svg",
  39379. extra: 1334/1175,
  39380. bottom: 34/1368
  39381. }
  39382. },
  39383. frontDemi: {
  39384. height: math.unit(5 + 9/12, "feet"),
  39385. name: "Front (Demi)",
  39386. image: {
  39387. source: "./media/characters/max-kobold/front-demi.svg",
  39388. extra: 1715/1685,
  39389. bottom: 54/1769
  39390. }
  39391. },
  39392. backDemi: {
  39393. height: math.unit(5 + 9/12, "feet"),
  39394. name: "Back (Demi)",
  39395. image: {
  39396. source: "./media/characters/max-kobold/back-demi.svg",
  39397. extra: 1752/1729,
  39398. bottom: 41/1793
  39399. }
  39400. },
  39401. handImp: {
  39402. height: math.unit(0.45, "feet"),
  39403. name: "Hand (Imp)",
  39404. image: {
  39405. source: "./media/characters/max-kobold/hand.svg"
  39406. }
  39407. },
  39408. pawImp: {
  39409. height: math.unit(0.46, "feet"),
  39410. name: "Paw (Imp)",
  39411. image: {
  39412. source: "./media/characters/max-kobold/paw.svg"
  39413. }
  39414. },
  39415. handDemi: {
  39416. height: math.unit(0.80, "feet"),
  39417. name: "Hand (Demi)",
  39418. image: {
  39419. source: "./media/characters/max-kobold/hand.svg"
  39420. }
  39421. },
  39422. pawDemi: {
  39423. height: math.unit(1.1, "feet"),
  39424. name: "Paw (Demi)",
  39425. image: {
  39426. source: "./media/characters/max-kobold/paw.svg"
  39427. }
  39428. },
  39429. headImp: {
  39430. height: math.unit(1.33, "feet"),
  39431. name: "Head (Imp)",
  39432. image: {
  39433. source: "./media/characters/max-kobold/head-imp.svg"
  39434. }
  39435. },
  39436. mawImp: {
  39437. height: math.unit(0.75, "feet"),
  39438. name: "Maw (Imp)",
  39439. image: {
  39440. source: "./media/characters/max-kobold/maw-imp.svg"
  39441. }
  39442. },
  39443. mawDemi: {
  39444. height: math.unit(0.42, "feet"),
  39445. name: "Maw (Demi)",
  39446. image: {
  39447. source: "./media/characters/max-kobold/maw-demi.svg"
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(1 + 11/12, "feet"),
  39455. default: true
  39456. },
  39457. ]
  39458. ))
  39459. characterMakers.push(() => makeCharacter(
  39460. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39461. {
  39462. front: {
  39463. height: math.unit(7 + 5/12, "feet"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/carbon/front.svg",
  39467. extra: 1754/1689,
  39468. bottom: 65/1819
  39469. }
  39470. },
  39471. back: {
  39472. height: math.unit(7 + 5/12, "feet"),
  39473. name: "Back",
  39474. image: {
  39475. source: "./media/characters/carbon/back.svg",
  39476. extra: 1762/1695,
  39477. bottom: 24/1786
  39478. }
  39479. },
  39480. frontGigantamax: {
  39481. height: math.unit(150, "feet"),
  39482. name: "Front (Gigantamax)",
  39483. image: {
  39484. source: "./media/characters/carbon/front-gigantamax.svg",
  39485. extra: 1826/1669,
  39486. bottom: 59/1885
  39487. }
  39488. },
  39489. backGigantamax: {
  39490. height: math.unit(150, "feet"),
  39491. name: "Back (Gigantamax)",
  39492. image: {
  39493. source: "./media/characters/carbon/back-gigantamax.svg",
  39494. extra: 1796/1653,
  39495. bottom: 53/1849
  39496. }
  39497. },
  39498. maw: {
  39499. height: math.unit(0.48, "feet"),
  39500. name: "Maw",
  39501. image: {
  39502. source: "./media/characters/carbon/maw.svg"
  39503. }
  39504. },
  39505. mawGigantamax: {
  39506. height: math.unit(7.5, "feet"),
  39507. name: "Maw (Gigantamax)",
  39508. image: {
  39509. source: "./media/characters/carbon/maw-gigantamax.svg"
  39510. }
  39511. },
  39512. },
  39513. [
  39514. {
  39515. name: "Normal",
  39516. height: math.unit(7 + 5/12, "feet"),
  39517. default: true
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(6, "feet"),
  39526. name: "Front",
  39527. image: {
  39528. source: "./media/characters/maverick/front.svg",
  39529. extra: 1672/1661,
  39530. bottom: 85/1757
  39531. }
  39532. },
  39533. back: {
  39534. height: math.unit(6, "feet"),
  39535. name: "Back",
  39536. image: {
  39537. source: "./media/characters/maverick/back.svg",
  39538. extra: 1642/1631,
  39539. bottom: 38/1680
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(6, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39553. {
  39554. front: {
  39555. height: math.unit(15, "feet"),
  39556. weight: math.unit(615, "lb"),
  39557. name: "Front",
  39558. image: {
  39559. source: "./media/characters/grockle/front.svg",
  39560. extra: 1535/1427,
  39561. bottom: 56/1591
  39562. }
  39563. },
  39564. },
  39565. [
  39566. {
  39567. name: "Normal",
  39568. height: math.unit(15, "feet"),
  39569. default: true
  39570. },
  39571. {
  39572. name: "Large",
  39573. height: math.unit(150, "feet")
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(1876, "feet")
  39578. },
  39579. {
  39580. name: "Mega Macro",
  39581. height: math.unit(121940, "feet")
  39582. },
  39583. {
  39584. name: "Giga Macro",
  39585. height: math.unit(750, "km")
  39586. },
  39587. {
  39588. name: "Tera Macro",
  39589. height: math.unit(750000, "km")
  39590. },
  39591. {
  39592. name: "Galactic",
  39593. height: math.unit(1.4e5, "km")
  39594. },
  39595. {
  39596. name: "Godlike",
  39597. height: math.unit(9.8e280, "galaxies")
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(11, "meters"),
  39606. weight: math.unit(20, "tonnes"),
  39607. name: "Front",
  39608. image: {
  39609. source: "./media/characters/alistair/front.svg",
  39610. extra: 1265/1009,
  39611. bottom: 93/1358
  39612. }
  39613. },
  39614. },
  39615. [
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(11, "meters"),
  39619. default: true
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(5 + 8/12, "feet"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/haruka/front.svg",
  39631. extra: 2012/1952,
  39632. bottom: 0/2012
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(5 + 8/12, "feet"),
  39640. default: true
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39646. {
  39647. back: {
  39648. height: math.unit(9, "feet"),
  39649. name: "Back",
  39650. image: {
  39651. source: "./media/characters/vivian-sylveon/back.svg",
  39652. extra: 1853/1714,
  39653. bottom: 0/1853
  39654. }
  39655. },
  39656. },
  39657. [
  39658. {
  39659. name: "Normal",
  39660. height: math.unit(9, "feet"),
  39661. default: true
  39662. },
  39663. {
  39664. name: "Macro",
  39665. height: math.unit(500, "feet")
  39666. },
  39667. {
  39668. name: "Megamacro",
  39669. height: math.unit(600, "miles")
  39670. },
  39671. {
  39672. name: "Gigamacro",
  39673. height: math.unit(30000, "miles")
  39674. },
  39675. ]
  39676. ))
  39677. characterMakers.push(() => makeCharacter(
  39678. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39679. {
  39680. anthro: {
  39681. height: math.unit(5 + 10/12, "feet"),
  39682. weight: math.unit(100, "lb"),
  39683. name: "Anthro",
  39684. image: {
  39685. source: "./media/characters/daiki/anthro.svg",
  39686. extra: 1115/1027,
  39687. bottom: 69/1184
  39688. }
  39689. },
  39690. feral: {
  39691. height: math.unit(200, "feet"),
  39692. name: "Feral",
  39693. image: {
  39694. source: "./media/characters/daiki/feral.svg",
  39695. extra: 1256/313,
  39696. bottom: 39/1295
  39697. }
  39698. },
  39699. feralHead: {
  39700. height: math.unit(171, "feet"),
  39701. name: "Feral Head",
  39702. image: {
  39703. source: "./media/characters/daiki/feral-head.svg"
  39704. }
  39705. },
  39706. manaDragon: {
  39707. height: math.unit(170, "meters"),
  39708. name: "Mana-dragon",
  39709. image: {
  39710. source: "./media/characters/daiki/mana-dragon.svg",
  39711. extra: 763/420,
  39712. bottom: 97/860
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Normal",
  39719. height: math.unit(5 + 10/12, "feet"),
  39720. default: true
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39726. {
  39727. fullyEquippedFront: {
  39728. height: math.unit(3 + 1/12, "feet"),
  39729. weight: math.unit(24, "lb"),
  39730. name: "Fully Equipped (Front)",
  39731. image: {
  39732. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39733. extra: 687/605,
  39734. bottom: 18/705
  39735. }
  39736. },
  39737. fullyEquippedBack: {
  39738. height: math.unit(3 + 1/12, "feet"),
  39739. weight: math.unit(24, "lb"),
  39740. name: "Fully Equipped (Back)",
  39741. image: {
  39742. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39743. extra: 689/590,
  39744. bottom: 18/707
  39745. }
  39746. },
  39747. dailyWear: {
  39748. height: math.unit(3 + 1/12, "feet"),
  39749. weight: math.unit(24, "lb"),
  39750. name: "Daily Wear",
  39751. image: {
  39752. source: "./media/characters/tea-spot/daily-wear.svg",
  39753. extra: 701/620,
  39754. bottom: 21/722
  39755. }
  39756. },
  39757. maidWork: {
  39758. height: math.unit(3 + 1/12, "feet"),
  39759. weight: math.unit(24, "lb"),
  39760. name: "Maid Work",
  39761. image: {
  39762. source: "./media/characters/tea-spot/maid-work.svg",
  39763. extra: 693/609,
  39764. bottom: 15/708
  39765. }
  39766. },
  39767. },
  39768. [
  39769. {
  39770. name: "Normal",
  39771. height: math.unit(3 + 1/12, "feet"),
  39772. default: true
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(175, "cm"),
  39781. weight: math.unit(75, "kg"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/chee/front.svg",
  39785. extra: 1796/1740,
  39786. bottom: 40/1836
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Micro-Micro",
  39793. height: math.unit(1, "nm")
  39794. },
  39795. {
  39796. name: "Micro-erst",
  39797. height: math.unit(1, "micrometer")
  39798. },
  39799. {
  39800. name: "Micro-er",
  39801. height: math.unit(1, "cm")
  39802. },
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(175, "cm"),
  39806. default: true
  39807. },
  39808. {
  39809. name: "Macro",
  39810. height: math.unit(100, "m")
  39811. },
  39812. {
  39813. name: "Macro-er",
  39814. height: math.unit(1, "km")
  39815. },
  39816. {
  39817. name: "Macro-erst",
  39818. height: math.unit(10, "km")
  39819. },
  39820. {
  39821. name: "Macro-Macro",
  39822. height: math.unit(100, "km")
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(11 + 9/12, "feet"),
  39831. weight: math.unit(935, "lb"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/kingsley/front.svg",
  39835. extra: 1803/1674,
  39836. bottom: 127/1930
  39837. }
  39838. },
  39839. frontNude: {
  39840. height: math.unit(11 + 9/12, "feet"),
  39841. weight: math.unit(935, "lb"),
  39842. name: "Front (Nude)",
  39843. image: {
  39844. source: "./media/characters/kingsley/front-nude.svg",
  39845. extra: 1803/1674,
  39846. bottom: 127/1930
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Normal",
  39853. height: math.unit(11 + 9/12, "feet"),
  39854. default: true
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39860. {
  39861. side: {
  39862. height: math.unit(9, "feet"),
  39863. name: "Side",
  39864. image: {
  39865. source: "./media/characters/rymel/side.svg",
  39866. extra: 792/469,
  39867. bottom: 121/913
  39868. }
  39869. },
  39870. maw: {
  39871. height: math.unit(2.4, "meters"),
  39872. name: "Maw",
  39873. image: {
  39874. source: "./media/characters/rymel/maw.svg"
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "House Drake",
  39881. height: math.unit(2, "feet")
  39882. },
  39883. {
  39884. name: "Reduced",
  39885. height: math.unit(4.5, "feet")
  39886. },
  39887. {
  39888. name: "Normal",
  39889. height: math.unit(9, "feet"),
  39890. default: true
  39891. },
  39892. ]
  39893. ))
  39894. characterMakers.push(() => makeCharacter(
  39895. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39896. {
  39897. front: {
  39898. height: math.unit(1.74, "meters"),
  39899. weight: math.unit(55, "kg"),
  39900. name: "Front",
  39901. image: {
  39902. source: "./media/characters/rubus/front.svg",
  39903. extra: 1894/1742,
  39904. bottom: 44/1938
  39905. }
  39906. },
  39907. },
  39908. [
  39909. {
  39910. name: "Normal",
  39911. height: math.unit(1.74, "meters"),
  39912. default: true
  39913. },
  39914. ]
  39915. ))
  39916. characterMakers.push(() => makeCharacter(
  39917. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39918. {
  39919. front: {
  39920. height: math.unit(5 + 2/12, "feet"),
  39921. weight: math.unit(112, "lb"),
  39922. name: "Front",
  39923. image: {
  39924. source: "./media/characters/cassie-kingston/front.svg",
  39925. extra: 1438/1390,
  39926. bottom: 47/1485
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Normal",
  39933. height: math.unit(5 + 2/12, "feet"),
  39934. default: true
  39935. },
  39936. {
  39937. name: "Macro",
  39938. height: math.unit(128, "feet")
  39939. },
  39940. {
  39941. name: "Megamacro",
  39942. height: math.unit(2.56, "miles")
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39948. {
  39949. front: {
  39950. height: math.unit(7, "feet"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/fox/front.svg",
  39954. extra: 1798/1703,
  39955. bottom: 55/1853
  39956. }
  39957. },
  39958. back: {
  39959. height: math.unit(7, "feet"),
  39960. name: "Back",
  39961. image: {
  39962. source: "./media/characters/fox/back.svg",
  39963. extra: 1748/1649,
  39964. bottom: 32/1780
  39965. }
  39966. },
  39967. head: {
  39968. height: math.unit(1.95, "feet"),
  39969. name: "Head",
  39970. image: {
  39971. source: "./media/characters/fox/head.svg"
  39972. }
  39973. },
  39974. dick: {
  39975. height: math.unit(1.33, "feet"),
  39976. name: "Dick",
  39977. image: {
  39978. source: "./media/characters/fox/dick.svg"
  39979. }
  39980. },
  39981. foot: {
  39982. height: math.unit(1, "feet"),
  39983. name: "Foot",
  39984. image: {
  39985. source: "./media/characters/fox/foot.svg"
  39986. }
  39987. },
  39988. paw: {
  39989. height: math.unit(0.92, "feet"),
  39990. name: "Paw",
  39991. image: {
  39992. source: "./media/characters/fox/paw.svg"
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Small",
  39999. height: math.unit(3, "inches")
  40000. },
  40001. {
  40002. name: "\"Realistic\"",
  40003. height: math.unit(7, "feet")
  40004. },
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(150, "feet"),
  40008. default: true
  40009. },
  40010. {
  40011. name: "BIG",
  40012. height: math.unit(1200, "feet")
  40013. },
  40014. {
  40015. name: "👀",
  40016. height: math.unit(5, "miles")
  40017. },
  40018. {
  40019. name: "👀👀👀",
  40020. height: math.unit(64, "miles")
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40026. {
  40027. front: {
  40028. height: math.unit(625, "feet"),
  40029. name: "Front",
  40030. image: {
  40031. source: "./media/characters/asonja-rossa/front.svg",
  40032. extra: 1833/1686,
  40033. bottom: 24/1857
  40034. }
  40035. },
  40036. back: {
  40037. height: math.unit(625, "feet"),
  40038. name: "Back",
  40039. image: {
  40040. source: "./media/characters/asonja-rossa/back.svg",
  40041. extra: 1852/1753,
  40042. bottom: 26/1878
  40043. }
  40044. },
  40045. },
  40046. [
  40047. {
  40048. name: "Macro",
  40049. height: math.unit(625, "feet"),
  40050. default: true
  40051. },
  40052. ]
  40053. ))
  40054. characterMakers.push(() => makeCharacter(
  40055. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40056. {
  40057. side: {
  40058. height: math.unit(8, "feet"),
  40059. name: "Side",
  40060. image: {
  40061. source: "./media/characters/rezukii/side.svg",
  40062. extra: 979/542,
  40063. bottom: 87/1066
  40064. }
  40065. },
  40066. sitting: {
  40067. height: math.unit(14.6, "feet"),
  40068. name: "Sitting",
  40069. image: {
  40070. source: "./media/characters/rezukii/sitting.svg",
  40071. extra: 1023/813,
  40072. bottom: 45/1068
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Tiny",
  40079. height: math.unit(2, "feet")
  40080. },
  40081. {
  40082. name: "Smol",
  40083. height: math.unit(4, "feet")
  40084. },
  40085. {
  40086. name: "Normal",
  40087. height: math.unit(8, "feet"),
  40088. default: true
  40089. },
  40090. {
  40091. name: "Big",
  40092. height: math.unit(12, "feet")
  40093. },
  40094. {
  40095. name: "Macro",
  40096. height: math.unit(30, "feet")
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40102. {
  40103. front: {
  40104. height: math.unit(14, "feet"),
  40105. weight: math.unit(9.5, "tonnes"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/dawnheart/front.svg",
  40109. extra: 2792/2675,
  40110. bottom: 64/2856
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Normal",
  40117. height: math.unit(14, "feet"),
  40118. default: true
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40124. {
  40125. front: {
  40126. height: math.unit(1.7, "m"),
  40127. name: "Front",
  40128. image: {
  40129. source: "./media/characters/gladi/front.svg",
  40130. extra: 1460/1362,
  40131. bottom: 19/1479
  40132. }
  40133. },
  40134. back: {
  40135. height: math.unit(1.7, "m"),
  40136. name: "Back",
  40137. image: {
  40138. source: "./media/characters/gladi/back.svg",
  40139. extra: 1459/1357,
  40140. bottom: 12/1471
  40141. }
  40142. },
  40143. feral: {
  40144. height: math.unit(2.05, "m"),
  40145. name: "Feral",
  40146. image: {
  40147. source: "./media/characters/gladi/feral.svg",
  40148. extra: 821/557,
  40149. bottom: 91/912
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Shortest",
  40156. height: math.unit(70, "cm")
  40157. },
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(1.7, "m")
  40161. },
  40162. {
  40163. name: "Macro",
  40164. height: math.unit(10, "m"),
  40165. default: true
  40166. },
  40167. {
  40168. name: "Tallest",
  40169. height: math.unit(200, "m")
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40175. {
  40176. front: {
  40177. height: math.unit(5 + 7/12, "feet"),
  40178. weight: math.unit(2, "tons"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/erdno/front.svg",
  40182. extra: 1234/1129,
  40183. bottom: 35/1269
  40184. }
  40185. },
  40186. angled: {
  40187. height: math.unit(5 + 7/12, "feet"),
  40188. weight: math.unit(2, "tons"),
  40189. name: "Angled",
  40190. image: {
  40191. source: "./media/characters/erdno/angled.svg",
  40192. extra: 1185/1139,
  40193. bottom: 36/1221
  40194. }
  40195. },
  40196. side: {
  40197. height: math.unit(5 + 7/12, "feet"),
  40198. weight: math.unit(2, "tons"),
  40199. name: "Side",
  40200. image: {
  40201. source: "./media/characters/erdno/side.svg",
  40202. extra: 1191/1144,
  40203. bottom: 40/1231
  40204. }
  40205. },
  40206. back: {
  40207. height: math.unit(5 + 7/12, "feet"),
  40208. weight: math.unit(2, "tons"),
  40209. name: "Back",
  40210. image: {
  40211. source: "./media/characters/erdno/back.svg",
  40212. extra: 1202/1146,
  40213. bottom: 17/1219
  40214. }
  40215. },
  40216. frontNsfw: {
  40217. height: math.unit(5 + 7/12, "feet"),
  40218. weight: math.unit(2, "tons"),
  40219. name: "Front (NSFW)",
  40220. image: {
  40221. source: "./media/characters/erdno/front-nsfw.svg",
  40222. extra: 1234/1129,
  40223. bottom: 35/1269
  40224. }
  40225. },
  40226. angledNsfw: {
  40227. height: math.unit(5 + 7/12, "feet"),
  40228. weight: math.unit(2, "tons"),
  40229. name: "Angled (NSFW)",
  40230. image: {
  40231. source: "./media/characters/erdno/angled-nsfw.svg",
  40232. extra: 1185/1139,
  40233. bottom: 36/1221
  40234. }
  40235. },
  40236. sideNsfw: {
  40237. height: math.unit(5 + 7/12, "feet"),
  40238. weight: math.unit(2, "tons"),
  40239. name: "Side (NSFW)",
  40240. image: {
  40241. source: "./media/characters/erdno/side-nsfw.svg",
  40242. extra: 1191/1144,
  40243. bottom: 40/1231
  40244. }
  40245. },
  40246. backNsfw: {
  40247. height: math.unit(5 + 7/12, "feet"),
  40248. weight: math.unit(2, "tons"),
  40249. name: "Back (NSFW)",
  40250. image: {
  40251. source: "./media/characters/erdno/back-nsfw.svg",
  40252. extra: 1202/1146,
  40253. bottom: 17/1219
  40254. }
  40255. },
  40256. frontHyper: {
  40257. height: math.unit(5 + 7/12, "feet"),
  40258. weight: math.unit(2, "tons"),
  40259. name: "Front (Hyper)",
  40260. image: {
  40261. source: "./media/characters/erdno/front-hyper.svg",
  40262. extra: 1298/1136,
  40263. bottom: 35/1333
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Normal",
  40270. height: math.unit(5 + 7/12, "feet"),
  40271. default: true
  40272. },
  40273. {
  40274. name: "Big",
  40275. height: math.unit(5.7, "meters")
  40276. },
  40277. {
  40278. name: "Macro",
  40279. height: math.unit(5.7, "kilometers")
  40280. },
  40281. {
  40282. name: "Megamacro",
  40283. height: math.unit(5.7, "earths")
  40284. },
  40285. ]
  40286. ))
  40287. characterMakers.push(() => makeCharacter(
  40288. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40289. {
  40290. front: {
  40291. height: math.unit(5 + 10/12, "feet"),
  40292. weight: math.unit(150, "lb"),
  40293. name: "Front",
  40294. image: {
  40295. source: "./media/characters/jamie/front.svg",
  40296. extra: 1908/1768,
  40297. bottom: 19/1927
  40298. }
  40299. },
  40300. },
  40301. [
  40302. {
  40303. name: "Minimum",
  40304. height: math.unit(2, "cm")
  40305. },
  40306. {
  40307. name: "Micro",
  40308. height: math.unit(3, "inches")
  40309. },
  40310. {
  40311. name: "Normal",
  40312. height: math.unit(5 + 10/12, "feet"),
  40313. default: true
  40314. },
  40315. {
  40316. name: "Macro",
  40317. height: math.unit(150, "feet")
  40318. },
  40319. {
  40320. name: "Megamacro",
  40321. height: math.unit(10000, "m")
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(2, "meters"),
  40330. weight: math.unit(100, "kg"),
  40331. name: "Front",
  40332. image: {
  40333. source: "./media/characters/shiron/front.svg",
  40334. extra: 2103/1985,
  40335. bottom: 98/2201
  40336. }
  40337. },
  40338. back: {
  40339. height: math.unit(2, "meters"),
  40340. weight: math.unit(100, "kg"),
  40341. name: "Back",
  40342. image: {
  40343. source: "./media/characters/shiron/back.svg",
  40344. extra: 2110/2015,
  40345. bottom: 89/2199
  40346. }
  40347. },
  40348. hand: {
  40349. height: math.unit(0.96, "feet"),
  40350. name: "Hand",
  40351. image: {
  40352. source: "./media/characters/shiron/hand.svg"
  40353. }
  40354. },
  40355. foot: {
  40356. height: math.unit(1.464, "feet"),
  40357. name: "Foot",
  40358. image: {
  40359. source: "./media/characters/shiron/foot.svg"
  40360. }
  40361. },
  40362. },
  40363. [
  40364. {
  40365. name: "Normal",
  40366. height: math.unit(2, "meters")
  40367. },
  40368. {
  40369. name: "Macro",
  40370. height: math.unit(500, "meters"),
  40371. default: true
  40372. },
  40373. {
  40374. name: "Megamacro",
  40375. height: math.unit(20, "km")
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40381. {
  40382. front: {
  40383. height: math.unit(6, "feet"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/sam/front.svg",
  40387. extra: 849/826,
  40388. bottom: 19/868
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(6, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(8 + 4/12, "feet"),
  40405. weight: math.unit(122, "kg"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/namori-kurogawa/front.svg",
  40409. extra: 1894/1576,
  40410. bottom: 34/1928
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Normal",
  40417. height: math.unit(8 + 4/12, "feet"),
  40418. default: true
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(9, "feet"),
  40427. weight: math.unit(621, "lb"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/unmru/front.svg",
  40431. extra: 1853/1747,
  40432. bottom: 73/1926
  40433. }
  40434. },
  40435. side: {
  40436. height: math.unit(9, "feet"),
  40437. weight: math.unit(621, "lb"),
  40438. name: "Side",
  40439. image: {
  40440. source: "./media/characters/unmru/side.svg",
  40441. extra: 1781/1671,
  40442. bottom: 127/1908
  40443. }
  40444. },
  40445. back: {
  40446. height: math.unit(9, "feet"),
  40447. weight: math.unit(621, "lb"),
  40448. name: "Back",
  40449. image: {
  40450. source: "./media/characters/unmru/back.svg",
  40451. extra: 1894/1765,
  40452. bottom: 75/1969
  40453. }
  40454. },
  40455. dick: {
  40456. height: math.unit(3, "feet"),
  40457. weight: math.unit(35, "lb"),
  40458. name: "Dick",
  40459. image: {
  40460. source: "./media/characters/unmru/dick.svg"
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Normal",
  40467. height: math.unit(9, "feet")
  40468. },
  40469. {
  40470. name: "Natural",
  40471. height: math.unit(27, "feet"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Giant",
  40476. height: math.unit(90, "feet")
  40477. },
  40478. {
  40479. name: "Kaiju",
  40480. height: math.unit(270, "feet")
  40481. },
  40482. {
  40483. name: "Macro",
  40484. height: math.unit(900, "feet")
  40485. },
  40486. {
  40487. name: "Macro+",
  40488. height: math.unit(2700, "feet")
  40489. },
  40490. {
  40491. name: "Megamacro",
  40492. height: math.unit(9000, "feet")
  40493. },
  40494. {
  40495. name: "City-Crushing",
  40496. height: math.unit(27000, "feet")
  40497. },
  40498. {
  40499. name: "Mountain-Mashing",
  40500. height: math.unit(90000, "feet")
  40501. },
  40502. {
  40503. name: "Earth-Eclipsing",
  40504. height: math.unit(2.7e8, "feet")
  40505. },
  40506. {
  40507. name: "Sol-Swallowing",
  40508. height: math.unit(9e10, "feet")
  40509. },
  40510. {
  40511. name: "Majoris-Munching",
  40512. height: math.unit(2.7e13, "feet")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40518. {
  40519. front: {
  40520. height: math.unit(1, "inch"),
  40521. name: "Front",
  40522. image: {
  40523. source: "./media/characters/squeaks-mouse/front.svg",
  40524. extra: 352/308,
  40525. bottom: 25/377
  40526. }
  40527. },
  40528. },
  40529. [
  40530. {
  40531. name: "Micro",
  40532. height: math.unit(1, "inch"),
  40533. default: true
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40539. {
  40540. side: {
  40541. height: math.unit(35, "feet"),
  40542. name: "Side",
  40543. image: {
  40544. source: "./media/characters/sayko/side.svg",
  40545. extra: 1697/1021,
  40546. bottom: 82/1779
  40547. }
  40548. },
  40549. head: {
  40550. height: math.unit(16, "feet"),
  40551. name: "Head",
  40552. image: {
  40553. source: "./media/characters/sayko/head.svg"
  40554. }
  40555. },
  40556. forepaw: {
  40557. height: math.unit(7.85, "feet"),
  40558. name: "Forepaw",
  40559. image: {
  40560. source: "./media/characters/sayko/forepaw.svg"
  40561. }
  40562. },
  40563. hindpaw: {
  40564. height: math.unit(8.8, "feet"),
  40565. name: "Hindpaw",
  40566. image: {
  40567. source: "./media/characters/sayko/hindpaw.svg"
  40568. }
  40569. },
  40570. },
  40571. [
  40572. {
  40573. name: "Normal",
  40574. height: math.unit(35, "feet"),
  40575. default: true
  40576. },
  40577. {
  40578. name: "Colossus",
  40579. height: math.unit(100, "meters")
  40580. },
  40581. {
  40582. name: "\"Small\" Deity",
  40583. height: math.unit(1, "km")
  40584. },
  40585. {
  40586. name: "\"Large\" Deity",
  40587. height: math.unit(15, "km")
  40588. },
  40589. ]
  40590. ))
  40591. characterMakers.push(() => makeCharacter(
  40592. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40593. {
  40594. front: {
  40595. height: math.unit(6, "feet"),
  40596. weight: math.unit(250, "lb"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/mukiro/front.svg",
  40600. extra: 1368/1310,
  40601. bottom: 34/1402
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Normal",
  40608. height: math.unit(6, "feet"),
  40609. default: true
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(12 + 4/12, "feet"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40621. extra: 1346/1311,
  40622. bottom: 65/1411
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Base",
  40629. height: math.unit(12 + 4/12, "feet"),
  40630. default: true
  40631. },
  40632. {
  40633. name: "Macro",
  40634. height: math.unit(150, "feet")
  40635. },
  40636. {
  40637. name: "Mega",
  40638. height: math.unit(2, "miles")
  40639. },
  40640. {
  40641. name: "Demi God",
  40642. height: math.unit(4, "AU")
  40643. },
  40644. {
  40645. name: "God Size",
  40646. height: math.unit(1, "universe")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(3 + 3/12, "feet"),
  40655. weight: math.unit(88, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/trey/front.svg",
  40659. extra: 1815/1509,
  40660. bottom: 60/1875
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(3 + 3/12, "feet"),
  40668. default: true
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40674. {
  40675. front: {
  40676. height: math.unit(4, "meters"),
  40677. name: "Front",
  40678. image: {
  40679. source: "./media/characters/adelonda/front.svg",
  40680. extra: 1077/982,
  40681. bottom: 39/1116
  40682. }
  40683. },
  40684. back: {
  40685. height: math.unit(4, "meters"),
  40686. name: "Back",
  40687. image: {
  40688. source: "./media/characters/adelonda/back.svg",
  40689. extra: 1105/1003,
  40690. bottom: 25/1130
  40691. }
  40692. },
  40693. feral: {
  40694. height: math.unit(40/1.5, "meters"),
  40695. name: "Feral",
  40696. image: {
  40697. source: "./media/characters/adelonda/feral.svg",
  40698. extra: 597/271,
  40699. bottom: 387/984
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Normal",
  40706. height: math.unit(4, "meters"),
  40707. default: true
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(8 + 4/12, "feet"),
  40716. weight: math.unit(670, "lb"),
  40717. name: "Front",
  40718. image: {
  40719. source: "./media/characters/acadiel/front.svg",
  40720. extra: 1901/1595,
  40721. bottom: 142/2043
  40722. }
  40723. },
  40724. },
  40725. [
  40726. {
  40727. name: "Normal",
  40728. height: math.unit(8 + 4/12, "feet"),
  40729. default: true
  40730. },
  40731. {
  40732. name: "Macro",
  40733. height: math.unit(200, "feet")
  40734. },
  40735. ]
  40736. ))
  40737. characterMakers.push(() => makeCharacter(
  40738. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40739. {
  40740. front: {
  40741. height: math.unit(6 + 2/12, "feet"),
  40742. weight: math.unit(185, "lb"),
  40743. name: "Front",
  40744. image: {
  40745. source: "./media/characters/kayne-ein/front.svg",
  40746. extra: 1780/1560,
  40747. bottom: 81/1861
  40748. }
  40749. },
  40750. },
  40751. [
  40752. {
  40753. name: "Normal",
  40754. height: math.unit(6 + 2/12, "feet"),
  40755. default: true
  40756. },
  40757. {
  40758. name: "Transformation Stage",
  40759. height: math.unit(15, "feet")
  40760. },
  40761. {
  40762. name: "Macro",
  40763. height: math.unit(150, "feet")
  40764. },
  40765. {
  40766. name: "Earth's Shadow",
  40767. height: math.unit(6200, "miles")
  40768. },
  40769. {
  40770. name: "Universal Demon",
  40771. height: math.unit(28e9, "parsecs")
  40772. },
  40773. {
  40774. name: "Multiverse God",
  40775. height: math.unit(3, "multiverses")
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40781. {
  40782. front: {
  40783. height: math.unit(5 + 5/12, "feet"),
  40784. name: "Front",
  40785. image: {
  40786. source: "./media/characters/fawn/front.svg",
  40787. extra: 1873/1731,
  40788. bottom: 95/1968
  40789. }
  40790. },
  40791. back: {
  40792. height: math.unit(5 + 5/12, "feet"),
  40793. name: "Back",
  40794. image: {
  40795. source: "./media/characters/fawn/back.svg",
  40796. extra: 1813/1700,
  40797. bottom: 14/1827
  40798. }
  40799. },
  40800. hoof: {
  40801. height: math.unit(1.45, "feet"),
  40802. name: "Hoof",
  40803. image: {
  40804. source: "./media/characters/fawn/hoof.svg"
  40805. }
  40806. },
  40807. },
  40808. [
  40809. {
  40810. name: "Normal",
  40811. height: math.unit(5 + 5/12, "feet"),
  40812. default: true
  40813. },
  40814. ]
  40815. ))
  40816. characterMakers.push(() => makeCharacter(
  40817. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40818. {
  40819. front: {
  40820. height: math.unit(2 + 5/12, "feet"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/orion/front.svg",
  40824. extra: 1366/1304,
  40825. bottom: 43/1409
  40826. }
  40827. },
  40828. paw: {
  40829. height: math.unit(0.52, "feet"),
  40830. name: "Paw",
  40831. image: {
  40832. source: "./media/characters/orion/paw.svg"
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(2 + 5/12, "feet"),
  40840. default: true
  40841. },
  40842. ]
  40843. ))
  40844. characterMakers.push(() => makeCharacter(
  40845. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40846. {
  40847. front: {
  40848. height: math.unit(5 + 10/12, "feet"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/vera/front.svg",
  40852. extra: 1680/1575,
  40853. bottom: 49/1729
  40854. }
  40855. },
  40856. back: {
  40857. height: math.unit(5 + 10/12, "feet"),
  40858. name: "Back",
  40859. image: {
  40860. source: "./media/characters/vera/back.svg",
  40861. extra: 1700/1588,
  40862. bottom: 18/1718
  40863. }
  40864. },
  40865. arcanine: {
  40866. height: math.unit(6 + 8/12, "feet"),
  40867. name: "Arcanine",
  40868. image: {
  40869. source: "./media/characters/vera/arcanine.svg",
  40870. extra: 1590/1511,
  40871. bottom: 71/1661
  40872. }
  40873. },
  40874. maw: {
  40875. height: math.unit(0.82, "feet"),
  40876. name: "Maw",
  40877. image: {
  40878. source: "./media/characters/vera/maw.svg"
  40879. }
  40880. },
  40881. mawArcanine: {
  40882. height: math.unit(0.97, "feet"),
  40883. name: "Maw (Arcanine)",
  40884. image: {
  40885. source: "./media/characters/vera/maw-arcanine.svg"
  40886. }
  40887. },
  40888. paw: {
  40889. height: math.unit(0.75, "feet"),
  40890. name: "Paw",
  40891. image: {
  40892. source: "./media/characters/vera/paw.svg"
  40893. }
  40894. },
  40895. pawprint: {
  40896. height: math.unit(0.52, "feet"),
  40897. name: "Pawprint",
  40898. image: {
  40899. source: "./media/characters/vera/pawprint.svg"
  40900. }
  40901. },
  40902. },
  40903. [
  40904. {
  40905. name: "Normal",
  40906. height: math.unit(5 + 10/12, "feet"),
  40907. default: true
  40908. },
  40909. {
  40910. name: "Macro",
  40911. height: math.unit(75, "feet")
  40912. },
  40913. ]
  40914. ))
  40915. characterMakers.push(() => makeCharacter(
  40916. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40917. {
  40918. front: {
  40919. height: math.unit(4, "feet"),
  40920. weight: math.unit(40, "lb"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/orvan-rabbit/front.svg",
  40924. extra: 1896/1642,
  40925. bottom: 29/1925
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "Normal",
  40932. height: math.unit(4, "feet"),
  40933. default: true
  40934. },
  40935. ]
  40936. ))
  40937. characterMakers.push(() => makeCharacter(
  40938. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40939. {
  40940. front: {
  40941. height: math.unit(6, "feet"),
  40942. weight: math.unit(168, "lb"),
  40943. name: "Front",
  40944. image: {
  40945. source: "./media/characters/lisa/front.svg",
  40946. extra: 2065/1867,
  40947. bottom: 46/2111
  40948. }
  40949. },
  40950. back: {
  40951. height: math.unit(6, "feet"),
  40952. weight: math.unit(168, "lb"),
  40953. name: "Back",
  40954. image: {
  40955. source: "./media/characters/lisa/back.svg",
  40956. extra: 1982/1838,
  40957. bottom: 29/2011
  40958. }
  40959. },
  40960. maw: {
  40961. height: math.unit(0.81, "feet"),
  40962. name: "Maw",
  40963. image: {
  40964. source: "./media/characters/lisa/maw.svg"
  40965. }
  40966. },
  40967. paw: {
  40968. height: math.unit(0.9, "feet"),
  40969. name: "Paw",
  40970. image: {
  40971. source: "./media/characters/lisa/paw.svg"
  40972. }
  40973. },
  40974. caribousune: {
  40975. height: math.unit(7 + 2/12, "feet"),
  40976. weight: math.unit(268, "lb"),
  40977. name: "Caribousune",
  40978. image: {
  40979. source: "./media/characters/lisa/caribousune.svg",
  40980. extra: 1843/1633,
  40981. bottom: 29/1872
  40982. }
  40983. },
  40984. frontCaribousune: {
  40985. height: math.unit(7 + 2/12, "feet"),
  40986. weight: math.unit(268, "lb"),
  40987. name: "Front (Caribousune)",
  40988. image: {
  40989. source: "./media/characters/lisa/front-caribousune.svg",
  40990. extra: 1818/1638,
  40991. bottom: 52/1870
  40992. }
  40993. },
  40994. sideCaribousune: {
  40995. height: math.unit(7 + 2/12, "feet"),
  40996. weight: math.unit(268, "lb"),
  40997. name: "Side (Caribousune)",
  40998. image: {
  40999. source: "./media/characters/lisa/side-caribousune.svg",
  41000. extra: 1851/1635,
  41001. bottom: 16/1867
  41002. }
  41003. },
  41004. backCaribousune: {
  41005. height: math.unit(7 + 2/12, "feet"),
  41006. weight: math.unit(268, "lb"),
  41007. name: "Back (Caribousune)",
  41008. image: {
  41009. source: "./media/characters/lisa/back-caribousune.svg",
  41010. extra: 1801/1604,
  41011. bottom: 44/1845
  41012. }
  41013. },
  41014. caribou: {
  41015. height: math.unit(7 + 2/12, "feet"),
  41016. weight: math.unit(268, "lb"),
  41017. name: "Caribou",
  41018. image: {
  41019. source: "./media/characters/lisa/caribou.svg",
  41020. extra: 1843/1633,
  41021. bottom: 29/1872
  41022. }
  41023. },
  41024. frontCaribou: {
  41025. height: math.unit(7 + 2/12, "feet"),
  41026. weight: math.unit(268, "lb"),
  41027. name: "Front (Caribou)",
  41028. image: {
  41029. source: "./media/characters/lisa/front-caribou.svg",
  41030. extra: 1818/1638,
  41031. bottom: 52/1870
  41032. }
  41033. },
  41034. sideCaribou: {
  41035. height: math.unit(7 + 2/12, "feet"),
  41036. weight: math.unit(268, "lb"),
  41037. name: "Side (Caribou)",
  41038. image: {
  41039. source: "./media/characters/lisa/side-caribou.svg",
  41040. extra: 1851/1635,
  41041. bottom: 16/1867
  41042. }
  41043. },
  41044. backCaribou: {
  41045. height: math.unit(7 + 2/12, "feet"),
  41046. weight: math.unit(268, "lb"),
  41047. name: "Back (Caribou)",
  41048. image: {
  41049. source: "./media/characters/lisa/back-caribou.svg",
  41050. extra: 1801/1604,
  41051. bottom: 44/1845
  41052. }
  41053. },
  41054. mawCaribou: {
  41055. height: math.unit(1.45, "feet"),
  41056. name: "Maw (Caribou)",
  41057. image: {
  41058. source: "./media/characters/lisa/maw-caribou.svg"
  41059. }
  41060. },
  41061. mawCaribousune: {
  41062. height: math.unit(1.45, "feet"),
  41063. name: "Maw (Caribousune)",
  41064. image: {
  41065. source: "./media/characters/lisa/maw-caribousune.svg"
  41066. }
  41067. },
  41068. pawCaribousune: {
  41069. height: math.unit(1.61, "feet"),
  41070. name: "Paw (Caribou)",
  41071. image: {
  41072. source: "./media/characters/lisa/paw-caribousune.svg"
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(6, "feet")
  41080. },
  41081. {
  41082. name: "God Size",
  41083. height: math.unit(72, "feet"),
  41084. default: true
  41085. },
  41086. {
  41087. name: "Towering",
  41088. height: math.unit(288, "feet")
  41089. },
  41090. {
  41091. name: "City Size",
  41092. height: math.unit(48384, "feet")
  41093. },
  41094. {
  41095. name: "Continental",
  41096. height: math.unit(4200, "miles")
  41097. },
  41098. {
  41099. name: "Planet Eater",
  41100. height: math.unit(42, "earths")
  41101. },
  41102. {
  41103. name: "Star Swallower",
  41104. height: math.unit(42, "solarradii")
  41105. },
  41106. {
  41107. name: "System Swallower",
  41108. height: math.unit(84000, "AU")
  41109. },
  41110. {
  41111. name: "Galaxy Gobbler",
  41112. height: math.unit(42, "galaxies")
  41113. },
  41114. {
  41115. name: "Universe Devourer",
  41116. height: math.unit(42, "universes")
  41117. },
  41118. {
  41119. name: "Multiverse Muncher",
  41120. height: math.unit(42, "multiverses")
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(36, "feet"),
  41129. name: "Front",
  41130. image: {
  41131. source: "./media/characters/shadow-rat/front.svg",
  41132. extra: 1845/1758,
  41133. bottom: 83/1928
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Macro",
  41140. height: math.unit(36, "feet"),
  41141. default: true
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41147. {
  41148. side: {
  41149. height: math.unit(8, "feet"),
  41150. weight: math.unit(2630, "lb"),
  41151. name: "Side",
  41152. image: {
  41153. source: "./media/characters/torallia/side.svg",
  41154. extra: 2164/2021,
  41155. bottom: 371/2535
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Mortal Interaction",
  41162. height: math.unit(8, "feet")
  41163. },
  41164. {
  41165. name: "Natural",
  41166. height: math.unit(24, "feet"),
  41167. default: true
  41168. },
  41169. {
  41170. name: "Giant",
  41171. height: math.unit(80, "feet")
  41172. },
  41173. {
  41174. name: "Kaiju",
  41175. height: math.unit(240, "feet")
  41176. },
  41177. {
  41178. name: "Macro",
  41179. height: math.unit(800, "feet")
  41180. },
  41181. {
  41182. name: "Macro+",
  41183. height: math.unit(2400, "feet")
  41184. },
  41185. {
  41186. name: "Macro++",
  41187. height: math.unit(8000, "feet")
  41188. },
  41189. {
  41190. name: "City-Crushing",
  41191. height: math.unit(24000, "feet")
  41192. },
  41193. {
  41194. name: "Mountain-Mashing",
  41195. height: math.unit(80000, "feet")
  41196. },
  41197. {
  41198. name: "District Demolisher",
  41199. height: math.unit(240000, "feet")
  41200. },
  41201. {
  41202. name: "Tri-County Terror",
  41203. height: math.unit(800000, "feet")
  41204. },
  41205. {
  41206. name: "State Smasher",
  41207. height: math.unit(2.4e6, "feet")
  41208. },
  41209. {
  41210. name: "Nation Nemesis",
  41211. height: math.unit(8e6, "feet")
  41212. },
  41213. {
  41214. name: "Continent Cracker",
  41215. height: math.unit(2.4e7, "feet")
  41216. },
  41217. {
  41218. name: "Planet-Pillaging",
  41219. height: math.unit(8e7, "feet")
  41220. },
  41221. {
  41222. name: "Earth-Eclipsing",
  41223. height: math.unit(2.4e8, "feet")
  41224. },
  41225. {
  41226. name: "Jovian-Jostling",
  41227. height: math.unit(8e8, "feet")
  41228. },
  41229. {
  41230. name: "Gas Giant Gulper",
  41231. height: math.unit(2.4e9, "feet")
  41232. },
  41233. {
  41234. name: "Astral Annihilator",
  41235. height: math.unit(8e9, "feet")
  41236. },
  41237. {
  41238. name: "Celestial Conqueror",
  41239. height: math.unit(2.4e10, "feet")
  41240. },
  41241. {
  41242. name: "Sol-Swallowing",
  41243. height: math.unit(8e10, "feet")
  41244. },
  41245. {
  41246. name: "Hunter of the Heavens",
  41247. height: math.unit(2.4e13, "feet")
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41253. {
  41254. front: {
  41255. height: math.unit(6 + 8/12, "feet"),
  41256. weight: math.unit(250, "kilograms"),
  41257. volume: math.unit(28, "liters"),
  41258. name: "Front",
  41259. image: {
  41260. source: "./media/characters/rebecca-pawlson/front.svg",
  41261. extra: 1737/1596,
  41262. bottom: 107/1844
  41263. }
  41264. },
  41265. back: {
  41266. height: math.unit(6 + 8/12, "feet"),
  41267. weight: math.unit(250, "kilograms"),
  41268. volume: math.unit(28, "liters"),
  41269. name: "Back",
  41270. image: {
  41271. source: "./media/characters/rebecca-pawlson/back.svg",
  41272. extra: 1702/1523,
  41273. bottom: 86/1788
  41274. }
  41275. },
  41276. },
  41277. [
  41278. {
  41279. name: "Normal",
  41280. height: math.unit(6 + 8/12, "feet")
  41281. },
  41282. {
  41283. name: "Mini Macro",
  41284. height: math.unit(10, "feet"),
  41285. default: true
  41286. },
  41287. {
  41288. name: "Macro",
  41289. height: math.unit(100, "feet")
  41290. },
  41291. {
  41292. name: "Mega Macro",
  41293. height: math.unit(2500, "feet")
  41294. },
  41295. {
  41296. name: "Giga Macro",
  41297. height: math.unit(50, "miles")
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(7 + 6/12, "feet"),
  41306. weight: math.unit(600, "lb"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/moxie-nova/front.svg",
  41310. extra: 1734/1652,
  41311. bottom: 41/1775
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Normal",
  41318. height: math.unit(7 + 6/12, "feet"),
  41319. default: true
  41320. },
  41321. ]
  41322. ))
  41323. characterMakers.push(() => makeCharacter(
  41324. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41325. {
  41326. goat: {
  41327. height: math.unit(4, "feet"),
  41328. weight: math.unit(180, "lb"),
  41329. name: "Goat",
  41330. image: {
  41331. source: "./media/characters/tiffany/goat.svg",
  41332. extra: 1845/1595,
  41333. bottom: 106/1951
  41334. }
  41335. },
  41336. front: {
  41337. height: math.unit(5, "feet"),
  41338. weight: math.unit(150, "lb"),
  41339. name: "Foxcoon",
  41340. image: {
  41341. source: "./media/characters/tiffany/foxcoon.svg",
  41342. extra: 1941/1845,
  41343. bottom: 58/1999
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Normal",
  41350. height: math.unit(5, "feet"),
  41351. default: true
  41352. },
  41353. ]
  41354. ))
  41355. characterMakers.push(() => makeCharacter(
  41356. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41357. {
  41358. front: {
  41359. height: math.unit(8, "feet"),
  41360. weight: math.unit(300, "lb"),
  41361. name: "Front",
  41362. image: {
  41363. source: "./media/characters/raxinath/front.svg",
  41364. extra: 1407/1309,
  41365. bottom: 39/1446
  41366. }
  41367. },
  41368. back: {
  41369. height: math.unit(8, "feet"),
  41370. weight: math.unit(300, "lb"),
  41371. name: "Back",
  41372. image: {
  41373. source: "./media/characters/raxinath/back.svg",
  41374. extra: 1405/1315,
  41375. bottom: 9/1414
  41376. }
  41377. },
  41378. },
  41379. [
  41380. {
  41381. name: "Speck",
  41382. height: math.unit(0.5, "nm")
  41383. },
  41384. {
  41385. name: "Micro",
  41386. height: math.unit(3, "inches")
  41387. },
  41388. {
  41389. name: "Kobold",
  41390. height: math.unit(3, "feet")
  41391. },
  41392. {
  41393. name: "Normal",
  41394. height: math.unit(8, "feet"),
  41395. default: true
  41396. },
  41397. {
  41398. name: "Giant",
  41399. height: math.unit(50, "feet")
  41400. },
  41401. {
  41402. name: "Macro",
  41403. height: math.unit(1000, "feet")
  41404. },
  41405. {
  41406. name: "Megamacro",
  41407. height: math.unit(1, "mile")
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41413. {
  41414. front: {
  41415. height: math.unit(10, "feet"),
  41416. weight: math.unit(1442, "lb"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/mal-dragon/front.svg",
  41420. extra: 1515/1444,
  41421. bottom: 113/1628
  41422. }
  41423. },
  41424. back: {
  41425. height: math.unit(10, "feet"),
  41426. weight: math.unit(1442, "lb"),
  41427. name: "Back",
  41428. image: {
  41429. source: "./media/characters/mal-dragon/back.svg",
  41430. extra: 1527/1434,
  41431. bottom: 25/1552
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Mortal Interaction",
  41438. height: math.unit(10, "feet"),
  41439. default: true
  41440. },
  41441. {
  41442. name: "Large",
  41443. height: math.unit(30, "feet")
  41444. },
  41445. {
  41446. name: "Kaiju",
  41447. height: math.unit(300, "feet")
  41448. },
  41449. {
  41450. name: "Megamacro",
  41451. height: math.unit(10000, "feet")
  41452. },
  41453. {
  41454. name: "Continent Cracker",
  41455. height: math.unit(30000000, "feet")
  41456. },
  41457. {
  41458. name: "Sol-Swallowing",
  41459. height: math.unit(1e11, "feet")
  41460. },
  41461. {
  41462. name: "Light Universal",
  41463. height: math.unit(5, "universes")
  41464. },
  41465. {
  41466. name: "Universe Atoms",
  41467. height: math.unit(1.829e9, "universes")
  41468. },
  41469. {
  41470. name: "Light Multiversal",
  41471. height: math.unit(5, "multiverses")
  41472. },
  41473. {
  41474. name: "Multiverse Atoms",
  41475. height: math.unit(1.829e9, "multiverses")
  41476. },
  41477. {
  41478. name: "Fabric of Time",
  41479. height: math.unit(1e262, "multiverses")
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(9, "feet"),
  41488. weight: math.unit(1050, "lb"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/tabitha/front.svg",
  41492. extra: 2083/1994,
  41493. bottom: 68/2151
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Baseline",
  41500. height: math.unit(9, "feet"),
  41501. default: true
  41502. },
  41503. {
  41504. name: "Giant",
  41505. height: math.unit(90, "feet")
  41506. },
  41507. {
  41508. name: "Macro",
  41509. height: math.unit(900, "feet")
  41510. },
  41511. {
  41512. name: "Megamacro",
  41513. height: math.unit(9000, "feet")
  41514. },
  41515. {
  41516. name: "City-Crushing",
  41517. height: math.unit(27000, "feet")
  41518. },
  41519. {
  41520. name: "Mountain-Mashing",
  41521. height: math.unit(90000, "feet")
  41522. },
  41523. {
  41524. name: "Nation Nemesis",
  41525. height: math.unit(9e6, "feet")
  41526. },
  41527. {
  41528. name: "Continent Cracker",
  41529. height: math.unit(27e6, "feet")
  41530. },
  41531. {
  41532. name: "Earth-Eclipsing",
  41533. height: math.unit(2.7e8, "feet")
  41534. },
  41535. {
  41536. name: "Gas Giant Gulper",
  41537. height: math.unit(2.7e9, "feet")
  41538. },
  41539. {
  41540. name: "Sol-Swallowing",
  41541. height: math.unit(9e10, "feet")
  41542. },
  41543. {
  41544. name: "Galaxy Gulper",
  41545. height: math.unit(9, "galaxies")
  41546. },
  41547. {
  41548. name: "Cosmos Churner",
  41549. height: math.unit(9, "universes")
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41555. {
  41556. front: {
  41557. height: math.unit(160, "cm"),
  41558. weight: math.unit(55, "kg"),
  41559. name: "Front",
  41560. image: {
  41561. source: "./media/characters/tow/front.svg",
  41562. extra: 1751/1722,
  41563. bottom: 74/1825
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Norm",
  41570. height: math.unit(160, "cm")
  41571. },
  41572. {
  41573. name: "Casual",
  41574. height: math.unit(3200, "m"),
  41575. default: true
  41576. },
  41577. {
  41578. name: "Show-Off",
  41579. height: math.unit(160, "km")
  41580. },
  41581. ]
  41582. ))
  41583. characterMakers.push(() => makeCharacter(
  41584. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41585. {
  41586. front: {
  41587. height: math.unit(7 + 11/12, "feet"),
  41588. weight: math.unit(342.8, "lb"),
  41589. name: "Front",
  41590. image: {
  41591. source: "./media/characters/vivian-orca-dragon/front.svg",
  41592. extra: 1890/1865,
  41593. bottom: 28/1918
  41594. }
  41595. },
  41596. },
  41597. [
  41598. {
  41599. name: "Micro",
  41600. height: math.unit(5, "inches")
  41601. },
  41602. {
  41603. name: "Normal",
  41604. height: math.unit(7 + 11/12, "feet"),
  41605. default: true
  41606. },
  41607. {
  41608. name: "Macro",
  41609. height: math.unit(395 + 7/12, "feet")
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41615. {
  41616. side: {
  41617. height: math.unit(10, "feet"),
  41618. weight: math.unit(1442, "lb"),
  41619. name: "Side",
  41620. image: {
  41621. source: "./media/characters/lotherakon/side.svg",
  41622. extra: 1604/1497,
  41623. bottom: 89/1693
  41624. }
  41625. },
  41626. },
  41627. [
  41628. {
  41629. name: "Mortal Interaction",
  41630. height: math.unit(10, "feet")
  41631. },
  41632. {
  41633. name: "Large",
  41634. height: math.unit(30, "feet"),
  41635. default: true
  41636. },
  41637. {
  41638. name: "Giant",
  41639. height: math.unit(100, "feet")
  41640. },
  41641. {
  41642. name: "Kaiju",
  41643. height: math.unit(300, "feet")
  41644. },
  41645. {
  41646. name: "Macro",
  41647. height: math.unit(1000, "feet")
  41648. },
  41649. {
  41650. name: "Macro+",
  41651. height: math.unit(3000, "feet")
  41652. },
  41653. {
  41654. name: "Megamacro",
  41655. height: math.unit(10000, "feet")
  41656. },
  41657. {
  41658. name: "City-Crushing",
  41659. height: math.unit(30000, "feet")
  41660. },
  41661. {
  41662. name: "Continent Cracker",
  41663. height: math.unit(30e6, "feet")
  41664. },
  41665. {
  41666. name: "Earth Eclipsing",
  41667. height: math.unit(3e8, "feet")
  41668. },
  41669. {
  41670. name: "Gas Giant Gulper",
  41671. height: math.unit(3e9, "feet")
  41672. },
  41673. {
  41674. name: "Sol-Swallowing",
  41675. height: math.unit(1e11, "feet")
  41676. },
  41677. {
  41678. name: "System Swallower",
  41679. height: math.unit(3e14, "feet")
  41680. },
  41681. {
  41682. name: "Galaxy Gulper",
  41683. height: math.unit(10, "galaxies")
  41684. },
  41685. {
  41686. name: "Light Universal",
  41687. height: math.unit(5, "universes")
  41688. },
  41689. {
  41690. name: "Universe Palm",
  41691. height: math.unit(20, "universes")
  41692. },
  41693. {
  41694. name: "Light Multiversal",
  41695. height: math.unit(5, "multiverses")
  41696. },
  41697. {
  41698. name: "Multiverse Palm",
  41699. height: math.unit(20, "multiverses")
  41700. },
  41701. {
  41702. name: "Inferno Incarnate",
  41703. height: math.unit(1e7, "multiverses")
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(8, "feet"),
  41712. weight: math.unit(1200, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/malithee/front.svg",
  41716. extra: 1675/1640,
  41717. bottom: 162/1837
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Mortal Interaction",
  41724. height: math.unit(8, "feet"),
  41725. default: true
  41726. },
  41727. {
  41728. name: "Large",
  41729. height: math.unit(24, "feet")
  41730. },
  41731. {
  41732. name: "Kaiju",
  41733. height: math.unit(240, "feet")
  41734. },
  41735. {
  41736. name: "Megamacro",
  41737. height: math.unit(8000, "feet")
  41738. },
  41739. {
  41740. name: "Continent Cracker",
  41741. height: math.unit(24e6, "feet")
  41742. },
  41743. {
  41744. name: "Earth-Eclipsing",
  41745. height: math.unit(2.4e8, "feet")
  41746. },
  41747. {
  41748. name: "Sol-Swallowing",
  41749. height: math.unit(8e10, "feet")
  41750. },
  41751. {
  41752. name: "Galaxy Gulper",
  41753. height: math.unit(8, "galaxies")
  41754. },
  41755. {
  41756. name: "Light Universal",
  41757. height: math.unit(4, "universes")
  41758. },
  41759. {
  41760. name: "Universe Atoms",
  41761. height: math.unit(1.829e9, "universes")
  41762. },
  41763. {
  41764. name: "Light Multiversal",
  41765. height: math.unit(4, "multiverses")
  41766. },
  41767. {
  41768. name: "Multiverse Atoms",
  41769. height: math.unit(1.829e9, "multiverses")
  41770. },
  41771. {
  41772. name: "Nigh-Omnipresence",
  41773. height: math.unit(8e261, "multiverses")
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(10, "feet"),
  41782. weight: math.unit(1500, "lb"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/miles-thestia/front.svg",
  41786. extra: 1812/1727,
  41787. bottom: 86/1898
  41788. }
  41789. },
  41790. back: {
  41791. height: math.unit(10, "feet"),
  41792. weight: math.unit(1500, "lb"),
  41793. name: "Back",
  41794. image: {
  41795. source: "./media/characters/miles-thestia/back.svg",
  41796. extra: 1799/1690,
  41797. bottom: 47/1846
  41798. }
  41799. },
  41800. frontNsfw: {
  41801. height: math.unit(10, "feet"),
  41802. weight: math.unit(1500, "lb"),
  41803. name: "Front (NSFW)",
  41804. image: {
  41805. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41806. extra: 1812/1727,
  41807. bottom: 86/1898
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Mini-Macro",
  41814. height: math.unit(10, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41821. {
  41822. front: {
  41823. height: math.unit(25, "feet"),
  41824. name: "Front",
  41825. image: {
  41826. source: "./media/characters/titan-s-wulf/front.svg",
  41827. extra: 1560/1484,
  41828. bottom: 76/1636
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Smallest",
  41835. height: math.unit(25, "feet"),
  41836. default: true
  41837. },
  41838. {
  41839. name: "Normal",
  41840. height: math.unit(200, "feet")
  41841. },
  41842. {
  41843. name: "Macro",
  41844. height: math.unit(200000, "feet")
  41845. },
  41846. {
  41847. name: "Multiversal Original",
  41848. height: math.unit(10000, "multiverses")
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41854. {
  41855. front: {
  41856. height: math.unit(8, "feet"),
  41857. weight: math.unit(553, "lb"),
  41858. name: "Front",
  41859. image: {
  41860. source: "./media/characters/tawendeh/front.svg",
  41861. extra: 2365/2268,
  41862. bottom: 83/2448
  41863. }
  41864. },
  41865. frontClothed: {
  41866. height: math.unit(8, "feet"),
  41867. weight: math.unit(553, "lb"),
  41868. name: "Front (Clothed)",
  41869. image: {
  41870. source: "./media/characters/tawendeh/front-clothed.svg",
  41871. extra: 2365/2268,
  41872. bottom: 83/2448
  41873. }
  41874. },
  41875. back: {
  41876. height: math.unit(8, "feet"),
  41877. weight: math.unit(553, "lb"),
  41878. name: "Back",
  41879. image: {
  41880. source: "./media/characters/tawendeh/back.svg",
  41881. extra: 2397/2294,
  41882. bottom: 42/2439
  41883. }
  41884. },
  41885. },
  41886. [
  41887. {
  41888. name: "Mortal Interaction",
  41889. height: math.unit(8, "feet"),
  41890. default: true
  41891. },
  41892. {
  41893. name: "Giant",
  41894. height: math.unit(80, "feet")
  41895. },
  41896. {
  41897. name: "Macro",
  41898. height: math.unit(800, "feet")
  41899. },
  41900. {
  41901. name: "Megamacro",
  41902. height: math.unit(8000, "feet")
  41903. },
  41904. {
  41905. name: "City-Crushing",
  41906. height: math.unit(24000, "feet")
  41907. },
  41908. {
  41909. name: "Mountain-Mashing",
  41910. height: math.unit(80000, "feet")
  41911. },
  41912. {
  41913. name: "Nation Nemesis",
  41914. height: math.unit(8e6, "feet")
  41915. },
  41916. {
  41917. name: "Continent Cracker",
  41918. height: math.unit(24e6, "feet")
  41919. },
  41920. {
  41921. name: "Earth-Eclipsing",
  41922. height: math.unit(2.4e8, "feet")
  41923. },
  41924. {
  41925. name: "Gas Giant Gulper",
  41926. height: math.unit(2.4e9, "feet")
  41927. },
  41928. {
  41929. name: "Sol-Swallowing",
  41930. height: math.unit(8e10, "feet")
  41931. },
  41932. {
  41933. name: "Galaxy Gulper",
  41934. height: math.unit(8, "galaxies")
  41935. },
  41936. {
  41937. name: "Cosmos Churner",
  41938. height: math.unit(8, "universes")
  41939. },
  41940. {
  41941. name: "Omnipotent Otter",
  41942. height: math.unit(80, "universes")
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(2.6, "meters"),
  41951. weight: math.unit(900, "kg"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/neesha/front.svg",
  41955. extra: 1803/1653,
  41956. bottom: 128/1931
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(2.6, "meters"),
  41964. default: true
  41965. },
  41966. {
  41967. name: "Macro",
  41968. height: math.unit(50, "meters")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(5, "feet"),
  41977. weight: math.unit(185, "lb"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/kyera/front.svg",
  41981. extra: 1875/1790,
  41982. bottom: 96/1971
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Normal",
  41989. height: math.unit(5, "feet"),
  41990. default: true
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41996. {
  41997. front: {
  41998. height: math.unit(7 + 6/12, "feet"),
  41999. weight: math.unit(540, "lb"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/yuko/front.svg",
  42003. extra: 1282/1222,
  42004. bottom: 101/1383
  42005. }
  42006. },
  42007. frontClothed: {
  42008. height: math.unit(7 + 6/12, "feet"),
  42009. weight: math.unit(540, "lb"),
  42010. name: "Front (Clothed)",
  42011. image: {
  42012. source: "./media/characters/yuko/front-clothed.svg",
  42013. extra: 1282/1222,
  42014. bottom: 101/1383
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "Normal",
  42021. height: math.unit(7 + 6/12, "feet"),
  42022. default: true
  42023. },
  42024. {
  42025. name: "Macro",
  42026. height: math.unit(26 + 9/12, "feet")
  42027. },
  42028. {
  42029. name: "Megamacro",
  42030. height: math.unit(300, "feet")
  42031. },
  42032. {
  42033. name: "Gigamacro",
  42034. height: math.unit(5000, "feet")
  42035. },
  42036. {
  42037. name: "Planetary",
  42038. height: math.unit(10000, "miles")
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42044. {
  42045. front: {
  42046. height: math.unit(8 + 2/12, "feet"),
  42047. weight: math.unit(600, "lb"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/deam-nitrel/front.svg",
  42051. extra: 1308/1234,
  42052. bottom: 125/1433
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Normal",
  42059. height: math.unit(8 + 2/12, "feet"),
  42060. default: true
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(6.1, "feet"),
  42069. weight: math.unit(180, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/skyress/front.svg",
  42073. extra: 1045/915,
  42074. bottom: 28/1073
  42075. }
  42076. },
  42077. maw: {
  42078. height: math.unit(1, "feet"),
  42079. name: "Maw",
  42080. image: {
  42081. source: "./media/characters/skyress/maw.svg"
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(6.1, "feet"),
  42089. default: true
  42090. },
  42091. {
  42092. name: "Macro",
  42093. height: math.unit(200, "feet")
  42094. },
  42095. ]
  42096. ))
  42097. characterMakers.push(() => makeCharacter(
  42098. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42099. {
  42100. front: {
  42101. height: math.unit(4 + 2/12, "feet"),
  42102. weight: math.unit(40, "kg"),
  42103. name: "Front",
  42104. image: {
  42105. source: "./media/characters/amethyst-jones/front.svg",
  42106. extra: 1220/1150,
  42107. bottom: 101/1321
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Normal",
  42114. height: math.unit(4 + 2/12, "feet"),
  42115. default: true
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42121. {
  42122. front: {
  42123. height: math.unit(1.7, "m"),
  42124. weight: math.unit(135, "lb"),
  42125. name: "Front",
  42126. image: {
  42127. source: "./media/characters/jade/front.svg",
  42128. extra: 1818/1767,
  42129. bottom: 32/1850
  42130. }
  42131. },
  42132. back: {
  42133. height: math.unit(1.7, "m"),
  42134. weight: math.unit(135, "lb"),
  42135. name: "Back",
  42136. image: {
  42137. source: "./media/characters/jade/back.svg",
  42138. extra: 1869/1809,
  42139. bottom: 35/1904
  42140. }
  42141. },
  42142. hand: {
  42143. height: math.unit(0.24, "m"),
  42144. name: "Hand",
  42145. image: {
  42146. source: "./media/characters/jade/hand.svg"
  42147. }
  42148. },
  42149. foot: {
  42150. height: math.unit(0.263, "m"),
  42151. name: "Foot",
  42152. image: {
  42153. source: "./media/characters/jade/foot.svg"
  42154. }
  42155. },
  42156. dick: {
  42157. height: math.unit(0.47, "m"),
  42158. name: "Dick",
  42159. image: {
  42160. source: "./media/characters/jade/dick.svg"
  42161. }
  42162. },
  42163. },
  42164. [
  42165. {
  42166. name: "Micro",
  42167. height: math.unit(22, "cm")
  42168. },
  42169. {
  42170. name: "Normal",
  42171. height: math.unit(1.7, "m"),
  42172. default: true
  42173. },
  42174. {
  42175. name: "Macro",
  42176. height: math.unit(152, "m")
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(100, "miles"),
  42185. weight: math.unit(20000, "tons"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/cookie/front.svg",
  42189. extra: 1125/1070,
  42190. bottom: 30/1155
  42191. }
  42192. },
  42193. },
  42194. [
  42195. {
  42196. name: "Big",
  42197. height: math.unit(50, "feet")
  42198. },
  42199. {
  42200. name: "Macro",
  42201. height: math.unit(100, "miles"),
  42202. default: true
  42203. },
  42204. {
  42205. name: "Megamacro",
  42206. height: math.unit(90000, "miles")
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(6, "feet"),
  42215. weight: math.unit(145, "lb"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/farzian/front.svg",
  42219. extra: 1902/1693,
  42220. bottom: 108/2010
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Macro",
  42227. height: math.unit(500, "feet"),
  42228. default: true
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42234. {
  42235. front: {
  42236. height: math.unit(3 + 6/12, "feet"),
  42237. weight: math.unit(50, "lb"),
  42238. name: "Front",
  42239. image: {
  42240. source: "./media/characters/kimberly-tilson/front.svg",
  42241. extra: 1400/1322,
  42242. bottom: 36/1436
  42243. }
  42244. },
  42245. back: {
  42246. height: math.unit(3 + 6/12, "feet"),
  42247. weight: math.unit(50, "lb"),
  42248. name: "Back",
  42249. image: {
  42250. source: "./media/characters/kimberly-tilson/back.svg",
  42251. extra: 1370/1307,
  42252. bottom: 20/1390
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Normal",
  42259. height: math.unit(3 + 6/12, "feet"),
  42260. default: true
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42266. {
  42267. front: {
  42268. height: math.unit(1148, "feet"),
  42269. weight: math.unit(34057, "lb"),
  42270. name: "Front",
  42271. image: {
  42272. source: "./media/characters/harthos/front.svg",
  42273. extra: 1391/1339,
  42274. bottom: 13/1404
  42275. }
  42276. },
  42277. },
  42278. [
  42279. {
  42280. name: "Macro",
  42281. height: math.unit(1148, "feet"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(15, "feet"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/hypatia/front.svg",
  42294. extra: 1653/1591,
  42295. bottom: 79/1732
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(15, "feet")
  42303. },
  42304. {
  42305. name: "Small",
  42306. height: math.unit(300, "feet")
  42307. },
  42308. {
  42309. name: "Macro",
  42310. height: math.unit(2500, "feet"),
  42311. default: true
  42312. },
  42313. {
  42314. name: "Mega Macro",
  42315. height: math.unit(1500, "miles")
  42316. },
  42317. {
  42318. name: "Giga Macro",
  42319. height: math.unit(1.5e6, "miles")
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(6, "feet"),
  42328. weight: math.unit(200, "lb"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/wulver/front.svg",
  42332. extra: 1724/1632,
  42333. bottom: 130/1854
  42334. }
  42335. },
  42336. frontNsfw: {
  42337. height: math.unit(6, "feet"),
  42338. weight: math.unit(200, "lb"),
  42339. name: "Front (NSFW)",
  42340. image: {
  42341. source: "./media/characters/wulver/front-nsfw.svg",
  42342. extra: 1724/1632,
  42343. bottom: 130/1854
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Human-Sized",
  42350. height: math.unit(6, "feet")
  42351. },
  42352. {
  42353. name: "Normal",
  42354. height: math.unit(4, "meters"),
  42355. default: true
  42356. },
  42357. {
  42358. name: "Large",
  42359. height: math.unit(6, "m")
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(7, "feet"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/maru/front.svg",
  42371. extra: 1595/1570,
  42372. bottom: 0/1595
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Normal",
  42379. height: math.unit(7, "feet"),
  42380. default: true
  42381. },
  42382. {
  42383. name: "Macro",
  42384. height: math.unit(700, "feet")
  42385. },
  42386. {
  42387. name: "Mega Macro",
  42388. height: math.unit(25, "miles")
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(6, "feet"),
  42397. weight: math.unit(170, "lb"),
  42398. name: "Front",
  42399. image: {
  42400. source: "./media/characters/xenon/front.svg",
  42401. extra: 1376/1305,
  42402. bottom: 56/1432
  42403. }
  42404. },
  42405. back: {
  42406. height: math.unit(6, "feet"),
  42407. weight: math.unit(170, "lb"),
  42408. name: "Back",
  42409. image: {
  42410. source: "./media/characters/xenon/back.svg",
  42411. extra: 1328/1259,
  42412. bottom: 95/1423
  42413. }
  42414. },
  42415. maw: {
  42416. height: math.unit(0.52, "feet"),
  42417. name: "Maw",
  42418. image: {
  42419. source: "./media/characters/xenon/maw.svg"
  42420. }
  42421. },
  42422. handLeft: {
  42423. height: math.unit(0.82 * 169 / 153, "feet"),
  42424. name: "Hand (Left)",
  42425. image: {
  42426. source: "./media/characters/xenon/hand-left.svg"
  42427. }
  42428. },
  42429. handRight: {
  42430. height: math.unit(0.82, "feet"),
  42431. name: "Hand (Right)",
  42432. image: {
  42433. source: "./media/characters/xenon/hand-right.svg"
  42434. }
  42435. },
  42436. footLeft: {
  42437. height: math.unit(1.13, "feet"),
  42438. name: "Foot (Left)",
  42439. image: {
  42440. source: "./media/characters/xenon/foot-left.svg"
  42441. }
  42442. },
  42443. footRight: {
  42444. height: math.unit(1.13 * 194 / 196, "feet"),
  42445. name: "Foot (Right)",
  42446. image: {
  42447. source: "./media/characters/xenon/foot-right.svg"
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Micro",
  42454. height: math.unit(0.8, "inches")
  42455. },
  42456. {
  42457. name: "Normal",
  42458. height: math.unit(6, "feet")
  42459. },
  42460. {
  42461. name: "Macro",
  42462. height: math.unit(50, "feet"),
  42463. default: true
  42464. },
  42465. {
  42466. name: "Macro+",
  42467. height: math.unit(250, "feet")
  42468. },
  42469. {
  42470. name: "Megamacro",
  42471. height: math.unit(1500, "feet")
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(7 + 5/12, "feet"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/zane/front.svg",
  42483. extra: 1260/1203,
  42484. bottom: 94/1354
  42485. }
  42486. },
  42487. back: {
  42488. height: math.unit(5.05, "feet"),
  42489. name: "Back",
  42490. image: {
  42491. source: "./media/characters/zane/back.svg",
  42492. extra: 893/829,
  42493. bottom: 30/923
  42494. }
  42495. },
  42496. werewolf: {
  42497. height: math.unit(11, "feet"),
  42498. name: "Werewolf",
  42499. image: {
  42500. source: "./media/characters/zane/werewolf.svg",
  42501. extra: 1383/1323,
  42502. bottom: 89/1472
  42503. }
  42504. },
  42505. foot: {
  42506. height: math.unit(1.46, "feet"),
  42507. name: "Foot",
  42508. image: {
  42509. source: "./media/characters/zane/foot.svg"
  42510. }
  42511. },
  42512. footFront: {
  42513. height: math.unit(0.784, "feet"),
  42514. name: "Foot (Front)",
  42515. image: {
  42516. source: "./media/characters/zane/foot-front.svg"
  42517. }
  42518. },
  42519. dick: {
  42520. height: math.unit(1.95, "feet"),
  42521. name: "Dick",
  42522. image: {
  42523. source: "./media/characters/zane/dick.svg"
  42524. }
  42525. },
  42526. dickWerewolf: {
  42527. height: math.unit(3.77, "feet"),
  42528. name: "Dick (Werewolf)",
  42529. image: {
  42530. source: "./media/characters/zane/dick.svg"
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(7 + 5/12, "feet"),
  42538. default: true
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(6 + 2/12, "feet"),
  42547. weight: math.unit(284, "lb"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/benni-desparque/front.svg",
  42551. extra: 1353/1126,
  42552. bottom: 69/1422
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Civilian",
  42559. height: math.unit(6 + 2/12, "feet")
  42560. },
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(98, "feet"),
  42564. default: true
  42565. },
  42566. {
  42567. name: "Kaiju Fighter",
  42568. height: math.unit(268, "feet")
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(5, "feet"),
  42577. weight: math.unit(105, "lb"),
  42578. name: "Front",
  42579. image: {
  42580. source: "./media/characters/maxine/front.svg",
  42581. extra: 1386/1250,
  42582. bottom: 71/1457
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Normal",
  42589. height: math.unit(5, "feet"),
  42590. default: true
  42591. },
  42592. ]
  42593. ))
  42594. characterMakers.push(() => makeCharacter(
  42595. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42596. {
  42597. front: {
  42598. height: math.unit(11 + 7/12, "feet"),
  42599. weight: math.unit(9576, "lb"),
  42600. name: "Front",
  42601. image: {
  42602. source: "./media/characters/scaly/front.svg",
  42603. extra: 888/867,
  42604. bottom: 36/924
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Normal",
  42611. height: math.unit(11 + 7/12, "feet"),
  42612. default: true
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42618. {
  42619. front: {
  42620. height: math.unit(6 + 3/12, "feet"),
  42621. name: "Front",
  42622. image: {
  42623. source: "./media/characters/saelria/front.svg",
  42624. extra: 1243/1138,
  42625. bottom: 46/1289
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Micro",
  42632. height: math.unit(6, "inches"),
  42633. },
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(6 + 3/12, "feet"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Macro",
  42641. height: math.unit(25, "feet")
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(80, "meters"),
  42650. weight: math.unit(7000, "tonnes"),
  42651. name: "Front",
  42652. image: {
  42653. source: "./media/characters/tef/front.svg",
  42654. extra: 2036/1991,
  42655. bottom: 54/2090
  42656. }
  42657. },
  42658. back: {
  42659. height: math.unit(80, "meters"),
  42660. weight: math.unit(7000, "tonnes"),
  42661. name: "Back",
  42662. image: {
  42663. source: "./media/characters/tef/back.svg",
  42664. extra: 2036/1991,
  42665. bottom: 54/2090
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Macro",
  42672. height: math.unit(80, "meters"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(13, "feet"),
  42682. weight: math.unit(6, "tons"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/rover/front.svg",
  42686. extra: 1233/1156,
  42687. bottom: 50/1283
  42688. }
  42689. },
  42690. back: {
  42691. height: math.unit(13, "feet"),
  42692. weight: math.unit(6, "tons"),
  42693. name: "Back",
  42694. image: {
  42695. source: "./media/characters/rover/back.svg",
  42696. extra: 1327/1258,
  42697. bottom: 39/1366
  42698. }
  42699. },
  42700. },
  42701. [
  42702. {
  42703. name: "Normal",
  42704. height: math.unit(13, "feet"),
  42705. default: true
  42706. },
  42707. {
  42708. name: "Macro",
  42709. height: math.unit(1300, "feet")
  42710. },
  42711. {
  42712. name: "Megamacro",
  42713. height: math.unit(1300, "miles")
  42714. },
  42715. {
  42716. name: "Gigamacro",
  42717. height: math.unit(1300000, "miles")
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(6, "feet"),
  42726. weight: math.unit(150, "lb"),
  42727. name: "Front",
  42728. image: {
  42729. source: "./media/characters/ariz/front.svg",
  42730. extra: 1401/1346,
  42731. bottom: 5/1406
  42732. }
  42733. },
  42734. },
  42735. [
  42736. {
  42737. name: "Normal",
  42738. height: math.unit(10, "feet"),
  42739. default: true
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(6, "feet"),
  42748. weight: math.unit(140, "lb"),
  42749. name: "Front",
  42750. image: {
  42751. source: "./media/characters/sigrun/front.svg",
  42752. extra: 1418/1359,
  42753. bottom: 27/1445
  42754. }
  42755. },
  42756. },
  42757. [
  42758. {
  42759. name: "Macro",
  42760. height: math.unit(35, "feet"),
  42761. default: true
  42762. },
  42763. ]
  42764. ))
  42765. characterMakers.push(() => makeCharacter(
  42766. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42767. {
  42768. front: {
  42769. height: math.unit(6, "feet"),
  42770. weight: math.unit(150, "lb"),
  42771. name: "Front",
  42772. image: {
  42773. source: "./media/characters/numin/front.svg",
  42774. extra: 1433/1388,
  42775. bottom: 12/1445
  42776. }
  42777. },
  42778. },
  42779. [
  42780. {
  42781. name: "Macro",
  42782. height: math.unit(21.5, "km"),
  42783. default: true
  42784. },
  42785. ]
  42786. ))
  42787. characterMakers.push(() => makeCharacter(
  42788. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42789. {
  42790. front: {
  42791. height: math.unit(6, "feet"),
  42792. weight: math.unit(463, "lb"),
  42793. name: "Front",
  42794. image: {
  42795. source: "./media/characters/melwa/front.svg",
  42796. extra: 1307/1248,
  42797. bottom: 93/1400
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "Macro",
  42804. height: math.unit(50, "meters"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42811. {
  42812. front: {
  42813. height: math.unit(325, "feet"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/zorkaiju/front.svg",
  42817. extra: 1955/1814,
  42818. bottom: 40/1995
  42819. }
  42820. },
  42821. frontExtended: {
  42822. height: math.unit(325, "feet"),
  42823. name: "Front (Extended)",
  42824. image: {
  42825. source: "./media/characters/zorkaiju/front-extended.svg",
  42826. extra: 1955/1814,
  42827. bottom: 40/1995
  42828. }
  42829. },
  42830. side: {
  42831. height: math.unit(325, "feet"),
  42832. name: "Side",
  42833. image: {
  42834. source: "./media/characters/zorkaiju/side.svg",
  42835. extra: 1495/1396,
  42836. bottom: 17/1512
  42837. }
  42838. },
  42839. sideExtended: {
  42840. height: math.unit(325, "feet"),
  42841. name: "Side (Extended)",
  42842. image: {
  42843. source: "./media/characters/zorkaiju/side-extended.svg",
  42844. extra: 1495/1396,
  42845. bottom: 17/1512
  42846. }
  42847. },
  42848. back: {
  42849. height: math.unit(325, "feet"),
  42850. name: "Back",
  42851. image: {
  42852. source: "./media/characters/zorkaiju/back.svg",
  42853. extra: 1959/1821,
  42854. bottom: 31/1990
  42855. }
  42856. },
  42857. backExtended: {
  42858. height: math.unit(325, "feet"),
  42859. name: "Back (Extended)",
  42860. image: {
  42861. source: "./media/characters/zorkaiju/back-extended.svg",
  42862. extra: 1959/1821,
  42863. bottom: 31/1990
  42864. }
  42865. },
  42866. hand: {
  42867. height: math.unit(58.4, "feet"),
  42868. name: "Hand",
  42869. image: {
  42870. source: "./media/characters/zorkaiju/hand.svg"
  42871. }
  42872. },
  42873. handExtended: {
  42874. height: math.unit(61.4, "feet"),
  42875. name: "Hand (Extended)",
  42876. image: {
  42877. source: "./media/characters/zorkaiju/hand-extended.svg"
  42878. }
  42879. },
  42880. foot: {
  42881. height: math.unit(95, "feet"),
  42882. name: "Foot",
  42883. image: {
  42884. source: "./media/characters/zorkaiju/foot.svg"
  42885. }
  42886. },
  42887. leftArm: {
  42888. height: math.unit(59, "feet"),
  42889. name: "Left Arm",
  42890. image: {
  42891. source: "./media/characters/zorkaiju/left-arm.svg"
  42892. }
  42893. },
  42894. rightArm: {
  42895. height: math.unit(59, "feet"),
  42896. name: "Right Arm",
  42897. image: {
  42898. source: "./media/characters/zorkaiju/right-arm.svg"
  42899. }
  42900. },
  42901. leftArmExtended: {
  42902. height: math.unit(59 * 1.033546, "feet"),
  42903. name: "Left Arm (Extended)",
  42904. image: {
  42905. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42906. }
  42907. },
  42908. rightArmExtended: {
  42909. height: math.unit(59 * 1.0496, "feet"),
  42910. name: "Right Arm (Extended)",
  42911. image: {
  42912. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42913. }
  42914. },
  42915. tail: {
  42916. height: math.unit(104, "feet"),
  42917. name: "Tail",
  42918. image: {
  42919. source: "./media/characters/zorkaiju/tail.svg"
  42920. }
  42921. },
  42922. tailExtended: {
  42923. height: math.unit(104, "feet"),
  42924. name: "Tail (Extended)",
  42925. image: {
  42926. source: "./media/characters/zorkaiju/tail-extended.svg"
  42927. }
  42928. },
  42929. tailBottom: {
  42930. height: math.unit(104, "feet"),
  42931. name: "Tail Bottom",
  42932. image: {
  42933. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42934. }
  42935. },
  42936. crystal: {
  42937. height: math.unit(27.54, "feet"),
  42938. name: "Crystal",
  42939. image: {
  42940. source: "./media/characters/zorkaiju/crystal.svg"
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Kaiju",
  42947. height: math.unit(325, "feet"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(6 + 1/12, "feet"),
  42957. weight: math.unit(115, "lb"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/bailey-belfry/front.svg",
  42961. extra: 1240/1121,
  42962. bottom: 101/1341
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(6 + 1/12, "feet"),
  42970. default: true
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42976. {
  42977. side: {
  42978. height: math.unit(4, "meters"),
  42979. weight: math.unit(250, "kg"),
  42980. name: "Side",
  42981. image: {
  42982. source: "./media/characters/blacky/side.svg",
  42983. extra: 1027/919,
  42984. bottom: 43/1070
  42985. }
  42986. },
  42987. maw: {
  42988. height: math.unit(1, "meters"),
  42989. name: "Maw",
  42990. image: {
  42991. source: "./media/characters/blacky/maw.svg"
  42992. }
  42993. },
  42994. paw: {
  42995. height: math.unit(1, "meters"),
  42996. name: "Paw",
  42997. image: {
  42998. source: "./media/characters/blacky/paw.svg"
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Normal",
  43005. height: math.unit(4, "meters"),
  43006. default: true
  43007. },
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43012. {
  43013. front: {
  43014. height: math.unit(170, "cm"),
  43015. weight: math.unit(66, "kg"),
  43016. name: "Front",
  43017. image: {
  43018. source: "./media/characters/thux-ei/front.svg",
  43019. extra: 1109/1011,
  43020. bottom: 8/1117
  43021. }
  43022. },
  43023. },
  43024. [
  43025. {
  43026. name: "Normal",
  43027. height: math.unit(170, "cm"),
  43028. default: true
  43029. },
  43030. ]
  43031. ))
  43032. characterMakers.push(() => makeCharacter(
  43033. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43034. {
  43035. front: {
  43036. height: math.unit(5, "feet"),
  43037. weight: math.unit(120, "lb"),
  43038. name: "Front",
  43039. image: {
  43040. source: "./media/characters/roxanne-voltaire/front.svg",
  43041. extra: 1901/1779,
  43042. bottom: 53/1954
  43043. }
  43044. },
  43045. },
  43046. [
  43047. {
  43048. name: "Normal",
  43049. height: math.unit(5, "feet"),
  43050. default: true
  43051. },
  43052. {
  43053. name: "Giant",
  43054. height: math.unit(50, "feet")
  43055. },
  43056. {
  43057. name: "Titan",
  43058. height: math.unit(500, "feet")
  43059. },
  43060. {
  43061. name: "Macro",
  43062. height: math.unit(5000, "feet")
  43063. },
  43064. {
  43065. name: "Megamacro",
  43066. height: math.unit(50000, "feet")
  43067. },
  43068. {
  43069. name: "Gigamacro",
  43070. height: math.unit(500000, "feet")
  43071. },
  43072. {
  43073. name: "Teramacro",
  43074. height: math.unit(5e6, "feet")
  43075. },
  43076. ]
  43077. ))
  43078. characterMakers.push(() => makeCharacter(
  43079. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43080. {
  43081. front: {
  43082. height: math.unit(6 + 2/12, "feet"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/squeaks/front.svg",
  43086. extra: 1823/1768,
  43087. bottom: 138/1961
  43088. }
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Micro",
  43094. height: math.unit(0.5, "inches")
  43095. },
  43096. {
  43097. name: "Normal",
  43098. height: math.unit(6 + 2/12, "feet"),
  43099. default: true
  43100. },
  43101. {
  43102. name: "Macro",
  43103. height: math.unit(600, "feet")
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(1.72, "meters"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/archinger/front.svg",
  43115. extra: 1861/1675,
  43116. bottom: 125/1986
  43117. }
  43118. },
  43119. back: {
  43120. height: math.unit(1.72, "meters"),
  43121. name: "Back",
  43122. image: {
  43123. source: "./media/characters/archinger/back.svg",
  43124. extra: 1844/1701,
  43125. bottom: 104/1948
  43126. }
  43127. },
  43128. cock: {
  43129. height: math.unit(0.59, "feet"),
  43130. name: "Cock",
  43131. image: {
  43132. source: "./media/characters/archinger/cock.svg"
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Normal",
  43139. height: math.unit(1.72, "meters"),
  43140. default: true
  43141. },
  43142. {
  43143. name: "Macro",
  43144. height: math.unit(84, "meters")
  43145. },
  43146. {
  43147. name: "Macro+",
  43148. height: math.unit(112, "meters")
  43149. },
  43150. {
  43151. name: "Macro++",
  43152. height: math.unit(960, "meters")
  43153. },
  43154. {
  43155. name: "Macro+++",
  43156. height: math.unit(4, "km")
  43157. },
  43158. {
  43159. name: "Macro++++",
  43160. height: math.unit(48, "km")
  43161. },
  43162. {
  43163. name: "Macro+++++",
  43164. height: math.unit(4500, "km")
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(5 + 5/12, "feet"),
  43173. name: "Front",
  43174. image: {
  43175. source: "./media/characters/alsnapz/front.svg",
  43176. extra: 1157/1065,
  43177. bottom: 42/1199
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(5 + 5/12, "feet"),
  43185. default: true
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43191. {
  43192. side: {
  43193. height: math.unit(3.2, "earths"),
  43194. name: "Side",
  43195. image: {
  43196. source: "./media/characters/mag/side.svg",
  43197. extra: 1331/1008,
  43198. bottom: 52/1383
  43199. }
  43200. },
  43201. wing: {
  43202. height: math.unit(1.94, "earths"),
  43203. name: "Wing",
  43204. image: {
  43205. source: "./media/characters/mag/wing.svg"
  43206. }
  43207. },
  43208. dick: {
  43209. height: math.unit(1.8, "earths"),
  43210. name: "Dick",
  43211. image: {
  43212. source: "./media/characters/mag/dick.svg"
  43213. }
  43214. },
  43215. ass: {
  43216. height: math.unit(1.33, "earths"),
  43217. name: "Ass",
  43218. image: {
  43219. source: "./media/characters/mag/ass.svg"
  43220. }
  43221. },
  43222. head: {
  43223. height: math.unit(1.1, "earths"),
  43224. name: "Head",
  43225. image: {
  43226. source: "./media/characters/mag/head.svg"
  43227. }
  43228. },
  43229. maw: {
  43230. height: math.unit(1.62, "earths"),
  43231. name: "Maw",
  43232. image: {
  43233. source: "./media/characters/mag/maw.svg"
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Small",
  43240. height: math.unit(162, "feet")
  43241. },
  43242. {
  43243. name: "Normal",
  43244. height: math.unit(3.2, "earths"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(512, "feet"),
  43254. weight: math.unit(63509, "tonnes"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/vorrel-harroc/front.svg",
  43258. extra: 1075/1063,
  43259. bottom: 62/1137
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Normal",
  43266. height: math.unit(10, "feet")
  43267. },
  43268. {
  43269. name: "Macro",
  43270. height: math.unit(512, "feet"),
  43271. default: true
  43272. },
  43273. {
  43274. name: "Megamacro",
  43275. height: math.unit(256, "miles")
  43276. },
  43277. {
  43278. name: "Gigamacro",
  43279. height: math.unit(4096, "miles")
  43280. },
  43281. ]
  43282. ))
  43283. characterMakers.push(() => makeCharacter(
  43284. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43285. {
  43286. side: {
  43287. height: math.unit(50, "feet"),
  43288. name: "Side",
  43289. image: {
  43290. source: "./media/characters/froimar/side.svg",
  43291. extra: 855/638,
  43292. bottom: 99/954
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Macro",
  43299. height: math.unit(50, "feet"),
  43300. default: true
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43306. {
  43307. front: {
  43308. height: math.unit(210, "miles"),
  43309. name: "Front",
  43310. image: {
  43311. source: "./media/characters/timothy/front.svg",
  43312. extra: 1007/943,
  43313. bottom: 62/1069
  43314. }
  43315. },
  43316. frontSkirt: {
  43317. height: math.unit(210, "miles"),
  43318. name: "Front (Skirt)",
  43319. image: {
  43320. source: "./media/characters/timothy/front-skirt.svg",
  43321. extra: 1007/943,
  43322. bottom: 62/1069
  43323. }
  43324. },
  43325. frontCoat: {
  43326. height: math.unit(210, "miles"),
  43327. name: "Front (Coat)",
  43328. image: {
  43329. source: "./media/characters/timothy/front-coat.svg",
  43330. extra: 1007/943,
  43331. bottom: 62/1069
  43332. }
  43333. },
  43334. },
  43335. [
  43336. {
  43337. name: "Macro",
  43338. height: math.unit(210, "miles"),
  43339. default: true
  43340. },
  43341. {
  43342. name: "Megamacro",
  43343. height: math.unit(210000, "miles")
  43344. },
  43345. ]
  43346. ))
  43347. characterMakers.push(() => makeCharacter(
  43348. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43349. {
  43350. front: {
  43351. height: math.unit(188, "feet"),
  43352. name: "Front",
  43353. image: {
  43354. source: "./media/characters/pyotr/front.svg",
  43355. extra: 1912/1826,
  43356. bottom: 18/1930
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Macro",
  43363. height: math.unit(188, "feet"),
  43364. default: true
  43365. },
  43366. {
  43367. name: "Megamacro",
  43368. height: math.unit(8, "miles")
  43369. },
  43370. ]
  43371. ))
  43372. characterMakers.push(() => makeCharacter(
  43373. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43374. {
  43375. side: {
  43376. height: math.unit(10, "feet"),
  43377. weight: math.unit(4500, "lb"),
  43378. name: "Side",
  43379. image: {
  43380. source: "./media/characters/ackart/side.svg",
  43381. extra: 1776/1668,
  43382. bottom: 116/1892
  43383. }
  43384. },
  43385. },
  43386. [
  43387. {
  43388. name: "Normal",
  43389. height: math.unit(10, "feet"),
  43390. default: true
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43396. {
  43397. side: {
  43398. height: math.unit(21, "feet"),
  43399. name: "Side",
  43400. image: {
  43401. source: "./media/characters/nolow/side.svg",
  43402. extra: 1484/1434,
  43403. bottom: 85/1569
  43404. }
  43405. },
  43406. sideErect: {
  43407. height: math.unit(21, "feet"),
  43408. name: "Side-erect",
  43409. image: {
  43410. source: "./media/characters/nolow/side-erect.svg",
  43411. extra: 1484/1434,
  43412. bottom: 85/1569
  43413. }
  43414. },
  43415. },
  43416. [
  43417. {
  43418. name: "Regular",
  43419. height: math.unit(12, "feet")
  43420. },
  43421. {
  43422. name: "Big Chee",
  43423. height: math.unit(21, "feet"),
  43424. default: true
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(7, "feet"),
  43433. weight: math.unit(250, "lb"),
  43434. name: "Front",
  43435. image: {
  43436. source: "./media/characters/nines/front.svg",
  43437. extra: 1741/1607,
  43438. bottom: 41/1782
  43439. }
  43440. },
  43441. side: {
  43442. height: math.unit(7, "feet"),
  43443. weight: math.unit(250, "lb"),
  43444. name: "Side",
  43445. image: {
  43446. source: "./media/characters/nines/side.svg",
  43447. extra: 1854/1735,
  43448. bottom: 93/1947
  43449. }
  43450. },
  43451. back: {
  43452. height: math.unit(7, "feet"),
  43453. weight: math.unit(250, "lb"),
  43454. name: "Back",
  43455. image: {
  43456. source: "./media/characters/nines/back.svg",
  43457. extra: 1748/1615,
  43458. bottom: 20/1768
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Megamacro",
  43465. height: math.unit(99, "km"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(5 + 10/12, "feet"),
  43475. weight: math.unit(210, "lb"),
  43476. name: "Front",
  43477. image: {
  43478. source: "./media/characters/zenith/front.svg",
  43479. extra: 1531/1452,
  43480. bottom: 198/1729
  43481. }
  43482. },
  43483. back: {
  43484. height: math.unit(5 + 10/12, "feet"),
  43485. weight: math.unit(210, "lb"),
  43486. name: "Back",
  43487. image: {
  43488. source: "./media/characters/zenith/back.svg",
  43489. extra: 1571/1487,
  43490. bottom: 75/1646
  43491. }
  43492. },
  43493. },
  43494. [
  43495. {
  43496. name: "Normal",
  43497. height: math.unit(5 + 10/12, "feet"),
  43498. default: true
  43499. }
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(4, "feet"),
  43507. weight: math.unit(60, "lb"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/jasper/front.svg",
  43511. extra: 1450/1379,
  43512. bottom: 19/1469
  43513. }
  43514. },
  43515. },
  43516. [
  43517. {
  43518. name: "Normal",
  43519. height: math.unit(4, "feet"),
  43520. default: true
  43521. },
  43522. ]
  43523. ))
  43524. characterMakers.push(() => makeCharacter(
  43525. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43526. {
  43527. front: {
  43528. height: math.unit(6 + 5/12, "feet"),
  43529. weight: math.unit(290, "lb"),
  43530. name: "Front",
  43531. image: {
  43532. source: "./media/characters/tiberius-thyben/front.svg",
  43533. extra: 757/739,
  43534. bottom: 39/796
  43535. }
  43536. },
  43537. },
  43538. [
  43539. {
  43540. name: "Micro",
  43541. height: math.unit(1.5, "inches")
  43542. },
  43543. {
  43544. name: "Normal",
  43545. height: math.unit(6 + 5/12, "feet"),
  43546. default: true
  43547. },
  43548. {
  43549. name: "Macro",
  43550. height: math.unit(300, "feet")
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43556. {
  43557. front: {
  43558. height: math.unit(5 + 6/12, "feet"),
  43559. weight: math.unit(60, "kg"),
  43560. name: "Front",
  43561. image: {
  43562. source: "./media/characters/sabre/front.svg",
  43563. extra: 738/671,
  43564. bottom: 27/765
  43565. }
  43566. },
  43567. },
  43568. [
  43569. {
  43570. name: "Teeny",
  43571. height: math.unit(2, "inches")
  43572. },
  43573. {
  43574. name: "Smol",
  43575. height: math.unit(8, "inches")
  43576. },
  43577. {
  43578. name: "Normal",
  43579. height: math.unit(5 + 6/12, "feet"),
  43580. default: true
  43581. },
  43582. {
  43583. name: "Mini-Macro",
  43584. height: math.unit(15, "feet")
  43585. },
  43586. {
  43587. name: "Macro",
  43588. height: math.unit(50, "feet")
  43589. },
  43590. ]
  43591. ))
  43592. characterMakers.push(() => makeCharacter(
  43593. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43594. {
  43595. front: {
  43596. height: math.unit(6 + 4/12, "feet"),
  43597. weight: math.unit(170, "lb"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/charlie/front.svg",
  43601. extra: 1348/1228,
  43602. bottom: 15/1363
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Macro",
  43609. height: math.unit(1700, "meters"),
  43610. default: true
  43611. },
  43612. {
  43613. name: "MegaMacro",
  43614. height: math.unit(20400, "meters")
  43615. },
  43616. ]
  43617. ))
  43618. characterMakers.push(() => makeCharacter(
  43619. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43620. {
  43621. front: {
  43622. height: math.unit(6 + 3/12, "feet"),
  43623. weight: math.unit(185, "lb"),
  43624. name: "Front",
  43625. image: {
  43626. source: "./media/characters/susan-grant/front.svg",
  43627. extra: 1351/1327,
  43628. bottom: 26/1377
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Normal",
  43635. height: math.unit(6 + 3/12, "feet"),
  43636. default: true
  43637. },
  43638. {
  43639. name: "Macro",
  43640. height: math.unit(225, "feet")
  43641. },
  43642. {
  43643. name: "Macro+",
  43644. height: math.unit(900, "feet")
  43645. },
  43646. {
  43647. name: "MegaMacro",
  43648. height: math.unit(14400, "feet")
  43649. },
  43650. ]
  43651. ))
  43652. characterMakers.push(() => makeCharacter(
  43653. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43654. {
  43655. front: {
  43656. height: math.unit(5 + 4/12, "feet"),
  43657. weight: math.unit(110, "lb"),
  43658. name: "Front",
  43659. image: {
  43660. source: "./media/characters/axel-isanov/front.svg",
  43661. extra: 1096/1065,
  43662. bottom: 13/1109
  43663. }
  43664. },
  43665. },
  43666. [
  43667. {
  43668. name: "Normal",
  43669. height: math.unit(5 + 4/12, "feet"),
  43670. default: true
  43671. },
  43672. ]
  43673. ))
  43674. characterMakers.push(() => makeCharacter(
  43675. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43676. {
  43677. front: {
  43678. height: math.unit(9, "feet"),
  43679. weight: math.unit(467, "lb"),
  43680. name: "Front",
  43681. image: {
  43682. source: "./media/characters/necahual/front.svg",
  43683. extra: 920/873,
  43684. bottom: 26/946
  43685. }
  43686. },
  43687. back: {
  43688. height: math.unit(9, "feet"),
  43689. weight: math.unit(467, "lb"),
  43690. name: "Back",
  43691. image: {
  43692. source: "./media/characters/necahual/back.svg",
  43693. extra: 930/884,
  43694. bottom: 16/946
  43695. }
  43696. },
  43697. frontUnderwear: {
  43698. height: math.unit(9, "feet"),
  43699. weight: math.unit(467, "lb"),
  43700. name: "Front (Underwear)",
  43701. image: {
  43702. source: "./media/characters/necahual/front-underwear.svg",
  43703. extra: 920/873,
  43704. bottom: 26/946
  43705. }
  43706. },
  43707. frontDressed: {
  43708. height: math.unit(9, "feet"),
  43709. weight: math.unit(467, "lb"),
  43710. name: "Front (Dressed)",
  43711. image: {
  43712. source: "./media/characters/necahual/front-dressed.svg",
  43713. extra: 920/873,
  43714. bottom: 26/946
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Comprsesed",
  43721. height: math.unit(9, "feet")
  43722. },
  43723. {
  43724. name: "Natural",
  43725. height: math.unit(15, "feet"),
  43726. default: true
  43727. },
  43728. {
  43729. name: "Boosted",
  43730. height: math.unit(50, "feet")
  43731. },
  43732. {
  43733. name: "Boosted+",
  43734. height: math.unit(150, "feet")
  43735. },
  43736. {
  43737. name: "Max",
  43738. height: math.unit(500, "feet")
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(22 + 1/12, "feet"),
  43747. weight: math.unit(3200, "lb"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/theo-acacia/front.svg",
  43751. extra: 1796/1741,
  43752. bottom: 83/1879
  43753. }
  43754. },
  43755. frontUnderwear: {
  43756. height: math.unit(22 + 1/12, "feet"),
  43757. weight: math.unit(3200, "lb"),
  43758. name: "Front (Underwear)",
  43759. image: {
  43760. source: "./media/characters/theo-acacia/front-underwear.svg",
  43761. extra: 1796/1741,
  43762. bottom: 83/1879
  43763. }
  43764. },
  43765. frontNude: {
  43766. height: math.unit(22 + 1/12, "feet"),
  43767. weight: math.unit(3200, "lb"),
  43768. name: "Front (Nude)",
  43769. image: {
  43770. source: "./media/characters/theo-acacia/front-nude.svg",
  43771. extra: 1796/1741,
  43772. bottom: 83/1879
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Normal",
  43779. height: math.unit(22 + 1/12, "feet"),
  43780. default: true
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43786. {
  43787. front: {
  43788. height: math.unit(20, "feet"),
  43789. name: "Front",
  43790. image: {
  43791. source: "./media/characters/astra/front.svg",
  43792. extra: 1850/1714,
  43793. bottom: 106/1956
  43794. }
  43795. },
  43796. frontUndressed: {
  43797. height: math.unit(20, "feet"),
  43798. name: "Front (Undressed)",
  43799. image: {
  43800. source: "./media/characters/astra/front-undressed.svg",
  43801. extra: 1926/1749,
  43802. bottom: 0/1926
  43803. }
  43804. },
  43805. hand: {
  43806. height: math.unit(1.53, "feet"),
  43807. name: "Hand",
  43808. image: {
  43809. source: "./media/characters/astra/hand.svg"
  43810. }
  43811. },
  43812. paw: {
  43813. height: math.unit(1.53, "feet"),
  43814. name: "Paw",
  43815. image: {
  43816. source: "./media/characters/astra/paw.svg"
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Smallest",
  43823. height: math.unit(20, "feet")
  43824. },
  43825. {
  43826. name: "Normal",
  43827. height: math.unit(1e9, "miles"),
  43828. default: true
  43829. },
  43830. {
  43831. name: "Larger",
  43832. height: math.unit(5, "multiverses")
  43833. },
  43834. {
  43835. name: "Largest",
  43836. height: math.unit(1e9, "multiverses")
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(8, "feet"),
  43845. name: "Front",
  43846. image: {
  43847. source: "./media/characters/breanna/front.svg",
  43848. extra: 1912/1632,
  43849. bottom: 33/1945
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Smallest",
  43856. height: math.unit(8, "feet")
  43857. },
  43858. {
  43859. name: "Normal",
  43860. height: math.unit(1, "mile"),
  43861. default: true
  43862. },
  43863. {
  43864. name: "Maximum",
  43865. height: math.unit(1500000000000, "lightyears")
  43866. },
  43867. ]
  43868. ))
  43869. characterMakers.push(() => makeCharacter(
  43870. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43871. {
  43872. front: {
  43873. height: math.unit(5 + 11/12, "feet"),
  43874. weight: math.unit(155, "lb"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/cai/front.svg",
  43878. extra: 1823/1702,
  43879. bottom: 32/1855
  43880. }
  43881. },
  43882. back: {
  43883. height: math.unit(5 + 11/12, "feet"),
  43884. weight: math.unit(155, "lb"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/cai/back.svg",
  43888. extra: 1809/1708,
  43889. bottom: 31/1840
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(5 + 11/12, "feet"),
  43897. default: true
  43898. },
  43899. {
  43900. name: "Big",
  43901. height: math.unit(15, "feet")
  43902. },
  43903. {
  43904. name: "Macro",
  43905. height: math.unit(200, "feet")
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43911. {
  43912. front: {
  43913. height: math.unit(5 + 6/12, "feet"),
  43914. weight: math.unit(160, "lb"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43918. extra: 1227/1174,
  43919. bottom: 37/1264
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Macro",
  43926. height: math.unit(444, "meters"),
  43927. default: true
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(18 + 7/12, "feet"),
  43936. name: "Front",
  43937. image: {
  43938. source: "./media/characters/rex/front.svg",
  43939. extra: 1941/1807,
  43940. bottom: 66/2007
  43941. }
  43942. },
  43943. back: {
  43944. height: math.unit(18 + 7/12, "feet"),
  43945. name: "Back",
  43946. image: {
  43947. source: "./media/characters/rex/back.svg",
  43948. extra: 1937/1822,
  43949. bottom: 42/1979
  43950. }
  43951. },
  43952. boot: {
  43953. height: math.unit(3.45, "feet"),
  43954. name: "Boot",
  43955. image: {
  43956. source: "./media/characters/rex/boot.svg"
  43957. }
  43958. },
  43959. paw: {
  43960. height: math.unit(4.17, "feet"),
  43961. name: "Paw",
  43962. image: {
  43963. source: "./media/characters/rex/paw.svg"
  43964. }
  43965. },
  43966. head: {
  43967. height: math.unit(6.728, "feet"),
  43968. name: "Head",
  43969. image: {
  43970. source: "./media/characters/rex/head.svg"
  43971. }
  43972. },
  43973. },
  43974. [
  43975. {
  43976. name: "Nano",
  43977. height: math.unit(18 + 7/12, "feet")
  43978. },
  43979. {
  43980. name: "Micro",
  43981. height: math.unit(1.5, "megameters")
  43982. },
  43983. {
  43984. name: "Normal",
  43985. height: math.unit(440, "megameters"),
  43986. default: true
  43987. },
  43988. {
  43989. name: "Macro",
  43990. height: math.unit(2.5, "gigameters")
  43991. },
  43992. {
  43993. name: "Gigamacro",
  43994. height: math.unit(2, "galaxies")
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44000. {
  44001. side: {
  44002. height: math.unit(32, "feet"),
  44003. weight: math.unit(250000, "lb"),
  44004. name: "Side",
  44005. image: {
  44006. source: "./media/characters/silverwing/side.svg",
  44007. extra: 1100/1019,
  44008. bottom: 204/1304
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Normal",
  44015. height: math.unit(32, "feet"),
  44016. default: true
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(6 + 6/12, "feet"),
  44025. weight: math.unit(350, "lb"),
  44026. name: "Front",
  44027. image: {
  44028. source: "./media/characters/tristan-hawthorne/front.svg",
  44029. extra: 1159/1124,
  44030. bottom: 37/1196
  44031. },
  44032. form: "labrador",
  44033. default: true
  44034. },
  44035. skunkFront: {
  44036. height: math.unit(4 + 6/12, "feet"),
  44037. weight: math.unit(120, "lb"),
  44038. name: "Front",
  44039. image: {
  44040. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44041. extra: 1609/1551,
  44042. bottom: 169/1778
  44043. },
  44044. form: "skunk",
  44045. default: true
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Normal",
  44051. height: math.unit(6 + 6/12, "feet"),
  44052. form: "labrador",
  44053. default: true
  44054. },
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(4 + 6/12, "feet"),
  44058. form: "skunk",
  44059. default: true
  44060. },
  44061. ],
  44062. {
  44063. "labrador": {
  44064. name: "Labrador",
  44065. default: true
  44066. },
  44067. "skunk": {
  44068. name: "Skunk"
  44069. }
  44070. }
  44071. ))
  44072. characterMakers.push(() => makeCharacter(
  44073. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44074. {
  44075. front: {
  44076. height: math.unit(5 + 11/12, "feet"),
  44077. weight: math.unit(190, "lb"),
  44078. name: "Front",
  44079. image: {
  44080. source: "./media/characters/mizu/front.svg",
  44081. extra: 1988/1788,
  44082. bottom: 14/2002
  44083. }
  44084. },
  44085. },
  44086. [
  44087. {
  44088. name: "Normal",
  44089. height: math.unit(5 + 11/12, "feet"),
  44090. default: true
  44091. },
  44092. ]
  44093. ))
  44094. characterMakers.push(() => makeCharacter(
  44095. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44096. {
  44097. front: {
  44098. height: math.unit(1.7, "feet"),
  44099. weight: math.unit(50, "lb"),
  44100. name: "Front",
  44101. image: {
  44102. source: "./media/characters/dechroma/front.svg",
  44103. extra: 1095/859,
  44104. bottom: 64/1159
  44105. }
  44106. },
  44107. },
  44108. [
  44109. {
  44110. name: "Normal",
  44111. height: math.unit(1.7, "feet"),
  44112. default: true
  44113. },
  44114. ]
  44115. ))
  44116. characterMakers.push(() => makeCharacter(
  44117. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44118. {
  44119. side: {
  44120. height: math.unit(30, "feet"),
  44121. name: "Side",
  44122. image: {
  44123. source: "./media/characters/veluren-thanazel/side.svg",
  44124. extra: 1611/633,
  44125. bottom: 118/1729
  44126. }
  44127. },
  44128. front: {
  44129. height: math.unit(30, "feet"),
  44130. name: "Front",
  44131. image: {
  44132. source: "./media/characters/veluren-thanazel/front.svg",
  44133. extra: 1486/636,
  44134. bottom: 238/1724
  44135. }
  44136. },
  44137. head: {
  44138. height: math.unit(21.4, "feet"),
  44139. name: "Head",
  44140. image: {
  44141. source: "./media/characters/veluren-thanazel/head.svg"
  44142. }
  44143. },
  44144. genitals: {
  44145. height: math.unit(19.4, "feet"),
  44146. name: "Genitals",
  44147. image: {
  44148. source: "./media/characters/veluren-thanazel/genitals.svg"
  44149. }
  44150. },
  44151. },
  44152. [
  44153. {
  44154. name: "Social",
  44155. height: math.unit(6, "feet")
  44156. },
  44157. {
  44158. name: "Play",
  44159. height: math.unit(12, "feet")
  44160. },
  44161. {
  44162. name: "True",
  44163. height: math.unit(30, "feet"),
  44164. default: true
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44170. {
  44171. front: {
  44172. height: math.unit(7 + 6/12, "feet"),
  44173. weight: math.unit(500, "kg"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/arcturas/front.svg",
  44177. extra: 1700/1500,
  44178. bottom: 145/1845
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(7 + 6/12, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44192. {
  44193. side: {
  44194. height: math.unit(6, "feet"),
  44195. weight: math.unit(2, "tons"),
  44196. name: "Side",
  44197. image: {
  44198. source: "./media/characters/vitaen/side.svg",
  44199. extra: 1157/617,
  44200. bottom: 122/1279
  44201. }
  44202. },
  44203. },
  44204. [
  44205. {
  44206. name: "Normal",
  44207. height: math.unit(6, "feet"),
  44208. default: true
  44209. },
  44210. ]
  44211. ))
  44212. characterMakers.push(() => makeCharacter(
  44213. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44214. {
  44215. front: {
  44216. height: math.unit(19, "feet"),
  44217. name: "Front",
  44218. image: {
  44219. source: "./media/characters/fia-dreamweaver/front.svg",
  44220. extra: 1630/1504,
  44221. bottom: 25/1655
  44222. }
  44223. },
  44224. },
  44225. [
  44226. {
  44227. name: "Normal",
  44228. height: math.unit(19, "feet"),
  44229. default: true
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44235. {
  44236. front: {
  44237. height: math.unit(5 + 4/12, "feet"),
  44238. name: "Front",
  44239. image: {
  44240. source: "./media/characters/artan/front.svg",
  44241. extra: 1618/1535,
  44242. bottom: 46/1664
  44243. }
  44244. },
  44245. back: {
  44246. height: math.unit(5 + 4/12, "feet"),
  44247. name: "Back",
  44248. image: {
  44249. source: "./media/characters/artan/back.svg",
  44250. extra: 1618/1543,
  44251. bottom: 31/1649
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Normal",
  44258. height: math.unit(5 + 4/12, "feet"),
  44259. default: true
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44265. {
  44266. side: {
  44267. height: math.unit(182, "cm"),
  44268. weight: math.unit(1000, "lb"),
  44269. name: "Side",
  44270. image: {
  44271. source: "./media/characters/silver-dragon/side.svg",
  44272. extra: 710/287,
  44273. bottom: 88/798
  44274. }
  44275. },
  44276. },
  44277. [
  44278. {
  44279. name: "Normal",
  44280. height: math.unit(182, "cm"),
  44281. default: true
  44282. },
  44283. ]
  44284. ))
  44285. characterMakers.push(() => makeCharacter(
  44286. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44287. {
  44288. side: {
  44289. height: math.unit(6 + 6/12, "feet"),
  44290. weight: math.unit(1.5, "tons"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/zephyr/side.svg",
  44294. extra: 1433/586,
  44295. bottom: 109/1542
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(6 + 6/12, "feet"),
  44303. default: true
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44309. {
  44310. side: {
  44311. height: math.unit(1, "feet"),
  44312. name: "Side",
  44313. image: {
  44314. source: "./media/characters/vixye/side.svg",
  44315. extra: 632/541,
  44316. bottom: 0/632
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Normal",
  44323. height: math.unit(1, "feet"),
  44324. default: true
  44325. },
  44326. {
  44327. name: "True",
  44328. height: math.unit(1e15, "multiverses")
  44329. },
  44330. ]
  44331. ))
  44332. characterMakers.push(() => makeCharacter(
  44333. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44334. {
  44335. front: {
  44336. height: math.unit(8 + 2/12, "feet"),
  44337. weight: math.unit(650, "lb"),
  44338. name: "Front",
  44339. image: {
  44340. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44341. extra: 1174/1137,
  44342. bottom: 82/1256
  44343. }
  44344. },
  44345. back: {
  44346. height: math.unit(8 + 2/12, "feet"),
  44347. weight: math.unit(650, "lb"),
  44348. name: "Back",
  44349. image: {
  44350. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44351. extra: 1204/1157,
  44352. bottom: 46/1250
  44353. }
  44354. },
  44355. },
  44356. [
  44357. {
  44358. name: "Wildform",
  44359. height: math.unit(8 + 2/12, "feet"),
  44360. default: true
  44361. },
  44362. ]
  44363. ))
  44364. characterMakers.push(() => makeCharacter(
  44365. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44366. {
  44367. front: {
  44368. height: math.unit(18, "feet"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/cyphin/front.svg",
  44372. extra: 970/886,
  44373. bottom: 42/1012
  44374. }
  44375. },
  44376. back: {
  44377. height: math.unit(18, "feet"),
  44378. name: "Back",
  44379. image: {
  44380. source: "./media/characters/cyphin/back.svg",
  44381. extra: 1009/894,
  44382. bottom: 24/1033
  44383. }
  44384. },
  44385. head: {
  44386. height: math.unit(5.05, "feet"),
  44387. name: "Head",
  44388. image: {
  44389. source: "./media/characters/cyphin/head.svg"
  44390. }
  44391. },
  44392. tailbud: {
  44393. height: math.unit(5, "feet"),
  44394. name: "Tailbud",
  44395. image: {
  44396. source: "./media/characters/cyphin/tailbud.svg"
  44397. }
  44398. },
  44399. },
  44400. [
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44405. {
  44406. side: {
  44407. height: math.unit(10, "feet"),
  44408. weight: math.unit(6, "tons"),
  44409. name: "Side",
  44410. image: {
  44411. source: "./media/characters/raijin/side.svg",
  44412. extra: 1529/613,
  44413. bottom: 337/1866
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(10, "feet"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44427. {
  44428. side: {
  44429. height: math.unit(9, "feet"),
  44430. name: "Side",
  44431. image: {
  44432. source: "./media/characters/nilghais/side.svg",
  44433. extra: 1047/744,
  44434. bottom: 91/1138
  44435. }
  44436. },
  44437. head: {
  44438. height: math.unit(3.14, "feet"),
  44439. name: "Head",
  44440. image: {
  44441. source: "./media/characters/nilghais/head.svg"
  44442. }
  44443. },
  44444. mouth: {
  44445. height: math.unit(4.6, "feet"),
  44446. name: "Mouth",
  44447. image: {
  44448. source: "./media/characters/nilghais/mouth.svg"
  44449. }
  44450. },
  44451. wings: {
  44452. height: math.unit(24, "feet"),
  44453. name: "Wings",
  44454. image: {
  44455. source: "./media/characters/nilghais/wings.svg"
  44456. }
  44457. },
  44458. ass: {
  44459. height: math.unit(6.12, "feet"),
  44460. name: "Ass",
  44461. image: {
  44462. source: "./media/characters/nilghais/ass.svg"
  44463. }
  44464. },
  44465. },
  44466. [
  44467. {
  44468. name: "Normal",
  44469. height: math.unit(9, "feet"),
  44470. default: true
  44471. },
  44472. ]
  44473. ))
  44474. characterMakers.push(() => makeCharacter(
  44475. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44476. {
  44477. regular: {
  44478. height: math.unit(16 + 2/12, "feet"),
  44479. weight: math.unit(2300, "lb"),
  44480. name: "Regular",
  44481. image: {
  44482. source: "./media/characters/zolgar/regular.svg",
  44483. extra: 1246/1004,
  44484. bottom: 124/1370
  44485. }
  44486. },
  44487. boxers: {
  44488. height: math.unit(16 + 2/12, "feet"),
  44489. weight: math.unit(2300, "lb"),
  44490. name: "Boxers",
  44491. image: {
  44492. source: "./media/characters/zolgar/boxers.svg",
  44493. extra: 1246/1004,
  44494. bottom: 124/1370
  44495. }
  44496. },
  44497. armored: {
  44498. height: math.unit(16 + 2/12, "feet"),
  44499. weight: math.unit(2300, "lb"),
  44500. name: "Armored",
  44501. image: {
  44502. source: "./media/characters/zolgar/armored.svg",
  44503. extra: 1246/1004,
  44504. bottom: 124/1370
  44505. }
  44506. },
  44507. goth: {
  44508. height: math.unit(16 + 2/12, "feet"),
  44509. weight: math.unit(2300, "lb"),
  44510. name: "Goth",
  44511. image: {
  44512. source: "./media/characters/zolgar/goth.svg",
  44513. extra: 1246/1004,
  44514. bottom: 124/1370
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Shrunken Down",
  44521. height: math.unit(9 + 2/12, "feet")
  44522. },
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(16 + 2/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(6, "feet"),
  44535. weight: math.unit(168, "lb"),
  44536. name: "Front",
  44537. image: {
  44538. source: "./media/characters/luca/front.svg",
  44539. extra: 841/667,
  44540. bottom: 102/943
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Normal",
  44547. height: math.unit(6, "feet"),
  44548. default: true
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44554. {
  44555. side: {
  44556. height: math.unit(7 + 3/12, "feet"),
  44557. weight: math.unit(312, "lb"),
  44558. name: "Side",
  44559. image: {
  44560. source: "./media/characters/zezo/side.svg",
  44561. extra: 1192/1067,
  44562. bottom: 63/1255
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(7 + 3/12, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(5 + 5/12, "feet"),
  44579. weight: math.unit(170, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/mayso/front.svg",
  44583. extra: 1215/1108,
  44584. bottom: 16/1231
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(5 + 5/12, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44598. {
  44599. front: {
  44600. height: math.unit(4 + 3/12, "feet"),
  44601. weight: math.unit(80, "lb"),
  44602. name: "Front",
  44603. image: {
  44604. source: "./media/characters/hess/front.svg",
  44605. extra: 1200/1123,
  44606. bottom: 16/1216
  44607. }
  44608. },
  44609. },
  44610. [
  44611. {
  44612. name: "Normal",
  44613. height: math.unit(4 + 3/12, "feet"),
  44614. default: true
  44615. },
  44616. ]
  44617. ))
  44618. characterMakers.push(() => makeCharacter(
  44619. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44620. {
  44621. front: {
  44622. height: math.unit(1.9, "meters"),
  44623. name: "Front",
  44624. image: {
  44625. source: "./media/characters/ashgar/front.svg",
  44626. extra: 1177/1146,
  44627. bottom: 99/1276
  44628. }
  44629. },
  44630. back: {
  44631. height: math.unit(1.9, "meters"),
  44632. name: "Back",
  44633. image: {
  44634. source: "./media/characters/ashgar/back.svg",
  44635. extra: 1201/1183,
  44636. bottom: 53/1254
  44637. }
  44638. },
  44639. feral: {
  44640. height: math.unit(1.4, "meters"),
  44641. name: "Feral",
  44642. image: {
  44643. source: "./media/characters/ashgar/feral.svg",
  44644. extra: 370/345,
  44645. bottom: 45/415
  44646. }
  44647. },
  44648. },
  44649. [
  44650. {
  44651. name: "Normal",
  44652. height: math.unit(1.9, "meters"),
  44653. default: true
  44654. },
  44655. ]
  44656. ))
  44657. characterMakers.push(() => makeCharacter(
  44658. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44659. {
  44660. regular: {
  44661. height: math.unit(6, "feet"),
  44662. weight: math.unit(220, "lb"),
  44663. name: "Regular",
  44664. image: {
  44665. source: "./media/characters/phillip/regular.svg",
  44666. extra: 1373/1277,
  44667. bottom: 75/1448
  44668. }
  44669. },
  44670. dressed: {
  44671. height: math.unit(6, "feet"),
  44672. weight: math.unit(220, "lb"),
  44673. name: "Dressed",
  44674. image: {
  44675. source: "./media/characters/phillip/dressed.svg",
  44676. extra: 1373/1277,
  44677. bottom: 75/1448
  44678. }
  44679. },
  44680. paw: {
  44681. height: math.unit(1.44, "feet"),
  44682. name: "Paw",
  44683. image: {
  44684. source: "./media/characters/phillip/paw.svg"
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(6, "feet"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44698. {
  44699. side: {
  44700. height: math.unit(42, "feet"),
  44701. name: "Side",
  44702. image: {
  44703. source: "./media/characters/uvula/side.svg",
  44704. extra: 683/586,
  44705. bottom: 60/743
  44706. }
  44707. },
  44708. front: {
  44709. height: math.unit(42, "feet"),
  44710. name: "Front",
  44711. image: {
  44712. source: "./media/characters/uvula/front.svg",
  44713. extra: 705/613,
  44714. bottom: 54/759
  44715. }
  44716. },
  44717. maw: {
  44718. height: math.unit(23.5, "feet"),
  44719. name: "Maw",
  44720. image: {
  44721. source: "./media/characters/uvula/maw.svg"
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Original Size",
  44728. height: math.unit(14, "inches")
  44729. },
  44730. {
  44731. name: "Human Size",
  44732. height: math.unit(6, "feet")
  44733. },
  44734. {
  44735. name: "Big",
  44736. height: math.unit(42, "feet"),
  44737. default: true
  44738. },
  44739. {
  44740. name: "Bigger",
  44741. height: math.unit(100, "feet")
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44747. {
  44748. front: {
  44749. height: math.unit(5 + 11/12, "feet"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/lannah/front.svg",
  44753. extra: 1208/1113,
  44754. bottom: 97/1305
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Normal",
  44761. height: math.unit(5 + 11/12, "feet"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44768. {
  44769. front: {
  44770. height: math.unit(6 + 3/12, "feet"),
  44771. weight: math.unit(3.5, "tons"),
  44772. name: "Front",
  44773. image: {
  44774. source: "./media/characters/emberflame/front.svg",
  44775. extra: 1198/672,
  44776. bottom: 82/1280
  44777. }
  44778. },
  44779. side: {
  44780. height: math.unit(6 + 3/12, "feet"),
  44781. weight: math.unit(3.5, "tons"),
  44782. name: "Side",
  44783. image: {
  44784. source: "./media/characters/emberflame/side.svg",
  44785. extra: 938/527,
  44786. bottom: 56/994
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Normal",
  44793. height: math.unit(6 + 3/12, "feet"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44800. {
  44801. side: {
  44802. height: math.unit(17.5, "feet"),
  44803. weight: math.unit(35, "tons"),
  44804. name: "Side",
  44805. image: {
  44806. source: "./media/characters/sophie-ambrose/side.svg",
  44807. extra: 1573/1242,
  44808. bottom: 71/1644
  44809. }
  44810. },
  44811. maw: {
  44812. height: math.unit(7.4, "feet"),
  44813. name: "Maw",
  44814. image: {
  44815. source: "./media/characters/sophie-ambrose/maw.svg"
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Normal",
  44822. height: math.unit(17.5, "feet"),
  44823. default: true
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44829. {
  44830. front: {
  44831. height: math.unit(280, "feet"),
  44832. weight: math.unit(550, "tons"),
  44833. name: "Front",
  44834. image: {
  44835. source: "./media/characters/king-mugi/front.svg",
  44836. extra: 1102/947,
  44837. bottom: 104/1206
  44838. }
  44839. },
  44840. },
  44841. [
  44842. {
  44843. name: "King Mugi",
  44844. height: math.unit(280, "feet"),
  44845. default: true
  44846. },
  44847. ]
  44848. ))
  44849. characterMakers.push(() => makeCharacter(
  44850. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44851. {
  44852. front: {
  44853. height: math.unit(64, "meters"),
  44854. name: "Front",
  44855. image: {
  44856. source: "./media/characters/nova-fox/front.svg",
  44857. extra: 1310/1246,
  44858. bottom: 65/1375
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Macro",
  44865. height: math.unit(64, "meters"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(6 + 3/12, "feet"),
  44875. weight: math.unit(170, "lb"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/sam-bat/front.svg",
  44879. extra: 1601/1411,
  44880. bottom: 125/1726
  44881. }
  44882. },
  44883. back: {
  44884. height: math.unit(6 + 3/12, "feet"),
  44885. weight: math.unit(170, "lb"),
  44886. name: "Back",
  44887. image: {
  44888. source: "./media/characters/sam-bat/back.svg",
  44889. extra: 1577/1405,
  44890. bottom: 58/1635
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(6 + 3/12, "feet"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44904. {
  44905. front: {
  44906. height: math.unit(59, "feet"),
  44907. weight: math.unit(40000, "lb"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/inari/front.svg",
  44911. extra: 1884/1350,
  44912. bottom: 95/1979
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Gigantamax",
  44919. height: math.unit(59, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(5 + 8/12, "feet"),
  44929. name: "Front",
  44930. image: {
  44931. source: "./media/characters/elizabeth/front.svg",
  44932. extra: 1395/1298,
  44933. bottom: 54/1449
  44934. }
  44935. },
  44936. mouth: {
  44937. height: math.unit(1.97, "feet"),
  44938. name: "Mouth",
  44939. image: {
  44940. source: "./media/characters/elizabeth/mouth.svg"
  44941. }
  44942. },
  44943. foot: {
  44944. height: math.unit(1.17, "feet"),
  44945. name: "Foot",
  44946. image: {
  44947. source: "./media/characters/elizabeth/foot.svg"
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(5 + 8/12, "feet"),
  44955. default: true
  44956. },
  44957. {
  44958. name: "Minimacro",
  44959. height: math.unit(18, "feet")
  44960. },
  44961. {
  44962. name: "Macro",
  44963. height: math.unit(180, "feet")
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(5 + 2/12, "feet"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/october-gossamer/front.svg",
  44975. extra: 505/454,
  44976. bottom: 7/512
  44977. }
  44978. },
  44979. back: {
  44980. height: math.unit(5 + 2/12, "feet"),
  44981. name: "Back",
  44982. image: {
  44983. source: "./media/characters/october-gossamer/back.svg",
  44984. extra: 501/454,
  44985. bottom: 11/512
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "Normal",
  44992. height: math.unit(5 + 2/12, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(5, "feet"),
  45002. name: "Front",
  45003. image: {
  45004. source: "./media/characters/epiglottis/front.svg",
  45005. extra: 923/849,
  45006. bottom: 17/940
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Original Size",
  45013. height: math.unit(10, "inches")
  45014. },
  45015. {
  45016. name: "Human Size",
  45017. height: math.unit(5, "feet"),
  45018. default: true
  45019. },
  45020. {
  45021. name: "Big",
  45022. height: math.unit(25, "feet")
  45023. },
  45024. {
  45025. name: "Bigger",
  45026. height: math.unit(50, "feet")
  45027. },
  45028. {
  45029. name: "oh lawd",
  45030. height: math.unit(75, "feet")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(2 + 4/12, "feet"),
  45039. weight: math.unit(60, "lb"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/lerm/front.svg",
  45043. extra: 796/790,
  45044. bottom: 79/875
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(2 + 4/12, "feet"),
  45052. default: true
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(5.5, "feet"),
  45061. weight: math.unit(130, "lb"),
  45062. name: "Front",
  45063. image: {
  45064. source: "./media/characters/xena-nebadon/front.svg",
  45065. extra: 1828/1730,
  45066. bottom: 79/1907
  45067. }
  45068. },
  45069. },
  45070. [
  45071. {
  45072. name: "Tiny Puppy",
  45073. height: math.unit(3, "inches")
  45074. },
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(5.5, "feet"),
  45078. default: true
  45079. },
  45080. {
  45081. name: "Lotta Lady",
  45082. height: math.unit(12, "feet")
  45083. },
  45084. {
  45085. name: "Pretty Big",
  45086. height: math.unit(100, "feet")
  45087. },
  45088. {
  45089. name: "Big",
  45090. height: math.unit(500, "feet")
  45091. },
  45092. {
  45093. name: "Skyscraper Toys",
  45094. height: math.unit(2500, "feet")
  45095. },
  45096. {
  45097. name: "Plane Catcher",
  45098. height: math.unit(8, "miles")
  45099. },
  45100. {
  45101. name: "Planet Toys",
  45102. height: math.unit(15, "earths")
  45103. },
  45104. {
  45105. name: "Stardust",
  45106. height: math.unit(0.25, "galaxies")
  45107. },
  45108. {
  45109. name: "Snacks",
  45110. height: math.unit(70, "universes")
  45111. },
  45112. ]
  45113. ))
  45114. characterMakers.push(() => makeCharacter(
  45115. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45116. {
  45117. front: {
  45118. height: math.unit(1.6, "meters"),
  45119. weight: math.unit(60, "kg"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/bounty/front.svg",
  45123. extra: 1426/1308,
  45124. bottom: 15/1441
  45125. }
  45126. },
  45127. back: {
  45128. height: math.unit(1.6, "meters"),
  45129. weight: math.unit(60, "kg"),
  45130. name: "Back",
  45131. image: {
  45132. source: "./media/characters/bounty/back.svg",
  45133. extra: 1417/1307,
  45134. bottom: 8/1425
  45135. }
  45136. },
  45137. },
  45138. [
  45139. {
  45140. name: "Normal",
  45141. height: math.unit(1.6, "meters"),
  45142. default: true
  45143. },
  45144. {
  45145. name: "Macro",
  45146. height: math.unit(300, "meters")
  45147. },
  45148. ]
  45149. ))
  45150. characterMakers.push(() => makeCharacter(
  45151. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45152. {
  45153. front: {
  45154. height: math.unit(2 + 8/12, "feet"),
  45155. weight: math.unit(15, "lb"),
  45156. name: "Front",
  45157. image: {
  45158. source: "./media/characters/mochi/front.svg",
  45159. extra: 1022/852,
  45160. bottom: 435/1457
  45161. }
  45162. },
  45163. back: {
  45164. height: math.unit(2 + 8/12, "feet"),
  45165. weight: math.unit(15, "lb"),
  45166. name: "Back",
  45167. image: {
  45168. source: "./media/characters/mochi/back.svg",
  45169. extra: 1335/1119,
  45170. bottom: 39/1374
  45171. }
  45172. },
  45173. bird: {
  45174. height: math.unit(2 + 8/12, "feet"),
  45175. weight: math.unit(15, "lb"),
  45176. name: "Bird",
  45177. image: {
  45178. source: "./media/characters/mochi/bird.svg",
  45179. extra: 1251/1113,
  45180. bottom: 178/1429
  45181. }
  45182. },
  45183. kaiju: {
  45184. height: math.unit(154, "feet"),
  45185. weight: math.unit(1e7, "lb"),
  45186. name: "Kaiju",
  45187. image: {
  45188. source: "./media/characters/mochi/kaiju.svg",
  45189. extra: 460/324,
  45190. bottom: 40/500
  45191. }
  45192. },
  45193. head: {
  45194. height: math.unit(1.21, "feet"),
  45195. name: "Head",
  45196. image: {
  45197. source: "./media/characters/mochi/head.svg"
  45198. }
  45199. },
  45200. alternateTail: {
  45201. height: math.unit(2 + 8/12, "feet"),
  45202. weight: math.unit(45, "lb"),
  45203. name: "Alternate Tail",
  45204. image: {
  45205. source: "./media/characters/mochi/alternate-tail.svg",
  45206. extra: 139/76,
  45207. bottom: 45/184
  45208. }
  45209. },
  45210. },
  45211. [
  45212. {
  45213. name: "Micro",
  45214. height: math.unit(2, "inches")
  45215. },
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(2 + 8/12, "feet"),
  45219. default: true
  45220. },
  45221. {
  45222. name: "Macro",
  45223. height: math.unit(106, "feet")
  45224. },
  45225. ]
  45226. ))
  45227. characterMakers.push(() => makeCharacter(
  45228. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45229. {
  45230. front: {
  45231. height: math.unit(5.67, "feet"),
  45232. weight: math.unit(135, "lb"),
  45233. name: "Front",
  45234. image: {
  45235. source: "./media/characters/sarel/front.svg",
  45236. extra: 865/788,
  45237. bottom: 97/962
  45238. }
  45239. },
  45240. back: {
  45241. height: math.unit(5.67, "feet"),
  45242. weight: math.unit(135, "lb"),
  45243. name: "Back",
  45244. image: {
  45245. source: "./media/characters/sarel/back.svg",
  45246. extra: 857/777,
  45247. bottom: 32/889
  45248. }
  45249. },
  45250. chozoan: {
  45251. height: math.unit(5.67, "feet"),
  45252. weight: math.unit(135, "lb"),
  45253. name: "Chozoan",
  45254. image: {
  45255. source: "./media/characters/sarel/chozoan.svg",
  45256. extra: 865/788,
  45257. bottom: 97/962
  45258. }
  45259. },
  45260. current: {
  45261. height: math.unit(5.67, "feet"),
  45262. weight: math.unit(135, "lb"),
  45263. name: "Current",
  45264. image: {
  45265. source: "./media/characters/sarel/current.svg",
  45266. extra: 865/788,
  45267. bottom: 97/962
  45268. }
  45269. },
  45270. head: {
  45271. height: math.unit(1.77, "feet"),
  45272. name: "Head",
  45273. image: {
  45274. source: "./media/characters/sarel/head.svg"
  45275. }
  45276. },
  45277. claws: {
  45278. height: math.unit(1.8, "feet"),
  45279. name: "Claws",
  45280. image: {
  45281. source: "./media/characters/sarel/claws.svg"
  45282. }
  45283. },
  45284. clawsAlt: {
  45285. height: math.unit(1.8, "feet"),
  45286. name: "Claws-alt",
  45287. image: {
  45288. source: "./media/characters/sarel/claws-alt.svg"
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(5.67, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(5500, "feet"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/alyonia/front.svg",
  45308. extra: 1200/1135,
  45309. bottom: 29/1229
  45310. }
  45311. },
  45312. back: {
  45313. height: math.unit(5500, "feet"),
  45314. name: "Back",
  45315. image: {
  45316. source: "./media/characters/alyonia/back.svg",
  45317. extra: 1205/1138,
  45318. bottom: 10/1215
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Small",
  45325. height: math.unit(10, "feet")
  45326. },
  45327. {
  45328. name: "Macro",
  45329. height: math.unit(500, "feet")
  45330. },
  45331. {
  45332. name: "Mega Macro",
  45333. height: math.unit(5500, "feet"),
  45334. default: true
  45335. },
  45336. {
  45337. name: "Mega Macro+",
  45338. height: math.unit(500000, "feet")
  45339. },
  45340. {
  45341. name: "Giga Macro",
  45342. height: math.unit(3000, "miles")
  45343. },
  45344. {
  45345. name: "Tera Macro",
  45346. height: math.unit(2.8e6, "miles")
  45347. },
  45348. {
  45349. name: "Galactic",
  45350. height: math.unit(120000, "lightyears")
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45356. {
  45357. werewolf: {
  45358. height: math.unit(8, "feet"),
  45359. weight: math.unit(425, "lb"),
  45360. name: "Werewolf",
  45361. image: {
  45362. source: "./media/characters/autumn/werewolf.svg",
  45363. extra: 2154/2031,
  45364. bottom: 160/2314
  45365. }
  45366. },
  45367. human: {
  45368. height: math.unit(5 + 8/12, "feet"),
  45369. weight: math.unit(150, "lb"),
  45370. name: "Human",
  45371. image: {
  45372. source: "./media/characters/autumn/human.svg",
  45373. extra: 1200/1149,
  45374. bottom: 30/1230
  45375. }
  45376. },
  45377. },
  45378. [
  45379. {
  45380. name: "Normal",
  45381. height: math.unit(8, "feet"),
  45382. default: true
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(8 + 5/12, "feet"),
  45391. weight: math.unit(825, "lb"),
  45392. name: "Front",
  45393. image: {
  45394. source: "./media/characters/cobalt-charizard/front.svg",
  45395. extra: 1268/1155,
  45396. bottom: 122/1390
  45397. }
  45398. },
  45399. side: {
  45400. height: math.unit(8 + 5/12, "feet"),
  45401. weight: math.unit(825, "lb"),
  45402. name: "Side",
  45403. image: {
  45404. source: "./media/characters/cobalt-charizard/side.svg",
  45405. extra: 1348/1257,
  45406. bottom: 58/1406
  45407. }
  45408. },
  45409. gMax: {
  45410. height: math.unit(134 + 11/12, "feet"),
  45411. name: "G-Max",
  45412. image: {
  45413. source: "./media/characters/cobalt-charizard/g-max.svg",
  45414. extra: 1835/1541,
  45415. bottom: 151/1986
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Normal",
  45422. height: math.unit(8 + 5/12, "feet"),
  45423. default: true
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45429. {
  45430. front: {
  45431. height: math.unit(6 + 3/12, "feet"),
  45432. weight: math.unit(210, "lb"),
  45433. name: "Front",
  45434. image: {
  45435. source: "./media/characters/stella/front.svg",
  45436. extra: 3549/3335,
  45437. bottom: 51/3600
  45438. }
  45439. },
  45440. },
  45441. [
  45442. {
  45443. name: "Normal",
  45444. height: math.unit(6 + 3/12, "feet"),
  45445. default: true
  45446. },
  45447. ]
  45448. ))
  45449. characterMakers.push(() => makeCharacter(
  45450. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45451. {
  45452. front: {
  45453. height: math.unit(5, "feet"),
  45454. weight: math.unit(90, "lb"),
  45455. name: "Front",
  45456. image: {
  45457. source: "./media/characters/riley-bishop/front.svg",
  45458. extra: 1450/1428,
  45459. bottom: 152/1602
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Normal",
  45466. height: math.unit(5, "feet"),
  45467. default: true
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45473. {
  45474. side: {
  45475. height: math.unit(8 + 2/12, "feet"),
  45476. weight: math.unit(500, "kg"),
  45477. name: "Side",
  45478. image: {
  45479. source: "./media/characters/theo-arcanine/side.svg",
  45480. extra: 1342/1074,
  45481. bottom: 111/1453
  45482. }
  45483. },
  45484. },
  45485. [
  45486. {
  45487. name: "Normal",
  45488. height: math.unit(8 + 2/12, "feet"),
  45489. default: true
  45490. },
  45491. ]
  45492. ))
  45493. characterMakers.push(() => makeCharacter(
  45494. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45495. {
  45496. front: {
  45497. height: math.unit(4, "feet"),
  45498. name: "Front",
  45499. image: {
  45500. source: "./media/characters/kali/front.svg",
  45501. extra: 1074/867,
  45502. bottom: 34/1108
  45503. }
  45504. },
  45505. back: {
  45506. height: math.unit(4, "feet"),
  45507. name: "Back",
  45508. image: {
  45509. source: "./media/characters/kali/back.svg",
  45510. extra: 1068/863,
  45511. bottom: 26/1094
  45512. }
  45513. },
  45514. frontAlt: {
  45515. height: math.unit(4, "feet"),
  45516. name: "Front (Alt)",
  45517. image: {
  45518. source: "./media/characters/kali/front-alt.svg",
  45519. extra: 1921/1357,
  45520. bottom: 70/1991
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Normal",
  45527. height: math.unit(4, "feet"),
  45528. default: true
  45529. },
  45530. {
  45531. name: "Big'vali",
  45532. height: math.unit(11, "feet")
  45533. },
  45534. {
  45535. name: "Macro",
  45536. height: math.unit(32, "meters")
  45537. },
  45538. {
  45539. name: "Macro+",
  45540. height: math.unit(150, "meters")
  45541. },
  45542. {
  45543. name: "Megamacro",
  45544. height: math.unit(7500, "meters")
  45545. },
  45546. {
  45547. name: "Megamacro+",
  45548. height: math.unit(80, "kilometers")
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45554. {
  45555. side: {
  45556. height: math.unit(5 + 11/12, "feet"),
  45557. weight: math.unit(236, "lb"),
  45558. name: "Side",
  45559. image: {
  45560. source: "./media/characters/gapp/side.svg",
  45561. extra: 775/340,
  45562. bottom: 58/833
  45563. }
  45564. },
  45565. mouth: {
  45566. height: math.unit(2.98, "feet"),
  45567. name: "Mouth",
  45568. image: {
  45569. source: "./media/characters/gapp/mouth.svg"
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(5 + 1/12, "feet"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45583. {
  45584. front: {
  45585. height: math.unit(6, "feet"),
  45586. name: "Front",
  45587. image: {
  45588. source: "./media/characters/persephone/front.svg",
  45589. extra: 1895/1717,
  45590. bottom: 96/1991
  45591. }
  45592. },
  45593. back: {
  45594. height: math.unit(6, "feet"),
  45595. name: "Back",
  45596. image: {
  45597. source: "./media/characters/persephone/back.svg",
  45598. extra: 1868/1679,
  45599. bottom: 26/1894
  45600. }
  45601. },
  45602. casual: {
  45603. height: math.unit(6, "feet"),
  45604. name: "Casual",
  45605. image: {
  45606. source: "./media/characters/persephone/casual.svg",
  45607. extra: 1713/1541,
  45608. bottom: 76/1789
  45609. }
  45610. },
  45611. gaming: {
  45612. height: math.unit(3.55, "feet"),
  45613. name: "Gaming",
  45614. image: {
  45615. source: "./media/characters/persephone/gaming.svg",
  45616. extra: 1242/1038,
  45617. bottom: 66/1308
  45618. }
  45619. },
  45620. head: {
  45621. height: math.unit(2.15, "feet"),
  45622. name: "😐",
  45623. image: {
  45624. source: "./media/characters/persephone/head.svg"
  45625. }
  45626. },
  45627. talking: {
  45628. height: math.unit(2.5, "feet"),
  45629. name: "💬",
  45630. image: {
  45631. source: "./media/characters/persephone/talking.svg"
  45632. }
  45633. },
  45634. hmm: {
  45635. height: math.unit(2.28, "feet"),
  45636. name: "🤨",
  45637. image: {
  45638. source: "./media/characters/persephone/hmm.svg"
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Human Size",
  45645. height: math.unit(6, "feet")
  45646. },
  45647. {
  45648. name: "Big Steppy",
  45649. height: math.unit(600, "meters"),
  45650. default: true
  45651. },
  45652. {
  45653. name: "Galaxy Brain",
  45654. height: math.unit(1, "zettameter")
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45660. {
  45661. front: {
  45662. height: math.unit(1.85, "meters"),
  45663. name: "Front",
  45664. image: {
  45665. source: "./media/characters/riley-foxthing/front.svg",
  45666. extra: 1495/1354,
  45667. bottom: 122/1617
  45668. }
  45669. },
  45670. frontAlt: {
  45671. height: math.unit(1.85, "meters"),
  45672. name: "Front (Alt)",
  45673. image: {
  45674. source: "./media/characters/riley-foxthing/front-alt.svg",
  45675. extra: 1572/1389,
  45676. bottom: 116/1688
  45677. }
  45678. },
  45679. },
  45680. [
  45681. {
  45682. name: "Normal Sized",
  45683. height: math.unit(1.85, "meters"),
  45684. default: true
  45685. },
  45686. {
  45687. name: "Quite Sizable",
  45688. height: math.unit(5, "meters")
  45689. },
  45690. {
  45691. name: "Rather Large",
  45692. height: math.unit(20, "meters")
  45693. },
  45694. {
  45695. name: "Macro",
  45696. height: math.unit(450, "meters")
  45697. },
  45698. {
  45699. name: "Giga",
  45700. height: math.unit(5, "km")
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45706. {
  45707. front: {
  45708. height: math.unit(6, "feet"),
  45709. weight: math.unit(200, "lb"),
  45710. name: "Front",
  45711. image: {
  45712. source: "./media/characters/blizzard/front.svg",
  45713. extra: 1136/990,
  45714. bottom: 136/1272
  45715. }
  45716. },
  45717. back: {
  45718. height: math.unit(6, "feet"),
  45719. weight: math.unit(200, "lb"),
  45720. name: "Back",
  45721. image: {
  45722. source: "./media/characters/blizzard/back.svg",
  45723. extra: 1175/1034,
  45724. bottom: 97/1272
  45725. }
  45726. },
  45727. sitting: {
  45728. height: math.unit(3.725, "feet"),
  45729. weight: math.unit(200, "lb"),
  45730. name: "Sitting",
  45731. image: {
  45732. source: "./media/characters/blizzard/sitting.svg",
  45733. extra: 581/485,
  45734. bottom: 90/671
  45735. }
  45736. },
  45737. frontWizard: {
  45738. height: math.unit(7.9, "feet"),
  45739. weight: math.unit(200, "lb"),
  45740. name: "Front (Wizard)",
  45741. image: {
  45742. source: "./media/characters/blizzard/front-wizard.svg"
  45743. }
  45744. },
  45745. backWizard: {
  45746. height: math.unit(7.9, "feet"),
  45747. weight: math.unit(200, "lb"),
  45748. name: "Back (Wizard)",
  45749. image: {
  45750. source: "./media/characters/blizzard/back-wizard.svg"
  45751. }
  45752. },
  45753. frontNsfw: {
  45754. height: math.unit(6, "feet"),
  45755. weight: math.unit(200, "lb"),
  45756. name: "Front (NSFW)",
  45757. image: {
  45758. source: "./media/characters/blizzard/front-nsfw.svg",
  45759. extra: 1136/990,
  45760. bottom: 136/1272
  45761. }
  45762. },
  45763. backNsfw: {
  45764. height: math.unit(6, "feet"),
  45765. weight: math.unit(200, "lb"),
  45766. name: "Back (NSFW)",
  45767. image: {
  45768. source: "./media/characters/blizzard/back-nsfw.svg",
  45769. extra: 1175/1034,
  45770. bottom: 97/1272
  45771. }
  45772. },
  45773. sittingNsfw: {
  45774. height: math.unit(3.725, "feet"),
  45775. weight: math.unit(200, "lb"),
  45776. name: "Sitting (NSFW)",
  45777. image: {
  45778. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45779. extra: 581/485,
  45780. bottom: 90/671
  45781. }
  45782. },
  45783. wizardFrontNsfw: {
  45784. height: math.unit(7.9, "feet"),
  45785. weight: math.unit(200, "lb"),
  45786. name: "Wizard (Front, NSFW)",
  45787. image: {
  45788. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Normal",
  45795. height: math.unit(6, "feet"),
  45796. default: true
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45802. {
  45803. front: {
  45804. height: math.unit(5 + 2/12, "feet"),
  45805. name: "Front",
  45806. image: {
  45807. source: "./media/characters/lumi/front.svg",
  45808. extra: 1328/1268,
  45809. bottom: 103/1431
  45810. }
  45811. },
  45812. back: {
  45813. height: math.unit(5 + 2/12, "feet"),
  45814. name: "Back",
  45815. image: {
  45816. source: "./media/characters/lumi/back.svg",
  45817. extra: 1381/1327,
  45818. bottom: 43/1424
  45819. }
  45820. },
  45821. },
  45822. [
  45823. {
  45824. name: "Normal",
  45825. height: math.unit(5 + 2/12, "feet"),
  45826. default: true
  45827. },
  45828. ]
  45829. ))
  45830. characterMakers.push(() => makeCharacter(
  45831. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45832. {
  45833. front: {
  45834. height: math.unit(5 + 9/12, "feet"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/aliya-cotton/front.svg",
  45838. extra: 577/564,
  45839. bottom: 29/606
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(5 + 9/12, "feet"),
  45847. default: true
  45848. },
  45849. ]
  45850. ))
  45851. characterMakers.push(() => makeCharacter(
  45852. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45853. {
  45854. front: {
  45855. height: math.unit(2.7, "meters"),
  45856. weight: math.unit(25000, "lb"),
  45857. name: "Front",
  45858. image: {
  45859. source: "./media/characters/noah-luxray/front.svg",
  45860. extra: 1644/825,
  45861. bottom: 339/1983
  45862. }
  45863. },
  45864. side: {
  45865. height: math.unit(2.97, "meters"),
  45866. weight: math.unit(25000, "lb"),
  45867. name: "Side",
  45868. image: {
  45869. source: "./media/characters/noah-luxray/side.svg",
  45870. extra: 1319/650,
  45871. bottom: 163/1482
  45872. }
  45873. },
  45874. dick: {
  45875. height: math.unit(7.4, "feet"),
  45876. weight: math.unit(2500, "lb"),
  45877. name: "Dick",
  45878. image: {
  45879. source: "./media/characters/noah-luxray/dick.svg"
  45880. }
  45881. },
  45882. dickAlt: {
  45883. height: math.unit(10.83, "feet"),
  45884. weight: math.unit(2500, "lb"),
  45885. name: "Dick-alt",
  45886. image: {
  45887. source: "./media/characters/noah-luxray/dick-alt.svg"
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "BIG",
  45894. height: math.unit(2.7, "meters"),
  45895. default: true
  45896. },
  45897. ]
  45898. ))
  45899. characterMakers.push(() => makeCharacter(
  45900. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45901. {
  45902. standing: {
  45903. height: math.unit(183, "cm"),
  45904. weight: math.unit(68, "kg"),
  45905. name: "Standing",
  45906. image: {
  45907. source: "./media/characters/arion/standing.svg",
  45908. extra: 1869/1807,
  45909. bottom: 93/1962
  45910. }
  45911. },
  45912. reclining: {
  45913. height: math.unit(70.5, "cm"),
  45914. weight: math.unit(68, "lb"),
  45915. name: "Reclining",
  45916. image: {
  45917. source: "./media/characters/arion/reclining.svg",
  45918. extra: 937/870,
  45919. bottom: 63/1000
  45920. }
  45921. },
  45922. },
  45923. [
  45924. {
  45925. name: "Colossus Size, Low",
  45926. height: math.unit(33, "meters"),
  45927. default: true
  45928. },
  45929. {
  45930. name: "Colossus Size, Mid",
  45931. height: math.unit(52, "meters")
  45932. },
  45933. {
  45934. name: "Colossus Size, High",
  45935. height: math.unit(60, "meters")
  45936. },
  45937. {
  45938. name: "Titan Size, Low",
  45939. height: math.unit(91, "meters"),
  45940. },
  45941. {
  45942. name: "Titan Size, Mid",
  45943. height: math.unit(122, "meters")
  45944. },
  45945. {
  45946. name: "Titan Size, High",
  45947. height: math.unit(162, "meters")
  45948. },
  45949. ]
  45950. ))
  45951. characterMakers.push(() => makeCharacter(
  45952. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45953. {
  45954. front: {
  45955. height: math.unit(53, "meters"),
  45956. name: "Front",
  45957. image: {
  45958. source: "./media/characters/stellar-marbey/front.svg",
  45959. extra: 1913/1805,
  45960. bottom: 92/2005
  45961. }
  45962. },
  45963. back: {
  45964. height: math.unit(53, "meters"),
  45965. name: "Back",
  45966. image: {
  45967. source: "./media/characters/stellar-marbey/back.svg",
  45968. extra: 1960/1851,
  45969. bottom: 28/1988
  45970. }
  45971. },
  45972. mouth: {
  45973. height: math.unit(3.5, "meters"),
  45974. name: "Mouth",
  45975. image: {
  45976. source: "./media/characters/stellar-marbey/mouth.svg"
  45977. }
  45978. },
  45979. },
  45980. [
  45981. {
  45982. name: "Macro",
  45983. height: math.unit(53, "meters"),
  45984. default: true
  45985. },
  45986. ]
  45987. ))
  45988. characterMakers.push(() => makeCharacter(
  45989. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45990. {
  45991. front: {
  45992. height: math.unit(8 + 1/12, "feet"),
  45993. weight: math.unit(233, "lb"),
  45994. name: "Front",
  45995. image: {
  45996. source: "./media/characters/matsu/front.svg",
  45997. extra: 832/772,
  45998. bottom: 40/872
  45999. }
  46000. },
  46001. back: {
  46002. height: math.unit(8 + 1/12, "feet"),
  46003. weight: math.unit(233, "lb"),
  46004. name: "Back",
  46005. image: {
  46006. source: "./media/characters/matsu/back.svg",
  46007. extra: 839/780,
  46008. bottom: 47/886
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Normal",
  46015. height: math.unit(8 + 1/12, "feet"),
  46016. default: true
  46017. },
  46018. ]
  46019. ))
  46020. characterMakers.push(() => makeCharacter(
  46021. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46022. {
  46023. front: {
  46024. height: math.unit(4, "feet"),
  46025. weight: math.unit(148, "lb"),
  46026. name: "Front",
  46027. image: {
  46028. source: "./media/characters/thiz/front.svg",
  46029. extra: 1913/1748,
  46030. bottom: 62/1975
  46031. }
  46032. },
  46033. },
  46034. [
  46035. {
  46036. name: "Normal",
  46037. height: math.unit(4, "feet"),
  46038. default: true
  46039. },
  46040. ]
  46041. ))
  46042. characterMakers.push(() => makeCharacter(
  46043. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46044. {
  46045. front: {
  46046. height: math.unit(7 + 6/12, "feet"),
  46047. weight: math.unit(267, "lb"),
  46048. name: "Front",
  46049. image: {
  46050. source: "./media/characters/marcel/front.svg",
  46051. extra: 1221/1096,
  46052. bottom: 76/1297
  46053. }
  46054. },
  46055. },
  46056. [
  46057. {
  46058. name: "Normal",
  46059. height: math.unit(7 + 6/12, "feet"),
  46060. default: true
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46066. {
  46067. side: {
  46068. height: math.unit(42, "meters"),
  46069. name: "Side",
  46070. image: {
  46071. source: "./media/characters/flake/side.svg",
  46072. extra: 1525/1306,
  46073. bottom: 209/1734
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(42, "meters"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46087. {
  46088. dressed: {
  46089. height: math.unit(6 + 4/12, "feet"),
  46090. weight: math.unit(520, "lb"),
  46091. name: "Dressed",
  46092. image: {
  46093. source: "./media/characters/someonne/dressed.svg",
  46094. extra: 1020/1010,
  46095. bottom: 178/1198
  46096. }
  46097. },
  46098. undressed: {
  46099. height: math.unit(6 + 4/12, "feet"),
  46100. weight: math.unit(520, "lb"),
  46101. name: "Undressed",
  46102. image: {
  46103. source: "./media/characters/someonne/undressed.svg",
  46104. extra: 1019/1014,
  46105. bottom: 169/1188
  46106. }
  46107. },
  46108. },
  46109. [
  46110. {
  46111. name: "Normal",
  46112. height: math.unit(6 + 4/12, "feet"),
  46113. default: true
  46114. },
  46115. ]
  46116. ))
  46117. characterMakers.push(() => makeCharacter(
  46118. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46119. {
  46120. front: {
  46121. height: math.unit(3, "feet"),
  46122. weight: math.unit(30, "lb"),
  46123. name: "Front",
  46124. image: {
  46125. source: "./media/characters/till/front.svg",
  46126. extra: 892/823,
  46127. bottom: 55/947
  46128. }
  46129. },
  46130. },
  46131. [
  46132. {
  46133. name: "Normal",
  46134. height: math.unit(3, "feet"),
  46135. default: true
  46136. },
  46137. ]
  46138. ))
  46139. characterMakers.push(() => makeCharacter(
  46140. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46141. {
  46142. front: {
  46143. height: math.unit(9 + 8/12, "feet"),
  46144. weight: math.unit(800, "lb"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/sydney-heki/front.svg",
  46148. extra: 1360/1300,
  46149. bottom: 22/1382
  46150. }
  46151. },
  46152. back: {
  46153. height: math.unit(9 + 8/12, "feet"),
  46154. weight: math.unit(800, "lb"),
  46155. name: "Back",
  46156. image: {
  46157. source: "./media/characters/sydney-heki/back.svg",
  46158. extra: 1356/1293,
  46159. bottom: 12/1368
  46160. }
  46161. },
  46162. frontDressed: {
  46163. height: math.unit(9 + 8/12, "feet"),
  46164. weight: math.unit(800, "lb"),
  46165. name: "Front-dressed",
  46166. image: {
  46167. source: "./media/characters/sydney-heki/front-dressed.svg",
  46168. extra: 1360/1300,
  46169. bottom: 22/1382
  46170. }
  46171. },
  46172. },
  46173. [
  46174. {
  46175. name: "Normal",
  46176. height: math.unit(9 + 8/12, "feet"),
  46177. default: true
  46178. },
  46179. {
  46180. name: "Macro",
  46181. height: math.unit(500, "feet")
  46182. },
  46183. {
  46184. name: "Megamacro",
  46185. height: math.unit(3.6, "miles")
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46191. {
  46192. front: {
  46193. height: math.unit(200, "cm"),
  46194. weight: math.unit(250, "lb"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/fowler-karlsson/front.svg",
  46198. extra: 897/845,
  46199. bottom: 123/1020
  46200. }
  46201. },
  46202. back: {
  46203. height: math.unit(200, "cm"),
  46204. weight: math.unit(250, "lb"),
  46205. name: "Back",
  46206. image: {
  46207. source: "./media/characters/fowler-karlsson/back.svg",
  46208. extra: 999/944,
  46209. bottom: 26/1025
  46210. }
  46211. },
  46212. dick: {
  46213. height: math.unit(1.92, "feet"),
  46214. weight: math.unit(150, "lb"),
  46215. name: "Dick",
  46216. image: {
  46217. source: "./media/characters/fowler-karlsson/dick.svg"
  46218. }
  46219. },
  46220. },
  46221. [
  46222. {
  46223. name: "Normal",
  46224. height: math.unit(200, "cm"),
  46225. default: true
  46226. },
  46227. {
  46228. name: "Smaller Macro",
  46229. height: math.unit(90, "m")
  46230. },
  46231. {
  46232. name: "Macro",
  46233. height: math.unit(150, "m")
  46234. },
  46235. {
  46236. name: "Bigger Macro",
  46237. height: math.unit(300, "m")
  46238. },
  46239. ]
  46240. ))
  46241. characterMakers.push(() => makeCharacter(
  46242. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46243. {
  46244. side: {
  46245. height: math.unit(8 + 2/12, "feet"),
  46246. weight: math.unit(1, "tonne"),
  46247. name: "Side",
  46248. image: {
  46249. source: "./media/characters/rylide/side.svg",
  46250. extra: 1318/1034,
  46251. bottom: 106/1424
  46252. }
  46253. },
  46254. sitting: {
  46255. height: math.unit(303, "cm"),
  46256. weight: math.unit(1, "tonne"),
  46257. name: "Sitting",
  46258. image: {
  46259. source: "./media/characters/rylide/sitting.svg",
  46260. extra: 1303/1103,
  46261. bottom: 36/1339
  46262. }
  46263. },
  46264. },
  46265. [
  46266. {
  46267. name: "Normal",
  46268. height: math.unit(8 + 2/12, "feet"),
  46269. default: true
  46270. },
  46271. ]
  46272. ))
  46273. characterMakers.push(() => makeCharacter(
  46274. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46275. {
  46276. front: {
  46277. height: math.unit(5 + 10/12, "feet"),
  46278. weight: math.unit(160, "lb"),
  46279. name: "Front",
  46280. image: {
  46281. source: "./media/characters/pudask/front.svg",
  46282. extra: 1616/1590,
  46283. bottom: 161/1777
  46284. }
  46285. },
  46286. },
  46287. [
  46288. {
  46289. name: "Ferret Height",
  46290. height: math.unit(2 + 5/12, "feet")
  46291. },
  46292. {
  46293. name: "Canon Height",
  46294. height: math.unit(5 + 10/12, "feet"),
  46295. default: true
  46296. },
  46297. ]
  46298. ))
  46299. characterMakers.push(() => makeCharacter(
  46300. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46301. {
  46302. front: {
  46303. height: math.unit(3 + 6/12, "feet"),
  46304. weight: math.unit(60, "lb"),
  46305. name: "Front",
  46306. image: {
  46307. source: "./media/characters/ramita/front.svg",
  46308. extra: 1402/1232,
  46309. bottom: 62/1464
  46310. }
  46311. },
  46312. dressed: {
  46313. height: math.unit(3 + 6/12, "feet"),
  46314. weight: math.unit(60, "lb"),
  46315. name: "Dressed",
  46316. image: {
  46317. source: "./media/characters/ramita/dressed.svg",
  46318. extra: 1534/1249,
  46319. bottom: 50/1584
  46320. }
  46321. },
  46322. },
  46323. [
  46324. {
  46325. name: "Normal",
  46326. height: math.unit(3 + 6/12, "feet"),
  46327. default: true
  46328. },
  46329. ]
  46330. ))
  46331. characterMakers.push(() => makeCharacter(
  46332. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46333. {
  46334. front: {
  46335. height: math.unit(8, "feet"),
  46336. name: "Front",
  46337. image: {
  46338. source: "./media/characters/ark/front.svg",
  46339. extra: 772/693,
  46340. bottom: 45/817
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(8, "feet"),
  46348. default: true
  46349. },
  46350. ]
  46351. ))
  46352. characterMakers.push(() => makeCharacter(
  46353. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46354. {
  46355. front: {
  46356. height: math.unit(6, "feet"),
  46357. weight: math.unit(250, "lb"),
  46358. volume: math.unit(5/8, "gallons"),
  46359. name: "Front",
  46360. image: {
  46361. source: "./media/characters/ludwig-horn/front.svg",
  46362. extra: 1782/1635,
  46363. bottom: 96/1878
  46364. }
  46365. },
  46366. back: {
  46367. height: math.unit(6, "feet"),
  46368. weight: math.unit(250, "lb"),
  46369. volume: math.unit(5/8, "gallons"),
  46370. name: "Back",
  46371. image: {
  46372. source: "./media/characters/ludwig-horn/back.svg",
  46373. extra: 1874/1729,
  46374. bottom: 27/1901
  46375. }
  46376. },
  46377. dick: {
  46378. height: math.unit(1.05, "feet"),
  46379. weight: math.unit(15, "lb"),
  46380. volume: math.unit(5/8, "gallons"),
  46381. name: "Dick",
  46382. image: {
  46383. source: "./media/characters/ludwig-horn/dick.svg"
  46384. }
  46385. },
  46386. },
  46387. [
  46388. {
  46389. name: "Small",
  46390. height: math.unit(6, "feet")
  46391. },
  46392. {
  46393. name: "Typical",
  46394. height: math.unit(12, "feet"),
  46395. default: true
  46396. },
  46397. {
  46398. name: "Building",
  46399. height: math.unit(80, "feet")
  46400. },
  46401. {
  46402. name: "Town",
  46403. height: math.unit(800, "feet")
  46404. },
  46405. {
  46406. name: "Kingdom",
  46407. height: math.unit(80000, "feet")
  46408. },
  46409. {
  46410. name: "Planet",
  46411. height: math.unit(8000000, "feet")
  46412. },
  46413. {
  46414. name: "Universe",
  46415. height: math.unit(8000000000, "feet")
  46416. },
  46417. {
  46418. name: "Transcended",
  46419. height: math.unit(8e27, "feet")
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46425. {
  46426. front: {
  46427. height: math.unit(5, "feet"),
  46428. weight: math.unit(50, "kg"),
  46429. name: "Front",
  46430. image: {
  46431. source: "./media/characters/biot-avery/front.svg",
  46432. extra: 1295/1232,
  46433. bottom: 86/1381
  46434. }
  46435. },
  46436. },
  46437. [
  46438. {
  46439. name: "Normal",
  46440. height: math.unit(5, "feet"),
  46441. default: true
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46447. {
  46448. front: {
  46449. height: math.unit(6, "feet"),
  46450. name: "Front",
  46451. image: {
  46452. source: "./media/characters/kitsune-kiro/front.svg",
  46453. extra: 1270/1158,
  46454. bottom: 42/1312
  46455. }
  46456. },
  46457. frontAlt: {
  46458. height: math.unit(6, "feet"),
  46459. name: "Front-alt",
  46460. image: {
  46461. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46462. extra: 1130/1081,
  46463. bottom: 36/1166
  46464. }
  46465. },
  46466. },
  46467. [
  46468. {
  46469. name: "Smol",
  46470. height: math.unit(3, "feet")
  46471. },
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(6, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46481. {
  46482. front: {
  46483. height: math.unit(6, "feet"),
  46484. weight: math.unit(125, "lb"),
  46485. name: "Front",
  46486. image: {
  46487. source: "./media/characters/jack-thatcher/front.svg",
  46488. extra: 1474/1370,
  46489. bottom: 26/1500
  46490. }
  46491. },
  46492. back: {
  46493. height: math.unit(6, "feet"),
  46494. weight: math.unit(125, "lb"),
  46495. name: "Back",
  46496. image: {
  46497. source: "./media/characters/jack-thatcher/back.svg",
  46498. extra: 1489/1384,
  46499. bottom: 18/1507
  46500. }
  46501. },
  46502. },
  46503. [
  46504. {
  46505. name: "Normal",
  46506. height: math.unit(6, "feet"),
  46507. default: true
  46508. },
  46509. {
  46510. name: "Macro",
  46511. height: math.unit(75, "feet")
  46512. },
  46513. {
  46514. name: "Macro-er",
  46515. height: math.unit(250, "feet")
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46521. {
  46522. front: {
  46523. height: math.unit(7, "feet"),
  46524. weight: math.unit(110, "kg"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/max-hyper/front.svg",
  46528. extra: 1969/1881,
  46529. bottom: 49/2018
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(7, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(5 + 5/12, "feet"),
  46546. weight: math.unit(160, "lb"),
  46547. name: "Front",
  46548. image: {
  46549. source: "./media/characters/spook/front.svg",
  46550. extra: 794/791,
  46551. bottom: 54/848
  46552. }
  46553. },
  46554. back: {
  46555. height: math.unit(5 + 5/12, "feet"),
  46556. weight: math.unit(160, "lb"),
  46557. name: "Back",
  46558. image: {
  46559. source: "./media/characters/spook/back.svg",
  46560. extra: 812/798,
  46561. bottom: 32/844
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(5 + 5/12, "feet"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46575. {
  46576. front: {
  46577. height: math.unit(18, "feet"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/xeaduulix/front.svg",
  46581. extra: 1380/1166,
  46582. bottom: 110/1490
  46583. }
  46584. },
  46585. back: {
  46586. height: math.unit(18, "feet"),
  46587. name: "Back",
  46588. image: {
  46589. source: "./media/characters/xeaduulix/back.svg",
  46590. extra: 1592/1170,
  46591. bottom: 128/1720
  46592. }
  46593. },
  46594. frontNsfw: {
  46595. height: math.unit(18, "feet"),
  46596. name: "Front (NSFW)",
  46597. image: {
  46598. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46599. extra: 1380/1166,
  46600. bottom: 110/1490
  46601. }
  46602. },
  46603. backNsfw: {
  46604. height: math.unit(18, "feet"),
  46605. name: "Back (NSFW)",
  46606. image: {
  46607. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46608. extra: 1592/1170,
  46609. bottom: 128/1720
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Normal",
  46616. height: math.unit(18, "feet"),
  46617. default: true
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46623. {
  46624. spreadWings: {
  46625. height: math.unit(20, "feet"),
  46626. name: "Spread Wings",
  46627. image: {
  46628. source: "./media/characters/fledge/spread-wings.svg",
  46629. extra: 693/635,
  46630. bottom: 26/719
  46631. }
  46632. },
  46633. front: {
  46634. height: math.unit(20, "feet"),
  46635. name: "Front",
  46636. image: {
  46637. source: "./media/characters/fledge/front.svg",
  46638. extra: 684/637,
  46639. bottom: 18/702
  46640. }
  46641. },
  46642. frontAlt: {
  46643. height: math.unit(20, "feet"),
  46644. name: "Front (Alt)",
  46645. image: {
  46646. source: "./media/characters/fledge/front-alt.svg",
  46647. extra: 708/664,
  46648. bottom: 13/721
  46649. }
  46650. },
  46651. back: {
  46652. height: math.unit(20, "feet"),
  46653. name: "Back",
  46654. image: {
  46655. source: "./media/characters/fledge/back.svg",
  46656. extra: 718/634,
  46657. bottom: 22/740
  46658. }
  46659. },
  46660. head: {
  46661. height: math.unit(5.55, "feet"),
  46662. name: "Head",
  46663. image: {
  46664. source: "./media/characters/fledge/head.svg"
  46665. }
  46666. },
  46667. headAlt: {
  46668. height: math.unit(5.1, "feet"),
  46669. name: "Head (Alt)",
  46670. image: {
  46671. source: "./media/characters/fledge/head-alt.svg"
  46672. }
  46673. },
  46674. },
  46675. [
  46676. {
  46677. name: "Small",
  46678. height: math.unit(6 + 2/12, "feet")
  46679. },
  46680. {
  46681. name: "Big",
  46682. height: math.unit(20, "feet"),
  46683. default: true
  46684. },
  46685. {
  46686. name: "Giant",
  46687. height: math.unit(100, "feet")
  46688. },
  46689. {
  46690. name: "Macro",
  46691. height: math.unit(200, "feet")
  46692. },
  46693. ]
  46694. ))
  46695. characterMakers.push(() => makeCharacter(
  46696. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46697. {
  46698. front: {
  46699. height: math.unit(1, "meter"),
  46700. name: "Front",
  46701. image: {
  46702. source: "./media/characters/atlas-morenai/front.svg",
  46703. extra: 1275/1043,
  46704. bottom: 19/1294
  46705. }
  46706. },
  46707. back: {
  46708. height: math.unit(1, "meter"),
  46709. name: "Back",
  46710. image: {
  46711. source: "./media/characters/atlas-morenai/back.svg",
  46712. extra: 1141/1001,
  46713. bottom: 25/1166
  46714. }
  46715. },
  46716. },
  46717. [
  46718. {
  46719. name: "Normal",
  46720. height: math.unit(1, "meter"),
  46721. default: true
  46722. },
  46723. {
  46724. name: "Magic-Infused",
  46725. height: math.unit(5, "meters")
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46731. {
  46732. front: {
  46733. height: math.unit(5, "meters"),
  46734. name: "Front",
  46735. image: {
  46736. source: "./media/characters/cintia/front.svg",
  46737. extra: 1312/1228,
  46738. bottom: 38/1350
  46739. }
  46740. },
  46741. back: {
  46742. height: math.unit(5, "meters"),
  46743. name: "Back",
  46744. image: {
  46745. source: "./media/characters/cintia/back.svg",
  46746. extra: 1260/1166,
  46747. bottom: 98/1358
  46748. }
  46749. },
  46750. frontDick: {
  46751. height: math.unit(5, "meters"),
  46752. name: "Front (Dick)",
  46753. image: {
  46754. source: "./media/characters/cintia/front-dick.svg",
  46755. extra: 1312/1228,
  46756. bottom: 38/1350
  46757. }
  46758. },
  46759. backDick: {
  46760. height: math.unit(5, "meters"),
  46761. name: "Back (Dick)",
  46762. image: {
  46763. source: "./media/characters/cintia/back-dick.svg",
  46764. extra: 1260/1166,
  46765. bottom: 98/1358
  46766. }
  46767. },
  46768. bust: {
  46769. height: math.unit(1.97, "meters"),
  46770. name: "Bust",
  46771. image: {
  46772. source: "./media/characters/cintia/bust.svg",
  46773. extra: 617/565,
  46774. bottom: 0/617
  46775. }
  46776. },
  46777. },
  46778. [
  46779. {
  46780. name: "Normal",
  46781. height: math.unit(5, "meters"),
  46782. default: true
  46783. },
  46784. ]
  46785. ))
  46786. characterMakers.push(() => makeCharacter(
  46787. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46788. {
  46789. side: {
  46790. height: math.unit(100, "feet"),
  46791. name: "Side",
  46792. image: {
  46793. source: "./media/characters/denora/side.svg",
  46794. extra: 875/803,
  46795. bottom: 9/884
  46796. }
  46797. },
  46798. },
  46799. [
  46800. {
  46801. name: "Standard",
  46802. height: math.unit(100, "feet"),
  46803. default: true
  46804. },
  46805. {
  46806. name: "Grand",
  46807. height: math.unit(1000, "feet")
  46808. },
  46809. {
  46810. name: "Conquering",
  46811. height: math.unit(10000, "feet")
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46817. {
  46818. dressed: {
  46819. height: math.unit(8 + 5/12, "feet"),
  46820. weight: math.unit(700, "lb"),
  46821. name: "Dressed",
  46822. image: {
  46823. source: "./media/characters/kiva/dressed.svg",
  46824. extra: 1102/1055,
  46825. bottom: 60/1162
  46826. }
  46827. },
  46828. nude: {
  46829. height: math.unit(8 + 5/12, "feet"),
  46830. weight: math.unit(700, "lb"),
  46831. name: "Nude",
  46832. image: {
  46833. source: "./media/characters/kiva/nude.svg",
  46834. extra: 1102/1055,
  46835. bottom: 60/1162
  46836. }
  46837. },
  46838. },
  46839. [
  46840. {
  46841. name: "Base Height",
  46842. height: math.unit(8 + 5/12, "feet"),
  46843. default: true
  46844. },
  46845. {
  46846. name: "Macro",
  46847. height: math.unit(100, "feet")
  46848. },
  46849. {
  46850. name: "Max",
  46851. height: math.unit(3280, "feet")
  46852. },
  46853. ]
  46854. ))
  46855. characterMakers.push(() => makeCharacter(
  46856. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46857. {
  46858. front: {
  46859. height: math.unit(6 + 8/12, "feet"),
  46860. weight: math.unit(250, "lb"),
  46861. name: "Front",
  46862. image: {
  46863. source: "./media/characters/ztragon/front.svg",
  46864. extra: 1825/1684,
  46865. bottom: 98/1923
  46866. }
  46867. },
  46868. },
  46869. [
  46870. {
  46871. name: "Normal",
  46872. height: math.unit(6 + 8/12, "feet"),
  46873. default: true
  46874. },
  46875. {
  46876. name: "Macro",
  46877. height: math.unit(80, "feet")
  46878. },
  46879. ]
  46880. ))
  46881. characterMakers.push(() => makeCharacter(
  46882. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46883. {
  46884. front: {
  46885. height: math.unit(10.4, "feet"),
  46886. weight: math.unit(2, "tons"),
  46887. name: "Front",
  46888. image: {
  46889. source: "./media/characters/yesenia/front.svg",
  46890. extra: 1479/1474,
  46891. bottom: 233/1712
  46892. }
  46893. },
  46894. },
  46895. [
  46896. {
  46897. name: "Normal",
  46898. height: math.unit(10.4, "feet"),
  46899. default: true
  46900. },
  46901. ]
  46902. ))
  46903. characterMakers.push(() => makeCharacter(
  46904. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46905. {
  46906. normal: {
  46907. height: math.unit(6 + 1/12, "feet"),
  46908. weight: math.unit(180, "lb"),
  46909. name: "Normal",
  46910. image: {
  46911. source: "./media/characters/leanne-lycheborne/normal.svg",
  46912. extra: 1748/1660,
  46913. bottom: 98/1846
  46914. }
  46915. },
  46916. were: {
  46917. height: math.unit(12, "feet"),
  46918. weight: math.unit(1600, "lb"),
  46919. name: "Were",
  46920. image: {
  46921. source: "./media/characters/leanne-lycheborne/were.svg",
  46922. extra: 1485/1432,
  46923. bottom: 66/1551
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(6 + 1/12, "feet"),
  46931. default: true
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46937. {
  46938. side: {
  46939. height: math.unit(13, "feet"),
  46940. name: "Side",
  46941. image: {
  46942. source: "./media/characters/kira-tyler/side.svg",
  46943. extra: 693/393,
  46944. bottom: 58/751
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(13, "feet"),
  46952. default: true
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46958. {
  46959. front: {
  46960. height: math.unit(10.3, "feet"),
  46961. weight: math.unit(150, "lb"),
  46962. name: "Front",
  46963. image: {
  46964. source: "./media/characters/blaze/front.svg",
  46965. extra: 1378/1286,
  46966. bottom: 172/1550
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Normal",
  46973. height: math.unit(10.3, "feet"),
  46974. default: true
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46980. {
  46981. side: {
  46982. height: math.unit(2, "meters"),
  46983. weight: math.unit(400, "kg"),
  46984. name: "Side",
  46985. image: {
  46986. source: "./media/characters/anu/side.svg",
  46987. extra: 506/394,
  46988. bottom: 18/524
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Humanoid",
  46995. height: math.unit(2, "meters")
  46996. },
  46997. {
  46998. name: "Normal",
  46999. height: math.unit(5, "meters"),
  47000. default: true
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(5 + 5/12, "feet"),
  47009. weight: math.unit(170, "lb"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/synx-the-lynx/front.svg",
  47013. extra: 1893/1745,
  47014. bottom: 17/1910
  47015. }
  47016. },
  47017. side: {
  47018. height: math.unit(5 + 5/12, "feet"),
  47019. weight: math.unit(170, "lb"),
  47020. name: "Side",
  47021. image: {
  47022. source: "./media/characters/synx-the-lynx/side.svg",
  47023. extra: 1884/1740,
  47024. bottom: 39/1923
  47025. }
  47026. },
  47027. back: {
  47028. height: math.unit(5 + 5/12, "feet"),
  47029. weight: math.unit(170, "lb"),
  47030. name: "Back",
  47031. image: {
  47032. source: "./media/characters/synx-the-lynx/back.svg",
  47033. extra: 1903/1755,
  47034. bottom: 14/1917
  47035. }
  47036. },
  47037. },
  47038. [
  47039. {
  47040. name: "Normal",
  47041. height: math.unit(5 + 5/12, "feet"),
  47042. default: true
  47043. },
  47044. ]
  47045. ))
  47046. characterMakers.push(() => makeCharacter(
  47047. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47048. {
  47049. back: {
  47050. height: math.unit(15, "feet"),
  47051. name: "Back",
  47052. image: {
  47053. source: "./media/characters/nadezda-fex/back.svg",
  47054. extra: 1695/1481,
  47055. bottom: 25/1720
  47056. }
  47057. },
  47058. },
  47059. [
  47060. {
  47061. name: "Normal",
  47062. height: math.unit(15, "feet"),
  47063. default: true
  47064. },
  47065. {
  47066. name: "Macro",
  47067. height: math.unit(2.5, "miles")
  47068. },
  47069. {
  47070. name: "Goddess",
  47071. height: math.unit(2, "multiverses")
  47072. },
  47073. ]
  47074. ))
  47075. characterMakers.push(() => makeCharacter(
  47076. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47077. {
  47078. front: {
  47079. height: math.unit(216, "cm"),
  47080. name: "Front",
  47081. image: {
  47082. source: "./media/characters/lev/front.svg",
  47083. extra: 1728/1670,
  47084. bottom: 82/1810
  47085. }
  47086. },
  47087. back: {
  47088. height: math.unit(216, "cm"),
  47089. name: "Back",
  47090. image: {
  47091. source: "./media/characters/lev/back.svg",
  47092. extra: 1738/1675,
  47093. bottom: 24/1762
  47094. }
  47095. },
  47096. dressed: {
  47097. height: math.unit(216, "cm"),
  47098. name: "Dressed",
  47099. image: {
  47100. source: "./media/characters/lev/dressed.svg",
  47101. extra: 1397/1351,
  47102. bottom: 73/1470
  47103. }
  47104. },
  47105. head: {
  47106. height: math.unit(0.51, "meter"),
  47107. name: "Head",
  47108. image: {
  47109. source: "./media/characters/lev/head.svg"
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Normal",
  47116. height: math.unit(216, "cm"),
  47117. default: true
  47118. },
  47119. {
  47120. name: "Relatively Macro",
  47121. height: math.unit(80, "meters")
  47122. },
  47123. {
  47124. name: "Megamacro",
  47125. height: math.unit(21600, "meters")
  47126. },
  47127. {
  47128. name: "Megamacro+",
  47129. height: math.unit(64800, "meters")
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47135. {
  47136. front: {
  47137. height: math.unit(2, "meters"),
  47138. weight: math.unit(80, "kg"),
  47139. name: "Front",
  47140. image: {
  47141. source: "./media/characters/moka/front.svg",
  47142. extra: 1337/1255,
  47143. bottom: 58/1395
  47144. }
  47145. },
  47146. },
  47147. [
  47148. {
  47149. name: "Micro",
  47150. height: math.unit(15, "cm")
  47151. },
  47152. {
  47153. name: "Normal",
  47154. height: math.unit(2, "meters"),
  47155. default: true
  47156. },
  47157. {
  47158. name: "Macro",
  47159. height: math.unit(20, "meters"),
  47160. },
  47161. ]
  47162. ))
  47163. characterMakers.push(() => makeCharacter(
  47164. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47165. {
  47166. front: {
  47167. height: math.unit(9, "feet"),
  47168. weight: math.unit(240, "lb"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/kuzco/front.svg",
  47172. extra: 1593/1487,
  47173. bottom: 32/1625
  47174. }
  47175. },
  47176. side: {
  47177. height: math.unit(9, "feet"),
  47178. weight: math.unit(240, "lb"),
  47179. name: "Side",
  47180. image: {
  47181. source: "./media/characters/kuzco/side.svg",
  47182. extra: 1575/1485,
  47183. bottom: 30/1605
  47184. }
  47185. },
  47186. back: {
  47187. height: math.unit(9, "feet"),
  47188. weight: math.unit(240, "lb"),
  47189. name: "Back",
  47190. image: {
  47191. source: "./media/characters/kuzco/back.svg",
  47192. extra: 1603/1514,
  47193. bottom: 14/1617
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(9, "feet"),
  47201. default: true
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47207. {
  47208. side: {
  47209. height: math.unit(2, "meters"),
  47210. weight: math.unit(300, "kg"),
  47211. name: "Side",
  47212. image: {
  47213. source: "./media/characters/ceruleus/side.svg",
  47214. extra: 1068/974,
  47215. bottom: 126/1194
  47216. }
  47217. },
  47218. maw: {
  47219. height: math.unit(0.8125, "meter"),
  47220. name: "Maw",
  47221. image: {
  47222. source: "./media/characters/ceruleus/maw.svg"
  47223. }
  47224. },
  47225. },
  47226. [
  47227. {
  47228. name: "Normal",
  47229. height: math.unit(16, "meters"),
  47230. default: true
  47231. },
  47232. ]
  47233. ))
  47234. characterMakers.push(() => makeCharacter(
  47235. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47236. {
  47237. front: {
  47238. height: math.unit(9, "feet"),
  47239. weight: math.unit(500, "kg"),
  47240. name: "Front",
  47241. image: {
  47242. source: "./media/characters/acouya/front.svg",
  47243. extra: 1660/1473,
  47244. bottom: 28/1688
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Normal",
  47251. height: math.unit(9, "feet"),
  47252. default: true
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(5 + 6/12, "feet"),
  47261. weight: math.unit(195, "lb"),
  47262. name: "Front",
  47263. image: {
  47264. source: "./media/characters/vant/front.svg",
  47265. extra: 1396/1320,
  47266. bottom: 20/1416
  47267. }
  47268. },
  47269. back: {
  47270. height: math.unit(5 + 6/12, "feet"),
  47271. weight: math.unit(195, "lb"),
  47272. name: "Back",
  47273. image: {
  47274. source: "./media/characters/vant/back.svg",
  47275. extra: 1396/1320,
  47276. bottom: 20/1416
  47277. }
  47278. },
  47279. maw: {
  47280. height: math.unit(0.75, "feet"),
  47281. name: "Maw",
  47282. image: {
  47283. source: "./media/characters/vant/maw.svg"
  47284. }
  47285. },
  47286. paw: {
  47287. height: math.unit(1.07, "feet"),
  47288. name: "Paw",
  47289. image: {
  47290. source: "./media/characters/vant/paw.svg"
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Micro",
  47297. height: math.unit(0.25, "inches")
  47298. },
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(5 + 6/12, "feet"),
  47302. default: true
  47303. },
  47304. {
  47305. name: "Macro",
  47306. height: math.unit(75, "feet")
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47312. {
  47313. front: {
  47314. height: math.unit(30, "meters"),
  47315. weight: math.unit(363, "tons"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/ahra/front.svg",
  47319. extra: 1914/1814,
  47320. bottom: 46/1960
  47321. }
  47322. },
  47323. },
  47324. [
  47325. {
  47326. name: "Macro",
  47327. height: math.unit(30, "meters"),
  47328. default: true
  47329. },
  47330. ]
  47331. ))
  47332. characterMakers.push(() => makeCharacter(
  47333. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47334. {
  47335. undressed: {
  47336. height: math.unit(2, "m"),
  47337. weight: math.unit(250, "kg"),
  47338. name: "Undressed",
  47339. image: {
  47340. source: "./media/characters/coriander/undressed.svg",
  47341. extra: 1757/1606,
  47342. bottom: 107/1864
  47343. }
  47344. },
  47345. dressed: {
  47346. height: math.unit(2, "m"),
  47347. weight: math.unit(250, "kg"),
  47348. name: "Dressed",
  47349. image: {
  47350. source: "./media/characters/coriander/dressed.svg",
  47351. extra: 1757/1606,
  47352. bottom: 107/1864
  47353. }
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(4, "meters"),
  47360. default: true
  47361. },
  47362. {
  47363. name: "XL",
  47364. height: math.unit(6, "meters")
  47365. },
  47366. {
  47367. name: "XXL",
  47368. height: math.unit(8, "meters")
  47369. },
  47370. ]
  47371. ))
  47372. characterMakers.push(() => makeCharacter(
  47373. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47374. {
  47375. front: {
  47376. height: math.unit(6, "feet"),
  47377. name: "Front",
  47378. image: {
  47379. source: "./media/characters/syrinx/front.svg",
  47380. extra: 1557/1259,
  47381. bottom: 171/1728
  47382. }
  47383. },
  47384. },
  47385. [
  47386. {
  47387. name: "Normal",
  47388. height: math.unit(6 + 3/12, "feet"),
  47389. default: true
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47395. {
  47396. front: {
  47397. height: math.unit(11 + 6/12, "feet"),
  47398. weight: math.unit(1.5, "tons"),
  47399. name: "Front",
  47400. image: {
  47401. source: "./media/characters/bor/front.svg",
  47402. extra: 1189/1109,
  47403. bottom: 170/1359
  47404. }
  47405. },
  47406. },
  47407. [
  47408. {
  47409. name: "Normal",
  47410. height: math.unit(11 + 6/12, "feet"),
  47411. default: true
  47412. },
  47413. {
  47414. name: "Macro",
  47415. height: math.unit(32 + 9/12, "feet")
  47416. },
  47417. ]
  47418. ))
  47419. characterMakers.push(() => makeCharacter(
  47420. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47421. {
  47422. anthro: {
  47423. height: math.unit(9, "feet"),
  47424. weight: math.unit(2076, "lb"),
  47425. name: "Anthro",
  47426. image: {
  47427. source: "./media/characters/abacus/anthro.svg",
  47428. extra: 1540/1494,
  47429. bottom: 233/1773
  47430. }
  47431. },
  47432. pigeon: {
  47433. height: math.unit(1, "feet"),
  47434. name: "Pigeon",
  47435. image: {
  47436. source: "./media/characters/abacus/pigeon.svg",
  47437. extra: 528/525,
  47438. bottom: 46/574
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(9, "feet"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47452. {
  47453. side: {
  47454. height: math.unit(6, "feet"),
  47455. name: "Side",
  47456. image: {
  47457. source: "./media/characters/delkhan/side.svg",
  47458. extra: 1884/1786,
  47459. bottom: 308/2192
  47460. }
  47461. },
  47462. head: {
  47463. height: math.unit(3.38, "feet"),
  47464. name: "Head",
  47465. image: {
  47466. source: "./media/characters/delkhan/head.svg"
  47467. }
  47468. },
  47469. },
  47470. [
  47471. {
  47472. name: "Normal",
  47473. height: math.unit(72, "feet"),
  47474. default: true
  47475. },
  47476. {
  47477. name: "Giant",
  47478. height: math.unit(172, "feet")
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47484. {
  47485. standing: {
  47486. height: math.unit(6, "feet"),
  47487. name: "Standing",
  47488. image: {
  47489. source: "./media/characters/euchidat/standing.svg",
  47490. extra: 1612/1553,
  47491. bottom: 116/1728
  47492. }
  47493. },
  47494. leaning: {
  47495. height: math.unit(6, "feet"),
  47496. name: "Leaning",
  47497. image: {
  47498. source: "./media/characters/euchidat/leaning.svg",
  47499. extra: 1719/1674,
  47500. bottom: 27/1746
  47501. }
  47502. },
  47503. },
  47504. [
  47505. {
  47506. name: "Normal",
  47507. height: math.unit(175, "feet"),
  47508. default: true
  47509. },
  47510. {
  47511. name: "Megamacro",
  47512. height: math.unit(190, "miles")
  47513. },
  47514. {
  47515. name: "Gigamacro",
  47516. height: math.unit(190000, "miles")
  47517. },
  47518. ]
  47519. ))
  47520. characterMakers.push(() => makeCharacter(
  47521. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47522. {
  47523. front: {
  47524. height: math.unit(6, "feet"),
  47525. weight: math.unit(150, "lb"),
  47526. name: "Front",
  47527. image: {
  47528. source: "./media/characters/rebecca-stack/front.svg",
  47529. extra: 1256/1201,
  47530. bottom: 18/1274
  47531. }
  47532. },
  47533. },
  47534. [
  47535. {
  47536. name: "Normal",
  47537. height: math.unit(5 + 8/12, "feet"),
  47538. default: true
  47539. },
  47540. {
  47541. name: "Demolitionist",
  47542. height: math.unit(200, "feet")
  47543. },
  47544. {
  47545. name: "Out of Control",
  47546. height: math.unit(2, "miles")
  47547. },
  47548. {
  47549. name: "Giga",
  47550. height: math.unit(7200, "miles")
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(6, "feet"),
  47559. weight: math.unit(150, "lb"),
  47560. name: "Front",
  47561. image: {
  47562. source: "./media/characters/jenny-cartwright/front.svg",
  47563. extra: 1384/1376,
  47564. bottom: 58/1442
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(6 + 7/12, "feet"),
  47572. default: true
  47573. },
  47574. {
  47575. name: "Librarian",
  47576. height: math.unit(55, "feet")
  47577. },
  47578. {
  47579. name: "Sightseer",
  47580. height: math.unit(50, "miles")
  47581. },
  47582. {
  47583. name: "Giga",
  47584. height: math.unit(30000, "miles")
  47585. },
  47586. ]
  47587. ))
  47588. characterMakers.push(() => makeCharacter(
  47589. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47590. {
  47591. nude: {
  47592. height: math.unit(8, "feet"),
  47593. weight: math.unit(225, "lb"),
  47594. name: "Nude",
  47595. image: {
  47596. source: "./media/characters/marvy/nude.svg",
  47597. extra: 1900/1683,
  47598. bottom: 89/1989
  47599. }
  47600. },
  47601. dressed: {
  47602. height: math.unit(8, "feet"),
  47603. weight: math.unit(225, "lb"),
  47604. name: "Dressed",
  47605. image: {
  47606. source: "./media/characters/marvy/dressed.svg",
  47607. extra: 1900/1683,
  47608. bottom: 89/1989
  47609. }
  47610. },
  47611. head: {
  47612. height: math.unit(2.85, "feet"),
  47613. name: "Head",
  47614. image: {
  47615. source: "./media/characters/marvy/head.svg"
  47616. }
  47617. },
  47618. },
  47619. [
  47620. {
  47621. name: "Normal",
  47622. height: math.unit(8, "feet"),
  47623. default: true
  47624. },
  47625. ]
  47626. ))
  47627. characterMakers.push(() => makeCharacter(
  47628. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47629. {
  47630. front: {
  47631. height: math.unit(8, "feet"),
  47632. weight: math.unit(250, "lb"),
  47633. name: "Front",
  47634. image: {
  47635. source: "./media/characters/leah/front.svg",
  47636. extra: 1257/1149,
  47637. bottom: 109/1366
  47638. }
  47639. },
  47640. },
  47641. [
  47642. {
  47643. name: "Normal",
  47644. height: math.unit(8, "feet"),
  47645. default: true
  47646. },
  47647. {
  47648. name: "Minimacro",
  47649. height: math.unit(40, "feet")
  47650. },
  47651. {
  47652. name: "Macro",
  47653. height: math.unit(124, "feet")
  47654. },
  47655. {
  47656. name: "Megamacro",
  47657. height: math.unit(850, "feet")
  47658. },
  47659. ]
  47660. ))
  47661. characterMakers.push(() => makeCharacter(
  47662. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47663. {
  47664. side: {
  47665. height: math.unit(13 + 6/12, "feet"),
  47666. weight: math.unit(3200, "lb"),
  47667. name: "Side",
  47668. image: {
  47669. source: "./media/characters/alvir/side.svg",
  47670. extra: 896/589,
  47671. bottom: 26/922
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Normal",
  47678. height: math.unit(13 + 6/12, "feet"),
  47679. default: true
  47680. },
  47681. ]
  47682. ))
  47683. characterMakers.push(() => makeCharacter(
  47684. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47685. {
  47686. front: {
  47687. height: math.unit(5 + 4/12, "feet"),
  47688. weight: math.unit(236, "lb"),
  47689. name: "Front",
  47690. image: {
  47691. source: "./media/characters/zaina-khalil/front.svg",
  47692. extra: 1533/1485,
  47693. bottom: 94/1627
  47694. }
  47695. },
  47696. side: {
  47697. height: math.unit(5 + 4/12, "feet"),
  47698. weight: math.unit(236, "lb"),
  47699. name: "Side",
  47700. image: {
  47701. source: "./media/characters/zaina-khalil/side.svg",
  47702. extra: 1537/1498,
  47703. bottom: 66/1603
  47704. }
  47705. },
  47706. back: {
  47707. height: math.unit(5 + 4/12, "feet"),
  47708. weight: math.unit(236, "lb"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/zaina-khalil/back.svg",
  47712. extra: 1546/1494,
  47713. bottom: 89/1635
  47714. }
  47715. },
  47716. },
  47717. [
  47718. {
  47719. name: "Normal",
  47720. height: math.unit(5 + 4/12, "feet"),
  47721. default: true
  47722. },
  47723. ]
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47727. {
  47728. side: {
  47729. height: math.unit(12, "feet"),
  47730. weight: math.unit(4000, "lb"),
  47731. name: "Side",
  47732. image: {
  47733. source: "./media/characters/terry/side.svg",
  47734. extra: 1518/1439,
  47735. bottom: 149/1667
  47736. }
  47737. },
  47738. },
  47739. [
  47740. {
  47741. name: "Normal",
  47742. height: math.unit(12, "feet"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(12, "feet"),
  47752. weight: math.unit(1500, "lb"),
  47753. name: "Front",
  47754. image: {
  47755. source: "./media/characters/kahea/front.svg",
  47756. extra: 1722/1617,
  47757. bottom: 179/1901
  47758. }
  47759. },
  47760. },
  47761. [
  47762. {
  47763. name: "Normal",
  47764. height: math.unit(12, "feet"),
  47765. default: true
  47766. },
  47767. ]
  47768. ))
  47769. characterMakers.push(() => makeCharacter(
  47770. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47771. {
  47772. demonFront: {
  47773. height: math.unit(36, "feet"),
  47774. name: "Front",
  47775. image: {
  47776. source: "./media/characters/alex-xuria/demon-front.svg",
  47777. extra: 1705/1673,
  47778. bottom: 198/1903
  47779. },
  47780. form: "demon",
  47781. default: true
  47782. },
  47783. demonBack: {
  47784. height: math.unit(36, "feet"),
  47785. name: "Back",
  47786. image: {
  47787. source: "./media/characters/alex-xuria/demon-back.svg",
  47788. extra: 1725/1693,
  47789. bottom: 70/1795
  47790. },
  47791. form: "demon"
  47792. },
  47793. demonHead: {
  47794. height: math.unit(2.14, "meters"),
  47795. name: "Head",
  47796. image: {
  47797. source: "./media/characters/alex-xuria/demon-head.svg"
  47798. },
  47799. form: "demon"
  47800. },
  47801. demonHand: {
  47802. height: math.unit(1.61, "meters"),
  47803. name: "Hand",
  47804. image: {
  47805. source: "./media/characters/alex-xuria/demon-hand.svg"
  47806. },
  47807. form: "demon"
  47808. },
  47809. demonPaw: {
  47810. height: math.unit(1.35, "meters"),
  47811. name: "Paw",
  47812. image: {
  47813. source: "./media/characters/alex-xuria/demon-paw.svg"
  47814. },
  47815. form: "demon"
  47816. },
  47817. demonFoot: {
  47818. height: math.unit(2.2, "meters"),
  47819. name: "Foot",
  47820. image: {
  47821. source: "./media/characters/alex-xuria/demon-foot.svg"
  47822. },
  47823. form: "demon"
  47824. },
  47825. demonCock: {
  47826. height: math.unit(1.74, "meters"),
  47827. name: "Cock",
  47828. image: {
  47829. source: "./media/characters/alex-xuria/demon-cock.svg"
  47830. },
  47831. form: "demon"
  47832. },
  47833. demonTailClosed: {
  47834. height: math.unit(1.47, "meters"),
  47835. name: "Tail (Closed)",
  47836. image: {
  47837. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47838. },
  47839. form: "demon"
  47840. },
  47841. demonTailOpen: {
  47842. height: math.unit(2.85, "meters"),
  47843. name: "Tail (Open)",
  47844. image: {
  47845. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47846. },
  47847. form: "demon"
  47848. },
  47849. incubusFront: {
  47850. height: math.unit(12, "feet"),
  47851. name: "Front",
  47852. image: {
  47853. source: "./media/characters/alex-xuria/incubus-front.svg",
  47854. extra: 1754/1677,
  47855. bottom: 125/1879
  47856. },
  47857. form: "incubus",
  47858. default: true
  47859. },
  47860. incubusBack: {
  47861. height: math.unit(12, "feet"),
  47862. name: "Back",
  47863. image: {
  47864. source: "./media/characters/alex-xuria/incubus-back.svg",
  47865. extra: 1702/1647,
  47866. bottom: 30/1732
  47867. },
  47868. form: "incubus"
  47869. },
  47870. incubusHead: {
  47871. height: math.unit(3.45, "feet"),
  47872. name: "Head",
  47873. image: {
  47874. source: "./media/characters/alex-xuria/incubus-head.svg"
  47875. },
  47876. form: "incubus"
  47877. },
  47878. rabbitFront: {
  47879. height: math.unit(6, "feet"),
  47880. name: "Front",
  47881. image: {
  47882. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47883. extra: 1369/1349,
  47884. bottom: 45/1414
  47885. },
  47886. form: "rabbit",
  47887. default: true
  47888. },
  47889. rabbitSide: {
  47890. height: math.unit(6, "feet"),
  47891. name: "Side",
  47892. image: {
  47893. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47894. extra: 1370/1356,
  47895. bottom: 37/1407
  47896. },
  47897. form: "rabbit"
  47898. },
  47899. rabbitBack: {
  47900. height: math.unit(6, "feet"),
  47901. name: "Back",
  47902. image: {
  47903. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47904. extra: 1375/1358,
  47905. bottom: 43/1418
  47906. },
  47907. form: "rabbit"
  47908. },
  47909. },
  47910. [
  47911. {
  47912. name: "Normal",
  47913. height: math.unit(6, "feet"),
  47914. default: true,
  47915. form: "rabbit"
  47916. },
  47917. {
  47918. name: "Incubus",
  47919. height: math.unit(12, "feet"),
  47920. default: true,
  47921. form: "incubus"
  47922. },
  47923. {
  47924. name: "Demon",
  47925. height: math.unit(36, "feet"),
  47926. default: true,
  47927. form: "demon"
  47928. }
  47929. ],
  47930. {
  47931. "demon": {
  47932. name: "Demon",
  47933. default: true
  47934. },
  47935. "incubus": {
  47936. name: "Incubus",
  47937. },
  47938. "rabbit": {
  47939. name: "Rabbit"
  47940. }
  47941. }
  47942. ))
  47943. characterMakers.push(() => makeCharacter(
  47944. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47945. {
  47946. front: {
  47947. height: math.unit(7 + 5/12, "feet"),
  47948. weight: math.unit(510, "lb"),
  47949. name: "Front",
  47950. image: {
  47951. source: "./media/characters/syrup/front.svg",
  47952. extra: 932/916,
  47953. bottom: 26/958
  47954. }
  47955. },
  47956. },
  47957. [
  47958. {
  47959. name: "Normal",
  47960. height: math.unit(7 + 5/12, "feet"),
  47961. default: true
  47962. },
  47963. {
  47964. name: "Big",
  47965. height: math.unit(50, "feet")
  47966. },
  47967. {
  47968. name: "Macro",
  47969. height: math.unit(300, "feet")
  47970. },
  47971. {
  47972. name: "Megamacro",
  47973. height: math.unit(1, "mile")
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47979. {
  47980. front: {
  47981. height: math.unit(6 + 9/12, "feet"),
  47982. name: "Front",
  47983. image: {
  47984. source: "./media/characters/zeimne/front.svg",
  47985. extra: 1969/1806,
  47986. bottom: 53/2022
  47987. }
  47988. },
  47989. },
  47990. [
  47991. {
  47992. name: "Normal",
  47993. height: math.unit(6 + 9/12, "feet"),
  47994. default: true
  47995. },
  47996. {
  47997. name: "Giant",
  47998. height: math.unit(550, "feet")
  47999. },
  48000. {
  48001. name: "Mega",
  48002. height: math.unit(3, "miles")
  48003. },
  48004. {
  48005. name: "Giga",
  48006. height: math.unit(250, "miles")
  48007. },
  48008. {
  48009. name: "Tera",
  48010. height: math.unit(1, "AU")
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(5 + 2/12, "feet"),
  48019. name: "Front",
  48020. image: {
  48021. source: "./media/characters/grar/front.svg",
  48022. extra: 1331/1119,
  48023. bottom: 60/1391
  48024. }
  48025. },
  48026. back: {
  48027. height: math.unit(5 + 2/12, "feet"),
  48028. name: "Back",
  48029. image: {
  48030. source: "./media/characters/grar/back.svg",
  48031. extra: 1385/1169,
  48032. bottom: 23/1408
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(5 + 2/12, "feet"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48046. {
  48047. front: {
  48048. height: math.unit(13 + 7/12, "feet"),
  48049. weight: math.unit(2200, "lb"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/endraya/front.svg",
  48053. extra: 1289/1215,
  48054. bottom: 50/1339
  48055. }
  48056. },
  48057. nude: {
  48058. height: math.unit(13 + 7/12, "feet"),
  48059. weight: math.unit(2200, "lb"),
  48060. name: "Nude",
  48061. image: {
  48062. source: "./media/characters/endraya/nude.svg",
  48063. extra: 1247/1171,
  48064. bottom: 40/1287
  48065. }
  48066. },
  48067. head: {
  48068. height: math.unit(2.6, "feet"),
  48069. name: "Head",
  48070. image: {
  48071. source: "./media/characters/endraya/head.svg"
  48072. }
  48073. },
  48074. slit: {
  48075. height: math.unit(3.4, "feet"),
  48076. name: "Slit",
  48077. image: {
  48078. source: "./media/characters/endraya/slit.svg"
  48079. }
  48080. },
  48081. },
  48082. [
  48083. {
  48084. name: "Normal",
  48085. height: math.unit(13 + 7/12, "feet"),
  48086. default: true
  48087. },
  48088. {
  48089. name: "Macro",
  48090. height: math.unit(200, "feet")
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48096. {
  48097. front: {
  48098. height: math.unit(1.81, "meters"),
  48099. weight: math.unit(69, "kg"),
  48100. name: "Front",
  48101. image: {
  48102. source: "./media/characters/rodryana/front.svg",
  48103. extra: 2002/1921,
  48104. bottom: 53/2055
  48105. }
  48106. },
  48107. back: {
  48108. height: math.unit(1.81, "meters"),
  48109. weight: math.unit(69, "kg"),
  48110. name: "Back",
  48111. image: {
  48112. source: "./media/characters/rodryana/back.svg",
  48113. extra: 1993/1926,
  48114. bottom: 48/2041
  48115. }
  48116. },
  48117. maw: {
  48118. height: math.unit(0.19769417475, "meters"),
  48119. name: "Maw",
  48120. image: {
  48121. source: "./media/characters/rodryana/maw.svg"
  48122. }
  48123. },
  48124. slit: {
  48125. height: math.unit(0.31631067961, "meters"),
  48126. name: "Slit",
  48127. image: {
  48128. source: "./media/characters/rodryana/slit.svg"
  48129. }
  48130. },
  48131. },
  48132. [
  48133. {
  48134. name: "Normal",
  48135. height: math.unit(1.81, "meters")
  48136. },
  48137. {
  48138. name: "Mini Macro",
  48139. height: math.unit(181, "meters")
  48140. },
  48141. {
  48142. name: "Macro",
  48143. height: math.unit(452, "meters"),
  48144. default: true
  48145. },
  48146. {
  48147. name: "Mega Macro",
  48148. height: math.unit(1.375, "km")
  48149. },
  48150. {
  48151. name: "Giga Macro",
  48152. height: math.unit(13.575, "km")
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(6, "feet"),
  48161. weight: math.unit(1000, "lb"),
  48162. name: "Front",
  48163. image: {
  48164. source: "./media/characters/asaya/front.svg",
  48165. extra: 1460/1200,
  48166. bottom: 71/1531
  48167. }
  48168. },
  48169. },
  48170. [
  48171. {
  48172. name: "Normal",
  48173. height: math.unit(8, "km"),
  48174. default: true
  48175. },
  48176. ]
  48177. ))
  48178. characterMakers.push(() => makeCharacter(
  48179. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48180. {
  48181. front: {
  48182. height: math.unit(3.5, "meters"),
  48183. name: "Front",
  48184. image: {
  48185. source: "./media/characters/sarzu-and-israz/front.svg",
  48186. extra: 1570/1558,
  48187. bottom: 150/1720
  48188. },
  48189. },
  48190. back: {
  48191. height: math.unit(3.5, "meters"),
  48192. name: "Back",
  48193. image: {
  48194. source: "./media/characters/sarzu-and-israz/back.svg",
  48195. extra: 1523/1509,
  48196. bottom: 132/1655
  48197. },
  48198. },
  48199. frontFemale: {
  48200. height: math.unit(3.5, "meters"),
  48201. name: "Front (Female)",
  48202. image: {
  48203. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48204. extra: 1570/1558,
  48205. bottom: 150/1720
  48206. },
  48207. },
  48208. frontHerm: {
  48209. height: math.unit(3.5, "meters"),
  48210. name: "Front (Herm)",
  48211. image: {
  48212. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48213. extra: 1570/1558,
  48214. bottom: 150/1720
  48215. },
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Normal",
  48221. height: math.unit(3.5, "meters"),
  48222. default: true,
  48223. },
  48224. {
  48225. name: "Macro",
  48226. height: math.unit(65.5, "meters"),
  48227. },
  48228. ],
  48229. ))
  48230. characterMakers.push(() => makeCharacter(
  48231. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48232. {
  48233. front: {
  48234. height: math.unit(6, "feet"),
  48235. weight: math.unit(250, "lb"),
  48236. name: "Front",
  48237. image: {
  48238. source: "./media/characters/zenimma/front.svg",
  48239. extra: 1346/1320,
  48240. bottom: 58/1404
  48241. }
  48242. },
  48243. back: {
  48244. height: math.unit(6, "feet"),
  48245. weight: math.unit(250, "lb"),
  48246. name: "Back",
  48247. image: {
  48248. source: "./media/characters/zenimma/back.svg",
  48249. extra: 1324/1308,
  48250. bottom: 44/1368
  48251. }
  48252. },
  48253. dick: {
  48254. height: math.unit(1.44, "feet"),
  48255. name: "Dick",
  48256. image: {
  48257. source: "./media/characters/zenimma/dick.svg"
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Canon Height",
  48264. height: math.unit(66, "miles"),
  48265. default: true
  48266. },
  48267. ]
  48268. ))
  48269. characterMakers.push(() => makeCharacter(
  48270. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48271. {
  48272. nude: {
  48273. height: math.unit(6, "feet"),
  48274. weight: math.unit(150, "lb"),
  48275. name: "Nude",
  48276. image: {
  48277. source: "./media/characters/shavon/nude.svg",
  48278. extra: 1242/1096,
  48279. bottom: 98/1340
  48280. }
  48281. },
  48282. dressed: {
  48283. height: math.unit(6, "feet"),
  48284. weight: math.unit(150, "lb"),
  48285. name: "Dressed",
  48286. image: {
  48287. source: "./media/characters/shavon/dressed.svg",
  48288. extra: 1242/1096,
  48289. bottom: 98/1340
  48290. }
  48291. },
  48292. },
  48293. [
  48294. {
  48295. name: "Macro",
  48296. height: math.unit(255, "feet"),
  48297. default: true
  48298. },
  48299. ]
  48300. ))
  48301. characterMakers.push(() => makeCharacter(
  48302. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48303. {
  48304. front: {
  48305. height: math.unit(6, "feet"),
  48306. name: "Front",
  48307. image: {
  48308. source: "./media/characters/steph/front.svg",
  48309. extra: 1430/1330,
  48310. bottom: 54/1484
  48311. }
  48312. },
  48313. },
  48314. [
  48315. {
  48316. name: "Normal",
  48317. height: math.unit(6, "feet"),
  48318. default: true
  48319. },
  48320. ]
  48321. ))
  48322. characterMakers.push(() => makeCharacter(
  48323. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48324. {
  48325. front: {
  48326. height: math.unit(9, "feet"),
  48327. weight: math.unit(400, "lb"),
  48328. name: "Front",
  48329. image: {
  48330. source: "./media/characters/kil'aman/front.svg",
  48331. extra: 1210/1159,
  48332. bottom: 109/1319
  48333. }
  48334. },
  48335. head: {
  48336. height: math.unit(2.14, "feet"),
  48337. name: "Head",
  48338. image: {
  48339. source: "./media/characters/kil'aman/head.svg"
  48340. }
  48341. },
  48342. maw: {
  48343. height: math.unit(1.21, "feet"),
  48344. name: "Maw",
  48345. image: {
  48346. source: "./media/characters/kil'aman/maw.svg"
  48347. }
  48348. },
  48349. foot: {
  48350. height: math.unit(1.7, "feet"),
  48351. name: "Foot",
  48352. image: {
  48353. source: "./media/characters/kil'aman/foot.svg"
  48354. }
  48355. },
  48356. dick: {
  48357. height: math.unit(2.1, "feet"),
  48358. name: "Dick",
  48359. image: {
  48360. source: "./media/characters/kil'aman/dick.svg"
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(9, "feet")
  48368. },
  48369. {
  48370. name: "Canon Height",
  48371. height: math.unit(10, "miles"),
  48372. default: true
  48373. },
  48374. {
  48375. name: "Maximum",
  48376. height: math.unit(6e9, "miles")
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48382. {
  48383. front: {
  48384. height: math.unit(90, "feet"),
  48385. weight: math.unit(675000, "lb"),
  48386. name: "Front",
  48387. image: {
  48388. source: "./media/characters/qadan/front.svg",
  48389. extra: 1012/1004,
  48390. bottom: 78/1090
  48391. }
  48392. },
  48393. back: {
  48394. height: math.unit(90, "feet"),
  48395. weight: math.unit(675000, "lb"),
  48396. name: "Back",
  48397. image: {
  48398. source: "./media/characters/qadan/back.svg",
  48399. extra: 1042/1031,
  48400. bottom: 55/1097
  48401. }
  48402. },
  48403. armored: {
  48404. height: math.unit(90, "feet"),
  48405. weight: math.unit(675000, "lb"),
  48406. name: "Armored",
  48407. image: {
  48408. source: "./media/characters/qadan/armored.svg",
  48409. extra: 1047/1037,
  48410. bottom: 48/1095
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(90, "feet"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48424. {
  48425. front: {
  48426. height: math.unit(6, "feet"),
  48427. weight: math.unit(225, "lb"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/brooke/front.svg",
  48431. extra: 1050/1010,
  48432. bottom: 66/1116
  48433. }
  48434. },
  48435. back: {
  48436. height: math.unit(6, "feet"),
  48437. weight: math.unit(225, "lb"),
  48438. name: "Back",
  48439. image: {
  48440. source: "./media/characters/brooke/back.svg",
  48441. extra: 1053/1013,
  48442. bottom: 41/1094
  48443. }
  48444. },
  48445. dressed: {
  48446. height: math.unit(6, "feet"),
  48447. weight: math.unit(225, "lb"),
  48448. name: "Dressed",
  48449. image: {
  48450. source: "./media/characters/brooke/dressed.svg",
  48451. extra: 1050/1010,
  48452. bottom: 66/1116
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Canon Height",
  48459. height: math.unit(500, "miles"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48466. {
  48467. front: {
  48468. height: math.unit(6 + 2/12, "feet"),
  48469. weight: math.unit(210, "lb"),
  48470. name: "Front",
  48471. image: {
  48472. source: "./media/characters/wubs/front.svg",
  48473. extra: 1345/1325,
  48474. bottom: 70/1415
  48475. }
  48476. },
  48477. back: {
  48478. height: math.unit(6 + 2/12, "feet"),
  48479. weight: math.unit(210, "lb"),
  48480. name: "Back",
  48481. image: {
  48482. source: "./media/characters/wubs/back.svg",
  48483. extra: 1296/1275,
  48484. bottom: 58/1354
  48485. }
  48486. },
  48487. },
  48488. [
  48489. {
  48490. name: "Normal",
  48491. height: math.unit(6 + 2/12, "feet"),
  48492. default: true
  48493. },
  48494. {
  48495. name: "Macro",
  48496. height: math.unit(1000, "feet")
  48497. },
  48498. {
  48499. name: "Megamacro",
  48500. height: math.unit(1, "mile")
  48501. },
  48502. ]
  48503. ))
  48504. characterMakers.push(() => makeCharacter(
  48505. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48506. {
  48507. front: {
  48508. height: math.unit(4, "feet"),
  48509. weight: math.unit(120, "lb"),
  48510. name: "Front",
  48511. image: {
  48512. source: "./media/characters/blue/front.svg",
  48513. extra: 1636/1525,
  48514. bottom: 43/1679
  48515. }
  48516. },
  48517. back: {
  48518. height: math.unit(4, "feet"),
  48519. weight: math.unit(120, "lb"),
  48520. name: "Back",
  48521. image: {
  48522. source: "./media/characters/blue/back.svg",
  48523. extra: 1660/1560,
  48524. bottom: 57/1717
  48525. }
  48526. },
  48527. paws: {
  48528. height: math.unit(0.826, "feet"),
  48529. name: "Paws",
  48530. image: {
  48531. source: "./media/characters/blue/paws.svg"
  48532. }
  48533. },
  48534. },
  48535. [
  48536. {
  48537. name: "Micro",
  48538. height: math.unit(3, "inches")
  48539. },
  48540. {
  48541. name: "Normal",
  48542. height: math.unit(4, "feet"),
  48543. default: true
  48544. },
  48545. {
  48546. name: "Femenine Form",
  48547. height: math.unit(14, "feet")
  48548. },
  48549. {
  48550. name: "Werebat Form",
  48551. height: math.unit(18, "feet")
  48552. },
  48553. ]
  48554. ))
  48555. characterMakers.push(() => makeCharacter(
  48556. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48557. {
  48558. female: {
  48559. height: math.unit(7 + 4/12, "feet"),
  48560. weight: math.unit(243, "lb"),
  48561. name: "Female",
  48562. image: {
  48563. source: "./media/characters/kaya/female.svg",
  48564. extra: 975/898,
  48565. bottom: 34/1009
  48566. }
  48567. },
  48568. herm: {
  48569. height: math.unit(7 + 4/12, "feet"),
  48570. weight: math.unit(243, "lb"),
  48571. name: "Herm",
  48572. image: {
  48573. source: "./media/characters/kaya/herm.svg",
  48574. extra: 975/898,
  48575. bottom: 34/1009
  48576. }
  48577. },
  48578. },
  48579. [
  48580. {
  48581. name: "Normal",
  48582. height: math.unit(7 + 4/12, "feet"),
  48583. default: true
  48584. },
  48585. ]
  48586. ))
  48587. characterMakers.push(() => makeCharacter(
  48588. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48589. {
  48590. female: {
  48591. height: math.unit(9 + 4/12, "feet"),
  48592. weight: math.unit(398, "lb"),
  48593. name: "Female",
  48594. image: {
  48595. source: "./media/characters/kassandra/female.svg",
  48596. extra: 908/839,
  48597. bottom: 61/969
  48598. }
  48599. },
  48600. intersex: {
  48601. height: math.unit(9 + 4/12, "feet"),
  48602. weight: math.unit(398, "lb"),
  48603. name: "Intersex",
  48604. image: {
  48605. source: "./media/characters/kassandra/intersex.svg",
  48606. extra: 908/839,
  48607. bottom: 61/969
  48608. }
  48609. },
  48610. },
  48611. [
  48612. {
  48613. name: "Normal",
  48614. height: math.unit(9 + 4/12, "feet"),
  48615. default: true
  48616. },
  48617. ]
  48618. ))
  48619. characterMakers.push(() => makeCharacter(
  48620. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48621. {
  48622. front: {
  48623. height: math.unit(3, "meters"),
  48624. name: "Front",
  48625. image: {
  48626. source: "./media/characters/amy/front.svg",
  48627. extra: 1380/1343,
  48628. bottom: 70/1450
  48629. }
  48630. },
  48631. back: {
  48632. height: math.unit(3, "meters"),
  48633. name: "Back",
  48634. image: {
  48635. source: "./media/characters/amy/back.svg",
  48636. extra: 1380/1347,
  48637. bottom: 66/1446
  48638. }
  48639. },
  48640. },
  48641. [
  48642. {
  48643. name: "Normal",
  48644. height: math.unit(3, "meters"),
  48645. default: true
  48646. },
  48647. ]
  48648. ))
  48649. characterMakers.push(() => makeCharacter(
  48650. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48651. {
  48652. side: {
  48653. height: math.unit(47, "cm"),
  48654. weight: math.unit(10.8, "kg"),
  48655. name: "Side",
  48656. image: {
  48657. source: "./media/characters/alphaschakal/side.svg",
  48658. extra: 1058/568,
  48659. bottom: 62/1120
  48660. }
  48661. },
  48662. back: {
  48663. height: math.unit(78, "cm"),
  48664. weight: math.unit(10.8, "kg"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/alphaschakal/back.svg",
  48668. extra: 1102/942,
  48669. bottom: 185/1287
  48670. }
  48671. },
  48672. head: {
  48673. height: math.unit(28, "cm"),
  48674. name: "Head",
  48675. image: {
  48676. source: "./media/characters/alphaschakal/head.svg",
  48677. extra: 696/508,
  48678. bottom: 0/696
  48679. }
  48680. },
  48681. paw: {
  48682. height: math.unit(16, "cm"),
  48683. name: "Paw",
  48684. image: {
  48685. source: "./media/characters/alphaschakal/paw.svg"
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(47, "cm"),
  48693. default: true
  48694. },
  48695. {
  48696. name: "Macro",
  48697. height: math.unit(340, "cm")
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48703. {
  48704. front: {
  48705. height: math.unit(36, "earths"),
  48706. name: "Front",
  48707. image: {
  48708. source: "./media/characters/ecobyss/front.svg",
  48709. extra: 1282/1215,
  48710. bottom: 11/1293
  48711. }
  48712. },
  48713. back: {
  48714. height: math.unit(36, "earths"),
  48715. name: "Back",
  48716. image: {
  48717. source: "./media/characters/ecobyss/back.svg",
  48718. extra: 1291/1222,
  48719. bottom: 8/1299
  48720. }
  48721. },
  48722. },
  48723. [
  48724. {
  48725. name: "Normal",
  48726. height: math.unit(36, "earths"),
  48727. default: true
  48728. },
  48729. ]
  48730. ))
  48731. characterMakers.push(() => makeCharacter(
  48732. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48733. {
  48734. front: {
  48735. height: math.unit(12, "feet"),
  48736. name: "Front",
  48737. image: {
  48738. source: "./media/characters/vasuk/front.svg",
  48739. extra: 1326/1207,
  48740. bottom: 64/1390
  48741. }
  48742. },
  48743. },
  48744. [
  48745. {
  48746. name: "Normal",
  48747. height: math.unit(12, "feet"),
  48748. default: true
  48749. },
  48750. ]
  48751. ))
  48752. characterMakers.push(() => makeCharacter(
  48753. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48754. {
  48755. side: {
  48756. height: math.unit(100, "feet"),
  48757. name: "Side",
  48758. image: {
  48759. source: "./media/characters/linneaus/side.svg",
  48760. extra: 987/807,
  48761. bottom: 47/1034
  48762. }
  48763. },
  48764. },
  48765. [
  48766. {
  48767. name: "Macro",
  48768. height: math.unit(100, "feet"),
  48769. default: true
  48770. },
  48771. ]
  48772. ))
  48773. characterMakers.push(() => makeCharacter(
  48774. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48775. {
  48776. front: {
  48777. height: math.unit(8, "feet"),
  48778. weight: math.unit(1200, "lb"),
  48779. name: "Front",
  48780. image: {
  48781. source: "./media/characters/nyterious-daligdig/front.svg",
  48782. extra: 1284/1094,
  48783. bottom: 84/1368
  48784. }
  48785. },
  48786. back: {
  48787. height: math.unit(8, "feet"),
  48788. weight: math.unit(1200, "lb"),
  48789. name: "Back",
  48790. image: {
  48791. source: "./media/characters/nyterious-daligdig/back.svg",
  48792. extra: 1301/1121,
  48793. bottom: 129/1430
  48794. }
  48795. },
  48796. mouth: {
  48797. height: math.unit(1.464, "feet"),
  48798. name: "Mouth",
  48799. image: {
  48800. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Small",
  48807. height: math.unit(8, "feet"),
  48808. default: true
  48809. },
  48810. {
  48811. name: "Normal",
  48812. height: math.unit(15, "feet")
  48813. },
  48814. {
  48815. name: "Macro",
  48816. height: math.unit(90, "feet")
  48817. },
  48818. ]
  48819. ))
  48820. characterMakers.push(() => makeCharacter(
  48821. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48822. {
  48823. front: {
  48824. height: math.unit(7 + 4/12, "feet"),
  48825. weight: math.unit(252, "lb"),
  48826. name: "Front",
  48827. image: {
  48828. source: "./media/characters/bandel/front.svg",
  48829. extra: 1946/1775,
  48830. bottom: 26/1972
  48831. }
  48832. },
  48833. back: {
  48834. height: math.unit(7 + 4/12, "feet"),
  48835. weight: math.unit(252, "lb"),
  48836. name: "Back",
  48837. image: {
  48838. source: "./media/characters/bandel/back.svg",
  48839. extra: 1940/1770,
  48840. bottom: 25/1965
  48841. }
  48842. },
  48843. maw: {
  48844. height: math.unit(2.15, "feet"),
  48845. name: "Maw",
  48846. image: {
  48847. source: "./media/characters/bandel/maw.svg"
  48848. }
  48849. },
  48850. stomach: {
  48851. height: math.unit(1.95, "feet"),
  48852. name: "Stomach",
  48853. image: {
  48854. source: "./media/characters/bandel/stomach.svg"
  48855. }
  48856. },
  48857. },
  48858. [
  48859. {
  48860. name: "Normal",
  48861. height: math.unit(7 + 4/12, "feet"),
  48862. default: true
  48863. },
  48864. ]
  48865. ))
  48866. characterMakers.push(() => makeCharacter(
  48867. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48868. {
  48869. front: {
  48870. height: math.unit(10 + 5/12, "feet"),
  48871. weight: math.unit(773.5, "kg"),
  48872. name: "Front",
  48873. image: {
  48874. source: "./media/characters/zed/front.svg",
  48875. extra: 987/941,
  48876. bottom: 52/1039
  48877. }
  48878. },
  48879. },
  48880. [
  48881. {
  48882. name: "Short",
  48883. height: math.unit(5 + 4/12, "feet")
  48884. },
  48885. {
  48886. name: "Average",
  48887. height: math.unit(10 + 5/12, "feet"),
  48888. default: true
  48889. },
  48890. {
  48891. name: "Mini-Macro",
  48892. height: math.unit(24 + 9/12, "feet")
  48893. },
  48894. {
  48895. name: "Macro",
  48896. height: math.unit(249, "feet")
  48897. },
  48898. {
  48899. name: "Mega-Macro",
  48900. height: math.unit(12490, "feet")
  48901. },
  48902. {
  48903. name: "Giga-Macro",
  48904. height: math.unit(24.9, "miles")
  48905. },
  48906. {
  48907. name: "Tera-Macro",
  48908. height: math.unit(24900, "miles")
  48909. },
  48910. {
  48911. name: "Cosmic Scale",
  48912. height: math.unit(38.9, "lightyears")
  48913. },
  48914. {
  48915. name: "Universal Scale",
  48916. height: math.unit(138e12, "lightyears")
  48917. },
  48918. ]
  48919. ))
  48920. characterMakers.push(() => makeCharacter(
  48921. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48922. {
  48923. front: {
  48924. height: math.unit(1561, "inches"),
  48925. name: "Front",
  48926. image: {
  48927. source: "./media/characters/ivan/front.svg",
  48928. extra: 1126/1071,
  48929. bottom: 26/1152
  48930. }
  48931. },
  48932. back: {
  48933. height: math.unit(1561, "inches"),
  48934. name: "Back",
  48935. image: {
  48936. source: "./media/characters/ivan/back.svg",
  48937. extra: 1134/1079,
  48938. bottom: 30/1164
  48939. }
  48940. },
  48941. },
  48942. [
  48943. {
  48944. name: "Normal",
  48945. height: math.unit(1561, "inches"),
  48946. default: true
  48947. },
  48948. ]
  48949. ))
  48950. characterMakers.push(() => makeCharacter(
  48951. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48952. {
  48953. front: {
  48954. height: math.unit(5 + 7/12, "feet"),
  48955. weight: math.unit(150, "lb"),
  48956. name: "Front",
  48957. image: {
  48958. source: "./media/characters/robin-arctic-hare/front.svg",
  48959. extra: 1148/974,
  48960. bottom: 20/1168
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Normal",
  48967. height: math.unit(5 + 7/12, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48974. {
  48975. side: {
  48976. height: math.unit(5, "feet"),
  48977. name: "Side",
  48978. image: {
  48979. source: "./media/characters/birch/side.svg",
  48980. extra: 985/796,
  48981. bottom: 111/1096
  48982. }
  48983. },
  48984. },
  48985. [
  48986. {
  48987. name: "Normal",
  48988. height: math.unit(5, "feet"),
  48989. default: true
  48990. },
  48991. ]
  48992. ))
  48993. characterMakers.push(() => makeCharacter(
  48994. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48995. {
  48996. front: {
  48997. height: math.unit(4, "feet"),
  48998. name: "Front",
  48999. image: {
  49000. source: "./media/characters/rasp/front.svg",
  49001. extra: 561/478,
  49002. bottom: 74/635
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(4, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(4 + 6/12, "feet"),
  49019. name: "Front",
  49020. image: {
  49021. source: "./media/characters/agatha/front.svg",
  49022. extra: 947/933,
  49023. bottom: 42/989
  49024. }
  49025. },
  49026. back: {
  49027. height: math.unit(4 + 6/12, "feet"),
  49028. name: "Back",
  49029. image: {
  49030. source: "./media/characters/agatha/back.svg",
  49031. extra: 935/922,
  49032. bottom: 48/983
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Normal",
  49039. height: math.unit(4 + 6 /12, "feet"),
  49040. default: true
  49041. },
  49042. {
  49043. name: "Max Size",
  49044. height: math.unit(500, "feet")
  49045. },
  49046. ]
  49047. ))
  49048. characterMakers.push(() => makeCharacter(
  49049. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49050. {
  49051. side: {
  49052. height: math.unit(30, "feet"),
  49053. name: "Side",
  49054. image: {
  49055. source: "./media/characters/roggy/side.svg",
  49056. extra: 909/643,
  49057. bottom: 63/972
  49058. }
  49059. },
  49060. lounging: {
  49061. height: math.unit(20, "feet"),
  49062. name: "Lounging",
  49063. image: {
  49064. source: "./media/characters/roggy/lounging.svg",
  49065. extra: 643/479,
  49066. bottom: 145/788
  49067. }
  49068. },
  49069. handpaw: {
  49070. height: math.unit(13.1, "feet"),
  49071. name: "Handpaw",
  49072. image: {
  49073. source: "./media/characters/roggy/handpaw.svg"
  49074. }
  49075. },
  49076. footpaw: {
  49077. height: math.unit(15.8, "feet"),
  49078. name: "Footpaw",
  49079. image: {
  49080. source: "./media/characters/roggy/footpaw.svg"
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Menacing",
  49087. height: math.unit(30, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(5 + 7/12, "feet"),
  49097. weight: math.unit(135, "lb"),
  49098. name: "Front",
  49099. image: {
  49100. source: "./media/characters/naomi/front.svg",
  49101. extra: 1209/1154,
  49102. bottom: 129/1338
  49103. }
  49104. },
  49105. back: {
  49106. height: math.unit(5 + 7/12, "feet"),
  49107. weight: math.unit(135, "lb"),
  49108. name: "Back",
  49109. image: {
  49110. source: "./media/characters/naomi/back.svg",
  49111. extra: 1252/1190,
  49112. bottom: 23/1275
  49113. }
  49114. },
  49115. },
  49116. [
  49117. {
  49118. name: "Normal",
  49119. height: math.unit(5 + 7 /12, "feet"),
  49120. default: true
  49121. },
  49122. ]
  49123. ))
  49124. characterMakers.push(() => makeCharacter(
  49125. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49126. {
  49127. side: {
  49128. height: math.unit(35, "meters"),
  49129. name: "Side",
  49130. image: {
  49131. source: "./media/characters/kimpi/side.svg",
  49132. extra: 419/382,
  49133. bottom: 63/482
  49134. }
  49135. },
  49136. hand: {
  49137. height: math.unit(8.96, "meters"),
  49138. name: "Hand",
  49139. image: {
  49140. source: "./media/characters/kimpi/hand.svg"
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(35, "meters"),
  49148. default: true
  49149. },
  49150. ]
  49151. ))
  49152. characterMakers.push(() => makeCharacter(
  49153. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49154. {
  49155. front: {
  49156. height: math.unit(4 + 4/12, "feet"),
  49157. name: "Front",
  49158. image: {
  49159. source: "./media/characters/pepper-purrloin/front.svg",
  49160. extra: 1141/1024,
  49161. bottom: 21/1162
  49162. }
  49163. },
  49164. },
  49165. [
  49166. {
  49167. name: "Normal",
  49168. height: math.unit(4 + 4/12, "feet"),
  49169. default: true
  49170. },
  49171. ]
  49172. ))
  49173. characterMakers.push(() => makeCharacter(
  49174. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49175. {
  49176. front: {
  49177. height: math.unit(6 + 2/12, "feet"),
  49178. name: "Front",
  49179. image: {
  49180. source: "./media/characters/raphael/front.svg",
  49181. extra: 1101/962,
  49182. bottom: 59/1160
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Normal",
  49189. height: math.unit(6 + 2/12, "feet"),
  49190. default: true
  49191. },
  49192. ]
  49193. ))
  49194. characterMakers.push(() => makeCharacter(
  49195. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49196. {
  49197. front: {
  49198. height: math.unit(6, "feet"),
  49199. weight: math.unit(150, "lb"),
  49200. name: "Front",
  49201. image: {
  49202. source: "./media/characters/victor-williams/front.svg",
  49203. extra: 1894/1825,
  49204. bottom: 67/1961
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Normal",
  49211. height: math.unit(6, "feet"),
  49212. default: true
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49218. {
  49219. front: {
  49220. height: math.unit(5 + 8/12, "feet"),
  49221. weight: math.unit(150, "lb"),
  49222. name: "Front",
  49223. image: {
  49224. source: "./media/characters/rachel/front.svg",
  49225. extra: 1902/1787,
  49226. bottom: 46/1948
  49227. }
  49228. },
  49229. },
  49230. [
  49231. {
  49232. name: "Base Height",
  49233. height: math.unit(5 + 8/12, "feet"),
  49234. default: true
  49235. },
  49236. {
  49237. name: "Macro",
  49238. height: math.unit(200, "feet")
  49239. },
  49240. {
  49241. name: "Mega Macro",
  49242. height: math.unit(1, "mile")
  49243. },
  49244. {
  49245. name: "Giga Macro",
  49246. height: math.unit(1500, "miles")
  49247. },
  49248. {
  49249. name: "Tera Macro",
  49250. height: math.unit(8000, "miles")
  49251. },
  49252. {
  49253. name: "Tera Macro+",
  49254. height: math.unit(2e5, "miles")
  49255. },
  49256. ]
  49257. ))
  49258. characterMakers.push(() => makeCharacter(
  49259. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49260. {
  49261. front: {
  49262. height: math.unit(6.5, "feet"),
  49263. name: "Front",
  49264. image: {
  49265. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49266. extra: 860/819,
  49267. bottom: 307/1167
  49268. }
  49269. },
  49270. back: {
  49271. height: math.unit(6.5, "feet"),
  49272. name: "Back",
  49273. image: {
  49274. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49275. extra: 880/837,
  49276. bottom: 395/1275
  49277. }
  49278. },
  49279. sleeping: {
  49280. height: math.unit(2.79, "feet"),
  49281. name: "Sleeping",
  49282. image: {
  49283. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49284. extra: 465/383,
  49285. bottom: 263/728
  49286. }
  49287. },
  49288. maw: {
  49289. height: math.unit(2.52, "feet"),
  49290. name: "Maw",
  49291. image: {
  49292. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49293. }
  49294. },
  49295. },
  49296. [
  49297. {
  49298. name: "Normal",
  49299. height: math.unit(6.5, "feet"),
  49300. default: true
  49301. },
  49302. ]
  49303. ))
  49304. characterMakers.push(() => makeCharacter(
  49305. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49306. {
  49307. front: {
  49308. height: math.unit(5, "feet"),
  49309. name: "Front",
  49310. image: {
  49311. source: "./media/characters/nova-nerium/front.svg",
  49312. extra: 1548/1392,
  49313. bottom: 374/1922
  49314. }
  49315. },
  49316. back: {
  49317. height: math.unit(5, "feet"),
  49318. name: "Back",
  49319. image: {
  49320. source: "./media/characters/nova-nerium/back.svg",
  49321. extra: 1658/1468,
  49322. bottom: 257/1915
  49323. }
  49324. },
  49325. },
  49326. [
  49327. {
  49328. name: "Normal",
  49329. height: math.unit(5, "feet"),
  49330. default: true
  49331. },
  49332. ]
  49333. ))
  49334. characterMakers.push(() => makeCharacter(
  49335. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49336. {
  49337. front: {
  49338. height: math.unit(5 + 4/12, "feet"),
  49339. name: "Front",
  49340. image: {
  49341. source: "./media/characters/ashe-pyriph/front.svg",
  49342. extra: 1935/1747,
  49343. bottom: 60/1995
  49344. }
  49345. },
  49346. },
  49347. [
  49348. {
  49349. name: "Normal",
  49350. height: math.unit(5 + 4/12, "feet"),
  49351. default: true
  49352. },
  49353. ]
  49354. ))
  49355. characterMakers.push(() => makeCharacter(
  49356. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49357. {
  49358. front: {
  49359. height: math.unit(8.7, "feet"),
  49360. name: "Front",
  49361. image: {
  49362. source: "./media/characters/flicker-wisp/front.svg",
  49363. extra: 1835/1613,
  49364. bottom: 449/2284
  49365. }
  49366. },
  49367. side: {
  49368. height: math.unit(8.7, "feet"),
  49369. name: "Side",
  49370. image: {
  49371. source: "./media/characters/flicker-wisp/side.svg",
  49372. extra: 1841/1642,
  49373. bottom: 336/2177
  49374. },
  49375. default: true
  49376. },
  49377. maw: {
  49378. height: math.unit(3.35, "feet"),
  49379. name: "Maw",
  49380. image: {
  49381. source: "./media/characters/flicker-wisp/maw.svg",
  49382. extra: 2338/1506,
  49383. bottom: 0/2338
  49384. }
  49385. },
  49386. ovipositor: {
  49387. height: math.unit(4.95, "feet"),
  49388. name: "Ovipositor",
  49389. image: {
  49390. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49391. }
  49392. },
  49393. egg: {
  49394. height: math.unit(0.385, "feet"),
  49395. weight: math.unit(2, "lb"),
  49396. name: "Egg",
  49397. image: {
  49398. source: "./media/characters/flicker-wisp/egg.svg"
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Normal",
  49405. height: math.unit(8.7, "feet"),
  49406. default: true
  49407. },
  49408. ]
  49409. ))
  49410. characterMakers.push(() => makeCharacter(
  49411. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49412. {
  49413. side: {
  49414. height: math.unit(11, "feet"),
  49415. name: "Side",
  49416. image: {
  49417. source: "./media/characters/faefnul/side.svg",
  49418. extra: 1100/1007,
  49419. bottom: 0/1100
  49420. }
  49421. },
  49422. },
  49423. [
  49424. {
  49425. name: "Normal",
  49426. height: math.unit(11, "feet"),
  49427. default: true
  49428. },
  49429. ]
  49430. ))
  49431. characterMakers.push(() => makeCharacter(
  49432. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49433. {
  49434. front: {
  49435. height: math.unit(6 + 2/12, "feet"),
  49436. name: "Front",
  49437. image: {
  49438. source: "./media/characters/shady/front.svg",
  49439. extra: 502/461,
  49440. bottom: 9/511
  49441. }
  49442. },
  49443. kneeling: {
  49444. height: math.unit(4.6, "feet"),
  49445. name: "Kneeling",
  49446. image: {
  49447. source: "./media/characters/shady/kneeling.svg",
  49448. extra: 1328/1219,
  49449. bottom: 117/1445
  49450. }
  49451. },
  49452. maw: {
  49453. height: math.unit(2, "feet"),
  49454. name: "Maw",
  49455. image: {
  49456. source: "./media/characters/shady/maw.svg"
  49457. }
  49458. },
  49459. },
  49460. [
  49461. {
  49462. name: "Nano",
  49463. height: math.unit(1, "mm")
  49464. },
  49465. {
  49466. name: "Micro",
  49467. height: math.unit(12, "mm")
  49468. },
  49469. {
  49470. name: "Tiny",
  49471. height: math.unit(3, "inches")
  49472. },
  49473. {
  49474. name: "Normal",
  49475. height: math.unit(6 + 2/12, "feet"),
  49476. default: true
  49477. },
  49478. {
  49479. name: "Big",
  49480. height: math.unit(15, "feet")
  49481. },
  49482. {
  49483. name: "Macro",
  49484. height: math.unit(150, "feet")
  49485. },
  49486. {
  49487. name: "Titanic",
  49488. height: math.unit(500, "feet")
  49489. },
  49490. ]
  49491. ))
  49492. characterMakers.push(() => makeCharacter(
  49493. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49494. {
  49495. front: {
  49496. height: math.unit(12, "feet"),
  49497. name: "Front",
  49498. image: {
  49499. source: "./media/characters/fenrir/front.svg",
  49500. extra: 968/875,
  49501. bottom: 22/990
  49502. }
  49503. },
  49504. },
  49505. [
  49506. {
  49507. name: "Big",
  49508. height: math.unit(12, "feet"),
  49509. default: true
  49510. },
  49511. ]
  49512. ))
  49513. characterMakers.push(() => makeCharacter(
  49514. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49515. {
  49516. front: {
  49517. height: math.unit(5 + 4/12, "feet"),
  49518. name: "Front",
  49519. image: {
  49520. source: "./media/characters/makar/front.svg",
  49521. extra: 1181/1112,
  49522. bottom: 78/1259
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Normal",
  49529. height: math.unit(5 + 4/12, "feet"),
  49530. default: true
  49531. },
  49532. ]
  49533. ))
  49534. characterMakers.push(() => makeCharacter(
  49535. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49536. {
  49537. front: {
  49538. height: math.unit(5 + 7/12, "feet"),
  49539. name: "Front",
  49540. image: {
  49541. source: "./media/characters/callow/front.svg",
  49542. extra: 1482/1304,
  49543. bottom: 23/1505
  49544. }
  49545. },
  49546. back: {
  49547. height: math.unit(5 + 7/12, "feet"),
  49548. name: "Back",
  49549. image: {
  49550. source: "./media/characters/callow/back.svg",
  49551. extra: 1484/1296,
  49552. bottom: 25/1509
  49553. }
  49554. },
  49555. },
  49556. [
  49557. {
  49558. name: "Micro",
  49559. height: math.unit(3, "inches"),
  49560. default: true
  49561. },
  49562. {
  49563. name: "Normal",
  49564. height: math.unit(5 + 7/12, "feet")
  49565. },
  49566. ]
  49567. ))
  49568. characterMakers.push(() => makeCharacter(
  49569. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49570. {
  49571. front: {
  49572. height: math.unit(6 + 2/12, "feet"),
  49573. name: "Front",
  49574. image: {
  49575. source: "./media/characters/natel/front.svg",
  49576. extra: 1833/1692,
  49577. bottom: 166/1999
  49578. }
  49579. },
  49580. },
  49581. [
  49582. {
  49583. name: "Normal",
  49584. height: math.unit(6 + 2/12, "feet"),
  49585. default: true
  49586. },
  49587. ]
  49588. ))
  49589. characterMakers.push(() => makeCharacter(
  49590. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49591. {
  49592. front: {
  49593. height: math.unit(1.75, "meters"),
  49594. name: "Front",
  49595. image: {
  49596. source: "./media/characters/misu/front.svg",
  49597. extra: 1690/1558,
  49598. bottom: 234/1924
  49599. }
  49600. },
  49601. back: {
  49602. height: math.unit(1.75, "meters"),
  49603. name: "Back",
  49604. image: {
  49605. source: "./media/characters/misu/back.svg",
  49606. extra: 1762/1618,
  49607. bottom: 146/1908
  49608. }
  49609. },
  49610. frontNude: {
  49611. height: math.unit(1.75, "meters"),
  49612. name: "Front (Nude)",
  49613. image: {
  49614. source: "./media/characters/misu/front-nude.svg",
  49615. extra: 1690/1558,
  49616. bottom: 234/1924
  49617. }
  49618. },
  49619. backNude: {
  49620. height: math.unit(1.75, "meters"),
  49621. name: "Back (Nude)",
  49622. image: {
  49623. source: "./media/characters/misu/back-nude.svg",
  49624. extra: 1762/1618,
  49625. bottom: 146/1908
  49626. }
  49627. },
  49628. frontErect: {
  49629. height: math.unit(1.75, "meters"),
  49630. name: "Front (Erect)",
  49631. image: {
  49632. source: "./media/characters/misu/front-erect.svg",
  49633. extra: 1690/1558,
  49634. bottom: 234/1924
  49635. }
  49636. },
  49637. maw: {
  49638. height: math.unit(0.47, "meters"),
  49639. name: "Maw",
  49640. image: {
  49641. source: "./media/characters/misu/maw.svg"
  49642. }
  49643. },
  49644. head: {
  49645. height: math.unit(0.35, "meters"),
  49646. name: "Head",
  49647. image: {
  49648. source: "./media/characters/misu/head.svg"
  49649. }
  49650. },
  49651. rear: {
  49652. height: math.unit(0.47, "meters"),
  49653. name: "Rear",
  49654. image: {
  49655. source: "./media/characters/misu/rear.svg"
  49656. }
  49657. },
  49658. },
  49659. [
  49660. {
  49661. name: "Normal",
  49662. height: math.unit(1.75, "meters")
  49663. },
  49664. {
  49665. name: "Not good for the people",
  49666. height: math.unit(42, "meters")
  49667. },
  49668. {
  49669. name: "Not good for the neighborhood",
  49670. height: math.unit(135, "meters")
  49671. },
  49672. {
  49673. name: "Bit bigger problem",
  49674. height: math.unit(380, "meters"),
  49675. default: true
  49676. },
  49677. {
  49678. name: "Not good for the city",
  49679. height: math.unit(1.5, "km")
  49680. },
  49681. {
  49682. name: "Not good for the county",
  49683. height: math.unit(5.5, "km")
  49684. },
  49685. {
  49686. name: "Not good for the state",
  49687. height: math.unit(25, "km")
  49688. },
  49689. {
  49690. name: "Not good for the country",
  49691. height: math.unit(125, "km")
  49692. },
  49693. {
  49694. name: "Not good for the continent",
  49695. height: math.unit(2100, "km")
  49696. },
  49697. {
  49698. name: "Not good for the planet",
  49699. height: math.unit(35000, "km")
  49700. },
  49701. {
  49702. name: "Just no",
  49703. height: math.unit(8.5e18, "km")
  49704. },
  49705. ]
  49706. ))
  49707. characterMakers.push(() => makeCharacter(
  49708. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49709. {
  49710. front: {
  49711. height: math.unit(6.5, "feet"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/poppy/front.svg",
  49715. extra: 1878/1812,
  49716. bottom: 43/1921
  49717. }
  49718. },
  49719. feet: {
  49720. height: math.unit(1.06, "feet"),
  49721. name: "Feet",
  49722. image: {
  49723. source: "./media/characters/poppy/feet.svg",
  49724. extra: 1083/1083,
  49725. bottom: 87/1170
  49726. }
  49727. },
  49728. },
  49729. [
  49730. {
  49731. name: "Human",
  49732. height: math.unit(6.5, "feet")
  49733. },
  49734. {
  49735. name: "Default",
  49736. height: math.unit(300, "feet"),
  49737. default: true
  49738. },
  49739. {
  49740. name: "Huge",
  49741. height: math.unit(850, "feet")
  49742. },
  49743. {
  49744. name: "Mega",
  49745. height: math.unit(8000, "feet")
  49746. },
  49747. {
  49748. name: "Giga",
  49749. height: math.unit(300, "miles")
  49750. },
  49751. ]
  49752. ))
  49753. characterMakers.push(() => makeCharacter(
  49754. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49755. {
  49756. bipedal: {
  49757. height: math.unit(7, "feet"),
  49758. name: "Bipedal",
  49759. image: {
  49760. source: "./media/characters/zener/bipedal.svg",
  49761. extra: 874/805,
  49762. bottom: 109/983
  49763. }
  49764. },
  49765. quadrupedal: {
  49766. height: math.unit(4.64, "feet"),
  49767. name: "Quadrupedal",
  49768. image: {
  49769. source: "./media/characters/zener/quadrupedal.svg",
  49770. extra: 638/507,
  49771. bottom: 190/828
  49772. }
  49773. },
  49774. cock: {
  49775. height: math.unit(18, "inches"),
  49776. name: "Cock",
  49777. image: {
  49778. source: "./media/characters/zener/cock.svg"
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Normal",
  49785. height: math.unit(7, "feet"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49792. {
  49793. nude: {
  49794. height: math.unit(5 + 6/12, "feet"),
  49795. name: "Nude",
  49796. image: {
  49797. source: "./media/characters/charlie-dog/nude.svg",
  49798. extra: 768/734,
  49799. bottom: 26/794
  49800. }
  49801. },
  49802. dressed: {
  49803. height: math.unit(5 + 6/12, "feet"),
  49804. name: "Dressed",
  49805. image: {
  49806. source: "./media/characters/charlie-dog/dressed.svg",
  49807. extra: 768/734,
  49808. bottom: 26/794
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(5 + 6/12, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(6 + 4/12, "feet"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/ir'istrasz/front.svg",
  49828. extra: 1014/977,
  49829. bottom: 65/1079
  49830. }
  49831. },
  49832. back: {
  49833. height: math.unit(6 + 4/12, "feet"),
  49834. name: "Back",
  49835. image: {
  49836. source: "./media/characters/ir'istrasz/back.svg",
  49837. extra: 1024/992,
  49838. bottom: 34/1058
  49839. }
  49840. },
  49841. },
  49842. [
  49843. {
  49844. name: "Normal",
  49845. height: math.unit(6 + 4/12, "feet"),
  49846. default: true
  49847. },
  49848. ]
  49849. ))
  49850. characterMakers.push(() => makeCharacter(
  49851. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49852. {
  49853. front: {
  49854. height: math.unit(5 + 8/12, "feet"),
  49855. name: "Front",
  49856. image: {
  49857. source: "./media/characters/dee-ditto/front.svg",
  49858. extra: 1874/1785,
  49859. bottom: 68/1942
  49860. }
  49861. },
  49862. back: {
  49863. height: math.unit(5 + 8/12, "feet"),
  49864. name: "Back",
  49865. image: {
  49866. source: "./media/characters/dee-ditto/back.svg",
  49867. extra: 1870/1783,
  49868. bottom: 77/1947
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Normal",
  49875. height: math.unit(5 + 8/12, "feet"),
  49876. default: true
  49877. },
  49878. ]
  49879. ))
  49880. characterMakers.push(() => makeCharacter(
  49881. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49882. {
  49883. front: {
  49884. height: math.unit(7 + 6/12, "feet"),
  49885. name: "Front",
  49886. image: {
  49887. source: "./media/characters/fey/front.svg",
  49888. extra: 995/979,
  49889. bottom: 30/1025
  49890. }
  49891. },
  49892. back: {
  49893. height: math.unit(7 + 6/12, "feet"),
  49894. name: "Back",
  49895. image: {
  49896. source: "./media/characters/fey/back.svg",
  49897. extra: 1079/1008,
  49898. bottom: 5/1084
  49899. }
  49900. },
  49901. dressed: {
  49902. height: math.unit(7 + 6/12, "feet"),
  49903. name: "Dressed",
  49904. image: {
  49905. source: "./media/characters/fey/dressed.svg",
  49906. extra: 995/979,
  49907. bottom: 30/1025
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Normal",
  49914. height: math.unit(7 + 6/12, "feet"),
  49915. default: true
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49921. {
  49922. standing: {
  49923. height: math.unit(17, "feet"),
  49924. name: "Standing",
  49925. image: {
  49926. source: "./media/characters/aster/standing.svg",
  49927. extra: 1798/1598,
  49928. bottom: 117/1915
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Normal",
  49935. height: math.unit(17, "feet"),
  49936. default: true
  49937. },
  49938. {
  49939. name: "Homewrecker",
  49940. height: math.unit(95, "feet")
  49941. },
  49942. {
  49943. name: "Planet Devourer",
  49944. height: math.unit(1008000, "miles")
  49945. },
  49946. ]
  49947. ))
  49948. characterMakers.push(() => makeCharacter(
  49949. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49950. {
  49951. front: {
  49952. height: math.unit(6 + 5/12, "feet"),
  49953. weight: math.unit(265, "lb"),
  49954. name: "Front",
  49955. image: {
  49956. source: "./media/characters/devon-childs/front.svg",
  49957. extra: 1795/1721,
  49958. bottom: 41/1836
  49959. }
  49960. },
  49961. side: {
  49962. height: math.unit(6 + 5/12, "feet"),
  49963. weight: math.unit(265, "lb"),
  49964. name: "Side",
  49965. image: {
  49966. source: "./media/characters/devon-childs/side.svg",
  49967. extra: 1812/1738,
  49968. bottom: 30/1842
  49969. }
  49970. },
  49971. back: {
  49972. height: math.unit(6 + 5/12, "feet"),
  49973. weight: math.unit(265, "lb"),
  49974. name: "Back",
  49975. image: {
  49976. source: "./media/characters/devon-childs/back.svg",
  49977. extra: 1808/1735,
  49978. bottom: 23/1831
  49979. }
  49980. },
  49981. hand: {
  49982. height: math.unit(1.464, "feet"),
  49983. name: "Hand",
  49984. image: {
  49985. source: "./media/characters/devon-childs/hand.svg"
  49986. }
  49987. },
  49988. foot: {
  49989. height: math.unit(1.6, "feet"),
  49990. name: "Foot",
  49991. image: {
  49992. source: "./media/characters/devon-childs/foot.svg"
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Micro",
  49999. height: math.unit(7, "cm")
  50000. },
  50001. {
  50002. name: "Normal",
  50003. height: math.unit(6 + 5/12, "feet"),
  50004. default: true
  50005. },
  50006. {
  50007. name: "Macro",
  50008. height: math.unit(154, "feet")
  50009. },
  50010. ]
  50011. ))
  50012. characterMakers.push(() => makeCharacter(
  50013. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50014. {
  50015. front: {
  50016. height: math.unit(6, "feet"),
  50017. weight: math.unit(180, "lb"),
  50018. name: "Front",
  50019. image: {
  50020. source: "./media/characters/lydemox-vir/front.svg",
  50021. extra: 1632/1435,
  50022. bottom: 58/1690
  50023. }
  50024. },
  50025. frontSFW: {
  50026. height: math.unit(6, "feet"),
  50027. weight: math.unit(180, "lb"),
  50028. name: "Front (SFW)",
  50029. image: {
  50030. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50031. extra: 1632/1435,
  50032. bottom: 58/1690
  50033. }
  50034. },
  50035. back: {
  50036. height: math.unit(6, "feet"),
  50037. weight: math.unit(180, "lb"),
  50038. name: "Back",
  50039. image: {
  50040. source: "./media/characters/lydemox-vir/back.svg",
  50041. extra: 1593/1408,
  50042. bottom: 31/1624
  50043. }
  50044. },
  50045. paw: {
  50046. height: math.unit(1.85, "feet"),
  50047. name: "Paw",
  50048. image: {
  50049. source: "./media/characters/lydemox-vir/paw.svg"
  50050. }
  50051. },
  50052. dick: {
  50053. height: math.unit(1.8, "feet"),
  50054. name: "Dick",
  50055. image: {
  50056. source: "./media/characters/lydemox-vir/dick.svg"
  50057. }
  50058. },
  50059. },
  50060. [
  50061. {
  50062. name: "Macro",
  50063. height: math.unit(100, "feet"),
  50064. default: true
  50065. },
  50066. {
  50067. name: "Teramacro",
  50068. height: math.unit(1, "earth")
  50069. },
  50070. {
  50071. name: "Planetary",
  50072. height: math.unit(20, "earths")
  50073. },
  50074. ]
  50075. ))
  50076. characterMakers.push(() => makeCharacter(
  50077. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50078. {
  50079. front: {
  50080. height: math.unit(15 + 8/12, "feet"),
  50081. weight: math.unit(1237, "kg"),
  50082. name: "Front",
  50083. image: {
  50084. source: "./media/characters/mia/front.svg",
  50085. extra: 1573/1446,
  50086. bottom: 58/1631
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Small",
  50093. height: math.unit(9 + 5/12, "feet")
  50094. },
  50095. {
  50096. name: "Normal",
  50097. height: math.unit(15 + 8/12, "feet"),
  50098. default: true
  50099. },
  50100. ]
  50101. ))
  50102. characterMakers.push(() => makeCharacter(
  50103. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50104. {
  50105. front: {
  50106. height: math.unit(10 + 6/12, "feet"),
  50107. weight: math.unit(1.3, "tons"),
  50108. name: "Front",
  50109. image: {
  50110. source: "./media/characters/mr-graves/front.svg",
  50111. extra: 1779/1695,
  50112. bottom: 198/1977
  50113. }
  50114. },
  50115. },
  50116. [
  50117. {
  50118. name: "Normal",
  50119. height: math.unit(10 + 6 /12, "feet"),
  50120. default: true
  50121. },
  50122. ]
  50123. ))
  50124. characterMakers.push(() => makeCharacter(
  50125. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50126. {
  50127. dressedFront: {
  50128. height: math.unit(5 + 8/12, "feet"),
  50129. weight: math.unit(125, "lb"),
  50130. name: "Dressed (Front)",
  50131. image: {
  50132. source: "./media/characters/jess/dressed-front.svg",
  50133. extra: 1176/1152,
  50134. bottom: 42/1218
  50135. }
  50136. },
  50137. dressedSide: {
  50138. height: math.unit(5 + 8/12, "feet"),
  50139. weight: math.unit(125, "lb"),
  50140. name: "Dressed (Side)",
  50141. image: {
  50142. source: "./media/characters/jess/dressed-side.svg",
  50143. extra: 1204/1190,
  50144. bottom: 6/1210
  50145. }
  50146. },
  50147. nudeFront: {
  50148. height: math.unit(5 + 8/12, "feet"),
  50149. weight: math.unit(125, "lb"),
  50150. name: "Nude (Front)",
  50151. image: {
  50152. source: "./media/characters/jess/nude-front.svg",
  50153. extra: 1176/1152,
  50154. bottom: 42/1218
  50155. }
  50156. },
  50157. nudeSide: {
  50158. height: math.unit(5 + 8/12, "feet"),
  50159. weight: math.unit(125, "lb"),
  50160. name: "Nude (Side)",
  50161. image: {
  50162. source: "./media/characters/jess/nude-side.svg",
  50163. extra: 1204/1190,
  50164. bottom: 6/1210
  50165. }
  50166. },
  50167. organsFront: {
  50168. height: math.unit(2.83799342105, "feet"),
  50169. name: "Organs (Front)",
  50170. image: {
  50171. source: "./media/characters/jess/organs-front.svg"
  50172. }
  50173. },
  50174. organsSide: {
  50175. height: math.unit(2.64225290474, "feet"),
  50176. name: "Organs (Side)",
  50177. image: {
  50178. source: "./media/characters/jess/organs-side.svg"
  50179. }
  50180. },
  50181. digestiveTractFront: {
  50182. height: math.unit(2.8106580871, "feet"),
  50183. name: "Digestive Tract (Front)",
  50184. image: {
  50185. source: "./media/characters/jess/digestive-tract-front.svg"
  50186. }
  50187. },
  50188. digestiveTractSide: {
  50189. height: math.unit(2.54365045014, "feet"),
  50190. name: "Digestive Tract (Side)",
  50191. image: {
  50192. source: "./media/characters/jess/digestive-tract-side.svg"
  50193. }
  50194. },
  50195. respiratorySystemFront: {
  50196. height: math.unit(1.11196233456, "feet"),
  50197. name: "Respiratory System (Front)",
  50198. image: {
  50199. source: "./media/characters/jess/respiratory-system-front.svg"
  50200. }
  50201. },
  50202. respiratorySystemSide: {
  50203. height: math.unit(0.89327966297, "feet"),
  50204. name: "Respiratory System (Side)",
  50205. image: {
  50206. source: "./media/characters/jess/respiratory-system-side.svg"
  50207. }
  50208. },
  50209. urinaryTractFront: {
  50210. height: math.unit(1.16126356186, "feet"),
  50211. name: "Urinary Tract (Front)",
  50212. image: {
  50213. source: "./media/characters/jess/urinary-tract-front.svg"
  50214. }
  50215. },
  50216. urinaryTractSide: {
  50217. height: math.unit(1.20910039627, "feet"),
  50218. name: "Urinary Tract (Side)",
  50219. image: {
  50220. source: "./media/characters/jess/urinary-tract-side.svg"
  50221. }
  50222. },
  50223. reproductiveOrgansFront: {
  50224. height: math.unit(0.48422591566, "feet"),
  50225. name: "Reproductive Organs (Front)",
  50226. image: {
  50227. source: "./media/characters/jess/reproductive-organs-front.svg"
  50228. }
  50229. },
  50230. reproductiveOrgansSide: {
  50231. height: math.unit(0.61553314481, "feet"),
  50232. name: "Reproductive Organs (Side)",
  50233. image: {
  50234. source: "./media/characters/jess/reproductive-organs-side.svg"
  50235. }
  50236. },
  50237. breastsFront: {
  50238. height: math.unit(0.47690395121, "feet"),
  50239. name: "Breasts (Front)",
  50240. image: {
  50241. source: "./media/characters/jess/breasts-front.svg"
  50242. }
  50243. },
  50244. breastsSide: {
  50245. height: math.unit(0.30556998307, "feet"),
  50246. name: "Breasts (Side)",
  50247. image: {
  50248. source: "./media/characters/jess/breasts-side.svg"
  50249. }
  50250. },
  50251. heartFront: {
  50252. height: math.unit(0.53011022622, "feet"),
  50253. name: "Heart (Front)",
  50254. image: {
  50255. source: "./media/characters/jess/heart-front.svg"
  50256. }
  50257. },
  50258. heartSide: {
  50259. height: math.unit(0.51790695213, "feet"),
  50260. name: "Heart (Side)",
  50261. image: {
  50262. source: "./media/characters/jess/heart-side.svg"
  50263. }
  50264. },
  50265. earsAndNoseFront: {
  50266. height: math.unit(0.29385483995, "feet"),
  50267. name: "Ears and Nose (Front)",
  50268. image: {
  50269. source: "./media/characters/jess/ears-and-nose-front.svg"
  50270. }
  50271. },
  50272. earsAndNoseSide: {
  50273. height: math.unit(0.18109658741, "feet"),
  50274. name: "Ears and Nose (Side)",
  50275. image: {
  50276. source: "./media/characters/jess/ears-and-nose-side.svg"
  50277. }
  50278. },
  50279. },
  50280. [
  50281. {
  50282. name: "Normal",
  50283. height: math.unit(5 + 8/12, "feet"),
  50284. default: true
  50285. },
  50286. ]
  50287. ))
  50288. characterMakers.push(() => makeCharacter(
  50289. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50290. {
  50291. front: {
  50292. height: math.unit(6, "feet"),
  50293. weight: math.unit(6.64467e-7, "grams"),
  50294. name: "Front",
  50295. image: {
  50296. source: "./media/characters/wimpering/front.svg",
  50297. extra: 597/587,
  50298. bottom: 34/631
  50299. }
  50300. },
  50301. },
  50302. [
  50303. {
  50304. name: "Micro",
  50305. height: math.unit(0.4, "mm"),
  50306. default: true
  50307. },
  50308. ]
  50309. ))
  50310. characterMakers.push(() => makeCharacter(
  50311. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50312. {
  50313. front: {
  50314. height: math.unit(5 + 2/12, "feet"),
  50315. weight: math.unit(110, "lb"),
  50316. name: "Front",
  50317. image: {
  50318. source: "./media/characters/keltre/front.svg",
  50319. extra: 1099/1057,
  50320. bottom: 22/1121
  50321. }
  50322. },
  50323. back: {
  50324. height: math.unit(5 + 2/12, "feet"),
  50325. weight: math.unit(110, "lb"),
  50326. name: "Back",
  50327. image: {
  50328. source: "./media/characters/keltre/back.svg",
  50329. extra: 1095/1053,
  50330. bottom: 17/1112
  50331. }
  50332. },
  50333. dressed: {
  50334. height: math.unit(5 + 2/12, "feet"),
  50335. weight: math.unit(110, "lb"),
  50336. name: "Dressed",
  50337. image: {
  50338. source: "./media/characters/keltre/dressed.svg",
  50339. extra: 1099/1057,
  50340. bottom: 22/1121
  50341. }
  50342. },
  50343. winter: {
  50344. height: math.unit(5 + 2/12, "feet"),
  50345. weight: math.unit(110, "lb"),
  50346. name: "Winter",
  50347. image: {
  50348. source: "./media/characters/keltre/winter.svg",
  50349. extra: 1099/1057,
  50350. bottom: 22/1121
  50351. }
  50352. },
  50353. head: {
  50354. height: math.unit(1.61 * 0.86, "feet"),
  50355. name: "Head",
  50356. image: {
  50357. source: "./media/characters/keltre/head.svg",
  50358. extra: 534/421,
  50359. bottom: 0/534
  50360. }
  50361. },
  50362. hand: {
  50363. height: math.unit(1.3 * 0.86, "feet"),
  50364. name: "Hand",
  50365. image: {
  50366. source: "./media/characters/keltre/hand.svg"
  50367. }
  50368. },
  50369. foot: {
  50370. height: math.unit(1.8 * 0.86, "feet"),
  50371. name: "Foot",
  50372. image: {
  50373. source: "./media/characters/keltre/foot.svg"
  50374. }
  50375. },
  50376. },
  50377. [
  50378. {
  50379. name: "Fine",
  50380. height: math.unit(1, "inch")
  50381. },
  50382. {
  50383. name: "Dimnutive",
  50384. height: math.unit(4, "inches")
  50385. },
  50386. {
  50387. name: "Tiny",
  50388. height: math.unit(1, "foot")
  50389. },
  50390. {
  50391. name: "Small",
  50392. height: math.unit(3, "feet")
  50393. },
  50394. {
  50395. name: "Normal",
  50396. height: math.unit(5 + 2/12, "feet"),
  50397. default: true
  50398. },
  50399. ]
  50400. ))
  50401. characterMakers.push(() => makeCharacter(
  50402. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50403. {
  50404. front: {
  50405. height: math.unit(6 + 2/12, "feet"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/nox/front.svg",
  50409. extra: 1917/1830,
  50410. bottom: 74/1991
  50411. }
  50412. },
  50413. back: {
  50414. height: math.unit(6 + 2/12, "feet"),
  50415. name: "Back",
  50416. image: {
  50417. source: "./media/characters/nox/back.svg",
  50418. extra: 1896/1815,
  50419. bottom: 21/1917
  50420. }
  50421. },
  50422. head: {
  50423. height: math.unit(1.1, "feet"),
  50424. name: "Head",
  50425. image: {
  50426. source: "./media/characters/nox/head.svg",
  50427. extra: 874/704,
  50428. bottom: 0/874
  50429. }
  50430. },
  50431. tattoo: {
  50432. height: math.unit(0.729, "feet"),
  50433. name: "Tattoo",
  50434. image: {
  50435. source: "./media/characters/nox/tattoo.svg"
  50436. }
  50437. },
  50438. },
  50439. [
  50440. {
  50441. name: "Normal",
  50442. height: math.unit(6 + 2/12, "feet")
  50443. },
  50444. {
  50445. name: "Gigamacro",
  50446. height: math.unit(2, "earths"),
  50447. default: true
  50448. },
  50449. {
  50450. name: "Cosmic",
  50451. height: math.unit(867, "yottameters")
  50452. },
  50453. ]
  50454. ))
  50455. characterMakers.push(() => makeCharacter(
  50456. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50457. {
  50458. front: {
  50459. height: math.unit(6, "feet"),
  50460. weight: math.unit(150, "lb"),
  50461. name: "Front",
  50462. image: {
  50463. source: "./media/characters/caspian/front.svg",
  50464. extra: 1443/1359,
  50465. bottom: 0/1443
  50466. }
  50467. },
  50468. back: {
  50469. height: math.unit(6, "feet"),
  50470. weight: math.unit(150, "lb"),
  50471. name: "Back",
  50472. image: {
  50473. source: "./media/characters/caspian/back.svg",
  50474. extra: 1379/1309,
  50475. bottom: 0/1379
  50476. }
  50477. },
  50478. head: {
  50479. height: math.unit(0.9, "feet"),
  50480. name: "Head",
  50481. image: {
  50482. source: "./media/characters/caspian/head.svg",
  50483. extra: 692/492,
  50484. bottom: 0/692
  50485. }
  50486. },
  50487. headAlt: {
  50488. height: math.unit(0.95, "feet"),
  50489. name: "Head (Alt)",
  50490. image: {
  50491. source: "./media/characters/caspian/head-alt.svg",
  50492. extra: 668/508,
  50493. bottom: 0/668
  50494. }
  50495. },
  50496. hand: {
  50497. height: math.unit(0.8, "feet"),
  50498. name: "Hand",
  50499. image: {
  50500. source: "./media/characters/caspian/hand.svg"
  50501. }
  50502. },
  50503. paw: {
  50504. height: math.unit(0.95, "feet"),
  50505. name: "Paw",
  50506. image: {
  50507. source: "./media/characters/caspian/paw.svg"
  50508. }
  50509. },
  50510. },
  50511. [
  50512. {
  50513. name: "Normal",
  50514. height: math.unit(162, "feet"),
  50515. default: true
  50516. },
  50517. ]
  50518. ))
  50519. characterMakers.push(() => makeCharacter(
  50520. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50521. {
  50522. front: {
  50523. height: math.unit(6, "feet"),
  50524. name: "Front",
  50525. image: {
  50526. source: "./media/characters/myra-aisling/front.svg",
  50527. extra: 1268/1166,
  50528. bottom: 73/1341
  50529. }
  50530. },
  50531. back: {
  50532. height: math.unit(6, "feet"),
  50533. name: "Back",
  50534. image: {
  50535. source: "./media/characters/myra-aisling/back.svg",
  50536. extra: 1249/1149,
  50537. bottom: 79/1328
  50538. }
  50539. },
  50540. dressed: {
  50541. height: math.unit(6, "feet"),
  50542. name: "Dressed",
  50543. image: {
  50544. source: "./media/characters/myra-aisling/dressed.svg",
  50545. extra: 1290/1189,
  50546. bottom: 47/1337
  50547. }
  50548. },
  50549. hand: {
  50550. height: math.unit(1.1, "feet"),
  50551. name: "Hand",
  50552. image: {
  50553. source: "./media/characters/myra-aisling/hand.svg"
  50554. }
  50555. },
  50556. paw: {
  50557. height: math.unit(1.23, "feet"),
  50558. name: "Paw",
  50559. image: {
  50560. source: "./media/characters/myra-aisling/paw.svg"
  50561. }
  50562. },
  50563. },
  50564. [
  50565. {
  50566. name: "Normal",
  50567. height: math.unit(160, "feet"),
  50568. default: true
  50569. },
  50570. ]
  50571. ))
  50572. characterMakers.push(() => makeCharacter(
  50573. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50574. {
  50575. front: {
  50576. height: math.unit(6, "feet"),
  50577. name: "Front",
  50578. image: {
  50579. source: "./media/characters/tenley-sidero/front.svg",
  50580. extra: 1365/1276,
  50581. bottom: 47/1412
  50582. }
  50583. },
  50584. back: {
  50585. height: math.unit(6, "feet"),
  50586. name: "Back",
  50587. image: {
  50588. source: "./media/characters/tenley-sidero/back.svg",
  50589. extra: 1383/1283,
  50590. bottom: 35/1418
  50591. }
  50592. },
  50593. dressed: {
  50594. height: math.unit(6, "feet"),
  50595. name: "Dressed",
  50596. image: {
  50597. source: "./media/characters/tenley-sidero/dressed.svg",
  50598. extra: 1364/1275,
  50599. bottom: 42/1406
  50600. }
  50601. },
  50602. head: {
  50603. height: math.unit(1.47, "feet"),
  50604. name: "Head",
  50605. image: {
  50606. source: "./media/characters/tenley-sidero/head.svg",
  50607. extra: 610/490,
  50608. bottom: 0/610
  50609. }
  50610. },
  50611. },
  50612. [
  50613. {
  50614. name: "Normal",
  50615. height: math.unit(154, "feet"),
  50616. default: true
  50617. },
  50618. ]
  50619. ))
  50620. characterMakers.push(() => makeCharacter(
  50621. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50622. {
  50623. front: {
  50624. height: math.unit(5, "inches"),
  50625. name: "Front",
  50626. image: {
  50627. source: "./media/characters/mallory/front.svg",
  50628. extra: 1919/1678,
  50629. bottom: 29/1948
  50630. }
  50631. },
  50632. hand: {
  50633. height: math.unit(0.73, "inches"),
  50634. name: "Hand",
  50635. image: {
  50636. source: "./media/characters/mallory/hand.svg"
  50637. }
  50638. },
  50639. paw: {
  50640. height: math.unit(0.68, "inches"),
  50641. name: "Paw",
  50642. image: {
  50643. source: "./media/characters/mallory/paw.svg"
  50644. }
  50645. },
  50646. },
  50647. [
  50648. {
  50649. name: "Small",
  50650. height: math.unit(5, "inches"),
  50651. default: true
  50652. },
  50653. ]
  50654. ))
  50655. characterMakers.push(() => makeCharacter(
  50656. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50657. {
  50658. naked: {
  50659. height: math.unit(6, "feet"),
  50660. name: "Naked",
  50661. image: {
  50662. source: "./media/characters/mab/naked.svg",
  50663. extra: 1855/1757,
  50664. bottom: 208/2063
  50665. }
  50666. },
  50667. outside: {
  50668. height: math.unit(6, "feet"),
  50669. name: "Outside",
  50670. image: {
  50671. source: "./media/characters/mab/outside.svg",
  50672. extra: 1855/1757,
  50673. bottom: 208/2063
  50674. }
  50675. },
  50676. party: {
  50677. height: math.unit(6, "feet"),
  50678. name: "Party",
  50679. image: {
  50680. source: "./media/characters/mab/party.svg",
  50681. extra: 1855/1757,
  50682. bottom: 208/2063
  50683. }
  50684. },
  50685. },
  50686. [
  50687. {
  50688. name: "Normal",
  50689. height: math.unit(165, "feet"),
  50690. default: true
  50691. },
  50692. ]
  50693. ))
  50694. characterMakers.push(() => makeCharacter(
  50695. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50696. {
  50697. feral: {
  50698. height: math.unit(12, "feet"),
  50699. weight: math.unit(20000, "lb"),
  50700. name: "Side",
  50701. image: {
  50702. source: "./media/characters/winter/feral.svg",
  50703. extra: 1286/943,
  50704. bottom: 112/1398
  50705. },
  50706. form: "feral",
  50707. default: true
  50708. },
  50709. feralNsfw: {
  50710. height: math.unit(12, "feet"),
  50711. weight: math.unit(20000, "lb"),
  50712. name: "Side (NSFW)",
  50713. image: {
  50714. source: "./media/characters/winter/feral-nsfw.svg",
  50715. extra: 1286/943,
  50716. bottom: 112/1398
  50717. },
  50718. form: "feral"
  50719. },
  50720. dick: {
  50721. height: math.unit(3.79, "feet"),
  50722. name: "Dick",
  50723. image: {
  50724. source: "./media/characters/winter/dick.svg"
  50725. },
  50726. form: "feral"
  50727. },
  50728. anthro: {
  50729. height: math.unit(12, "feet"),
  50730. weight: math.unit(10, "tons"),
  50731. name: "Anthro",
  50732. image: {
  50733. source: "./media/characters/winter/anthro.svg",
  50734. extra: 1701/1553,
  50735. bottom: 64/1765
  50736. },
  50737. form: "anthro",
  50738. default: true
  50739. },
  50740. },
  50741. [
  50742. {
  50743. name: "Big",
  50744. height: math.unit(12, "feet"),
  50745. default: true,
  50746. form: "feral"
  50747. },
  50748. {
  50749. name: "Big",
  50750. height: math.unit(12, "feet"),
  50751. default: true,
  50752. form: "anthro"
  50753. },
  50754. ],
  50755. {
  50756. "feral": {
  50757. name: "Feral",
  50758. default: true
  50759. },
  50760. "anthro": {
  50761. name: "Anthro"
  50762. }
  50763. }
  50764. ))
  50765. characterMakers.push(() => makeCharacter(
  50766. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50767. {
  50768. front: {
  50769. height: math.unit(4.1, "inches"),
  50770. name: "Front",
  50771. image: {
  50772. source: "./media/characters/alto/front.svg",
  50773. extra: 736/627,
  50774. bottom: 90/826
  50775. }
  50776. },
  50777. },
  50778. [
  50779. {
  50780. name: "Normal",
  50781. height: math.unit(4.1, "inches"),
  50782. default: true
  50783. },
  50784. ]
  50785. ))
  50786. characterMakers.push(() => makeCharacter(
  50787. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50788. {
  50789. sitting: {
  50790. height: math.unit(3, "feet"),
  50791. name: "Sitting",
  50792. image: {
  50793. source: "./media/characters/ratstrid-v/sitting.svg",
  50794. extra: 355/310,
  50795. bottom: 136/491
  50796. }
  50797. },
  50798. },
  50799. [
  50800. {
  50801. name: "Normal",
  50802. height: math.unit(3, "feet"),
  50803. default: true
  50804. },
  50805. ]
  50806. ))
  50807. characterMakers.push(() => makeCharacter(
  50808. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50809. {
  50810. back: {
  50811. height: math.unit(6, "feet"),
  50812. weight: math.unit(450, "lb"),
  50813. name: "Back",
  50814. image: {
  50815. source: "./media/characters/siz/back.svg",
  50816. extra: 1449/1274,
  50817. bottom: 13/1462
  50818. }
  50819. },
  50820. },
  50821. [
  50822. {
  50823. name: "Smallest",
  50824. height: math.unit(18 + 3/12, "feet")
  50825. },
  50826. {
  50827. name: "Modest",
  50828. height: math.unit(56 + 8/12, "feet"),
  50829. default: true
  50830. },
  50831. {
  50832. name: "Largest",
  50833. height: math.unit(3590, "feet")
  50834. },
  50835. ]
  50836. ))
  50837. characterMakers.push(() => makeCharacter(
  50838. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50839. {
  50840. front: {
  50841. height: math.unit(5 + 9/12, "feet"),
  50842. weight: math.unit(150, "lb"),
  50843. name: "Front",
  50844. image: {
  50845. source: "./media/characters/ven/front.svg",
  50846. extra: 1372/1320,
  50847. bottom: 73/1445
  50848. }
  50849. },
  50850. side: {
  50851. height: math.unit(5 + 9/12, "feet"),
  50852. weight: math.unit(1150, "lb"),
  50853. name: "Side",
  50854. image: {
  50855. source: "./media/characters/ven/side.svg",
  50856. extra: 1119/1070,
  50857. bottom: 42/1161
  50858. },
  50859. default: true
  50860. },
  50861. },
  50862. [
  50863. {
  50864. name: "Normal",
  50865. height: math.unit(5 + 9/12, "feet"),
  50866. default: true
  50867. },
  50868. ]
  50869. ))
  50870. characterMakers.push(() => makeCharacter(
  50871. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50872. {
  50873. front: {
  50874. height: math.unit(12, "feet"),
  50875. weight: math.unit(1000, "kg"),
  50876. name: "Front",
  50877. image: {
  50878. source: "./media/characters/maple/front.svg",
  50879. extra: 1193/1081,
  50880. bottom: 22/1215
  50881. }
  50882. },
  50883. },
  50884. [
  50885. {
  50886. name: "Compressed",
  50887. height: math.unit(7, "feet")
  50888. },
  50889. {
  50890. name: "Normal",
  50891. height: math.unit(12, "feet"),
  50892. default: true
  50893. },
  50894. ]
  50895. ))
  50896. characterMakers.push(() => makeCharacter(
  50897. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50898. {
  50899. front: {
  50900. height: math.unit(9, "feet"),
  50901. weight: math.unit(1500, "lb"),
  50902. name: "Front",
  50903. image: {
  50904. source: "./media/characters/nora/front.svg",
  50905. extra: 1348/1286,
  50906. bottom: 218/1566
  50907. }
  50908. },
  50909. erect: {
  50910. height: math.unit(9, "feet"),
  50911. weight: math.unit(11500, "lb"),
  50912. name: "Erect",
  50913. image: {
  50914. source: "./media/characters/nora/erect.svg",
  50915. extra: 1488/1433,
  50916. bottom: 133/1621
  50917. }
  50918. },
  50919. },
  50920. [
  50921. {
  50922. name: "Normal",
  50923. height: math.unit(9, "feet"),
  50924. default: true
  50925. },
  50926. ]
  50927. ))
  50928. characterMakers.push(() => makeCharacter(
  50929. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50930. {
  50931. front: {
  50932. height: math.unit(25, "feet"),
  50933. weight: math.unit(27500, "lb"),
  50934. name: "Front",
  50935. image: {
  50936. source: "./media/characters/north-caudin/front.svg",
  50937. extra: 1184/1082,
  50938. bottom: 23/1207
  50939. }
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Compressed",
  50945. height: math.unit(10, "feet")
  50946. },
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(25, "feet"),
  50950. default: true
  50951. },
  50952. ]
  50953. ))
  50954. characterMakers.push(() => makeCharacter(
  50955. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50956. {
  50957. front: {
  50958. height: math.unit(9, "feet"),
  50959. weight: math.unit(1250, "lb"),
  50960. name: "Front",
  50961. image: {
  50962. source: "./media/characters/merrian/front.svg",
  50963. extra: 2393/2304,
  50964. bottom: 40/2433
  50965. }
  50966. },
  50967. },
  50968. [
  50969. {
  50970. name: "Normal",
  50971. height: math.unit(9, "feet"),
  50972. default: true
  50973. },
  50974. ]
  50975. ))
  50976. characterMakers.push(() => makeCharacter(
  50977. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50978. {
  50979. front: {
  50980. height: math.unit(9, "feet"),
  50981. weight: math.unit(1000, "lb"),
  50982. name: "Front",
  50983. image: {
  50984. source: "./media/characters/hazel/front.svg",
  50985. extra: 2351/2298,
  50986. bottom: 38/2389
  50987. }
  50988. },
  50989. },
  50990. [
  50991. {
  50992. name: "Normal",
  50993. height: math.unit(9, "feet"),
  50994. default: true
  50995. },
  50996. ]
  50997. ))
  50998. characterMakers.push(() => makeCharacter(
  50999. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51000. {
  51001. front: {
  51002. height: math.unit(13, "feet"),
  51003. weight: math.unit(3200, "lb"),
  51004. name: "Front",
  51005. image: {
  51006. source: "./media/characters/emma/front.svg",
  51007. extra: 2263/2029,
  51008. bottom: 68/2331
  51009. }
  51010. },
  51011. },
  51012. [
  51013. {
  51014. name: "Normal",
  51015. height: math.unit(13, "feet"),
  51016. default: true
  51017. },
  51018. ]
  51019. ))
  51020. characterMakers.push(() => makeCharacter(
  51021. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51022. {
  51023. front: {
  51024. height: math.unit(11 + 9/12, "feet"),
  51025. weight: math.unit(2500, "lb"),
  51026. name: "Front",
  51027. image: {
  51028. source: "./media/characters/ilumina/front.svg",
  51029. extra: 2248/2209,
  51030. bottom: 164/2412
  51031. }
  51032. },
  51033. },
  51034. [
  51035. {
  51036. name: "Normal",
  51037. height: math.unit(11 + 9/12, "feet"),
  51038. default: true
  51039. },
  51040. ]
  51041. ))
  51042. characterMakers.push(() => makeCharacter(
  51043. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51044. {
  51045. front: {
  51046. height: math.unit(8 + 10/12, "feet"),
  51047. weight: math.unit(1350, "lb"),
  51048. name: "Front",
  51049. image: {
  51050. source: "./media/characters/moonshine/front.svg",
  51051. extra: 2395/2288,
  51052. bottom: 40/2435
  51053. }
  51054. },
  51055. },
  51056. [
  51057. {
  51058. name: "Normal",
  51059. height: math.unit(8 + 10/12, "feet"),
  51060. default: true
  51061. },
  51062. ]
  51063. ))
  51064. characterMakers.push(() => makeCharacter(
  51065. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51066. {
  51067. front: {
  51068. height: math.unit(14, "feet"),
  51069. weight: math.unit(3400, "lb"),
  51070. name: "Front",
  51071. image: {
  51072. source: "./media/characters/aletia/front.svg",
  51073. extra: 1185/1052,
  51074. bottom: 21/1206
  51075. }
  51076. },
  51077. },
  51078. [
  51079. {
  51080. name: "Compressed",
  51081. height: math.unit(8, "feet")
  51082. },
  51083. {
  51084. name: "Normal",
  51085. height: math.unit(14, "feet"),
  51086. default: true
  51087. },
  51088. ]
  51089. ))
  51090. characterMakers.push(() => makeCharacter(
  51091. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51092. {
  51093. front: {
  51094. height: math.unit(17, "feet"),
  51095. weight: math.unit(6500, "lb"),
  51096. name: "Front",
  51097. image: {
  51098. source: "./media/characters/deidra/front.svg",
  51099. extra: 1201/1081,
  51100. bottom: 16/1217
  51101. }
  51102. },
  51103. },
  51104. [
  51105. {
  51106. name: "Compressed",
  51107. height: math.unit(9 + 6/12, "feet")
  51108. },
  51109. {
  51110. name: "Normal",
  51111. height: math.unit(17, "feet"),
  51112. default: true
  51113. },
  51114. ]
  51115. ))
  51116. characterMakers.push(() => makeCharacter(
  51117. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51118. {
  51119. front: {
  51120. height: math.unit(7 + 4/12, "feet"),
  51121. weight: math.unit(280, "lb"),
  51122. name: "Front",
  51123. image: {
  51124. source: "./media/characters/freki-yrmori/front.svg",
  51125. extra: 1286/1182,
  51126. bottom: 29/1315
  51127. }
  51128. },
  51129. maw: {
  51130. height: math.unit(0.9, "feet"),
  51131. name: "Maw",
  51132. image: {
  51133. source: "./media/characters/freki-yrmori/maw.svg"
  51134. }
  51135. },
  51136. },
  51137. [
  51138. {
  51139. name: "Normal",
  51140. height: math.unit(7 + 4/12, "feet"),
  51141. default: true
  51142. },
  51143. {
  51144. name: "Macro",
  51145. height: math.unit(38.5, "meters")
  51146. },
  51147. ]
  51148. ))
  51149. characterMakers.push(() => makeCharacter(
  51150. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51151. {
  51152. side: {
  51153. height: math.unit(47.2, "meters"),
  51154. weight: math.unit(10000, "tons"),
  51155. name: "Side",
  51156. image: {
  51157. source: "./media/characters/aetherios/side.svg",
  51158. extra: 2363/642,
  51159. bottom: 221/2584
  51160. }
  51161. },
  51162. top: {
  51163. height: math.unit(240, "meters"),
  51164. weight: math.unit(10000, "tons"),
  51165. name: "Top",
  51166. image: {
  51167. source: "./media/characters/aetherios/top.svg"
  51168. }
  51169. },
  51170. bottom: {
  51171. height: math.unit(240, "meters"),
  51172. weight: math.unit(10000, "tons"),
  51173. name: "Bottom",
  51174. image: {
  51175. source: "./media/characters/aetherios/bottom.svg"
  51176. }
  51177. },
  51178. head: {
  51179. height: math.unit(38.6, "meters"),
  51180. name: "Head",
  51181. image: {
  51182. source: "./media/characters/aetherios/head.svg",
  51183. extra: 1335/1112,
  51184. bottom: 0/1335
  51185. }
  51186. },
  51187. front: {
  51188. height: math.unit(29, "meters"),
  51189. name: "Front",
  51190. image: {
  51191. source: "./media/characters/aetherios/front.svg",
  51192. extra: 1266/953,
  51193. bottom: 158/1424
  51194. }
  51195. },
  51196. maw: {
  51197. height: math.unit(16.37, "meters"),
  51198. name: "Maw",
  51199. image: {
  51200. source: "./media/characters/aetherios/maw.svg",
  51201. extra: 748/637,
  51202. bottom: 0/748
  51203. },
  51204. extraAttributes: {
  51205. preyCapacity: {
  51206. name: "Capacity",
  51207. power: 3,
  51208. type: "volume",
  51209. base: math.unit(1000, "people")
  51210. },
  51211. tongueSize: {
  51212. name: "Tongue Size",
  51213. power: 2,
  51214. type: "area",
  51215. base: math.unit(21, "m^2")
  51216. }
  51217. }
  51218. },
  51219. forepaw: {
  51220. height: math.unit(18, "meters"),
  51221. name: "Forepaw",
  51222. image: {
  51223. source: "./media/characters/aetherios/forepaw.svg"
  51224. }
  51225. },
  51226. hindpaw: {
  51227. height: math.unit(23, "meters"),
  51228. name: "Hindpaw",
  51229. image: {
  51230. source: "./media/characters/aetherios/hindpaw.svg"
  51231. }
  51232. },
  51233. genitals: {
  51234. height: math.unit(42, "meters"),
  51235. name: "Genitals",
  51236. image: {
  51237. source: "./media/characters/aetherios/genitals.svg"
  51238. }
  51239. },
  51240. },
  51241. [
  51242. {
  51243. name: "Normal",
  51244. height: math.unit(47.2, "meters"),
  51245. default: true
  51246. },
  51247. {
  51248. name: "Macro",
  51249. height: math.unit(160, "meters")
  51250. },
  51251. {
  51252. name: "Mega",
  51253. height: math.unit(1.87, "km")
  51254. },
  51255. {
  51256. name: "Giga",
  51257. height: math.unit(40000, "km")
  51258. },
  51259. {
  51260. name: "Stellar",
  51261. height: math.unit(158000000, "km")
  51262. },
  51263. {
  51264. name: "Cosmic",
  51265. height: math.unit(9.46e12, "km")
  51266. },
  51267. ]
  51268. ))
  51269. characterMakers.push(() => makeCharacter(
  51270. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51271. {
  51272. front: {
  51273. height: math.unit(5 + 4/12, "feet"),
  51274. weight: math.unit(80, "lb"),
  51275. name: "Front",
  51276. image: {
  51277. source: "./media/characters/mizu-gieeg/front.svg",
  51278. extra: 850/709,
  51279. bottom: 52/902
  51280. }
  51281. },
  51282. back: {
  51283. height: math.unit(5 + 4/12, "feet"),
  51284. weight: math.unit(80, "lb"),
  51285. name: "Back",
  51286. image: {
  51287. source: "./media/characters/mizu-gieeg/back.svg",
  51288. extra: 882/745,
  51289. bottom: 25/907
  51290. }
  51291. },
  51292. },
  51293. [
  51294. {
  51295. name: "Normal",
  51296. height: math.unit(5 + 4/12, "feet"),
  51297. default: true
  51298. },
  51299. ]
  51300. ))
  51301. characterMakers.push(() => makeCharacter(
  51302. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51303. {
  51304. front: {
  51305. height: math.unit(6, "feet"),
  51306. name: "Front",
  51307. image: {
  51308. source: "./media/characters/roselle-st-papier/front.svg",
  51309. extra: 1430/1280,
  51310. bottom: 37/1467
  51311. }
  51312. },
  51313. back: {
  51314. height: math.unit(6, "feet"),
  51315. name: "Back",
  51316. image: {
  51317. source: "./media/characters/roselle-st-papier/back.svg",
  51318. extra: 1491/1296,
  51319. bottom: 23/1514
  51320. }
  51321. },
  51322. ear: {
  51323. height: math.unit(1.26, "feet"),
  51324. name: "Ear",
  51325. image: {
  51326. source: "./media/characters/roselle-st-papier/ear.svg"
  51327. }
  51328. },
  51329. },
  51330. [
  51331. {
  51332. name: "Normal",
  51333. height: math.unit(150, "feet"),
  51334. default: true
  51335. },
  51336. ]
  51337. ))
  51338. characterMakers.push(() => makeCharacter(
  51339. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51340. {
  51341. front: {
  51342. height: math.unit(1, "inches"),
  51343. name: "Front",
  51344. image: {
  51345. source: "./media/characters/valargent/front.svg",
  51346. extra: 1825/1694,
  51347. bottom: 62/1887
  51348. }
  51349. },
  51350. back: {
  51351. height: math.unit(1, "inches"),
  51352. name: "Back",
  51353. image: {
  51354. source: "./media/characters/valargent/back.svg",
  51355. extra: 1775/1682,
  51356. bottom: 88/1863
  51357. }
  51358. },
  51359. },
  51360. [
  51361. {
  51362. name: "Micro",
  51363. height: math.unit(1, "inch"),
  51364. default: true
  51365. },
  51366. ]
  51367. ))
  51368. characterMakers.push(() => makeCharacter(
  51369. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51370. {
  51371. front: {
  51372. height: math.unit(3.4, "meters"),
  51373. name: "Front",
  51374. image: {
  51375. source: "./media/characters/zarina/front.svg",
  51376. extra: 1733/1425,
  51377. bottom: 93/1826
  51378. }
  51379. },
  51380. squatting: {
  51381. height: math.unit(2.14, "meters"),
  51382. name: "Squatting",
  51383. image: {
  51384. source: "./media/characters/zarina/squatting.svg",
  51385. extra: 1073/788,
  51386. bottom: 63/1136
  51387. }
  51388. },
  51389. back: {
  51390. height: math.unit(2.14, "meters"),
  51391. name: "Back",
  51392. image: {
  51393. source: "./media/characters/zarina/back.svg",
  51394. extra: 1128/885,
  51395. bottom: 0/1128
  51396. }
  51397. },
  51398. },
  51399. [
  51400. {
  51401. name: "Normal",
  51402. height: math.unit(3.4, "meters"),
  51403. default: true
  51404. },
  51405. {
  51406. name: "Big",
  51407. height: math.unit(5, "meters")
  51408. },
  51409. {
  51410. name: "Macro",
  51411. height: math.unit(110, "meters")
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51417. {
  51418. front: {
  51419. height: math.unit(7, "feet"),
  51420. name: "Front",
  51421. image: {
  51422. source: "./media/characters/ventus-astro-fox/front.svg",
  51423. extra: 1792/1623,
  51424. bottom: 28/1820
  51425. }
  51426. },
  51427. back: {
  51428. height: math.unit(7, "feet"),
  51429. name: "Back",
  51430. image: {
  51431. source: "./media/characters/ventus-astro-fox/back.svg",
  51432. extra: 1789/1620,
  51433. bottom: 31/1820
  51434. }
  51435. },
  51436. outfit: {
  51437. height: math.unit(7, "feet"),
  51438. name: "Outfit",
  51439. image: {
  51440. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51441. extra: 1054/925,
  51442. bottom: 15/1069
  51443. }
  51444. },
  51445. head: {
  51446. height: math.unit(1.12, "feet"),
  51447. name: "Head",
  51448. image: {
  51449. source: "./media/characters/ventus-astro-fox/head.svg",
  51450. extra: 866/504,
  51451. bottom: 0/866
  51452. }
  51453. },
  51454. hand: {
  51455. height: math.unit(1, "feet"),
  51456. name: "Hand",
  51457. image: {
  51458. source: "./media/characters/ventus-astro-fox/hand.svg"
  51459. }
  51460. },
  51461. paw: {
  51462. height: math.unit(1.5, "feet"),
  51463. name: "Paw",
  51464. image: {
  51465. source: "./media/characters/ventus-astro-fox/paw.svg"
  51466. }
  51467. },
  51468. },
  51469. [
  51470. {
  51471. name: "Normal",
  51472. height: math.unit(7, "feet"),
  51473. default: true
  51474. },
  51475. {
  51476. name: "Macro",
  51477. height: math.unit(200, "feet")
  51478. },
  51479. {
  51480. name: "Cosmic",
  51481. height: math.unit(3, "universes")
  51482. },
  51483. ]
  51484. ))
  51485. characterMakers.push(() => makeCharacter(
  51486. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51487. {
  51488. front: {
  51489. height: math.unit(3, "meters"),
  51490. weight: math.unit(7000, "lb"),
  51491. name: "Front",
  51492. image: {
  51493. source: "./media/characters/core-t/front.svg",
  51494. extra: 5729/4941,
  51495. bottom: 1129/6858
  51496. }
  51497. },
  51498. },
  51499. [
  51500. {
  51501. name: "Big",
  51502. height: math.unit(3, "meters"),
  51503. default: true
  51504. },
  51505. ]
  51506. ))
  51507. characterMakers.push(() => makeCharacter(
  51508. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51509. {
  51510. normal: {
  51511. height: math.unit(6 + 6/12, "feet"),
  51512. weight: math.unit(275, "lb"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/cadbunny/normal.svg",
  51516. extra: 1129/947,
  51517. bottom: 93/1222
  51518. },
  51519. default: true,
  51520. form: "normal"
  51521. },
  51522. gigantamax: {
  51523. height: math.unit(26, "feet"),
  51524. weight: math.unit(16000, "lb"),
  51525. name: "Front",
  51526. image: {
  51527. source: "./media/characters/cadbunny/gigantamax.svg",
  51528. extra: 1133/944,
  51529. bottom: 90/1223
  51530. },
  51531. default: true,
  51532. form: "gigantamax"
  51533. },
  51534. },
  51535. [
  51536. {
  51537. name: "Normal",
  51538. height: math.unit(6 + 6/12, "feet"),
  51539. default: true,
  51540. form: "normal"
  51541. },
  51542. {
  51543. name: "Small",
  51544. height: math.unit(26, "feet"),
  51545. default: true,
  51546. form: "gigantamax"
  51547. },
  51548. {
  51549. name: "Large",
  51550. height: math.unit(78, "feet"),
  51551. form: "gigantamax"
  51552. },
  51553. ],
  51554. {
  51555. "normal": {
  51556. name: "Normal",
  51557. default: true
  51558. },
  51559. "gigantamax": {
  51560. name: "Gigantamax"
  51561. }
  51562. }
  51563. ))
  51564. characterMakers.push(() => makeCharacter(
  51565. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51566. {
  51567. anthroFront: {
  51568. height: math.unit(8, "feet"),
  51569. weight: math.unit(300, "lb"),
  51570. name: "Front",
  51571. image: {
  51572. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51573. extra: 1272/1176,
  51574. bottom: 53/1325
  51575. },
  51576. form: "anthro",
  51577. default: true
  51578. },
  51579. feralSide: {
  51580. height: math.unit(4, "feet"),
  51581. weight: math.unit(250, "lb"),
  51582. name: "Side",
  51583. image: {
  51584. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51585. extra: 731/621,
  51586. bottom: 0/731
  51587. },
  51588. form: "feral",
  51589. default: true
  51590. },
  51591. },
  51592. [
  51593. {
  51594. name: "Regular",
  51595. height: math.unit(8, "feet"),
  51596. form: "anthro"
  51597. },
  51598. {
  51599. name: "Macro",
  51600. height: math.unit(250, "feet"),
  51601. form: "anthro",
  51602. default: true
  51603. },
  51604. {
  51605. name: "Regular",
  51606. height: math.unit(4, "feet"),
  51607. form: "feral"
  51608. },
  51609. {
  51610. name: "Macro",
  51611. height: math.unit(125, "feet"),
  51612. form: "feral",
  51613. default: true
  51614. },
  51615. ],
  51616. {
  51617. "anthro": {
  51618. name: "Anthro",
  51619. default: true
  51620. },
  51621. "feral": {
  51622. name: "Feral",
  51623. },
  51624. }
  51625. ))
  51626. characterMakers.push(() => makeCharacter(
  51627. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51628. {
  51629. front: {
  51630. height: math.unit(11 + 10/12, "feet"),
  51631. weight: math.unit(1587, "kg"),
  51632. name: "Front",
  51633. image: {
  51634. source: "./media/characters/maple-javira-dragon/front.svg",
  51635. extra: 1136/744,
  51636. bottom: 73/1209
  51637. }
  51638. },
  51639. side: {
  51640. height: math.unit(11 + 10/12, "feet"),
  51641. weight: math.unit(1587, "kg"),
  51642. name: "Side",
  51643. image: {
  51644. source: "./media/characters/maple-javira-dragon/side.svg",
  51645. extra: 712/505,
  51646. bottom: 17/729
  51647. }
  51648. },
  51649. head: {
  51650. height: math.unit(8.05, "feet"),
  51651. name: "Head",
  51652. image: {
  51653. source: "./media/characters/maple-javira-dragon/head.svg",
  51654. extra: 1420/1344,
  51655. bottom: 0/1420
  51656. }
  51657. },
  51658. },
  51659. [
  51660. {
  51661. name: "Normal",
  51662. height: math.unit(11 + 10/12, "feet"),
  51663. default: true
  51664. },
  51665. ]
  51666. ))
  51667. characterMakers.push(() => makeCharacter(
  51668. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51669. {
  51670. front: {
  51671. height: math.unit(117, "cm"),
  51672. weight: math.unit(50, "kg"),
  51673. name: "Front",
  51674. image: {
  51675. source: "./media/characters/sonia-wyverntail/front.svg",
  51676. extra: 708/592,
  51677. bottom: 25/733
  51678. }
  51679. },
  51680. },
  51681. [
  51682. {
  51683. name: "Normal",
  51684. height: math.unit(117, "cm"),
  51685. default: true
  51686. },
  51687. ]
  51688. ))
  51689. characterMakers.push(() => makeCharacter(
  51690. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51691. {
  51692. front: {
  51693. height: math.unit(6 + 5/12, "feet"),
  51694. name: "Front",
  51695. image: {
  51696. source: "./media/characters/micah/front.svg",
  51697. extra: 1758/1546,
  51698. bottom: 214/1972
  51699. }
  51700. },
  51701. },
  51702. [
  51703. {
  51704. name: "Normal",
  51705. height: math.unit(6 + 5/12, "feet"),
  51706. default: true
  51707. },
  51708. ]
  51709. ))
  51710. characterMakers.push(() => makeCharacter(
  51711. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51712. {
  51713. front: {
  51714. height: math.unit(1.75, "meters"),
  51715. weight: math.unit(100, "kg"),
  51716. name: "Front",
  51717. image: {
  51718. source: "./media/characters/zarya/front.svg",
  51719. extra: 741/735,
  51720. bottom: 44/785
  51721. },
  51722. extraAttributes: {
  51723. "tailLength": {
  51724. name: "Tail Length",
  51725. power: 1,
  51726. type: "length",
  51727. base: math.unit(180, "cm")
  51728. },
  51729. "pawLength": {
  51730. name: "Paw Length",
  51731. power: 1,
  51732. type: "length",
  51733. base: math.unit(31, "cm")
  51734. },
  51735. }
  51736. },
  51737. side: {
  51738. height: math.unit(1.75, "meters"),
  51739. weight: math.unit(100, "kg"),
  51740. name: "Side",
  51741. image: {
  51742. source: "./media/characters/zarya/side.svg",
  51743. extra: 776/770,
  51744. bottom: 17/793
  51745. },
  51746. extraAttributes: {
  51747. "tailLength": {
  51748. name: "Tail Length",
  51749. power: 1,
  51750. type: "length",
  51751. base: math.unit(180, "cm")
  51752. },
  51753. "pawLength": {
  51754. name: "Paw Length",
  51755. power: 1,
  51756. type: "length",
  51757. base: math.unit(31, "cm")
  51758. },
  51759. }
  51760. },
  51761. back: {
  51762. height: math.unit(1.75, "meters"),
  51763. weight: math.unit(100, "kg"),
  51764. name: "Back",
  51765. image: {
  51766. source: "./media/characters/zarya/back.svg",
  51767. extra: 741/735,
  51768. bottom: 44/785
  51769. },
  51770. extraAttributes: {
  51771. "tailLength": {
  51772. name: "Tail Length",
  51773. power: 1,
  51774. type: "length",
  51775. base: math.unit(180, "cm")
  51776. },
  51777. "pawLength": {
  51778. name: "Paw Length",
  51779. power: 1,
  51780. type: "length",
  51781. base: math.unit(31, "cm")
  51782. },
  51783. }
  51784. },
  51785. frontNoTail: {
  51786. height: math.unit(1.75, "meters"),
  51787. weight: math.unit(100, "kg"),
  51788. name: "Front (No Tail)",
  51789. image: {
  51790. source: "./media/characters/zarya/front-no-tail.svg",
  51791. extra: 741/735,
  51792. bottom: 44/785
  51793. },
  51794. extraAttributes: {
  51795. "tailLength": {
  51796. name: "Tail Length",
  51797. power: 1,
  51798. type: "length",
  51799. base: math.unit(180, "cm")
  51800. },
  51801. "pawLength": {
  51802. name: "Paw Length",
  51803. power: 1,
  51804. type: "length",
  51805. base: math.unit(31, "cm")
  51806. },
  51807. }
  51808. },
  51809. dressed: {
  51810. height: math.unit(1.75, "meters"),
  51811. weight: math.unit(100, "kg"),
  51812. name: "Dressed",
  51813. image: {
  51814. source: "./media/characters/zarya/dressed.svg",
  51815. extra: 683/672,
  51816. bottom: 79/762
  51817. },
  51818. extraAttributes: {
  51819. "tailLength": {
  51820. name: "Tail Length",
  51821. power: 1,
  51822. type: "length",
  51823. base: math.unit(180, "cm")
  51824. },
  51825. "pawLength": {
  51826. name: "Paw Length",
  51827. power: 1,
  51828. type: "length",
  51829. base: math.unit(31, "cm")
  51830. },
  51831. }
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Micro",
  51837. height: math.unit(5, "cm")
  51838. },
  51839. {
  51840. name: "Normal",
  51841. height: math.unit(1.75, "meters"),
  51842. default: true
  51843. },
  51844. {
  51845. name: "Macro",
  51846. height: math.unit(122, "meters")
  51847. },
  51848. ]
  51849. ))
  51850. characterMakers.push(() => makeCharacter(
  51851. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51852. {
  51853. front: {
  51854. height: math.unit(7.5, "feet"),
  51855. name: "Front",
  51856. image: {
  51857. source: "./media/characters/sven-hatisson/front.svg",
  51858. extra: 917/857,
  51859. bottom: 42/959
  51860. }
  51861. },
  51862. back: {
  51863. height: math.unit(7.5, "feet"),
  51864. name: "Back",
  51865. image: {
  51866. source: "./media/characters/sven-hatisson/back.svg",
  51867. extra: 903/856,
  51868. bottom: 15/918
  51869. }
  51870. },
  51871. },
  51872. [
  51873. {
  51874. name: "Base Height",
  51875. height: math.unit(7.5, "feet")
  51876. },
  51877. {
  51878. name: "Usual Height",
  51879. height: math.unit(13.5, "feet"),
  51880. default: true
  51881. },
  51882. {
  51883. name: "Smaller Macro",
  51884. height: math.unit(85, "feet")
  51885. },
  51886. {
  51887. name: "Moderate Macro",
  51888. height: math.unit(320, "feet")
  51889. },
  51890. {
  51891. name: "Large Macro",
  51892. height: math.unit(1000, "feet")
  51893. },
  51894. {
  51895. name: "Largest Size",
  51896. height: math.unit(2, "miles")
  51897. },
  51898. ]
  51899. ))
  51900. characterMakers.push(() => makeCharacter(
  51901. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51902. {
  51903. side: {
  51904. height: math.unit(1.8, "meters"),
  51905. weight: math.unit(275, "kg"),
  51906. name: "Side",
  51907. image: {
  51908. source: "./media/characters/terra/side.svg",
  51909. extra: 1273/1147,
  51910. bottom: 0/1273
  51911. }
  51912. },
  51913. },
  51914. [
  51915. {
  51916. name: "Normal",
  51917. height: math.unit(16.2, "meters"),
  51918. default: true
  51919. },
  51920. ]
  51921. ))
  51922. characterMakers.push(() => makeCharacter(
  51923. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51924. {
  51925. borzoiFront: {
  51926. height: math.unit(6 + 9/12, "feet"),
  51927. name: "Front",
  51928. image: {
  51929. source: "./media/characters/rae/borzoi-front.svg",
  51930. extra: 1161/1098,
  51931. bottom: 31/1192
  51932. },
  51933. form: "borzoi",
  51934. default: true
  51935. },
  51936. werewolfFront: {
  51937. height: math.unit(8 + 7/12, "feet"),
  51938. name: "Front",
  51939. image: {
  51940. source: "./media/characters/rae/werewolf-front.svg",
  51941. extra: 1411/1334,
  51942. bottom: 127/1538
  51943. },
  51944. form: "werewolf",
  51945. default: true
  51946. },
  51947. },
  51948. [
  51949. {
  51950. name: "Normal",
  51951. height: math.unit(6 + 9/12, "feet"),
  51952. default: true,
  51953. form: "borzoi"
  51954. },
  51955. {
  51956. name: "Normal",
  51957. height: math.unit(8 + 7/12, "feet"),
  51958. default: true,
  51959. form: "werewolf"
  51960. },
  51961. ],
  51962. {
  51963. "borzoi": {
  51964. name: "Borzoi",
  51965. default: true
  51966. },
  51967. "werewolf": {
  51968. name: "Werewolf",
  51969. },
  51970. }
  51971. ))
  51972. characterMakers.push(() => makeCharacter(
  51973. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51974. {
  51975. front: {
  51976. height: math.unit(8 + 7/12, "feet"),
  51977. weight: math.unit(482, "lb"),
  51978. name: "Front",
  51979. image: {
  51980. source: "./media/characters/kit/front.svg",
  51981. extra: 1247/1103,
  51982. bottom: 41/1288
  51983. }
  51984. },
  51985. back: {
  51986. height: math.unit(8 + 7/12, "feet"),
  51987. weight: math.unit(482, "lb"),
  51988. name: "Back",
  51989. image: {
  51990. source: "./media/characters/kit/back.svg",
  51991. extra: 1252/1123,
  51992. bottom: 21/1273
  51993. }
  51994. },
  51995. paw: {
  51996. height: math.unit(1.46, "feet"),
  51997. name: "Paw",
  51998. image: {
  51999. source: "./media/characters/kit/paw.svg"
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Normal",
  52006. height: math.unit(2.61, "meters"),
  52007. default: true
  52008. },
  52009. {
  52010. name: "\"Tall\"",
  52011. height: math.unit(8.21, "meters")
  52012. },
  52013. {
  52014. name: "Tall",
  52015. height: math.unit(19.6, "meters")
  52016. },
  52017. {
  52018. name: "Very Tall",
  52019. height: math.unit(57.91, "meters")
  52020. },
  52021. {
  52022. name: "Semi-Macro",
  52023. height: math.unit(138.64, "meters")
  52024. },
  52025. {
  52026. name: "Macro",
  52027. height: math.unit(831.99, "meters")
  52028. },
  52029. {
  52030. name: "EX-Macro",
  52031. height: math.unit(96451121, "meters")
  52032. },
  52033. {
  52034. name: "S1-Omnipotent",
  52035. height: math.unit(4.42074e+9, "meters")
  52036. },
  52037. {
  52038. name: "S2-Omnipotent",
  52039. height: math.unit(9.42074e+17, "meters")
  52040. },
  52041. {
  52042. name: "Omnipotent",
  52043. height: math.unit(4.23112e+24, "meters")
  52044. },
  52045. {
  52046. name: "Hypergod",
  52047. height: math.unit(5.05176e+27, "meters")
  52048. },
  52049. {
  52050. name: "Hypergod-EX",
  52051. height: math.unit(9.45532e+49, "meters")
  52052. },
  52053. {
  52054. name: "Hypergod-SP",
  52055. height: math.unit(9.45532e+195, "meters")
  52056. },
  52057. ]
  52058. ))
  52059. characterMakers.push(() => makeCharacter(
  52060. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52061. {
  52062. side: {
  52063. height: math.unit(0.6, "meters"),
  52064. weight: math.unit(24, "kg"),
  52065. name: "Side",
  52066. image: {
  52067. source: "./media/characters/celeste/side.svg",
  52068. extra: 810/517,
  52069. bottom: 53/863
  52070. }
  52071. },
  52072. },
  52073. [
  52074. {
  52075. name: "Velociraptor",
  52076. height: math.unit(0.6, "meters"),
  52077. default: true
  52078. },
  52079. {
  52080. name: "Utahraptor",
  52081. height: math.unit(1.8, "meters")
  52082. },
  52083. {
  52084. name: "Gallimimus",
  52085. height: math.unit(4.0, "meters")
  52086. },
  52087. {
  52088. name: "Large",
  52089. height: math.unit(20, "meters")
  52090. },
  52091. {
  52092. name: "Planetary",
  52093. height: math.unit(50, "megameters")
  52094. },
  52095. {
  52096. name: "Stellar",
  52097. height: math.unit(1.5, "gigameters")
  52098. },
  52099. {
  52100. name: "Galactic",
  52101. height: math.unit(100, "exameters")
  52102. },
  52103. ]
  52104. ))
  52105. characterMakers.push(() => makeCharacter(
  52106. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52107. {
  52108. front: {
  52109. height: math.unit(6, "feet"),
  52110. weight: math.unit(210, "lb"),
  52111. name: "Front",
  52112. image: {
  52113. source: "./media/characters/glacia/front.svg",
  52114. extra: 958/901,
  52115. bottom: 45/1003
  52116. }
  52117. },
  52118. },
  52119. [
  52120. {
  52121. name: "Macro",
  52122. height: math.unit(1000, "meters"),
  52123. default: true
  52124. },
  52125. ]
  52126. ))
  52127. characterMakers.push(() => makeCharacter(
  52128. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52129. {
  52130. front: {
  52131. height: math.unit(4, "meters"),
  52132. name: "Front",
  52133. image: {
  52134. source: "./media/characters/giri/front.svg",
  52135. extra: 966/894,
  52136. bottom: 21/987
  52137. }
  52138. },
  52139. },
  52140. [
  52141. {
  52142. name: "Normal",
  52143. height: math.unit(4, "meters"),
  52144. default: true
  52145. },
  52146. ]
  52147. ))
  52148. characterMakers.push(() => makeCharacter(
  52149. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52150. {
  52151. back: {
  52152. height: math.unit(4, "feet"),
  52153. weight: math.unit(37, "lb"),
  52154. name: "Back",
  52155. image: {
  52156. source: "./media/characters/tin/back.svg",
  52157. extra: 845/780,
  52158. bottom: 28/873
  52159. }
  52160. },
  52161. },
  52162. [
  52163. {
  52164. name: "Normal",
  52165. height: math.unit(4, "feet"),
  52166. default: true
  52167. },
  52168. ]
  52169. ))
  52170. characterMakers.push(() => makeCharacter(
  52171. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52172. {
  52173. front: {
  52174. height: math.unit(25, "feet"),
  52175. name: "Front",
  52176. image: {
  52177. source: "./media/characters/cadenza-vivace/front.svg",
  52178. extra: 1842/1578,
  52179. bottom: 30/1872
  52180. }
  52181. },
  52182. },
  52183. [
  52184. {
  52185. name: "Macro",
  52186. height: math.unit(25, "feet"),
  52187. default: true
  52188. },
  52189. ]
  52190. ))
  52191. characterMakers.push(() => makeCharacter(
  52192. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52193. {
  52194. front: {
  52195. height: math.unit(10, "feet"),
  52196. weight: math.unit(625, "kg"),
  52197. name: "Front",
  52198. image: {
  52199. source: "./media/characters/zain/front.svg",
  52200. extra: 1682/1498,
  52201. bottom: 223/1905
  52202. }
  52203. },
  52204. back: {
  52205. height: math.unit(10, "feet"),
  52206. weight: math.unit(625, "kg"),
  52207. name: "Back",
  52208. image: {
  52209. source: "./media/characters/zain/back.svg",
  52210. extra: 1814/1657,
  52211. bottom: 152/1966
  52212. }
  52213. },
  52214. head: {
  52215. height: math.unit(10, "feet"),
  52216. weight: math.unit(625, "kg"),
  52217. name: "Head",
  52218. image: {
  52219. source: "./media/characters/zain/head.svg",
  52220. extra: 1059/762,
  52221. bottom: 0/1059
  52222. }
  52223. },
  52224. },
  52225. [
  52226. {
  52227. name: "Normal",
  52228. height: math.unit(10, "feet"),
  52229. default: true
  52230. },
  52231. ]
  52232. ))
  52233. characterMakers.push(() => makeCharacter(
  52234. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52235. {
  52236. front: {
  52237. height: math.unit(6 + 5/12, "feet"),
  52238. weight: math.unit(750, "lb"),
  52239. name: "Front",
  52240. image: {
  52241. source: "./media/characters/ruchex/front.svg",
  52242. extra: 877/820,
  52243. bottom: 17/894
  52244. },
  52245. extraAttributes: {
  52246. "width": {
  52247. name: "Width",
  52248. power: 1,
  52249. type: "length",
  52250. base: math.unit(4.757, "feet")
  52251. },
  52252. }
  52253. },
  52254. },
  52255. [
  52256. {
  52257. name: "Normal",
  52258. height: math.unit(6 + 5/12, "feet"),
  52259. default: true
  52260. },
  52261. ]
  52262. ))
  52263. characterMakers.push(() => makeCharacter(
  52264. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52265. {
  52266. dressedFront: {
  52267. height: math.unit(191, "cm"),
  52268. weight: math.unit(80, "kg"),
  52269. name: "Front",
  52270. image: {
  52271. source: "./media/characters/buster/dressed-front.svg",
  52272. extra: 1022/973,
  52273. bottom: 69/1091
  52274. }
  52275. },
  52276. dressedBack: {
  52277. height: math.unit(191, "cm"),
  52278. weight: math.unit(80, "kg"),
  52279. name: "Back",
  52280. image: {
  52281. source: "./media/characters/buster/dressed-back.svg",
  52282. extra: 1018/970,
  52283. bottom: 55/1073
  52284. }
  52285. },
  52286. nudeFront: {
  52287. height: math.unit(191, "cm"),
  52288. weight: math.unit(80, "kg"),
  52289. name: "Front (Nude)",
  52290. image: {
  52291. source: "./media/characters/buster/nude-front.svg",
  52292. extra: 1022/973,
  52293. bottom: 69/1091
  52294. }
  52295. },
  52296. nudeBack: {
  52297. height: math.unit(191, "cm"),
  52298. weight: math.unit(80, "kg"),
  52299. name: "Back (Nude)",
  52300. image: {
  52301. source: "./media/characters/buster/nude-back.svg",
  52302. extra: 1018/970,
  52303. bottom: 55/1073
  52304. }
  52305. },
  52306. dick: {
  52307. height: math.unit(2.59, "feet"),
  52308. name: "Dick",
  52309. image: {
  52310. source: "./media/characters/buster/dick.svg"
  52311. }
  52312. },
  52313. ass: {
  52314. height: math.unit(1.2, "feet"),
  52315. name: "Ass",
  52316. image: {
  52317. source: "./media/characters/buster/ass.svg"
  52318. }
  52319. },
  52320. },
  52321. [
  52322. {
  52323. name: "Normal",
  52324. height: math.unit(191, "cm"),
  52325. default: true
  52326. },
  52327. ]
  52328. ))
  52329. characterMakers.push(() => makeCharacter(
  52330. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52331. {
  52332. side: {
  52333. height: math.unit(8.1, "feet"),
  52334. weight: math.unit(3500, "lb"),
  52335. name: "Side",
  52336. image: {
  52337. source: "./media/characters/sonya/side.svg",
  52338. extra: 1730/1317,
  52339. bottom: 86/1816
  52340. }
  52341. },
  52342. },
  52343. [
  52344. {
  52345. name: "Normal",
  52346. height: math.unit(8.1, "feet"),
  52347. default: true
  52348. },
  52349. ]
  52350. ))
  52351. characterMakers.push(() => makeCharacter(
  52352. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52353. {
  52354. front: {
  52355. height: math.unit(6, "feet"),
  52356. weight: math.unit(150, "lb"),
  52357. name: "Front",
  52358. image: {
  52359. source: "./media/characters/cadence-andrysiak/front.svg",
  52360. extra: 1164/1121,
  52361. bottom: 60/1224
  52362. }
  52363. },
  52364. back: {
  52365. height: math.unit(6, "feet"),
  52366. weight: math.unit(150, "lb"),
  52367. name: "Back",
  52368. image: {
  52369. source: "./media/characters/cadence-andrysiak/back.svg",
  52370. extra: 1200/1165,
  52371. bottom: 9/1209
  52372. }
  52373. },
  52374. dressed: {
  52375. height: math.unit(6, "feet"),
  52376. weight: math.unit(150, "lb"),
  52377. name: "Dressed",
  52378. image: {
  52379. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52380. extra: 1164/1121,
  52381. bottom: 60/1224
  52382. }
  52383. },
  52384. },
  52385. [
  52386. {
  52387. name: "Micro",
  52388. height: math.unit(1, "mm")
  52389. },
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(6, "feet"),
  52393. default: true
  52394. },
  52395. ]
  52396. ))
  52397. characterMakers.push(() => makeCharacter(
  52398. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52399. {
  52400. front: {
  52401. height: math.unit(60, "inches"),
  52402. weight: math.unit(16, "lb"),
  52403. preyCapacity: math.unit(80, "liters"),
  52404. name: "Front",
  52405. image: {
  52406. source: "./media/characters/penny-lynx/front.svg",
  52407. extra: 1959/1769,
  52408. bottom: 49/2008
  52409. }
  52410. },
  52411. },
  52412. [
  52413. {
  52414. name: "Nokia",
  52415. height: math.unit(2, "inches")
  52416. },
  52417. {
  52418. name: "Desktop",
  52419. height: math.unit(24, "inches")
  52420. },
  52421. {
  52422. name: "TV",
  52423. height: math.unit(60, "inches")
  52424. },
  52425. {
  52426. name: "Jumbotron",
  52427. height: math.unit(12, "feet")
  52428. },
  52429. {
  52430. name: "Billboard",
  52431. height: math.unit(48, "feet"),
  52432. default: true
  52433. },
  52434. {
  52435. name: "IMAX",
  52436. height: math.unit(96, "feet")
  52437. },
  52438. {
  52439. name: "SINGULARITY",
  52440. height: math.unit(864938, "miles")
  52441. },
  52442. ]
  52443. ))
  52444. characterMakers.push(() => makeCharacter(
  52445. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52446. {
  52447. front: {
  52448. height: math.unit(5 + 4/12, "feet"),
  52449. weight: math.unit(230, "lb"),
  52450. name: "Front",
  52451. image: {
  52452. source: "./media/characters/sukebe/front.svg",
  52453. extra: 2130/2038,
  52454. bottom: 90/2220
  52455. }
  52456. },
  52457. back: {
  52458. height: math.unit(3.48, "feet"),
  52459. weight: math.unit(230, "lb"),
  52460. name: "Back",
  52461. image: {
  52462. source: "./media/characters/sukebe/back.svg",
  52463. extra: 1670/1604,
  52464. bottom: 0/1670
  52465. }
  52466. },
  52467. },
  52468. [
  52469. {
  52470. name: "Normal",
  52471. height: math.unit(5 + 4/12, "feet"),
  52472. default: true
  52473. },
  52474. ]
  52475. ))
  52476. characterMakers.push(() => makeCharacter(
  52477. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52478. {
  52479. front: {
  52480. height: math.unit(6, "feet"),
  52481. name: "Front",
  52482. image: {
  52483. source: "./media/characters/nylla/front.svg",
  52484. extra: 1868/1699,
  52485. bottom: 97/1965
  52486. }
  52487. },
  52488. back: {
  52489. height: math.unit(6, "feet"),
  52490. name: "Back",
  52491. image: {
  52492. source: "./media/characters/nylla/back.svg",
  52493. extra: 1889/1712,
  52494. bottom: 93/1982
  52495. }
  52496. },
  52497. frontNsfw: {
  52498. height: math.unit(6, "feet"),
  52499. name: "Front (NSFW)",
  52500. image: {
  52501. source: "./media/characters/nylla/front-nsfw.svg",
  52502. extra: 1868/1699,
  52503. bottom: 97/1965
  52504. },
  52505. extraAttributes: {
  52506. "dickLength": {
  52507. name: "Dick Length",
  52508. power: 1,
  52509. type: "length",
  52510. base: math.unit(1.4, "feet")
  52511. },
  52512. "cumVolume": {
  52513. name: "Cum Volume",
  52514. power: 3,
  52515. type: "volume",
  52516. base: math.unit(100, "mL")
  52517. },
  52518. }
  52519. },
  52520. backNsfw: {
  52521. height: math.unit(6, "feet"),
  52522. name: "Back (NSFW)",
  52523. image: {
  52524. source: "./media/characters/nylla/back-nsfw.svg",
  52525. extra: 1889/1712,
  52526. bottom: 93/1982
  52527. }
  52528. },
  52529. maw: {
  52530. height: math.unit(2.10, "feet"),
  52531. name: "Maw",
  52532. image: {
  52533. source: "./media/characters/nylla/maw.svg"
  52534. }
  52535. },
  52536. paws: {
  52537. height: math.unit(2.06, "feet"),
  52538. name: "Paws",
  52539. image: {
  52540. source: "./media/characters/nylla/paws.svg"
  52541. }
  52542. },
  52543. muzzle: {
  52544. height: math.unit(0.61, "feet"),
  52545. name: "Muzzle",
  52546. image: {
  52547. source: "./media/characters/nylla/muzzle.svg"
  52548. }
  52549. },
  52550. sheath: {
  52551. height: math.unit(1.305, "feet"),
  52552. name: "Sheath",
  52553. image: {
  52554. source: "./media/characters/nylla/sheath.svg"
  52555. }
  52556. },
  52557. },
  52558. [
  52559. {
  52560. name: "Micro",
  52561. height: math.unit(7.5, "inches")
  52562. },
  52563. {
  52564. name: "Normal",
  52565. height: math.unit(7, "feet"),
  52566. default: true
  52567. },
  52568. {
  52569. name: "Macro",
  52570. height: math.unit(60, "feet")
  52571. },
  52572. {
  52573. name: "Mega",
  52574. height: math.unit(200, "feet")
  52575. },
  52576. ]
  52577. ))
  52578. characterMakers.push(() => makeCharacter(
  52579. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52580. {
  52581. front: {
  52582. height: math.unit(10, "feet"),
  52583. weight: math.unit(2300, "lb"),
  52584. name: "Front",
  52585. image: {
  52586. source: "./media/characters/hunt3r/front.svg",
  52587. extra: 1909/1742,
  52588. bottom: 46/1955
  52589. }
  52590. },
  52591. },
  52592. [
  52593. {
  52594. name: "Normal",
  52595. height: math.unit(10, "feet"),
  52596. default: true
  52597. },
  52598. ]
  52599. ))
  52600. characterMakers.push(() => makeCharacter(
  52601. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52602. {
  52603. dressed: {
  52604. height: math.unit(11, "feet"),
  52605. weight: math.unit(18500, "lb"),
  52606. preyCapacity: math.unit(9, "people"),
  52607. name: "Dressed",
  52608. image: {
  52609. source: "./media/characters/cylphis/dressed.svg",
  52610. extra: 1028/1003,
  52611. bottom: 75/1103
  52612. },
  52613. },
  52614. undressed: {
  52615. height: math.unit(11, "feet"),
  52616. weight: math.unit(18500, "lb"),
  52617. preyCapacity: math.unit(9, "people"),
  52618. name: "Undressed",
  52619. image: {
  52620. source: "./media/characters/cylphis/undressed.svg",
  52621. extra: 1028/1003,
  52622. bottom: 75/1103
  52623. }
  52624. },
  52625. full: {
  52626. height: math.unit(11, "feet"),
  52627. weight: math.unit(18500 + 150*9, "lb"),
  52628. preyCapacity: math.unit(9, "people"),
  52629. name: "Full",
  52630. image: {
  52631. source: "./media/characters/cylphis/full.svg",
  52632. extra: 1028/1003,
  52633. bottom: 75/1103
  52634. }
  52635. },
  52636. },
  52637. [
  52638. {
  52639. name: "Small",
  52640. height: math.unit(8, "feet")
  52641. },
  52642. {
  52643. name: "Normal",
  52644. height: math.unit(11, "feet"),
  52645. default: true
  52646. },
  52647. ]
  52648. ))
  52649. characterMakers.push(() => makeCharacter(
  52650. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52651. {
  52652. front: {
  52653. height: math.unit(2 + 7/12, "feet"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/orishan/front.svg",
  52657. extra: 1058/1023,
  52658. bottom: 23/1081
  52659. }
  52660. },
  52661. back: {
  52662. height: math.unit(2 + 7/12, "feet"),
  52663. name: "Back",
  52664. image: {
  52665. source: "./media/characters/orishan/back.svg",
  52666. extra: 1058/1023,
  52667. bottom: 23/1081
  52668. }
  52669. },
  52670. },
  52671. [
  52672. {
  52673. name: "Micro",
  52674. height: math.unit(2, "cm")
  52675. },
  52676. {
  52677. name: "Normal",
  52678. height: math.unit(2 + 7/12, "feet"),
  52679. default: true
  52680. },
  52681. ]
  52682. ))
  52683. characterMakers.push(() => makeCharacter(
  52684. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52685. {
  52686. front: {
  52687. height: math.unit(3, "meters"),
  52688. weight: math.unit(508, "kg"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/seranis/front.svg",
  52692. extra: 1478/1454,
  52693. bottom: 41/1519
  52694. }
  52695. },
  52696. },
  52697. [
  52698. {
  52699. name: "Normal",
  52700. height: math.unit(3, "meters"),
  52701. default: true
  52702. },
  52703. {
  52704. name: "Macro",
  52705. height: math.unit(108, "meters")
  52706. },
  52707. {
  52708. name: "Megamacro",
  52709. height: math.unit(1250, "meters")
  52710. },
  52711. ]
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52715. {
  52716. undressed: {
  52717. height: math.unit(5 + 3/12, "feet"),
  52718. name: "Undressed",
  52719. image: {
  52720. source: "./media/characters/ankou/undressed.svg",
  52721. extra: 1301/1213,
  52722. bottom: 87/1388
  52723. }
  52724. },
  52725. dressed: {
  52726. height: math.unit(5 + 3/12, "feet"),
  52727. name: "Dressed",
  52728. image: {
  52729. source: "./media/characters/ankou/dressed.svg",
  52730. extra: 1301/1213,
  52731. bottom: 87/1388
  52732. }
  52733. },
  52734. head: {
  52735. height: math.unit(1.61, "feet"),
  52736. name: "Head",
  52737. image: {
  52738. source: "./media/characters/ankou/head.svg"
  52739. }
  52740. },
  52741. },
  52742. [
  52743. {
  52744. name: "Normal",
  52745. height: math.unit(5 + 3/12, "feet"),
  52746. default: true
  52747. },
  52748. ]
  52749. ))
  52750. characterMakers.push(() => makeCharacter(
  52751. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52752. {
  52753. side: {
  52754. height: math.unit(6 + 3/12, "feet"),
  52755. weight: math.unit(200, "kg"),
  52756. name: "Side",
  52757. image: {
  52758. source: "./media/characters/juniper-skunktaur/side.svg",
  52759. extra: 1574/1229,
  52760. bottom: 38/1612
  52761. }
  52762. },
  52763. front: {
  52764. height: math.unit(6 + 3/12, "feet"),
  52765. weight: math.unit(200, "kg"),
  52766. name: "Front",
  52767. image: {
  52768. source: "./media/characters/juniper-skunktaur/front.svg",
  52769. extra: 1337/1278,
  52770. bottom: 22/1359
  52771. }
  52772. },
  52773. back: {
  52774. height: math.unit(6 + 3/12, "feet"),
  52775. weight: math.unit(200, "kg"),
  52776. name: "Back",
  52777. image: {
  52778. source: "./media/characters/juniper-skunktaur/back.svg",
  52779. extra: 1618/1273,
  52780. bottom: 13/1631
  52781. }
  52782. },
  52783. top: {
  52784. height: math.unit(2.62, "feet"),
  52785. weight: math.unit(200, "kg"),
  52786. name: "Top",
  52787. image: {
  52788. source: "./media/characters/juniper-skunktaur/top.svg"
  52789. }
  52790. },
  52791. },
  52792. [
  52793. {
  52794. name: "Normal",
  52795. height: math.unit(6 + 3/12, "feet"),
  52796. default: true
  52797. },
  52798. ]
  52799. ))
  52800. characterMakers.push(() => makeCharacter(
  52801. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52802. {
  52803. front: {
  52804. height: math.unit(20.5, "feet"),
  52805. name: "Front",
  52806. image: {
  52807. source: "./media/characters/rei/front.svg",
  52808. extra: 1349/1195,
  52809. bottom: 31/1380
  52810. }
  52811. },
  52812. back: {
  52813. height: math.unit(20.5, "feet"),
  52814. name: "Back",
  52815. image: {
  52816. source: "./media/characters/rei/back.svg",
  52817. extra: 1358/1204,
  52818. bottom: 22/1380
  52819. }
  52820. },
  52821. pawsDigi: {
  52822. height: math.unit(3.45, "feet"),
  52823. name: "Paws (Digi)",
  52824. image: {
  52825. source: "./media/characters/rei/paws-digi.svg"
  52826. }
  52827. },
  52828. pawsPlanti: {
  52829. height: math.unit(3.45, "feet"),
  52830. name: "Paws (Planti)",
  52831. image: {
  52832. source: "./media/characters/rei/paws-planti.svg"
  52833. }
  52834. },
  52835. },
  52836. [
  52837. {
  52838. name: "Normal",
  52839. height: math.unit(20.5, "feet"),
  52840. default: true
  52841. },
  52842. ]
  52843. ))
  52844. characterMakers.push(() => makeCharacter(
  52845. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52846. {
  52847. front: {
  52848. height: math.unit(5 + 11/12, "feet"),
  52849. name: "Front",
  52850. image: {
  52851. source: "./media/characters/carina/front.svg",
  52852. extra: 1720/1449,
  52853. bottom: 14/1734
  52854. }
  52855. },
  52856. back: {
  52857. height: math.unit(5 + 11/12, "feet"),
  52858. name: "Back",
  52859. image: {
  52860. source: "./media/characters/carina/back.svg",
  52861. extra: 1493/1445,
  52862. bottom: 17/1510
  52863. }
  52864. },
  52865. paw: {
  52866. height: math.unit(0.92, "feet"),
  52867. name: "Paw",
  52868. image: {
  52869. source: "./media/characters/carina/paw.svg"
  52870. }
  52871. },
  52872. },
  52873. [
  52874. {
  52875. name: "Normal",
  52876. height: math.unit(5 + 11/12, "feet"),
  52877. default: true
  52878. },
  52879. ]
  52880. ))
  52881. characterMakers.push(() => makeCharacter(
  52882. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52883. {
  52884. normal_front: {
  52885. height: math.unit(4.88, "meters"),
  52886. name: "Front",
  52887. image: {
  52888. source: "./media/characters/maya/normal-front.svg",
  52889. extra: 1222/1145,
  52890. bottom: 57/1279
  52891. },
  52892. form: "normal",
  52893. default: true
  52894. },
  52895. monstrous_front: {
  52896. height: math.unit(10, "meters"),
  52897. name: "Front",
  52898. image: {
  52899. source: "./media/characters/maya/monstrous-front.svg",
  52900. extra: 1523/1109,
  52901. bottom: 113/1636
  52902. },
  52903. form: "monstrous",
  52904. extraAttributes: {
  52905. "swallowSize": {
  52906. name: "Tailmaw Bite Size",
  52907. power: 3,
  52908. type: "volume",
  52909. base: math.unit(43000, "liters")
  52910. },
  52911. }
  52912. },
  52913. taur_front: {
  52914. height: math.unit(10, "meters"),
  52915. name: "Front",
  52916. image: {
  52917. source: "./media/characters/maya/taur-front.svg",
  52918. extra: 743/506,
  52919. bottom: 101/844
  52920. },
  52921. form: "taur",
  52922. },
  52923. },
  52924. [
  52925. {
  52926. name: "Normal",
  52927. height: math.unit(4.88, "meters"),
  52928. default: true,
  52929. form: "normal"
  52930. },
  52931. {
  52932. name: "Macro",
  52933. height: math.unit(38.1, "meters"),
  52934. form: "normal"
  52935. },
  52936. {
  52937. name: "Macro+",
  52938. height: math.unit(152.4, "meters"),
  52939. form: "normal"
  52940. },
  52941. {
  52942. name: "Macro++",
  52943. height: math.unit(16.09, "km"),
  52944. form: "normal"
  52945. },
  52946. {
  52947. name: "Mega-macro",
  52948. height: math.unit(700, "megameters"),
  52949. form: "normal"
  52950. },
  52951. {
  52952. name: "Satiated",
  52953. height: math.unit(10, "meters"),
  52954. default: true,
  52955. form: "monstrous"
  52956. },
  52957. {
  52958. name: "Hungry",
  52959. height: math.unit(75, "meters"),
  52960. form: "monstrous"
  52961. },
  52962. {
  52963. name: "Ravenous",
  52964. height: math.unit(500, "meters"),
  52965. form: "monstrous"
  52966. },
  52967. {
  52968. name: "\"Normal\"",
  52969. height: math.unit(10, "meters"),
  52970. form: "taur"
  52971. },
  52972. {
  52973. name: "Macro",
  52974. height: math.unit(50, "meters"),
  52975. form: "taur"
  52976. },
  52977. ],
  52978. {
  52979. "normal": {
  52980. name: "Normal",
  52981. default: true
  52982. },
  52983. "monstrous": {
  52984. name: "Monstrous",
  52985. },
  52986. "taur": {
  52987. name: "Taur",
  52988. },
  52989. }
  52990. ))
  52991. characterMakers.push(() => makeCharacter(
  52992. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52993. {
  52994. front: {
  52995. height: math.unit(6 + 2/12, "feet"),
  52996. weight: math.unit(500, "lb"),
  52997. preyCapacity: math.unit(4, "people"),
  52998. name: "Front",
  52999. image: {
  53000. source: "./media/characters/yepir/front.svg"
  53001. }
  53002. },
  53003. side: {
  53004. height: math.unit(6 + 2/12, "feet"),
  53005. weight: math.unit(500, "lb"),
  53006. preyCapacity: math.unit(4, "people"),
  53007. name: "Side",
  53008. image: {
  53009. source: "./media/characters/yepir/side.svg"
  53010. }
  53011. },
  53012. paw: {
  53013. height: math.unit(1.05, "feet"),
  53014. name: "Paw",
  53015. image: {
  53016. source: "./media/characters/yepir/paw.svg"
  53017. }
  53018. },
  53019. },
  53020. [
  53021. {
  53022. name: "Normal",
  53023. height: math.unit(6 + 2/12, "feet"),
  53024. default: true
  53025. },
  53026. ]
  53027. ))
  53028. characterMakers.push(() => makeCharacter(
  53029. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53030. {
  53031. front: {
  53032. height: math.unit(5 + 4/12, "feet"),
  53033. name: "Front",
  53034. image: {
  53035. source: "./media/characters/russec/front.svg",
  53036. extra: 1926/1626,
  53037. bottom: 72/1998
  53038. }
  53039. },
  53040. back: {
  53041. height: math.unit(5 + 4/12, "feet"),
  53042. name: "Back",
  53043. image: {
  53044. source: "./media/characters/russec/back.svg",
  53045. extra: 1910/1591,
  53046. bottom: 48/1958
  53047. }
  53048. },
  53049. },
  53050. [
  53051. {
  53052. name: "Small",
  53053. height: math.unit(5 + 4/12, "feet")
  53054. },
  53055. {
  53056. name: "Normal",
  53057. height: math.unit(72, "feet"),
  53058. default: true
  53059. },
  53060. ]
  53061. ))
  53062. characterMakers.push(() => makeCharacter(
  53063. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53064. {
  53065. side: {
  53066. height: math.unit(12, "feet"),
  53067. name: "Side",
  53068. image: {
  53069. source: "./media/characters/cianus/side.svg",
  53070. extra: 808/526,
  53071. bottom: 61/869
  53072. }
  53073. },
  53074. },
  53075. [
  53076. {
  53077. name: "Normal",
  53078. height: math.unit(12, "feet"),
  53079. default: true
  53080. },
  53081. ]
  53082. ))
  53083. characterMakers.push(() => makeCharacter(
  53084. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53085. {
  53086. front: {
  53087. height: math.unit(9 + 6/12, "feet"),
  53088. weight: math.unit(300, "lb"),
  53089. name: "Front",
  53090. image: {
  53091. source: "./media/characters/ahab/front.svg",
  53092. extra: 1897/1868,
  53093. bottom: 121/2018
  53094. }
  53095. },
  53096. frontNsfw: {
  53097. height: math.unit(9 + 6/12, "feet"),
  53098. weight: math.unit(300, "lb"),
  53099. name: "Front-nsfw",
  53100. image: {
  53101. source: "./media/characters/ahab/front-nsfw.svg",
  53102. extra: 1897/1868,
  53103. bottom: 121/2018
  53104. }
  53105. },
  53106. },
  53107. [
  53108. {
  53109. name: "Normal",
  53110. height: math.unit(9 + 6/12, "feet")
  53111. },
  53112. {
  53113. name: "Macro",
  53114. height: math.unit(657, "feet"),
  53115. default: true
  53116. },
  53117. ]
  53118. ))
  53119. characterMakers.push(() => makeCharacter(
  53120. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53121. {
  53122. front: {
  53123. height: math.unit(2.69, "meters"),
  53124. weight: math.unit(132, "kg"),
  53125. name: "Front",
  53126. image: {
  53127. source: "./media/characters/aarkus/front.svg",
  53128. extra: 1400/1231,
  53129. bottom: 34/1434
  53130. }
  53131. },
  53132. back: {
  53133. height: math.unit(2.69, "meters"),
  53134. weight: math.unit(132, "kg"),
  53135. name: "Back",
  53136. image: {
  53137. source: "./media/characters/aarkus/back.svg",
  53138. extra: 1381/1218,
  53139. bottom: 30/1411
  53140. }
  53141. },
  53142. frontNsfw: {
  53143. height: math.unit(2.69, "meters"),
  53144. weight: math.unit(132, "kg"),
  53145. name: "Front (NSFW)",
  53146. image: {
  53147. source: "./media/characters/aarkus/front-nsfw.svg",
  53148. extra: 1400/1231,
  53149. bottom: 34/1434
  53150. }
  53151. },
  53152. foot: {
  53153. height: math.unit(1.45, "feet"),
  53154. name: "Foot",
  53155. image: {
  53156. source: "./media/characters/aarkus/foot.svg"
  53157. }
  53158. },
  53159. head: {
  53160. height: math.unit(2.85, "feet"),
  53161. name: "Head",
  53162. image: {
  53163. source: "./media/characters/aarkus/head.svg"
  53164. }
  53165. },
  53166. headAlt: {
  53167. height: math.unit(3.07, "feet"),
  53168. name: "Head (Alt)",
  53169. image: {
  53170. source: "./media/characters/aarkus/head-alt.svg"
  53171. }
  53172. },
  53173. mouth: {
  53174. height: math.unit(1.25, "feet"),
  53175. name: "Mouth",
  53176. image: {
  53177. source: "./media/characters/aarkus/mouth.svg"
  53178. }
  53179. },
  53180. dick: {
  53181. height: math.unit(1.77, "feet"),
  53182. name: "Dick",
  53183. image: {
  53184. source: "./media/characters/aarkus/dick.svg"
  53185. }
  53186. },
  53187. },
  53188. [
  53189. {
  53190. name: "Normal",
  53191. height: math.unit(2.69, "meters"),
  53192. default: true
  53193. },
  53194. {
  53195. name: "Macro",
  53196. height: math.unit(269, "meters")
  53197. },
  53198. {
  53199. name: "Macro+",
  53200. height: math.unit(672.5, "meters")
  53201. },
  53202. {
  53203. name: "Megamacro",
  53204. height: math.unit(2.017, "km")
  53205. },
  53206. ]
  53207. ))
  53208. characterMakers.push(() => makeCharacter(
  53209. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53210. {
  53211. front: {
  53212. height: math.unit(23.47, "cm"),
  53213. weight: math.unit(600, "grams"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/diode/front.svg",
  53217. extra: 1778/1396,
  53218. bottom: 95/1873
  53219. }
  53220. },
  53221. side: {
  53222. height: math.unit(23.47, "cm"),
  53223. weight: math.unit(600, "grams"),
  53224. name: "Side",
  53225. image: {
  53226. source: "./media/characters/diode/side.svg",
  53227. extra: 1831/1404,
  53228. bottom: 86/1917
  53229. }
  53230. },
  53231. wings: {
  53232. height: math.unit(0.683, "feet"),
  53233. name: "Wings",
  53234. image: {
  53235. source: "./media/characters/diode/wings.svg"
  53236. }
  53237. },
  53238. },
  53239. [
  53240. {
  53241. name: "Normal",
  53242. height: math.unit(23.47, "cm"),
  53243. default: true
  53244. },
  53245. ]
  53246. ))
  53247. characterMakers.push(() => makeCharacter(
  53248. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53249. {
  53250. front: {
  53251. height: math.unit(6 + 3/12, "feet"),
  53252. weight: math.unit(250, "lb"),
  53253. name: "Front",
  53254. image: {
  53255. source: "./media/characters/reika/front.svg",
  53256. extra: 1120/1078,
  53257. bottom: 86/1206
  53258. }
  53259. },
  53260. },
  53261. [
  53262. {
  53263. name: "Normal",
  53264. height: math.unit(6 + 3/12, "feet"),
  53265. default: true
  53266. },
  53267. ]
  53268. ))
  53269. characterMakers.push(() => makeCharacter(
  53270. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53271. {
  53272. front: {
  53273. height: math.unit(16 + 8/12, "feet"),
  53274. weight: math.unit(9000, "lb"),
  53275. name: "Front",
  53276. image: {
  53277. source: "./media/characters/lokuto-takama/front.svg",
  53278. extra: 1774/1632,
  53279. bottom: 147/1921
  53280. },
  53281. extraAttributes: {
  53282. "bustWidth": {
  53283. name: "Bust Width",
  53284. power: 1,
  53285. type: "length",
  53286. base: math.unit(2.4, "meters")
  53287. },
  53288. "breastWeight": {
  53289. name: "Breast Weight",
  53290. power: 3,
  53291. type: "mass",
  53292. base: math.unit(1000, "kg")
  53293. },
  53294. }
  53295. },
  53296. },
  53297. [
  53298. {
  53299. name: "Normal",
  53300. height: math.unit(16 + 8/12, "feet"),
  53301. default: true
  53302. },
  53303. ]
  53304. ))
  53305. characterMakers.push(() => makeCharacter(
  53306. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53307. {
  53308. front: {
  53309. height: math.unit(10, "cm"),
  53310. weight: math.unit(850, "grams"),
  53311. name: "Front",
  53312. image: {
  53313. source: "./media/characters/owak-bone/front.svg",
  53314. extra: 1965/1801,
  53315. bottom: 31/1996
  53316. }
  53317. },
  53318. },
  53319. [
  53320. {
  53321. name: "Normal",
  53322. height: math.unit(10, "cm"),
  53323. default: true
  53324. },
  53325. ]
  53326. ))
  53327. characterMakers.push(() => makeCharacter(
  53328. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53329. {
  53330. front: {
  53331. height: math.unit(2 + 6/12, "feet"),
  53332. weight: math.unit(9, "lb"),
  53333. name: "Front",
  53334. image: {
  53335. source: "./media/characters/muffin/front.svg",
  53336. extra: 1220/1195,
  53337. bottom: 84/1304
  53338. }
  53339. },
  53340. },
  53341. [
  53342. {
  53343. name: "Normal",
  53344. height: math.unit(2 + 6/12, "feet"),
  53345. default: true
  53346. },
  53347. ]
  53348. ))
  53349. characterMakers.push(() => makeCharacter(
  53350. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53351. {
  53352. front: {
  53353. height: math.unit(7, "feet"),
  53354. name: "Front",
  53355. image: {
  53356. source: "./media/characters/chimera/front.svg",
  53357. extra: 1752/1614,
  53358. bottom: 68/1820
  53359. }
  53360. },
  53361. },
  53362. [
  53363. {
  53364. name: "Normal",
  53365. height: math.unit(7, "feet")
  53366. },
  53367. {
  53368. name: "Gigamacro",
  53369. height: math.unit(2.9, "gigameters"),
  53370. default: true
  53371. },
  53372. {
  53373. name: "Universal",
  53374. height: math.unit(1.56e26, "yottameters")
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53380. {
  53381. front: {
  53382. height: math.unit(3, "feet"),
  53383. weight: math.unit(20, "lb"),
  53384. name: "Front",
  53385. image: {
  53386. source: "./media/characters/kit-fennec-fox/front.svg",
  53387. extra: 1027/932,
  53388. bottom: 16/1043
  53389. }
  53390. },
  53391. back: {
  53392. height: math.unit(3, "feet"),
  53393. weight: math.unit(20, "lb"),
  53394. name: "Back",
  53395. image: {
  53396. source: "./media/characters/kit-fennec-fox/back.svg",
  53397. extra: 1027/932,
  53398. bottom: 16/1043
  53399. }
  53400. },
  53401. },
  53402. [
  53403. {
  53404. name: "Normal",
  53405. height: math.unit(3, "feet"),
  53406. default: true
  53407. },
  53408. ]
  53409. ))
  53410. characterMakers.push(() => makeCharacter(
  53411. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53412. {
  53413. front: {
  53414. height: math.unit(167, "cm"),
  53415. name: "Front",
  53416. image: {
  53417. source: "./media/characters/blue-otter/front.svg",
  53418. extra: 1951/1920,
  53419. bottom: 31/1982
  53420. }
  53421. },
  53422. },
  53423. [
  53424. {
  53425. name: "Otter-Sized",
  53426. height: math.unit(100, "cm")
  53427. },
  53428. {
  53429. name: "Normal",
  53430. height: math.unit(167, "cm"),
  53431. default: true
  53432. },
  53433. ]
  53434. ))
  53435. characterMakers.push(() => makeCharacter(
  53436. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53437. {
  53438. front: {
  53439. height: math.unit(4 + 4/12, "feet"),
  53440. name: "Front",
  53441. image: {
  53442. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53443. extra: 1072/1067,
  53444. bottom: 117/1189
  53445. }
  53446. },
  53447. back: {
  53448. height: math.unit(4 + 4/12, "feet"),
  53449. name: "Back",
  53450. image: {
  53451. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53452. extra: 1135/1129,
  53453. bottom: 57/1192
  53454. }
  53455. },
  53456. head: {
  53457. height: math.unit(1.77, "feet"),
  53458. name: "Head",
  53459. image: {
  53460. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53461. }
  53462. },
  53463. },
  53464. [
  53465. {
  53466. name: "Normal",
  53467. height: math.unit(4 + 4/12, "feet"),
  53468. default: true
  53469. },
  53470. ]
  53471. ))
  53472. characterMakers.push(() => makeCharacter(
  53473. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53474. {
  53475. front: {
  53476. height: math.unit(2, "inches"),
  53477. name: "Front",
  53478. image: {
  53479. source: "./media/characters/carley-hartford/front.svg",
  53480. extra: 1035/988,
  53481. bottom: 23/1058
  53482. }
  53483. },
  53484. back: {
  53485. height: math.unit(2, "inches"),
  53486. name: "Back",
  53487. image: {
  53488. source: "./media/characters/carley-hartford/back.svg",
  53489. extra: 1035/988,
  53490. bottom: 23/1058
  53491. }
  53492. },
  53493. dressed: {
  53494. height: math.unit(2, "inches"),
  53495. name: "Dressed",
  53496. image: {
  53497. source: "./media/characters/carley-hartford/dressed.svg",
  53498. extra: 651/620,
  53499. bottom: 0/651
  53500. }
  53501. },
  53502. },
  53503. [
  53504. {
  53505. name: "Micro",
  53506. height: math.unit(2, "inches"),
  53507. default: true
  53508. },
  53509. {
  53510. name: "Macro",
  53511. height: math.unit(6 + 3/12, "feet")
  53512. },
  53513. ]
  53514. ))
  53515. characterMakers.push(() => makeCharacter(
  53516. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53517. {
  53518. front: {
  53519. height: math.unit(2 + 3/12, "feet"),
  53520. weight: math.unit(15 + 7/16, "lb"),
  53521. name: "Front",
  53522. image: {
  53523. source: "./media/characters/duke/front.svg",
  53524. extra: 910/815,
  53525. bottom: 30/940
  53526. }
  53527. },
  53528. },
  53529. [
  53530. {
  53531. name: "Normal",
  53532. height: math.unit(2 + 3/12, "feet"),
  53533. default: true
  53534. },
  53535. ]
  53536. ))
  53537. characterMakers.push(() => makeCharacter(
  53538. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53539. {
  53540. front: {
  53541. height: math.unit(5 + 4/12, "feet"),
  53542. weight: math.unit(156, "lb"),
  53543. name: "Front",
  53544. image: {
  53545. source: "./media/characters/dein/front.svg",
  53546. extra: 855/815,
  53547. bottom: 48/903
  53548. }
  53549. },
  53550. side: {
  53551. height: math.unit(5 + 4/12, "feet"),
  53552. weight: math.unit(156, "lb"),
  53553. name: "side",
  53554. image: {
  53555. source: "./media/characters/dein/side.svg",
  53556. extra: 846/803,
  53557. bottom: 25/871
  53558. }
  53559. },
  53560. maw: {
  53561. height: math.unit(1.45, "feet"),
  53562. name: "Maw",
  53563. image: {
  53564. source: "./media/characters/dein/maw.svg"
  53565. }
  53566. },
  53567. },
  53568. [
  53569. {
  53570. name: "Ferret Sized",
  53571. height: math.unit(2 + 5/12, "feet")
  53572. },
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(5 + 4/12, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53582. {
  53583. front: {
  53584. height: math.unit(84 + 8/12, "feet"),
  53585. weight: math.unit(942180, "lb"),
  53586. name: "Front",
  53587. image: {
  53588. source: "./media/characters/daurine-arima/front.svg",
  53589. extra: 1989/1782,
  53590. bottom: 37/2026
  53591. }
  53592. },
  53593. side: {
  53594. height: math.unit(84 + 8/12, "feet"),
  53595. weight: math.unit(942180, "lb"),
  53596. name: "Side",
  53597. image: {
  53598. source: "./media/characters/daurine-arima/side.svg",
  53599. extra: 1997/1790,
  53600. bottom: 21/2018
  53601. }
  53602. },
  53603. back: {
  53604. height: math.unit(84 + 8/12, "feet"),
  53605. weight: math.unit(942180, "lb"),
  53606. name: "Back",
  53607. image: {
  53608. source: "./media/characters/daurine-arima/back.svg",
  53609. extra: 1992/1800,
  53610. bottom: 12/2004
  53611. }
  53612. },
  53613. head: {
  53614. height: math.unit(15.5, "feet"),
  53615. name: "Head",
  53616. image: {
  53617. source: "./media/characters/daurine-arima/head.svg"
  53618. }
  53619. },
  53620. headAlt: {
  53621. height: math.unit(19.19, "feet"),
  53622. name: "Head (Alt)",
  53623. image: {
  53624. source: "./media/characters/daurine-arima/head-alt.svg"
  53625. }
  53626. },
  53627. },
  53628. [
  53629. {
  53630. name: "Minimum height",
  53631. height: math.unit(8 + 10/12, "feet")
  53632. },
  53633. {
  53634. name: "Comfort height",
  53635. height: math.unit(19 + 6 /12, "feet")
  53636. },
  53637. {
  53638. name: "\"Normal\" height",
  53639. height: math.unit(28 + 10/12, "feet")
  53640. },
  53641. {
  53642. name: "Base height",
  53643. height: math.unit(84 + 8/12, "feet"),
  53644. default: true
  53645. },
  53646. {
  53647. name: "Mini-macro",
  53648. height: math.unit(2360, "feet")
  53649. },
  53650. {
  53651. name: "Macro",
  53652. height: math.unit(10, "miles")
  53653. },
  53654. {
  53655. name: "Goddess",
  53656. height: math.unit(9.99e40, "yottameters")
  53657. },
  53658. ]
  53659. ))
  53660. characterMakers.push(() => makeCharacter(
  53661. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53662. {
  53663. front: {
  53664. height: math.unit(2.3, "meters"),
  53665. name: "Front",
  53666. image: {
  53667. source: "./media/characters/cilenomon/front.svg",
  53668. extra: 1963/1778,
  53669. bottom: 54/2017
  53670. }
  53671. },
  53672. },
  53673. [
  53674. {
  53675. name: "Normal",
  53676. height: math.unit(2.3, "meters"),
  53677. default: true
  53678. },
  53679. {
  53680. name: "Big",
  53681. height: math.unit(5, "meters")
  53682. },
  53683. {
  53684. name: "Macro",
  53685. height: math.unit(30, "meters")
  53686. },
  53687. {
  53688. name: "True",
  53689. height: math.unit(1, "universe")
  53690. },
  53691. ]
  53692. ))
  53693. characterMakers.push(() => makeCharacter(
  53694. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53695. {
  53696. front: {
  53697. height: math.unit(5, "feet"),
  53698. name: "Front",
  53699. image: {
  53700. source: "./media/characters/sen-mink/front.svg",
  53701. extra: 1727/1675,
  53702. bottom: 35/1762
  53703. }
  53704. },
  53705. },
  53706. [
  53707. {
  53708. name: "Normal",
  53709. height: math.unit(5, "feet"),
  53710. default: true
  53711. },
  53712. ]
  53713. ))
  53714. characterMakers.push(() => makeCharacter(
  53715. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53716. {
  53717. front: {
  53718. height: math.unit(5.42999, "feet"),
  53719. weight: math.unit(100, "lb"),
  53720. name: "Front",
  53721. image: {
  53722. source: "./media/characters/ophois/front.svg",
  53723. extra: 1429/1286,
  53724. bottom: 60/1489
  53725. }
  53726. },
  53727. },
  53728. [
  53729. {
  53730. name: "Normal",
  53731. height: math.unit(5.42999, "feet"),
  53732. default: true
  53733. },
  53734. ]
  53735. ))
  53736. characterMakers.push(() => makeCharacter(
  53737. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53738. {
  53739. front: {
  53740. height: math.unit(2, "meters"),
  53741. name: "Front",
  53742. image: {
  53743. source: "./media/characters/riley/front.svg",
  53744. extra: 1779/1754,
  53745. bottom: 139/1918
  53746. }
  53747. },
  53748. },
  53749. [
  53750. {
  53751. name: "Normal",
  53752. height: math.unit(2, "meters"),
  53753. default: true
  53754. },
  53755. ]
  53756. ))
  53757. characterMakers.push(() => makeCharacter(
  53758. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53759. {
  53760. front: {
  53761. height: math.unit(6 + 2/12, "feet"),
  53762. weight: math.unit(195, "lb"),
  53763. preyCapacity: math.unit(6, "people"),
  53764. name: "Front",
  53765. image: {
  53766. source: "./media/characters/shuken-flash/front.svg",
  53767. extra: 1905/1739,
  53768. bottom: 65/1970
  53769. }
  53770. },
  53771. back: {
  53772. height: math.unit(6 + 2/12, "feet"),
  53773. weight: math.unit(195, "lb"),
  53774. preyCapacity: math.unit(6, "people"),
  53775. name: "Back",
  53776. image: {
  53777. source: "./media/characters/shuken-flash/back.svg",
  53778. extra: 1912/1751,
  53779. bottom: 13/1925
  53780. }
  53781. },
  53782. },
  53783. [
  53784. {
  53785. name: "Normal",
  53786. height: math.unit(6 + 2/12, "feet"),
  53787. default: true
  53788. },
  53789. ]
  53790. ))
  53791. characterMakers.push(() => makeCharacter(
  53792. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53793. {
  53794. front: {
  53795. height: math.unit(5 + 9/12, "feet"),
  53796. weight: math.unit(150, "lb"),
  53797. name: "Front",
  53798. image: {
  53799. source: "./media/characters/plat/front.svg",
  53800. extra: 1816/1703,
  53801. bottom: 43/1859
  53802. }
  53803. },
  53804. side: {
  53805. height: math.unit(5 + 9/12, "feet"),
  53806. weight: math.unit(300, "lb"),
  53807. name: "Side",
  53808. image: {
  53809. source: "./media/characters/plat/side.svg",
  53810. extra: 1824/1699,
  53811. bottom: 18/1842
  53812. }
  53813. },
  53814. },
  53815. [
  53816. {
  53817. name: "Normal",
  53818. height: math.unit(5 + 9/12, "feet"),
  53819. default: true
  53820. },
  53821. ]
  53822. ))
  53823. characterMakers.push(() => makeCharacter(
  53824. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53825. {
  53826. front: {
  53827. height: math.unit(9, "feet"),
  53828. weight: math.unit(1800, "lb"),
  53829. name: "Front",
  53830. image: {
  53831. source: "./media/characters/elaine/front.svg",
  53832. extra: 1833/1354,
  53833. bottom: 25/1858
  53834. }
  53835. },
  53836. back: {
  53837. height: math.unit(8.8, "feet"),
  53838. weight: math.unit(1800, "lb"),
  53839. name: "Back",
  53840. image: {
  53841. source: "./media/characters/elaine/back.svg",
  53842. extra: 1641/1233,
  53843. bottom: 53/1694
  53844. }
  53845. },
  53846. },
  53847. [
  53848. {
  53849. name: "Normal",
  53850. height: math.unit(9, "feet"),
  53851. default: true
  53852. },
  53853. ]
  53854. ))
  53855. characterMakers.push(() => makeCharacter(
  53856. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53857. {
  53858. front: {
  53859. height: math.unit(17 + 9/12, "feet"),
  53860. weight: math.unit(8000, "lb"),
  53861. name: "Front",
  53862. image: {
  53863. source: "./media/characters/vera-raven/front.svg",
  53864. extra: 1457/1412,
  53865. bottom: 121/1578
  53866. }
  53867. },
  53868. side: {
  53869. height: math.unit(17 + 9/12, "feet"),
  53870. weight: math.unit(8000, "lb"),
  53871. name: "Side",
  53872. image: {
  53873. source: "./media/characters/vera-raven/side.svg",
  53874. extra: 1510/1464,
  53875. bottom: 54/1564
  53876. }
  53877. },
  53878. },
  53879. [
  53880. {
  53881. name: "Normal",
  53882. height: math.unit(17 + 9/12, "feet"),
  53883. default: true
  53884. },
  53885. ]
  53886. ))
  53887. characterMakers.push(() => makeCharacter(
  53888. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53889. {
  53890. dressed: {
  53891. height: math.unit(6 + 9/12, "feet"),
  53892. name: "Dressed",
  53893. image: {
  53894. source: "./media/characters/nakisha/dressed.svg",
  53895. extra: 1909/1757,
  53896. bottom: 48/1957
  53897. }
  53898. },
  53899. nude: {
  53900. height: math.unit(6 + 9/12, "feet"),
  53901. name: "Nude",
  53902. image: {
  53903. source: "./media/characters/nakisha/nude.svg",
  53904. extra: 1917/1765,
  53905. bottom: 34/1951
  53906. }
  53907. },
  53908. },
  53909. [
  53910. {
  53911. name: "Normal",
  53912. height: math.unit(6 + 9/12, "feet"),
  53913. default: true
  53914. },
  53915. ]
  53916. ))
  53917. characterMakers.push(() => makeCharacter(
  53918. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53919. {
  53920. front: {
  53921. height: math.unit(87, "meters"),
  53922. name: "Front",
  53923. image: {
  53924. source: "./media/characters/serafin/front.svg",
  53925. extra: 1919/1776,
  53926. bottom: 65/1984
  53927. }
  53928. },
  53929. },
  53930. [
  53931. {
  53932. name: "Normal",
  53933. height: math.unit(87, "meters"),
  53934. default: true
  53935. },
  53936. ]
  53937. ))
  53938. characterMakers.push(() => makeCharacter(
  53939. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53940. {
  53941. front: {
  53942. height: math.unit(6, "feet"),
  53943. weight: math.unit(200, "lb"),
  53944. name: "Front",
  53945. image: {
  53946. source: "./media/characters/poptart/front.svg",
  53947. extra: 615/583,
  53948. bottom: 23/638
  53949. }
  53950. },
  53951. back: {
  53952. height: math.unit(6, "feet"),
  53953. weight: math.unit(200, "lb"),
  53954. name: "Back",
  53955. image: {
  53956. source: "./media/characters/poptart/back.svg",
  53957. extra: 617/584,
  53958. bottom: 22/639
  53959. }
  53960. },
  53961. frontNsfw: {
  53962. height: math.unit(6, "feet"),
  53963. weight: math.unit(200, "lb"),
  53964. name: "Front (NSFW)",
  53965. image: {
  53966. source: "./media/characters/poptart/front-nsfw.svg",
  53967. extra: 615/583,
  53968. bottom: 23/638
  53969. }
  53970. },
  53971. backNsfw: {
  53972. height: math.unit(6, "feet"),
  53973. weight: math.unit(200, "lb"),
  53974. name: "Back (NSFW)",
  53975. image: {
  53976. source: "./media/characters/poptart/back-nsfw.svg",
  53977. extra: 617/584,
  53978. bottom: 22/639
  53979. }
  53980. },
  53981. hand: {
  53982. height: math.unit(1.14, "feet"),
  53983. name: "Hand",
  53984. image: {
  53985. source: "./media/characters/poptart/hand.svg"
  53986. }
  53987. },
  53988. foot: {
  53989. height: math.unit(1.5, "feet"),
  53990. name: "Foot",
  53991. image: {
  53992. source: "./media/characters/poptart/foot.svg"
  53993. }
  53994. },
  53995. },
  53996. [
  53997. {
  53998. name: "Normal",
  53999. height: math.unit(6, "feet"),
  54000. default: true
  54001. },
  54002. {
  54003. name: "Grande",
  54004. height: math.unit(350, "feet")
  54005. },
  54006. {
  54007. name: "Massif",
  54008. height: math.unit(967, "feet")
  54009. },
  54010. ]
  54011. ))
  54012. characterMakers.push(() => makeCharacter(
  54013. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54014. {
  54015. hyenaSide: {
  54016. height: math.unit(120, "cm"),
  54017. weight: math.unit(120, "lb"),
  54018. name: "Side",
  54019. image: {
  54020. source: "./media/characters/trance/hyena-side.svg",
  54021. extra: 998/904,
  54022. bottom: 76/1074
  54023. }
  54024. },
  54025. },
  54026. [
  54027. {
  54028. name: "Normal",
  54029. height: math.unit(120, "cm"),
  54030. default: true
  54031. },
  54032. {
  54033. name: "Dire",
  54034. height: math.unit(230, "cm")
  54035. },
  54036. {
  54037. name: "Macro",
  54038. height: math.unit(37, "feet")
  54039. },
  54040. ]
  54041. ))
  54042. characterMakers.push(() => makeCharacter(
  54043. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54044. {
  54045. front: {
  54046. height: math.unit(6 + 3/12, "feet"),
  54047. name: "Front",
  54048. image: {
  54049. source: "./media/characters/michael-berretta/front.svg",
  54050. extra: 515/494,
  54051. bottom: 20/535
  54052. }
  54053. },
  54054. back: {
  54055. height: math.unit(6 + 3/12, "feet"),
  54056. name: "Back",
  54057. image: {
  54058. source: "./media/characters/michael-berretta/back.svg",
  54059. extra: 520/497,
  54060. bottom: 21/541
  54061. }
  54062. },
  54063. frontNsfw: {
  54064. height: math.unit(6 + 3/12, "feet"),
  54065. name: "Front (NSFW)",
  54066. image: {
  54067. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54068. extra: 515/494,
  54069. bottom: 20/535
  54070. }
  54071. },
  54072. dick: {
  54073. height: math.unit(1, "feet"),
  54074. name: "Dick",
  54075. image: {
  54076. source: "./media/characters/michael-berretta/dick.svg"
  54077. }
  54078. },
  54079. },
  54080. [
  54081. {
  54082. name: "Normal",
  54083. height: math.unit(6 + 3/12, "feet"),
  54084. default: true
  54085. },
  54086. {
  54087. name: "Big",
  54088. height: math.unit(12, "feet")
  54089. },
  54090. {
  54091. name: "Macro",
  54092. height: math.unit(187.5, "feet")
  54093. },
  54094. ]
  54095. ))
  54096. characterMakers.push(() => makeCharacter(
  54097. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54098. {
  54099. front: {
  54100. height: math.unit(9 + 9/12, "feet"),
  54101. weight: math.unit(1244, "lb"),
  54102. name: "Front",
  54103. image: {
  54104. source: "./media/characters/stella-edgecomb/front.svg",
  54105. extra: 1835/1706,
  54106. bottom: 49/1884
  54107. }
  54108. },
  54109. pen: {
  54110. height: math.unit(0.95, "feet"),
  54111. name: "Pen",
  54112. image: {
  54113. source: "./media/characters/stella-edgecomb/pen.svg"
  54114. }
  54115. },
  54116. },
  54117. [
  54118. {
  54119. name: "Cozy Bear",
  54120. height: math.unit(0.5, "inches")
  54121. },
  54122. {
  54123. name: "Normal",
  54124. height: math.unit(9 + 9/12, "feet"),
  54125. default: true
  54126. },
  54127. {
  54128. name: "Giga Bear",
  54129. height: math.unit(1, "mile")
  54130. },
  54131. {
  54132. name: "Great Bear",
  54133. height: math.unit(53, "miles")
  54134. },
  54135. {
  54136. name: "Goddess Bear",
  54137. height: math.unit(40000, "miles")
  54138. },
  54139. {
  54140. name: "Sun Bear",
  54141. height: math.unit(900000, "miles")
  54142. },
  54143. ]
  54144. ))
  54145. characterMakers.push(() => makeCharacter(
  54146. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54147. {
  54148. anthroFront: {
  54149. height: math.unit(556, "cm"),
  54150. weight: math.unit(2650, "kg"),
  54151. preyCapacity: math.unit(3, "people"),
  54152. name: "Front",
  54153. image: {
  54154. source: "./media/characters/ash´iika/front.svg",
  54155. extra: 710/673,
  54156. bottom: 15/725
  54157. },
  54158. form: "anthro",
  54159. default: true
  54160. },
  54161. anthroSide: {
  54162. height: math.unit(556, "cm"),
  54163. weight: math.unit(2650, "kg"),
  54164. preyCapacity: math.unit(3, "people"),
  54165. name: "Side",
  54166. image: {
  54167. source: "./media/characters/ash´iika/side.svg",
  54168. extra: 696/676,
  54169. bottom: 13/709
  54170. },
  54171. form: "anthro"
  54172. },
  54173. anthroDressed: {
  54174. height: math.unit(556, "cm"),
  54175. weight: math.unit(2650, "kg"),
  54176. preyCapacity: math.unit(3, "people"),
  54177. name: "Dressed",
  54178. image: {
  54179. source: "./media/characters/ash´iika/dressed.svg",
  54180. extra: 710/673,
  54181. bottom: 15/725
  54182. },
  54183. form: "anthro"
  54184. },
  54185. anthroHead: {
  54186. height: math.unit(3.5, "feet"),
  54187. name: "Head",
  54188. image: {
  54189. source: "./media/characters/ash´iika/head.svg",
  54190. extra: 348/291,
  54191. bottom: 45/393
  54192. },
  54193. form: "anthro"
  54194. },
  54195. feralSide: {
  54196. height: math.unit(870, "cm"),
  54197. weight: math.unit(17500, "kg"),
  54198. preyCapacity: math.unit(15, "people"),
  54199. name: "Side",
  54200. image: {
  54201. source: "./media/characters/ash´iika/feral.svg",
  54202. extra: 595/199,
  54203. bottom: 7/602
  54204. },
  54205. form: "feral",
  54206. default: true,
  54207. },
  54208. },
  54209. [
  54210. {
  54211. name: "Normal",
  54212. height: math.unit(556, "cm"),
  54213. default: true,
  54214. form: "anthro"
  54215. },
  54216. {
  54217. name: "Macro",
  54218. height: math.unit(88, "meters"),
  54219. form: "anthro"
  54220. },
  54221. {
  54222. name: "Normal",
  54223. height: math.unit(870, "cm"),
  54224. default: true,
  54225. form: "feral"
  54226. },
  54227. {
  54228. name: "Large",
  54229. height: math.unit(25, "meters"),
  54230. form: "feral"
  54231. },
  54232. ],
  54233. {
  54234. "anthro": {
  54235. name: "Anthro",
  54236. default: true
  54237. },
  54238. "feral": {
  54239. name: "Feral",
  54240. },
  54241. }
  54242. ))
  54243. characterMakers.push(() => makeCharacter(
  54244. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54245. {
  54246. front: {
  54247. height: math.unit(10, "feet"),
  54248. weight: math.unit(800, "lb"),
  54249. name: "Front",
  54250. image: {
  54251. source: "./media/characters/yen/front.svg",
  54252. extra: 443/411,
  54253. bottom: 6/449
  54254. }
  54255. },
  54256. sleeping: {
  54257. height: math.unit(10, "feet"),
  54258. weight: math.unit(800, "lb"),
  54259. name: "Sleeping",
  54260. image: {
  54261. source: "./media/characters/yen/sleeping.svg",
  54262. extra: 470/422,
  54263. bottom: 0/470
  54264. }
  54265. },
  54266. head: {
  54267. height: math.unit(2.2, "feet"),
  54268. name: "Head",
  54269. image: {
  54270. source: "./media/characters/yen/head.svg"
  54271. }
  54272. },
  54273. headAlt: {
  54274. height: math.unit(2.1, "feet"),
  54275. name: "Head (Alt)",
  54276. image: {
  54277. source: "./media/characters/yen/head-alt.svg"
  54278. }
  54279. },
  54280. },
  54281. [
  54282. {
  54283. name: "Normal",
  54284. height: math.unit(10, "feet"),
  54285. default: true
  54286. },
  54287. ]
  54288. ))
  54289. characterMakers.push(() => makeCharacter(
  54290. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54291. {
  54292. front: {
  54293. height: math.unit(12, "feet"),
  54294. name: "Front",
  54295. image: {
  54296. source: "./media/characters/citra/front.svg",
  54297. extra: 1950/1710,
  54298. bottom: 47/1997
  54299. }
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Normal",
  54305. height: math.unit(12, "feet"),
  54306. default: true
  54307. },
  54308. ]
  54309. ))
  54310. characterMakers.push(() => makeCharacter(
  54311. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54312. {
  54313. side: {
  54314. height: math.unit(7 + 10/12, "feet"),
  54315. name: "Side",
  54316. image: {
  54317. source: "./media/characters/sholstim/side.svg",
  54318. extra: 786/682,
  54319. bottom: 40/826
  54320. }
  54321. },
  54322. },
  54323. [
  54324. {
  54325. name: "Normal",
  54326. height: math.unit(7 + 10/12, "feet"),
  54327. default: true
  54328. },
  54329. ]
  54330. ))
  54331. characterMakers.push(() => makeCharacter(
  54332. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54333. {
  54334. front: {
  54335. height: math.unit(3.10, "meters"),
  54336. name: "Front",
  54337. image: {
  54338. source: "./media/characters/aggyn/front.svg",
  54339. extra: 1188/963,
  54340. bottom: 24/1212
  54341. }
  54342. },
  54343. },
  54344. [
  54345. {
  54346. name: "Normal",
  54347. height: math.unit(3.10, "meters"),
  54348. default: true
  54349. },
  54350. ]
  54351. ))
  54352. characterMakers.push(() => makeCharacter(
  54353. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54354. {
  54355. front: {
  54356. height: math.unit(7 + 5/12, "feet"),
  54357. weight: math.unit(687, "lb"),
  54358. name: "Front",
  54359. image: {
  54360. source: "./media/characters/alsandair-hergenroether/front.svg",
  54361. extra: 1251/1186,
  54362. bottom: 75/1326
  54363. }
  54364. },
  54365. back: {
  54366. height: math.unit(7 + 5/12, "feet"),
  54367. weight: math.unit(687, "lb"),
  54368. name: "Back",
  54369. image: {
  54370. source: "./media/characters/alsandair-hergenroether/back.svg",
  54371. extra: 1290/1229,
  54372. bottom: 17/1307
  54373. }
  54374. },
  54375. },
  54376. [
  54377. {
  54378. name: "Max Compression",
  54379. height: math.unit(7 + 5/12, "feet"),
  54380. default: true
  54381. },
  54382. {
  54383. name: "\"Normal\"",
  54384. height: math.unit(2, "universes")
  54385. },
  54386. ]
  54387. ))
  54388. characterMakers.push(() => makeCharacter(
  54389. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54390. {
  54391. front: {
  54392. height: math.unit(4 + 1/12, "feet"),
  54393. weight: math.unit(92, "lb"),
  54394. name: "Front",
  54395. image: {
  54396. source: "./media/characters/ie/front.svg",
  54397. extra: 1585/1352,
  54398. bottom: 91/1676
  54399. }
  54400. },
  54401. },
  54402. [
  54403. {
  54404. name: "Normal",
  54405. height: math.unit(4 + 1/12, "feet"),
  54406. default: true
  54407. },
  54408. ]
  54409. ))
  54410. characterMakers.push(() => makeCharacter(
  54411. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54412. {
  54413. anthro: {
  54414. height: math.unit(6, "feet"),
  54415. weight: math.unit(150, "lb"),
  54416. name: "Front",
  54417. image: {
  54418. source: "./media/characters/willow/anthro.svg",
  54419. extra: 1073/986,
  54420. bottom: 34/1107
  54421. },
  54422. form: "anthro",
  54423. default: true
  54424. },
  54425. taur: {
  54426. height: math.unit(6, "feet"),
  54427. weight: math.unit(150, "lb"),
  54428. name: "Side",
  54429. image: {
  54430. source: "./media/characters/willow/taur.svg",
  54431. extra: 647/512,
  54432. bottom: 136/783
  54433. },
  54434. form: "taur",
  54435. default: true
  54436. },
  54437. },
  54438. [
  54439. {
  54440. name: "Humanoid",
  54441. height: math.unit(2.7, "meters"),
  54442. form: "anthro"
  54443. },
  54444. {
  54445. name: "Normal",
  54446. height: math.unit(9, "meters"),
  54447. form: "anthro",
  54448. default: true
  54449. },
  54450. {
  54451. name: "Humanoid",
  54452. height: math.unit(2.1, "meters"),
  54453. form: "taur"
  54454. },
  54455. {
  54456. name: "Normal",
  54457. height: math.unit(7, "meters"),
  54458. form: "taur",
  54459. default: true
  54460. },
  54461. ],
  54462. {
  54463. "anthro": {
  54464. name: "Anthro",
  54465. default: true
  54466. },
  54467. "taur": {
  54468. name: "Taur",
  54469. },
  54470. }
  54471. ))
  54472. characterMakers.push(() => makeCharacter(
  54473. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54474. {
  54475. front: {
  54476. height: math.unit(2 + 5/12, "feet"),
  54477. name: "Front",
  54478. image: {
  54479. source: "./media/characters/kyan/front.svg",
  54480. extra: 460/334,
  54481. bottom: 23/483
  54482. },
  54483. extraAttributes: {
  54484. "toeLength": {
  54485. name: "Toe Length",
  54486. power: 1,
  54487. type: "length",
  54488. base: math.unit(7, "cm")
  54489. },
  54490. "toeclawLength": {
  54491. name: "Toeclaw Length",
  54492. power: 1,
  54493. type: "length",
  54494. base: math.unit(4.7, "cm")
  54495. },
  54496. "earHeight": {
  54497. name: "Ear Height",
  54498. power: 1,
  54499. type: "length",
  54500. base: math.unit(14.1, "cm")
  54501. },
  54502. }
  54503. },
  54504. paws: {
  54505. height: math.unit(0.45, "feet"),
  54506. name: "Paws",
  54507. image: {
  54508. source: "./media/characters/kyan/paws.svg",
  54509. extra: 581/581,
  54510. bottom: 114/695
  54511. }
  54512. },
  54513. },
  54514. [
  54515. {
  54516. name: "Normal",
  54517. height: math.unit(2 + 5/12, "feet"),
  54518. default: true
  54519. },
  54520. ]
  54521. ))
  54522. characterMakers.push(() => makeCharacter(
  54523. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54524. {
  54525. front: {
  54526. height: math.unit(2 + 2/3, "feet"),
  54527. name: "Front",
  54528. image: {
  54529. source: "./media/characters/xazzon/front.svg",
  54530. extra: 1109/984,
  54531. bottom: 42/1151
  54532. }
  54533. },
  54534. back: {
  54535. height: math.unit(2 + 2/3, "feet"),
  54536. name: "Back",
  54537. image: {
  54538. source: "./media/characters/xazzon/back.svg",
  54539. extra: 1095/971,
  54540. bottom: 23/1118
  54541. }
  54542. },
  54543. },
  54544. [
  54545. {
  54546. name: "Normal",
  54547. height: math.unit(2 + 2/3, "feet"),
  54548. default: true
  54549. },
  54550. ]
  54551. ))
  54552. characterMakers.push(() => makeCharacter(
  54553. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54554. {
  54555. dressed: {
  54556. height: math.unit(5 + 7/12, "feet"),
  54557. weight: math.unit(173, "lb"),
  54558. name: "Dressed",
  54559. image: {
  54560. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54561. extra: 3262/2862,
  54562. bottom: 188/3450
  54563. }
  54564. },
  54565. undressed: {
  54566. height: math.unit(5 + 7/12, "feet"),
  54567. weight: math.unit(173, "lb"),
  54568. name: "Undressed",
  54569. image: {
  54570. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54571. extra: 3262/2862,
  54572. bottom: 188/3450
  54573. }
  54574. },
  54575. },
  54576. [
  54577. {
  54578. name: "The void",
  54579. height: math.unit(7.29193e-34, "angstroms")
  54580. },
  54581. {
  54582. name: "Uh-Oh.",
  54583. height: math.unit(5.734e-7, "angstroms")
  54584. },
  54585. {
  54586. name: "Pico",
  54587. height: math.unit(0.876, "angstroms")
  54588. },
  54589. {
  54590. name: "Nano",
  54591. height: math.unit(0.000134200, "mm")
  54592. },
  54593. {
  54594. name: "Micro",
  54595. height: math.unit(0.0673020, "mm")
  54596. },
  54597. {
  54598. name: "Tiny",
  54599. height: math.unit(2.4, "mm")
  54600. },
  54601. {
  54602. name: "Actual Normal",
  54603. height: math.unit(3, "inches"),
  54604. default: true
  54605. },
  54606. {
  54607. name: "Normal",
  54608. height: math.unit(5 + 8/12, "feet")
  54609. },
  54610. {
  54611. name: "Giant",
  54612. height: math.unit(12, "feet")
  54613. },
  54614. {
  54615. name: "City Ruler",
  54616. height: math.unit(270, "meters")
  54617. },
  54618. {
  54619. name: "Giga",
  54620. height: math.unit(1117.6, "km")
  54621. },
  54622. {
  54623. name: "All-Powerful Queen",
  54624. height: math.unit(70.8, "gigameters")
  54625. },
  54626. {
  54627. name: "'Goddess'",
  54628. height: math.unit(600, "yottameters")
  54629. },
  54630. {
  54631. name: "Biggest!",
  54632. height: math.unit(4.23e5, "yottameters")
  54633. },
  54634. ]
  54635. ))
  54636. characterMakers.push(() => makeCharacter(
  54637. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54638. {
  54639. front: {
  54640. height: math.unit(8, "feet"),
  54641. weight: math.unit(300, "lb"),
  54642. name: "Front",
  54643. image: {
  54644. source: "./media/characters/khyla-shadowsong/front.svg",
  54645. extra: 861/798,
  54646. bottom: 32/893
  54647. }
  54648. },
  54649. side: {
  54650. height: math.unit(8, "feet"),
  54651. weight: math.unit(300, "lb"),
  54652. name: "Side",
  54653. image: {
  54654. source: "./media/characters/khyla-shadowsong/side.svg",
  54655. extra: 790/750,
  54656. bottom: 87/877
  54657. }
  54658. },
  54659. back: {
  54660. height: math.unit(8, "feet"),
  54661. weight: math.unit(300, "lb"),
  54662. name: "Back",
  54663. image: {
  54664. source: "./media/characters/khyla-shadowsong/back.svg",
  54665. extra: 855/808,
  54666. bottom: 14/869
  54667. }
  54668. },
  54669. head: {
  54670. height: math.unit(2.7, "feet"),
  54671. name: "Head",
  54672. image: {
  54673. source: "./media/characters/khyla-shadowsong/head.svg"
  54674. }
  54675. },
  54676. },
  54677. [
  54678. {
  54679. name: "Micro",
  54680. height: math.unit(6, "inches")
  54681. },
  54682. {
  54683. name: "Normal",
  54684. height: math.unit(8, "feet"),
  54685. default: true
  54686. },
  54687. ]
  54688. ))
  54689. characterMakers.push(() => makeCharacter(
  54690. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54691. {
  54692. hyperFront: {
  54693. height: math.unit(9 + 4/12, "feet"),
  54694. weight: math.unit(2000, "lb"),
  54695. name: "Front",
  54696. image: {
  54697. source: "./media/characters/tiden/hyper-front.svg",
  54698. extra: 400/382,
  54699. bottom: 6/406
  54700. },
  54701. form: "hyper",
  54702. },
  54703. regularFront: {
  54704. height: math.unit(7 + 10/12, "feet"),
  54705. weight: math.unit(470, "lb"),
  54706. name: "Front",
  54707. image: {
  54708. source: "./media/characters/tiden/regular-front.svg",
  54709. extra: 468/442,
  54710. bottom: 6/474
  54711. },
  54712. form: "regular",
  54713. },
  54714. },
  54715. [
  54716. {
  54717. name: "Normal",
  54718. height: math.unit(9 + 4/12, "feet"),
  54719. default: true,
  54720. form: "hyper"
  54721. },
  54722. {
  54723. name: "Normal",
  54724. height: math.unit(7 + 10/12, "feet"),
  54725. default: true,
  54726. form: "regular"
  54727. },
  54728. ],
  54729. {
  54730. "hyper": {
  54731. name: "Hyper",
  54732. default: true
  54733. },
  54734. "regular": {
  54735. name: "Regular",
  54736. },
  54737. }
  54738. ))
  54739. characterMakers.push(() => makeCharacter(
  54740. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54741. {
  54742. side: {
  54743. height: math.unit(6, "feet"),
  54744. weight: math.unit(150, "lb"),
  54745. name: "Side",
  54746. image: {
  54747. source: "./media/characters/jason-crowe/side.svg",
  54748. extra: 1771/766,
  54749. bottom: 219/1990
  54750. }
  54751. },
  54752. },
  54753. [
  54754. {
  54755. name: "Pocket Gryphon",
  54756. height: math.unit(6, "cm")
  54757. },
  54758. {
  54759. name: "Raven",
  54760. height: math.unit(60, "cm")
  54761. },
  54762. {
  54763. name: "Normal",
  54764. height: math.unit(1, "meter"),
  54765. default: true
  54766. },
  54767. ]
  54768. ))
  54769. characterMakers.push(() => makeCharacter(
  54770. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54771. {
  54772. front: {
  54773. height: math.unit(9 + 6/12, "feet"),
  54774. weight: math.unit(1100, "lb"),
  54775. name: "Front",
  54776. image: {
  54777. source: "./media/characters/django/front.svg",
  54778. extra: 1231/1136,
  54779. bottom: 34/1265
  54780. }
  54781. },
  54782. side: {
  54783. height: math.unit(9 + 6/12, "feet"),
  54784. weight: math.unit(1100, "lb"),
  54785. name: "Side",
  54786. image: {
  54787. source: "./media/characters/django/side.svg",
  54788. extra: 1267/1174,
  54789. bottom: 9/1276
  54790. }
  54791. },
  54792. },
  54793. [
  54794. {
  54795. name: "Normal",
  54796. height: math.unit(9 + 6/12, "feet"),
  54797. default: true
  54798. },
  54799. {
  54800. name: "Macro 1",
  54801. height: math.unit(50, "feet")
  54802. },
  54803. {
  54804. name: "Macro 2",
  54805. height: math.unit(500, "feet")
  54806. },
  54807. {
  54808. name: "Mega Macro",
  54809. height: math.unit(5300, "feet")
  54810. },
  54811. ]
  54812. ))
  54813. characterMakers.push(() => makeCharacter(
  54814. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54815. {
  54816. frontSfw: {
  54817. height: math.unit(120, "cm"),
  54818. weight: math.unit(15, "kg"),
  54819. name: "Front (SFW)",
  54820. image: {
  54821. source: "./media/characters/eri/front-sfw.svg",
  54822. extra: 1014/939,
  54823. bottom: 37/1051
  54824. },
  54825. form: "moth",
  54826. },
  54827. frontNsfw: {
  54828. height: math.unit(120, "cm"),
  54829. weight: math.unit(15, "kg"),
  54830. name: "Front (NSFW)",
  54831. image: {
  54832. source: "./media/characters/eri/front-nsfw.svg",
  54833. extra: 1014/939,
  54834. bottom: 37/1051
  54835. },
  54836. form: "moth",
  54837. default: true
  54838. },
  54839. egg: {
  54840. height: math.unit(10, "cm"),
  54841. name: "Egg",
  54842. image: {
  54843. source: "./media/characters/eri/egg.svg"
  54844. },
  54845. form: "egg",
  54846. default: true
  54847. },
  54848. },
  54849. [
  54850. {
  54851. name: "Normal",
  54852. height: math.unit(120, "cm"),
  54853. default: true,
  54854. form: "moth"
  54855. },
  54856. {
  54857. name: "Normal",
  54858. height: math.unit(10, "cm"),
  54859. default: true,
  54860. form: "egg"
  54861. },
  54862. ],
  54863. {
  54864. "moth": {
  54865. name: "Moth",
  54866. default: true
  54867. },
  54868. "egg": {
  54869. name: "Egg",
  54870. },
  54871. }
  54872. ))
  54873. characterMakers.push(() => makeCharacter(
  54874. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54875. {
  54876. front: {
  54877. height: math.unit(200, "feet"),
  54878. name: "Front",
  54879. image: {
  54880. source: "./media/characters/bishop-dowser/front.svg",
  54881. extra: 933/868,
  54882. bottom: 106/1039
  54883. }
  54884. },
  54885. },
  54886. [
  54887. {
  54888. name: "Giant",
  54889. height: math.unit(200, "feet"),
  54890. default: true
  54891. },
  54892. ]
  54893. ))
  54894. characterMakers.push(() => makeCharacter(
  54895. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54896. {
  54897. front: {
  54898. height: math.unit(2, "meters"),
  54899. preyCapacity: math.unit(3, "people"),
  54900. name: "Front",
  54901. image: {
  54902. source: "./media/characters/fryra/front.svg",
  54903. extra: 1025/948,
  54904. bottom: 30/1055
  54905. },
  54906. extraAttributes: {
  54907. "breastVolume": {
  54908. name: "Breast Volume",
  54909. power: 3,
  54910. type: "volume",
  54911. base: math.unit(8, "liters")
  54912. },
  54913. }
  54914. },
  54915. back: {
  54916. height: math.unit(2, "meters"),
  54917. preyCapacity: math.unit(3, "people"),
  54918. name: "Back",
  54919. image: {
  54920. source: "./media/characters/fryra/back.svg",
  54921. extra: 993/938,
  54922. bottom: 38/1031
  54923. },
  54924. extraAttributes: {
  54925. "breastVolume": {
  54926. name: "Breast Volume",
  54927. power: 3,
  54928. type: "volume",
  54929. base: math.unit(8, "liters")
  54930. },
  54931. }
  54932. },
  54933. head: {
  54934. height: math.unit(1.33, "feet"),
  54935. name: "Head",
  54936. image: {
  54937. source: "./media/characters/fryra/head.svg"
  54938. }
  54939. },
  54940. maw: {
  54941. height: math.unit(0.56, "feet"),
  54942. name: "Maw",
  54943. image: {
  54944. source: "./media/characters/fryra/maw.svg"
  54945. }
  54946. },
  54947. },
  54948. [
  54949. {
  54950. name: "Micro",
  54951. height: math.unit(5, "cm")
  54952. },
  54953. {
  54954. name: "Normal",
  54955. height: math.unit(2, "meters"),
  54956. default: true
  54957. },
  54958. {
  54959. name: "Small Macro",
  54960. height: math.unit(8, "meters")
  54961. },
  54962. {
  54963. name: "Macro",
  54964. height: math.unit(50, "meters")
  54965. },
  54966. {
  54967. name: "Megamacro",
  54968. height: math.unit(1, "km")
  54969. },
  54970. {
  54971. name: "Planetary",
  54972. height: math.unit(300000, "km")
  54973. },
  54974. {
  54975. name: "Universal",
  54976. height: math.unit(250, "lightyears")
  54977. },
  54978. {
  54979. name: "Fabric of Reality",
  54980. height: math.unit(1000, "multiverses")
  54981. },
  54982. ]
  54983. ))
  54984. characterMakers.push(() => makeCharacter(
  54985. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54986. {
  54987. frontDressed: {
  54988. height: math.unit(6 + 2/12, "feet"),
  54989. name: "Front (Dressed)",
  54990. image: {
  54991. source: "./media/characters/fiera/front-dressed.svg",
  54992. extra: 1883/1793,
  54993. bottom: 70/1953
  54994. }
  54995. },
  54996. backDressed: {
  54997. height: math.unit(6 + 2/12, "feet"),
  54998. name: "Back (Dressed)",
  54999. image: {
  55000. source: "./media/characters/fiera/back-dressed.svg",
  55001. extra: 1847/1780,
  55002. bottom: 70/1917
  55003. }
  55004. },
  55005. frontNude: {
  55006. height: math.unit(6 + 2/12, "feet"),
  55007. name: "Front (Nude)",
  55008. image: {
  55009. source: "./media/characters/fiera/front-nude.svg",
  55010. extra: 1875/1785,
  55011. bottom: 66/1941
  55012. }
  55013. },
  55014. backNude: {
  55015. height: math.unit(6 + 2/12, "feet"),
  55016. name: "Back (Nude)",
  55017. image: {
  55018. source: "./media/characters/fiera/back-nude.svg",
  55019. extra: 1855/1788,
  55020. bottom: 44/1899
  55021. }
  55022. },
  55023. maw: {
  55024. height: math.unit(1.3, "feet"),
  55025. name: "Maw",
  55026. image: {
  55027. source: "./media/characters/fiera/maw.svg"
  55028. }
  55029. },
  55030. paw: {
  55031. height: math.unit(1, "feet"),
  55032. name: "Paw",
  55033. image: {
  55034. source: "./media/characters/fiera/paw.svg"
  55035. }
  55036. },
  55037. shoe: {
  55038. height: math.unit(1.05, "feet"),
  55039. name: "Shoe",
  55040. image: {
  55041. source: "./media/characters/fiera/shoe.svg"
  55042. }
  55043. },
  55044. },
  55045. [
  55046. {
  55047. name: "Normal",
  55048. height: math.unit(6 + 2/12, "feet"),
  55049. default: true
  55050. },
  55051. {
  55052. name: "Size Difference",
  55053. height: math.unit(13, "feet")
  55054. },
  55055. {
  55056. name: "Macro",
  55057. height: math.unit(60, "feet")
  55058. },
  55059. {
  55060. name: "Mega Macro",
  55061. height: math.unit(200, "feet")
  55062. },
  55063. ]
  55064. ))
  55065. characterMakers.push(() => makeCharacter(
  55066. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55067. {
  55068. back: {
  55069. height: math.unit(6, "feet"),
  55070. name: "Back",
  55071. image: {
  55072. source: "./media/characters/flare/back.svg",
  55073. extra: 1883/1765,
  55074. bottom: 32/1915
  55075. }
  55076. },
  55077. },
  55078. [
  55079. {
  55080. name: "Normal",
  55081. height: math.unit(6 + 2/12, "feet"),
  55082. default: true
  55083. },
  55084. {
  55085. name: "Size Difference",
  55086. height: math.unit(13, "feet")
  55087. },
  55088. {
  55089. name: "Macro",
  55090. height: math.unit(60, "feet")
  55091. },
  55092. {
  55093. name: "Macro 2",
  55094. height: math.unit(100, "feet")
  55095. },
  55096. {
  55097. name: "Mega Macro",
  55098. height: math.unit(200, "feet")
  55099. },
  55100. ]
  55101. ))
  55102. characterMakers.push(() => makeCharacter(
  55103. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55104. {
  55105. front: {
  55106. height: math.unit(2.2, "m"),
  55107. weight: math.unit(300, "kg"),
  55108. name: "Front",
  55109. image: {
  55110. source: "./media/characters/hanna/front.svg",
  55111. extra: 1696/1502,
  55112. bottom: 206/1902
  55113. }
  55114. },
  55115. },
  55116. [
  55117. {
  55118. name: "Humanoid",
  55119. height: math.unit(2.2, "meters")
  55120. },
  55121. {
  55122. name: "Normal",
  55123. height: math.unit(4.8, "meters"),
  55124. default: true
  55125. },
  55126. ]
  55127. ))
  55128. characterMakers.push(() => makeCharacter(
  55129. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55130. {
  55131. front: {
  55132. height: math.unit(2.8, "meters"),
  55133. name: "Front",
  55134. image: {
  55135. source: "./media/characters/argo/front.svg",
  55136. extra: 731/518,
  55137. bottom: 84/815
  55138. }
  55139. },
  55140. },
  55141. [
  55142. {
  55143. name: "Normal",
  55144. height: math.unit(3, "meters"),
  55145. default: true
  55146. },
  55147. ]
  55148. ))
  55149. characterMakers.push(() => makeCharacter(
  55150. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55151. {
  55152. side: {
  55153. height: math.unit(3.8, "meters"),
  55154. name: "Side",
  55155. image: {
  55156. source: "./media/characters/sybil/side.svg",
  55157. extra: 382/361,
  55158. bottom: 25/407
  55159. }
  55160. },
  55161. },
  55162. [
  55163. {
  55164. name: "Normal",
  55165. height: math.unit(3.8, "meters"),
  55166. default: true
  55167. },
  55168. ]
  55169. ))
  55170. characterMakers.push(() => makeCharacter(
  55171. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55172. {
  55173. side: {
  55174. height: math.unit(6, "meters"),
  55175. name: "Side",
  55176. image: {
  55177. source: "./media/characters/plum/side.svg",
  55178. extra: 858/755,
  55179. bottom: 45/903
  55180. },
  55181. form: "taur",
  55182. default: true
  55183. },
  55184. back: {
  55185. height: math.unit(6.3, "meters"),
  55186. name: "Back",
  55187. image: {
  55188. source: "./media/characters/plum/back.svg",
  55189. extra: 887/813,
  55190. bottom: 32/919
  55191. },
  55192. form: "taur",
  55193. },
  55194. feral: {
  55195. height: math.unit(5.5, "meter"),
  55196. name: "Front",
  55197. image: {
  55198. source: "./media/characters/plum/feral.svg",
  55199. extra: 568/403,
  55200. bottom: 51/619
  55201. },
  55202. form: "feral",
  55203. default: true
  55204. },
  55205. head: {
  55206. height: math.unit(1.46, "meter"),
  55207. name: "Head",
  55208. image: {
  55209. source: "./media/characters/plum/head.svg"
  55210. },
  55211. form: "taur"
  55212. },
  55213. tailTop: {
  55214. height: math.unit(5.6, "meter"),
  55215. name: "Tail (Top)",
  55216. image: {
  55217. source: "./media/characters/plum/tail-top.svg"
  55218. },
  55219. form: "taur",
  55220. },
  55221. tailBottom: {
  55222. height: math.unit(5.6, "meter"),
  55223. name: "Tail (Bottom)",
  55224. image: {
  55225. source: "./media/characters/plum/tail-bottom.svg"
  55226. },
  55227. form: "taur",
  55228. },
  55229. feralHead: {
  55230. height: math.unit(2.56549521, "meter"),
  55231. name: "Head",
  55232. image: {
  55233. source: "./media/characters/plum/head.svg"
  55234. },
  55235. form: "feral"
  55236. },
  55237. feralTailTop: {
  55238. height: math.unit(5.44728435, "meter"),
  55239. name: "Tail (Top)",
  55240. image: {
  55241. source: "./media/characters/plum/tail-top.svg"
  55242. },
  55243. form: "feral",
  55244. },
  55245. feralTailBottom: {
  55246. height: math.unit(5.44728435, "meter"),
  55247. name: "Tail (Bottom)",
  55248. image: {
  55249. source: "./media/characters/plum/tail-bottom.svg"
  55250. },
  55251. form: "feral",
  55252. },
  55253. },
  55254. [
  55255. {
  55256. name: "Normal",
  55257. height: math.unit(6, "meters"),
  55258. default: true,
  55259. form: "taur"
  55260. },
  55261. {
  55262. name: "Normal",
  55263. height: math.unit(5.5, "meters"),
  55264. default: true,
  55265. form: "feral"
  55266. },
  55267. ],
  55268. {
  55269. "taur": {
  55270. name: "Taur",
  55271. default: true
  55272. },
  55273. "feral": {
  55274. name: "Feral",
  55275. },
  55276. }
  55277. ))
  55278. characterMakers.push(() => makeCharacter(
  55279. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55280. {
  55281. front: {
  55282. height: math.unit(6, "feet"),
  55283. weight: math.unit(115, "lb"),
  55284. name: "Front",
  55285. image: {
  55286. source: "./media/characters/celeste-kitsune/front.svg",
  55287. extra: 393/366,
  55288. bottom: 7/400
  55289. }
  55290. },
  55291. side: {
  55292. height: math.unit(6, "feet"),
  55293. weight: math.unit(115, "lb"),
  55294. name: "Side",
  55295. image: {
  55296. source: "./media/characters/celeste-kitsune/side.svg",
  55297. extra: 818/765,
  55298. bottom: 40/858
  55299. }
  55300. },
  55301. },
  55302. [
  55303. {
  55304. name: "Megamacro",
  55305. height: math.unit(1500, "miles"),
  55306. default: true
  55307. },
  55308. ]
  55309. ))
  55310. characterMakers.push(() => makeCharacter(
  55311. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55312. {
  55313. front: {
  55314. height: math.unit(8, "meters"),
  55315. name: "Front",
  55316. image: {
  55317. source: "./media/characters/io/front.svg",
  55318. extra: 865/722,
  55319. bottom: 58/923
  55320. }
  55321. },
  55322. back: {
  55323. height: math.unit(8, "meters"),
  55324. name: "Back",
  55325. image: {
  55326. source: "./media/characters/io/back.svg",
  55327. extra: 920/776,
  55328. bottom: 42/962
  55329. }
  55330. },
  55331. head: {
  55332. height: math.unit(5.09, "meters"),
  55333. name: "Head",
  55334. image: {
  55335. source: "./media/characters/io/head.svg"
  55336. }
  55337. },
  55338. hand: {
  55339. height: math.unit(1.6, "meters"),
  55340. name: "Hand",
  55341. image: {
  55342. source: "./media/characters/io/hand.svg"
  55343. }
  55344. },
  55345. foot: {
  55346. height: math.unit(2.4, "meters"),
  55347. name: "Foot",
  55348. image: {
  55349. source: "./media/characters/io/foot.svg"
  55350. }
  55351. },
  55352. },
  55353. [
  55354. {
  55355. name: "Normal",
  55356. height: math.unit(8, "meters"),
  55357. default: true
  55358. },
  55359. ]
  55360. ))
  55361. characterMakers.push(() => makeCharacter(
  55362. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55363. {
  55364. side: {
  55365. height: math.unit(6 + 3/12, "feet"),
  55366. weight: math.unit(225, "lb"),
  55367. name: "Side",
  55368. image: {
  55369. source: "./media/characters/silas/side.svg",
  55370. extra: 703/653,
  55371. bottom: 23/726
  55372. },
  55373. extraAttributes: {
  55374. "pawLength": {
  55375. name: "Paw Length",
  55376. power: 1,
  55377. type: "length",
  55378. base: math.unit(12, "inches")
  55379. },
  55380. "pawWidth": {
  55381. name: "Paw Width",
  55382. power: 1,
  55383. type: "length",
  55384. base: math.unit(4.5, "inches")
  55385. },
  55386. "pawArea": {
  55387. name: "Paw Area",
  55388. power: 2,
  55389. type: "area",
  55390. base: math.unit(12 * 4.5, "inches^2")
  55391. },
  55392. }
  55393. },
  55394. },
  55395. [
  55396. {
  55397. name: "Normal",
  55398. height: math.unit(6 + 3/12, "feet"),
  55399. default: true
  55400. },
  55401. ]
  55402. ))
  55403. characterMakers.push(() => makeCharacter(
  55404. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55405. {
  55406. back: {
  55407. height: math.unit(1.6, "meters"),
  55408. weight: math.unit(150, "lb"),
  55409. name: "Back",
  55410. image: {
  55411. source: "./media/characters/zari/back.svg",
  55412. extra: 424/411,
  55413. bottom: 32/456
  55414. },
  55415. extraAttributes: {
  55416. "bladderCapacity": {
  55417. name: "Bladder Size",
  55418. power: 3,
  55419. type: "volume",
  55420. base: math.unit(500, "mL")
  55421. },
  55422. "bladderFlow": {
  55423. name: "Flow Rate",
  55424. power: 3,
  55425. type: "volume",
  55426. base: math.unit(25, "mL")
  55427. },
  55428. }
  55429. },
  55430. },
  55431. [
  55432. {
  55433. name: "Normal",
  55434. height: math.unit(1.6, "meters"),
  55435. default: true
  55436. },
  55437. ]
  55438. ))
  55439. characterMakers.push(() => makeCharacter(
  55440. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55441. {
  55442. front: {
  55443. height: math.unit(25, "feet"),
  55444. weight: math.unit(5, "tons"),
  55445. name: "Front",
  55446. image: {
  55447. source: "./media/characters/charlie-human/front.svg",
  55448. extra: 1870/1740,
  55449. bottom: 102/1972
  55450. },
  55451. extraAttributes: {
  55452. "dickLength": {
  55453. name: "Dick Length",
  55454. power: 1,
  55455. type: "length",
  55456. base: math.unit(9, "feet")
  55457. },
  55458. }
  55459. },
  55460. back: {
  55461. height: math.unit(25, "feet"),
  55462. weight: math.unit(5, "tons"),
  55463. name: "Back",
  55464. image: {
  55465. source: "./media/characters/charlie-human/back.svg",
  55466. extra: 1858/1733,
  55467. bottom: 105/1963
  55468. },
  55469. extraAttributes: {
  55470. "dickLength": {
  55471. name: "Dick Length",
  55472. power: 1,
  55473. type: "length",
  55474. base: math.unit(9, "feet")
  55475. },
  55476. }
  55477. },
  55478. },
  55479. [
  55480. {
  55481. name: "\"Normal\"",
  55482. height: math.unit(6 + 4/12, "feet")
  55483. },
  55484. {
  55485. name: "Big",
  55486. height: math.unit(25, "feet"),
  55487. default: true
  55488. },
  55489. ]
  55490. ))
  55491. characterMakers.push(() => makeCharacter(
  55492. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55493. {
  55494. front: {
  55495. height: math.unit(6 + 4/12, "feet"),
  55496. weight: math.unit(320, "lb"),
  55497. name: "Front",
  55498. image: {
  55499. source: "./media/characters/ookitsu/front.svg",
  55500. extra: 1160/976,
  55501. bottom: 38/1198
  55502. }
  55503. },
  55504. frontNsfw: {
  55505. height: math.unit(6 + 4/12, "feet"),
  55506. weight: math.unit(320, "lb"),
  55507. name: "Front (NSFW)",
  55508. image: {
  55509. source: "./media/characters/ookitsu/front-nsfw.svg",
  55510. extra: 1160/976,
  55511. bottom: 38/1198
  55512. }
  55513. },
  55514. back: {
  55515. height: math.unit(6 + 4/12, "feet"),
  55516. weight: math.unit(320, "lb"),
  55517. name: "Back",
  55518. image: {
  55519. source: "./media/characters/ookitsu/back.svg",
  55520. extra: 1030/975,
  55521. bottom: 70/1100
  55522. }
  55523. },
  55524. head: {
  55525. height: math.unit(1.79, "feet"),
  55526. name: "Head",
  55527. image: {
  55528. source: "./media/characters/ookitsu/head.svg"
  55529. }
  55530. },
  55531. hand: {
  55532. height: math.unit(0.92, "feet"),
  55533. name: "Hand",
  55534. image: {
  55535. source: "./media/characters/ookitsu/hand.svg"
  55536. }
  55537. },
  55538. tails: {
  55539. height: math.unit(3.3, "feet"),
  55540. name: "Tails",
  55541. image: {
  55542. source: "./media/characters/ookitsu/tails.svg"
  55543. }
  55544. },
  55545. dick: {
  55546. height: math.unit(1.10833, "feet"),
  55547. name: "Dick",
  55548. image: {
  55549. source: "./media/characters/ookitsu/dick.svg"
  55550. }
  55551. },
  55552. },
  55553. [
  55554. {
  55555. name: "Normal",
  55556. height: math.unit(6 + 4/12, "feet"),
  55557. default: true
  55558. },
  55559. {
  55560. name: "Macro",
  55561. height: math.unit(30, "feet")
  55562. },
  55563. ]
  55564. ))
  55565. characterMakers.push(() => makeCharacter(
  55566. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55567. {
  55568. anthroFront: {
  55569. height: math.unit(6, "feet"),
  55570. weight: math.unit(250, "lb"),
  55571. name: "Front",
  55572. image: {
  55573. source: "./media/characters/jhusky/anthro-front.svg",
  55574. extra: 474/439,
  55575. bottom: 7/481
  55576. },
  55577. form: "anthro",
  55578. default: true
  55579. },
  55580. taurSideSfw: {
  55581. height: math.unit(6 + 4/12, "feet"),
  55582. weight: math.unit(500, "lb"),
  55583. name: "Side (SFW)",
  55584. image: {
  55585. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55586. extra: 1741/1629,
  55587. bottom: 196/1937
  55588. },
  55589. form: "taur",
  55590. default: true
  55591. },
  55592. taurSideNsfw: {
  55593. height: math.unit(6 + 4/12, "feet"),
  55594. weight: math.unit(500, "lb"),
  55595. name: "Taur (NSFW)",
  55596. image: {
  55597. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55598. extra: 1741/1629,
  55599. bottom: 196/1937
  55600. },
  55601. form: "taur",
  55602. },
  55603. },
  55604. [
  55605. {
  55606. name: "Huge",
  55607. height: math.unit(500, "feet"),
  55608. form: "anthro"
  55609. },
  55610. {
  55611. name: "Macro",
  55612. height: math.unit(1000, "feet"),
  55613. default: true,
  55614. form: "anthro"
  55615. },
  55616. {
  55617. name: "Megamacro",
  55618. height: math.unit(10000, "feet"),
  55619. form: "anthro"
  55620. },
  55621. {
  55622. name: "Huge",
  55623. height: math.unit(528, "feet"),
  55624. form: "taur"
  55625. },
  55626. {
  55627. name: "Macro",
  55628. height: math.unit(1056, "feet"),
  55629. default: true,
  55630. form: "taur"
  55631. },
  55632. {
  55633. name: "Megamacro",
  55634. height: math.unit(10556, "feet"),
  55635. form: "taur"
  55636. },
  55637. ],
  55638. {
  55639. "anthro": {
  55640. name: "Anthro",
  55641. default: true
  55642. },
  55643. "taur": {
  55644. name: "Taur",
  55645. },
  55646. }
  55647. ))
  55648. characterMakers.push(() => makeCharacter(
  55649. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55650. {
  55651. front: {
  55652. height: math.unit(8, "feet"),
  55653. weight: math.unit(500, "lb"),
  55654. name: "Front",
  55655. image: {
  55656. source: "./media/characters/armail/front.svg",
  55657. extra: 1753/1669,
  55658. bottom: 155/1908
  55659. }
  55660. },
  55661. back: {
  55662. height: math.unit(8, "feet"),
  55663. weight: math.unit(500, "lb"),
  55664. name: "Back",
  55665. image: {
  55666. source: "./media/characters/armail/back.svg",
  55667. extra: 1872/1803,
  55668. bottom: 63/1935
  55669. }
  55670. },
  55671. },
  55672. [
  55673. {
  55674. name: "Micro",
  55675. height: math.unit(0.25, "feet")
  55676. },
  55677. {
  55678. name: "Normal",
  55679. height: math.unit(8, "feet"),
  55680. default: true
  55681. },
  55682. {
  55683. name: "Mini-macro",
  55684. height: math.unit(30, "feet")
  55685. },
  55686. {
  55687. name: "Macro",
  55688. height: math.unit(400, "feet")
  55689. },
  55690. {
  55691. name: "Mega-macro",
  55692. height: math.unit(6000, "feet")
  55693. },
  55694. ]
  55695. ))
  55696. characterMakers.push(() => makeCharacter(
  55697. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55698. {
  55699. front: {
  55700. height: math.unit(6 + 7/12, "feet"),
  55701. weight: math.unit(210, "lb"),
  55702. name: "Front",
  55703. image: {
  55704. source: "./media/characters/wilfred-t-buxton/front.svg",
  55705. extra: 1068/882,
  55706. bottom: 28/1096
  55707. }
  55708. },
  55709. },
  55710. [
  55711. {
  55712. name: "Normal",
  55713. height: math.unit(6 + 7/12, "feet"),
  55714. default: true
  55715. },
  55716. ]
  55717. ))
  55718. characterMakers.push(() => makeCharacter(
  55719. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55720. {
  55721. front: {
  55722. height: math.unit(5 + 2/12, "feet"),
  55723. weight: math.unit(120, "lb"),
  55724. name: "Front",
  55725. image: {
  55726. source: "./media/characters/leighton-marrow/front.svg",
  55727. extra: 441/409,
  55728. bottom: 37/478
  55729. }
  55730. },
  55731. },
  55732. [
  55733. {
  55734. name: "Normal",
  55735. height: math.unit(5 + 2/12, "feet"),
  55736. default: true
  55737. },
  55738. ]
  55739. ))
  55740. characterMakers.push(() => makeCharacter(
  55741. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55742. {
  55743. front: {
  55744. height: math.unit(4, "meters"),
  55745. weight: math.unit(1200, "kg"),
  55746. name: "Front",
  55747. image: {
  55748. source: "./media/characters/licos/front.svg",
  55749. extra: 1727/1604,
  55750. bottom: 101/1828
  55751. },
  55752. form: "anthro",
  55753. default: true
  55754. },
  55755. taur_side: {
  55756. height: math.unit(20, "meters"),
  55757. weight: math.unit(1100000, "kg"),
  55758. name: "Side",
  55759. image: {
  55760. source: "./media/characters/licos/taur.svg",
  55761. extra: 1158/1091,
  55762. bottom: 80/1238
  55763. },
  55764. form: "taur",
  55765. default: true
  55766. },
  55767. },
  55768. [
  55769. {
  55770. name: "Normal",
  55771. height: math.unit(4, "meters"),
  55772. default: true,
  55773. form: "anthro"
  55774. },
  55775. {
  55776. name: "Normal",
  55777. height: math.unit(20, "meters"),
  55778. default: true,
  55779. form: "taur"
  55780. },
  55781. ],
  55782. {
  55783. "anthro": {
  55784. name: "Anthro",
  55785. default: true
  55786. },
  55787. "taur": {
  55788. name: "Taur",
  55789. },
  55790. }
  55791. ))
  55792. characterMakers.push(() => makeCharacter(
  55793. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55794. {
  55795. front: {
  55796. height: math.unit(10 + 3/12, "feet"),
  55797. name: "Front",
  55798. image: {
  55799. source: "./media/characters/theo-monkey/front.svg",
  55800. extra: 1735/1658,
  55801. bottom: 73/1808
  55802. }
  55803. },
  55804. back: {
  55805. height: math.unit(10 + 3/12, "feet"),
  55806. name: "Back",
  55807. image: {
  55808. source: "./media/characters/theo-monkey/back.svg",
  55809. extra: 1742/1664,
  55810. bottom: 33/1775
  55811. }
  55812. },
  55813. head: {
  55814. height: math.unit(2.29, "feet"),
  55815. name: "Head",
  55816. image: {
  55817. source: "./media/characters/theo-monkey/head.svg"
  55818. }
  55819. },
  55820. handPalm: {
  55821. height: math.unit(1.73, "feet"),
  55822. name: "Hand (Palm)",
  55823. image: {
  55824. source: "./media/characters/theo-monkey/hand-palm.svg"
  55825. }
  55826. },
  55827. handBack: {
  55828. height: math.unit(1.63, "feet"),
  55829. name: "Hand (Back)",
  55830. image: {
  55831. source: "./media/characters/theo-monkey/hand-back.svg"
  55832. }
  55833. },
  55834. footSole: {
  55835. height: math.unit(2.15, "feet"),
  55836. name: "Foot (Sole)",
  55837. image: {
  55838. source: "./media/characters/theo-monkey/foot-sole.svg"
  55839. }
  55840. },
  55841. footSide: {
  55842. height: math.unit(1.6, "feet"),
  55843. name: "Foot (Side)",
  55844. image: {
  55845. source: "./media/characters/theo-monkey/foot-side.svg"
  55846. }
  55847. },
  55848. },
  55849. [
  55850. {
  55851. name: "Normal",
  55852. height: math.unit(10 + 3/12, "feet"),
  55853. default: true
  55854. },
  55855. ]
  55856. ))
  55857. characterMakers.push(() => makeCharacter(
  55858. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55859. {
  55860. front: {
  55861. height: math.unit(11, "feet"),
  55862. weight: math.unit(3000, "lb"),
  55863. preyCapacity: math.unit(10, "people"),
  55864. name: "Front",
  55865. image: {
  55866. source: "./media/characters/brook/front.svg",
  55867. extra: 909/835,
  55868. bottom: 108/1017
  55869. }
  55870. },
  55871. back: {
  55872. height: math.unit(11, "feet"),
  55873. weight: math.unit(3000, "lb"),
  55874. preyCapacity: math.unit(10, "people"),
  55875. name: "Back",
  55876. image: {
  55877. source: "./media/characters/brook/back.svg",
  55878. extra: 976/916,
  55879. bottom: 34/1010
  55880. }
  55881. },
  55882. backAlt: {
  55883. height: math.unit(11, "feet"),
  55884. weight: math.unit(3000, "lb"),
  55885. preyCapacity: math.unit(10, "people"),
  55886. name: "Back (Alt)",
  55887. image: {
  55888. source: "./media/characters/brook/back-alt.svg",
  55889. extra: 1283/1213,
  55890. bottom: 35/1318
  55891. }
  55892. },
  55893. bust: {
  55894. height: math.unit(9.0859030837, "feet"),
  55895. weight: math.unit(3000, "lb"),
  55896. preyCapacity: math.unit(10, "people"),
  55897. name: "Bust",
  55898. image: {
  55899. source: "./media/characters/brook/bust.svg",
  55900. extra: 2043/1923,
  55901. bottom: 0/2043
  55902. }
  55903. },
  55904. },
  55905. [
  55906. {
  55907. name: "Small",
  55908. height: math.unit(11, "feet"),
  55909. default: true
  55910. },
  55911. {
  55912. name: "Towering",
  55913. height: math.unit(5, "km")
  55914. },
  55915. {
  55916. name: "Enormous",
  55917. height: math.unit(25, "earths")
  55918. },
  55919. ]
  55920. ))
  55921. characterMakers.push(() => makeCharacter(
  55922. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55923. {
  55924. front: {
  55925. height: math.unit(4, "feet"),
  55926. weight: math.unit(150, "lb"),
  55927. name: "Front",
  55928. image: {
  55929. source: "./media/characters/squishi/front.svg",
  55930. extra: 1428/1271,
  55931. bottom: 30/1458
  55932. },
  55933. extraAttributes: {
  55934. "pawSize": {
  55935. name: "Paw Size",
  55936. power: 1,
  55937. type: "length",
  55938. base: math.unit(14, "ShoeSizeMensUS"),
  55939. defaultUnit: "ShoeSizeMensUS"
  55940. },
  55941. }
  55942. },
  55943. side: {
  55944. height: math.unit(4, "feet"),
  55945. weight: math.unit(150, "lb"),
  55946. name: "Side",
  55947. image: {
  55948. source: "./media/characters/squishi/side.svg",
  55949. extra: 1428/1271,
  55950. bottom: 30/1458
  55951. },
  55952. extraAttributes: {
  55953. "pawSize": {
  55954. name: "Paw Size",
  55955. power: 1,
  55956. type: "length",
  55957. base: math.unit(14, "ShoeSizeMensUS"),
  55958. defaultUnit: "ShoeSizeMensUS"
  55959. },
  55960. }
  55961. },
  55962. back: {
  55963. height: math.unit(4, "feet"),
  55964. weight: math.unit(150, "lb"),
  55965. name: "Back",
  55966. image: {
  55967. source: "./media/characters/squishi/back.svg",
  55968. extra: 1428/1271,
  55969. bottom: 30/1458
  55970. },
  55971. extraAttributes: {
  55972. "pawSize": {
  55973. name: "Paw Size",
  55974. power: 1,
  55975. type: "length",
  55976. base: math.unit(14, "ShoeSizeMensUS"),
  55977. defaultUnit: "ShoeSizeMensUS"
  55978. },
  55979. }
  55980. },
  55981. },
  55982. [
  55983. {
  55984. name: "Normal",
  55985. height: math.unit(4, "feet"),
  55986. default: true
  55987. },
  55988. ]
  55989. ))
  55990. characterMakers.push(() => makeCharacter(
  55991. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55992. {
  55993. front: {
  55994. height: math.unit(7 + 8/12, "feet"),
  55995. weight: math.unit(333, "lb"),
  55996. name: "Front",
  55997. image: {
  55998. source: "./media/characters/vincent-vasroc/front.svg",
  55999. extra: 1962/1860,
  56000. bottom: 41/2003
  56001. }
  56002. },
  56003. back: {
  56004. height: math.unit(7 + 8/12, "feet"),
  56005. weight: math.unit(333, "lb"),
  56006. name: "Back",
  56007. image: {
  56008. source: "./media/characters/vincent-vasroc/back.svg",
  56009. extra: 1952/1815,
  56010. bottom: 33/1985
  56011. }
  56012. },
  56013. paw: {
  56014. height: math.unit(1.24, "feet"),
  56015. name: "Paw",
  56016. image: {
  56017. source: "./media/characters/vincent-vasroc/paw.svg"
  56018. }
  56019. },
  56020. ear: {
  56021. height: math.unit(0.75, "feet"),
  56022. name: "Ear",
  56023. image: {
  56024. source: "./media/characters/vincent-vasroc/ear.svg"
  56025. }
  56026. },
  56027. },
  56028. [
  56029. {
  56030. name: "Nano",
  56031. height: math.unit(92, "micrometers")
  56032. },
  56033. {
  56034. name: "Normal",
  56035. height: math.unit(7 + 8/12, "feet"),
  56036. default: true
  56037. },
  56038. ]
  56039. ))
  56040. characterMakers.push(() => makeCharacter(
  56041. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56042. {
  56043. frontNsfw: {
  56044. height: math.unit(40, "feet"),
  56045. weight: math.unit(58, "tons"),
  56046. name: "Front (NSFW)",
  56047. image: {
  56048. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56049. extra: 1265/965,
  56050. bottom: 155/1420
  56051. }
  56052. },
  56053. frontSfw: {
  56054. height: math.unit(40, "feet"),
  56055. weight: math.unit(58, "tons"),
  56056. name: "Front (SFW)",
  56057. image: {
  56058. source: "./media/characters/ru-kahn/front-sfw.svg",
  56059. extra: 1265/965,
  56060. bottom: 80/1345
  56061. }
  56062. },
  56063. },
  56064. [
  56065. {
  56066. name: "Small",
  56067. height: math.unit(4, "feet")
  56068. },
  56069. {
  56070. name: "Normal",
  56071. height: math.unit(40, "feet"),
  56072. default: true
  56073. },
  56074. {
  56075. name: "Macro",
  56076. height: math.unit(400, "feet")
  56077. },
  56078. ]
  56079. ))
  56080. characterMakers.push(() => makeCharacter(
  56081. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56082. {
  56083. frontNude: {
  56084. height: math.unit(6 + 5/12, "feet"),
  56085. name: "Front (Nude)",
  56086. image: {
  56087. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56088. extra: 1369/1366,
  56089. bottom: 68/1437
  56090. }
  56091. },
  56092. frontDressed: {
  56093. height: math.unit(6 + 5/12, "feet"),
  56094. name: "Front (Dressed)",
  56095. image: {
  56096. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56097. extra: 1369/1366,
  56098. bottom: 68/1437
  56099. }
  56100. },
  56101. },
  56102. [
  56103. {
  56104. name: "Normal",
  56105. height: math.unit(6 + 5/12, "feet"),
  56106. default: true
  56107. },
  56108. {
  56109. name: "Maximum",
  56110. height: math.unit(1930, "feet")
  56111. },
  56112. ]
  56113. ))
  56114. characterMakers.push(() => makeCharacter(
  56115. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56116. {
  56117. front: {
  56118. height: math.unit(5 + 6/12, "feet"),
  56119. name: "Front",
  56120. image: {
  56121. source: "./media/characters/kaja/front.svg",
  56122. extra: 1874/1514,
  56123. bottom: 117/1991
  56124. }
  56125. },
  56126. },
  56127. [
  56128. {
  56129. name: "Normal",
  56130. height: math.unit(5 + 6/12, "feet"),
  56131. default: true
  56132. },
  56133. ]
  56134. ))
  56135. characterMakers.push(() => makeCharacter(
  56136. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56137. {
  56138. front: {
  56139. height: math.unit(5 + 9/12, "feet"),
  56140. weight: math.unit(200, "lb"),
  56141. name: "Front",
  56142. image: {
  56143. source: "./media/characters/mark-smith/front.svg",
  56144. extra: 1004/943,
  56145. bottom: 58/1062
  56146. }
  56147. },
  56148. back: {
  56149. height: math.unit(5 + 9/12, "feet"),
  56150. weight: math.unit(200, "lb"),
  56151. name: "Back",
  56152. image: {
  56153. source: "./media/characters/mark-smith/back.svg",
  56154. extra: 1023/953,
  56155. bottom: 24/1047
  56156. }
  56157. },
  56158. head: {
  56159. height: math.unit(1.82, "feet"),
  56160. name: "Head",
  56161. image: {
  56162. source: "./media/characters/mark-smith/head.svg"
  56163. }
  56164. },
  56165. hand: {
  56166. height: math.unit(1.4, "feet"),
  56167. name: "Hand",
  56168. image: {
  56169. source: "./media/characters/mark-smith/hand.svg"
  56170. }
  56171. },
  56172. paw: {
  56173. height: math.unit(1.69, "feet"),
  56174. name: "Paw",
  56175. image: {
  56176. source: "./media/characters/mark-smith/paw.svg"
  56177. }
  56178. },
  56179. },
  56180. [
  56181. {
  56182. name: "Micro",
  56183. height: math.unit(0.25, "inches")
  56184. },
  56185. {
  56186. name: "Normal",
  56187. height: math.unit(5 + 9/12, "feet"),
  56188. default: true
  56189. },
  56190. {
  56191. name: "Macro",
  56192. height: math.unit(500, "feet")
  56193. },
  56194. ]
  56195. ))
  56196. characterMakers.push(() => makeCharacter(
  56197. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56198. {
  56199. frontNude: {
  56200. height: math.unit(6, "feet"),
  56201. name: "Front (Nude)",
  56202. image: {
  56203. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56204. extra: 1384/1321,
  56205. bottom: 57/1441
  56206. }
  56207. },
  56208. frontDressed: {
  56209. height: math.unit(6, "feet"),
  56210. name: "Front (Dressed)",
  56211. image: {
  56212. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56213. extra: 1384/1321,
  56214. bottom: 57/1441
  56215. }
  56216. },
  56217. },
  56218. [
  56219. {
  56220. name: "Normal",
  56221. height: math.unit(6, "feet"),
  56222. default: true
  56223. },
  56224. {
  56225. name: "Maximum",
  56226. height: math.unit(1776, "feet")
  56227. },
  56228. ]
  56229. ))
  56230. characterMakers.push(() => makeCharacter(
  56231. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56232. {
  56233. front: {
  56234. height: math.unit(2 + 4/12, "feet"),
  56235. weight: math.unit(350, "lb"),
  56236. name: "Front",
  56237. image: {
  56238. source: "./media/characters/devos/front.svg",
  56239. extra: 958/852,
  56240. bottom: 143/1101
  56241. }
  56242. },
  56243. },
  56244. [
  56245. {
  56246. name: "Base",
  56247. height: math.unit(2 + 4/12, "feet"),
  56248. default: true
  56249. },
  56250. ]
  56251. ))
  56252. characterMakers.push(() => makeCharacter(
  56253. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56254. {
  56255. front: {
  56256. height: math.unit(9 + 2/12, "feet"),
  56257. name: "Front",
  56258. image: {
  56259. source: "./media/characters/hiveheart/front.svg",
  56260. extra: 394/364,
  56261. bottom: 65/459
  56262. }
  56263. },
  56264. back: {
  56265. height: math.unit(9 + 2/12, "feet"),
  56266. name: "Back",
  56267. image: {
  56268. source: "./media/characters/hiveheart/back.svg",
  56269. extra: 374/357,
  56270. bottom: 63/437
  56271. }
  56272. },
  56273. },
  56274. [
  56275. {
  56276. name: "Base",
  56277. height: math.unit(9 + 2/12, "feet"),
  56278. default: true
  56279. },
  56280. ]
  56281. ))
  56282. characterMakers.push(() => makeCharacter(
  56283. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56284. {
  56285. front: {
  56286. height: math.unit(2.5, "inches"),
  56287. weight: math.unit(0.6, "oz"),
  56288. name: "Front",
  56289. image: {
  56290. source: "./media/characters/bryn/front.svg",
  56291. extra: 1480/1205,
  56292. bottom: 27/1507
  56293. }
  56294. },
  56295. back: {
  56296. height: math.unit(2.5, "inches"),
  56297. weight: math.unit(0.6, "oz"),
  56298. name: "Back",
  56299. image: {
  56300. source: "./media/characters/bryn/back.svg",
  56301. extra: 1475/1201,
  56302. bottom: 39/1514
  56303. }
  56304. },
  56305. foot: {
  56306. height: math.unit(0.4, "inches"),
  56307. name: "Foot",
  56308. image: {
  56309. source: "./media/characters/bryn/foot.svg"
  56310. }
  56311. },
  56312. },
  56313. [
  56314. {
  56315. name: "Normal",
  56316. height: math.unit(2.5, "inches"),
  56317. default: true
  56318. },
  56319. ]
  56320. ))
  56321. characterMakers.push(() => makeCharacter(
  56322. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56323. {
  56324. side: {
  56325. height: math.unit(7, "feet"),
  56326. weight: math.unit(657, "kg"),
  56327. name: "Side",
  56328. image: {
  56329. source: "./media/characters/delta/side.svg",
  56330. extra: 781/212,
  56331. bottom: 7/788
  56332. },
  56333. extraAttributes: {
  56334. "wingspan": {
  56335. name: "Wingspan",
  56336. power: 1,
  56337. type: "length",
  56338. base: math.unit(48, "feet")
  56339. },
  56340. "length": {
  56341. name: "Length",
  56342. power: 1,
  56343. type: "length",
  56344. base: math.unit(21, "feet")
  56345. },
  56346. "pawSize": {
  56347. name: "Paw Size",
  56348. power: 2,
  56349. type: "area",
  56350. base: math.unit(1.5*1.4, "feet^2")
  56351. },
  56352. }
  56353. },
  56354. },
  56355. [
  56356. {
  56357. name: "Normal",
  56358. height: math.unit(6, "feet"),
  56359. default: true
  56360. },
  56361. ]
  56362. ))
  56363. characterMakers.push(() => makeCharacter(
  56364. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56365. {
  56366. front: {
  56367. height: math.unit(6, "feet"),
  56368. name: "Front",
  56369. image: {
  56370. source: "./media/characters/pyrow/front.svg",
  56371. extra: 513/486,
  56372. bottom: 14/527
  56373. }
  56374. },
  56375. frontWing: {
  56376. height: math.unit(6, "feet"),
  56377. name: "Front (Wing)",
  56378. image: {
  56379. source: "./media/characters/pyrow/front-wing.svg",
  56380. extra: 539/383,
  56381. bottom: 20/559
  56382. }
  56383. },
  56384. back: {
  56385. height: math.unit(6, "feet"),
  56386. name: "Back",
  56387. image: {
  56388. source: "./media/characters/pyrow/back.svg",
  56389. extra: 500/473,
  56390. bottom: 9/509
  56391. }
  56392. },
  56393. },
  56394. [
  56395. {
  56396. name: "Normal",
  56397. height: math.unit(6, "feet"),
  56398. default: true
  56399. },
  56400. ]
  56401. ))
  56402. characterMakers.push(() => makeCharacter(
  56403. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56404. {
  56405. front: {
  56406. height: math.unit(5, "meters"),
  56407. weight: math.unit(3, "tonnes"),
  56408. name: "Front",
  56409. image: {
  56410. source: "./media/characters/velikan/front.svg",
  56411. extra: 867/744,
  56412. bottom: 71/938
  56413. },
  56414. extraAttributes: {
  56415. "shoeSize": {
  56416. name: "Shoe Size",
  56417. power: 1,
  56418. type: "length",
  56419. base: math.unit(135, "ShoeSizeUK"),
  56420. defaultUnit: "ShoeSizeUK"
  56421. },
  56422. }
  56423. },
  56424. },
  56425. [
  56426. {
  56427. name: "Normal",
  56428. height: math.unit(5, "meters"),
  56429. default: true
  56430. },
  56431. {
  56432. name: "Macro",
  56433. height: math.unit(1, "km")
  56434. },
  56435. {
  56436. name: "Mega Macro",
  56437. height: math.unit(100, "km")
  56438. },
  56439. {
  56440. name: "Giga Macro",
  56441. height: math.unit(2, "megameters")
  56442. },
  56443. {
  56444. name: "Planetary",
  56445. height: math.unit(22, "megameters")
  56446. },
  56447. {
  56448. name: "Solar",
  56449. height: math.unit(8, "gigameters")
  56450. },
  56451. {
  56452. name: "Cosmic",
  56453. height: math.unit(10, "zettameters")
  56454. },
  56455. {
  56456. name: "Omni",
  56457. height: math.unit(9e260, "multiverses")
  56458. },
  56459. ]
  56460. ))
  56461. characterMakers.push(() => makeCharacter(
  56462. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56463. {
  56464. front: {
  56465. height: math.unit(4 + 3/12, "feet"),
  56466. weight: math.unit(90, "lb"),
  56467. name: "Front",
  56468. image: {
  56469. source: "./media/characters/sabiki/front.svg",
  56470. extra: 1662/1423,
  56471. bottom: 65/1727
  56472. }
  56473. },
  56474. },
  56475. [
  56476. {
  56477. name: "Normal",
  56478. height: math.unit(4 + 3/12, "feet"),
  56479. default: true
  56480. },
  56481. ]
  56482. ))
  56483. characterMakers.push(() => makeCharacter(
  56484. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56485. {
  56486. frontSfw: {
  56487. height: math.unit(2, "mm"),
  56488. name: "Front (SFW)",
  56489. image: {
  56490. source: "./media/characters/carmel/front-sfw.svg",
  56491. extra: 1131/1006,
  56492. bottom: 66/1197
  56493. }
  56494. },
  56495. frontNsfw: {
  56496. height: math.unit(2, "mm"),
  56497. name: "Front (NSFW)",
  56498. image: {
  56499. source: "./media/characters/carmel/front-nsfw.svg",
  56500. extra: 1131/1006,
  56501. bottom: 66/1197
  56502. }
  56503. },
  56504. foot: {
  56505. height: math.unit(0.3, "mm"),
  56506. name: "Foot",
  56507. image: {
  56508. source: "./media/characters/carmel/foot.svg"
  56509. }
  56510. },
  56511. tongue: {
  56512. height: math.unit(0.71, "mm"),
  56513. name: "Tongue",
  56514. image: {
  56515. source: "./media/characters/carmel/tongue.svg"
  56516. }
  56517. },
  56518. dick: {
  56519. height: math.unit(0.085, "mm"),
  56520. name: "Dick",
  56521. image: {
  56522. source: "./media/characters/carmel/dick.svg"
  56523. }
  56524. },
  56525. },
  56526. [
  56527. {
  56528. name: "Micro",
  56529. height: math.unit(2, "mm"),
  56530. default: true
  56531. },
  56532. {
  56533. name: "Normal",
  56534. height: math.unit(4 + 8/12, "feet")
  56535. },
  56536. {
  56537. name: "Mega Macro",
  56538. height: math.unit(250, "feet")
  56539. },
  56540. {
  56541. name: "BIGGER",
  56542. height: math.unit(1000, "feet")
  56543. },
  56544. {
  56545. name: "BIGGEST",
  56546. height: math.unit(2, "miles")
  56547. },
  56548. ]
  56549. ))
  56550. characterMakers.push(() => makeCharacter(
  56551. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56552. {
  56553. front: {
  56554. height: math.unit(6.5, "feet"),
  56555. weight: math.unit(198, "lb"),
  56556. name: "Front",
  56557. image: {
  56558. source: "./media/characters/tamani/anthro.svg",
  56559. extra: 930/890,
  56560. bottom: 34/964
  56561. },
  56562. form: "anthro",
  56563. default: true
  56564. },
  56565. side: {
  56566. height: math.unit(6, "feet"),
  56567. weight: math.unit(198*2, "lb"),
  56568. name: "Side",
  56569. image: {
  56570. source: "./media/characters/tamani/feral.svg",
  56571. extra: 559/519,
  56572. bottom: 43/602
  56573. },
  56574. form: "feral"
  56575. },
  56576. },
  56577. [
  56578. {
  56579. name: "Normal",
  56580. height: math.unit(6.5, "feet"),
  56581. default: true,
  56582. form: "anthro"
  56583. },
  56584. {
  56585. name: "Normal",
  56586. height: math.unit(6, "feet"),
  56587. default: true,
  56588. form: "feral"
  56589. },
  56590. ],
  56591. {
  56592. "anthro": {
  56593. name: "Anthro",
  56594. default: true
  56595. },
  56596. "feral": {
  56597. name: "Feral",
  56598. },
  56599. }
  56600. ))
  56601. characterMakers.push(() => makeCharacter(
  56602. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56603. {
  56604. front: {
  56605. height: math.unit(4 + 1/12, "feet"),
  56606. weight: math.unit(114, "lb"),
  56607. name: "Front",
  56608. image: {
  56609. source: "./media/characters/dex/front.svg",
  56610. extra: 787/680,
  56611. bottom: 18/805
  56612. }
  56613. },
  56614. side: {
  56615. height: math.unit(4 + 1/12, "feet"),
  56616. weight: math.unit(114, "lb"),
  56617. name: "Side",
  56618. image: {
  56619. source: "./media/characters/dex/side.svg",
  56620. extra: 785/680,
  56621. bottom: 12/797
  56622. }
  56623. },
  56624. back: {
  56625. height: math.unit(4 + 1/12, "feet"),
  56626. weight: math.unit(114, "lb"),
  56627. name: "Back",
  56628. image: {
  56629. source: "./media/characters/dex/back.svg",
  56630. extra: 785/681,
  56631. bottom: 17/802
  56632. }
  56633. },
  56634. loungewear: {
  56635. height: math.unit(4 + 1/12, "feet"),
  56636. weight: math.unit(114, "lb"),
  56637. name: "Loungewear",
  56638. image: {
  56639. source: "./media/characters/dex/loungewear.svg",
  56640. extra: 787/680,
  56641. bottom: 18/805
  56642. }
  56643. },
  56644. workout: {
  56645. height: math.unit(4 + 1/12, "feet"),
  56646. weight: math.unit(114, "lb"),
  56647. name: "Workout",
  56648. image: {
  56649. source: "./media/characters/dex/workout.svg",
  56650. extra: 787/680,
  56651. bottom: 18/805
  56652. }
  56653. },
  56654. schoolUniform: {
  56655. height: math.unit(4 + 1/12, "feet"),
  56656. weight: math.unit(114, "lb"),
  56657. name: "School-uniform",
  56658. image: {
  56659. source: "./media/characters/dex/school-uniform.svg",
  56660. extra: 787/680,
  56661. bottom: 18/805
  56662. }
  56663. },
  56664. maw: {
  56665. height: math.unit(0.55, "feet"),
  56666. name: "Maw",
  56667. image: {
  56668. source: "./media/characters/dex/maw.svg"
  56669. }
  56670. },
  56671. paw: {
  56672. height: math.unit(0.87, "feet"),
  56673. name: "Paw",
  56674. image: {
  56675. source: "./media/characters/dex/paw.svg"
  56676. }
  56677. },
  56678. bust: {
  56679. height: math.unit(1.67, "feet"),
  56680. name: "Bust",
  56681. image: {
  56682. source: "./media/characters/dex/bust.svg"
  56683. }
  56684. },
  56685. },
  56686. [
  56687. {
  56688. name: "Normal",
  56689. height: math.unit(4 + 1/12, "feet"),
  56690. default: true
  56691. },
  56692. ]
  56693. ))
  56694. characterMakers.push(() => makeCharacter(
  56695. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56696. {
  56697. front: {
  56698. height: math.unit(4 + 3/12, "feet"),
  56699. weight: math.unit(60, "lb"),
  56700. name: "Front",
  56701. image: {
  56702. source: "./media/characters/silke/front.svg",
  56703. extra: 1334/1122,
  56704. bottom: 21/1355
  56705. }
  56706. },
  56707. back: {
  56708. height: math.unit(4 + 3/12, "feet"),
  56709. weight: math.unit(60, "lb"),
  56710. name: "Back",
  56711. image: {
  56712. source: "./media/characters/silke/back.svg",
  56713. extra: 1328/1092,
  56714. bottom: 16/1344
  56715. }
  56716. },
  56717. dressed: {
  56718. height: math.unit(4 + 3/12, "feet"),
  56719. weight: math.unit(60, "lb"),
  56720. name: "Dressed",
  56721. image: {
  56722. source: "./media/characters/silke/dressed.svg",
  56723. extra: 1334/1122,
  56724. bottom: 43/1377
  56725. }
  56726. },
  56727. },
  56728. [
  56729. {
  56730. name: "Normal",
  56731. height: math.unit(4 + 3/12, "feet"),
  56732. default: true
  56733. },
  56734. ]
  56735. ))
  56736. characterMakers.push(() => makeCharacter(
  56737. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56738. {
  56739. front: {
  56740. height: math.unit(1.58, "meters"),
  56741. weight: math.unit(47, "kg"),
  56742. name: "Front",
  56743. image: {
  56744. source: "./media/characters/wireshark/front.svg",
  56745. extra: 883/838,
  56746. bottom: 66/949
  56747. }
  56748. },
  56749. },
  56750. [
  56751. {
  56752. name: "Normal",
  56753. height: math.unit(1.58, "meters"),
  56754. default: true
  56755. },
  56756. ]
  56757. ))
  56758. characterMakers.push(() => makeCharacter(
  56759. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56760. {
  56761. front: {
  56762. height: math.unit(6, "meters"),
  56763. weight: math.unit(15000, "kg"),
  56764. name: "Front",
  56765. image: {
  56766. source: "./media/characters/gallagher/front.svg",
  56767. extra: 532/493,
  56768. bottom: 0/532
  56769. }
  56770. },
  56771. },
  56772. [
  56773. {
  56774. name: "Normal",
  56775. height: math.unit(6, "meters"),
  56776. default: true
  56777. },
  56778. ]
  56779. ))
  56780. characterMakers.push(() => makeCharacter(
  56781. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56782. {
  56783. front: {
  56784. height: math.unit(2.4, "meters"),
  56785. weight: math.unit(270, "kg"),
  56786. name: "Front",
  56787. image: {
  56788. source: "./media/characters/alice/front.svg",
  56789. extra: 950/900,
  56790. bottom: 36/986
  56791. }
  56792. },
  56793. side: {
  56794. height: math.unit(2.4, "meters"),
  56795. weight: math.unit(270, "kg"),
  56796. name: "Side",
  56797. image: {
  56798. source: "./media/characters/alice/side.svg",
  56799. extra: 921/876,
  56800. bottom: 19/940
  56801. }
  56802. },
  56803. dressed: {
  56804. height: math.unit(2.4, "meters"),
  56805. weight: math.unit(270, "kg"),
  56806. name: "Dressed",
  56807. image: {
  56808. source: "./media/characters/alice/dressed.svg",
  56809. extra: 905/850,
  56810. bottom: 81/986
  56811. }
  56812. },
  56813. fishnet: {
  56814. height: math.unit(2.4, "meters"),
  56815. weight: math.unit(270, "kg"),
  56816. name: "Fishnet",
  56817. image: {
  56818. source: "./media/characters/alice/fishnet.svg",
  56819. extra: 905/850,
  56820. bottom: 81/986
  56821. }
  56822. },
  56823. },
  56824. [
  56825. {
  56826. name: "Normal",
  56827. height: math.unit(2.4, "meters"),
  56828. default: true
  56829. },
  56830. ]
  56831. ))
  56832. characterMakers.push(() => makeCharacter(
  56833. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56834. {
  56835. front: {
  56836. height: math.unit(175.25, "feet"),
  56837. name: "Front",
  56838. image: {
  56839. source: "./media/characters/fio/front.svg",
  56840. extra: 1883/1591,
  56841. bottom: 34/1917
  56842. }
  56843. },
  56844. },
  56845. [
  56846. {
  56847. name: "Normal",
  56848. height: math.unit(175.25, "cm"),
  56849. default: true
  56850. },
  56851. ]
  56852. ))
  56853. characterMakers.push(() => makeCharacter(
  56854. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56855. {
  56856. side: {
  56857. height: math.unit(6, "meters"),
  56858. weight: math.unit(3400, "kg"),
  56859. preyCapacity: math.unit(1700, "liters"),
  56860. name: "Side",
  56861. image: {
  56862. source: "./media/characters/hass/side.svg",
  56863. extra: 1058/997,
  56864. bottom: 177/1235
  56865. }
  56866. },
  56867. feeding: {
  56868. height: math.unit(6*0.63, "meters"),
  56869. weight: math.unit(3400, "kg"),
  56870. preyCapacity: math.unit(1700, "liters"),
  56871. name: "Feeding",
  56872. image: {
  56873. source: "./media/characters/hass/feeding.svg",
  56874. extra: 689/579,
  56875. bottom: 146/835
  56876. }
  56877. },
  56878. guts: {
  56879. height: math.unit(6, "meters"),
  56880. weight: math.unit(3400, "kg"),
  56881. name: "Guts",
  56882. image: {
  56883. source: "./media/characters/hass/guts.svg",
  56884. extra: 1223/1198,
  56885. bottom: 182/1405
  56886. }
  56887. },
  56888. dickFront: {
  56889. height: math.unit(1.4, "meters"),
  56890. name: "Dick (Front)",
  56891. image: {
  56892. source: "./media/characters/hass/dick-front.svg"
  56893. }
  56894. },
  56895. dickSide: {
  56896. height: math.unit(1.3, "meters"),
  56897. name: "Dick (Side)",
  56898. image: {
  56899. source: "./media/characters/hass/dick-side.svg"
  56900. }
  56901. },
  56902. dickBack: {
  56903. height: math.unit(1.4, "meters"),
  56904. name: "Dick (Back)",
  56905. image: {
  56906. source: "./media/characters/hass/dick-back.svg"
  56907. }
  56908. },
  56909. },
  56910. [
  56911. {
  56912. name: "Normal",
  56913. height: math.unit(6, "meters"),
  56914. default: true
  56915. },
  56916. ]
  56917. ))
  56918. characterMakers.push(() => makeCharacter(
  56919. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56920. {
  56921. front: {
  56922. height: math.unit(4, "feet"),
  56923. weight: math.unit(60, "lb"),
  56924. name: "Front",
  56925. image: {
  56926. source: "./media/characters/hickory-finnegan/front.svg",
  56927. extra: 444/411,
  56928. bottom: 10/454
  56929. }
  56930. },
  56931. side: {
  56932. height: math.unit(4, "feet"),
  56933. weight: math.unit(60, "lb"),
  56934. name: "Side",
  56935. image: {
  56936. source: "./media/characters/hickory-finnegan/side.svg",
  56937. extra: 444/411,
  56938. bottom: 10/454
  56939. }
  56940. },
  56941. back: {
  56942. height: math.unit(4, "feet"),
  56943. weight: math.unit(60, "lb"),
  56944. name: "Back",
  56945. image: {
  56946. source: "./media/characters/hickory-finnegan/back.svg",
  56947. extra: 444/411,
  56948. bottom: 10/454
  56949. }
  56950. },
  56951. },
  56952. [
  56953. {
  56954. name: "Normal",
  56955. height: math.unit(4, "feet"),
  56956. default: true
  56957. },
  56958. ]
  56959. ))
  56960. characterMakers.push(() => makeCharacter(
  56961. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56962. {
  56963. snivy_front: {
  56964. height: math.unit(2, "feet"),
  56965. weight: math.unit(17.9, "lb"),
  56966. name: "Front",
  56967. image: {
  56968. source: "./media/characters/robin-phox/snivy-front.svg",
  56969. extra: 569/504,
  56970. bottom: 33/602
  56971. },
  56972. form: "snivy",
  56973. default: true
  56974. },
  56975. snivy_frontNsfw: {
  56976. height: math.unit(2, "feet"),
  56977. weight: math.unit(17.9, "lb"),
  56978. name: "Front (NSFW)",
  56979. image: {
  56980. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56981. extra: 569/504,
  56982. bottom: 33/602
  56983. },
  56984. form: "snivy",
  56985. },
  56986. snivy_back: {
  56987. height: math.unit(2, "feet"),
  56988. weight: math.unit(17.9, "lb"),
  56989. name: "Back",
  56990. image: {
  56991. source: "./media/characters/robin-phox/snivy-back.svg",
  56992. extra: 577/508,
  56993. bottom: 21/598
  56994. },
  56995. form: "snivy",
  56996. },
  56997. snivy_foot: {
  56998. height: math.unit(0.68, "feet"),
  56999. name: "Foot",
  57000. image: {
  57001. source: "./media/characters/robin-phox/snivy-foot.svg"
  57002. },
  57003. form: "snivy",
  57004. },
  57005. snivy_sole: {
  57006. height: math.unit(0.68, "feet"),
  57007. name: "Sole",
  57008. image: {
  57009. source: "./media/characters/robin-phox/snivy-sole.svg"
  57010. },
  57011. form: "snivy",
  57012. },
  57013. yoshi_front: {
  57014. height: math.unit(6, "feet"),
  57015. weight: math.unit(150, "lb"),
  57016. name: "Front",
  57017. image: {
  57018. source: "./media/characters/robin-phox/yoshi-front.svg",
  57019. extra: 890/792,
  57020. bottom: 29/919
  57021. },
  57022. form: "yoshi",
  57023. default: true
  57024. },
  57025. yoshi_frontNsfw: {
  57026. height: math.unit(6, "feet"),
  57027. weight: math.unit(150, "lb"),
  57028. name: "Front (NSFW)",
  57029. image: {
  57030. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57031. extra: 890/792,
  57032. bottom: 29/919
  57033. },
  57034. form: "yoshi",
  57035. },
  57036. yoshi_back: {
  57037. height: math.unit(6, "feet"),
  57038. weight: math.unit(150, "lb"),
  57039. name: "Back",
  57040. image: {
  57041. source: "./media/characters/robin-phox/yoshi-back.svg",
  57042. extra: 890/792,
  57043. bottom: 29/919
  57044. },
  57045. form: "yoshi",
  57046. },
  57047. yoshi_foot: {
  57048. height: math.unit(1.5, "feet"),
  57049. name: "Foot",
  57050. image: {
  57051. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57052. },
  57053. form: "yoshi",
  57054. },
  57055. delphox_front: {
  57056. height: math.unit(4 + 11/12, "feet"),
  57057. weight: math.unit(86, "lb"),
  57058. name: "Front",
  57059. image: {
  57060. source: "./media/characters/robin-phox/delphox-front.svg",
  57061. extra: 1266/1069,
  57062. bottom: 32/1298
  57063. },
  57064. form: "delphox",
  57065. default: true
  57066. },
  57067. delphox_frontNsfw: {
  57068. height: math.unit(4 + 11/12, "feet"),
  57069. weight: math.unit(86, "lb"),
  57070. name: "Front (NSFW)",
  57071. image: {
  57072. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57073. extra: 1266/1069,
  57074. bottom: 32/1298
  57075. },
  57076. form: "delphox",
  57077. },
  57078. delphox_back: {
  57079. height: math.unit(4 + 11/12, "feet"),
  57080. weight: math.unit(86, "lb"),
  57081. name: "Back",
  57082. image: {
  57083. source: "./media/characters/robin-phox/delphox-back.svg",
  57084. extra: 1269/1083,
  57085. bottom: 15/1284
  57086. },
  57087. form: "delphox",
  57088. },
  57089. mienshao_front: {
  57090. height: math.unit(4 + 7/12, "feet"),
  57091. weight: math.unit(78.3, "lb"),
  57092. name: "Front",
  57093. image: {
  57094. source: "./media/characters/robin-phox/mienshao-front.svg",
  57095. extra: 1052/970,
  57096. bottom: 108/1160
  57097. },
  57098. form: "mienshao",
  57099. default: true
  57100. },
  57101. mienshao_frontNsfw: {
  57102. height: math.unit(4 + 7/12, "feet"),
  57103. weight: math.unit(78.3, "lb"),
  57104. name: "Front (NSFW)",
  57105. image: {
  57106. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57107. extra: 1052/970,
  57108. bottom: 108/1160
  57109. },
  57110. form: "mienshao",
  57111. },
  57112. mienshao_back: {
  57113. height: math.unit(4 + 7/12, "feet"),
  57114. weight: math.unit(78.3, "lb"),
  57115. name: "Back",
  57116. image: {
  57117. source: "./media/characters/robin-phox/mienshao-back.svg",
  57118. extra: 1102/982,
  57119. bottom: 32/1134
  57120. },
  57121. form: "mienshao",
  57122. },
  57123. inteleon_front: {
  57124. height: math.unit(6 + 3/12, "feet"),
  57125. weight: math.unit(99.6, "lb"),
  57126. name: "Front",
  57127. image: {
  57128. source: "./media/characters/robin-phox/inteleon-front.svg",
  57129. extra: 910/799,
  57130. bottom: 76/986
  57131. },
  57132. form: "inteleon",
  57133. default: true
  57134. },
  57135. inteleon_frontNsfw: {
  57136. height: math.unit(6 + 3/12, "feet"),
  57137. weight: math.unit(99.6, "lb"),
  57138. name: "Front (NSFW)",
  57139. image: {
  57140. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57141. extra: 910/799,
  57142. bottom: 76/986
  57143. },
  57144. form: "inteleon",
  57145. },
  57146. inteleon_back: {
  57147. height: math.unit(6 + 3/12, "feet"),
  57148. weight: math.unit(99.6, "lb"),
  57149. name: "Back",
  57150. image: {
  57151. source: "./media/characters/robin-phox/inteleon-back.svg",
  57152. extra: 907/796,
  57153. bottom: 25/932
  57154. },
  57155. form: "inteleon",
  57156. },
  57157. reshiram_front: {
  57158. height: math.unit(10 + 6/12, "feet"),
  57159. weight: math.unit(727.5, "lb"),
  57160. name: "Front",
  57161. image: {
  57162. source: "./media/characters/robin-phox/reshiram-front.svg",
  57163. extra: 1198/940,
  57164. bottom: 123/1321
  57165. },
  57166. form: "reshiram",
  57167. },
  57168. reshiram_frontNsfw: {
  57169. height: math.unit(10 + 6/12, "feet"),
  57170. weight: math.unit(727.5, "lb"),
  57171. name: "Front-nsfw",
  57172. image: {
  57173. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57174. extra: 1198/940,
  57175. bottom: 123/1321
  57176. },
  57177. form: "reshiram",
  57178. },
  57179. reshiram_back: {
  57180. height: math.unit(10 + 6/12, "feet"),
  57181. weight: math.unit(727.5, "lb"),
  57182. name: "Back",
  57183. image: {
  57184. source: "./media/characters/robin-phox/reshiram-back.svg",
  57185. extra: 1024/904,
  57186. bottom: 85/1109
  57187. },
  57188. form: "reshiram",
  57189. },
  57190. samurott_front: {
  57191. height: math.unit(8, "feet"),
  57192. weight: math.unit(208.6, "lb"),
  57193. name: "Front",
  57194. image: {
  57195. source: "./media/characters/robin-phox/samurott-front.svg",
  57196. extra: 1048/984,
  57197. bottom: 100/1148
  57198. },
  57199. form: "samurott",
  57200. },
  57201. samurott_frontNsfw: {
  57202. height: math.unit(8, "feet"),
  57203. weight: math.unit(208.6, "lb"),
  57204. name: "Front-nsfw",
  57205. image: {
  57206. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57207. extra: 1048/984,
  57208. bottom: 100/1148
  57209. },
  57210. form: "samurott",
  57211. },
  57212. samurott_back: {
  57213. height: math.unit(8, "feet"),
  57214. weight: math.unit(208.6, "lb"),
  57215. name: "Back",
  57216. image: {
  57217. source: "./media/characters/robin-phox/samurott-back.svg",
  57218. extra: 1110/1042,
  57219. bottom: 12/1122
  57220. },
  57221. form: "samurott",
  57222. },
  57223. samurott_feral: {
  57224. height: math.unit(4 + 11/12, "feet"),
  57225. weight: math.unit(208.6, "lb"),
  57226. name: "Feral",
  57227. image: {
  57228. source: "./media/characters/robin-phox/samurott-feral.svg",
  57229. extra: 766/681,
  57230. bottom: 108/874
  57231. },
  57232. form: "samurott",
  57233. },
  57234. },
  57235. [
  57236. {
  57237. name: "Normal",
  57238. height: math.unit(2, "feet"),
  57239. default: true,
  57240. form: "snivy"
  57241. },
  57242. {
  57243. name: "Normal",
  57244. height: math.unit(6, "feet"),
  57245. default: true,
  57246. form: "yoshi"
  57247. },
  57248. {
  57249. name: "Normal",
  57250. height: math.unit(4 + 11/12, "feet"),
  57251. default: true,
  57252. form: "delphox"
  57253. },
  57254. {
  57255. name: "Normal",
  57256. height: math.unit(4 + 7/12, "feet"),
  57257. default: true,
  57258. form: "mienshao"
  57259. },
  57260. {
  57261. name: "Normal",
  57262. height: math.unit(6 + 3/12, "feet"),
  57263. default: true,
  57264. form: "inteleon"
  57265. },
  57266. {
  57267. name: "Normal",
  57268. height: math.unit(10 + 6/12, "feet"),
  57269. default: true,
  57270. form: "reshiram"
  57271. },
  57272. {
  57273. name: "Normal",
  57274. height: math.unit(8, "feet"),
  57275. default: true,
  57276. form: "samurott"
  57277. },
  57278. {
  57279. name: "Macro",
  57280. height: math.unit(500, "feet"),
  57281. allForms: true
  57282. },
  57283. {
  57284. name: "Mega Macro",
  57285. height: math.unit(10, "earths"),
  57286. allForms: true
  57287. },
  57288. {
  57289. name: "Giga Macro",
  57290. height: math.unit(1, "galaxy"),
  57291. allForms: true
  57292. },
  57293. {
  57294. name: "Godly Macro",
  57295. height: math.unit(1e10, "multiverses"),
  57296. allForms: true
  57297. },
  57298. ],
  57299. {
  57300. "snivy": {
  57301. name: "Snivy",
  57302. default: true
  57303. },
  57304. "yoshi": {
  57305. name: "Yoshi",
  57306. },
  57307. "delphox": {
  57308. name: "Delphox",
  57309. },
  57310. "mienshao": {
  57311. name: "Mienshao",
  57312. },
  57313. "inteleon": {
  57314. name: "Inteleon",
  57315. },
  57316. "reshiram": {
  57317. name: "Reshiram",
  57318. },
  57319. "samurott": {
  57320. name: "Samurott",
  57321. },
  57322. }
  57323. ))
  57324. characterMakers.push(() => makeCharacter(
  57325. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57326. {
  57327. front: {
  57328. height: math.unit(4, "feet"),
  57329. name: "Front",
  57330. image: {
  57331. source: "./media/characters/ash-leung/front.svg",
  57332. extra: 1916/1792,
  57333. bottom: 50/1966
  57334. }
  57335. },
  57336. },
  57337. [
  57338. {
  57339. name: "Atomic",
  57340. height: math.unit(1, "angstrom")
  57341. },
  57342. {
  57343. name: "Microscopic",
  57344. height: math.unit(4000, "angstroms")
  57345. },
  57346. {
  57347. name: "Speck",
  57348. height: math.unit(1, "mm")
  57349. },
  57350. {
  57351. name: "Small",
  57352. height: math.unit(1, "inch")
  57353. },
  57354. {
  57355. name: "Normal",
  57356. height: math.unit(4, "feet"),
  57357. default: true
  57358. },
  57359. ]
  57360. ))
  57361. characterMakers.push(() => makeCharacter(
  57362. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57363. {
  57364. frontDressed: {
  57365. height: math.unit(2.08, "meters"),
  57366. weight: math.unit(175, "lb"),
  57367. name: "Front (Dressed)",
  57368. image: {
  57369. source: "./media/characters/carie/front-dressed.svg",
  57370. extra: 456/417,
  57371. bottom: 7/463
  57372. }
  57373. },
  57374. backDressed: {
  57375. height: math.unit(2.08, "meters"),
  57376. weight: math.unit(175, "lb"),
  57377. name: "Back (Dressed)",
  57378. image: {
  57379. source: "./media/characters/carie/back-dressed.svg",
  57380. extra: 455/414,
  57381. bottom: 11/466
  57382. }
  57383. },
  57384. front: {
  57385. height: math.unit(2, "meters"),
  57386. weight: math.unit(175, "lb"),
  57387. name: "Front",
  57388. image: {
  57389. source: "./media/characters/carie/front.svg",
  57390. extra: 438/399,
  57391. bottom: 12/450
  57392. }
  57393. },
  57394. back: {
  57395. height: math.unit(2, "meters"),
  57396. weight: math.unit(175, "lb"),
  57397. name: "Back",
  57398. image: {
  57399. source: "./media/characters/carie/back.svg",
  57400. extra: 438/397,
  57401. bottom: 7/445
  57402. }
  57403. },
  57404. },
  57405. [
  57406. {
  57407. name: "Normal",
  57408. height: math.unit(2.08, "meters"),
  57409. default: true
  57410. },
  57411. {
  57412. name: "Macro",
  57413. height: math.unit(2.08e3, "meters")
  57414. },
  57415. {
  57416. name: "Mega Macro",
  57417. height: math.unit(2.08e6, "meters")
  57418. },
  57419. {
  57420. name: "Giga Macro",
  57421. height: math.unit(2.08e9, "meters")
  57422. },
  57423. {
  57424. name: "Tera Macro",
  57425. height: math.unit(2.08e12, "meters")
  57426. },
  57427. {
  57428. name: "Peta Macro",
  57429. height: math.unit(2.08e15, "meters")
  57430. },
  57431. {
  57432. name: "Exa Macro",
  57433. height: math.unit(2.08e18, "meters")
  57434. },
  57435. {
  57436. name: "Zetta Macro",
  57437. height: math.unit(2.08e21, "meters")
  57438. },
  57439. {
  57440. name: "Yotta Macro",
  57441. height: math.unit(2.08e24, "meters")
  57442. },
  57443. ]
  57444. ))
  57445. characterMakers.push(() => makeCharacter(
  57446. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57447. {
  57448. front: {
  57449. height: math.unit(5 + 2/12, "feet"),
  57450. weight: math.unit(120, "lb"),
  57451. name: "Front",
  57452. image: {
  57453. source: "./media/characters/sai-bree/front.svg",
  57454. extra: 1843/1702,
  57455. bottom: 91/1934
  57456. }
  57457. },
  57458. back: {
  57459. height: math.unit(5 + 2/12, "feet"),
  57460. weight: math.unit(120, "lb"),
  57461. name: "Back",
  57462. image: {
  57463. source: "./media/characters/sai-bree/back.svg",
  57464. extra: 1809/1637,
  57465. bottom: 56/1865
  57466. }
  57467. },
  57468. },
  57469. [
  57470. {
  57471. name: "Normal",
  57472. height: math.unit(5 + 2/12, "feet"),
  57473. default: true
  57474. },
  57475. {
  57476. name: "Macro",
  57477. height: math.unit(500, "feet")
  57478. },
  57479. ]
  57480. ))
  57481. characterMakers.push(() => makeCharacter(
  57482. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57483. {
  57484. side: {
  57485. height: math.unit(0.77, "meters"),
  57486. weight: math.unit(120, "lb"),
  57487. name: "Side",
  57488. image: {
  57489. source: "./media/characters/davwyn/side.svg",
  57490. extra: 1557/1225,
  57491. bottom: 131/1688
  57492. }
  57493. },
  57494. front: {
  57495. height: math.unit(0.835410, "meters"),
  57496. weight: math.unit(120, "lb"),
  57497. name: "Front",
  57498. image: {
  57499. source: "./media/characters/davwyn/front.svg",
  57500. extra: 870/843,
  57501. bottom: 175/1045
  57502. }
  57503. },
  57504. },
  57505. [
  57506. {
  57507. name: "Minidrake",
  57508. height: math.unit(0.77/4, "meters")
  57509. },
  57510. {
  57511. name: "Normal",
  57512. height: math.unit(0.77, "meters"),
  57513. default: true
  57514. },
  57515. ]
  57516. ))
  57517. characterMakers.push(() => makeCharacter(
  57518. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57519. {
  57520. front: {
  57521. height: math.unit(10 + 3/12, "feet"),
  57522. weight: math.unit(2857, "lb"),
  57523. name: "Front",
  57524. image: {
  57525. source: "./media/characters/balans/front.svg",
  57526. extra: 427/402,
  57527. bottom: 26/453
  57528. }
  57529. },
  57530. side: {
  57531. height: math.unit(10 + 3/12, "feet"),
  57532. weight: math.unit(2857, "lb"),
  57533. name: "Side",
  57534. image: {
  57535. source: "./media/characters/balans/side.svg",
  57536. extra: 397/371,
  57537. bottom: 17/414
  57538. }
  57539. },
  57540. back: {
  57541. height: math.unit(10 + 3/12, "feet"),
  57542. weight: math.unit(2857, "lb"),
  57543. name: "Back",
  57544. image: {
  57545. source: "./media/characters/balans/back.svg",
  57546. extra: 408/381,
  57547. bottom: 14/422
  57548. }
  57549. },
  57550. hand: {
  57551. height: math.unit(1.15, "feet"),
  57552. name: "Hand",
  57553. image: {
  57554. source: "./media/characters/balans/hand.svg"
  57555. }
  57556. },
  57557. footRest: {
  57558. height: math.unit(3.1, "feet"),
  57559. name: "Foot (Rest)",
  57560. image: {
  57561. source: "./media/characters/balans/foot-rest.svg"
  57562. }
  57563. },
  57564. footActive: {
  57565. height: math.unit(3.5, "feet"),
  57566. name: "Foot (Active)",
  57567. image: {
  57568. source: "./media/characters/balans/foot-active.svg"
  57569. }
  57570. },
  57571. },
  57572. [
  57573. {
  57574. name: "Normal",
  57575. height: math.unit(10 + 3/12, "feet"),
  57576. default: true
  57577. },
  57578. ]
  57579. ))
  57580. characterMakers.push(() => makeCharacter(
  57581. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57582. {
  57583. side: {
  57584. height: math.unit(9, "meters"),
  57585. weight: math.unit(114, "tonnes"),
  57586. name: "Side",
  57587. image: {
  57588. source: "./media/characters/eldkveikir/side.svg",
  57589. extra: 1927/338,
  57590. bottom: 42/1969
  57591. }
  57592. },
  57593. sitting: {
  57594. height: math.unit(13.4, "meters"),
  57595. weight: math.unit(114, "tonnes"),
  57596. name: "Sitting",
  57597. image: {
  57598. source: "./media/characters/eldkveikir/sitting.svg",
  57599. extra: 1108/963,
  57600. bottom: 610/1718
  57601. }
  57602. },
  57603. maw: {
  57604. height: math.unit(8.36, "meters"),
  57605. name: "Maw",
  57606. image: {
  57607. source: "./media/characters/eldkveikir/maw.svg"
  57608. }
  57609. },
  57610. hand: {
  57611. height: math.unit(4.84, "meters"),
  57612. name: "Hand",
  57613. image: {
  57614. source: "./media/characters/eldkveikir/hand.svg"
  57615. }
  57616. },
  57617. foot: {
  57618. height: math.unit(6.9, "meters"),
  57619. name: "Foot",
  57620. image: {
  57621. source: "./media/characters/eldkveikir/foot.svg"
  57622. }
  57623. },
  57624. genitals: {
  57625. height: math.unit(9.6, "meters"),
  57626. name: "Genitals",
  57627. image: {
  57628. source: "./media/characters/eldkveikir/genitals.svg"
  57629. }
  57630. },
  57631. },
  57632. [
  57633. {
  57634. name: "Normal",
  57635. height: math.unit(9, "meters"),
  57636. default: true
  57637. },
  57638. ]
  57639. ))
  57640. characterMakers.push(() => makeCharacter(
  57641. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57642. {
  57643. front: {
  57644. height: math.unit(14, "feet"),
  57645. weight: math.unit(4100, "lb"),
  57646. name: "Front",
  57647. image: {
  57648. source: "./media/characters/arrow/front.svg",
  57649. extra: 330/318,
  57650. bottom: 56/386
  57651. }
  57652. },
  57653. },
  57654. [
  57655. {
  57656. name: "Normal",
  57657. height: math.unit(14, "feet"),
  57658. default: true
  57659. },
  57660. {
  57661. name: "Minimacro",
  57662. height: math.unit(63, "feet")
  57663. },
  57664. {
  57665. name: "Macro",
  57666. height: math.unit(630, "feet")
  57667. },
  57668. {
  57669. name: "Megamacro",
  57670. height: math.unit(12600, "feet")
  57671. },
  57672. {
  57673. name: "Gigamacro",
  57674. height: math.unit(18000, "miles")
  57675. },
  57676. ]
  57677. ))
  57678. characterMakers.push(() => makeCharacter(
  57679. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57680. {
  57681. front: {
  57682. height: math.unit(10, "feet"),
  57683. weight: math.unit(2.4, "tons"),
  57684. name: "Front",
  57685. image: {
  57686. source: "./media/characters/3yk-k0-unit/front.svg",
  57687. extra: 573/561,
  57688. bottom: 33/606
  57689. }
  57690. },
  57691. back: {
  57692. height: math.unit(10, "feet"),
  57693. weight: math.unit(2.4, "tons"),
  57694. name: "Back",
  57695. image: {
  57696. source: "./media/characters/3yk-k0-unit/back.svg",
  57697. extra: 614/573,
  57698. bottom: 32/646
  57699. }
  57700. },
  57701. maw: {
  57702. height: math.unit(2.15, "feet"),
  57703. name: "Maw",
  57704. image: {
  57705. source: "./media/characters/3yk-k0-unit/maw.svg"
  57706. }
  57707. },
  57708. },
  57709. [
  57710. {
  57711. name: "Normal",
  57712. height: math.unit(10, "feet"),
  57713. default: true
  57714. },
  57715. ]
  57716. ))
  57717. characterMakers.push(() => makeCharacter(
  57718. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57719. {
  57720. front: {
  57721. height: math.unit(8 + 8/12, "feet"),
  57722. name: "Front",
  57723. image: {
  57724. source: "./media/characters/nemo/front.svg",
  57725. extra: 1308/1217,
  57726. bottom: 57/1365
  57727. }
  57728. },
  57729. },
  57730. [
  57731. {
  57732. name: "Normal",
  57733. height: math.unit(8 + 8/12, "feet"),
  57734. default: true
  57735. },
  57736. ]
  57737. ))
  57738. characterMakers.push(() => makeCharacter(
  57739. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57740. {
  57741. front: {
  57742. height: math.unit(8, "feet"),
  57743. weight: math.unit(760, "lb"),
  57744. name: "Front",
  57745. image: {
  57746. source: "./media/characters/rexx/front.svg",
  57747. extra: 786/750,
  57748. bottom: 17/803
  57749. },
  57750. extraAttributes: {
  57751. "pawLength": {
  57752. name: "Paw Length",
  57753. power: 1,
  57754. type: "length",
  57755. base: math.unit(27, "inches")
  57756. },
  57757. }
  57758. },
  57759. },
  57760. [
  57761. {
  57762. name: "Micro",
  57763. height: math.unit(2, "inches")
  57764. },
  57765. {
  57766. name: "Normal",
  57767. height: math.unit(8, "feet"),
  57768. default: true
  57769. },
  57770. {
  57771. name: "Macro",
  57772. height: math.unit(150, "feet")
  57773. },
  57774. ]
  57775. ))
  57776. characterMakers.push(() => makeCharacter(
  57777. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57778. {
  57779. front: {
  57780. height: math.unit(18, "feet"),
  57781. weight: math.unit(1975, "lb"),
  57782. name: "Front",
  57783. image: {
  57784. source: "./media/characters/draco/front.svg",
  57785. extra: 1325/1241,
  57786. bottom: 83/1408
  57787. }
  57788. },
  57789. back: {
  57790. height: math.unit(18, "feet"),
  57791. weight: math.unit(1975, "lb"),
  57792. name: "Back",
  57793. image: {
  57794. source: "./media/characters/draco/back.svg",
  57795. extra: 1332/1250,
  57796. bottom: 43/1375
  57797. }
  57798. },
  57799. dick: {
  57800. height: math.unit(7.5, "feet"),
  57801. name: "Dick",
  57802. image: {
  57803. source: "./media/characters/draco/dick.svg"
  57804. }
  57805. },
  57806. },
  57807. [
  57808. {
  57809. name: "Normal",
  57810. height: math.unit(18, "feet"),
  57811. default: true
  57812. },
  57813. ]
  57814. ))
  57815. characterMakers.push(() => makeCharacter(
  57816. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57817. {
  57818. front: {
  57819. height: math.unit(3.2, "meters"),
  57820. name: "Front",
  57821. image: {
  57822. source: "./media/characters/harriett/front.svg",
  57823. extra: 1966/1915,
  57824. bottom: 9/1975
  57825. }
  57826. },
  57827. },
  57828. [
  57829. {
  57830. name: "Normal",
  57831. height: math.unit(3.2, "meters"),
  57832. default: true
  57833. },
  57834. ]
  57835. ))
  57836. characterMakers.push(() => makeCharacter(
  57837. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57838. {
  57839. sitting: {
  57840. height: math.unit(0.8, "meter"),
  57841. name: "Sitting",
  57842. image: {
  57843. source: "./media/characters/serpentus/sitting.svg",
  57844. extra: 293/290,
  57845. bottom: 140/433
  57846. }
  57847. },
  57848. },
  57849. [
  57850. {
  57851. name: "Normal",
  57852. height: math.unit(0.8, "meter"),
  57853. default: true
  57854. },
  57855. ]
  57856. ))
  57857. characterMakers.push(() => makeCharacter(
  57858. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57859. {
  57860. front: {
  57861. height: math.unit(5.7174385736, "feet"),
  57862. name: "Front",
  57863. image: {
  57864. source: "./media/characters/nova-polecat/front.svg",
  57865. extra: 1317/1216,
  57866. bottom: 92/1409
  57867. }
  57868. },
  57869. },
  57870. [
  57871. {
  57872. name: "Normal",
  57873. height: math.unit(5.7174385736, "feet"),
  57874. default: true
  57875. },
  57876. ]
  57877. ))
  57878. characterMakers.push(() => makeCharacter(
  57879. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57880. {
  57881. front: {
  57882. height: math.unit(5 + 4/12, "feet"),
  57883. weight: math.unit(250, "lb"),
  57884. name: "Front",
  57885. image: {
  57886. source: "./media/characters/mook/front.svg",
  57887. extra: 1088/1037,
  57888. bottom: 132/1220
  57889. }
  57890. },
  57891. back: {
  57892. height: math.unit(5 + 1/12, "feet"),
  57893. weight: math.unit(250, "lb"),
  57894. name: "Back",
  57895. image: {
  57896. source: "./media/characters/mook/back.svg",
  57897. extra: 1184/905,
  57898. bottom: 96/1280
  57899. }
  57900. },
  57901. head: {
  57902. height: math.unit(1.85, "feet"),
  57903. name: "Head",
  57904. image: {
  57905. source: "./media/characters/mook/head.svg"
  57906. }
  57907. },
  57908. hand: {
  57909. height: math.unit(1.9, "feet"),
  57910. name: "Hand",
  57911. image: {
  57912. source: "./media/characters/mook/hand.svg"
  57913. }
  57914. },
  57915. palm: {
  57916. height: math.unit(1.84, "feet"),
  57917. name: "Palm",
  57918. image: {
  57919. source: "./media/characters/mook/palm.svg"
  57920. }
  57921. },
  57922. foot: {
  57923. height: math.unit(1.44, "feet"),
  57924. name: "Foot",
  57925. image: {
  57926. source: "./media/characters/mook/foot.svg"
  57927. }
  57928. },
  57929. sole: {
  57930. height: math.unit(1.44, "feet"),
  57931. name: "Sole",
  57932. image: {
  57933. source: "./media/characters/mook/sole.svg"
  57934. }
  57935. },
  57936. },
  57937. [
  57938. {
  57939. name: "Normal",
  57940. height: math.unit(5 + 4/12, "feet"),
  57941. default: true
  57942. },
  57943. {
  57944. name: "Big",
  57945. height: math.unit(12, "feet")
  57946. },
  57947. ]
  57948. ))
  57949. characterMakers.push(() => makeCharacter(
  57950. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57951. {
  57952. front: {
  57953. height: math.unit(6 + 10/12, "feet"),
  57954. weight: math.unit(233, "lb"),
  57955. name: "Front",
  57956. image: {
  57957. source: "./media/characters/kayla/front.svg",
  57958. extra: 1850/1775,
  57959. bottom: 65/1915
  57960. }
  57961. },
  57962. },
  57963. [
  57964. {
  57965. name: "Normal",
  57966. height: math.unit(6 + 10/12, "feet"),
  57967. default: true
  57968. },
  57969. {
  57970. name: "Amazonian",
  57971. height: math.unit(12 + 5/12, "feet")
  57972. },
  57973. {
  57974. name: "Mini Giantess",
  57975. height: math.unit(26, "feet")
  57976. },
  57977. {
  57978. name: "Giantess",
  57979. height: math.unit(200, "feet")
  57980. },
  57981. {
  57982. name: "Mega Giantess",
  57983. height: math.unit(2500, "feet")
  57984. },
  57985. {
  57986. name: "City Sized",
  57987. height: math.unit(50, "miles")
  57988. },
  57989. {
  57990. name: "Country Sized",
  57991. height: math.unit(500, "miles")
  57992. },
  57993. {
  57994. name: "Continent Sized",
  57995. height: math.unit(2500, "miles")
  57996. },
  57997. {
  57998. name: "Planet Sized",
  57999. height: math.unit(10000, "miles")
  58000. },
  58001. {
  58002. name: "Star Sized",
  58003. height: math.unit(5e6, "miles")
  58004. },
  58005. {
  58006. name: "Solar System Sized",
  58007. height: math.unit(125, "AU")
  58008. },
  58009. {
  58010. name: "Galaxy Sized",
  58011. height: math.unit(300e3, "lightyears")
  58012. },
  58013. {
  58014. name: "Universe Sized",
  58015. height: math.unit(200e9, "lightyears")
  58016. },
  58017. {
  58018. name: "Multiverse Sized",
  58019. height: math.unit(20, "exauniverses")
  58020. },
  58021. {
  58022. name: "Mother of Existence",
  58023. height: math.unit(1e6, "yottauniverses")
  58024. },
  58025. ]
  58026. ))
  58027. characterMakers.push(() => makeCharacter(
  58028. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58029. {
  58030. side: {
  58031. height: math.unit(9.5, "meters"),
  58032. name: "Side",
  58033. image: {
  58034. source: "./media/characters/kulve-ragnarok/side.svg",
  58035. extra: 364/326,
  58036. bottom: 50/414
  58037. }
  58038. },
  58039. },
  58040. [
  58041. {
  58042. name: "Normal",
  58043. height: math.unit(9.5, "meters"),
  58044. default: true
  58045. },
  58046. ]
  58047. ))
  58048. characterMakers.push(() => makeCharacter(
  58049. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58050. {
  58051. front: {
  58052. height: math.unit(8 + 9/12, "feet"),
  58053. name: "Front",
  58054. image: {
  58055. source: "./media/characters/atlas-goat/front.svg",
  58056. extra: 1462/1323,
  58057. bottom: 12/1474
  58058. }
  58059. },
  58060. },
  58061. [
  58062. {
  58063. name: "Normal",
  58064. height: math.unit(8 + 9/12, "feet"),
  58065. default: true
  58066. },
  58067. {
  58068. name: "Skyline",
  58069. height: math.unit(845, "feet")
  58070. },
  58071. {
  58072. name: "Orbital",
  58073. height: math.unit(93000, "miles")
  58074. },
  58075. {
  58076. name: "Constellation",
  58077. height: math.unit(27000, "lightyears")
  58078. },
  58079. ]
  58080. ))
  58081. characterMakers.push(() => makeCharacter(
  58082. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58083. {
  58084. side: {
  58085. height: math.unit(1.8, "meters"),
  58086. weight: math.unit(120, "kg"),
  58087. name: "Side",
  58088. image: {
  58089. source: "./media/characters/xie-ling/side.svg",
  58090. extra: 646/574,
  58091. bottom: 44/690
  58092. }
  58093. },
  58094. },
  58095. [
  58096. {
  58097. name: "Tiny",
  58098. height: math.unit(1.80, "meters")
  58099. },
  58100. {
  58101. name: "Small",
  58102. height: math.unit(6, "meters")
  58103. },
  58104. {
  58105. name: "Medium",
  58106. height: math.unit(15, "meters")
  58107. },
  58108. {
  58109. name: "Normal",
  58110. height: math.unit(30, "meters"),
  58111. default: true
  58112. },
  58113. {
  58114. name: "Above Normal",
  58115. height: math.unit(60, "meters")
  58116. },
  58117. {
  58118. name: "Big",
  58119. height: math.unit(220, "meters")
  58120. },
  58121. {
  58122. name: "Giant",
  58123. height: math.unit(2.2, "km")
  58124. },
  58125. {
  58126. name: "Macro",
  58127. height: math.unit(25, "km")
  58128. },
  58129. {
  58130. name: "Mega Macro",
  58131. height: math.unit(350, "km")
  58132. },
  58133. {
  58134. name: "Mega Macro+",
  58135. height: math.unit(5000, "km")
  58136. },
  58137. {
  58138. name: "Goddess",
  58139. height: math.unit(3, "multiverses")
  58140. },
  58141. ]
  58142. ))
  58143. characterMakers.push(() => makeCharacter(
  58144. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58145. {
  58146. frontSfw: {
  58147. height: math.unit(5 + 11/12, "feet"),
  58148. weight: math.unit(210, "lb"),
  58149. name: "Front",
  58150. image: {
  58151. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58152. extra: 1928/1821,
  58153. bottom: 45/1973
  58154. }
  58155. },
  58156. backSfw: {
  58157. height: math.unit(5 + 11/12, "feet"),
  58158. weight: math.unit(210, "lb"),
  58159. name: "Back",
  58160. image: {
  58161. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58162. extra: 1920/1813,
  58163. bottom: 34/1954
  58164. }
  58165. },
  58166. frontNsfw: {
  58167. height: math.unit(5 + 11/12, "feet"),
  58168. weight: math.unit(210, "lb"),
  58169. name: "Front (NSFW)",
  58170. image: {
  58171. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58172. extra: 1928/1821,
  58173. bottom: 45/1973
  58174. }
  58175. },
  58176. backNsfw: {
  58177. height: math.unit(5 + 11/12, "feet"),
  58178. weight: math.unit(210, "lb"),
  58179. name: "Back (NSFW)",
  58180. image: {
  58181. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58182. extra: 1920/1813,
  58183. bottom: 34/1954
  58184. }
  58185. },
  58186. },
  58187. [
  58188. {
  58189. name: "Normal",
  58190. height: math.unit(5 + 11/12, "feet"),
  58191. default: true
  58192. },
  58193. {
  58194. name: "Goddess",
  58195. height: math.unit(20 + 3/12, "feet")
  58196. },
  58197. {
  58198. name: "Breaker of Man",
  58199. height: math.unit(329 + 9/12, "feet")
  58200. },
  58201. {
  58202. name: "Solar Justice",
  58203. height: math.unit(0.6, "solarradii")
  58204. },
  58205. {
  58206. name: "She Who Judges",
  58207. height: math.unit(1, "universe")
  58208. },
  58209. ]
  58210. ))
  58211. characterMakers.push(() => makeCharacter(
  58212. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58213. {
  58214. casual_front: {
  58215. height: math.unit(6 + 1/12, "feet"),
  58216. weight: math.unit(190, "lb"),
  58217. preyCapacity: math.unit(1, "people"),
  58218. name: "Front",
  58219. image: {
  58220. source: "./media/characters/managarmr/casual-front.svg",
  58221. extra: 411/381,
  58222. bottom: 15/426
  58223. },
  58224. extraAttributes: {
  58225. "pawSize": {
  58226. name: "Paw Size",
  58227. power: 1,
  58228. type: "length",
  58229. base: math.unit(0.2, "meters")
  58230. },
  58231. },
  58232. form: "casual",
  58233. },
  58234. casual_back: {
  58235. height: math.unit(6 + 1/12, "feet"),
  58236. weight: math.unit(190, "lb"),
  58237. preyCapacity: math.unit(1, "people"),
  58238. name: "Back",
  58239. image: {
  58240. source: "./media/characters/managarmr/casual-back.svg",
  58241. extra: 413/383,
  58242. bottom: 13/426
  58243. },
  58244. extraAttributes: {
  58245. "pawSize": {
  58246. name: "Paw Size",
  58247. power: 1,
  58248. type: "length",
  58249. base: math.unit(0.2, "meters")
  58250. },
  58251. },
  58252. form: "casual",
  58253. },
  58254. base_front: {
  58255. height: math.unit(7, "feet"),
  58256. weight: math.unit(210, "lb"),
  58257. preyCapacity: math.unit(2, "people"),
  58258. name: "Front",
  58259. image: {
  58260. source: "./media/characters/managarmr/base-front.svg",
  58261. extra: 580/485,
  58262. bottom: 32/612
  58263. },
  58264. extraAttributes: {
  58265. "wingspan": {
  58266. name: "Wingspan",
  58267. power: 1,
  58268. type: "length",
  58269. base: math.unit(4, "meters")
  58270. },
  58271. "pawSize": {
  58272. name: "Paw Size",
  58273. power: 1,
  58274. type: "length",
  58275. base: math.unit(0.2, "meters")
  58276. },
  58277. },
  58278. form: "base",
  58279. },
  58280. "true-divine_front": {
  58281. height: math.unit(40, "feet"),
  58282. weight: math.unit(39000, "lb"),
  58283. preyCapacity: math.unit(375, "people"),
  58284. name: "Front",
  58285. image: {
  58286. source: "./media/characters/managarmr/true-divine-front.svg",
  58287. extra: 725/573,
  58288. bottom: 120/845
  58289. },
  58290. extraAttributes: {
  58291. "wingspan": {
  58292. name: "Wingspan",
  58293. power: 1,
  58294. type: "length",
  58295. base: math.unit(20, "meters")
  58296. },
  58297. "pawSize": {
  58298. name: "Paw Size",
  58299. power: 1,
  58300. type: "length",
  58301. base: math.unit(1.5, "meters")
  58302. },
  58303. },
  58304. form: "true-divine",
  58305. },
  58306. },
  58307. [
  58308. {
  58309. name: "Normal",
  58310. height: math.unit(6 + 1/12, "feet"),
  58311. form: "casual",
  58312. default: true
  58313. },
  58314. {
  58315. name: "Normal",
  58316. height: math.unit(7, "feet"),
  58317. form: "base",
  58318. default: true
  58319. },
  58320. ],
  58321. {
  58322. "casual": {
  58323. name: "Casual",
  58324. default: true
  58325. },
  58326. "base": {
  58327. name: "Base",
  58328. },
  58329. "true-divine": {
  58330. name: "True Divine",
  58331. },
  58332. }
  58333. ))
  58334. characterMakers.push(() => makeCharacter(
  58335. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58336. {
  58337. front: {
  58338. height: math.unit(1.8, "meters"),
  58339. weight: math.unit(110, "kg"),
  58340. name: "Front",
  58341. image: {
  58342. source: "./media/characters/mystra/front.svg",
  58343. extra: 529/442,
  58344. bottom: 31/560
  58345. }
  58346. },
  58347. frontLewd: {
  58348. height: math.unit(1.8, "meters"),
  58349. weight: math.unit(110, "kg"),
  58350. name: "Front (Lewd)",
  58351. image: {
  58352. source: "./media/characters/mystra/front-lewd.svg",
  58353. extra: 529/442,
  58354. bottom: 31/560
  58355. }
  58356. },
  58357. head: {
  58358. height: math.unit(1.63, "feet"),
  58359. name: "Head",
  58360. image: {
  58361. source: "./media/characters/mystra/head.svg"
  58362. }
  58363. },
  58364. paw: {
  58365. height: math.unit(1.9, "feet"),
  58366. name: "Paw",
  58367. image: {
  58368. source: "./media/characters/mystra/paw.svg"
  58369. }
  58370. },
  58371. },
  58372. [
  58373. {
  58374. name: "Incognito",
  58375. height: math.unit(2.3, "meters")
  58376. },
  58377. {
  58378. name: "Small Macro",
  58379. height: math.unit(300, "meters")
  58380. },
  58381. {
  58382. name: "Small Mega",
  58383. height: math.unit(2, "km")
  58384. },
  58385. {
  58386. name: "Mega",
  58387. height: math.unit(30, "km")
  58388. },
  58389. {
  58390. name: "Small Giga",
  58391. height: math.unit(100, "km")
  58392. },
  58393. {
  58394. name: "Giga",
  58395. height: math.unit(1000, "km"),
  58396. default: true
  58397. },
  58398. {
  58399. name: "Continental",
  58400. height: math.unit(5000, "km")
  58401. },
  58402. {
  58403. name: "Terra",
  58404. height: math.unit(20000, "km")
  58405. },
  58406. {
  58407. name: "Solar",
  58408. height: math.unit(2e6, "km")
  58409. },
  58410. {
  58411. name: "Galactic",
  58412. height: math.unit(528502, "lightyears")
  58413. },
  58414. {
  58415. name: "Universal",
  58416. height: math.unit(20, "universes")
  58417. },
  58418. ]
  58419. ))
  58420. characterMakers.push(() => makeCharacter(
  58421. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58422. {
  58423. front: {
  58424. height: math.unit(2, "meters"),
  58425. weight: math.unit(140, "kg"),
  58426. name: "Front",
  58427. image: {
  58428. source: "./media/characters/caleb/front.svg",
  58429. extra: 873/817,
  58430. bottom: 47/920
  58431. }
  58432. },
  58433. back: {
  58434. height: math.unit(2, "meters"),
  58435. weight: math.unit(140, "kg"),
  58436. name: "Back",
  58437. image: {
  58438. source: "./media/characters/caleb/back.svg",
  58439. extra: 877/828,
  58440. bottom: 24/901
  58441. }
  58442. },
  58443. snakeTail: {
  58444. height: math.unit(1.44, "feet"),
  58445. name: "Snake Tail",
  58446. image: {
  58447. source: "./media/characters/caleb/snake-tail.svg"
  58448. }
  58449. },
  58450. dick: {
  58451. height: math.unit(2.6, "feet"),
  58452. name: "Dick",
  58453. image: {
  58454. source: "./media/characters/caleb/dick.svg"
  58455. }
  58456. },
  58457. },
  58458. [
  58459. {
  58460. name: "Incognito",
  58461. height: math.unit(3, "meters")
  58462. },
  58463. {
  58464. name: "Home Size",
  58465. height: math.unit(200, "meters"),
  58466. default: true
  58467. },
  58468. {
  58469. name: "Macro",
  58470. height: math.unit(500, "meters")
  58471. },
  58472. {
  58473. name: "Big Macro",
  58474. height: math.unit(5, "km")
  58475. },
  58476. {
  58477. name: "Giga",
  58478. height: math.unit(250, "km")
  58479. },
  58480. {
  58481. name: "Giga+",
  58482. height: math.unit(5000, "km")
  58483. },
  58484. {
  58485. name: "Small Terra",
  58486. height: math.unit(35e3, "km")
  58487. },
  58488. {
  58489. name: "Terra",
  58490. height: math.unit(2e6, "km")
  58491. },
  58492. {
  58493. name: "Terra+",
  58494. height: math.unit(1.5e6, "km")
  58495. },
  58496. ]
  58497. ))
  58498. characterMakers.push(() => makeCharacter(
  58499. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58500. {
  58501. front: {
  58502. height: math.unit(2, "meters"),
  58503. weight: math.unit(120, "kg"),
  58504. name: "Front",
  58505. image: {
  58506. source: "./media/characters/gilirian/front.svg",
  58507. extra: 805/737,
  58508. bottom: 13/818
  58509. }
  58510. },
  58511. side: {
  58512. height: math.unit(2, "meters"),
  58513. weight: math.unit(120, "kg"),
  58514. name: "Side",
  58515. image: {
  58516. source: "./media/characters/gilirian/side.svg",
  58517. extra: 810/746,
  58518. bottom: 6/816
  58519. }
  58520. },
  58521. back: {
  58522. height: math.unit(2, "meters"),
  58523. weight: math.unit(120, "kg"),
  58524. name: "Back",
  58525. image: {
  58526. source: "./media/characters/gilirian/back.svg",
  58527. extra: 815/745,
  58528. bottom: 15/830
  58529. }
  58530. },
  58531. frontNsfw: {
  58532. height: math.unit(2, "meters"),
  58533. weight: math.unit(120, "kg"),
  58534. name: "Front (NSFW)",
  58535. image: {
  58536. source: "./media/characters/gilirian/front-nsfw.svg",
  58537. extra: 805/737,
  58538. bottom: 13/818
  58539. }
  58540. },
  58541. sideNsfw: {
  58542. height: math.unit(2, "meters"),
  58543. weight: math.unit(120, "kg"),
  58544. name: "Side (NSFW)",
  58545. image: {
  58546. source: "./media/characters/gilirian/side-nsfw.svg",
  58547. extra: 810/746,
  58548. bottom: 6/816
  58549. }
  58550. },
  58551. },
  58552. [
  58553. {
  58554. name: "Incognito",
  58555. height: math.unit(2, "meters"),
  58556. default: true
  58557. },
  58558. {
  58559. name: "Macro",
  58560. height: math.unit(250, "meters")
  58561. },
  58562. {
  58563. name: "Big Macro",
  58564. height: math.unit(1500, "meters")
  58565. },
  58566. {
  58567. name: "Mega",
  58568. height: math.unit(40, "km")
  58569. },
  58570. {
  58571. name: "Giga",
  58572. height: math.unit(300, "km")
  58573. },
  58574. {
  58575. name: "Extra Giga",
  58576. height: math.unit(5000, "km")
  58577. },
  58578. {
  58579. name: "Small Terra",
  58580. height: math.unit(10e3, "km")
  58581. },
  58582. {
  58583. name: "Terra",
  58584. height: math.unit(3e5, "km")
  58585. },
  58586. {
  58587. name: "Galactic",
  58588. height: math.unit(369950, "lightyears")
  58589. },
  58590. ]
  58591. ))
  58592. characterMakers.push(() => makeCharacter(
  58593. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58594. {
  58595. front: {
  58596. height: math.unit(2.5, "meters"),
  58597. weight: math.unit(230, "lb"),
  58598. name: "Front",
  58599. image: {
  58600. source: "./media/characters/tarken/front.svg",
  58601. extra: 764/720,
  58602. bottom: 49/813
  58603. }
  58604. },
  58605. back: {
  58606. height: math.unit(2.5, "meters"),
  58607. weight: math.unit(230, "lb"),
  58608. name: "Back",
  58609. image: {
  58610. source: "./media/characters/tarken/back.svg",
  58611. extra: 756/720,
  58612. bottom: 35/791
  58613. }
  58614. },
  58615. frontNsfw: {
  58616. height: math.unit(2.5, "meters"),
  58617. weight: math.unit(230, "lb"),
  58618. name: "Front (NSFW)",
  58619. image: {
  58620. source: "./media/characters/tarken/front-nsfw.svg",
  58621. extra: 764/720,
  58622. bottom: 49/813
  58623. }
  58624. },
  58625. backNsfw: {
  58626. height: math.unit(2.5, "meters"),
  58627. weight: math.unit(230, "lb"),
  58628. name: "Back (NSFW)",
  58629. image: {
  58630. source: "./media/characters/tarken/back-nsfw.svg",
  58631. extra: 756/720,
  58632. bottom: 35/791
  58633. }
  58634. },
  58635. head: {
  58636. height: math.unit(2.22, "feet"),
  58637. name: "Head",
  58638. image: {
  58639. source: "./media/characters/tarken/head.svg"
  58640. }
  58641. },
  58642. tail: {
  58643. height: math.unit(5.25, "feet"),
  58644. name: "Tail",
  58645. image: {
  58646. source: "./media/characters/tarken/tail.svg"
  58647. }
  58648. },
  58649. dick: {
  58650. height: math.unit(1.95, "feet"),
  58651. name: "Dick",
  58652. image: {
  58653. source: "./media/characters/tarken/dick.svg"
  58654. }
  58655. },
  58656. hand: {
  58657. height: math.unit(1.78, "feet"),
  58658. name: "Hand",
  58659. image: {
  58660. source: "./media/characters/tarken/hand.svg"
  58661. }
  58662. },
  58663. beam: {
  58664. height: math.unit(1.5, "feet"),
  58665. name: "Beam",
  58666. image: {
  58667. source: "./media/characters/tarken/beam.svg"
  58668. }
  58669. },
  58670. },
  58671. [
  58672. {
  58673. name: "Original Size",
  58674. height: math.unit(2.5, "meters")
  58675. },
  58676. {
  58677. name: "Macro",
  58678. height: math.unit(150, "meters"),
  58679. default: true
  58680. },
  58681. {
  58682. name: "Macro+",
  58683. height: math.unit(300, "meters")
  58684. },
  58685. {
  58686. name: "Mega",
  58687. height: math.unit(2, "km")
  58688. },
  58689. {
  58690. name: "Mega+",
  58691. height: math.unit(35, "km")
  58692. },
  58693.  {
  58694. name: "Mega++",
  58695. height: math.unit(60, "km")
  58696. },
  58697. {
  58698. name: "Giga",
  58699. height: math.unit(200, "km")
  58700. },
  58701. {
  58702. name: "Giga+",
  58703. height: math.unit(2500, "km")
  58704. },
  58705. {
  58706. name: "Giga++",
  58707. height: math.unit(6600, "km")
  58708. },
  58709. {
  58710. name: "Terra",
  58711. height: math.unit(20000, "km")
  58712. },
  58713. {
  58714. name: "Terra+",
  58715. height: math.unit(300000, "km")
  58716. },
  58717. ]
  58718. ))
  58719. characterMakers.push(() => makeCharacter(
  58720. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58721. {
  58722. magpie_dressed: {
  58723. height: math.unit(1.7, "meters"),
  58724. weight: math.unit(70, "kg"),
  58725. name: "Dressed",
  58726. image: {
  58727. source: "./media/characters/otreus/magpie-dressed.svg",
  58728. extra: 691/672,
  58729. bottom: 116/807
  58730. },
  58731. form: "magpie",
  58732. default: true
  58733. },
  58734. magpie_nude: {
  58735. height: math.unit(1.7, "meters"),
  58736. weight: math.unit(70, "kg"),
  58737. name: "Nude",
  58738. image: {
  58739. source: "./media/characters/otreus/magpie-nude.svg",
  58740. extra: 691/672,
  58741. bottom: 116/807
  58742. },
  58743. form: "magpie",
  58744. },
  58745. magpie_dressedLewd: {
  58746. height: math.unit(1.7, "meters"),
  58747. weight: math.unit(70, "kg"),
  58748. name: "Dressed (Lewd)",
  58749. image: {
  58750. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58751. extra: 691/672,
  58752. bottom: 116/807
  58753. },
  58754. form: "magpie",
  58755. },
  58756. magpie_nudeLewd: {
  58757. height: math.unit(1.7, "meters"),
  58758. weight: math.unit(70, "kg"),
  58759. name: "Nude (Lewd)",
  58760. image: {
  58761. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58762. extra: 691/672,
  58763. bottom: 116/807
  58764. },
  58765. form: "magpie",
  58766. },
  58767. magpie_leftFoot: {
  58768. height: math.unit(1.58, "feet"),
  58769. name: "Left Foot",
  58770. image: {
  58771. source: "./media/characters/otreus/magpie-left-foot.svg"
  58772. },
  58773. form: "magpie",
  58774. },
  58775. magpie_rightFoot: {
  58776. height: math.unit(1.58, "feet"),
  58777. name: "Right Foot",
  58778. image: {
  58779. source: "./media/characters/otreus/magpie-right-foot.svg"
  58780. },
  58781. form: "magpie",
  58782. },
  58783. magpie_wingspan: {
  58784. height: math.unit(2, "meters"),
  58785. weight: math.unit(70, "kg"),
  58786. name: "Wingspan",
  58787. image: {
  58788. source: "./media/characters/otreus/magpie-wingspan.svg"
  58789. },
  58790. extraAttributes: {
  58791. "wingspan": {
  58792. name: "Wingspan",
  58793. power: 1,
  58794. type: "length",
  58795. base: math.unit(3.35, "meters")
  58796. },
  58797. },
  58798. form: "magpie",
  58799. },
  58800. hippogriff_dressed: {
  58801. height: math.unit(1.7, "meters"),
  58802. weight: math.unit(70, "kg"),
  58803. name: "Dressed",
  58804. image: {
  58805. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58806. extra: 710/689,
  58807. bottom: 67/777
  58808. },
  58809. form: "hippogriff",
  58810. default: true
  58811. },
  58812. hippogriff_nude: {
  58813. height: math.unit(1.7, "meters"),
  58814. weight: math.unit(70, "kg"),
  58815. name: "Nude",
  58816. image: {
  58817. source: "./media/characters/otreus/hippogriff-nude.svg",
  58818. extra: 710/689,
  58819. bottom: 67/777
  58820. },
  58821. form: "hippogriff",
  58822. },
  58823. hippogriff_dressedLewd: {
  58824. height: math.unit(1.7, "meters"),
  58825. weight: math.unit(70, "kg"),
  58826. name: "Dressed (Lewd)",
  58827. image: {
  58828. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58829. extra: 710/689,
  58830. bottom: 67/777
  58831. },
  58832. form: "hippogriff",
  58833. },
  58834. hippogriff_nudeLewd: {
  58835. height: math.unit(1.7, "meters"),
  58836. weight: math.unit(70, "kg"),
  58837. name: "Nude (Lewd)",
  58838. image: {
  58839. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58840. extra: 710/689,
  58841. bottom: 67/777
  58842. },
  58843. form: "hippogriff",
  58844. },
  58845. },
  58846. [
  58847. {
  58848. name: "Original Size",
  58849. height: math.unit(1.7, "meters"),
  58850. allForms: true
  58851. },
  58852. {
  58853. name: "Incognito Size",
  58854. height: math.unit(2, "meters"),
  58855. allForms: true
  58856. },
  58857. {
  58858. name: "Mega",
  58859. height: math.unit(2, "km"),
  58860. allForms: true
  58861. },
  58862. {
  58863. name: "Mega+",
  58864. height: math.unit(40, "km"),
  58865. allForms: true
  58866. },
  58867. {
  58868. name: "Giga",
  58869. height: math.unit(250, "km"),
  58870. allForms: true
  58871. },
  58872. {
  58873. name: "Giga+",
  58874. height: math.unit(3000, "km"),
  58875. allForms: true
  58876. },
  58877. {
  58878. name: "Terra",
  58879. height: math.unit(20000, "km"),
  58880. allForms: true
  58881. },
  58882. {
  58883. name: "Solar (Home Size)",
  58884. height: math.unit(3e6, "km"),
  58885. allForms: true,
  58886. default: true
  58887. },
  58888. ],
  58889. {
  58890. "magpie": {
  58891. name: "Magpie",
  58892. default: true
  58893. },
  58894. "hippogriff": {
  58895. name: "Hippogriff",
  58896. },
  58897. }
  58898. ))
  58899. characterMakers.push(() => makeCharacter(
  58900. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58901. {
  58902. frontDressed: {
  58903. height: math.unit(1.8, "meters"),
  58904. weight: math.unit(90, "kg"),
  58905. name: "Front (Dressed)",
  58906. image: {
  58907. source: "./media/characters/thalia/front-dressed.svg",
  58908. extra: 478/402,
  58909. bottom: 55/533
  58910. }
  58911. },
  58912. backDressed: {
  58913. height: math.unit(1.8, "meters"),
  58914. weight: math.unit(90, "kg"),
  58915. name: "Back (Dressed)",
  58916. image: {
  58917. source: "./media/characters/thalia/back-dressed.svg",
  58918. extra: 500/424,
  58919. bottom: 15/515
  58920. }
  58921. },
  58922. frontNude: {
  58923. height: math.unit(1.8, "meters"),
  58924. weight: math.unit(90, "kg"),
  58925. name: "Front (Nude)",
  58926. image: {
  58927. source: "./media/characters/thalia/front-nude.svg",
  58928. extra: 478/402,
  58929. bottom: 55/533
  58930. }
  58931. },
  58932. backNude: {
  58933. height: math.unit(1.8, "meters"),
  58934. weight: math.unit(90, "kg"),
  58935. name: "Back (Nude)",
  58936. image: {
  58937. source: "./media/characters/thalia/back-nude.svg",
  58938. extra: 500/424,
  58939. bottom: 15/515
  58940. }
  58941. },
  58942. },
  58943. [
  58944. {
  58945. name: "Incognito",
  58946. height: math.unit(3, "meters")
  58947. },
  58948. {
  58949. name: "Macro",
  58950. height: math.unit(500, "meters")
  58951. },
  58952. {
  58953. name: "Mega",
  58954. height: math.unit(5, "km")
  58955. },
  58956. {
  58957. name: "Mega+",
  58958. height: math.unit(30, "km")
  58959. },
  58960. {
  58961. name: "Giga",
  58962. height: math.unit(350, "km")
  58963. },
  58964. {
  58965. name: "Giga+",
  58966. height: math.unit(4000, "km")
  58967. },
  58968. {
  58969. name: "Terra",
  58970. height: math.unit(35000, "km")
  58971. },
  58972. {
  58973. name: "Original Size",
  58974. height: math.unit(130000, "km")
  58975. },
  58976. {
  58977. name: "Solar (Home Size)",
  58978. height: math.unit(4e6, "km"),
  58979. default: true
  58980. },
  58981. ]
  58982. ))
  58983. characterMakers.push(() => makeCharacter(
  58984. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58985. {
  58986. front: {
  58987. height: math.unit(1.8, "meters"),
  58988. weight: math.unit(95, "kg"),
  58989. name: "Front",
  58990. image: {
  58991. source: "./media/characters/shango/front.svg",
  58992. extra: 1925/1774,
  58993. bottom: 67/1992
  58994. }
  58995. },
  58996. back: {
  58997. height: math.unit(1.8, "meters"),
  58998. weight: math.unit(95, "kg"),
  58999. name: "Back",
  59000. image: {
  59001. source: "./media/characters/shango/back.svg",
  59002. extra: 1915/1766,
  59003. bottom: 52/1967
  59004. }
  59005. },
  59006. frontLewd: {
  59007. height: math.unit(1.8, "meters"),
  59008. weight: math.unit(95, "kg"),
  59009. name: "Front (Lewd)",
  59010. image: {
  59011. source: "./media/characters/shango/front-lewd.svg",
  59012. extra: 1925/1774,
  59013. bottom: 67/1992
  59014. }
  59015. },
  59016. backLewd: {
  59017. height: math.unit(1.8, "meters"),
  59018. weight: math.unit(95, "kg"),
  59019. name: "Back (Lewd)",
  59020. image: {
  59021. source: "./media/characters/shango/back-lewd.svg",
  59022. extra: 1915/1766,
  59023. bottom: 52/1967
  59024. }
  59025. },
  59026. maw: {
  59027. height: math.unit(1.64, "feet"),
  59028. name: "Maw",
  59029. image: {
  59030. source: "./media/characters/shango/maw.svg"
  59031. }
  59032. },
  59033. dick: {
  59034. height: math.unit(2.14, "feet"),
  59035. name: "Dick",
  59036. image: {
  59037. source: "./media/characters/shango/dick.svg"
  59038. }
  59039. },
  59040. },
  59041. [
  59042. {
  59043. name: "Incognito",
  59044. height: math.unit(1.8, "meters")
  59045. },
  59046. {
  59047. name: "Home Size",
  59048. height: math.unit(60, "meters"),
  59049. default: true
  59050. },
  59051. {
  59052. name: "Macro",
  59053. height: math.unit(450, "meters")
  59054. },
  59055. {
  59056. name: "Mega",
  59057. height: math.unit(6, "km")
  59058. },
  59059. {
  59060. name: "Mega+",
  59061. height: math.unit(35, "km")
  59062. },
  59063. {
  59064. name: "Giga",
  59065. height: math.unit(500, "km")
  59066. },
  59067. {
  59068. name: "Giga+",
  59069. height: math.unit(5000, "km")
  59070. },
  59071. {
  59072. name: "Terra",
  59073. height: math.unit(60000, "km")
  59074. },
  59075. {
  59076. name: "Terra+",
  59077. height: math.unit(400000, "km")
  59078. },
  59079. ]
  59080. ))
  59081. characterMakers.push(() => makeCharacter(
  59082. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59083. {
  59084. front: {
  59085. height: math.unit(2, "meters"),
  59086. weight: math.unit(95, "kg"),
  59087. name: "Front",
  59088. image: {
  59089. source: "./media/characters/osiris-gryphon/front.svg",
  59090. extra: 1508/1313,
  59091. bottom: 87/1595
  59092. }
  59093. },
  59094. back: {
  59095. height: math.unit(2, "meters"),
  59096. weight: math.unit(95, "kg"),
  59097. name: "Back",
  59098. image: {
  59099. source: "./media/characters/osiris-gryphon/back.svg",
  59100. extra: 1436/1309,
  59101. bottom: 64/1500
  59102. }
  59103. },
  59104. frontLewd: {
  59105. height: math.unit(2, "meters"),
  59106. weight: math.unit(95, "kg"),
  59107. name: "Front-lewd",
  59108. image: {
  59109. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59110. extra: 1508/1313,
  59111. bottom: 87/1595
  59112. }
  59113. },
  59114. wing: {
  59115. height: math.unit(6.3333, "feet"),
  59116. name: "Wing",
  59117. image: {
  59118. source: "./media/characters/osiris-gryphon/wing.svg"
  59119. }
  59120. },
  59121. },
  59122. [
  59123. {
  59124. name: "Incognito",
  59125. height: math.unit(2, "meters")
  59126. },
  59127. {
  59128. name: "Home Size",
  59129. height: math.unit(30, "meters"),
  59130. default: true
  59131. },
  59132. {
  59133. name: "Macro",
  59134. height: math.unit(100, "meters")
  59135. },
  59136. {
  59137. name: "Macro+",
  59138. height: math.unit(350, "meters")
  59139. },
  59140. {
  59141. name: "Mega",
  59142. height: math.unit(40, "km")
  59143. },
  59144. {
  59145. name: "Giga",
  59146. height: math.unit(300, "km")
  59147. },
  59148. {
  59149. name: "Giga+",
  59150. height: math.unit(2000, "km")
  59151. },
  59152. {
  59153. name: "Terra",
  59154. height: math.unit(30000, "km")
  59155. },
  59156. ]
  59157. ))
  59158. characterMakers.push(() => makeCharacter(
  59159. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59160. {
  59161. front: {
  59162. height: math.unit(2.5, "meters"),
  59163. weight: math.unit(200, "kg"),
  59164. name: "Front",
  59165. image: {
  59166. source: "./media/characters/atlas-dragon/front.svg",
  59167. extra: 745/462,
  59168. bottom: 36/781
  59169. }
  59170. },
  59171. back: {
  59172. height: math.unit(2.5, "meters"),
  59173. weight: math.unit(200, "kg"),
  59174. name: "Back",
  59175. image: {
  59176. source: "./media/characters/atlas-dragon/back.svg",
  59177. extra: 848/822,
  59178. bottom: 57/905
  59179. }
  59180. },
  59181. frontLewd: {
  59182. height: math.unit(2.5, "meters"),
  59183. weight: math.unit(200, "kg"),
  59184. name: "Front (Lewd)",
  59185. image: {
  59186. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59187. extra: 745/462,
  59188. bottom: 36/781
  59189. }
  59190. },
  59191. backLewd: {
  59192. height: math.unit(2.5, "meters"),
  59193. weight: math.unit(200, "kg"),
  59194. name: "Back (Lewd)",
  59195. image: {
  59196. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59197. extra: 848/822,
  59198. bottom: 57/905
  59199. }
  59200. },
  59201. },
  59202. [
  59203. {
  59204. name: "Incognito",
  59205. height: math.unit(2.5, "meters")
  59206. },
  59207. {
  59208. name: "Small Macro",
  59209. height: math.unit(50, "meters")
  59210. },
  59211. {
  59212. name: "Macro",
  59213. height: math.unit(350, "meters")
  59214. },
  59215. {
  59216. name: "Mega",
  59217. height: math.unit(5.5, "kilometers")
  59218. },
  59219. {
  59220. name: "Mega+",
  59221. height: math.unit(50, "km")
  59222. },
  59223. {
  59224. name: "Giga",
  59225. height: math.unit(350, "km")
  59226. },
  59227. {
  59228. name: "Giga+",
  59229. height: math.unit(2000, "km")
  59230. },
  59231. {
  59232. name: "Giga++",
  59233. height: math.unit(6500, "km")
  59234. },
  59235. {
  59236. name: "Terra",
  59237. height: math.unit(30000, "km")
  59238. },
  59239. {
  59240. name: "Terra+",
  59241. height: math.unit(250000, "km")
  59242. },
  59243. {
  59244. name: "True Size",
  59245. height: math.unit(100, "multiverses"),
  59246. default: true
  59247. },
  59248. ]
  59249. ))
  59250. characterMakers.push(() => makeCharacter(
  59251. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59252. {
  59253. front: {
  59254. height: math.unit(1.8, "m"),
  59255. weight: math.unit(120, "kg"),
  59256. name: "Front",
  59257. image: {
  59258. source: "./media/characters/chey/front.svg",
  59259. extra: 1359/1270,
  59260. bottom: 18/1377
  59261. }
  59262. },
  59263. arm: {
  59264. height: math.unit(2.05, "feet"),
  59265. name: "Arm",
  59266. image: {
  59267. source: "./media/characters/chey/arm.svg"
  59268. }
  59269. },
  59270. head: {
  59271. height: math.unit(1.89, "feet"),
  59272. name: "Head",
  59273. image: {
  59274. source: "./media/characters/chey/head.svg"
  59275. }
  59276. },
  59277. },
  59278. [
  59279. {
  59280. name: "Original Size",
  59281. height: math.unit(5, "cm")
  59282. },
  59283. {
  59284. name: "Incognito Size",
  59285. height: math.unit(2.4, "m")
  59286. },
  59287. {
  59288. name: "Home Size",
  59289. height: math.unit(200, "meters"),
  59290. default: true
  59291. },
  59292. {
  59293. name: "Mega",
  59294. height: math.unit(2, "km")
  59295. },
  59296. {
  59297. name: "Giga (Preferred Size)",
  59298. height: math.unit(2000, "km")
  59299. },
  59300. {
  59301. name: "Giga+",
  59302. height: math.unit(6000, "km")
  59303. },
  59304. {
  59305. name: "Terra",
  59306. height: math.unit(17000, "km")
  59307. },
  59308. {
  59309. name: "Terra+",
  59310. height: math.unit(75000, "km")
  59311. },
  59312. {
  59313. name: "Terra++",
  59314. height: math.unit(225000, "km")
  59315. },
  59316. ]
  59317. ))
  59318. characterMakers.push(() => makeCharacter(
  59319. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59320. {
  59321. side: {
  59322. height: math.unit(7.8, "meters"),
  59323. name: "Side",
  59324. image: {
  59325. source: "./media/characters/ragnarok/side.svg",
  59326. extra: 725/621,
  59327. bottom: 72/797
  59328. }
  59329. },
  59330. },
  59331. [
  59332. {
  59333. name: "Normal",
  59334. height: math.unit(7.8, "meters"),
  59335. default: true
  59336. },
  59337. ]
  59338. ))
  59339. characterMakers.push(() => makeCharacter(
  59340. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59341. {
  59342. hyena_front: {
  59343. height: math.unit(2.1, "meters"),
  59344. weight: math.unit(110, "kg"),
  59345. name: "Front",
  59346. image: {
  59347. source: "./media/characters/nima/hyena-front.svg",
  59348. extra: 1904/1796,
  59349. bottom: 67/1971
  59350. },
  59351. form: "hyena",
  59352. },
  59353. hyena_back: {
  59354. height: math.unit(2.1, "meters"),
  59355. weight: math.unit(110, "kg"),
  59356. name: "Back",
  59357. image: {
  59358. source: "./media/characters/nima/hyena-back.svg",
  59359. extra: 1964/1884,
  59360. bottom: 35/1999
  59361. },
  59362. form: "hyena",
  59363. },
  59364. shark_front: {
  59365. height: math.unit(1.95, "meters"),
  59366. weight: math.unit(110, "kg"),
  59367. name: "Front",
  59368. image: {
  59369. source: "./media/characters/nima/shark-front.svg",
  59370. extra: 2238/2013,
  59371. bottom: 0/223
  59372. },
  59373. form: "shark",
  59374. },
  59375. paw: {
  59376. height: math.unit(1, "feet"),
  59377. name: "Paw",
  59378. image: {
  59379. source: "./media/characters/nima/paw.svg"
  59380. }
  59381. },
  59382. circlet: {
  59383. height: math.unit(0.3, "feet"),
  59384. name: "Circlet",
  59385. image: {
  59386. source: "./media/characters/nima/circlet.svg"
  59387. }
  59388. },
  59389. necklace: {
  59390. height: math.unit(1.2, "feet"),
  59391. name: "Necklace",
  59392. image: {
  59393. source: "./media/characters/nima/necklace.svg"
  59394. }
  59395. },
  59396. bracelet: {
  59397. height: math.unit(0.51, "feet"),
  59398. name: "Bracelet",
  59399. image: {
  59400. source: "./media/characters/nima/bracelet.svg"
  59401. }
  59402. },
  59403. armband: {
  59404. height: math.unit(1.3, "feet"),
  59405. name: "Armband",
  59406. image: {
  59407. source: "./media/characters/nima/armband.svg"
  59408. }
  59409. },
  59410. },
  59411. [
  59412. {
  59413. name: "Incognito",
  59414. height: math.unit(2.1, "meters"),
  59415. allForms: true
  59416. },
  59417. {
  59418. name: "Small Macro",
  59419. height: math.unit(50, "meters"),
  59420. allForms: true
  59421. },
  59422. {
  59423. name: "Macro",
  59424. height: math.unit(200, "meters"),
  59425. allForms: true
  59426. },
  59427. {
  59428. name: "Mega",
  59429. height: math.unit(2.5, "km"),
  59430. allForms: true
  59431. },
  59432. {
  59433. name: "Mega+",
  59434. height: math.unit(30, "km"),
  59435. allForms: true
  59436. },
  59437. {
  59438. name: "Giga (Home Size)",
  59439. height: math.unit(400, "km"),
  59440. allForms: true,
  59441. default: true
  59442. },
  59443. {
  59444. name: "Giga+",
  59445. height: math.unit(2500, "km"),
  59446. allForms: true
  59447. },
  59448. {
  59449. name: "Giga++",
  59450. height: math.unit(8000, "km"),
  59451. allForms: true
  59452. },
  59453. {
  59454. name: "Terra",
  59455. height: math.unit(20000, "km"),
  59456. allForms: true
  59457. },
  59458. {
  59459. name: "Terra+",
  59460. height: math.unit(70000, "km"),
  59461. allForms: true
  59462. },
  59463. {
  59464. name: "Terra++",
  59465. height: math.unit(600000, "km"),
  59466. allForms: true
  59467. },
  59468. {
  59469. name: "Galactic",
  59470. height: math.unit(40, "galaxies"),
  59471. allForms: true
  59472. },
  59473. {
  59474. name: "Universal",
  59475. height: math.unit(40, "universes"),
  59476. allForms: true
  59477. },
  59478. ],
  59479. {
  59480. "hyena": {
  59481. name: "Hyena",
  59482. default: true
  59483. },
  59484. "shark": {
  59485. name: "Shark",
  59486. },
  59487. }
  59488. ))
  59489. characterMakers.push(() => makeCharacter(
  59490. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59491. {
  59492. anthro_front: {
  59493. height: math.unit(1.5, "meters"),
  59494. name: "Front",
  59495. image: {
  59496. source: "./media/characters/adelaide/anthro-front.svg",
  59497. extra: 860/783,
  59498. bottom: 60/920
  59499. },
  59500. form: "anthro",
  59501. default: true
  59502. },
  59503. hand: {
  59504. height: math.unit(0.65, "feet"),
  59505. name: "Hand",
  59506. image: {
  59507. source: "./media/characters/adelaide/hand.svg"
  59508. },
  59509. form: "anthro"
  59510. },
  59511. foot: {
  59512. height: math.unit(1.38 * 259 / 314, "feet"),
  59513. name: "Foot",
  59514. image: {
  59515. source: "./media/characters/adelaide/foot.svg",
  59516. extra: 259/259,
  59517. bottom: 55/314
  59518. },
  59519. form: "anthro"
  59520. },
  59521. feather: {
  59522. height: math.unit(0.85, "feet"),
  59523. name: "Feather",
  59524. image: {
  59525. source: "./media/characters/adelaide/feather.svg"
  59526. },
  59527. form: "anthro"
  59528. },
  59529. feral_side: {
  59530. height: math.unit(1, "meters"),
  59531. name: "Side",
  59532. image: {
  59533. source: "./media/characters/adelaide/feral-side.svg",
  59534. extra: 550/467,
  59535. bottom: 37/587
  59536. },
  59537. form: "feral",
  59538. default: true
  59539. },
  59540. feral_hand: {
  59541. height: math.unit(0.58, "feet"),
  59542. name: "Hand",
  59543. image: {
  59544. source: "./media/characters/adelaide/hand.svg"
  59545. },
  59546. form: "feral"
  59547. },
  59548. feral_foot: {
  59549. height: math.unit(1.2 * 259 / 314, "feet"),
  59550. name: "Foot",
  59551. image: {
  59552. source: "./media/characters/adelaide/foot.svg",
  59553. extra: 259/259,
  59554. bottom: 55/314
  59555. },
  59556. form: "feral"
  59557. },
  59558. feral_feather: {
  59559. height: math.unit(0.63, "feet"),
  59560. name: "Feather",
  59561. image: {
  59562. source: "./media/characters/adelaide/feather.svg"
  59563. },
  59564. form: "feral"
  59565. },
  59566. },
  59567. [
  59568. {
  59569. name: "Normal",
  59570. height: math.unit(1.5, "meters"),
  59571. form: "anthro",
  59572. default: true
  59573. },
  59574. {
  59575. name: "Normal",
  59576. height: math.unit(1, "meters"),
  59577. form: "feral",
  59578. default: true
  59579. },
  59580. ],
  59581. {
  59582. "anthro": {
  59583. name: "Anthro",
  59584. default: true
  59585. },
  59586. "feral": {
  59587. name: "Feral",
  59588. },
  59589. }
  59590. ))
  59591. characterMakers.push(() => makeCharacter(
  59592. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59593. {
  59594. front: {
  59595. height: math.unit(2.5, "meters"),
  59596. name: "Front",
  59597. image: {
  59598. source: "./media/characters/goa/front.svg",
  59599. extra: 1109/1013,
  59600. bottom: 150/1259
  59601. }
  59602. },
  59603. },
  59604. [
  59605. {
  59606. name: "Normal",
  59607. height: math.unit(2.5, "meters"),
  59608. default: true
  59609. },
  59610. ]
  59611. ))
  59612. characterMakers.push(() => makeCharacter(
  59613. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59614. {
  59615. front: {
  59616. height: math.unit(2, "meters"),
  59617. weight: math.unit(100, "kg"),
  59618. name: "Front",
  59619. image: {
  59620. source: "./media/characters/kiki-weavile/front.svg",
  59621. extra: 357/332,
  59622. bottom: 60/417
  59623. }
  59624. },
  59625. },
  59626. [
  59627. {
  59628. name: "Normal",
  59629. height: math.unit(2, "meters"),
  59630. default: true
  59631. },
  59632. ]
  59633. ))
  59634. characterMakers.push(() => makeCharacter(
  59635. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59636. {
  59637. side: {
  59638. height: math.unit(1.6, "meters"),
  59639. name: "Side",
  59640. image: {
  59641. source: "./media/characters/liza/side.svg",
  59642. extra: 943/915,
  59643. bottom: 72/1015
  59644. }
  59645. },
  59646. },
  59647. [
  59648. {
  59649. name: "Normal",
  59650. height: math.unit(1.6, "meters"),
  59651. default: true
  59652. },
  59653. ]
  59654. ))
  59655. characterMakers.push(() => makeCharacter(
  59656. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59657. {
  59658. side: {
  59659. height: math.unit(2.5, "meters"),
  59660. preyCapacity: math.unit(1, "people"),
  59661. name: "Side",
  59662. image: {
  59663. source: "./media/characters/persephone-sweetbreath/side.svg",
  59664. extra: 796/700,
  59665. bottom: 44/840
  59666. }
  59667. },
  59668. sideVore: {
  59669. height: math.unit(2.5, "meters"),
  59670. preyCapacity: math.unit(1, "people"),
  59671. name: "Side (Full)",
  59672. image: {
  59673. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59674. extra: 796/700,
  59675. bottom: 44/840
  59676. }
  59677. },
  59678. },
  59679. [
  59680. {
  59681. name: "Normal",
  59682. height: math.unit(2.5, "meters"),
  59683. default: true
  59684. },
  59685. ]
  59686. ))
  59687. characterMakers.push(() => makeCharacter(
  59688. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59689. {
  59690. front: {
  59691. height: math.unit(32, "meters"),
  59692. name: "Front",
  59693. image: {
  59694. source: "./media/characters/pierce/front.svg",
  59695. extra: 1695/1475,
  59696. bottom: 185/1880
  59697. }
  59698. },
  59699. side: {
  59700. height: math.unit(32, "meters"),
  59701. name: "Side",
  59702. image: {
  59703. source: "./media/characters/pierce/side.svg",
  59704. extra: 974/859,
  59705. bottom: 43/1017
  59706. }
  59707. },
  59708. frontWingless: {
  59709. height: math.unit(32, "meters"),
  59710. name: "Front (Wingless)",
  59711. image: {
  59712. source: "./media/characters/pierce/front-wingless.svg",
  59713. extra: 1695/1475,
  59714. bottom: 185/1880
  59715. }
  59716. },
  59717. sideWingless: {
  59718. height: math.unit(32, "meters"),
  59719. name: "Side (Wingless)",
  59720. image: {
  59721. source: "./media/characters/pierce/side-wingless.svg",
  59722. extra: 974/859,
  59723. bottom: 43/1017
  59724. }
  59725. },
  59726. maw: {
  59727. height: math.unit(19.3, "meters"),
  59728. name: "Maw",
  59729. image: {
  59730. source: "./media/characters/pierce/maw.svg"
  59731. }
  59732. },
  59733. },
  59734. [
  59735. {
  59736. name: "Small",
  59737. height: math.unit(8.5, "meters")
  59738. },
  59739. {
  59740. name: "Normal",
  59741. height: math.unit(32, "meters"),
  59742. default: true
  59743. },
  59744. ]
  59745. ))
  59746. characterMakers.push(() => makeCharacter(
  59747. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59748. {
  59749. front: {
  59750. height: math.unit(2.3, "meters"),
  59751. weight: math.unit(165, "kg"),
  59752. name: "Front",
  59753. image: {
  59754. source: "./media/characters/shira/front.svg",
  59755. extra: 924/919,
  59756. bottom: 17/941
  59757. },
  59758. form: "cobra",
  59759. default: true
  59760. },
  59761. back: {
  59762. height: math.unit(2.3, "meters"),
  59763. weight: math.unit(165, "kg"),
  59764. name: "Back",
  59765. image: {
  59766. source: "./media/characters/shira/back.svg",
  59767. extra: 928/922,
  59768. bottom: 18/946
  59769. },
  59770. form: "cobra"
  59771. },
  59772. frontLewd: {
  59773. height: math.unit(2.3, "meters"),
  59774. weight: math.unit(165, "kg"),
  59775. name: "Front (Lewd)",
  59776. image: {
  59777. source: "./media/characters/shira/front-lewd.svg",
  59778. extra: 924/919,
  59779. bottom: 17/941
  59780. },
  59781. form: "cobra"
  59782. },
  59783. backLewd: {
  59784. height: math.unit(2.3, "meters"),
  59785. weight: math.unit(165, "kg"),
  59786. name: "Back (Lewd)",
  59787. image: {
  59788. source: "./media/characters/shira/back-lewd.svg",
  59789. extra: 928/922,
  59790. bottom: 18/946
  59791. },
  59792. form: "cobra"
  59793. },
  59794. maw: {
  59795. height: math.unit(1.14, "feet"),
  59796. name: "Maw",
  59797. image: {
  59798. source: "./media/characters/shira/maw.svg"
  59799. },
  59800. form: "cobra"
  59801. },
  59802. magma_front: {
  59803. height: math.unit(2.3, "meters"),
  59804. weight: math.unit(165, "kg"),
  59805. name: "Front",
  59806. image: {
  59807. source: "./media/characters/shira/magma-front.svg",
  59808. extra: 1870/1693,
  59809. bottom: 24/1894
  59810. },
  59811. form: "magma",
  59812. },
  59813. magma_back: {
  59814. height: math.unit(2.3, "meters"),
  59815. weight: math.unit(165, "kg"),
  59816. name: "Back",
  59817. image: {
  59818. source: "./media/characters/shira/magma-back.svg",
  59819. extra: 1918/1756,
  59820. bottom: 46/1964
  59821. },
  59822. form: "magma",
  59823. },
  59824. },
  59825. [
  59826. {
  59827. name: "Incognito",
  59828. height: math.unit(2.3, "meters"),
  59829. allForms: true
  59830. },
  59831. {
  59832. name: "Home Size",
  59833. height: math.unit(150, "meters"),
  59834. default: true,
  59835. allForms: true
  59836. },
  59837. {
  59838. name: "Macro",
  59839. height: math.unit(2, "km"),
  59840. allForms: true
  59841. },
  59842. {
  59843. name: "Mega",
  59844. height: math.unit(30, "km"),
  59845. allForms: true
  59846. },
  59847. {
  59848. name: "Giga",
  59849. height: math.unit(450, "km"),
  59850. allForms: true
  59851. },
  59852. {
  59853. name: "Giga+",
  59854. height: math.unit(3000, "km"),
  59855. allForms: true
  59856. },
  59857. {
  59858. name: "Giga++",
  59859. height: math.unit(6000, "km"),
  59860. allForms: true
  59861. },
  59862. {
  59863. name: "Terra",
  59864. height: math.unit(80000, "km"),
  59865. allForms: true
  59866. },
  59867. {
  59868. name: "Terra+",
  59869. height: math.unit(350000, "km"),
  59870. allForms: true
  59871. },
  59872. {
  59873. name: "Solar",
  59874. height: math.unit(1e6, "km"),
  59875. allForms: true
  59876. },
  59877. ],
  59878. {
  59879. "cobra": {
  59880. name: "Cobra",
  59881. default: true
  59882. },
  59883. "magma": {
  59884. name: "Magma Dragon",
  59885. },
  59886. }
  59887. ))
  59888. characterMakers.push(() => makeCharacter(
  59889. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59890. {
  59891. front: {
  59892. height: math.unit(2, "meters"),
  59893. weight: math.unit(160, "kg"),
  59894. name: "Front",
  59895. image: {
  59896. source: "./media/characters/daxerios/front.svg",
  59897. extra: 1334/1277,
  59898. bottom: 45/1379
  59899. }
  59900. },
  59901. frontLewd: {
  59902. height: math.unit(2, "meters"),
  59903. weight: math.unit(160, "kg"),
  59904. name: "Front (Lewd)",
  59905. image: {
  59906. source: "./media/characters/daxerios/front-lewd.svg",
  59907. extra: 1334/1277,
  59908. bottom: 45/1379
  59909. }
  59910. },
  59911. dick: {
  59912. height: math.unit(2.35, "feet"),
  59913. name: "Dick",
  59914. image: {
  59915. source: "./media/characters/daxerios/dick.svg"
  59916. }
  59917. },
  59918. },
  59919. [
  59920. {
  59921. name: "\"Small\"",
  59922. height: math.unit(5, "meters")
  59923. },
  59924. {
  59925. name: "Original Size",
  59926. height: math.unit(500, "meters"),
  59927. default: true
  59928. },
  59929. {
  59930. name: "Mega",
  59931. height: math.unit(2, "km")
  59932. },
  59933. {
  59934. name: "Mega+",
  59935. height: math.unit(35, "km")
  59936. },
  59937. {
  59938. name: "Giga",
  59939. height: math.unit(250, "km")
  59940. },
  59941. {
  59942. name: "Giga+",
  59943. height: math.unit(3000, "km")
  59944. },
  59945. {
  59946. name: "Terra",
  59947. height: math.unit(25000, "km")
  59948. },
  59949. {
  59950. name: "Terra+",
  59951. height: math.unit(300000, "km")
  59952. },
  59953. {
  59954. name: "Solar",
  59955. height: math.unit(1e6, "km")
  59956. },
  59957. ]
  59958. ))
  59959. characterMakers.push(() => makeCharacter(
  59960. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59961. {
  59962. front: {
  59963. height: math.unit(8 + 4/12, "feet"),
  59964. weight: math.unit(464, "lb"),
  59965. name: "Front",
  59966. image: {
  59967. source: "./media/characters/caveat/front.svg",
  59968. extra: 1861/1678,
  59969. bottom: 40/1901
  59970. }
  59971. },
  59972. },
  59973. [
  59974. {
  59975. name: "Normal",
  59976. height: math.unit(8 + 4/12, "feet"),
  59977. default: true
  59978. },
  59979. ]
  59980. ))
  59981. characterMakers.push(() => makeCharacter(
  59982. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59983. {
  59984. front: {
  59985. height: math.unit(12, "feet"),
  59986. weight: math.unit(1800, "lb"),
  59987. name: "Front",
  59988. image: {
  59989. source: "./media/characters/centbair/front.svg",
  59990. extra: 781/663,
  59991. bottom: 25/806
  59992. }
  59993. },
  59994. frontNsfw: {
  59995. height: math.unit(12, "feet"),
  59996. weight: math.unit(1800, "lb"),
  59997. name: "Front (NSFW)",
  59998. image: {
  59999. source: "./media/characters/centbair/front-nsfw.svg",
  60000. extra: 781/663,
  60001. bottom: 25/806
  60002. }
  60003. },
  60004. back: {
  60005. height: math.unit(12, "feet"),
  60006. weight: math.unit(1800, "lb"),
  60007. name: "Back",
  60008. image: {
  60009. source: "./media/characters/centbair/back.svg",
  60010. extra: 808/761,
  60011. bottom: 19/827
  60012. }
  60013. },
  60014. dick: {
  60015. height: math.unit(6.5, "feet"),
  60016. name: "Dick",
  60017. image: {
  60018. source: "./media/characters/centbair/dick.svg"
  60019. }
  60020. },
  60021. slit: {
  60022. height: math.unit(3.25, "feet"),
  60023. name: "Slit",
  60024. image: {
  60025. source: "./media/characters/centbair/slit.svg"
  60026. }
  60027. },
  60028. },
  60029. [
  60030. {
  60031. name: "Normal",
  60032. height: math.unit(12, "feet"),
  60033. default: true
  60034. },
  60035. ]
  60036. ))
  60037. characterMakers.push(() => makeCharacter(
  60038. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60039. {
  60040. front: {
  60041. height: math.unit(5 + 7/12, "feet"),
  60042. name: "Front",
  60043. image: {
  60044. source: "./media/characters/andy/front.svg",
  60045. extra: 634/588,
  60046. bottom: 36/670
  60047. },
  60048. extraAttributes: {
  60049. "pawLength": {
  60050. name: "Paw Length",
  60051. power: 1,
  60052. type: "length",
  60053. base: math.unit(1, "feet")
  60054. },
  60055. }
  60056. },
  60057. side: {
  60058. height: math.unit(5 + 7/12, "feet"),
  60059. name: "Side",
  60060. image: {
  60061. source: "./media/characters/andy/side.svg",
  60062. extra: 641/596,
  60063. bottom: 34/675
  60064. },
  60065. extraAttributes: {
  60066. "pawLength": {
  60067. name: "Paw Length",
  60068. power: 1,
  60069. type: "length",
  60070. base: math.unit(1, "feet")
  60071. },
  60072. }
  60073. },
  60074. back: {
  60075. height: math.unit(5 + 7/12, "feet"),
  60076. name: "Back",
  60077. image: {
  60078. source: "./media/characters/andy/back.svg",
  60079. extra: 618/583,
  60080. bottom: 39/657
  60081. },
  60082. extraAttributes: {
  60083. "pawLength": {
  60084. name: "Paw Length",
  60085. power: 1,
  60086. type: "length",
  60087. base: math.unit(1, "feet")
  60088. },
  60089. }
  60090. },
  60091. paw: {
  60092. height: math.unit(1.13, "feet"),
  60093. name: "Paw",
  60094. image: {
  60095. source: "./media/characters/andy/paw.svg"
  60096. }
  60097. },
  60098. },
  60099. [
  60100. {
  60101. name: "Micro",
  60102. height: math.unit(4, "inches")
  60103. },
  60104. {
  60105. name: "Normal",
  60106. height: math.unit(5 + 7/12, "feet"),
  60107. default: true
  60108. },
  60109. {
  60110. name: "Macro",
  60111. height: math.unit(390.42, "feet")
  60112. },
  60113. ]
  60114. ))
  60115. characterMakers.push(() => makeCharacter(
  60116. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60117. {
  60118. front: {
  60119. height: math.unit(7, "feet"),
  60120. weight: math.unit(250, "lb"),
  60121. name: "Front",
  60122. image: {
  60123. source: "./media/characters/vix-titan/front.svg",
  60124. extra: 460/428,
  60125. bottom: 15/475
  60126. },
  60127. extraAttributes: {
  60128. "pawWidth": {
  60129. name: "Paw Width",
  60130. power: 1,
  60131. type: "length",
  60132. base: math.unit(0.75, "feet")
  60133. },
  60134. }
  60135. },
  60136. },
  60137. [
  60138. {
  60139. name: "Normal",
  60140. height: math.unit(7, "feet"),
  60141. default: true
  60142. },
  60143. {
  60144. name: "Giant",
  60145. height: math.unit(1500, "feet")
  60146. },
  60147. {
  60148. name: "Mega",
  60149. height: math.unit(10, "miles")
  60150. },
  60151. {
  60152. name: "Giga",
  60153. height: math.unit(150, "miles")
  60154. },
  60155. {
  60156. name: "Tera",
  60157. height: math.unit(144000, "miles")
  60158. },
  60159. ]
  60160. ))
  60161. characterMakers.push(() => makeCharacter(
  60162. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60163. {
  60164. front: {
  60165. height: math.unit(6 + 2/12, "feet"),
  60166. name: "Front",
  60167. image: {
  60168. source: "./media/characters/reiku/front.svg",
  60169. extra: 1910/1757,
  60170. bottom: 103/2013
  60171. },
  60172. extraAttributes: {
  60173. "thighThickness": {
  60174. name: "Thigh Thickness",
  60175. power: 1,
  60176. type: "length",
  60177. base: math.unit(1.12, "feet")
  60178. },
  60179. "assThickness": {
  60180. name: "Ass Thickness",
  60181. power: 1,
  60182. type: "length",
  60183. base: math.unit(1.12*2, "feet")
  60184. },
  60185. }
  60186. },
  60187. side: {
  60188. height: math.unit(6 + 2/12, "feet"),
  60189. name: "Side",
  60190. image: {
  60191. source: "./media/characters/reiku/side.svg",
  60192. extra: 1846/1748,
  60193. bottom: 99/1945
  60194. },
  60195. extraAttributes: {
  60196. "thighThickness": {
  60197. name: "Thigh Thickness",
  60198. power: 1,
  60199. type: "length",
  60200. base: math.unit(1.12, "feet")
  60201. },
  60202. "assThickness": {
  60203. name: "Ass Thickness",
  60204. power: 1,
  60205. type: "length",
  60206. base: math.unit(1.12*2, "feet")
  60207. },
  60208. }
  60209. },
  60210. back: {
  60211. height: math.unit(6 + 2/12, "feet"),
  60212. name: "Back",
  60213. image: {
  60214. source: "./media/characters/reiku/back.svg",
  60215. extra: 1941/1786,
  60216. bottom: 34/1975
  60217. },
  60218. extraAttributes: {
  60219. "thighThickness": {
  60220. name: "Thigh Thickness",
  60221. power: 1,
  60222. type: "length",
  60223. base: math.unit(1.12, "feet")
  60224. },
  60225. "assThickness": {
  60226. name: "Ass Thickness",
  60227. power: 1,
  60228. type: "length",
  60229. base: math.unit(1.12*2, "feet")
  60230. },
  60231. }
  60232. },
  60233. head: {
  60234. height: math.unit(1.8, "feet"),
  60235. name: "Head",
  60236. image: {
  60237. source: "./media/characters/reiku/head.svg"
  60238. }
  60239. },
  60240. tailTop: {
  60241. height: math.unit(8.4, "feet"),
  60242. name: "Tail (Top)",
  60243. image: {
  60244. source: "./media/characters/reiku/tail-top.svg"
  60245. }
  60246. },
  60247. tailBottom: {
  60248. height: math.unit(8.4, "feet"),
  60249. name: "Tail (Bottom)",
  60250. image: {
  60251. source: "./media/characters/reiku/tail-bottom.svg"
  60252. }
  60253. },
  60254. foot: {
  60255. height: math.unit(2.6, "feet"),
  60256. name: "Foot",
  60257. image: {
  60258. source: "./media/characters/reiku/foot.svg"
  60259. }
  60260. },
  60261. footCurled: {
  60262. height: math.unit(2.3, "feet"),
  60263. name: "Foot (Curled)",
  60264. image: {
  60265. source: "./media/characters/reiku/foot-curled.svg"
  60266. }
  60267. },
  60268. footSide: {
  60269. height: math.unit(1.26, "feet"),
  60270. name: "Foot (Side)",
  60271. image: {
  60272. source: "./media/characters/reiku/foot-side.svg"
  60273. }
  60274. },
  60275. },
  60276. [
  60277. {
  60278. name: "Normal",
  60279. height: math.unit(6 + 2/12, "feet"),
  60280. default: true
  60281. },
  60282. ]
  60283. ))
  60284. characterMakers.push(() => makeCharacter(
  60285. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60286. {
  60287. front: {
  60288. height: math.unit(7, "feet"),
  60289. weight: math.unit(500, "kg"),
  60290. name: "Front",
  60291. image: {
  60292. source: "./media/characters/cialda/front.svg",
  60293. extra: 912/745,
  60294. bottom: 55/967
  60295. }
  60296. },
  60297. },
  60298. [
  60299. {
  60300. name: "Normal",
  60301. height: math.unit(7, "feet"),
  60302. default: true
  60303. },
  60304. ]
  60305. ))
  60306. characterMakers.push(() => makeCharacter(
  60307. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60308. {
  60309. side: {
  60310. height: math.unit(6, "feet"),
  60311. weight: math.unit(600, "lb"),
  60312. preyCapacity: math.unit(25, "liters"),
  60313. name: "Side",
  60314. image: {
  60315. source: "./media/characters/darkkin/side.svg",
  60316. extra: 1597/1447,
  60317. bottom: 101/1698
  60318. }
  60319. },
  60320. },
  60321. [
  60322. {
  60323. name: "Canon Height",
  60324. height: math.unit(568, "feet"),
  60325. default: true
  60326. },
  60327. ]
  60328. ))
  60329. characterMakers.push(() => makeCharacter(
  60330. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60331. {
  60332. front: {
  60333. height: math.unit(6, "feet"),
  60334. weight: math.unit(1500, "lb"),
  60335. preyCapacity: math.unit(3, "people"),
  60336. name: "Front",
  60337. image: {
  60338. source: "./media/characters/livnia/front.svg",
  60339. extra: 934/932,
  60340. bottom: 83/1017
  60341. }
  60342. },
  60343. back: {
  60344. height: math.unit(6, "feet"),
  60345. weight: math.unit(1500, "lb"),
  60346. preyCapacity: math.unit(3, "people"),
  60347. name: "Back",
  60348. image: {
  60349. source: "./media/characters/livnia/back.svg",
  60350. extra: 916/915,
  60351. bottom: 58/974
  60352. }
  60353. },
  60354. head: {
  60355. height: math.unit(1.53, "feet"),
  60356. name: "Head",
  60357. image: {
  60358. source: "./media/characters/livnia/head.svg"
  60359. }
  60360. },
  60361. maw: {
  60362. height: math.unit(0.78, "feet"),
  60363. name: "Maw",
  60364. image: {
  60365. source: "./media/characters/livnia/maw.svg"
  60366. }
  60367. },
  60368. genitals: {
  60369. height: math.unit(0.35, "feet"),
  60370. name: "Genitals",
  60371. image: {
  60372. source: "./media/characters/livnia/genitals.svg"
  60373. }
  60374. },
  60375. },
  60376. [
  60377. {
  60378. name: "Normal",
  60379. height: math.unit(1000, "feet"),
  60380. default: true
  60381. },
  60382. ]
  60383. ))
  60384. characterMakers.push(() => makeCharacter(
  60385. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60386. {
  60387. front: {
  60388. height: math.unit(4, "feet"),
  60389. weight: math.unit(73, "lb"),
  60390. name: "Front",
  60391. image: {
  60392. source: "./media/characters/hayaku/front.svg",
  60393. extra: 1011/888,
  60394. bottom: 33/1044
  60395. }
  60396. },
  60397. back: {
  60398. height: math.unit(4, "feet"),
  60399. weight: math.unit(73, "lb"),
  60400. name: "Back",
  60401. image: {
  60402. source: "./media/characters/hayaku/back.svg",
  60403. extra: 1040/930,
  60404. bottom: 20/1060
  60405. }
  60406. },
  60407. },
  60408. [
  60409. {
  60410. name: "Normal",
  60411. height: math.unit(4, "feet"),
  60412. default: true
  60413. },
  60414. ]
  60415. ))
  60416. characterMakers.push(() => makeCharacter(
  60417. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60418. {
  60419. front: {
  60420. height: math.unit(6 + 7/12, "feet"),
  60421. weight: math.unit(300, "lb"),
  60422. name: "Front",
  60423. image: {
  60424. source: "./media/characters/athena-bryzant/front.svg",
  60425. extra: 870/835,
  60426. bottom: 33/903
  60427. }
  60428. },
  60429. back: {
  60430. height: math.unit(6 + 7/12, "feet"),
  60431. weight: math.unit(300, "lb"),
  60432. name: "Back",
  60433. image: {
  60434. source: "./media/characters/athena-bryzant/back.svg",
  60435. extra: 858/823,
  60436. bottom: 30/888
  60437. }
  60438. },
  60439. head: {
  60440. height: math.unit(2.38, "feet"),
  60441. name: "Head",
  60442. image: {
  60443. source: "./media/characters/athena-bryzant/head.svg"
  60444. }
  60445. },
  60446. wings: {
  60447. height: math.unit(2.85, "feet"),
  60448. name: "Wings",
  60449. image: {
  60450. source: "./media/characters/athena-bryzant/wings.svg"
  60451. }
  60452. },
  60453. },
  60454. [
  60455. {
  60456. name: "Normal",
  60457. height: math.unit(6 + 7/12, "feet"),
  60458. default: true
  60459. },
  60460. {
  60461. name: "Big",
  60462. height: math.unit(8, "feet")
  60463. },
  60464. {
  60465. name: "Very Big",
  60466. height: math.unit(11, "feet")
  60467. },
  60468. ]
  60469. ))
  60470. characterMakers.push(() => makeCharacter(
  60471. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60472. {
  60473. side: {
  60474. height: math.unit(3, "meters"),
  60475. weight: math.unit(7500, "kg"),
  60476. preyCapacity: math.unit(1e12, "people"),
  60477. name: "Side",
  60478. image: {
  60479. source: "./media/characters/zel-kesh/side.svg",
  60480. extra: 910/407,
  60481. bottom: 147/1057
  60482. }
  60483. },
  60484. },
  60485. [
  60486. {
  60487. name: "Normal",
  60488. height: math.unit(3, "meters"),
  60489. default: true
  60490. },
  60491. ]
  60492. ))
  60493. characterMakers.push(() => makeCharacter(
  60494. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60495. {
  60496. front: {
  60497. height: math.unit(2, "meters"),
  60498. weight: math.unit(95, "kg"),
  60499. name: "Front",
  60500. image: {
  60501. source: "./media/characters/kane-fox/front.svg",
  60502. extra: 945/888,
  60503. bottom: 27/972
  60504. }
  60505. },
  60506. back: {
  60507. height: math.unit(2, "meters"),
  60508. weight: math.unit(95, "kg"),
  60509. name: "Back",
  60510. image: {
  60511. source: "./media/characters/kane-fox/back.svg",
  60512. extra: 959/914,
  60513. bottom: 15/974
  60514. }
  60515. },
  60516. frontLewd: {
  60517. height: math.unit(2, "meters"),
  60518. weight: math.unit(95, "kg"),
  60519. name: "Front (Lewd)",
  60520. image: {
  60521. source: "./media/characters/kane-fox/front-lewd.svg",
  60522. extra: 945/888,
  60523. bottom: 27/972
  60524. }
  60525. },
  60526. },
  60527. [
  60528. {
  60529. name: "Home Size",
  60530. height: math.unit(2, "meters"),
  60531. default: true
  60532. },
  60533. {
  60534. name: "Macro",
  60535. height: math.unit(200, "meters")
  60536. },
  60537. {
  60538. name: "Small Mega",
  60539. height: math.unit(3, "km")
  60540. },
  60541. {
  60542. name: "Mega",
  60543. height: math.unit(50, "km")
  60544. },
  60545. {
  60546. name: "Giga",
  60547. height: math.unit(200, "km")
  60548. },
  60549. {
  60550. name: "Giga+",
  60551. height: math.unit(2500, "km")
  60552. },
  60553. {
  60554. name: "Terra",
  60555. height: math.unit(70000, "km")
  60556. },
  60557. {
  60558. name: "Terra+",
  60559. height: math.unit(150000, "km")
  60560. },
  60561. {
  60562. name: "Terra++",
  60563. height: math.unit(400000, "km")
  60564. },
  60565. ]
  60566. ))
  60567. characterMakers.push(() => makeCharacter(
  60568. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60569. {
  60570. otter_front: {
  60571. height: math.unit(1.8, "meters"),
  60572. weight: math.unit(90, "kg"),
  60573. name: "Front",
  60574. image: {
  60575. source: "./media/characters/ayranus/otter-front.svg",
  60576. extra: 468/452,
  60577. bottom: 43/511
  60578. },
  60579. form: "otter",
  60580. },
  60581. otter_frontLewd: {
  60582. height: math.unit(1.8, "meters"),
  60583. weight: math.unit(90, "kg"),
  60584. name: "Front (Lewd)",
  60585. image: {
  60586. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60587. extra: 468/452,
  60588. bottom: 43/511
  60589. },
  60590. form: "otter",
  60591. },
  60592. lionbat_front: {
  60593. height: math.unit(1.8, "meters"),
  60594. weight: math.unit(90, "kg"),
  60595. name: "Front (Lewd)",
  60596. image: {
  60597. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60598. extra: 797/740,
  60599. bottom: 78/875
  60600. },
  60601. form: "lionbat",
  60602. },
  60603. paw: {
  60604. height: math.unit(1.5, "feet"),
  60605. name: "Paw",
  60606. image: {
  60607. source: "./media/characters/ayranus/paw.svg"
  60608. },
  60609. },
  60610. },
  60611. [
  60612. {
  60613. name: "Incognito",
  60614. height: math.unit(1.8, "meters"),
  60615. allForms: true
  60616. },
  60617. {
  60618. name: "Macro",
  60619. height: math.unit(60, "meters"),
  60620. allForms: true
  60621. },
  60622. {
  60623. name: "Macro+",
  60624. height: math.unit(200, "meters"),
  60625. allForms: true
  60626. },
  60627. {
  60628. name: "Mega",
  60629. height: math.unit(35, "km"),
  60630. allForms: true
  60631. },
  60632. {
  60633. name: "Giga",
  60634. height: math.unit(220, "km"),
  60635. allForms: true
  60636. },
  60637. {
  60638. name: "Giga+",
  60639. height: math.unit(1500, "km"),
  60640. allForms: true
  60641. },
  60642. {
  60643. name: "Terra",
  60644. height: math.unit(13000, "km"),
  60645. allForms: true
  60646. },
  60647. {
  60648. name: "Terra+",
  60649. height: math.unit(500000, "km"),
  60650. allForms: true
  60651. },
  60652. {
  60653. name: "Galactic",
  60654. height: math.unit(486080, "parsecs"),
  60655. default: true,
  60656. allForms: true
  60657. },
  60658. ],
  60659. {
  60660. "otter": {
  60661. name: "Otter",
  60662. default: true
  60663. },
  60664. "lionbat": {
  60665. name: "Lionbat",
  60666. },
  60667. }
  60668. ))
  60669. characterMakers.push(() => makeCharacter(
  60670. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60671. {
  60672. front: {
  60673. height: math.unit(7 + 4/12, "feet"),
  60674. weight: math.unit(400, "lb"),
  60675. name: "Front",
  60676. image: {
  60677. source: "./media/characters/proxy/front.svg",
  60678. extra: 1605/1542,
  60679. bottom: 55/1660
  60680. }
  60681. },
  60682. side: {
  60683. height: math.unit(7 + 4/12, "feet"),
  60684. weight: math.unit(400, "lb"),
  60685. name: "Side",
  60686. image: {
  60687. source: "./media/characters/proxy/side.svg",
  60688. extra: 794/759,
  60689. bottom: 6/800
  60690. }
  60691. },
  60692. hand: {
  60693. height: math.unit(1.54, "feet"),
  60694. name: "Hand",
  60695. image: {
  60696. source: "./media/characters/proxy/hand.svg"
  60697. }
  60698. },
  60699. paw: {
  60700. height: math.unit(1.53, "feet"),
  60701. name: "Paw",
  60702. image: {
  60703. source: "./media/characters/proxy/paw.svg"
  60704. }
  60705. },
  60706. maw: {
  60707. height: math.unit(1.9, "feet"),
  60708. name: "Maw",
  60709. image: {
  60710. source: "./media/characters/proxy/maw.svg"
  60711. }
  60712. },
  60713. },
  60714. [
  60715. {
  60716. name: "Normal",
  60717. height: math.unit(7 + 4/12, "feet"),
  60718. default: true
  60719. },
  60720. ]
  60721. ))
  60722. characterMakers.push(() => makeCharacter(
  60723. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60724. {
  60725. front: {
  60726. height: math.unit(4, "meters"),
  60727. name: "Front",
  60728. image: {
  60729. source: "./media/characters/crocozilla/front.svg",
  60730. extra: 1790/1742,
  60731. bottom: 78/1868
  60732. }
  60733. },
  60734. },
  60735. [
  60736. {
  60737. name: "Normal",
  60738. height: math.unit(4, "meters"),
  60739. default: true
  60740. },
  60741. ]
  60742. ))
  60743. characterMakers.push(() => makeCharacter(
  60744. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60745. {
  60746. front: {
  60747. height: math.unit(1.8, "meters"),
  60748. weight: math.unit(120, "kg"),
  60749. name: "Front",
  60750. image: {
  60751. source: "./media/characters/kurz/front.svg",
  60752. extra: 1960/1824,
  60753. bottom: 41/2001
  60754. }
  60755. },
  60756. back: {
  60757. height: math.unit(1.8, "meters"),
  60758. weight: math.unit(120, "kg"),
  60759. name: "Back",
  60760. image: {
  60761. source: "./media/characters/kurz/back.svg",
  60762. extra: 1906/1787,
  60763. bottom: 60/1966
  60764. }
  60765. },
  60766. frontLewd: {
  60767. height: math.unit(1.8, "meters"),
  60768. weight: math.unit(120, "kg"),
  60769. name: "Front (Lewd)",
  60770. image: {
  60771. source: "./media/characters/kurz/front-lewd.svg",
  60772. extra: 1960/1824,
  60773. bottom: 41/2001
  60774. }
  60775. },
  60776. maw: {
  60777. height: math.unit(0.69, "meters"),
  60778. name: "Maw",
  60779. image: {
  60780. source: "./media/characters/kurz/maw.svg"
  60781. }
  60782. },
  60783. },
  60784. [
  60785. {
  60786. name: "Original Size",
  60787. height: math.unit(1.8, "meters")
  60788. },
  60789. {
  60790. name: "Incognito Size",
  60791. height: math.unit(2.4, "meters"),
  60792. default: true
  60793. },
  60794. {
  60795. name: "Macro",
  60796. height: math.unit(30, "meters")
  60797. },
  60798. {
  60799. name: "Macro+",
  60800. height: math.unit(250, "meters")
  60801. },
  60802. {
  60803. name: "Mega",
  60804. height: math.unit(2, "km")
  60805. },
  60806. {
  60807. name: "Mega+",
  60808. height: math.unit(35, "km")
  60809. },
  60810. {
  60811. name: "Mega++",
  60812. height: math.unit(75, "km")
  60813. },
  60814. {
  60815. name: "Giga",
  60816. height: math.unit(250, "km")
  60817. },
  60818. {
  60819. name: "Terra",
  60820. height: math.unit(15000, "km")
  60821. },
  60822. {
  60823. name: "Terra+",
  60824. height: math.unit(2250000, "km")
  60825. },
  60826. ]
  60827. ))
  60828. characterMakers.push(() => makeCharacter(
  60829. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60830. {
  60831. front: {
  60832. height: math.unit(16 + 3/12, "feet"),
  60833. weight: math.unit(3575, "lb"),
  60834. name: "Front",
  60835. image: {
  60836. source: "./media/characters/nikita/front.svg",
  60837. extra: 1064/955,
  60838. bottom: 47/1111
  60839. }
  60840. },
  60841. },
  60842. [
  60843. {
  60844. name: "Normal",
  60845. height: math.unit(16 + 3/12, "feet"),
  60846. default: true
  60847. },
  60848. {
  60849. name: "Big",
  60850. height: math.unit(21, "feet")
  60851. },
  60852. {
  60853. name: "Biggest",
  60854. height: math.unit(50, "feet")
  60855. },
  60856. ]
  60857. ))
  60858. characterMakers.push(() => makeCharacter(
  60859. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60860. {
  60861. front: {
  60862. height: math.unit(1.92, "m"),
  60863. weight: math.unit(76, "kg"),
  60864. name: "Front",
  60865. image: {
  60866. source: "./media/characters/kyara/front.svg",
  60867. extra: 1550/1438,
  60868. bottom: 139/1689
  60869. }
  60870. },
  60871. back: {
  60872. height: math.unit(1.92, "m"),
  60873. weight: math.unit(76, "kg"),
  60874. name: "Back",
  60875. image: {
  60876. source: "./media/characters/kyara/back.svg",
  60877. extra: 1523/1427,
  60878. bottom: 83/1606
  60879. }
  60880. },
  60881. head: {
  60882. height: math.unit(1.22, "feet"),
  60883. name: "Head",
  60884. image: {
  60885. source: "./media/characters/kyara/head.svg"
  60886. }
  60887. },
  60888. maw: {
  60889. height: math.unit(0.73, "feet"),
  60890. name: "Maw",
  60891. image: {
  60892. source: "./media/characters/kyara/maw.svg"
  60893. }
  60894. },
  60895. paws: {
  60896. height: math.unit(0.95, "feet"),
  60897. name: "Paws",
  60898. image: {
  60899. source: "./media/characters/kyara/paws.svg"
  60900. }
  60901. },
  60902. },
  60903. [
  60904. {
  60905. name: "Normal",
  60906. height: math.unit(1.92, "meters"),
  60907. default: true
  60908. },
  60909. {
  60910. name: "Mini Macro",
  60911. height: math.unit(192, "meters")
  60912. },
  60913. {
  60914. name: "Macro",
  60915. height: math.unit(480, "meters")
  60916. },
  60917. {
  60918. name: "Mega Macro",
  60919. height: math.unit(1440, "meters")
  60920. },
  60921. ]
  60922. ))
  60923. characterMakers.push(() => makeCharacter(
  60924. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60925. {
  60926. front: {
  60927. height: math.unit(6, "feet"),
  60928. weight: math.unit(160, "lbs"),
  60929. preyCapacity: math.unit(0.05, "people"),
  60930. name: "Front",
  60931. image: {
  60932. source: "./media/characters/layla-amari/front.svg",
  60933. extra: 1922/1723,
  60934. bottom: 90/2012
  60935. }
  60936. },
  60937. back: {
  60938. height: math.unit(6, "feet"),
  60939. weight: math.unit(160, "lbs"),
  60940. preyCapacity: math.unit(0.05, "people"),
  60941. name: "Back",
  60942. image: {
  60943. source: "./media/characters/layla-amari/back.svg",
  60944. extra: 1917/1718,
  60945. bottom: 50/1967
  60946. }
  60947. },
  60948. frontDressed: {
  60949. height: math.unit(6, "feet"),
  60950. weight: math.unit(160, "lbs"),
  60951. preyCapacity: math.unit(0.05, "people"),
  60952. name: "Front (Dressed)",
  60953. image: {
  60954. source: "./media/characters/layla-amari/front-dressed.svg",
  60955. extra: 1922/1723,
  60956. bottom: 90/2012
  60957. }
  60958. },
  60959. face: {
  60960. height: math.unit(0.93, "feet"),
  60961. name: "Face",
  60962. image: {
  60963. source: "./media/characters/layla-amari/face.svg"
  60964. }
  60965. },
  60966. hand: {
  60967. height: math.unit(0.66 , "feet"),
  60968. name: "Hand",
  60969. image: {
  60970. source: "./media/characters/layla-amari/hand.svg"
  60971. }
  60972. },
  60973. foot: {
  60974. height: math.unit(1, "feet"),
  60975. name: "Foot",
  60976. image: {
  60977. source: "./media/characters/layla-amari/foot.svg"
  60978. }
  60979. },
  60980. necklace: {
  60981. height: math.unit(0.32, "feet"),
  60982. name: "Necklace",
  60983. image: {
  60984. source: "./media/characters/layla-amari/necklace.svg"
  60985. }
  60986. },
  60987. nipple: {
  60988. height: math.unit(0.2, "feet"),
  60989. name: "Nipple",
  60990. image: {
  60991. source: "./media/characters/layla-amari/nipple.svg"
  60992. }
  60993. },
  60994. slit: {
  60995. height: math.unit(0.26, "feet"),
  60996. name: "Slit",
  60997. image: {
  60998. source: "./media/characters/layla-amari/slit.svg"
  60999. }
  61000. },
  61001. },
  61002. [
  61003. {
  61004. name: "Natural",
  61005. height: math.unit(825, "feet"),
  61006. default: true
  61007. },
  61008. {
  61009. name: "Enhanced",
  61010. height: math.unit(8250, "feet")
  61011. },
  61012. {
  61013. name: "Apparent Size",
  61014. height: math.unit(9.04363e+8, "meters")
  61015. },
  61016. ]
  61017. ))
  61018. characterMakers.push(() => makeCharacter(
  61019. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61020. {
  61021. front: {
  61022. height: math.unit(1.3, "meters"),
  61023. name: "Front",
  61024. image: {
  61025. source: "./media/characters/percy/front.svg",
  61026. extra: 1444/1289,
  61027. bottom: 54/1498
  61028. }
  61029. },
  61030. },
  61031. [
  61032. {
  61033. name: "Normal",
  61034. height: math.unit(1.3, "meters"),
  61035. default: true
  61036. },
  61037. ]
  61038. ))
  61039. characterMakers.push(() => makeCharacter(
  61040. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61041. {
  61042. side: {
  61043. height: math.unit(10, "meters"),
  61044. name: "Side",
  61045. image: {
  61046. source: "./media/characters/grev/side.svg",
  61047. extra: 653/266,
  61048. bottom: 77/730
  61049. }
  61050. },
  61051. head: {
  61052. height: math.unit(16.2, "m"),
  61053. name: "Head",
  61054. image: {
  61055. source: "./media/characters/grev/head.svg"
  61056. }
  61057. },
  61058. dick: {
  61059. height: math.unit(2.8135932034, "m"),
  61060. name: "Dick",
  61061. image: {
  61062. source: "./media/characters/grev/dick.svg"
  61063. }
  61064. },
  61065. },
  61066. [
  61067. {
  61068. name: "Friend-Sized",
  61069. height: math.unit(80, "cm")
  61070. },
  61071. {
  61072. name: "Normal",
  61073. height: math.unit(10, "meters"),
  61074. default: true
  61075. },
  61076. {
  61077. name: "Macro",
  61078. height: math.unit(200, "meters")
  61079. },
  61080. ]
  61081. ))
  61082. characterMakers.push(() => makeCharacter(
  61083. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61084. {
  61085. front: {
  61086. height: math.unit(19.75, "feet"),
  61087. weight: math.unit(20000, "lb"),
  61088. name: "Front",
  61089. image: {
  61090. source: "./media/characters/azuuca/front.svg",
  61091. extra: 1593/1511,
  61092. bottom: 55/1648
  61093. }
  61094. },
  61095. },
  61096. [
  61097. {
  61098. name: "Normal",
  61099. height: math.unit(19.75, "feet"),
  61100. default: true
  61101. },
  61102. ]
  61103. ))
  61104. characterMakers.push(() => makeCharacter(
  61105. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61106. {
  61107. front: {
  61108. height: math.unit(15, "feet"),
  61109. weight: math.unit(1500, "lb"),
  61110. name: "Front",
  61111. image: {
  61112. source: "./media/characters/valuria/front.svg",
  61113. extra: 1588/1486,
  61114. bottom: 31/1619
  61115. }
  61116. },
  61117. },
  61118. [
  61119. {
  61120. name: "Normal",
  61121. height: math.unit(15, "feet"),
  61122. default: true
  61123. },
  61124. {
  61125. name: "Small",
  61126. height: math.unit(500, "feet")
  61127. },
  61128. {
  61129. name: "Macro",
  61130. height: math.unit(4000, "feet")
  61131. },
  61132. {
  61133. name: "Mega Macro",
  61134. height: math.unit(2000, "miles")
  61135. },
  61136. {
  61137. name: "Giga Macro",
  61138. height: math.unit(3e6, "miles")
  61139. },
  61140. ]
  61141. ))
  61142. characterMakers.push(() => makeCharacter(
  61143. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61144. {
  61145. front: {
  61146. height: math.unit(3500, "solarradii"),
  61147. name: "Front",
  61148. image: {
  61149. source: "./media/characters/terigaia/front.svg",
  61150. extra: 1531/1451,
  61151. bottom: 98/1629
  61152. }
  61153. },
  61154. },
  61155. [
  61156. {
  61157. name: "Normal",
  61158. height: math.unit(3500, "solarradii"),
  61159. default: true
  61160. },
  61161. ]
  61162. ))
  61163. characterMakers.push(() => makeCharacter(
  61164. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61165. {
  61166. front: {
  61167. height: math.unit(9.34, "feet"),
  61168. weight: math.unit(600, "lb"),
  61169. name: "Front",
  61170. image: {
  61171. source: "./media/characters/blair-blaziken/front.svg",
  61172. extra: 1557/1462,
  61173. bottom: 55/1612
  61174. }
  61175. },
  61176. },
  61177. [
  61178. {
  61179. name: "Normal",
  61180. height: math.unit(9.34, "feet"),
  61181. default: true
  61182. },
  61183. ]
  61184. ))
  61185. characterMakers.push(() => makeCharacter(
  61186. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61187. {
  61188. pistrogre_front: {
  61189. height: math.unit(10, "feet"),
  61190. weight: math.unit(10, "tons"),
  61191. name: "Front",
  61192. image: {
  61193. source: "./media/characters/braxia/pistrogre-front.svg",
  61194. extra: 1531/1334,
  61195. bottom: 114/1645
  61196. },
  61197. form: "pistrogre",
  61198. default: true
  61199. },
  61200. human_front: {
  61201. height: math.unit(10, "feet"),
  61202. weight: math.unit(10, "tons"),
  61203. name: "Front",
  61204. image: {
  61205. source: "./media/characters/braxia/human-front.svg",
  61206. extra: 1574/1501,
  61207. bottom: 37/1611
  61208. },
  61209. form: "human",
  61210. default: true
  61211. },
  61212. },
  61213. [
  61214. {
  61215. name: "Normal",
  61216. height: math.unit(10, "feet"),
  61217. default: true,
  61218. allForms: true
  61219. },
  61220. {
  61221. name: "Macro",
  61222. height: math.unit(1000, "feet"),
  61223. allForms: true
  61224. },
  61225. {
  61226. name: "Mega Macro",
  61227. height: math.unit(100, "miles"),
  61228. allForms: true
  61229. },
  61230. {
  61231. name: "Cosmic",
  61232. height: math.unit(1000000, "lightyears"),
  61233. allForms: true
  61234. },
  61235. {
  61236. name: "ϐѮԆԬӁꭍϞԢ",
  61237. height: math.unit(1000, "multiverses"),
  61238. allForms: true
  61239. },
  61240. ],
  61241. {
  61242. "pistrogre": {
  61243. name: "Pistrogre",
  61244. default: true
  61245. },
  61246. "human": {
  61247. name: "Human",
  61248. },
  61249. }
  61250. ))
  61251. characterMakers.push(() => makeCharacter(
  61252. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61253. {
  61254. front: {
  61255. height: math.unit(6 + 1/12, "feet"),
  61256. weight: math.unit(280, "lb"),
  61257. name: "Front",
  61258. image: {
  61259. source: "./media/characters/kiriga-yato/front.svg",
  61260. extra: 445/394,
  61261. bottom: 11/456
  61262. }
  61263. },
  61264. },
  61265. [
  61266. {
  61267. name: "Descended",
  61268. height: math.unit(3, "feet")
  61269. },
  61270. {
  61271. name: "Average",
  61272. height: math.unit(6 + 1/12, "feet"),
  61273. default: true
  61274. },
  61275. {
  61276. name: "Ascended",
  61277. height: math.unit(9 + 2/12, "feet")
  61278. },
  61279. ]
  61280. ))
  61281. characterMakers.push(() => makeCharacter(
  61282. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61283. {
  61284. front: {
  61285. height: math.unit(6, "feet"),
  61286. weight: math.unit(150, "lb"),
  61287. name: "Front",
  61288. image: {
  61289. source: "./media/characters/kylie/front.svg",
  61290. extra: 1114/1046,
  61291. bottom: 65/1179
  61292. },
  61293. extraAttributes: {
  61294. "hoofSize": {
  61295. name: "Hoof Size",
  61296. power: 2,
  61297. type: "area",
  61298. base: math.unit(0.034, "m^2")
  61299. },
  61300. "footSize": {
  61301. name: "Foot Size",
  61302. power: 2,
  61303. type: "area",
  61304. base: math.unit(0.75, "m^2")
  61305. },
  61306. }
  61307. },
  61308. side: {
  61309. height: math.unit(6, "feet"),
  61310. weight: math.unit(150, "lb"),
  61311. name: "Side",
  61312. image: {
  61313. source: "./media/characters/kylie/side.svg",
  61314. extra: 1178/1110,
  61315. bottom: 21/1199
  61316. },
  61317. extraAttributes: {
  61318. "hoofSize": {
  61319. name: "Hoof Size",
  61320. power: 2,
  61321. type: "area",
  61322. base: math.unit(0.034, "m^2")
  61323. },
  61324. "footSize": {
  61325. name: "Foot Size",
  61326. power: 2,
  61327. type: "area",
  61328. base: math.unit(0.75, "m^2")
  61329. },
  61330. }
  61331. },
  61332. back: {
  61333. height: math.unit(6, "feet"),
  61334. weight: math.unit(150, "lb"),
  61335. name: "Back",
  61336. image: {
  61337. source: "./media/characters/kylie/back.svg",
  61338. extra: 1115/1047,
  61339. bottom: 66/1181
  61340. },
  61341. extraAttributes: {
  61342. "hoofSize": {
  61343. name: "Hoof Size",
  61344. power: 2,
  61345. type: "area",
  61346. base: math.unit(0.034, "m^2")
  61347. },
  61348. "footSize": {
  61349. name: "Foot Size",
  61350. power: 2,
  61351. type: "area",
  61352. base: math.unit(0.75, "m^2")
  61353. },
  61354. }
  61355. },
  61356. head: {
  61357. height: math.unit(1.85, "feet"),
  61358. name: "Head",
  61359. image: {
  61360. source: "./media/characters/kylie/head.svg"
  61361. }
  61362. },
  61363. },
  61364. [
  61365. {
  61366. name: "Normal",
  61367. height: math.unit(90, "meters"),
  61368. default: true
  61369. },
  61370. ]
  61371. ))
  61372. characterMakers.push(() => makeCharacter(
  61373. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61374. {
  61375. front: {
  61376. height: math.unit(245, "feet"),
  61377. weight: math.unit(400000, "lb"),
  61378. name: "Front",
  61379. image: {
  61380. source: "./media/characters/sabado/front.svg",
  61381. extra: 1309/1164,
  61382. bottom: 29/1338
  61383. }
  61384. },
  61385. },
  61386. [
  61387. {
  61388. name: "Normal",
  61389. height: math.unit(245, "feet"),
  61390. default: true
  61391. },
  61392. ]
  61393. ))
  61394. characterMakers.push(() => makeCharacter(
  61395. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61396. {
  61397. shark_front: {
  61398. height: math.unit(2, "meters"),
  61399. weight: math.unit(200, "kg"),
  61400. name: "Front",
  61401. image: {
  61402. source: "./media/characters/zechal/shark-front.svg",
  61403. extra: 969/925,
  61404. bottom: 74/1043
  61405. },
  61406. form: "shark",
  61407. },
  61408. shark_back: {
  61409. height: math.unit(2, "meters"),
  61410. weight: math.unit(200, "kg"),
  61411. name: "Back",
  61412. image: {
  61413. source: "./media/characters/zechal/shark-back.svg",
  61414. extra: 994/949,
  61415. bottom: 176/1170
  61416. },
  61417. form: "shark",
  61418. },
  61419. shark_frontLewd: {
  61420. height: math.unit(2, "meters"),
  61421. weight: math.unit(200, "kg"),
  61422. name: "Front (Lewd)",
  61423. image: {
  61424. source: "./media/characters/zechal/shark-front-lewd.svg",
  61425. extra: 969/925,
  61426. bottom: 74/1043
  61427. },
  61428. form: "shark",
  61429. },
  61430. shark_side: {
  61431. height: math.unit(1.56, "meters"),
  61432. weight: math.unit(200, "kg"),
  61433. name: "Side",
  61434. image: {
  61435. source: "./media/characters/zechal/shark-side.svg"
  61436. },
  61437. form: "shark",
  61438. },
  61439. dragon_front: {
  61440. height: math.unit(2, "meters"),
  61441. weight: math.unit(200, "kg"),
  61442. name: "Front",
  61443. image: {
  61444. source: "./media/characters/zechal/dragon-front.svg",
  61445. extra: 1041/925,
  61446. bottom: 74/1115
  61447. },
  61448. form: "dragon",
  61449. },
  61450. dragon_back: {
  61451. height: math.unit(2, "meters"),
  61452. weight: math.unit(200, "kg"),
  61453. name: "Back",
  61454. image: {
  61455. source: "./media/characters/zechal/dragon-back.svg",
  61456. extra: 1061/949,
  61457. bottom: 176/1237
  61458. },
  61459. form: "dragon",
  61460. },
  61461. dragon_frontLewd: {
  61462. height: math.unit(2, "meters"),
  61463. weight: math.unit(200, "kg"),
  61464. name: "Front (Lewd)",
  61465. image: {
  61466. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61467. extra: 1041/925,
  61468. bottom: 74/1115
  61469. },
  61470. form: "dragon",
  61471. },
  61472. dragon_side: {
  61473. height: math.unit(1.56, "meters"),
  61474. weight: math.unit(200, "kg"),
  61475. name: "Side",
  61476. image: {
  61477. source: "./media/characters/zechal/dragon-side.svg"
  61478. },
  61479. form: "dragon",
  61480. },
  61481. foot: {
  61482. height: math.unit(0.5, "meters"),
  61483. name: "Foot",
  61484. image: {
  61485. source: "./media/characters/zechal/foot.svg"
  61486. }
  61487. },
  61488. sheathFront: {
  61489. height: math.unit(0.45, "meters"),
  61490. name: "Sheath (Front)",
  61491. image: {
  61492. source: "./media/characters/zechal/sheath-front.svg"
  61493. }
  61494. },
  61495. sheathSide: {
  61496. height: math.unit(0.45, "meters"),
  61497. name: "Sheath (Side)",
  61498. image: {
  61499. source: "./media/characters/zechal/sheath-side.svg"
  61500. }
  61501. },
  61502. },
  61503. [
  61504. {
  61505. name: "Incognito",
  61506. height: math.unit(2, "meters"),
  61507. allForms: true
  61508. },
  61509. {
  61510. name: "Small Rampage",
  61511. height: math.unit(25, "meters"),
  61512. allForms: true
  61513. },
  61514. {
  61515. name: "Home Size",
  61516. height: math.unit(250, "meters"),
  61517. allForms: true,
  61518. default: true
  61519. },
  61520. {
  61521. name: "Macro+",
  61522. height: math.unit(700, "meters"),
  61523. allForms: true
  61524. },
  61525. {
  61526. name: "Small Mega",
  61527. height: math.unit(3, "km"),
  61528. allForms: true
  61529. },
  61530. {
  61531. name: "Mega",
  61532. height: math.unit(15, "km"),
  61533. allForms: true
  61534. },
  61535. {
  61536. name: "Giga",
  61537. height: math.unit(300, "km"),
  61538. allForms: true
  61539. },
  61540. {
  61541. name: "Giga+",
  61542. height: math.unit(1750, "km"),
  61543. allForms: true
  61544. },
  61545. {
  61546. name: "Continental",
  61547. height: math.unit(5000, "km"),
  61548. allForms: true
  61549. },
  61550. {
  61551. name: "Terra",
  61552. height: math.unit(20000, "km"),
  61553. allForms: true
  61554. },
  61555. {
  61556. name: "Terra+",
  61557. height: math.unit(300000, "km"),
  61558. allForms: true
  61559. },
  61560. {
  61561. name: "Solar",
  61562. height: math.unit(40000000, "km"),
  61563. allForms: true
  61564. },
  61565. {
  61566. name: "Galactic",
  61567. height: math.unit(810133, "parsecs"),
  61568. allForms: true
  61569. },
  61570. {
  61571. name: "Universal",
  61572. height: math.unit(25, "universes"),
  61573. allForms: true
  61574. },
  61575. ],
  61576. {
  61577. "shark": {
  61578. name: "Shark",
  61579. default: true
  61580. },
  61581. "dragon": {
  61582. name: "Dragon",
  61583. },
  61584. }
  61585. ))
  61586. characterMakers.push(() => makeCharacter(
  61587. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61588. {
  61589. front: {
  61590. height: math.unit(2.2, "meters"),
  61591. weight: math.unit(150, "kg"),
  61592. name: "Front",
  61593. image: {
  61594. source: "./media/characters/sergis/front.svg",
  61595. extra: 1314/1312,
  61596. bottom: 112/1426
  61597. }
  61598. },
  61599. back: {
  61600. height: math.unit(2.2, "meters"),
  61601. weight: math.unit(150, "kg"),
  61602. name: "Back",
  61603. image: {
  61604. source: "./media/characters/sergis/back.svg",
  61605. extra: 1335/1333,
  61606. bottom: 19/1354
  61607. }
  61608. },
  61609. frontLewd: {
  61610. height: math.unit(2.2, "meters"),
  61611. weight: math.unit(150, "kg"),
  61612. name: "Front (Lewd)",
  61613. image: {
  61614. source: "./media/characters/sergis/front-lewd.svg",
  61615. extra: 1314/1312,
  61616. bottom: 112/1426
  61617. }
  61618. },
  61619. frontDressed: {
  61620. height: math.unit(2.2, "meters"),
  61621. weight: math.unit(150, "kg"),
  61622. name: "Front (Dressed)",
  61623. image: {
  61624. source: "./media/characters/sergis/front-dressed.svg",
  61625. extra: 1330/1328,
  61626. bottom: 95/1425
  61627. }
  61628. },
  61629. frontDressedLewd: {
  61630. height: math.unit(2.2, "meters"),
  61631. weight: math.unit(150, "kg"),
  61632. name: "Front (Dressed, Lewd)",
  61633. image: {
  61634. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61635. extra: 1330/1328,
  61636. bottom: 95/1425
  61637. }
  61638. },
  61639. maw: {
  61640. height: math.unit(0.48, "meters"),
  61641. name: "Maw",
  61642. image: {
  61643. source: "./media/characters/sergis/maw.svg"
  61644. }
  61645. },
  61646. sheath: {
  61647. height: math.unit(0.38, "meters"),
  61648. name: "Sheath",
  61649. image: {
  61650. source: "./media/characters/sergis/sheath.svg"
  61651. }
  61652. },
  61653. },
  61654. [
  61655. {
  61656. name: "Incognito Size",
  61657. height: math.unit(2.2, "meters")
  61658. },
  61659. {
  61660. name: "Small Macro",
  61661. height: math.unit(40, "meters")
  61662. },
  61663. {
  61664. name: "Macro",
  61665. height: math.unit(150, "meters")
  61666. },
  61667. {
  61668. name: "Macro+",
  61669. height: math.unit(300, "meters")
  61670. },
  61671. {
  61672. name: "Mega",
  61673. height: math.unit(2.5, "km")
  61674. },
  61675. {
  61676. name: "Mega+",
  61677. height: math.unit(30, "km")
  61678. },
  61679. {
  61680. name: "Home Size",
  61681. height: math.unit(300, "km"),
  61682. default: true
  61683. },
  61684. {
  61685. name: "Giga+",
  61686. height: math.unit(1000, "km")
  61687. },
  61688. {
  61689. name: "Giga++",
  61690. height: math.unit(6000, "km")
  61691. },
  61692. {
  61693. name: "Terra",
  61694. height: math.unit(70000, "km")
  61695. },
  61696. {
  61697. name: "Terra+",
  61698. height: math.unit(200000, "km")
  61699. },
  61700. {
  61701. name: "Galactic",
  61702. height: math.unit(634200, "lightyears")
  61703. },
  61704. ]
  61705. ))
  61706. characterMakers.push(() => makeCharacter(
  61707. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61708. {
  61709. standard: {
  61710. height: math.unit(1 + 5/12, "feet"),
  61711. name: "Standard",
  61712. image: {
  61713. source: "./media/characters/spade/standard.svg",
  61714. extra: 1794/1703,
  61715. bottom: 115/1909
  61716. }
  61717. },
  61718. disguised: {
  61719. height: math.unit(1 + 5/12, "feet"),
  61720. name: "Disguised",
  61721. image: {
  61722. source: "./media/characters/spade/disguised.svg",
  61723. extra: 1794/1700,
  61724. bottom: 98/1892
  61725. }
  61726. },
  61727. },
  61728. [
  61729. {
  61730. name: "Normal",
  61731. height: math.unit(1 + 5/12, "feet"),
  61732. default: true
  61733. },
  61734. ]
  61735. ))
  61736. characterMakers.push(() => makeCharacter(
  61737. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61738. {
  61739. frontNsfw: {
  61740. height: math.unit(5, "meters"),
  61741. weight: math.unit(2000, "kg"),
  61742. preyCapacity: math.unit(5, "people"),
  61743. name: "Front (NSFW)",
  61744. image: {
  61745. source: "./media/characters/zeanlain/front-nsfw.svg",
  61746. extra: 1087/938,
  61747. bottom: 93/1180
  61748. },
  61749. extraAttributes: {
  61750. "wingspan": {
  61751. name: "Wingspan",
  61752. power: 1,
  61753. type: "length",
  61754. base: math.unit(10, "meters")
  61755. },
  61756. "footSize": {
  61757. name: "Foot Size",
  61758. power: 1,
  61759. type: "length",
  61760. base: math.unit(0.68, "meters")
  61761. },
  61762. "cockLength": {
  61763. name: "Cock Length",
  61764. power: 1,
  61765. type: "length",
  61766. base: math.unit(1.69, "meters")
  61767. },
  61768. "ballVolume": {
  61769. name: "Ball Volume",
  61770. power: 3,
  61771. type: "volume",
  61772. base: math.unit(0.028, "m^3")
  61773. },
  61774. }
  61775. },
  61776. front: {
  61777. height: math.unit(5, "meters"),
  61778. weight: math.unit(2000, "kg"),
  61779. preyCapacity: math.unit(3, "people"),
  61780. name: "Front",
  61781. image: {
  61782. source: "./media/characters/zeanlain/front.svg",
  61783. extra: 1087/938,
  61784. bottom: 93/1180
  61785. },
  61786. extraAttributes: {
  61787. "wingspan": {
  61788. name: "Wingspan",
  61789. power: 1,
  61790. type: "length",
  61791. base: math.unit(10, "meters")
  61792. },
  61793. "footSize": {
  61794. name: "Foot Size",
  61795. power: 1,
  61796. type: "length",
  61797. base: math.unit(0.68, "meters")
  61798. },
  61799. }
  61800. },
  61801. },
  61802. [
  61803. {
  61804. name: "Normal",
  61805. height: math.unit(5, "meters"),
  61806. default: true
  61807. },
  61808. ]
  61809. ))
  61810. characterMakers.push(() => makeCharacter(
  61811. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61812. {
  61813. front: {
  61814. height: math.unit(10, "meters"),
  61815. weight: math.unit(250000, "kg"),
  61816. name: "Front",
  61817. image: {
  61818. source: "./media/characters/airamis/front.svg",
  61819. extra: 865/835,
  61820. bottom: 13/878
  61821. }
  61822. },
  61823. },
  61824. [
  61825. {
  61826. name: "Normal",
  61827. height: math.unit(10, "meters"),
  61828. default: true
  61829. },
  61830. ]
  61831. ))
  61832. characterMakers.push(() => makeCharacter(
  61833. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61834. {
  61835. front: {
  61836. height: math.unit(3 + 3/12, "feet"),
  61837. weight: math.unit(75, "lb"),
  61838. name: "Front",
  61839. image: {
  61840. source: "./media/characters/corra-tourmaline/front.svg",
  61841. extra: 1037/864,
  61842. bottom: 39/1076
  61843. }
  61844. },
  61845. back: {
  61846. height: math.unit(3 + 3/12, "feet"),
  61847. weight: math.unit(75, "lb"),
  61848. name: "Back",
  61849. image: {
  61850. source: "./media/characters/corra-tourmaline/back.svg",
  61851. extra: 1022/849,
  61852. bottom: 26/1048
  61853. }
  61854. },
  61855. dressed: {
  61856. height: math.unit(3 + 3/12, "feet"),
  61857. weight: math.unit(75, "lb"),
  61858. name: "Dressed",
  61859. image: {
  61860. source: "./media/characters/corra-tourmaline/dressed.svg",
  61861. extra: 1037/864,
  61862. bottom: 39/1076
  61863. }
  61864. },
  61865. beans: {
  61866. height: math.unit(0.37, "feet"),
  61867. name: "Beans",
  61868. image: {
  61869. source: "./media/characters/corra-tourmaline/beans.svg"
  61870. }
  61871. },
  61872. },
  61873. [
  61874. {
  61875. name: "Normal",
  61876. height: math.unit(3 + 3/12, "feet"),
  61877. default: true
  61878. },
  61879. {
  61880. name: "Macro",
  61881. height: math.unit(32, "feet")
  61882. },
  61883. ]
  61884. ))
  61885. characterMakers.push(() => makeCharacter(
  61886. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61887. {
  61888. front: {
  61889. height: math.unit(6 + 2/12, "feet"),
  61890. weight: math.unit(203, "lb"),
  61891. name: "Front",
  61892. image: {
  61893. source: "./media/characters/maki-kawa/front.svg",
  61894. extra: 950/890,
  61895. bottom: 62/1012
  61896. }
  61897. },
  61898. back: {
  61899. height: math.unit(6 + 2/12, "feet"),
  61900. weight: math.unit(203, "lb"),
  61901. name: "Back",
  61902. image: {
  61903. source: "./media/characters/maki-kawa/back.svg",
  61904. extra: 953/878,
  61905. bottom: 49/1002
  61906. }
  61907. },
  61908. frontBarista: {
  61909. height: math.unit(6 + 2/12, "feet"),
  61910. weight: math.unit(203, "lb"),
  61911. name: "Front (Barista)",
  61912. image: {
  61913. source: "./media/characters/maki-kawa/front-barista.svg",
  61914. extra: 943/883,
  61915. bottom: 69/1012
  61916. }
  61917. },
  61918. backBarista: {
  61919. height: math.unit(6 + 2/12, "feet"),
  61920. weight: math.unit(203, "lb"),
  61921. name: "Back (Barista)",
  61922. image: {
  61923. source: "./media/characters/maki-kawa/back-barista.svg",
  61924. extra: 953/878,
  61925. bottom: 49/1002
  61926. }
  61927. },
  61928. frontWrestler: {
  61929. height: math.unit(6 + 2/12, "feet"),
  61930. weight: math.unit(203, "lb"),
  61931. name: "Front (Wrestler)",
  61932. image: {
  61933. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61934. extra: 950/890,
  61935. bottom: 62/1012
  61936. }
  61937. },
  61938. backWrestler: {
  61939. height: math.unit(6 + 2/12, "feet"),
  61940. weight: math.unit(203, "lb"),
  61941. name: "Back (Wrestler)",
  61942. image: {
  61943. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61944. extra: 953/878,
  61945. bottom: 49/1002
  61946. }
  61947. },
  61948. headFront: {
  61949. height: math.unit(1.64, "feet"),
  61950. name: "Head (Front)",
  61951. image: {
  61952. source: "./media/characters/maki-kawa/head-front.svg"
  61953. }
  61954. },
  61955. headSide: {
  61956. height: math.unit(1.59, "feet"),
  61957. name: "Head (Side)",
  61958. image: {
  61959. source: "./media/characters/maki-kawa/head-side.svg"
  61960. }
  61961. },
  61962. paw: {
  61963. height: math.unit(0.9, "feet"),
  61964. name: "Paw",
  61965. image: {
  61966. source: "./media/characters/maki-kawa/paw.svg"
  61967. }
  61968. },
  61969. },
  61970. [
  61971. {
  61972. name: "Normal",
  61973. height: math.unit(6 + 2/12, "feet"),
  61974. default: true
  61975. },
  61976. {
  61977. name: "Macro",
  61978. height: math.unit(617, "feet")
  61979. },
  61980. ]
  61981. ))
  61982. characterMakers.push(() => makeCharacter(
  61983. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61984. {
  61985. front: {
  61986. height: math.unit(10, "feet"),
  61987. weight: math.unit(1500, "lb"),
  61988. name: "Front",
  61989. image: {
  61990. source: "./media/characters/lennox/front.svg",
  61991. extra: 1623/1496,
  61992. bottom: 18/1641
  61993. }
  61994. },
  61995. back: {
  61996. height: math.unit(10, "feet"),
  61997. weight: math.unit(1500, "lb"),
  61998. name: "Back",
  61999. image: {
  62000. source: "./media/characters/lennox/back.svg",
  62001. extra: 1641/1481,
  62002. bottom: 13/1654
  62003. }
  62004. },
  62005. maw: {
  62006. height: math.unit(2.94, "feet"),
  62007. name: "Maw",
  62008. image: {
  62009. source: "./media/characters/lennox/maw.svg"
  62010. }
  62011. },
  62012. },
  62013. [
  62014. {
  62015. name: "Micro",
  62016. height: math.unit(1, "inch")
  62017. },
  62018. {
  62019. name: "Normal",
  62020. height: math.unit(10, "feet"),
  62021. default: true
  62022. },
  62023. {
  62024. name: "Macro",
  62025. height: math.unit(200, "feet")
  62026. },
  62027. ]
  62028. ))
  62029. characterMakers.push(() => makeCharacter(
  62030. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62031. {
  62032. frontDressed: {
  62033. height: math.unit(15 + 7/12, "feet"),
  62034. weight: math.unit(5000, "lb"),
  62035. name: "Front (Dressed)",
  62036. image: {
  62037. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62038. extra: 1136/1023,
  62039. bottom: 51/1187
  62040. }
  62041. },
  62042. backDressed: {
  62043. height: math.unit(15 + 7/12, "feet"),
  62044. weight: math.unit(5000, "lb"),
  62045. name: "Back (Dressed)",
  62046. image: {
  62047. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62048. extra: 2359/2143,
  62049. bottom: 103/2462
  62050. }
  62051. },
  62052. front: {
  62053. height: math.unit(15 + 7/12, "feet"),
  62054. weight: math.unit(5000, "lb"),
  62055. name: "Front",
  62056. image: {
  62057. source: "./media/characters/vyse-iron-thunder/front.svg",
  62058. extra: 1136/1023,
  62059. bottom: 51/1187
  62060. }
  62061. },
  62062. hand: {
  62063. height: math.unit(2.36, "feet"),
  62064. name: "Hand",
  62065. image: {
  62066. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62067. }
  62068. },
  62069. foot: {
  62070. height: math.unit(1.72, "feet"),
  62071. name: "Foot",
  62072. image: {
  62073. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62074. }
  62075. },
  62076. mouth: {
  62077. height: math.unit(2, "feet"),
  62078. name: "Mouth",
  62079. image: {
  62080. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62081. }
  62082. },
  62083. eye: {
  62084. height: math.unit(0.58, "feet"),
  62085. name: "Eye",
  62086. image: {
  62087. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62088. }
  62089. },
  62090. },
  62091. [
  62092. {
  62093. name: "Normal",
  62094. height: math.unit(15 + 7/12, "feet"),
  62095. default: true
  62096. },
  62097. {
  62098. name: "Macro",
  62099. height: math.unit(157, "feet")
  62100. },
  62101. {
  62102. name: "Macro+",
  62103. height: math.unit(1570, "feet")
  62104. },
  62105. {
  62106. name: "Macro++",
  62107. height: math.unit(15700, "feet")
  62108. },
  62109. {
  62110. name: "Macro+++",
  62111. height: math.unit(157000, "feet")
  62112. },
  62113. {
  62114. name: "Macro++++",
  62115. height: math.unit(1570000, "feet")
  62116. },
  62117. ]
  62118. ))
  62119. characterMakers.push(() => makeCharacter(
  62120. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62121. {
  62122. side: {
  62123. height: math.unit(6, "feet"),
  62124. weight: math.unit(115, "lb"),
  62125. name: "Side",
  62126. image: {
  62127. source: "./media/characters/moonbeam/side.svg",
  62128. extra: 839/485,
  62129. bottom: 60/899
  62130. }
  62131. },
  62132. },
  62133. [
  62134. {
  62135. name: "Normal",
  62136. height: math.unit(6, "feet"),
  62137. default: true
  62138. },
  62139. ]
  62140. ))
  62141. characterMakers.push(() => makeCharacter(
  62142. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62143. {
  62144. front: {
  62145. height: math.unit(3500, "miles"),
  62146. weight: math.unit(1659, "petatonnes"),
  62147. name: "Front",
  62148. image: {
  62149. source: "./media/characters/baltica/front.svg",
  62150. extra: 429/428,
  62151. bottom: 41/470
  62152. }
  62153. },
  62154. back: {
  62155. height: math.unit(3500, "miles"),
  62156. weight: math.unit(1659, "petatonnes"),
  62157. name: "Back",
  62158. image: {
  62159. source: "./media/characters/baltica/back.svg",
  62160. extra: 452/451,
  62161. bottom: 8/460
  62162. }
  62163. },
  62164. },
  62165. [
  62166. {
  62167. name: "Gigamacro",
  62168. height: math.unit(3500, "miles"),
  62169. default: true
  62170. },
  62171. ]
  62172. ))
  62173. //characters
  62174. function makeCharacters() {
  62175. const results = [];
  62176. characterMakers.forEach(character => {
  62177. results.push(character());
  62178. });
  62179. return results;
  62180. }